1 //===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "SparcTargetMachine.h"
14 #include "LeonPasses.h"
15 #include "Sparc.h"
16 #include "SparcTargetObjectFile.h"
17 #include "llvm/CodeGen/Passes.h"
18 #include "llvm/CodeGen/TargetPassConfig.h"
19 #include "llvm/IR/LegacyPassManager.h"
20 #include "llvm/Support/TargetRegistry.h"
21 using namespace llvm;
22 
LLVMInitializeSparcTarget()23 extern "C" void LLVMInitializeSparcTarget() {
24   // Register the target.
25   RegisterTargetMachine<SparcV8TargetMachine> X(getTheSparcTarget());
26   RegisterTargetMachine<SparcV9TargetMachine> Y(getTheSparcV9Target());
27   RegisterTargetMachine<SparcelTargetMachine> Z(getTheSparcelTarget());
28 }
29 
computeDataLayout(const Triple & T,bool is64Bit)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";
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 
getEffectiveRelocModel(Optional<Reloc::Model> RM)57 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
58   if (!RM.hasValue())
59     return Reloc::Static;
60   return *RM;
61 }
62 
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.
getEffectiveCodeModel(Optional<CodeModel::Model> CM,Reloc::Model RM,bool Is64Bit,bool JIT)73 static CodeModel::Model getEffectiveCodeModel(Optional<CodeModel::Model> CM,
74                                               Reloc::Model RM, bool Is64Bit,
75                                               bool JIT) {
76   if (CM)
77     return *CM;
78   if (Is64Bit) {
79     if (JIT)
80       return CodeModel::Large;
81     return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
82   }
83   return CodeModel::Small;
84 }
85 
86 /// Create an ILP32 architecture model
SparcTargetMachine(const Target & T,const Triple & TT,StringRef CPU,StringRef FS,const TargetOptions & Options,Optional<Reloc::Model> RM,Optional<CodeModel::Model> CM,CodeGenOpt::Level OL,bool JIT,bool is64bit)87 SparcTargetMachine::SparcTargetMachine(
88     const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
89     const TargetOptions &Options, Optional<Reloc::Model> RM,
90     Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit)
91     : LLVMTargetMachine(
92           T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options,
93           getEffectiveRelocModel(RM),
94           getEffectiveCodeModel(CM, getEffectiveRelocModel(RM), is64bit, JIT),
95           OL),
96       TLOF(make_unique<SparcELFTargetObjectFile>()),
97       Subtarget(TT, CPU, FS, *this, is64bit), is64Bit(is64bit) {
98   initAsmInfo();
99 }
100 
~SparcTargetMachine()101 SparcTargetMachine::~SparcTargetMachine() {}
102 
103 const SparcSubtarget *
getSubtargetImpl(const Function & F) const104 SparcTargetMachine::getSubtargetImpl(const Function &F) const {
105   Attribute CPUAttr = F.getFnAttribute("target-cpu");
106   Attribute FSAttr = F.getFnAttribute("target-features");
107 
108   std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
109                         ? CPUAttr.getValueAsString().str()
110                         : TargetCPU;
111   std::string FS = !FSAttr.hasAttribute(Attribute::None)
112                        ? FSAttr.getValueAsString().str()
113                        : TargetFS;
114 
115   // FIXME: This is related to the code below to reset the target options,
116   // we need to know whether or not the soft float flag is set on the
117   // function, so we can enable it as a subtarget feature.
118   bool softFloat =
119       F.hasFnAttribute("use-soft-float") &&
120       F.getFnAttribute("use-soft-float").getValueAsString() == "true";
121 
122   if (softFloat)
123     FS += FS.empty() ? "+soft-float" : ",+soft-float";
124 
125   auto &I = SubtargetMap[CPU + FS];
126   if (!I) {
127     // This needs to be done before we create a new subtarget since any
128     // creation will depend on the TM and the code generation flags on the
129     // function that reside in TargetOptions.
130     resetTargetOptions(F);
131     I = llvm::make_unique<SparcSubtarget>(TargetTriple, CPU, FS, *this,
132                                           this->is64Bit);
133   }
134   return I.get();
135 }
136 
137 namespace {
138 /// Sparc Code Generator Pass Configuration Options.
139 class SparcPassConfig : public TargetPassConfig {
140 public:
SparcPassConfig(SparcTargetMachine & TM,PassManagerBase & PM)141   SparcPassConfig(SparcTargetMachine &TM, PassManagerBase &PM)
142     : TargetPassConfig(TM, PM) {}
143 
getSparcTargetMachine() const144   SparcTargetMachine &getSparcTargetMachine() const {
145     return getTM<SparcTargetMachine>();
146   }
147 
148   void addIRPasses() override;
149   bool addInstSelector() override;
150   void addPreEmitPass() override;
151 };
152 } // namespace
153 
createPassConfig(PassManagerBase & PM)154 TargetPassConfig *SparcTargetMachine::createPassConfig(PassManagerBase &PM) {
155   return new SparcPassConfig(*this, PM);
156 }
157 
addIRPasses()158 void SparcPassConfig::addIRPasses() {
159   addPass(createAtomicExpandPass());
160 
161   TargetPassConfig::addIRPasses();
162 }
163 
addInstSelector()164 bool SparcPassConfig::addInstSelector() {
165   addPass(createSparcISelDag(getSparcTargetMachine()));
166   return false;
167 }
168 
addPreEmitPass()169 void SparcPassConfig::addPreEmitPass(){
170   addPass(createSparcDelaySlotFillerPass());
171 
172   if (this->getSparcTargetMachine().getSubtargetImpl()->insertNOPLoad())
173   {
174     addPass(new InsertNOPLoad());
175   }
176   if (this->getSparcTargetMachine().getSubtargetImpl()->detectRoundChange()) {
177     addPass(new DetectRoundChange());
178   }
179   if (this->getSparcTargetMachine().getSubtargetImpl()->fixAllFDIVSQRT())
180   {
181     addPass(new FixAllFDIVSQRT());
182   }
183 }
184 
anchor()185 void SparcV8TargetMachine::anchor() { }
186 
SparcV8TargetMachine(const Target & T,const Triple & TT,StringRef CPU,StringRef FS,const TargetOptions & Options,Optional<Reloc::Model> RM,Optional<CodeModel::Model> CM,CodeGenOpt::Level OL,bool JIT)187 SparcV8TargetMachine::SparcV8TargetMachine(const Target &T, const Triple &TT,
188                                            StringRef CPU, StringRef FS,
189                                            const TargetOptions &Options,
190                                            Optional<Reloc::Model> RM,
191                                            Optional<CodeModel::Model> CM,
192                                            CodeGenOpt::Level OL, bool JIT)
193     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
194 
anchor()195 void SparcV9TargetMachine::anchor() { }
196 
SparcV9TargetMachine(const Target & T,const Triple & TT,StringRef CPU,StringRef FS,const TargetOptions & Options,Optional<Reloc::Model> RM,Optional<CodeModel::Model> CM,CodeGenOpt::Level OL,bool JIT)197 SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, const Triple &TT,
198                                            StringRef CPU, StringRef FS,
199                                            const TargetOptions &Options,
200                                            Optional<Reloc::Model> RM,
201                                            Optional<CodeModel::Model> CM,
202                                            CodeGenOpt::Level OL, bool JIT)
203     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
204 
anchor()205 void SparcelTargetMachine::anchor() {}
206 
SparcelTargetMachine(const Target & T,const Triple & TT,StringRef CPU,StringRef FS,const TargetOptions & Options,Optional<Reloc::Model> RM,Optional<CodeModel::Model> CM,CodeGenOpt::Level OL,bool JIT)207 SparcelTargetMachine::SparcelTargetMachine(const Target &T, const Triple &TT,
208                                            StringRef CPU, StringRef FS,
209                                            const TargetOptions &Options,
210                                            Optional<Reloc::Model> RM,
211                                            Optional<CodeModel::Model> CM,
212                                            CodeGenOpt::Level OL, bool JIT)
213     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
214