Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 1 | //===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "SparcTargetMachine.h" |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 14 | #include "LeonPasses.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "Sparc.h" |
| 16 | #include "SparcTargetObjectFile.h" |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/Passes.h" |
Matthias Braun | 31d19d4 | 2016-05-10 03:21:59 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/TargetPassConfig.h" |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 19 | #include "llvm/IR/LegacyPassManager.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 20 | #include "llvm/Support/TargetRegistry.h" |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | |
Daniel Dunbar | 5680b4f | 2009-07-25 06:49:55 +0000 | [diff] [blame] | 23 | extern "C" void LLVMInitializeSparcTarget() { |
| 24 | // Register the target. |
Mehdi Amini | f42454b | 2016-10-09 23:00:34 +0000 | [diff] [blame] | 25 | RegisterTargetMachine<SparcV8TargetMachine> X(getTheSparcTarget()); |
| 26 | RegisterTargetMachine<SparcV9TargetMachine> Y(getTheSparcV9Target()); |
| 27 | RegisterTargetMachine<SparcelTargetMachine> Z(getTheSparcelTarget()); |
Jim Laskey | ae92ce8 | 2006-09-07 23:39:26 +0000 | [diff] [blame] | 28 | } |
| 29 | |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 30 | static std::string computeDataLayout(const Triple &T, bool is64Bit) { |
| 31 | // Sparc is typically big endian, but some are little. |
| 32 | std::string Ret = T.getArch() == Triple::sparcel ? "e" : "E"; |
| 33 | Ret += "-m:e"; |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 34 | |
| 35 | // Some ABIs have 32bit pointers. |
| 36 | if (!is64Bit) |
| 37 | Ret += "-p:32:32"; |
| 38 | |
| 39 | // Alignments for 64 bit integers. |
| 40 | Ret += "-i64:64"; |
| 41 | |
| 42 | // On SparcV9 128 floats are aligned to 128 bits, on others only to 64. |
| 43 | // On SparcV9 registers can hold 64 or 32 bits, on others only 32. |
| 44 | if (is64Bit) |
| 45 | Ret += "-n32:64"; |
| 46 | else |
| 47 | Ret += "-f128:64-n32"; |
| 48 | |
| 49 | if (is64Bit) |
| 50 | Ret += "-S128"; |
| 51 | else |
| 52 | Ret += "-S64"; |
| 53 | |
| 54 | return Ret; |
| 55 | } |
| 56 | |
Rafael Espindola | 8c34dd8 | 2016-05-18 22:04:49 +0000 | [diff] [blame] | 57 | static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) { |
| 58 | if (!RM.hasValue()) |
| 59 | return Reloc::Static; |
| 60 | return *RM; |
| 61 | } |
| 62 | |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 63 | // Code models. Some only make sense for 64-bit code. |
| 64 | // |
| 65 | // SunCC Reloc CodeModel Constraints |
| 66 | // abs32 Static Small text+data+bss linked below 2^32 bytes |
| 67 | // abs44 Static Medium text+data+bss linked below 2^44 bytes |
| 68 | // abs64 Static Large text smaller than 2^31 bytes |
| 69 | // pic13 PIC_ Small GOT < 2^13 bytes |
| 70 | // pic32 PIC_ Medium GOT < 2^32 bytes |
| 71 | // |
| 72 | // All code models require that the text segment is smaller than 2GB. |
David Green | ca29c27 | 2018-12-07 12:10:23 +0000 | [diff] [blame] | 73 | static CodeModel::Model |
| 74 | getEffectiveSparcCodeModel(Optional<CodeModel::Model> CM, Reloc::Model RM, |
| 75 | bool Is64Bit, bool JIT) { |
| 76 | if (CM) { |
| 77 | if (*CM == CodeModel::Tiny) |
| 78 | report_fatal_error("Target does not support the tiny CodeModel"); |
| 79 | if (*CM == CodeModel::Kernel) |
| 80 | report_fatal_error("Target does not support the kernel CodeModel"); |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 81 | return *CM; |
David Green | ca29c27 | 2018-12-07 12:10:23 +0000 | [diff] [blame] | 82 | } |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 83 | if (Is64Bit) { |
| 84 | if (JIT) |
| 85 | return CodeModel::Large; |
| 86 | return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; |
| 87 | } |
| 88 | return CodeModel::Small; |
| 89 | } |
| 90 | |
Rafael Espindola | 38af4d6 | 2016-05-18 16:00:24 +0000 | [diff] [blame] | 91 | /// Create an ILP32 architecture model |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 92 | SparcTargetMachine::SparcTargetMachine( |
| 93 | const Target &T, const Triple &TT, StringRef CPU, StringRef FS, |
| 94 | const TargetOptions &Options, Optional<Reloc::Model> RM, |
| 95 | Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit) |
David Green | ca29c27 | 2018-12-07 12:10:23 +0000 | [diff] [blame] | 96 | : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options, |
| 97 | getEffectiveRelocModel(RM), |
| 98 | getEffectiveSparcCodeModel( |
| 99 | CM, getEffectiveRelocModel(RM), is64bit, JIT), |
| 100 | OL), |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 101 | TLOF(make_unique<SparcELFTargetObjectFile>()), |
| 102 | Subtarget(TT, CPU, FS, *this, is64bit), is64Bit(is64bit) { |
Rafael Espindola | 227144c | 2013-05-13 01:16:13 +0000 | [diff] [blame] | 103 | initAsmInfo(); |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Reid Kleckner | 357600e | 2014-11-20 23:37:18 +0000 | [diff] [blame] | 106 | SparcTargetMachine::~SparcTargetMachine() {} |
| 107 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 108 | const SparcSubtarget * |
Chris Dewhurst | 68388a0 | 2016-05-18 09:14:13 +0000 | [diff] [blame] | 109 | SparcTargetMachine::getSubtargetImpl(const Function &F) const { |
| 110 | Attribute CPUAttr = F.getFnAttribute("target-cpu"); |
| 111 | Attribute FSAttr = F.getFnAttribute("target-features"); |
| 112 | |
| 113 | std::string CPU = !CPUAttr.hasAttribute(Attribute::None) |
| 114 | ? CPUAttr.getValueAsString().str() |
| 115 | : TargetCPU; |
| 116 | std::string FS = !FSAttr.hasAttribute(Attribute::None) |
| 117 | ? FSAttr.getValueAsString().str() |
| 118 | : TargetFS; |
| 119 | |
| 120 | // FIXME: This is related to the code below to reset the target options, |
| 121 | // we need to know whether or not the soft float flag is set on the |
| 122 | // function, so we can enable it as a subtarget feature. |
| 123 | bool softFloat = |
| 124 | F.hasFnAttribute("use-soft-float") && |
| 125 | F.getFnAttribute("use-soft-float").getValueAsString() == "true"; |
| 126 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 127 | if (softFloat) |
Chris Dewhurst | 68388a0 | 2016-05-18 09:14:13 +0000 | [diff] [blame] | 128 | FS += FS.empty() ? "+soft-float" : ",+soft-float"; |
| 129 | |
| 130 | auto &I = SubtargetMap[CPU + FS]; |
| 131 | if (!I) { |
| 132 | // This needs to be done before we create a new subtarget since any |
| 133 | // creation will depend on the TM and the code generation flags on the |
| 134 | // function that reside in TargetOptions. |
| 135 | resetTargetOptions(F); |
| 136 | I = llvm::make_unique<SparcSubtarget>(TargetTriple, CPU, FS, *this, |
| 137 | this->is64Bit); |
| 138 | } |
| 139 | return I.get(); |
| 140 | } |
| 141 | |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 142 | namespace { |
| 143 | /// Sparc Code Generator Pass Configuration Options. |
| 144 | class SparcPassConfig : public TargetPassConfig { |
| 145 | public: |
Matthias Braun | 5e394c3 | 2017-05-30 21:36:41 +0000 | [diff] [blame] | 146 | SparcPassConfig(SparcTargetMachine &TM, PassManagerBase &PM) |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 147 | : TargetPassConfig(TM, PM) {} |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 148 | |
| 149 | SparcTargetMachine &getSparcTargetMachine() const { |
| 150 | return getTM<SparcTargetMachine>(); |
| 151 | } |
| 152 | |
Robin Morisset | e2de06b | 2014-10-16 20:34:57 +0000 | [diff] [blame] | 153 | void addIRPasses() override; |
Craig Topper | b0c941b | 2014-04-29 07:57:13 +0000 | [diff] [blame] | 154 | bool addInstSelector() override; |
Matthias Braun | 7e37a5f | 2014-12-11 21:26:47 +0000 | [diff] [blame] | 155 | void addPreEmitPass() override; |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 156 | }; |
| 157 | } // namespace |
| 158 | |
Andrew Trick | f8ea108 | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 159 | TargetPassConfig *SparcTargetMachine::createPassConfig(PassManagerBase &PM) { |
Matthias Braun | 5e394c3 | 2017-05-30 21:36:41 +0000 | [diff] [blame] | 160 | return new SparcPassConfig(*this, PM); |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Robin Morisset | e2de06b | 2014-10-16 20:34:57 +0000 | [diff] [blame] | 163 | void SparcPassConfig::addIRPasses() { |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 164 | addPass(createAtomicExpandPass()); |
Robin Morisset | e2de06b | 2014-10-16 20:34:57 +0000 | [diff] [blame] | 165 | |
| 166 | TargetPassConfig::addIRPasses(); |
| 167 | } |
| 168 | |
Andrew Trick | ccb6736 | 2012-02-03 05:12:41 +0000 | [diff] [blame] | 169 | bool SparcPassConfig::addInstSelector() { |
Bob Wilson | bbd38dd | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 170 | addPass(createSparcISelDag(getSparcTargetMachine())); |
Chris Lattner | 158e1f5 | 2006-02-05 05:50:24 +0000 | [diff] [blame] | 171 | return false; |
| 172 | } |
| 173 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 174 | void SparcPassConfig::addPreEmitPass(){ |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 175 | addPass(createSparcDelaySlotFillerPass()); |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 176 | |
| 177 | if (this->getSparcTargetMachine().getSubtargetImpl()->insertNOPLoad()) |
| 178 | { |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 179 | addPass(new InsertNOPLoad()); |
Chris Dewhurst | 3202f06 | 2016-07-08 15:33:56 +0000 | [diff] [blame] | 180 | } |
Chris Dewhurst | 2c3cdd6 | 2016-10-19 14:01:06 +0000 | [diff] [blame] | 181 | if (this->getSparcTargetMachine().getSubtargetImpl()->detectRoundChange()) { |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 182 | addPass(new DetectRoundChange()); |
Chris Dewhurst | 2c3cdd6 | 2016-10-19 14:01:06 +0000 | [diff] [blame] | 183 | } |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 184 | if (this->getSparcTargetMachine().getSubtargetImpl()->fixAllFDIVSQRT()) |
| 185 | { |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 186 | addPass(new FixAllFDIVSQRT()); |
Chris Dewhurst | 3202f06 | 2016-07-08 15:33:56 +0000 | [diff] [blame] | 187 | } |
Chris Lattner | 12e9730 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 188 | } |
Chris Lattner | 8228b11 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 189 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 190 | void SparcV8TargetMachine::anchor() { } |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 191 | |
Daniel Sanders | 3e5de88 | 2015-06-11 19:41:26 +0000 | [diff] [blame] | 192 | SparcV8TargetMachine::SparcV8TargetMachine(const Target &T, const Triple &TT, |
| 193 | StringRef CPU, StringRef FS, |
Nick Lewycky | 50f02cb | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 194 | const TargetOptions &Options, |
Rafael Espindola | 8c34dd8 | 2016-05-18 22:04:49 +0000 | [diff] [blame] | 195 | Optional<Reloc::Model> RM, |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 196 | Optional<CodeModel::Model> CM, |
| 197 | CodeGenOpt::Level OL, bool JIT) |
| 198 | : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} |
Chris Lattner | 8228b11 | 2010-02-04 06:34:01 +0000 | [diff] [blame] | 199 | |
James Y Knight | 2cc9da9 | 2016-08-12 14:48:09 +0000 | [diff] [blame] | 200 | void SparcV9TargetMachine::anchor() { } |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 201 | |
Daniel Sanders | 3e5de88 | 2015-06-11 19:41:26 +0000 | [diff] [blame] | 202 | SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, const Triple &TT, |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 203 | StringRef CPU, StringRef FS, |
Nick Lewycky | 50f02cb | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 204 | const TargetOptions &Options, |
Rafael Espindola | 8c34dd8 | 2016-05-18 22:04:49 +0000 | [diff] [blame] | 205 | Optional<Reloc::Model> RM, |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 206 | Optional<CodeModel::Model> CM, |
| 207 | CodeGenOpt::Level OL, bool JIT) |
| 208 | : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 209 | |
| 210 | void SparcelTargetMachine::anchor() {} |
| 211 | |
Daniel Sanders | 3e5de88 | 2015-06-11 19:41:26 +0000 | [diff] [blame] | 212 | SparcelTargetMachine::SparcelTargetMachine(const Target &T, const Triple &TT, |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 213 | StringRef CPU, StringRef FS, |
| 214 | const TargetOptions &Options, |
Rafael Espindola | 8c34dd8 | 2016-05-18 22:04:49 +0000 | [diff] [blame] | 215 | Optional<Reloc::Model> RM, |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 216 | Optional<CodeModel::Model> CM, |
| 217 | CodeGenOpt::Level OL, bool JIT) |
| 218 | : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} |