LLVM 18.0.0git
NVPTXTargetMachine.cpp
Go to the documentation of this file.
1//===-- NVPTXTargetMachine.cpp - Define TargetMachine for NVPTX -----------===//
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// Top-level implementation for the NVPTX target.
10//
11//===----------------------------------------------------------------------===//
12
13#include "NVPTXTargetMachine.h"
14#include "NVPTX.h"
15#include "NVPTXAliasAnalysis.h"
16#include "NVPTXAllocaHoisting.h"
17#include "NVPTXAtomicLower.h"
24#include "llvm/ADT/STLExtras.h"
26#include "llvm/CodeGen/Passes.h"
28#include "llvm/IR/IntrinsicsNVPTX.h"
30#include "llvm/Pass.h"
39#include <cassert>
40#include <optional>
41#include <string>
42
43using namespace llvm;
44
45// LSV is still relatively new; this switch lets us turn it off in case we
46// encounter (or suspect) a bug.
47static cl::opt<bool>
48 DisableLoadStoreVectorizer("disable-nvptx-load-store-vectorizer",
49 cl::desc("Disable load/store vectorizer"),
50 cl::init(false), cl::Hidden);
51
52// TODO: Remove this flag when we are confident with no regressions.
54 "disable-nvptx-require-structured-cfg",
55 cl::desc("Transitional flag to turn off NVPTX's requirement on preserving "
56 "structured CFG. The requirement should be disabled only when "
57 "unexpected regressions happen."),
58 cl::init(false), cl::Hidden);
59
61 "nvptx-short-ptr",
63 "Use 32-bit pointers for accessing const/local/shared address spaces."),
64 cl::init(false), cl::Hidden);
65
66// FIXME: intended as a temporary debugging aid. Should be removed before it
67// makes it into the LLVM-17 release.
68static cl::opt<bool>
69 ExitOnUnreachable("nvptx-exit-on-unreachable",
70 cl::desc("Lower 'unreachable' as 'exit' instruction."),
71 cl::init(true), cl::Hidden);
72
73namespace llvm {
74
90
91} // end namespace llvm
92
94 // Register the target.
97
99 // FIXME: This pass is really intended to be invoked during IR optimization,
100 // but it's very NVPTX-specific.
116}
117
118static std::string computeDataLayout(bool is64Bit, bool UseShortPointers) {
119 std::string Ret = "e";
120
121 if (!is64Bit)
122 Ret += "-p:32:32";
123 else if (UseShortPointers)
124 Ret += "-p3:32:32-p4:32:32-p5:32:32";
125
126 Ret += "-i64:64-i128:128-v16:16-v32:32-n16:32:64";
127
128 return Ret;
129}
130
132 StringRef CPU, StringRef FS,
133 const TargetOptions &Options,
134 std::optional<Reloc::Model> RM,
135 std::optional<CodeModel::Model> CM,
136 CodeGenOptLevel OL, bool is64bit)
137 // The pic relocation model is used regardless of what the client has
138 // specified, as it is the only relocation model currently supported.
140 CPU, FS, Options, Reloc::PIC_,
141 getEffectiveCodeModel(CM, CodeModel::Small), OL),
142 is64bit(is64bit), UseShortPointers(UseShortPointersOpt),
143 TLOF(std::make_unique<NVPTXTargetObjectFile>()),
144 Subtarget(TT, std::string(CPU), std::string(FS), *this),
145 StrPool(StrAlloc) {
146 if (TT.getOS() == Triple::NVCL)
147 drvInterface = NVPTX::NVCL;
148 else
149 drvInterface = NVPTX::CUDA;
152 initAsmInfo();
153}
154
156
157void NVPTXTargetMachine32::anchor() {}
158
160 StringRef CPU, StringRef FS,
161 const TargetOptions &Options,
162 std::optional<Reloc::Model> RM,
163 std::optional<CodeModel::Model> CM,
164 CodeGenOptLevel OL, bool JIT)
165 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
166
167void NVPTXTargetMachine64::anchor() {}
168
170 StringRef CPU, StringRef FS,
171 const TargetOptions &Options,
172 std::optional<Reloc::Model> RM,
173 std::optional<CodeModel::Model> CM,
174 CodeGenOptLevel OL, bool JIT)
175 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
176
177namespace {
178
179class NVPTXPassConfig : public TargetPassConfig {
180public:
181 NVPTXPassConfig(NVPTXTargetMachine &TM, PassManagerBase &PM)
182 : TargetPassConfig(TM, PM) {}
183
184 NVPTXTargetMachine &getNVPTXTargetMachine() const {
185 return getTM<NVPTXTargetMachine>();
186 }
187
188 void addIRPasses() override;
189 bool addInstSelector() override;
190 void addPreRegAlloc() override;
191 void addPostRegAlloc() override;
192 void addMachineSSAOptimization() override;
193
194 FunctionPass *createTargetRegisterAllocator(bool) override;
195 void addFastRegAlloc() override;
196 void addOptimizedRegAlloc() override;
197
198 bool addRegAssignAndRewriteFast() override {
199 llvm_unreachable("should not be used");
200 }
201
202 bool addRegAssignAndRewriteOptimized() override {
203 llvm_unreachable("should not be used");
204 }
205
206private:
207 // If the opt level is aggressive, add GVN; otherwise, add EarlyCSE. This
208 // function is only called in opt mode.
209 void addEarlyCSEOrGVNPass();
210
211 // Add passes that propagate special memory spaces.
212 void addAddressSpaceInferencePasses();
213
214 // Add passes that perform straight-line scalar optimizations.
215 void addStraightLineScalarOptimizationPasses();
216};
217
218} // end anonymous namespace
219
221 return new NVPTXPassConfig(*this, PM);
222}
223
225 BumpPtrAllocator &Allocator, const Function &F,
226 const TargetSubtargetInfo *STI) const {
227 return NVPTXMachineFunctionInfo::create<NVPTXMachineFunctionInfo>(Allocator,
228 F, STI);
229}
230
233}
234
239 if (PassName == "nvvm-reflect") {
241 return true;
242 }
243 if (PassName == "nvvm-intr-range") {
245 return true;
246 }
247 return false;
248 });
249
251 FAM.registerPass([&] { return NVPTXAA(); });
252 });
253
255 if (AAName == "nvptx-aa") {
257 return true;
258 }
259 return false;
260 });
261
265 if (PassName == "nvptx-lower-ctor-dtor") {
267 return true;
268 }
269 if (PassName == "generic-to-nvvm") {
271 return true;
272 }
273 return false;
274 });
275
277 [this](ModulePassManager &PM, OptimizationLevel Level) {
279 FPM.addPass(NVVMReflectPass(Subtarget.getSmVersion()));
280 // FIXME: NVVMIntrRangePass is causing numerical discrepancies,
281 // investigate and re-enable.
282 // FPM.addPass(NVVMIntrRangePass(Subtarget.getSmVersion()));
283 PM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
284 });
285}
286
289 return TargetTransformInfo(NVPTXTTIImpl(this, F));
290}
291
292std::pair<const Value *, unsigned>
294 if (auto *II = dyn_cast<IntrinsicInst>(V)) {
295 switch (II->getIntrinsicID()) {
296 case Intrinsic::nvvm_isspacep_const:
297 return std::make_pair(II->getArgOperand(0), llvm::ADDRESS_SPACE_CONST);
298 case Intrinsic::nvvm_isspacep_global:
299 return std::make_pair(II->getArgOperand(0), llvm::ADDRESS_SPACE_GLOBAL);
300 case Intrinsic::nvvm_isspacep_local:
301 return std::make_pair(II->getArgOperand(0), llvm::ADDRESS_SPACE_LOCAL);
302 case Intrinsic::nvvm_isspacep_shared:
303 case Intrinsic::nvvm_isspacep_shared_cluster:
304 return std::make_pair(II->getArgOperand(0), llvm::ADDRESS_SPACE_SHARED);
305 default:
306 break;
307 }
308 }
309 return std::make_pair(nullptr, -1);
310}
311
312void NVPTXPassConfig::addEarlyCSEOrGVNPass() {
313 if (getOptLevel() == CodeGenOptLevel::Aggressive)
314 addPass(createGVNPass());
315 else
316 addPass(createEarlyCSEPass());
317}
318
319void NVPTXPassConfig::addAddressSpaceInferencePasses() {
320 // NVPTXLowerArgs emits alloca for byval parameters which can often
321 // be eliminated by SROA.
322 addPass(createSROAPass());
326}
327
328void NVPTXPassConfig::addStraightLineScalarOptimizationPasses() {
331 // ReassociateGEPs exposes more opportunites for SLSR. See
332 // the example in reassociate-geps-and-slsr.ll.
334 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
335 // EarlyCSE can reuse. GVN generates significantly better code than EarlyCSE
336 // for some of our benchmarks.
337 addEarlyCSEOrGVNPass();
338 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
339 addPass(createNaryReassociatePass());
340 // NaryReassociate on GEPs creates redundant common expressions, so run
341 // EarlyCSE after it.
342 addPass(createEarlyCSEPass());
343}
344
345void NVPTXPassConfig::addIRPasses() {
346 // The following passes are known to not play well with virtual regs hanging
347 // around after register allocation (which in our case, is *all* registers).
348 // We explicitly disable them here. We do, however, need some functionality
349 // of the PrologEpilogCodeInserter pass, so we emulate that behavior in the
350 // NVPTXPrologEpilog pass (see NVPTXPrologEpilogPass.cpp).
351 disablePass(&PrologEpilogCodeInserterID);
352 disablePass(&MachineLateInstrsCleanupID);
353 disablePass(&MachineCopyPropagationID);
354 disablePass(&TailDuplicateID);
355 disablePass(&StackMapLivenessID);
356 disablePass(&LiveDebugValuesID);
357 disablePass(&PostRAMachineSinkingID);
358 disablePass(&PostRASchedulerID);
359 disablePass(&FuncletLayoutID);
360 disablePass(&PatchableFunctionID);
361 disablePass(&ShrinkWrapID);
362
363 addPass(createNVPTXAAWrapperPass());
364 addPass(createExternalAAWrapperPass([](Pass &P, Function &, AAResults &AAR) {
365 if (auto *WrapperPass = P.getAnalysisIfAvailable<NVPTXAAWrapperPass>())
366 AAR.addAAResult(WrapperPass->getResult());
367 }));
368
369 // NVVMReflectPass is added in addEarlyAsPossiblePasses, so hopefully running
370 // it here does nothing. But since we need it for correctness when lowering
371 // to NVPTX, run it here too, in case whoever built our pass pipeline didn't
372 // call addEarlyAsPossiblePasses.
373 const NVPTXSubtarget &ST = *getTM<NVPTXTargetMachine>().getSubtargetImpl();
374 addPass(createNVVMReflectPass(ST.getSmVersion()));
375
376 if (getOptLevel() != CodeGenOptLevel::None)
380
381 // NVPTXLowerArgs is required for correctness and should be run right
382 // before the address space inference passes.
383 addPass(createNVPTXLowerArgsPass());
384 if (getOptLevel() != CodeGenOptLevel::None) {
385 addAddressSpaceInferencePasses();
386 addStraightLineScalarOptimizationPasses();
387 }
388
389 addPass(createAtomicExpandPass());
391
392 // === LSR and other generic IR passes ===
394 // EarlyCSE is not always strong enough to clean up what LSR produces. For
395 // example, GVN can combine
396 //
397 // %0 = add %a, %b
398 // %1 = add %b, %a
399 //
400 // and
401 //
402 // %0 = shl nsw %a, 2
403 // %1 = shl %a, 2
404 //
405 // but EarlyCSE can do neither of them.
406 if (getOptLevel() != CodeGenOptLevel::None) {
407 addEarlyCSEOrGVNPass();
410 addPass(createSROAPass());
411 }
412
415}
416
417bool NVPTXPassConfig::addInstSelector() {
418 const NVPTXSubtarget &ST = *getTM<NVPTXTargetMachine>().getSubtargetImpl();
419
420 addPass(createLowerAggrCopies());
421 addPass(createAllocaHoisting());
422 addPass(createNVPTXISelDag(getNVPTXTargetMachine(), getOptLevel()));
423
424 if (!ST.hasImageHandles())
426
427 return false;
428}
429
430void NVPTXPassConfig::addPreRegAlloc() {
431 // Remove Proxy Register pseudo instructions used to keep `callseq_end` alive.
433}
434
435void NVPTXPassConfig::addPostRegAlloc() {
437 if (getOptLevel() != CodeGenOptLevel::None) {
438 // NVPTXPrologEpilogPass calculates frame object offset and replace frame
439 // index with VRFrame register. NVPTXPeephole need to be run after that and
440 // will replace VRFrame with VRFrameLocal when possible.
441 addPass(createNVPTXPeephole());
442 }
443}
444
445FunctionPass *NVPTXPassConfig::createTargetRegisterAllocator(bool) {
446 return nullptr; // No reg alloc
447}
448
449void NVPTXPassConfig::addFastRegAlloc() {
450 addPass(&PHIEliminationID);
452}
453
454void NVPTXPassConfig::addOptimizedRegAlloc() {
455 addPass(&ProcessImplicitDefsID);
456 addPass(&LiveVariablesID);
457 addPass(&MachineLoopInfoID);
458 addPass(&PHIEliminationID);
459
461 addPass(&RegisterCoalescerID);
462
463 // PreRA instruction scheduling.
464 if (addPass(&MachineSchedulerID))
465 printAndVerify("After Machine Scheduling");
466
467 addPass(&StackSlotColoringID);
468
469 // FIXME: Needs physical registers
470 // addPass(&MachineLICMID);
471
472 printAndVerify("After StackSlotColoring");
473}
474
475void NVPTXPassConfig::addMachineSSAOptimization() {
476 // Pre-ra tail duplication.
477 if (addPass(&EarlyTailDuplicateID))
478 printAndVerify("After Pre-RegAlloc TailDuplicate");
479
480 // Optimize PHIs before DCE: removing dead PHI cycles may make more
481 // instructions dead.
482 addPass(&OptimizePHIsID);
483
484 // This pass merges large allocas. StackSlotColoring is a different pass
485 // which merges spill slots.
486 addPass(&StackColoringID);
487
488 // If the target requests it, assign local variables to stack slots relative
489 // to one another and simplify frame index references where possible.
491
492 // With optimization, dead code should already be eliminated. However
493 // there is one known exception: lowered code for arguments that are only
494 // used by tail calls, where the tail calls reuse the incoming stack
495 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
497 printAndVerify("After codegen DCE pass");
498
499 // Allow targets to insert passes that improve instruction level parallelism,
500 // like if-conversion. Such passes will typically need dominator trees and
501 // loop info, just like LICM and CSE below.
502 if (addILPOpts())
503 printAndVerify("After ILP optimizations");
504
505 addPass(&EarlyMachineLICMID);
506 addPass(&MachineCSEID);
507
508 addPass(&MachineSinkingID);
509 printAndVerify("After Machine LICM, CSE and Sinking passes");
510
511 addPass(&PeepholeOptimizerID);
512 printAndVerify("After codegen peephole optimization pass");
513}
basic Basic Alias true
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
This file provides the interface for LLVM's Global Value Numbering pass which eliminates fully redund...
static LVOptions Options
Definition: LVOptions.cpp:25
static std::string computeDataLayout()
#define F(x, y, z)
Definition: MD5.cpp:55
This is the NVPTX address space based alias analysis pass.
static cl::opt< bool > DisableLoadStoreVectorizer("disable-nvptx-load-store-vectorizer", cl::desc("Disable load/store vectorizer"), cl::init(false), cl::Hidden)
static cl::opt< bool > DisableRequireStructuredCFG("disable-nvptx-require-structured-cfg", cl::desc("Transitional flag to turn off NVPTX's requirement on preserving " "structured CFG. The requirement should be disabled only when " "unexpected regressions happen."), cl::init(false), cl::Hidden)
static cl::opt< bool > UseShortPointersOpt("nvptx-short-ptr", cl::desc("Use 32-bit pointers for accessing const/local/shared address spaces."), cl::init(false), cl::Hidden)
static cl::opt< bool > ExitOnUnreachable("nvptx-exit-on-unreachable", cl::desc("Lower 'unreachable' as 'exit' instruction."), cl::init(true), cl::Hidden)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeNVPTXTarget()
This file a TargetTransformInfo::Concept conforming object specific to the NVPTX target machine.
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
#define P(N)
FunctionAnalysisManager FAM
const char LLVMTargetMachineRef TM
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
Basic Register Allocator
This file contains some templates that are useful if you are working with the STL at all.
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static bool is64Bit(const char *name)
static const char PassName[]
A manager for alias analyses.
void registerFunctionAnalysis()
Register a specific AA result.
void addAAResult(AAResultT &AAResult)
Register a specific AA result.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:620
bool registerPass(PassBuilderT &&PassBuilder)
Register an analysis pass with the manager.
Definition: PassManager.h:836
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
This class describes a target machine that is implemented with the LLVM target-independent code gener...
Legacy wrapper pass to provide the NVPTXAAResult object.
Analysis pass providing a never-invalidated alias analysis result.
Lower llvm.global_ctors and llvm.global_dtors to special kernels.
unsigned int getSmVersion() const
NVPTXTargetMachine32(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)
NVPTXTargetMachine64(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)
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
void registerDefaultAliasAnalyses(AAManager &AAM) override
Allow the target to register alias analyses with the AAManager for use with the new pass manager.
std::pair< const Value *, unsigned > getPredicatedAddrSpace(const Value *V) const override
If the specified predicate checks whether a generic pointer falls within a specified address space,...
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
~NVPTXTargetMachine() override
NVPTXTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OP, bool is64bit)
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
This class provides access to building LLVM's passes.
Definition: PassBuilder.h:103
void registerPipelineStartEPCallback(const std::function< void(ModulePassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:448
void registerParseAACallback(const std::function< bool(StringRef Name, AAManager &AA)> &C)
Register a callback for parsing an AliasAnalysis Name to populate the given AAManager AA.
Definition: PassBuilder.h:500
void registerAnalysisRegistrationCallback(const std::function< void(CGSCCAnalysisManager &)> &C)
{{@ Register callbacks for analysis registration with this PassBuilder instance.
Definition: PassBuilder.h:508
void registerPipelineParsingCallback(const std::function< bool(StringRef Name, CGSCCPassManager &, ArrayRef< PipelineElement >)> &C)
{{@ Register pipeline parsing callbacks with this pass builder instance.
Definition: PassBuilder.h:530
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t<!std::is_same< PassT, PassManager >::value > addPass(PassT &&Pass)
Definition: PassManager.h:544
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
Definition: PassRegistry.h:37
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
Definition: Pass.h:94
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
void setRequiresStructuredCFG(bool Value)
std::unique_ptr< const MCSubtargetInfo > STI
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:44
LLVM Value Representation.
Definition: Value.h:74
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
Interfaces for registering analysis passes, producing common pass manager configurations,...
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ NVCL
Definition: NVPTX.h:78
@ CUDA
Definition: NVPTX.h:79
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:445
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void initializeNVPTXLowerAllocaPass(PassRegistry &)
char & EarlyMachineLICMID
This pass performs loop invariant code motion on machine instructions.
ModulePass * createNVPTXAssignValidGlobalNamesPass()
MachineFunctionPass * createNVPTXReplaceImageHandlesPass()
void initializeNVPTXAssignValidGlobalNamesPass(PassRegistry &)
Pass * createLoadStoreVectorizerPass()
Create a legacy pass manager instance of the LoadStoreVectorizer pass.
char & RegisterCoalescerID
RegisterCoalescer - This pass merges live ranges to eliminate copies.
char & OptimizePHIsID
OptimizePHIs - This pass optimizes machine instruction PHIs to take advantage of opportunities create...
char & EarlyTailDuplicateID
Duplicate blocks with unconditional branches into tails of their predecessors.
ModuleToFunctionPassAdaptor createModuleToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
Definition: PassManager.h:1218
ModulePass * createGenericToNVVMLegacyPass()
FunctionPass * createNVVMReflectPass(unsigned int SmVersion)
Definition: NVVMReflect.cpp:65
void initializeNVPTXLowerAggrCopiesPass(PassRegistry &)
void initializeNVPTXExternalAAWrapperPass(PassRegistry &)
char & MachineSinkingID
MachineSinking - This pass performs sinking on machine instructions.
@ ADDRESS_SPACE_LOCAL
Definition: NVPTXBaseInfo.h:26
@ ADDRESS_SPACE_CONST
Definition: NVPTXBaseInfo.h:25
@ ADDRESS_SPACE_GLOBAL
Definition: NVPTXBaseInfo.h:23
@ ADDRESS_SPACE_SHARED
Definition: NVPTXBaseInfo.h:24
FunctionPass * createAtomicExpandPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
MachineFunctionPass * createNVPTXPrologEpilogPass()
MachineFunctionPass * createNVPTXProxyRegErasurePass()
void initializeNVPTXDAGToDAGISelPass(PassRegistry &)
char & TailDuplicateID
TailDuplicate - Duplicate blocks with unconditional branches into tails of their predecessors.
FunctionPass * createNaryReassociatePass()
char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
MachineFunctionPass * createNVPTXPeephole()
void initializeNVVMReflectPass(PassRegistry &)
char & MachineSchedulerID
MachineScheduler - This pass schedules machine instructions.
char & PeepholeOptimizerID
PeepholeOptimizer - This pass performs peephole optimizations - like extension and comparison elimina...
char & LiveDebugValuesID
LiveDebugValues pass.
FunctionPass * createNVPTXISelDag(NVPTXTargetMachine &TM, llvm::CodeGenOptLevel OptLevel)
createNVPTXISelDag - This pass converts a legalized DAG into a NVPTX-specific DAG,...
char & PrologEpilogCodeInserterID
PrologEpilogCodeInserter - This pass inserts prolog and epilog code, and eliminates abstract frame re...
void initializeGenericToNVVMLegacyPassPass(PassRegistry &)
void initializeNVPTXCtorDtorLoweringLegacyPass(PassRegistry &)
void initializeNVPTXLowerUnreachablePass(PassRegistry &)
void initializeNVPTXLowerArgsPass(PassRegistry &)
char & MachineLoopInfoID
MachineLoopInfo - This pass is a loop analysis pass.
FunctionPass * createNVPTXLowerArgsPass()
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.
char & ShrinkWrapID
ShrinkWrap pass. Look for the best place to insert save and restore.
Definition: ShrinkWrap.cpp:286
char & MachineLateInstrsCleanupID
MachineLateInstrsCleanup - This pass removes redundant identical instructions after register allocati...
void initializeNVPTXAAWrapperPassPass(PassRegistry &)
FunctionPass * createNVPTXImageOptimizerPass()
FunctionPass * createNVPTXLowerAllocaPass()
FunctionPass * createSpeculativeExecutionPass()
char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
char & FuncletLayoutID
This pass lays out funclets contiguously.
FunctionPass * createAllocaHoisting()
void initializeNVVMIntrRangePass(PassRegistry &)
char & StackColoringID
StackSlotColoring - This pass performs stack coloring and merging.
char & PostRAMachineSinkingID
This pass perform post-ra machine sink for COPY instructions.
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
char & StackSlotColoringID
StackSlotColoring - This pass performs stack slot coloring.
FunctionPass * createSeparateConstOffsetFromGEPPass(bool LowerGEP=false)
FunctionPass * createLowerAggrCopies()
char & ProcessImplicitDefsID
ProcessImpicitDefs pass - This pass removes IMPLICIT_DEFs.
char & MachineCSEID
MachineCSE - This pass performs global CSE on machine instructions.
Definition: MachineCSE.cpp:166
FunctionPass * createNVPTXAtomicLowerPass()
ModulePass * createNVPTXCtorDtorLoweringLegacyPass()
char & LiveVariablesID
LiveVariables pass - This pass computes the set of blocks in which each variable is life and sets mac...
FunctionPass * createGVNPass(bool NoMemDepAnalysis=false)
Create a legacy GVN pass.
Definition: GVN.cpp:3335
void initializeNVPTXAllocaHoistingPass(PassRegistry &)
Target & getTheNVPTXTarget64()
FunctionPass * createInferAddressSpacesPass(unsigned AddressSpace=~0u)
void initializeNVPTXProxyRegErasurePass(PassRegistry &)
ImmutablePass * createNVPTXAAWrapperPass()
FunctionPass * createNVPTXLowerUnreachablePass()
ImmutablePass * createExternalAAWrapperPass(std::function< void(Pass &, Function &, AAResults &)> Callback)
A wrapper pass around a callback which can be used to populate the AAResults in the AAResultsWrapperP...
char & TwoAddressInstructionPassID
TwoAddressInstruction - This pass reduces two-address instructions to use two operands.
char & LocalStackSlotAllocationID
LocalStackSlotAllocation - This pass assigns local frame indices to stack slots relative to one anoth...
FunctionPass * createStraightLineStrengthReducePass()
FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
Definition: EarlyCSE.cpp:1932
char & PHIEliminationID
PHIElimination - This pass eliminates machine instruction PHI nodes by inserting copy instructions.
FunctionPass * createSROAPass(bool PreserveCFG=true)
Definition: SROA.cpp:5196
void initializeNVPTXAtomicLowerPass(PassRegistry &)
char & MachineCopyPropagationID
MachineCopyPropagation - This pass performs copy propagation on machine instructions.
char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
Target & getTheNVPTXTarget32()
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
RegisterTargetMachine - Helper template for registering a target machine implementation,...