LLVM 23.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
74
75static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
76 if (TT.isOSBinFormatCOFF())
77 return std::make_unique<TargetLoweringObjectFileCOFF>();
78 return std::make_unique<MipsTargetObjectFile>();
79}
80
82 std::optional<Reloc::Model> RM) {
83 if (!RM || JIT)
84 return Reloc::Static;
85 return *RM;
86}
87
88// On function prologue, the stack is created by decrementing
89// its pointer. Once decremented, all references are done with positive
90// offset from the stack/frame pointer, using StackGrowsUp enables
91// an easier handling.
92// Using CodeModel::Large enables different CALL behavior.
94 StringRef CPU, StringRef FS,
96 std::optional<Reloc::Model> RM,
97 std::optional<CodeModel::Model> CM,
98 CodeGenOptLevel OL, bool JIT,
99 bool isLittle)
101 T, TT.computeDataLayout(Options.MCOptions.getABIName()), TT, CPU, FS,
103 getEffectiveCodeModel(CM, CodeModel::Small), OL),
104 isLittle(isLittle), TLOF(createTLOF(getTargetTriple())),
105 ABI(MipsABIInfo::computeTargetABI(TT, Options.MCOptions.getABIName())),
106 Subtarget(nullptr),
107 DefaultSubtarget(TT, CPU, FS, isLittle, *this, std::nullopt),
108 NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16",
109 isLittle, *this, std::nullopt),
110 Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16",
111 isLittle, *this, std::nullopt) {
112 Subtarget = &DefaultSubtarget;
113 initAsmInfo();
114
115 // Mips supports the debug entry values.
117}
118
120
121void MipsebTargetMachine::anchor() {}
122
124 StringRef CPU, StringRef FS,
125 const TargetOptions &Options,
126 std::optional<Reloc::Model> RM,
127 std::optional<CodeModel::Model> CM,
128 CodeGenOptLevel OL, bool JIT)
129 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
130
131void MipselTargetMachine::anchor() {}
132
134 StringRef CPU, StringRef FS,
135 const TargetOptions &Options,
136 std::optional<Reloc::Model> RM,
137 std::optional<CodeModel::Model> CM,
138 CodeGenOptLevel OL, bool JIT)
139 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
140
141const MipsSubtarget *
143 Attribute CPUAttr = F.getFnAttribute("target-cpu");
144 Attribute FSAttr = F.getFnAttribute("target-features");
145
146 std::string CPU =
147 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
148 std::string FS =
149 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
150 bool hasMips16Attr = F.getFnAttribute("mips16").isValid();
151 bool hasNoMips16Attr = F.getFnAttribute("nomips16").isValid();
152
153 bool HasMicroMipsAttr = F.getFnAttribute("micromips").isValid();
154 bool HasNoMicroMipsAttr = F.getFnAttribute("nomicromips").isValid();
155
156 // FIXME: This is related to the code below to reset the target options,
157 // we need to know whether or not the soft float flag is set on the
158 // function, so we can enable it as a subtarget feature.
159 bool softFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
160
161 if (hasMips16Attr)
162 FS += FS.empty() ? "+mips16" : ",+mips16";
163 else if (hasNoMips16Attr)
164 FS += FS.empty() ? "-mips16" : ",-mips16";
165 if (HasMicroMipsAttr)
166 FS += FS.empty() ? "+micromips" : ",+micromips";
167 else if (HasNoMicroMipsAttr)
168 FS += FS.empty() ? "-micromips" : ",-micromips";
169 if (softFloat)
170 FS += FS.empty() ? "+soft-float" : ",+soft-float";
171
172 auto &I = SubtargetMap[CPU + FS];
173 if (!I) {
174 // This needs to be done before we create a new subtarget since any
175 // creation will depend on the TM and the code generation flags on the
176 // function that reside in TargetOptions.
178 I = std::make_unique<MipsSubtarget>(
179 TargetTriple, CPU, FS, isLittle, *this,
180 MaybeAlign(F.getParent()->getOverrideStackAlignment()));
181 }
182 return I.get();
183}
184
186 LLVM_DEBUG(dbgs() << "resetSubtarget\n");
187
188 Subtarget = &MF->getSubtarget<MipsSubtarget>();
189}
190
191namespace {
192
193/// Mips Code Generator Pass Configuration Options.
194class MipsPassConfig : public TargetPassConfig {
195public:
196 MipsPassConfig(MipsTargetMachine &TM, PassManagerBase &PM)
197 : TargetPassConfig(TM, PM) {
198 // The current implementation of long branch pass requires a scratch
199 // register ($at) to be available before branch instructions. Tail merging
200 // can break this requirement, so disable it when long branch pass is
201 // enabled.
202 EnableTailMerge = !getMipsSubtarget().enableLongBranchPass();
203 EnableLoopTermFold = true;
204 }
205
206 MipsTargetMachine &getMipsTargetMachine() const {
208 }
209
210 const MipsSubtarget &getMipsSubtarget() const {
211 return *getMipsTargetMachine().getSubtargetImpl();
212 }
213
214 void addIRPasses() override;
215 bool addInstSelector() override;
216 void addPreEmitPass() override;
217 void addPreRegAlloc() override;
218 bool addIRTranslator() override;
219 void addPreLegalizeMachineIR() override;
220 bool addLegalizeMachineIR() override;
221 void addPreRegBankSelect() override;
222 bool addRegBankSelect() override;
223 bool addGlobalInstructionSelect() override;
224
225 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
226};
227
228} // end anonymous namespace
229
231 return new MipsPassConfig(*this, PM);
232}
233
234std::unique_ptr<CSEConfigBase> MipsPassConfig::getCSEConfig() const {
235 return getStandardCSEConfigForOpt(TM->getOptLevel());
236}
237
238void MipsPassConfig::addIRPasses() {
241 if (getMipsSubtarget().os16())
242 addPass(createMipsOs16Pass());
243 if (getMipsSubtarget().inMips16HardFloat())
244 addPass(createMips16HardFloatPass());
245}
246// Install an instruction selector pass using
247// the ISelDag to gen Mips code.
248bool MipsPassConfig::addInstSelector() {
250 addPass(createMips16ISelDag(getMipsTargetMachine(), getOptLevel()));
251 addPass(createMipsSEISelDag(getMipsTargetMachine(), getOptLevel()));
252 return false;
253}
254
255void MipsPassConfig::addPreRegAlloc() {
258}
259
262 if (Subtarget->allowMixed16_32()) {
263 LLVM_DEBUG(errs() << "No Target Transform Info Pass Added\n");
264 // FIXME: This is no longer necessary as the TTI returned is per-function.
265 return TargetTransformInfo(F.getDataLayout());
266 }
267
268 LLVM_DEBUG(errs() << "Target Transform Info Pass Added\n");
269 return TargetTransformInfo(std::make_unique<MipsTTIImpl>(this, F));
270}
271
277
278// Implemented by targets that want to run passes immediately before
279// machine code is emitted.
280void MipsPassConfig::addPreEmitPass() {
281 // Expand pseudo instructions that are sensitive to register allocation.
283
284 // The microMIPS size reduction pass performs instruction reselection for
285 // instructions which can be remapped to a 16 bit instruction.
287
288 // This pass inserts a nop instruction between two back-to-back multiplication
289 // instructions when the "mfix4300" flag is passed.
290 if (EnableMulMulFix)
291 addPass(createMipsMulMulBugPass());
292
293 // The delay slot filler pass can potientially create forbidden slot hazards
294 // for MIPSR6 and therefore it should go before MipsBranchExpansion pass.
296
297 // This pass expands branches and takes care about the forbidden slot hazards.
298 // Expanding branches may potentially create forbidden slot hazards for
299 // MIPSR6, and fixing such hazard may potentially break a branch by extending
300 // its offset out of range. That's why this pass combine these two tasks, and
301 // runs them alternately until one of them finishes without any changes. Only
302 // then we can be sure that all branches are expanded properly and no hazards
303 // exists.
304 // Any new pass should go before this pass.
305 addPass(createMipsBranchExpansion());
306
308}
309
310bool MipsPassConfig::addIRTranslator() {
311 addPass(new IRTranslator(getOptLevel()));
312 return false;
313}
314
315void MipsPassConfig::addPreLegalizeMachineIR() {
317}
318
319bool MipsPassConfig::addLegalizeMachineIR() {
320 addPass(new Legalizer());
321 return false;
322}
323
324void MipsPassConfig::addPreRegBankSelect() {
325 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
326 addPass(createMipsPostLegalizeCombiner(IsOptNone));
327}
328
329bool MipsPassConfig::addRegBankSelect() {
330 addPass(new RegBankSelect());
331 return false;
332}
333
334bool MipsPassConfig::addGlobalInstructionSelect() {
335 addPass(new InstructionSelect(getOptLevel()));
336 return false;
337}
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
static Reloc::Model getEffectiveRelocModel()
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...
#define X(NUM, ENUM, NAME)
Definition ELF.h:849
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:54
#define I(x, y, z)
Definition MD5.cpp:57
#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")
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:105
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:261
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:222
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.
Definition Types.h:26
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 &)
void initializeMipsSetMachineRegisterFlagsPass(PassRegistry &)
FunctionPass * createMipsOptimizePICCallPass()
Return an OptimizeCall object.
void initializeMipsDAGToDAGISelLegacyPass(PassRegistry &)
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:85
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)
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.
FunctionPass * createMipsSetMachineRegisterFlagsPass()
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,...
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
Target & getTheMipsTarget()
ModulePass * createMipsOs16Pass()
Definition MipsOs16.cpp:160
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:870
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:106
RegisterTargetMachine - Helper template for registering a target machine implementation,...