LLVM 24.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
56 "mips-os16", cl::init(false),
57 cl::desc("Compile all functions that don't use floating point as Mips 16"),
59
79
80static std::unique_ptr<TargetLoweringObjectFile>
81createTLOF(const Triple &TT, bool UseSmallSection) {
82 if (TT.isOSBinFormatCOFF())
83 return std::make_unique<TargetLoweringObjectFileCOFF>();
84 return std::make_unique<MipsTargetObjectFile>(UseSmallSection);
85}
86
88 std::optional<Reloc::Model> RM) {
89 if (!RM || JIT)
90 return Reloc::Static;
91 return *RM;
92}
93
94// On function prologue, the stack is created by decrementing
95// its pointer. Once decremented, all references are done with positive
96// offset from the stack/frame pointer, using StackGrowsUp enables
97// an easier handling.
98// Using CodeModel::Large enables different CALL behavior.
100 StringRef CPU, StringRef FS,
101 const TargetOptions &Options,
102 std::optional<Reloc::Model> RM,
103 std::optional<CodeModel::Model> CM,
104 CodeGenOptLevel OL, bool JIT,
105 bool isLittle)
106 : CodeGenTargetMachineImpl(T, TT, CPU, FS, Options,
108 getEffectiveCodeModel(CM, CodeModel::Small), OL),
109 isLittle(isLittle),
110 ABI(MipsABIInfo::computeTargetABI(TT, Options.MCOptions.getABIName())),
111 DefaultSubtarget(TT, CPU, FS, isLittle, *this, std::nullopt),
112 TLOF(createTLOF(TT, DefaultSubtarget.useSmallSection())) {
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 I = std::make_unique<MipsSubtarget>(
175 TargetTriple, CPU, FS, isLittle, *this,
176 MaybeAlign(F.getParent()->getOverrideStackAlignment()));
177 }
178 return I.get();
179}
180
181namespace {
182
183/// Mips Code Generator Pass Configuration Options.
184class MipsPassConfig : public TargetPassConfig {
185public:
186 MipsPassConfig(MipsTargetMachine &TM, PassManagerBase &PM)
187 : TargetPassConfig(TM, PM) {
188 // The current implementation of long branch pass requires a scratch
189 // register ($at) to be available before branch instructions. Tail merging
190 // can break this requirement.
191 EnableTailMerge = false;
192 EnableLoopTermFold = true;
193 }
194
195 MipsTargetMachine &getMipsTargetMachine() const {
197 }
198
199 void addIRPasses() override;
200 bool addInstSelector() override;
201 void addPreEmitPass() override;
202 void addPreRegAlloc() override;
203 bool addIRTranslator() override;
204 void addPreLegalizeMachineIR() override;
205 bool addLegalizeMachineIR() override;
206 void addPreRegBankSelect() override;
207 bool addRegBankSelect() override;
208 bool addGlobalInstructionSelect() override;
209
210 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
211};
212
213} // end anonymous namespace
214
216 return new MipsPassConfig(*this, PM);
217}
218
219std::unique_ptr<CSEConfigBase> MipsPassConfig::getCSEConfig() const {
220 return getStandardCSEConfigForOpt(TM->getOptLevel());
221}
222
223void MipsPassConfig::addIRPasses() {
226 if (MipsOs16)
227 addPass(createMipsOs16Pass());
228 addPass(createMips16HardFloatPass());
229}
230// Install an instruction selector pass using
231// the ISelDag to gen Mips code.
232bool MipsPassConfig::addInstSelector() {
233 addPass(createMips16ISelDag(getMipsTargetMachine(), getOptLevel()));
234 addPass(createMipsSEISelDag(getMipsTargetMachine(), getOptLevel()));
235 return false;
236}
237
238void MipsPassConfig::addPreRegAlloc() {
241}
242
245 LLVM_DEBUG(errs() << "Target Transform Info Pass Added\n");
246 return TargetTransformInfo(std::make_unique<MipsTTIImpl>(this, F));
247}
248
254
255// Implemented by targets that want to run passes immediately before
256// machine code is emitted.
257void MipsPassConfig::addPreEmitPass() {
258 // Expand pseudo instructions that are sensitive to register allocation.
260
261 // The microMIPS size reduction pass performs instruction reselection for
262 // instructions which can be remapped to a 16 bit instruction.
264
265 // This pass inserts a nop instruction between two back-to-back multiplication
266 // instructions when the "mfix4300" flag is passed.
267 if (EnableMulMulFix)
268 addPass(createMipsMulMulBugPass());
269
270 // The delay slot filler pass can potientially create forbidden slot hazards
271 // for MIPSR6 and therefore it should go before MipsBranchExpansion pass.
273
274 // This pass expands branches and takes care about the forbidden slot hazards.
275 // Expanding branches may potentially create forbidden slot hazards for
276 // MIPSR6, and fixing such hazard may potentially break a branch by extending
277 // its offset out of range. That's why this pass combine these two tasks, and
278 // runs them alternately until one of them finishes without any changes. Only
279 // then we can be sure that all branches are expanded properly and no hazards
280 // exists.
281 // Any new pass should go before this pass.
282 addPass(createMipsBranchExpansion());
283
285}
286
287bool MipsPassConfig::addIRTranslator() {
288 addPass(new IRTranslatorLegacy(getOptLevel()));
289 return false;
290}
291
292void MipsPassConfig::addPreLegalizeMachineIR() {
294}
295
296bool MipsPassConfig::addLegalizeMachineIR() {
297 addPass(new LegalizerLegacy());
298 return false;
299}
300
301void MipsPassConfig::addPreRegBankSelect() {
302 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
303 addPass(createMipsPostLegalizeCombiner(IsOptNone));
304}
305
306bool MipsPassConfig::addRegBankSelect() {
307 addPass(new RegBankSelectLegacy());
308 return false;
309}
310
311bool MipsPassConfig::addGlobalInstructionSelect() {
312 addPass(new InstructionSelectLegacy(getOptLevel()));
313 return false;
314}
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:857
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:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
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 > MipsOs16("mips-os16", cl::init(false), cl::desc("Compile all functions that don't use floating point as Mips 16"), cl::Hidden)
static cl::opt< bool > EnableMulMulFix("mfix4300", cl::init(false), cl::desc("Enable the VR4300 mulmul bug fix."), cl::Hidden)
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:119
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:106
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:266
CodeGenTargetMachineImpl(const Target &T, 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.
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
const MipsSubtarget * getSubtargetImpl(const Function &F) const override
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
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.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::string str() const
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.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
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:48
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 &)
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
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.
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:227
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:390
Target & getTheMipsTarget()
ModulePass * createMipsOs16Pass()
Definition MipsOs16.cpp:160
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
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,...