LLVM 19.0.0git
RISCVTargetMachine.cpp
Go to the documentation of this file.
1//===-- RISCVTargetMachine.cpp - Define TargetMachine for RISC-V ----------===//
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 RISC-V target spec.
10//
11//===----------------------------------------------------------------------===//
12
13#include "RISCVTargetMachine.h"
15#include "RISCV.h"
20#include "llvm/ADT/STLExtras.h"
30#include "llvm/CodeGen/Passes.h"
38#include "llvm/Transforms/IPO.h"
40#include <optional>
41using namespace llvm;
42
44 "riscv-enable-copyelim",
45 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
47
48// FIXME: Unify control over GlobalMerge.
50 EnableGlobalMerge("riscv-enable-global-merge", cl::Hidden,
51 cl::desc("Enable the global merge pass"));
52
53static cl::opt<bool>
54 EnableMachineCombiner("riscv-enable-machine-combiner",
55 cl::desc("Enable the machine combiner pass"),
56 cl::init(true), cl::Hidden);
57
59 "riscv-v-vector-bits-max",
60 cl::desc("Assume V extension vector registers are at most this big, "
61 "with zero meaning no maximum size is assumed."),
63
65 "riscv-v-vector-bits-min",
66 cl::desc("Assume V extension vector registers are at least this big, "
67 "with zero meaning no minimum size is assumed. A value of -1 "
68 "means use Zvl*b extension. This is primarily used to enable "
69 "autovectorization with fixed width vectors."),
70 cl::init(-1), cl::Hidden);
71
73 "riscv-enable-copy-propagation",
74 cl::desc("Enable the copy propagation with RISC-V copy instr"),
75 cl::init(true), cl::Hidden);
76
78 "riscv-enable-dead-defs", cl::Hidden,
79 cl::desc("Enable the pass that removes dead"
80 " definitons and replaces stores to"
81 " them with stores to x0"),
82 cl::init(true));
83
84static cl::opt<bool>
85 EnableSinkFold("riscv-enable-sink-fold",
86 cl::desc("Enable sinking and folding of instruction copies"),
87 cl::init(true), cl::Hidden);
88
89static cl::opt<bool>
90 EnableLoopDataPrefetch("riscv-enable-loop-data-prefetch", cl::Hidden,
91 cl::desc("Enable the loop data prefetch pass"),
92 cl::init(true));
93
95 "riscv-misched-load-clustering", cl::Hidden,
96 cl::desc("Enable load clustering in the machine scheduler"),
97 cl::init(false));
98
125}
126
128 const TargetOptions &Options) {
129 StringRef ABIName = Options.MCOptions.getABIName();
130 if (TT.isArch64Bit()) {
131 if (ABIName == "lp64e")
132 return "e-m:e-p:64:64-i64:64-i128:128-n32:64-S64";
133
134 return "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128";
135 }
136 assert(TT.isArch32Bit() && "only RV32 and RV64 are currently supported");
137
138 if (ABIName == "ilp32e")
139 return "e-m:e-p:32:32-i64:64-n32-S32";
140
141 return "e-m:e-p:32:32-i64:64-n32-S128";
142}
143
145 std::optional<Reloc::Model> RM) {
146 return RM.value_or(Reloc::Static);
147}
148
150 StringRef CPU, StringRef FS,
151 const TargetOptions &Options,
152 std::optional<Reloc::Model> RM,
153 std::optional<CodeModel::Model> CM,
154 CodeGenOptLevel OL, bool JIT)
157 getEffectiveCodeModel(CM, CodeModel::Small), OL),
158 TLOF(std::make_unique<RISCVELFTargetObjectFile>()) {
159 initAsmInfo();
160
161 // RISC-V supports the MachineOutliner.
162 setMachineOutliner(true);
164
165 if (TT.isOSFuchsia() && !TT.isArch64Bit())
166 report_fatal_error("Fuchsia is only supported for 64-bit");
167}
168
169const RISCVSubtarget *
171 Attribute CPUAttr = F.getFnAttribute("target-cpu");
172 Attribute TuneAttr = F.getFnAttribute("tune-cpu");
173 Attribute FSAttr = F.getFnAttribute("target-features");
174
175 std::string CPU =
176 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
177 std::string TuneCPU =
178 TuneAttr.isValid() ? TuneAttr.getValueAsString().str() : CPU;
179 std::string FS =
180 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
181
182 unsigned RVVBitsMin = RVVVectorBitsMinOpt;
183 unsigned RVVBitsMax = RVVVectorBitsMaxOpt;
184
185 Attribute VScaleRangeAttr = F.getFnAttribute(Attribute::VScaleRange);
186 if (VScaleRangeAttr.isValid()) {
187 if (!RVVVectorBitsMinOpt.getNumOccurrences())
188 RVVBitsMin = VScaleRangeAttr.getVScaleRangeMin() * RISCV::RVVBitsPerBlock;
189 std::optional<unsigned> VScaleMax = VScaleRangeAttr.getVScaleRangeMax();
190 if (VScaleMax.has_value() && !RVVVectorBitsMaxOpt.getNumOccurrences())
191 RVVBitsMax = *VScaleMax * RISCV::RVVBitsPerBlock;
192 }
193
194 if (RVVBitsMin != -1U) {
195 // FIXME: Change to >= 32 when VLEN = 32 is supported.
196 assert((RVVBitsMin == 0 || (RVVBitsMin >= 64 && RVVBitsMin <= 65536 &&
197 isPowerOf2_32(RVVBitsMin))) &&
198 "V or Zve* extension requires vector length to be in the range of "
199 "64 to 65536 and a power 2!");
200 assert((RVVBitsMax >= RVVBitsMin || RVVBitsMax == 0) &&
201 "Minimum V extension vector length should not be larger than its "
202 "maximum!");
203 }
204 assert((RVVBitsMax == 0 || (RVVBitsMax >= 64 && RVVBitsMax <= 65536 &&
205 isPowerOf2_32(RVVBitsMax))) &&
206 "V or Zve* extension requires vector length to be in the range of "
207 "64 to 65536 and a power 2!");
208
209 if (RVVBitsMin != -1U) {
210 if (RVVBitsMax != 0) {
211 RVVBitsMin = std::min(RVVBitsMin, RVVBitsMax);
212 RVVBitsMax = std::max(RVVBitsMin, RVVBitsMax);
213 }
214
215 RVVBitsMin = llvm::bit_floor(
216 (RVVBitsMin < 64 || RVVBitsMin > 65536) ? 0 : RVVBitsMin);
217 }
218 RVVBitsMax =
219 llvm::bit_floor((RVVBitsMax < 64 || RVVBitsMax > 65536) ? 0 : RVVBitsMax);
220
222 raw_svector_ostream(Key) << "RVVMin" << RVVBitsMin << "RVVMax" << RVVBitsMax
223 << CPU << TuneCPU << FS;
224 auto &I = SubtargetMap[Key];
225 if (!I) {
226 // This needs to be done before we create a new subtarget since any
227 // creation will depend on the TM and the code generation flags on the
228 // function that reside in TargetOptions.
230 auto ABIName = Options.MCOptions.getABIName();
231 if (const MDString *ModuleTargetABI = dyn_cast_or_null<MDString>(
232 F.getParent()->getModuleFlag("target-abi"))) {
233 auto TargetABI = RISCVABI::getTargetABI(ABIName);
234 if (TargetABI != RISCVABI::ABI_Unknown &&
235 ModuleTargetABI->getString() != ABIName) {
236 report_fatal_error("-target-abi option != target-abi module flag");
237 }
238 ABIName = ModuleTargetABI->getString();
239 }
240 I = std::make_unique<RISCVSubtarget>(
241 TargetTriple, CPU, TuneCPU, FS, ABIName, RVVBitsMin, RVVBitsMax, *this);
242 }
243 return I.get();
244}
245
247 BumpPtrAllocator &Allocator, const Function &F,
248 const TargetSubtargetInfo *STI) const {
249 return RISCVMachineFunctionInfo::create<RISCVMachineFunctionInfo>(Allocator,
250 F, STI);
251}
252
255 return TargetTransformInfo(RISCVTTIImpl(this, F));
256}
257
258// A RISC-V hart has a single byte-addressable address space of 2^XLEN bytes
259// for all memory accesses, so it is reasonable to assume that an
260// implementation has no-op address space casts. If an implementation makes a
261// change to this, they can override it here.
263 unsigned DstAS) const {
264 return true;
265}
266
267namespace {
268
269class RVVRegisterRegAlloc : public RegisterRegAllocBase<RVVRegisterRegAlloc> {
270public:
271 RVVRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
272 : RegisterRegAllocBase(N, D, C) {}
273};
274
275static bool onlyAllocateRVVReg(const TargetRegisterInfo &TRI,
276 const TargetRegisterClass &RC) {
278}
279
280static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
281
282static llvm::once_flag InitializeDefaultRVVRegisterAllocatorFlag;
283
284/// -riscv-rvv-regalloc=<fast|basic|greedy> command line option.
285/// This option could designate the rvv register allocator only.
286/// For example: -riscv-rvv-regalloc=basic
287static cl::opt<RVVRegisterRegAlloc::FunctionPassCtor, false,
289 RVVRegAlloc("riscv-rvv-regalloc", cl::Hidden,
291 cl::desc("Register allocator to use for RVV register."));
292
293static void initializeDefaultRVVRegisterAllocatorOnce() {
294 RegisterRegAlloc::FunctionPassCtor Ctor = RVVRegisterRegAlloc::getDefault();
295
296 if (!Ctor) {
297 Ctor = RVVRegAlloc;
298 RVVRegisterRegAlloc::setDefault(RVVRegAlloc);
299 }
300}
301
302static FunctionPass *createBasicRVVRegisterAllocator() {
303 return createBasicRegisterAllocator(onlyAllocateRVVReg);
304}
305
306static FunctionPass *createGreedyRVVRegisterAllocator() {
307 return createGreedyRegisterAllocator(onlyAllocateRVVReg);
308}
309
310static FunctionPass *createFastRVVRegisterAllocator() {
311 return createFastRegisterAllocator(onlyAllocateRVVReg, false);
312}
313
314static RVVRegisterRegAlloc basicRegAllocRVVReg("basic",
315 "basic register allocator",
316 createBasicRVVRegisterAllocator);
317static RVVRegisterRegAlloc
318 greedyRegAllocRVVReg("greedy", "greedy register allocator",
319 createGreedyRVVRegisterAllocator);
320
321static RVVRegisterRegAlloc fastRegAllocRVVReg("fast", "fast register allocator",
322 createFastRVVRegisterAllocator);
323
324class RISCVPassConfig : public TargetPassConfig {
325public:
326 RISCVPassConfig(RISCVTargetMachine &TM, PassManagerBase &PM)
327 : TargetPassConfig(TM, PM) {
328 if (TM.getOptLevel() != CodeGenOptLevel::None)
329 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
330 setEnableSinkAndFold(EnableSinkFold);
331 }
332
333 RISCVTargetMachine &getRISCVTargetMachine() const {
334 return getTM<RISCVTargetMachine>();
335 }
336
338 createMachineScheduler(MachineSchedContext *C) const override {
339 ScheduleDAGMILive *DAG = nullptr;
343 DAG->TII, DAG->TRI, /*ReorderWhileClustering=*/true));
344 }
345 return DAG;
346 }
347
348 void addIRPasses() override;
349 bool addPreISel() override;
350 void addCodeGenPrepare() override;
351 bool addInstSelector() override;
352 bool addIRTranslator() override;
353 void addPreLegalizeMachineIR() override;
354 bool addLegalizeMachineIR() override;
355 void addPreRegBankSelect() override;
356 bool addRegBankSelect() override;
357 bool addGlobalInstructionSelect() override;
358 void addPreEmitPass() override;
359 void addPreEmitPass2() override;
360 void addPreSched2() override;
361 void addMachineSSAOptimization() override;
362 FunctionPass *createRVVRegAllocPass(bool Optimized);
363 bool addRegAssignAndRewriteFast() override;
364 bool addRegAssignAndRewriteOptimized() override;
365 void addPreRegAlloc() override;
366 void addPostRegAlloc() override;
367 void addFastRegAlloc() override;
368};
369} // namespace
370
372 return new RISCVPassConfig(*this, PM);
373}
374
375FunctionPass *RISCVPassConfig::createRVVRegAllocPass(bool Optimized) {
376 // Initialize the global default.
377 llvm::call_once(InitializeDefaultRVVRegisterAllocatorFlag,
378 initializeDefaultRVVRegisterAllocatorOnce);
379
380 RegisterRegAlloc::FunctionPassCtor Ctor = RVVRegisterRegAlloc::getDefault();
381 if (Ctor != useDefaultRegisterAllocator)
382 return Ctor();
383
384 if (Optimized)
385 return createGreedyRVVRegisterAllocator();
386
387 return createFastRVVRegisterAllocator();
388}
389
390bool RISCVPassConfig::addRegAssignAndRewriteFast() {
391 addPass(createRVVRegAllocPass(false));
394}
395
396bool RISCVPassConfig::addRegAssignAndRewriteOptimized() {
397 addPass(createRVVRegAllocPass(true));
398 addPass(createVirtRegRewriter(false));
401}
402
403void RISCVPassConfig::addIRPasses() {
405
406 if (getOptLevel() != CodeGenOptLevel::None) {
409
413 }
414
416}
417
418bool RISCVPassConfig::addPreISel() {
419 if (TM->getOptLevel() != CodeGenOptLevel::None) {
420 // Add a barrier before instruction selection so that we will not get
421 // deleted block address after enabling default outlining. See D99707 for
422 // more details.
423 addPass(createBarrierNoopPass());
424 }
425
427 addPass(createGlobalMergePass(TM, /* MaxOffset */ 2047,
428 /* OnlyOptimizeForSize */ false,
429 /* MergeExternalByDefault */ true));
430 }
431
432 return false;
433}
434
435void RISCVPassConfig::addCodeGenPrepare() {
436 if (getOptLevel() != CodeGenOptLevel::None)
439}
440
441bool RISCVPassConfig::addInstSelector() {
442 addPass(createRISCVISelDag(getRISCVTargetMachine(), getOptLevel()));
443
444 return false;
445}
446
447bool RISCVPassConfig::addIRTranslator() {
448 addPass(new IRTranslator(getOptLevel()));
449 return false;
450}
451
452void RISCVPassConfig::addPreLegalizeMachineIR() {
453 if (getOptLevel() == CodeGenOptLevel::None) {
455 } else {
457 }
458}
459
460bool RISCVPassConfig::addLegalizeMachineIR() {
461 addPass(new Legalizer());
462 return false;
463}
464
465void RISCVPassConfig::addPreRegBankSelect() {
466 if (getOptLevel() != CodeGenOptLevel::None)
468}
469
470bool RISCVPassConfig::addRegBankSelect() {
471 addPass(new RegBankSelect());
472 return false;
473}
474
475bool RISCVPassConfig::addGlobalInstructionSelect() {
476 addPass(new InstructionSelect(getOptLevel()));
477 return false;
478}
479
480void RISCVPassConfig::addPreSched2() {
482
483 // Emit KCFI checks for indirect calls.
484 addPass(createKCFIPass());
485}
486
487void RISCVPassConfig::addPreEmitPass() {
488 addPass(&BranchRelaxationPassID);
490
491 // TODO: It would potentially be better to schedule copy propagation after
492 // expanding pseudos (in addPreEmitPass2). However, performing copy
493 // propagation after the machine outliner (which runs after addPreEmitPass)
494 // currently leads to incorrect code-gen, where copies to registers within
495 // outlined functions are removed erroneously.
496 if (TM->getOptLevel() >= CodeGenOptLevel::Default &&
499}
500
501void RISCVPassConfig::addPreEmitPass2() {
502 if (TM->getOptLevel() != CodeGenOptLevel::None) {
503 addPass(createRISCVMoveMergePass());
504 // Schedule PushPop Optimization before expansion of Pseudo instruction,
505 // ensuring return instruction is detected correctly.
507 }
509
510 // Schedule the expansion of AMOs at the last possible moment, avoiding the
511 // possibility for other passes to break the requirements for forward
512 // progress in the LR/SC block.
514
515 // KCFI indirect call checks are lowered to a bundle.
516 addPass(createUnpackMachineBundles([&](const MachineFunction &MF) {
517 return MF.getFunction().getParent()->getModuleFlag("kcfi");
518 }));
519}
520
521void RISCVPassConfig::addMachineSSAOptimization() {
522 addPass(createRISCVFoldMasksPass());
523
525
527 addPass(&MachineCombinerID);
528
529 if (TM->getTargetTriple().isRISCV64()) {
530 addPass(createRISCVOptWInstrsPass());
531 }
532}
533
534void RISCVPassConfig::addPreRegAlloc() {
536 if (TM->getOptLevel() != CodeGenOptLevel::None)
539 if (TM->getOptLevel() != CodeGenOptLevel::None &&
544}
545
546void RISCVPassConfig::addFastRegAlloc() {
547 addPass(&InitUndefID);
549}
550
551
552void RISCVPassConfig::addPostRegAlloc() {
553 if (TM->getOptLevel() != CodeGenOptLevel::None &&
556}
557
561}
562
565 const auto *MFI = MF.getInfo<RISCVMachineFunctionInfo>();
566 return new yaml::RISCVMachineFunctionInfo(*MFI);
567}
568
571 SMDiagnostic &Error, SMRange &SourceRange) const {
572 const auto &YamlMFI =
573 static_cast<const yaml::RISCVMachineFunctionInfo &>(MFI);
574 PFS.MF.getInfo<RISCVMachineFunctionInfo>()->initializeBaseYamlFields(YamlMFI);
575 return false;
576}
static cl::opt< bool > EnableSinkFold("aarch64-enable-sink-fold", cl::desc("Enable sinking and folding of instruction copies"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableRedundantCopyElimination("aarch64-enable-copyelim", cl::desc("Enable the redundant copy elimination pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLoopDataPrefetch("aarch64-enable-loop-data-prefetch", cl::Hidden, cl::desc("Enable the loop data prefetch pass"), cl::init(true))
static const Function * getParent(const Value *V)
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static cl::opt< bool > EnableGlobalMerge("enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"), cl::init(true))
This file declares the IRTranslator pass.
static LVOptions Options
Definition: LVOptions.cpp:25
static std::string computeDataLayout()
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
const char LLVMTargetMachineRef TM
static cl::opt< bool > EnableRedundantCopyElimination("riscv-enable-copyelim", cl::desc("Enable the redundant copy elimination pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableSinkFold("riscv-enable-sink-fold", cl::desc("Enable sinking and folding of instruction copies"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLoopDataPrefetch("riscv-enable-loop-data-prefetch", cl::Hidden, cl::desc("Enable the loop data prefetch pass"), cl::init(true))
static cl::opt< unsigned > RVVVectorBitsMaxOpt("riscv-v-vector-bits-max", cl::desc("Assume V extension vector registers are at most this big, " "with zero meaning no maximum size is assumed."), cl::init(0), cl::Hidden)
static cl::opt< cl::boolOrDefault > EnableGlobalMerge("riscv-enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"))
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeRISCVTarget()
static cl::opt< bool > EnableRISCVCopyPropagation("riscv-enable-copy-propagation", cl::desc("Enable the copy propagation with RISC-V copy instr"), cl::init(true), cl::Hidden)
static cl::opt< int > RVVVectorBitsMinOpt("riscv-v-vector-bits-min", cl::desc("Assume V extension vector registers are at least this big, " "with zero meaning no minimum size is assumed. A value of -1 " "means use Zvl*b extension. This is primarily used to enable " "autovectorization with fixed width vectors."), cl::init(-1), cl::Hidden)
static Reloc::Model getEffectiveRelocModel(const Triple &TT, std::optional< Reloc::Model > RM)
static cl::opt< bool > EnableRISCVDeadRegisterElimination("riscv-enable-dead-defs", cl::Hidden, cl::desc("Enable the pass that removes dead" " definitons and replaces stores to" " them with stores to x0"), cl::init(true))
static cl::opt< bool > EnableMachineCombiner("riscv-enable-machine-combiner", cl::desc("Enable the machine combiner pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableMISchedLoadClustering("riscv-misched-load-clustering", cl::Hidden, cl::desc("Enable load clustering in the machine scheduler"), cl::init(false))
This file defines a TargetTransformInfo::Concept conforming object specific to the RISC-V target mach...
Basic Register Allocator
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file contains some templates that are useful if you are working with the STL at all.
static FunctionPass * useDefaultRegisterAllocator()
-regalloc=... command line option.
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
std::optional< unsigned > getVScaleRangeMax() const
Returns the maximum value for the vscale_range attribute or std::nullopt when unknown.
Definition: Attributes.cpp:417
unsigned getVScaleRangeMin() const
Returns the minimum value for the vscale_range attribute.
Definition: Attributes.cpp:411
StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:349
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition: Attributes.h:193
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
This pass is responsible for selecting generic machine instructions to target-specific instructions.
This class describes a target machine that is implemented with the LLVM target-independent code gener...
StringRef getABIName() const
getABIName - If this returns a non-empty string this represents the textual name of the ABI that we w...
A single uniqued string.
Definition: Metadata.h:720
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This implementation is used for RISC-V ELF targets.
RISCVMachineFunctionInfo - This class is derived from MachineFunctionInfo and contains private RISCV-...
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
RISCVTargetMachine(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)
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DstAS) const override
Returns true if a cast between SrcAS and DestAS is a noop.
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.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
const RISCVSubtarget * getSubtargetImpl() const =delete
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
Definition: RegBankSelect.h:91
RegisterPassParser class - Handle the addition of new machine passes.
RegisterRegAllocBase class - Track the registration of register allocators.
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition: SourceMgr.h:281
Represents a range in source code.
Definition: SMLoc.h:48
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
void addMutation(std::unique_ptr< ScheduleDAGMutation > Mutation)
Add a postprocessing step to the DAG builder.
const TargetInstrInfo * TII
Target instruction information.
Definition: ScheduleDAG.h:557
const TargetRegisterInfo * TRI
Target processor register info.
Definition: ScheduleDAG.h:558
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:222
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
Definition: TargetMachine.h:95
void setMachineOutliner(bool Enable)
void setSupportsDefaultOutlining(bool Enable)
std::string TargetFS
Definition: TargetMachine.h:97
std::string TargetCPU
Definition: TargetMachine.h:96
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
MCTargetOptions MCOptions
Machine level options.
Target-Independent Code Generator Pass Configuration Options.
virtual void addCodeGenPrepare()
Add pass to prepare the LLVM IR for code generation.
virtual bool addRegAssignAndRewriteFast()
Add core register allocator passes which do the actual register assignment and rewriting.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addFastRegAlloc()
addFastRegAlloc - Add the minimum set of target-independent passes that are required for fast registe...
virtual void addMachineSSAOptimization()
addMachineSSAOptimization - Add standard passes that optimize machine instructions in SSA form.
virtual bool addRegAssignAndRewriteOptimized()
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
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:44
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
A raw_ostream that writes to an SmallVector or SmallString.
Definition: raw_ostream.h:690
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
ABI getTargetABI(StringRef ABIName)
static constexpr unsigned RVVBitsPerBlock
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createFastRegisterAllocator()
FastRegisterAllocation Pass - This pass register allocates as fast as possible.
FunctionPass * createRISCVPostLegalizerCombiner()
void initializeRISCVPushPopOptPass(PassRegistry &)
void initializeRISCVExpandPseudoPass(PassRegistry &)
void initializeRISCVFoldMasksPass(PassRegistry &)
FunctionPass * createRISCVMoveMergePass()
createRISCVMoveMergePass - returns an instance of the move merge pass.
char & InitUndefID
Definition: InitUndef.cpp:98
FunctionPass * createTypePromotionLegacyPass()
Create IR Type Promotion pass.
void initializeRISCVDeadRegisterDefinitionsPass(PassRegistry &)
FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
void initializeRISCVPreLegalizerCombinerPass(PassRegistry &)
FunctionPass * createRISCVExpandAtomicPseudoPass()
FunctionPass * createRISCVPostRAExpandPseudoPass()
FunctionPass * createRISCVInsertReadWriteCSRPass()
Target & getTheRISCV32Target()
void initializeRISCVInsertVSETVLIPass(PassRegistry &)
char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
FunctionPass * createRISCVDeadRegisterDefinitionsPass()
char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
ScheduleDAGMILive * createGenericSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
FunctionPass * createRISCVGatherScatterLoweringPass()
FunctionPass * createRISCVMergeBaseOffsetOptPass()
Returns an instance of the Merge Base Offset Optimization pass.
void initializeRISCVDAGToDAGISelPass(PassRegistry &)
char & MachineCombinerID
This pass performs instruction combining using trace metrics to estimate critical-path and resource d...
void initializeRISCVPostRAExpandPseudoPass(PassRegistry &)
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.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition: MathExtras.h:275
FunctionPass * createRISCVPreLegalizerCombiner()
char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
FunctionPass * createRISCVO0PreLegalizerCombiner()
FunctionPass * createRISCVPushPopOptimizationPass()
createRISCVPushPopOptimizationPass - returns an instance of the Push/Pop optimization pass.
FunctionPass * createRISCVMakeCompressibleOptPass()
Returns an instance of the Make Compressible Optimization pass.
FunctionPass * createRISCVRedundantCopyEliminationPass()
FunctionPass * createKCFIPass()
Lowers KCFI operand bundles for indirect calls.
Definition: KCFI.cpp:61
Pass * createGlobalMergePass(const TargetMachine *TM, unsigned MaximalOffset, bool OnlyOptimizeForSize=false, bool MergeExternalByDefault=false)
GlobalMerge - This pass merges internal (by default) globals into structs to enable reuse of a base p...
void initializeRISCVInsertWriteVXRMPass(PassRegistry &)
FunctionPass * createRISCVFoldMasksPass()
FunctionPass * createLoopDataPrefetchPass()
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
void initializeRISCVInsertReadWriteCSRPass(PassRegistry &)
FunctionPass * createRISCVInsertVSETVLIPass()
Returns an instance of the Insert VSETVLI pass.
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
void initializeRISCVCoalesceVSETVLIPass(PassRegistry &)
FunctionPass * createRISCVOptWInstrsPass()
FunctionPass * createInterleavedAccessPass()
InterleavedAccess Pass - This pass identifies and matches interleaved memory accesses to target speci...
FunctionPass * createBasicRegisterAllocator()
BasicRegisterAllocation Pass - This pass implements a degenerate global register allocator using the ...
void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
Definition: GlobalISel.cpp:17
void initializeRISCVMakeCompressibleOptPass(PassRegistry &)
FunctionPass * createRISCVCodeGenPreparePass()
ModulePass * createBarrierNoopPass()
createBarrierNoopPass - This pass is purely a module pass barrier in a pass manager.
std::unique_ptr< ScheduleDAGMutation > createLoadClusterDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ReorderWhileClustering=false)
If ReorderWhileClustering is set to true, no attempt will be made to reduce reordering due to store c...
void initializeRISCVOptWInstrsPass(PassRegistry &)
FunctionPass * createUnpackMachineBundles(std::function< bool(const MachineFunction &)> Ftor)
void initializeRISCVCodeGenPreparePass(PassRegistry &)
Target & getTheRISCV64Target()
void call_once(once_flag &flag, Function &&F, Args &&... ArgList)
Execute the function specified as a parameter once.
Definition: Threading.h:87
void initializeRISCVO0PreLegalizerCombinerPass(PassRegistry &)
void initializeKCFIPass(PassRegistry &)
void initializeRISCVMergeBaseOffsetOptPass(PassRegistry &)
FunctionPass * createRISCVISelDag(RISCVTargetMachine &TM, CodeGenOptLevel OptLevel)
FunctionPass * createVirtRegRewriter(bool ClearVirtRegs=true)
Definition: VirtRegMap.cpp:645
void initializeRISCVGatherScatterLoweringPass(PassRegistry &)
FunctionPass * createRISCVExpandPseudoPass()
FunctionPass * createRISCVPreRAExpandPseudoPass()
FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
T bit_floor(T Value)
Returns the largest integral power of two no greater than Value if Value is nonzero.
Definition: bit.h:327
FunctionPass * createRISCVCoalesceVSETVLIPass()
FunctionPass * createRISCVInsertWriteVXRMPass()
MachineFunctionPass * createMachineCopyPropagationPass(bool UseCopyInstr)
void initializeRISCVPreRAExpandPseudoPass(PassRegistry &)
void initializeRISCVPostLegalizerCombinerPass(PassRegistry &)
void initializeRISCVMoveMergePass(PassRegistry &)
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
#define N
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
static bool isRVVRegClass(const TargetRegisterClass *RC)
RegisterTargetMachine - Helper template for registering a target machine implementation,...
The llvm::once_flag structure.
Definition: Threading.h:68
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.