1 //===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
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
7 //===----------------------------------------------------------------------===//
9 // Implements the info about Mips target spec.
11 //===----------------------------------------------------------------------===//
13 #include "MipsTargetMachine.h"
14 #include "MCTargetDesc/MipsABIInfo.h"
15 #include "MCTargetDesc/MipsMCTargetDesc.h"
17 #include "Mips16ISelDAGToDAG.h"
18 #include "MipsMachineFunction.h"
19 #include "MipsSEISelDAGToDAG.h"
20 #include "MipsSubtarget.h"
21 #include "MipsTargetObjectFile.h"
22 #include "MipsTargetTransformInfo.h"
23 #include "TargetInfo/MipsTargetInfo.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/StringRef.h"
26 #include "llvm/Analysis/TargetTransformInfo.h"
27 #include "llvm/CodeGen/BasicTTIImpl.h"
28 #include "llvm/CodeGen/GlobalISel/CSEInfo.h"
29 #include "llvm/CodeGen/GlobalISel/IRTranslator.h"
30 #include "llvm/CodeGen/GlobalISel/InstructionSelect.h"
31 #include "llvm/CodeGen/GlobalISel/Legalizer.h"
32 #include "llvm/CodeGen/GlobalISel/RegBankSelect.h"
33 #include "llvm/CodeGen/MachineFunction.h"
34 #include "llvm/CodeGen/Passes.h"
35 #include "llvm/CodeGen/TargetPassConfig.h"
36 #include "llvm/IR/Attributes.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/InitializePasses.h"
39 #include "llvm/MC/TargetRegistry.h"
40 #include "llvm/Support/CodeGen.h"
41 #include "llvm/Support/Debug.h"
42 #include "llvm/Support/raw_ostream.h"
43 #include "llvm/Target/TargetOptions.h"
49 #define DEBUG_TYPE "mips"
52 EnableMulMulFix("mfix4300", cl::init(false),
53 cl::desc("Enable the VR4300 mulmul bug fix."), cl::Hidden
);
55 extern "C" LLVM_EXTERNAL_VISIBILITY
void LLVMInitializeMipsTarget() {
56 // Register the target.
57 RegisterTargetMachine
<MipsebTargetMachine
> X(getTheMipsTarget());
58 RegisterTargetMachine
<MipselTargetMachine
> Y(getTheMipselTarget());
59 RegisterTargetMachine
<MipsebTargetMachine
> A(getTheMips64Target());
60 RegisterTargetMachine
<MipselTargetMachine
> B(getTheMips64elTarget());
62 PassRegistry
*PR
= PassRegistry::getPassRegistry();
63 initializeGlobalISel(*PR
);
64 initializeMipsDelaySlotFillerPass(*PR
);
65 initializeMipsBranchExpansionPass(*PR
);
66 initializeMicroMipsSizeReducePass(*PR
);
67 initializeMipsPreLegalizerCombinerPass(*PR
);
68 initializeMipsPostLegalizerCombinerPass(*PR
);
69 initializeMipsMulMulBugFixPass(*PR
);
70 initializeMipsDAGToDAGISelLegacyPass(*PR
);
73 static std::string
computeDataLayout(const Triple
&TT
, StringRef CPU
,
74 const TargetOptions
&Options
,
77 MipsABIInfo ABI
= MipsABIInfo::computeTargetABI(TT
, CPU
, Options
.MCOptions
);
79 // There are both little and big endian mips.
90 // Pointers are 32 bit on some ABIs.
94 // 8 and 16 bit integers only need to have natural alignment, but try to
95 // align them to 32 bits. 64 bit integers have natural alignment.
96 Ret
+= "-i8:8:32-i16:16:32-i64:64";
98 // 32 bit registers are always available and the stack is at least 64 bit
99 // aligned. On N64 64 bit registers are also available and the stack is
101 if (ABI
.IsN64() || ABI
.IsN32())
102 Ret
+= "-n32:64-S128";
109 static Reloc::Model
getEffectiveRelocModel(bool JIT
,
110 std::optional
<Reloc::Model
> RM
) {
112 return Reloc::Static
;
116 // On function prologue, the stack is created by decrementing
117 // its pointer. Once decremented, all references are done with positive
118 // offset from the stack/frame pointer, using StackGrowsUp enables
119 // an easier handling.
120 // Using CodeModel::Large enables different CALL behavior.
121 MipsTargetMachine::MipsTargetMachine(const Target
&T
, const Triple
&TT
,
122 StringRef CPU
, StringRef FS
,
123 const TargetOptions
&Options
,
124 std::optional
<Reloc::Model
> RM
,
125 std::optional
<CodeModel::Model
> CM
,
126 CodeGenOptLevel OL
, bool JIT
,
128 : LLVMTargetMachine(T
, computeDataLayout(TT
, CPU
, Options
, isLittle
), TT
,
129 CPU
, FS
, Options
, getEffectiveRelocModel(JIT
, RM
),
130 getEffectiveCodeModel(CM
, CodeModel::Small
), OL
),
131 isLittle(isLittle
), TLOF(std::make_unique
<MipsTargetObjectFile
>()),
132 ABI(MipsABIInfo::computeTargetABI(TT
, CPU
, Options
.MCOptions
)),
134 DefaultSubtarget(TT
, CPU
, FS
, isLittle
, *this, std::nullopt
),
135 NoMips16Subtarget(TT
, CPU
, FS
.empty() ? "-mips16" : FS
.str() + ",-mips16",
136 isLittle
, *this, std::nullopt
),
137 Mips16Subtarget(TT
, CPU
, FS
.empty() ? "+mips16" : FS
.str() + ",+mips16",
138 isLittle
, *this, std::nullopt
) {
139 Subtarget
= &DefaultSubtarget
;
142 // Mips supports the debug entry values.
143 setSupportsDebugEntryValues(true);
146 MipsTargetMachine::~MipsTargetMachine() = default;
148 void MipsebTargetMachine::anchor() {}
150 MipsebTargetMachine::MipsebTargetMachine(const Target
&T
, const Triple
&TT
,
151 StringRef CPU
, StringRef FS
,
152 const TargetOptions
&Options
,
153 std::optional
<Reloc::Model
> RM
,
154 std::optional
<CodeModel::Model
> CM
,
155 CodeGenOptLevel OL
, bool JIT
)
156 : MipsTargetMachine(T
, TT
, CPU
, FS
, Options
, RM
, CM
, OL
, JIT
, false) {}
158 void MipselTargetMachine::anchor() {}
160 MipselTargetMachine::MipselTargetMachine(const Target
&T
, const Triple
&TT
,
161 StringRef CPU
, StringRef FS
,
162 const TargetOptions
&Options
,
163 std::optional
<Reloc::Model
> RM
,
164 std::optional
<CodeModel::Model
> CM
,
165 CodeGenOptLevel OL
, bool JIT
)
166 : MipsTargetMachine(T
, TT
, CPU
, FS
, Options
, RM
, CM
, OL
, JIT
, true) {}
168 const MipsSubtarget
*
169 MipsTargetMachine::getSubtargetImpl(const Function
&F
) const {
170 Attribute CPUAttr
= F
.getFnAttribute("target-cpu");
171 Attribute FSAttr
= F
.getFnAttribute("target-features");
174 CPUAttr
.isValid() ? CPUAttr
.getValueAsString().str() : TargetCPU
;
176 FSAttr
.isValid() ? FSAttr
.getValueAsString().str() : TargetFS
;
177 bool hasMips16Attr
= F
.getFnAttribute("mips16").isValid();
178 bool hasNoMips16Attr
= F
.getFnAttribute("nomips16").isValid();
180 bool HasMicroMipsAttr
= F
.getFnAttribute("micromips").isValid();
181 bool HasNoMicroMipsAttr
= F
.getFnAttribute("nomicromips").isValid();
183 // FIXME: This is related to the code below to reset the target options,
184 // we need to know whether or not the soft float flag is set on the
185 // function, so we can enable it as a subtarget feature.
186 bool softFloat
= F
.getFnAttribute("use-soft-float").getValueAsBool();
189 FS
+= FS
.empty() ? "+mips16" : ",+mips16";
190 else if (hasNoMips16Attr
)
191 FS
+= FS
.empty() ? "-mips16" : ",-mips16";
192 if (HasMicroMipsAttr
)
193 FS
+= FS
.empty() ? "+micromips" : ",+micromips";
194 else if (HasNoMicroMipsAttr
)
195 FS
+= FS
.empty() ? "-micromips" : ",-micromips";
197 FS
+= FS
.empty() ? "+soft-float" : ",+soft-float";
199 auto &I
= SubtargetMap
[CPU
+ FS
];
201 // This needs to be done before we create a new subtarget since any
202 // creation will depend on the TM and the code generation flags on the
203 // function that reside in TargetOptions.
204 resetTargetOptions(F
);
205 I
= std::make_unique
<MipsSubtarget
>(
206 TargetTriple
, CPU
, FS
, isLittle
, *this,
207 MaybeAlign(F
.getParent()->getOverrideStackAlignment()));
212 void MipsTargetMachine::resetSubtarget(MachineFunction
*MF
) {
213 LLVM_DEBUG(dbgs() << "resetSubtarget\n");
215 Subtarget
= &MF
->getSubtarget
<MipsSubtarget
>();
220 /// Mips Code Generator Pass Configuration Options.
221 class MipsPassConfig
: public TargetPassConfig
{
223 MipsPassConfig(MipsTargetMachine
&TM
, PassManagerBase
&PM
)
224 : TargetPassConfig(TM
, PM
) {
225 // The current implementation of long branch pass requires a scratch
226 // register ($at) to be available before branch instructions. Tail merging
227 // can break this requirement, so disable it when long branch pass is
229 EnableTailMerge
= !getMipsSubtarget().enableLongBranchPass();
232 MipsTargetMachine
&getMipsTargetMachine() const {
233 return getTM
<MipsTargetMachine
>();
236 const MipsSubtarget
&getMipsSubtarget() const {
237 return *getMipsTargetMachine().getSubtargetImpl();
240 void addIRPasses() override
;
241 bool addInstSelector() override
;
242 void addPreEmitPass() override
;
243 void addPreRegAlloc() override
;
244 bool addIRTranslator() override
;
245 void addPreLegalizeMachineIR() override
;
246 bool addLegalizeMachineIR() override
;
247 void addPreRegBankSelect() override
;
248 bool addRegBankSelect() override
;
249 bool addGlobalInstructionSelect() override
;
251 std::unique_ptr
<CSEConfigBase
> getCSEConfig() const override
;
254 } // end anonymous namespace
256 TargetPassConfig
*MipsTargetMachine::createPassConfig(PassManagerBase
&PM
) {
257 return new MipsPassConfig(*this, PM
);
260 std::unique_ptr
<CSEConfigBase
> MipsPassConfig::getCSEConfig() const {
261 return getStandardCSEConfigForOpt(TM
->getOptLevel());
264 void MipsPassConfig::addIRPasses() {
265 TargetPassConfig::addIRPasses();
266 addPass(createAtomicExpandLegacyPass());
267 if (getMipsSubtarget().os16())
268 addPass(createMipsOs16Pass());
269 if (getMipsSubtarget().inMips16HardFloat())
270 addPass(createMips16HardFloatPass());
272 // Install an instruction selector pass using
273 // the ISelDag to gen Mips code.
274 bool MipsPassConfig::addInstSelector() {
275 addPass(createMipsModuleISelDagPass());
276 addPass(createMips16ISelDag(getMipsTargetMachine(), getOptLevel()));
277 addPass(createMipsSEISelDag(getMipsTargetMachine(), getOptLevel()));
281 void MipsPassConfig::addPreRegAlloc() {
282 addPass(createMipsOptimizePICCallPass());
286 MipsTargetMachine::getTargetTransformInfo(const Function
&F
) const {
287 if (Subtarget
->allowMixed16_32()) {
288 LLVM_DEBUG(errs() << "No Target Transform Info Pass Added\n");
289 // FIXME: This is no longer necessary as the TTI returned is per-function.
290 return TargetTransformInfo(F
.getDataLayout());
293 LLVM_DEBUG(errs() << "Target Transform Info Pass Added\n");
294 return TargetTransformInfo(MipsTTIImpl(this, F
));
297 MachineFunctionInfo
*MipsTargetMachine::createMachineFunctionInfo(
298 BumpPtrAllocator
&Allocator
, const Function
&F
,
299 const TargetSubtargetInfo
*STI
) const {
300 return MipsFunctionInfo::create
<MipsFunctionInfo
>(Allocator
, F
, STI
);
303 // Implemented by targets that want to run passes immediately before
304 // machine code is emitted.
305 void MipsPassConfig::addPreEmitPass() {
306 // Expand pseudo instructions that are sensitive to register allocation.
307 addPass(createMipsExpandPseudoPass());
309 // The microMIPS size reduction pass performs instruction reselection for
310 // instructions which can be remapped to a 16 bit instruction.
311 addPass(createMicroMipsSizeReducePass());
313 // This pass inserts a nop instruction between two back-to-back multiplication
314 // instructions when the "mfix4300" flag is passed.
316 addPass(createMipsMulMulBugPass());
318 // The delay slot filler pass can potientially create forbidden slot hazards
319 // for MIPSR6 and therefore it should go before MipsBranchExpansion pass.
320 addPass(createMipsDelaySlotFillerPass());
322 // This pass expands branches and takes care about the forbidden slot hazards.
323 // Expanding branches may potentially create forbidden slot hazards for
324 // MIPSR6, and fixing such hazard may potentially break a branch by extending
325 // its offset out of range. That's why this pass combine these two tasks, and
326 // runs them alternately until one of them finishes without any changes. Only
327 // then we can be sure that all branches are expanded properly and no hazards
329 // Any new pass should go before this pass.
330 addPass(createMipsBranchExpansion());
332 addPass(createMipsConstantIslandPass());
335 bool MipsPassConfig::addIRTranslator() {
336 addPass(new IRTranslator(getOptLevel()));
340 void MipsPassConfig::addPreLegalizeMachineIR() {
341 addPass(createMipsPreLegalizeCombiner());
344 bool MipsPassConfig::addLegalizeMachineIR() {
345 addPass(new Legalizer());
349 void MipsPassConfig::addPreRegBankSelect() {
350 bool IsOptNone
= getOptLevel() == CodeGenOptLevel::None
;
351 addPass(createMipsPostLegalizeCombiner(IsOptNone
));
354 bool MipsPassConfig::addRegBankSelect() {
355 addPass(new RegBankSelect());
359 bool MipsPassConfig::addGlobalInstructionSelect() {
360 addPass(new InstructionSelect(getOptLevel()));