xref: /llvm-project/llvm/lib/Target/Sparc/SparcTargetMachine.cpp (revision dbad963a69fd7b16c6838f81b61167fbf00a413c)
1 //===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //
10 //===----------------------------------------------------------------------===//
11 
12 #include "SparcTargetMachine.h"
13 #include "LeonPasses.h"
14 #include "Sparc.h"
15 #include "SparcMachineFunctionInfo.h"
16 #include "SparcTargetObjectFile.h"
17 #include "TargetInfo/SparcTargetInfo.h"
18 #include "llvm/CodeGen/Passes.h"
19 #include "llvm/CodeGen/TargetPassConfig.h"
20 #include "llvm/MC/TargetRegistry.h"
21 #include <optional>
22 using namespace llvm;
23 
24 extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSparcTarget() {
25   // Register the target.
26   RegisterTargetMachine<SparcV8TargetMachine> X(getTheSparcTarget());
27   RegisterTargetMachine<SparcV9TargetMachine> Y(getTheSparcV9Target());
28   RegisterTargetMachine<SparcelTargetMachine> Z(getTheSparcelTarget());
29 
30   PassRegistry &PR = *PassRegistry::getPassRegistry();
31   initializeSparcDAGToDAGISelLegacyPass(PR);
32   initializeErrataWorkaroundPass(PR);
33 }
34 
35 static cl::opt<bool>
36     BranchRelaxation("sparc-enable-branch-relax", cl::Hidden, cl::init(true),
37                      cl::desc("Relax out of range conditional branches"));
38 
39 static std::string computeDataLayout(const Triple &T, bool is64Bit) {
40   // Sparc is typically big endian, but some are little.
41   std::string Ret = T.getArch() == Triple::sparcel ? "e" : "E";
42   Ret += "-m:e";
43 
44   // Some ABIs have 32bit pointers.
45   if (!is64Bit)
46     Ret += "-p:32:32";
47 
48   // Alignments for 64 bit integers.
49   Ret += "-i64:64";
50 
51   // Alignments for 128 bit integers.
52   // This is not specified in the ABI document but is the de facto standard.
53   Ret += "-i128:128";
54 
55   // On SparcV9 128 floats are aligned to 128 bits, on others only to 64.
56   // On SparcV9 registers can hold 64 or 32 bits, on others only 32.
57   if (is64Bit)
58     Ret += "-n32:64";
59   else
60     Ret += "-f128:64-n32";
61 
62   if (is64Bit)
63     Ret += "-S128";
64   else
65     Ret += "-S64";
66 
67   return Ret;
68 }
69 
70 static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
71   return RM.value_or(Reloc::Static);
72 }
73 
74 // Code models. Some only make sense for 64-bit code.
75 //
76 // SunCC  Reloc   CodeModel  Constraints
77 // abs32  Static  Small      text+data+bss linked below 2^32 bytes
78 // abs44  Static  Medium     text+data+bss linked below 2^44 bytes
79 // abs64  Static  Large      text smaller than 2^31 bytes
80 // pic13  PIC_    Small      GOT < 2^13 bytes
81 // pic32  PIC_    Medium     GOT < 2^32 bytes
82 //
83 // All code models require that the text segment is smaller than 2GB.
84 static CodeModel::Model
85 getEffectiveSparcCodeModel(std::optional<CodeModel::Model> CM, Reloc::Model RM,
86                            bool Is64Bit, bool JIT) {
87   if (CM) {
88     if (*CM == CodeModel::Tiny)
89       report_fatal_error("Target does not support the tiny CodeModel", false);
90     if (*CM == CodeModel::Kernel)
91       report_fatal_error("Target does not support the kernel CodeModel", false);
92     return *CM;
93   }
94   if (Is64Bit) {
95     if (JIT)
96       return CodeModel::Large;
97     return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
98   }
99   return CodeModel::Small;
100 }
101 
102 /// Create an ILP32 architecture model
103 SparcTargetMachine::SparcTargetMachine(const Target &T, const Triple &TT,
104                                        StringRef CPU, StringRef FS,
105                                        const TargetOptions &Options,
106                                        std::optional<Reloc::Model> RM,
107                                        std::optional<CodeModel::Model> CM,
108                                        CodeGenOptLevel OL, bool JIT,
109                                        bool is64bit)
110     : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options,
111                         getEffectiveRelocModel(RM),
112                         getEffectiveSparcCodeModel(
113                             CM, getEffectiveRelocModel(RM), is64bit, JIT),
114                         OL),
115       TLOF(std::make_unique<SparcELFTargetObjectFile>()), is64Bit(is64bit) {
116   initAsmInfo();
117 }
118 
119 SparcTargetMachine::~SparcTargetMachine() = default;
120 
121 const SparcSubtarget *
122 SparcTargetMachine::getSubtargetImpl(const Function &F) const {
123   Attribute CPUAttr = F.getFnAttribute("target-cpu");
124   Attribute TuneAttr = F.getFnAttribute("tune-cpu");
125   Attribute FSAttr = F.getFnAttribute("target-features");
126 
127   std::string CPU =
128       CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
129   std::string TuneCPU =
130       TuneAttr.isValid() ? TuneAttr.getValueAsString().str() : CPU;
131   std::string FS =
132       FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
133 
134   // FIXME: This is related to the code below to reset the target options,
135   // we need to know whether or not the soft float flag is set on the
136   // function, so we can enable it as a subtarget feature.
137   bool softFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
138 
139   if (softFloat)
140     FS += FS.empty() ? "+soft-float" : ",+soft-float";
141 
142   auto &I = SubtargetMap[CPU + FS];
143   if (!I) {
144     // This needs to be done before we create a new subtarget since any
145     // creation will depend on the TM and the code generation flags on the
146     // function that reside in TargetOptions.
147     resetTargetOptions(F);
148     I = std::make_unique<SparcSubtarget>(CPU, TuneCPU, FS, *this,
149                                          this->is64Bit);
150   }
151   return I.get();
152 }
153 
154 MachineFunctionInfo *SparcTargetMachine::createMachineFunctionInfo(
155     BumpPtrAllocator &Allocator, const Function &F,
156     const TargetSubtargetInfo *STI) const {
157   return SparcMachineFunctionInfo::create<SparcMachineFunctionInfo>(Allocator,
158                                                                     F, STI);
159 }
160 
161 namespace {
162 /// Sparc Code Generator Pass Configuration Options.
163 class SparcPassConfig : public TargetPassConfig {
164 public:
165   SparcPassConfig(SparcTargetMachine &TM, PassManagerBase &PM)
166     : TargetPassConfig(TM, PM) {}
167 
168   SparcTargetMachine &getSparcTargetMachine() const {
169     return getTM<SparcTargetMachine>();
170   }
171 
172   void addIRPasses() override;
173   bool addInstSelector() override;
174   void addPreEmitPass() override;
175 };
176 } // namespace
177 
178 TargetPassConfig *SparcTargetMachine::createPassConfig(PassManagerBase &PM) {
179   return new SparcPassConfig(*this, PM);
180 }
181 
182 void SparcPassConfig::addIRPasses() {
183   addPass(createAtomicExpandLegacyPass());
184 
185   TargetPassConfig::addIRPasses();
186 }
187 
188 bool SparcPassConfig::addInstSelector() {
189   addPass(createSparcISelDag(getSparcTargetMachine()));
190   return false;
191 }
192 
193 void SparcPassConfig::addPreEmitPass(){
194   if (BranchRelaxation)
195     addPass(&BranchRelaxationPassID);
196 
197   addPass(createSparcDelaySlotFillerPass());
198   addPass(new InsertNOPLoad());
199   addPass(new DetectRoundChange());
200   addPass(new FixAllFDIVSQRT());
201   addPass(new ErrataWorkaround());
202 }
203 
204 void SparcV8TargetMachine::anchor() { }
205 
206 SparcV8TargetMachine::SparcV8TargetMachine(const Target &T, const Triple &TT,
207                                            StringRef CPU, StringRef FS,
208                                            const TargetOptions &Options,
209                                            std::optional<Reloc::Model> RM,
210                                            std::optional<CodeModel::Model> CM,
211                                            CodeGenOptLevel OL, bool JIT)
212     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
213 
214 void SparcV9TargetMachine::anchor() { }
215 
216 SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, const Triple &TT,
217                                            StringRef CPU, StringRef FS,
218                                            const TargetOptions &Options,
219                                            std::optional<Reloc::Model> RM,
220                                            std::optional<CodeModel::Model> CM,
221                                            CodeGenOptLevel OL, bool JIT)
222     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
223 
224 void SparcelTargetMachine::anchor() {}
225 
226 SparcelTargetMachine::SparcelTargetMachine(const Target &T, const Triple &TT,
227                                            StringRef CPU, StringRef FS,
228                                            const TargetOptions &Options,
229                                            std::optional<Reloc::Model> RM,
230                                            std::optional<CodeModel::Model> CM,
231                                            CodeGenOptLevel OL, bool JIT)
232     : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
233