LLVM 22.0.0git
MipsTargetMachine.cpp
Go to the documentation of this file.
1//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
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// Implements the info about Mips target spec.
10//
11//===----------------------------------------------------------------------===//
12
13#include "MipsTargetMachine.h"
16#include "Mips.h"
17#include "Mips16ISelDAGToDAG.h"
18#include "MipsMachineFunction.h"
19#include "MipsSEISelDAGToDAG.h"
20#include "MipsSubtarget.h"
24#include "llvm/ADT/StringRef.h"
33#include "llvm/CodeGen/Passes.h"
35#include "llvm/IR/Attributes.h"
36#include "llvm/IR/Function.h"
41#include "llvm/Support/Debug.h"
44#include <optional>
45#include <string>
46
47using namespace llvm;
48
49#define DEBUG_TYPE "mips"
50
51static cl::opt<bool>
52 EnableMulMulFix("mfix4300", cl::init(false),
53 cl::desc("Enable the VR4300 mulmul bug fix."), cl::Hidden);
54
73
74static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
75 if (TT.isOSBinFormatCOFF())
76 return std::make_unique<TargetLoweringObjectFileCOFF>();
77 return std::make_unique<MipsTargetObjectFile>();
78}
79
81 std::optional<Reloc::Model> RM) {
82 if (!RM || JIT)
83 return Reloc::Static;
84 return *RM;
85}
86
87// On function prologue, the stack is created by decrementing
88// its pointer. Once decremented, all references are done with positive
89// offset from the stack/frame pointer, using StackGrowsUp enables
90// an easier handling.
91// Using CodeModel::Large enables different CALL behavior.
93 StringRef CPU, StringRef FS,
95 std::optional<Reloc::Model> RM,
96 std::optional<CodeModel::Model> CM,
97 CodeGenOptLevel OL, bool JIT,
98 bool isLittle)
100 T, TT.computeDataLayout(Options.MCOptions.getABIName()), TT, CPU, FS,
102 getEffectiveCodeModel(CM, CodeModel::Small), OL),
103 isLittle(isLittle), TLOF(createTLOF(getTargetTriple())),
104 ABI(MipsABIInfo::computeTargetABI(TT, Options.MCOptions.getABIName())),
105 Subtarget(nullptr),
106 DefaultSubtarget(TT, CPU, FS, isLittle, *this, std::nullopt),
107 NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16",
108 isLittle, *this, std::nullopt),
109 Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16",
110 isLittle, *this, std::nullopt) {
111 Subtarget = &DefaultSubtarget;
112 initAsmInfo();
113
114 // Mips supports the debug entry values.
116}
117
119
120void MipsebTargetMachine::anchor() {}
121
123 StringRef CPU, StringRef FS,
124 const TargetOptions &Options,
125 std::optional<Reloc::Model> RM,
126 std::optional<CodeModel::Model> CM,
127 CodeGenOptLevel OL, bool JIT)
128 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
129
130void MipselTargetMachine::anchor() {}
131
133 StringRef CPU, StringRef FS,
134 const TargetOptions &Options,
135 std::optional<Reloc::Model> RM,
136 std::optional<CodeModel::Model> CM,
137 CodeGenOptLevel OL, bool JIT)
138 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
139
140const MipsSubtarget *
142 Attribute CPUAttr = F.getFnAttribute("target-cpu");
143 Attribute FSAttr = F.getFnAttribute("target-features");
144
145 std::string CPU =
146 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
147 std::string FS =
148 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
149 bool hasMips16Attr = F.getFnAttribute("mips16").isValid();
150 bool hasNoMips16Attr = F.getFnAttribute("nomips16").isValid();
151
152 bool HasMicroMipsAttr = F.getFnAttribute("micromips").isValid();
153 bool HasNoMicroMipsAttr = F.getFnAttribute("nomicromips").isValid();
154
155 // FIXME: This is related to the code below to reset the target options,
156 // we need to know whether or not the soft float flag is set on the
157 // function, so we can enable it as a subtarget feature.
158 bool softFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
159
160 if (hasMips16Attr)
161 FS += FS.empty() ? "+mips16" : ",+mips16";
162 else if (hasNoMips16Attr)
163 FS += FS.empty() ? "-mips16" : ",-mips16";
164 if (HasMicroMipsAttr)
165 FS += FS.empty() ? "+micromips" : ",+micromips";
166 else if (HasNoMicroMipsAttr)
167 FS += FS.empty() ? "-micromips" : ",-micromips";
168 if (softFloat)
169 FS += FS.empty() ? "+soft-float" : ",+soft-float";
170
171 auto &I = SubtargetMap[CPU + FS];
172 if (!I) {
173 // This needs to be done before we create a new subtarget since any
174 // creation will depend on the TM and the code generation flags on the
175 // function that reside in TargetOptions.
177 I = std::make_unique<MipsSubtarget>(
178 TargetTriple, CPU, FS, isLittle, *this,
179 MaybeAlign(F.getParent()->getOverrideStackAlignment()));
180 }
181 return I.get();
182}
183
185 LLVM_DEBUG(dbgs() << "resetSubtarget\n");
186
187 Subtarget = &MF->getSubtarget<MipsSubtarget>();
188}
189
190namespace {
191
192/// Mips Code Generator Pass Configuration Options.
193class MipsPassConfig : public TargetPassConfig {
194public:
195 MipsPassConfig(MipsTargetMachine &TM, PassManagerBase &PM)
196 : TargetPassConfig(TM, PM) {
197 // The current implementation of long branch pass requires a scratch
198 // register ($at) to be available before branch instructions. Tail merging
199 // can break this requirement, so disable it when long branch pass is
200 // enabled.
201 EnableTailMerge = !getMipsSubtarget().enableLongBranchPass();
202 EnableLoopTermFold = true;
203 }
204
205 MipsTargetMachine &getMipsTargetMachine() const {
207 }
208
209 const MipsSubtarget &getMipsSubtarget() const {
210 return *getMipsTargetMachine().getSubtargetImpl();
211 }
212
213 void addIRPasses() override;
214 bool addInstSelector() override;
215 void addPreEmitPass() override;
216 void addPreRegAlloc() override;
217 bool addIRTranslator() override;
218 void addPreLegalizeMachineIR() override;
219 bool addLegalizeMachineIR() override;
220 void addPreRegBankSelect() override;
221 bool addRegBankSelect() override;
222 bool addGlobalInstructionSelect() override;
223
224 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
225};
226
227} // end anonymous namespace
228
230 return new MipsPassConfig(*this, PM);
231}
232
233std::unique_ptr<CSEConfigBase> MipsPassConfig::getCSEConfig() const {
234 return getStandardCSEConfigForOpt(TM->getOptLevel());
235}
236
237void MipsPassConfig::addIRPasses() {
240 if (getMipsSubtarget().os16())
241 addPass(createMipsOs16Pass());
242 if (getMipsSubtarget().inMips16HardFloat())
243 addPass(createMips16HardFloatPass());
244}
245// Install an instruction selector pass using
246// the ISelDag to gen Mips code.
247bool MipsPassConfig::addInstSelector() {
249 addPass(createMips16ISelDag(getMipsTargetMachine(), getOptLevel()));
250 addPass(createMipsSEISelDag(getMipsTargetMachine(), getOptLevel()));
251 return false;
252}
253
254void MipsPassConfig::addPreRegAlloc() {
256}
257
260 if (Subtarget->allowMixed16_32()) {
261 LLVM_DEBUG(errs() << "No Target Transform Info Pass Added\n");
262 // FIXME: This is no longer necessary as the TTI returned is per-function.
263 return TargetTransformInfo(F.getDataLayout());
264 }
265
266 LLVM_DEBUG(errs() << "Target Transform Info Pass Added\n");
267 return TargetTransformInfo(std::make_unique<MipsTTIImpl>(this, F));
268}
269
275
276// Implemented by targets that want to run passes immediately before
277// machine code is emitted.
278void MipsPassConfig::addPreEmitPass() {
279 // Expand pseudo instructions that are sensitive to register allocation.
281
282 // The microMIPS size reduction pass performs instruction reselection for
283 // instructions which can be remapped to a 16 bit instruction.
285
286 // This pass inserts a nop instruction between two back-to-back multiplication
287 // instructions when the "mfix4300" flag is passed.
288 if (EnableMulMulFix)
289 addPass(createMipsMulMulBugPass());
290
291 // The delay slot filler pass can potientially create forbidden slot hazards
292 // for MIPSR6 and therefore it should go before MipsBranchExpansion pass.
294
295 // This pass expands branches and takes care about the forbidden slot hazards.
296 // Expanding branches may potentially create forbidden slot hazards for
297 // MIPSR6, and fixing such hazard may potentially break a branch by extending
298 // its offset out of range. That's why this pass combine these two tasks, and
299 // runs them alternately until one of them finishes without any changes. Only
300 // then we can be sure that all branches are expanded properly and no hazards
301 // exists.
302 // Any new pass should go before this pass.
303 addPass(createMipsBranchExpansion());
304
306}
307
308bool MipsPassConfig::addIRTranslator() {
309 addPass(new IRTranslator(getOptLevel()));
310 return false;
311}
312
313void MipsPassConfig::addPreLegalizeMachineIR() {
315}
316
317bool MipsPassConfig::addLegalizeMachineIR() {
318 addPass(new Legalizer());
319 return false;
320}
321
322void MipsPassConfig::addPreRegBankSelect() {
323 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
324 addPass(createMipsPostLegalizeCombiner(IsOptNone));
325}
326
327bool MipsPassConfig::addRegBankSelect() {
328 addPass(new RegBankSelect());
329 return false;
330}
331
332bool MipsPassConfig::addGlobalInstructionSelect() {
333 addPass(new InstructionSelect(getOptLevel()));
334 return false;
335}
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
This file contains the simple types necessary to represent the attributes associated with functions a...
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Provides analysis for continuously CSEing during GISel passes.
#define LLVM_ABI
Definition Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
DXIL Legalizer
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:55
#define I(x, y, z)
Definition MD5.cpp:58
#define T
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMipsTarget()
static cl::opt< bool > EnableMulMulFix("mfix4300", cl::init(false), cl::desc("Enable the VR4300 mulmul bug fix."), cl::Hidden)
static PPCTargetMachine::PPCABI computeTargetABI(const Triple &TT, const TargetOptions &Options)
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
#define LLVM_DEBUG(...)
Definition Debug.h:114
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:69
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:223
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
This pass is responsible for selecting generic machine instructions to target-specific instructions.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT, bool isLittle)
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
~MipsTargetMachine() override
void resetSubtarget(MachineFunction *MF)
Reset the subtarget for the Mips target.
const MipsSubtarget * getSubtargetImpl() const
MipsebTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
MipselTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
std::string str() const
str - Get the contents as an std::string.
Definition StringRef.h:233
void setSupportsDebugEntryValues(bool Enable)
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
const Triple & getTargetTriple() const
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
Target-Independent Code Generator Pass Configuration Options.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
FunctionPass * createMipsPreLegalizeCombiner()
Target & getTheMips64Target()
FunctionPass * createMipsConstantIslandPass()
Returns a pass that converts branches to long branches.
void initializeMipsPreLegalizerCombinerPass(PassRegistry &)
void initializeMipsBranchExpansionPass(PassRegistry &)
void initializeMipsDelaySlotFillerPass(PassRegistry &)
void initializeMipsAsmPrinterPass(PassRegistry &)
void initializeMipsMulMulBugFixPass(PassRegistry &)
FunctionPass * createMipsOptimizePICCallPass()
Return an OptimizeCall object.
void initializeMipsDAGToDAGISelLegacyPass(PassRegistry &)
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:89
FunctionPass * createMipsModuleISelDagPass()
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
void initializeMipsPostLegalizerCombinerPass(PassRegistry &)
FunctionPass * createMicroMipsSizeReducePass()
Returns an instance of the MicroMips size reduction pass.
FunctionPass * createMipsSEISelDag(MipsTargetMachine &TM, CodeGenOptLevel OptLevel)
BumpPtrAllocatorImpl BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
FunctionPass * createMipsBranchExpansion()
Target & getTheMips64elTarget()
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
FunctionPass * createMipsMulMulBugPass()
void initializeMicroMipsSizeReducePass(PassRegistry &)
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
Target & getTheMipselTarget()
FunctionPass * createMips16ISelDag(MipsTargetMachine &TM, CodeGenOptLevel OptLevel)
FunctionPass * createMipsPostLegalizeCombiner(bool IsOptNone)
ModulePass * createMips16HardFloatPass()
FunctionPass * createMipsExpandPseudoPass()
createMipsExpandPseudoPass - returns an instance of the pseudo instruction expansion pass.
FunctionPass * createMipsDelaySlotFillerPass()
createMipsDelaySlotFillerPass - Returns a pass that fills in delay slots in Mips MachineFunctions
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
Target & getTheMipsTarget()
ModulePass * createMipsOs16Pass()
Definition MipsOs16.cpp:160
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:851
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
static FuncInfoTy * create(BumpPtrAllocator &Allocator, const Function &F, const SubtargetTy *STI)
Factory function: default behavior is to call new using the supplied allocator.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:117
RegisterTargetMachine - Helper template for registering a target machine implementation,...