103#include "llvm/IR/IntrinsicsAMDGPU.h"
151 using Base = CodeGenPassBuilder;
153 GCNTargetMachine &
getTM()
const {
154 return static_cast<GCNTargetMachine &
>(TM);
158 AMDGPUCodeGenPassBuilder(GCNTargetMachine &TM,
159 const CGPassBuilderOption &Opts,
160 PassInstrumentationCallbacks *
PIC);
162 void addIRPasses(PassManagerWrapper &PMW)
override;
163 void addCodeGenPrepare(PassManagerWrapper &PMW)
override;
164 void addPreISel(PassManagerWrapper &PMW)
override;
165 void addILPOpts(PassManagerWrapper &PMW)
override;
166 void addAsmPrinterBegin(PassManagerWrapper &PMW)
override;
167 void addAsmPrinter(PassManagerWrapper &PMW)
override;
168 void addAsmPrinterEnd(PassManagerWrapper &PMW)
override;
169 Error addInstSelector(PassManagerWrapper &PMW)
override;
170 void addPreRewrite(PassManagerWrapper &PMW)
override;
171 void addMachineSSAOptimization(PassManagerWrapper &PMW)
override;
172 void addPostRegAlloc(PassManagerWrapper &PMW)
override;
173 void addPreEmitPass(PassManagerWrapper &PMW)
override;
174 Error addRegAssignAndRewriteFast(PassManagerWrapper &PMW)
override;
176 addRegAssignAndRewriteOptimized(PassManagerWrapper &PMW)
override;
177 void addPreRegAlloc(PassManagerWrapper &PMW)
override;
178 Error addFastRegAlloc(PassManagerWrapper &PMW)
override;
179 Error addOptimizedRegAlloc(PassManagerWrapper &PMW)
override;
180 void addPreSched2(PassManagerWrapper &PMW)
override;
181 void addPostBBSections(PassManagerWrapper &PMW)
override;
184 Error validateRegAllocOptions()
const;
192 void addEarlyCSEOrGVNPass(PassManagerWrapper &PMW);
193 void addStraightLineScalarOptimizationPasses(PassManagerWrapper &PMW);
198 SGPRRegisterRegAlloc(
const char *
N,
const char *
D, FunctionPassCtor
C)
199 : RegisterRegAllocBase(
N,
D,
C) {}
204 VGPRRegisterRegAlloc(
const char *
N,
const char *
D, FunctionPassCtor
C)
205 : RegisterRegAllocBase(
N,
D,
C) {}
210 WWMRegisterRegAlloc(
const char *
N,
const char *
D, FunctionPassCtor
C)
211 : RegisterRegAllocBase(
N,
D,
C) {}
247static SGPRRegisterRegAlloc
248defaultSGPRRegAlloc(
"default",
249 "pick SGPR register allocator based on -O option",
252static cl::opt<SGPRRegisterRegAlloc::FunctionPassCtor,
false,
255 cl::desc(
"Register allocator to use for SGPRs"));
257static cl::opt<VGPRRegisterRegAlloc::FunctionPassCtor,
false,
260 cl::desc(
"Register allocator to use for VGPRs"));
262static cl::opt<WWMRegisterRegAlloc::FunctionPassCtor,
false,
266 cl::desc(
"Register allocator to use for WWM registers"));
271 cl::desc(
"Register allocator for SGPRs (new pass manager)"));
275 cl::desc(
"Register allocator for VGPRs (new pass manager)"));
279 cl::desc(
"Register allocator for WWM registers (new pass manager)"));
286 Twine(
"unsupported register allocator '") +
294Error AMDGPUCodeGenPassBuilder::validateRegAllocOptions()
const {
296 if (Opt.RegAlloc != RegAllocType::Unset) {
298 "-regalloc-npm not supported for amdgcn. Use -sgpr-regalloc-npm, "
299 "-vgpr-regalloc-npm, and -wwm-regalloc-npm",
304 if (SGPRRegAlloc.getNumOccurrences() > 0 ||
305 VGPRRegAlloc.getNumOccurrences() > 0 ||
306 WWMRegAlloc.getNumOccurrences() > 0) {
308 "-sgpr-regalloc, -vgpr-regalloc, and -wwm-regalloc are legacy PM "
309 "options. Use -sgpr-regalloc-npm, -vgpr-regalloc-npm, and "
310 "-wwm-regalloc-npm with the new pass manager",
315 if (
auto Err = checkRegAllocSupported(SGPRRegAllocNPM,
"SGPR"))
317 if (
auto Err = checkRegAllocSupported(WWMRegAllocNPM,
"WWM"))
319 if (
auto Err = checkRegAllocSupported(VGPRRegAllocNPM,
"VGPR"))
325static void initializeDefaultSGPRRegisterAllocatorOnce() {
326 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
330 SGPRRegisterRegAlloc::setDefault(SGPRRegAlloc);
334static void initializeDefaultVGPRRegisterAllocatorOnce() {
335 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
339 VGPRRegisterRegAlloc::setDefault(VGPRRegAlloc);
343static void initializeDefaultWWMRegisterAllocatorOnce() {
344 RegisterRegAlloc::FunctionPassCtor Ctor = WWMRegisterRegAlloc::getDefault();
348 WWMRegisterRegAlloc::setDefault(WWMRegAlloc);
352static FunctionPass *createBasicSGPRRegisterAllocator() {
356static FunctionPass *createGreedySGPRRegisterAllocator() {
360static FunctionPass *createFastSGPRRegisterAllocator() {
364static FunctionPass *createBasicVGPRRegisterAllocator() {
368static FunctionPass *createGreedyVGPRRegisterAllocator() {
372static FunctionPass *createFastVGPRRegisterAllocator() {
376static FunctionPass *createBasicWWMRegisterAllocator() {
380static FunctionPass *createGreedyWWMRegisterAllocator() {
384static FunctionPass *createFastWWMRegisterAllocator() {
388static SGPRRegisterRegAlloc basicRegAllocSGPR(
389 "basic",
"basic register allocator", createBasicSGPRRegisterAllocator);
390static SGPRRegisterRegAlloc greedyRegAllocSGPR(
391 "greedy",
"greedy register allocator", createGreedySGPRRegisterAllocator);
393static SGPRRegisterRegAlloc fastRegAllocSGPR(
394 "fast",
"fast register allocator", createFastSGPRRegisterAllocator);
397static VGPRRegisterRegAlloc basicRegAllocVGPR(
398 "basic",
"basic register allocator", createBasicVGPRRegisterAllocator);
399static VGPRRegisterRegAlloc greedyRegAllocVGPR(
400 "greedy",
"greedy register allocator", createGreedyVGPRRegisterAllocator);
402static VGPRRegisterRegAlloc fastRegAllocVGPR(
403 "fast",
"fast register allocator", createFastVGPRRegisterAllocator);
404static WWMRegisterRegAlloc basicRegAllocWWMReg(
"basic",
405 "basic register allocator",
406 createBasicWWMRegisterAllocator);
407static WWMRegisterRegAlloc
408 greedyRegAllocWWMReg(
"greedy",
"greedy register allocator",
409 createGreedyWWMRegisterAllocator);
410static WWMRegisterRegAlloc fastRegAllocWWMReg(
"fast",
"fast register allocator",
411 createFastWWMRegisterAllocator);
414 return Phase == ThinOrFullLTOPhase::FullLTOPreLink ||
415 Phase == ThinOrFullLTOPhase::ThinLTOPreLink;
421 cl::desc(
"Run early if-conversion"),
426 cl::desc(
"Run pre-RA exec mask optimizations"),
431 cl::desc(
"Lower GPU ctor / dtors to globals on the device."),
436 "amdgpu-load-store-vectorizer",
437 cl::desc(
"Enable load store vectorizer"),
443 "amdgpu-scalarize-global-loads",
444 cl::desc(
"Enable global load scalarization"),
450 "amdgpu-internalize-symbols",
451 cl::desc(
"Enable elimination of non-kernel functions and unused globals"),
457 "amdgpu-early-inline-all",
458 cl::desc(
"Inline all functions early"),
463 "amdgpu-enable-remove-incompatible-functions",
cl::Hidden,
464 cl::desc(
"Enable removal of functions when they"
465 "use features not supported by the target GPU"),
469 "amdgpu-sdwa-peephole",
474 "amdgpu-dpp-combine",
480 cl::desc(
"Enable AMDGPU Alias Analysis"),
485 cl::desc(
"Force amdgpu.xnack value for testing"),
490 cl::desc(
"Force amdgpu.sramecc for testing"),
495 "amdgpu-simplify-libcall",
496 cl::desc(
"Enable amdgpu library simplifications"),
501 "amdgpu-ir-lower-kernel-arguments",
502 cl::desc(
"Lower kernel argument loads in IR pass"),
507 "amdgpu-reassign-regs",
508 cl::desc(
"Enable register reassign optimizations on gfx10+"),
513 "amdgpu-opt-vgpr-liverange",
514 cl::desc(
"Enable VGPR liverange optimizations for if-else structure"),
518 "amdgpu-atomic-optimizer-strategy",
519 cl::desc(
"Select DPP or Iterative strategy for scan"),
524 "Use Iterative approach for scan"),
529 "amdgpu-mode-register",
530 cl::desc(
"Enable mode register pass"),
537 cl::desc(
"Enable s_delay_alu insertion"),
543 cl::desc(
"Enable VOPD, dual issue of VALU in wave32"),
550 cl::desc(
"Enable machine DCE inside regalloc"));
557 "amdgpu-scalar-ir-passes",
558 cl::desc(
"Enable scalar IR passes"),
563 "amdgpu-enable-lower-exec-sync",
569 cl::desc(
"Enable lowering of lds to global memory pass "
570 "and asan instrument resulting IR."),
574 "amdgpu-enable-object-linking",
575 cl::desc(
"Enable object linking for cross-TU LDS and ABI support"),
580 "amdgpu-enable-lower-module-lds",
cl::desc(
"Enable lower module lds pass"),
585 "amdgpu-enable-pre-ra-optimizations",
590 "amdgpu-enable-promote-kernel-arguments",
591 cl::desc(
"Enable promotion of flat kernel pointer arguments to global"),
595 "amdgpu-enable-image-intrinsic-optimizer",
601 cl::desc(
"Enable loop data prefetch on AMDGPU"),
606 cl::desc(
"Select custom AMDGPU scheduling strategy."),
613 Attribute SchedStrategyAttr =
F.getFnAttribute(
"amdgpu-sched-strategy");
614 if (SchedStrategyAttr.
isValid())
626 if (ST.hasGFX1250Insts())
630 F,
"'amdgpu-sched-strategy'='coexec' is only supported for gfx1250",
636 F.getFnAttribute(
"amdgpu-post-sched-strategy");
637 return PostSchedStrategyAttr.
isValid() &&
642 "amdgpu-enable-rewrite-partial-reg-uses",
647 "amdgpu-enable-hipstdpar",
648 cl::desc(
"Enable HIP Standard Parallelism Offload support"),
cl::init(
false),
653 cl::desc(
"Enable AMDGPUAttributorPass"),
657 "amdgpu-link-time-closed-world",
658 cl::desc(
"Whether has closed-world assumption at link time"),
662 "amdgpu-enable-uniform-intrinsic-combine",
663 cl::desc(
"Enable/Disable the Uniform Intrinsic Combine Pass"),
668 cl::desc(
"Enable Machine Pipeliner for AMDGCN"),
765 return std::make_unique<AMDGPUTargetObjectFile>();
772static ScheduleDAGInstrs *
778 if (ST.shouldClusterStores())
788static ScheduleDAGInstrs *
796static ScheduleDAGInstrs *
800 C, std::make_unique<GCNMaxMemoryClauseSchedStrategy>(
C));
802 if (ST.shouldClusterStores())
810static ScheduleDAGInstrs *
816 if (ST.shouldClusterStores())
829static ScheduleDAGInstrs *
834 if (ST.shouldClusterStores())
841static MachineSchedRegistry
847 "Run GCN scheduler to maximize occupancy",
855 "gcn-max-memory-clause",
"Run GCN scheduler to maximize memory clause",
859 "gcn-iterative-max-occupancy-experimental",
860 "Run GCN scheduler to maximize occupancy (experimental)",
864 "gcn-iterative-minreg",
865 "Run GCN iterative scheduler for minimal register usage (experimental)",
870 "Run GCN iterative scheduler for ILP scheduling (experimental)",
898 std::optional<Reloc::Model>
RM,
899 std::optional<CodeModel::Model> CM,
911 bool IsUnknownSubArch =
913 if (IsUnknownSubArch)
941 Attribute GPUAttr =
F.getFnAttribute(
"target-cpu");
946 Attribute FSAttr =
F.getFnAttribute(
"target-features");
957 if (ST.shouldClusterStores())
965 return F->isDeclaration() ||
F->getName().starts_with(
"__asan_") ||
966 F->getName().starts_with(
"__sanitizer_") ||
996 while (!Params.
empty()) {
998 std::tie(ParamName, Params) = Params.
split(
';');
999 if (ParamName ==
"closed-world") {
1000 Result.IsClosedWorld =
true;
1003 formatv(
"invalid AMDGPUAttributor pass parameter '{0}' ", ParamName)
1013#define GET_PASS_REGISTRY "AMDGPUPassRegistry.def"
1016 PB.registerPipelineParsingCallback(
1019 if (Name ==
"amdgpu-attributor-cgscc" &&
getTargetTriple().isAMDGCN()) {
1027 PB.registerScalarOptimizerLateEPCallback(
1035 PB.registerVectorizerEndEPCallback(
1043 PB.registerPipelineEarlySimplificationEPCallback(
1071 PB.registerPeepholeEPCallback(
1084 PB.registerCGSCCOptimizerLateEPCallback(
1127 PB.registerFullLinkTimeOptimizationLastEPCallback(
1180 PB.registerRegClassFilterParsingCallback(
1182 if (FilterName ==
"sgpr")
1183 return onlyAllocateSGPRs;
1184 if (FilterName ==
"vgpr")
1185 return onlyAllocateVGPRs;
1186 if (FilterName ==
"wwm")
1187 return onlyAllocateWWMRegs;
1193 unsigned DestAS)
const {
1202 !Arg->hasByRefAttr())
1212 const auto *Ptr = LD->getPointerOperand();
1222std::pair<const Value *, unsigned>
1225 switch (
II->getIntrinsicID()) {
1226 case Intrinsic::amdgcn_is_shared:
1228 case Intrinsic::amdgcn_is_private:
1233 return std::pair(
nullptr, -1);
1240 const_cast<Value *
>(V),
1246 return std::pair(
nullptr, -1);
1266 Module &M,
unsigned NumParts,
1267 function_ref<
void(std::unique_ptr<Module> MPart)> ModuleCallback) {
1278 PB.registerModuleAnalyses(
MAM);
1279 PB.registerFunctionAnalyses(
FAM);
1295 std::optional<Reloc::Model>
RM,
1296 std::optional<CodeModel::Model> CM,
1315 return static_cast<OOBFlagValue>(Flag->getZExtValue());
1326 if (
XnackSetting.getNumOccurrences() > 0 && FlagName ==
"amdgpu.xnack")
1327 return XnackSetting ? TargetIDSetting::On : TargetIDSetting::Off;
1328 if (
SramEccSetting.getNumOccurrences() > 0 && FlagName ==
"amdgpu.sramecc")
1329 return SramEccSetting ? TargetIDSetting::On : TargetIDSetting::Off;
1334 return TargetIDSetting::Any;
1335 return Flag->getZExtValue() == 0 ? TargetIDSetting::Off : TargetIDSetting::On;
1343 const Module &M = *
F.getParent();
1351 TargetIDSetting SramEcc =
1357 SubtargetKey.
append(
",buf-oob=1");
1359 SubtargetKey.
append(
",tbuf-oob=1");
1360 if (Xnack != TargetIDSetting::Any) {
1361 SubtargetKey.
append(
",xnack=");
1362 SubtargetKey.
push_back(Xnack == TargetIDSetting::On ?
'1' :
'0');
1364 if (SramEcc != TargetIDSetting::Any) {
1365 SubtargetKey.
append(
",sramecc=");
1366 SubtargetKey.
push_back(Xnack == TargetIDSetting::On ?
'1' :
'0');
1369 auto &
I = SubtargetMap[SubtargetKey];
1376 const Triple &TT = M.getTargetTriple();
1383 if (!IsLegacyEmptySubArch &&
1385 F.getContext().emitError(
"invalid subtarget '" +
Twine(GPU) +
1386 "' for subarch " + TT.getArchName());
1390 I = std::make_unique<GCNSubtarget>(
TargetTriple, GPU, FS, *
this, BufRelaxed,
1391 TBufRelaxed, Xnack, SramEcc);
1409 AMDGPUCodeGenPassBuilder CGPB(*
this, Opts,
PIC);
1410 return CGPB.buildPipeline(MPM,
MAM, Out, DwoOut, FileType, Ctx);
1416 if (ST.enableSIScheduler())
1421 if (SchedStrategy ==
"max-ilp")
1424 if (SchedStrategy ==
"max-memory-clause")
1427 if (SchedStrategy ==
"iterative-ilp")
1430 if (SchedStrategy ==
"iterative-minreg")
1433 if (SchedStrategy ==
"iterative-maxocc")
1436 if (SchedStrategy ==
"coexec") {
1454 if (ST.shouldClusterStores())
1487 bool addPreISel()
override;
1488 void addMachineSSAOptimization()
override;
1489 bool addILPOpts()
override;
1490 bool addInstSelector()
override;
1491 bool addIRTranslator()
override;
1492 void addPreLegalizeMachineIR()
override;
1493 bool addLegalizeMachineIR()
override;
1494 void addPreRegBankSelect()
override;
1495 bool addRegBankSelect()
override;
1496 void addPreGlobalInstructionSelect()
override;
1497 bool addGlobalInstructionSelect()
override;
1498 void addPreRegAlloc()
override;
1499 void addFastRegAlloc()
override;
1500 void addOptimizedRegAlloc()
override;
1502 FunctionPass *createSGPRAllocPass(
bool Optimized);
1503 FunctionPass *createVGPRAllocPass(
bool Optimized);
1504 FunctionPass *createWWMRegAllocPass(
bool Optimized);
1505 FunctionPass *createRegAllocPass(
bool Optimized)
override;
1507 bool addRegAssignAndRewriteFast()
override;
1508 bool addRegAssignAndRewriteOptimized()
override;
1510 bool addPreRewrite()
override;
1511 void addPostRegAlloc()
override;
1512 void addPreSched2()
override;
1513 void addPreEmitPass()
override;
1514 void addPostBBSections()
override;
1565 if (
TM.getTargetTriple().isAMDGCN())
1571 if (
TM.getTargetTriple().isAMDGCN() &&
1607 if ((
TM.getTargetTriple().isAMDGCN()) &&
1630 if (
TM.getTargetTriple().isAMDGCN()) {
1660 if (
TM->getTargetTriple().isAMDGCN() &&
1672 if (
TM->getTargetTriple().isAMDGCN()) {
1711bool GCNPassConfig::addPreISel() {
1737 !isGlobalISelAbortEnabled())
1746void GCNPassConfig::addMachineSSAOptimization() {
1770bool GCNPassConfig::addILPOpts() {
1778bool GCNPassConfig::addInstSelector() {
1785bool GCNPassConfig::addIRTranslator() {
1790void GCNPassConfig::addPreLegalizeMachineIR() {
1796bool GCNPassConfig::addLegalizeMachineIR() {
1801void GCNPassConfig::addPreRegBankSelect() {
1807bool GCNPassConfig::addRegBankSelect() {
1813void GCNPassConfig::addPreGlobalInstructionSelect() {
1818bool GCNPassConfig::addGlobalInstructionSelect() {
1823void GCNPassConfig::addFastRegAlloc() {
1837void GCNPassConfig::addPreRegAlloc() {
1844void GCNPassConfig::addOptimizedRegAlloc() {
1881bool GCNPassConfig::addPreRewrite() {
1889FunctionPass *GCNPassConfig::createSGPRAllocPass(
bool Optimized) {
1892 initializeDefaultSGPRRegisterAllocatorOnce);
1904FunctionPass *GCNPassConfig::createVGPRAllocPass(
bool Optimized) {
1907 initializeDefaultVGPRRegisterAllocatorOnce);
1914 return createGreedyVGPRRegisterAllocator();
1916 return createFastVGPRRegisterAllocator();
1919FunctionPass *GCNPassConfig::createWWMRegAllocPass(
bool Optimized) {
1922 initializeDefaultWWMRegisterAllocatorOnce);
1929 return createGreedyWWMRegisterAllocator();
1931 return createFastWWMRegisterAllocator();
1934FunctionPass *GCNPassConfig::createRegAllocPass(
bool Optimized) {
1939 "-regalloc not supported with amdgcn. Use -sgpr-regalloc, -wwm-regalloc, "
1940 "and -vgpr-regalloc";
1942bool GCNPassConfig::addRegAssignAndRewriteFast() {
1943 if (!usingDefaultRegAlloc())
1948 addPass(createSGPRAllocPass(
false));
1957 addPass(createWWMRegAllocPass(
false));
1963 addPass(createVGPRAllocPass(
false));
1968bool GCNPassConfig::addRegAssignAndRewriteOptimized() {
1969 if (!usingDefaultRegAlloc())
1974 addPass(createSGPRAllocPass(
true));
1994 addPass(createWWMRegAllocPass(
true));
2000 addPass(createVGPRAllocPass(
true));
2010void GCNPassConfig::addPostRegAlloc() {
2017void GCNPassConfig::addPreSched2() {
2023void GCNPassConfig::addPreEmitPass() {
2059void GCNPassConfig::addPostBBSections() {
2066 return new GCNPassConfig(*
this, PM);
2105 if (MFI->Occupancy == 0) {
2107 MFI->Occupancy = ST.getOccupancyWithWorkGroupSizes(MF).second;
2113 SourceRange =
RegName.SourceRange;
2126 if (parseOptionalRegister(YamlMFI.
VGPRForAGPRCopy, MFI->VGPRForAGPRCopy))
2129 if (parseOptionalRegister(YamlMFI.
SGPRForEXECCopy, MFI->SGPRForEXECCopy))
2133 MFI->LongBranchReservedReg))
2142 "incorrect register class for field",
RegName.Value,
2144 SourceRange =
RegName.SourceRange;
2148 if (parseRegister(YamlMFI.
ScratchRSrcReg, MFI->ScratchRSrcReg) ||
2153 if (MFI->ScratchRSrcReg != AMDGPU::PRIVATE_RSRC_REG &&
2154 !AMDGPU::SGPR_128RegClass.contains(MFI->ScratchRSrcReg)) {
2158 if (MFI->FrameOffsetReg != AMDGPU::FP_REG &&
2159 !AMDGPU::SGPR_32RegClass.contains(MFI->FrameOffsetReg)) {
2163 if (MFI->StackPtrOffsetReg != AMDGPU::SP_REG &&
2164 !AMDGPU::SGPR_32RegClass.contains(MFI->StackPtrOffsetReg)) {
2170 if (parseRegister(YamlReg, ParsedReg))
2177 MFI->
setFlag(Info->VReg, Info->Flags);
2179 for (
const auto &[
_, Info] : PFS.
VRegInfos) {
2180 MFI->
setFlag(Info->VReg, Info->Flags);
2185 if (parseRegister(YamlRegStr, ParsedReg))
2187 MFI->SpillPhysVGPRs.push_back(ParsedReg);
2190 auto parseAndCheckArgument = [&](
const std::optional<yaml::SIArgument> &
A,
2193 unsigned SystemSGPRs) {
2198 if (
A->IsRegister) {
2201 SourceRange =
A->RegisterName.SourceRange;
2204 if (!RC.contains(Reg))
2205 return diagnoseRegisterClass(
A->RegisterName);
2213 MFI->NumUserSGPRs += UserSGPRs;
2214 MFI->NumSystemSGPRs += SystemSGPRs;
2219 (parseAndCheckArgument(YamlMFI.
ArgInfo->PrivateSegmentBuffer,
2220 AMDGPU::SGPR_128RegClass,
2222 parseAndCheckArgument(YamlMFI.
ArgInfo->DispatchPtr,
2223 AMDGPU::SReg_64RegClass, MFI->ArgInfo.
DispatchPtr,
2225 parseAndCheckArgument(YamlMFI.
ArgInfo->QueuePtr, AMDGPU::SReg_64RegClass,
2227 parseAndCheckArgument(YamlMFI.
ArgInfo->KernargSegmentPtr,
2228 AMDGPU::SReg_64RegClass,
2230 parseAndCheckArgument(YamlMFI.
ArgInfo->DispatchID,
2231 AMDGPU::SReg_64RegClass, MFI->ArgInfo.
DispatchID,
2233 parseAndCheckArgument(YamlMFI.
ArgInfo->FlatScratchInit,
2234 AMDGPU::SReg_64RegClass,
2236 parseAndCheckArgument(YamlMFI.
ArgInfo->PrivateSegmentSize,
2237 AMDGPU::SGPR_32RegClass,
2239 parseAndCheckArgument(YamlMFI.
ArgInfo->LDSKernelId,
2240 AMDGPU::SGPR_32RegClass,
2242 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkGroupIDX,
2245 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkGroupIDY,
2248 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkGroupIDZ,
2251 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkGroupInfo,
2252 AMDGPU::SGPR_32RegClass,
2254 parseAndCheckArgument(YamlMFI.
ArgInfo->PrivateSegmentWaveByteOffset,
2255 AMDGPU::SGPR_32RegClass,
2257 parseAndCheckArgument(YamlMFI.
ArgInfo->ImplicitArgPtr,
2258 AMDGPU::SReg_64RegClass,
2260 parseAndCheckArgument(YamlMFI.
ArgInfo->ImplicitBufferPtr,
2261 AMDGPU::SReg_64RegClass,
2263 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkItemIDX,
2264 AMDGPU::VGPR_32RegClass,
2266 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkItemIDY,
2267 AMDGPU::VGPR_32RegClass,
2269 parseAndCheckArgument(YamlMFI.
ArgInfo->WorkItemIDZ,
2270 AMDGPU::VGPR_32RegClass,
2276 if (YamlMFI.
ArgInfo && YamlMFI.
ArgInfo->FirstKernArgPreloadReg) {
2279 if (!
A.IsRegister) {
2290 "firstKernArgPreloadReg must be a register, not a stack location",
"",
2293 SourceRange =
Range;
2299 SourceRange =
A.RegisterName.SourceRange;
2303 if (!AMDGPU::SGPR_32RegClass.
contains(Reg))
2304 return diagnoseRegisterClass(
A.RegisterName);
2310 if (ST.hasFeature(AMDGPU::FeatureDX10ClampAndIEEEMode)) {
2340AMDGPUCodeGenPassBuilder::AMDGPUCodeGenPassBuilder(
2344 Opt.MISchedPostRA =
true;
2345 Opt.RequiresCodeGenSCCOrder =
true;
2355 flushFPMsToMPM(PMW);
2359 flushFPMsToMPM(PMW);
2361 if (TM.getTargetTriple().isAMDGCN())
2374 flushFPMsToMPM(PMW);
2403 addStraightLineScalarOptimizationPasses(PMW);
2419 Base::addIRPasses(PMW);
2434 addEarlyCSEOrGVNPass(PMW);
2439 flushFPMsToMPM(PMW);
2446 Base::addCodeGenPrepare(PMW);
2458 flushFPMsToMPM(PMW);
2460 flushFPMsToMPM(PMW);
2461 requireCGSCCOrder(PMW);
2499 !isGlobalISelAbortEnabled())
2503 flushFPMsToMPM(PMW);
2512 Base::addILPOpts(PMW);
2543void AMDGPUCodeGenPassBuilder::addMachineSSAOptimization(
2545 Base::addMachineSSAOptimization(PMW);
2567 return Base::addFastRegAlloc(PMW);
2570Error AMDGPUCodeGenPassBuilder::addRegAssignAndRewriteFast(
2572 if (
auto Err = validateRegAllocOptions())
2579 addMachineFunctionPass(RAGreedyPass({onlyAllocateSGPRs,
"sgpr"}), PMW);
2581 addMachineFunctionPass(
RegAllocFastPass({onlyAllocateSGPRs,
"sgpr",
false}),
2592 addMachineFunctionPass(RAGreedyPass({onlyAllocateWWMRegs,
"wwm"}), PMW);
2594 addMachineFunctionPass(
2602 addMachineFunctionPass(RAGreedyPass({onlyAllocateVGPRs,
"vgpr"}), PMW);
2604 addMachineFunctionPass(
RegAllocFastPass({onlyAllocateVGPRs,
"vgpr"}), PMW);
2618 insertPass<RequireAnalysisPass<LiveVariablesAnalysis, MachineFunction>>(
2644 return Base::addOptimizedRegAlloc(PMW);
2652Expected<bool> AMDGPUCodeGenPassBuilder::addRegAssignAndRewriteOptimized(
2654 if (
auto Err = validateRegAllocOptions())
2661 addMachineFunctionPass(
RegAllocFastPass({onlyAllocateSGPRs,
"sgpr",
false}),
2664 addMachineFunctionPass(RAGreedyPass({onlyAllocateSGPRs,
"sgpr"}), PMW);
2685 addMachineFunctionPass(
2688 addMachineFunctionPass(RAGreedyPass({onlyAllocateWWMRegs,
"wwm"}), PMW);
2695 addMachineFunctionPass(
RegAllocFastPass({onlyAllocateVGPRs,
"vgpr"}), PMW);
2697 addMachineFunctionPass(RAGreedyPass({onlyAllocateVGPRs,
"vgpr"}), PMW);
2710 Base::addPostRegAlloc(PMW);
2765bool AMDGPUCodeGenPassBuilder::isPassEnabled(
const cl::opt<bool> &Opt,
2769 if (TM.getOptLevel() < Level)
2776 addFunctionPass(
GVNPass(), PMW);
2781void AMDGPUCodeGenPassBuilder::addStraightLineScalarOptimizationPasses(
2794 addEarlyCSEOrGVNPass(PMW);
aarch64 falkor hwpf fix Falkor HW Prefetch Fix Late Phase
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden, cl::desc("Run early if-conversion"), cl::init(true))
static cl::opt< bool > EnableMachinePipeliner("aarch64-enable-pipeliner", cl::desc("Enable Machine Pipeliner for AArch64"), cl::init(false), cl::Hidden)
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
This is the AMGPU address space based alias analysis pass.
AMDGPU Assembly printer class.
Coexecution-focused scheduling strategy for AMDGPU.
Defines an instruction selector for the AMDGPU target.
Analyzes if a function potentially memory bound and if a kernel kernel may benefit from limiting numb...
Analyzes how many registers and other resources are used by functions.
static cl::opt< bool > EnableDCEInRA("amdgpu-dce-in-ra", cl::init(true), cl::Hidden, cl::desc("Enable machine DCE inside regalloc"))
static cl::opt< bool, true > EnableLowerModuleLDS("amdgpu-enable-lower-module-lds", cl::desc("Enable lower module lds pass"), cl::location(AMDGPUTargetMachine::EnableLowerModuleLDS), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNMaxMemoryClauseSchedRegistry("gcn-max-memory-clause", "Run GCN scheduler to maximize memory clause", createGCNMaxMemoryClauseMachineScheduler)
static Reloc::Model getEffectiveRelocModel()
static cl::opt< bool > EnableUniformIntrinsicCombine("amdgpu-enable-uniform-intrinsic-combine", cl::desc("Enable/Disable the Uniform Intrinsic Combine Pass"), cl::init(true), cl::Hidden)
static MachineSchedRegistry SISchedRegistry("si", "Run SI's custom scheduler", createSIMachineScheduler)
static ScheduleDAGInstrs * createIterativeILPMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EarlyInlineAll("amdgpu-early-inline-all", cl::desc("Inline all functions early"), cl::init(false), cl::Hidden)
static OOBFlagValue getOOBFlagValue(const Module &M, StringRef FlagName)
Returns the OOB mode encoded by a module flag.
static cl::opt< bool > EnableSwLowerLDS("amdgpu-enable-sw-lower-lds", cl::desc("Enable lowering of lds to global memory pass " "and asan instrument resulting IR."), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLowerKernelArguments("amdgpu-ir-lower-kernel-arguments", cl::desc("Lower kernel argument loads in IR pass"), cl::init(true), cl::Hidden)
static cl::opt< bool, true > EnableObjectLinking("amdgpu-enable-object-linking", cl::desc("Enable object linking for cross-TU LDS and ABI support"), cl::location(AMDGPUTargetMachine::EnableObjectLinking), cl::init(false), cl::Hidden)
static ScheduleDAGInstrs * createGCNMaxILPMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableSDWAPeephole("amdgpu-sdwa-peephole", cl::desc("Enable SDWA peepholer"), cl::init(true))
static MachineSchedRegistry GCNMinRegSchedRegistry("gcn-iterative-minreg", "Run GCN iterative scheduler for minimal register usage (experimental)", createMinRegScheduler)
static cl::opt< bool > SramEccSetting("amdgpu-sramecc", cl::desc("Force amdgpu.sramecc for testing"), cl::ReallyHidden)
static void diagnoseUnsupportedCoExecSchedulerSelection(const Function &F, const GCNSubtarget &ST)
static cl::opt< bool > EnableImageIntrinsicOptimizer("amdgpu-enable-image-intrinsic-optimizer", cl::desc("Enable image intrinsic optimizer pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > HasClosedWorldAssumption("amdgpu-link-time-closed-world", cl::desc("Whether has closed-world assumption at link time"), cl::init(false), cl::Hidden)
static bool useNoopPostScheduler(const Function &F)
static ScheduleDAGInstrs * createGCNMaxMemoryClauseMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableSIModeRegisterPass("amdgpu-mode-register", cl::desc("Enable mode register pass"), cl::init(true), cl::Hidden)
static cl::opt< std::string > AMDGPUSchedStrategy("amdgpu-sched-strategy", cl::desc("Select custom AMDGPU scheduling strategy."), cl::Hidden, cl::init(""))
static cl::opt< bool > EnableDPPCombine("amdgpu-dpp-combine", cl::desc("Enable DPP combiner"), cl::init(true))
static MachineSchedRegistry IterativeGCNMaxOccupancySchedRegistry("gcn-iterative-max-occupancy-experimental", "Run GCN scheduler to maximize occupancy (experimental)", createIterativeGCNMaxOccupancyMachineScheduler)
static cl::opt< bool > EnableSetWavePriority("amdgpu-set-wave-priority", cl::desc("Adjust wave priority"), cl::init(false), cl::Hidden)
static cl::opt< bool > LowerCtorDtor("amdgpu-lower-global-ctor-dtor", cl::desc("Lower GPU ctor / dtors to globals on the device."), cl::init(true), cl::Hidden)
static cl::opt< bool > XnackSetting("amdgpu-xnack", cl::desc("Force amdgpu.xnack value for testing"), cl::ReallyHidden)
static cl::opt< bool > OptExecMaskPreRA("amdgpu-opt-exec-mask-pre-ra", cl::Hidden, cl::desc("Run pre-RA exec mask optimizations"), cl::init(true))
static cl::opt< bool > EnablePromoteKernelArguments("amdgpu-enable-promote-kernel-arguments", cl::desc("Enable promotion of flat kernel pointer arguments to global"), cl::Hidden, cl::init(true))
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAMDGPUTarget()
static cl::opt< bool > EnableRewritePartialRegUses("amdgpu-enable-rewrite-partial-reg-uses", cl::desc("Enable rewrite partial reg uses pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLibCallSimplify("amdgpu-simplify-libcall", cl::desc("Enable amdgpu library simplifications"), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNMaxILPSchedRegistry("gcn-max-ilp", "Run GCN scheduler to maximize ilp", createGCNMaxILPMachineScheduler)
static cl::opt< bool > InternalizeSymbols("amdgpu-internalize-symbols", cl::desc("Enable elimination of non-kernel functions and unused globals"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableAMDGPUAttributor("amdgpu-attributor-enable", cl::desc("Enable AMDGPUAttributorPass"), cl::init(true), cl::Hidden)
static LLVM_READNONE StringRef getGPUOrDefault(const Triple &TT, StringRef GPU)
Expected< AMDGPUAttributorOptions > parseAMDGPUAttributorPassOptions(StringRef Params)
static cl::opt< bool > EnableAMDGPUAliasAnalysis("enable-amdgpu-aa", cl::Hidden, cl::desc("Enable AMDGPU Alias Analysis"), cl::init(true))
static Expected< ScanOptions > parseAMDGPUAtomicOptimizerStrategy(StringRef Params)
static ScheduleDAGInstrs * createMinRegScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableHipStdPar("amdgpu-enable-hipstdpar", cl::desc("Enable HIP Standard Parallelism Offload support"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableInsertDelayAlu("amdgpu-enable-delay-alu", cl::desc("Enable s_delay_alu insertion"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createIterativeGCNMaxOccupancyMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableLoadStoreVectorizer("amdgpu-load-store-vectorizer", cl::desc("Enable load store vectorizer"), cl::init(true), cl::Hidden)
static bool mustPreserveGV(const GlobalValue &GV)
Predicate for Internalize pass.
static cl::opt< bool > EnableLoopPrefetch("amdgpu-loop-prefetch", cl::desc("Enable loop data prefetch on AMDGPU"), cl::Hidden, cl::init(false))
static cl::opt< bool > RemoveIncompatibleFunctions("amdgpu-enable-remove-incompatible-functions", cl::Hidden, cl::desc("Enable removal of functions when they" "use features not supported by the target GPU"), cl::init(true))
static cl::opt< bool > EnableScalarIRPasses("amdgpu-scalar-ir-passes", cl::desc("Enable scalar IR passes"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableRegReassign("amdgpu-reassign-regs", cl::desc("Enable register reassign optimizations on gfx10+"), cl::init(true), cl::Hidden)
static cl::opt< bool > OptVGPRLiveRange("amdgpu-opt-vgpr-liverange", cl::desc("Enable VGPR liverange optimizations for if-else structure"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createSIMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnablePreRAOptimizations("amdgpu-enable-pre-ra-optimizations", cl::desc("Enable Pre-RA optimizations pass"), cl::init(true), cl::Hidden)
static cl::opt< ScanOptions > AMDGPUAtomicOptimizerStrategy("amdgpu-atomic-optimizer-strategy", cl::desc("Select DPP or Iterative strategy for scan"), cl::init(ScanOptions::Iterative), cl::values(clEnumValN(ScanOptions::DPP, "DPP", "Use DPP operations for scan"), clEnumValN(ScanOptions::Iterative, "Iterative", "Use Iterative approach for scan"), clEnumValN(ScanOptions::None, "None", "Disable atomic optimizer")))
static cl::opt< bool > EnableVOPD("amdgpu-enable-vopd", cl::desc("Enable VOPD, dual issue of VALU in wave32"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createGCNMaxOccupancyMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableLowerExecSync("amdgpu-enable-lower-exec-sync", cl::desc("Enable lowering of execution synchronization."), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNILPSchedRegistry("gcn-iterative-ilp", "Run GCN iterative scheduler for ILP scheduling (experimental)", createIterativeILPMachineScheduler)
static cl::opt< bool > ScalarizeGlobal("amdgpu-scalarize-global-loads", cl::desc("Enable global load scalarization"), cl::init(true), cl::Hidden)
static const char RegAllocOptNotSupportedMessage[]
static MachineSchedRegistry GCNMaxOccupancySchedRegistry("gcn-max-occupancy", "Run GCN scheduler to maximize occupancy", createGCNMaxOccupancyMachineScheduler)
The AMDGPU TargetMachine interface definition for hw codegen targets.
This file declares the AMDGPU-specific subclass of TargetLoweringObjectFile.
Provides passes to inlining "always_inline" functions.
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This header provides classes for managing passes over SCCs of the call graph.
Provides analysis for continuously CSEing during GISel passes.
Interfaces for producing common pass manager configurations.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
#define LLVM_EXTERNAL_VISIBILITY
Analysis that tracks defined/used subregister lanes across COPY instructions and instructions that ge...
This file provides the interface for a simple, fast CSE pass.
This file defines the class GCNIterativeScheduler, which uses an iterative approach to find a best sc...
This file provides the interface for LLVM's Global Value Numbering pass which eliminates fully redund...
AcceleratorCodeSelection - Identify all functions reachable from a kernel, removing those that are un...
This file declares the IRTranslator pass.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This file provides the interface for LLVM's Loop Data Prefetching Pass.
This header provides classes for managing a pipeline of passes over loops in LLVM IR.
Register const TargetRegisterInfo * TRI
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
CGSCCAnalysisManager CGAM
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
PassInstrumentationCallbacks PIC
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
static bool isLTOPreLink(ThinOrFullLTOPhase Phase)
The AMDGPU TargetMachine interface definition for hw codegen targets.
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
SI Machine Scheduler interface.
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static FunctionPass * useDefaultRegisterAllocator()
-regalloc=... command line option.
static cl::opt< cl::boolOrDefault > EnableGlobalISelOption("global-isel", cl::Hidden, cl::desc("Enable the \"global\" instruction selector"))
Target-Independent Code Generator Pass Configuration Options pass.
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
A manager for alias analyses.
void registerFunctionAnalysis()
Register a specific AA result.
void addAAResult(AAResultT &AAResult)
Register a specific AA result.
Legacy wrapper pass to provide the AMDGPUAAResult object.
Analysis pass providing a never-invalidated alias analysis result.
Lower llvm.global_ctors and llvm.global_dtors to special kernels.
AMDGPUTargetMachine & getAMDGPUTargetMachine() const
std::unique_ptr< CSEConfigBase > getCSEConfig() const override
Returns the CSEConfig object to use for the current optimization level.
bool isPassEnabled(const cl::opt< bool > &Opt, CodeGenOptLevel Level=CodeGenOptLevel::Default) const
Check if a pass is enabled given Opt option.
bool addPreISel() override
Methods with trivial inline returns are convenient points in the common codegen pass pipeline where t...
bool addInstSelector() override
addInstSelector - This method should install an instruction selector pass, which converts from LLVM c...
bool addGCPasses() override
addGCPasses - Add late codegen passes that analyze code for garbage collection.
void addStraightLineScalarOptimizationPasses()
AMDGPUPassConfig(TargetMachine &TM, PassManagerBase &PM)
void addIRPasses() override
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
void addEarlyCSEOrGVNPass()
void addCodeGenPrepare() override
Add pass to prepare the LLVM IR for code generation.
Splits the module M into N linkable partitions.
std::unique_ptr< TargetLoweringObjectFile > TLOF
unsigned getAddressSpaceForPseudoSourceKind(unsigned Kind) const override
getAddressSpaceForPseudoSourceKind - Given the kind of memory (e.g.
const TargetSubtargetInfo * getSubtargetImpl() const
void registerDefaultAliasAnalyses(AAManager &) override
Allow the target to register alias analyses with the AAManager for use with the new pass manager.
~AMDGPUTargetMachine() override
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,...
StringRef getFeatureString(const Function &F) const
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
static bool EnableFunctionCalls
AMDGPUTargetMachine(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 isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override
Returns true if a cast between SrcAS and DestAS is a noop.
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
static bool EnableLowerModuleLDS
StringRef getGPUName(const Function &F) const
unsigned getAssumedAddrSpace(const Value *V) const override
If the specified generic pointer could be assumed as a pointer to a specific address space,...
bool splitModule(Module &M, unsigned NumParts, function_ref< void(std::unique_ptr< Module > MPart)> ModuleCallback) override
Entry point for module splitting.
static bool EnableObjectLinking
Inlines functions marked as "always_inline".
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Functions, function parameters, and return types can have attributes to indicate how they should be t...
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.
This class provides access to building LLVM's passes.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
LLVM_ABI void removeDeadConstantUsers() const
If there are any dead constant users dangling off of this constant, remove them.
Diagnostic information for unsupported feature in backend.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
FunctionPass class - This class is used to implement most global optimizations.
LowerIntrinsics - This pass rewrites calls to the llvm.gcread or llvm.gcwrite intrinsics,...
@ SCHEDULE_LEGACYMAXOCCUPANCY
const SIRegisterInfo * getRegisterInfo() const override
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
static AMDGPU::TargetIDSetting getTargetIDSettingFromModuleFlag(const Module &M, StringRef FlagName)
Get xnack/sramecc setting from module flag or cl::opt (for testing).
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
void registerMachineRegisterInfoCallback(MachineFunction &MF) const override
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
Error buildCodeGenPipeline(ModulePassManager &MPM, ModuleAnalysisManager &MAM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, const CGPassBuilderOption &Opts, MCContext &Ctx, PassInstrumentationCallbacks *PIC) override
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
GCNTargetMachine(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)
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
The core GVN pass object.
Pass to remove unused function declarations.
This pass is responsible for selecting generic machine instructions to target-specific instructions.
A pass that internalizes all functions and variables other than those that must be preserved accordin...
Converts loops into loop-closed SSA form.
Performs Loop Invariant Code Motion Pass.
static void setUseExtended(bool Enable)
This pass implements the localization mechanism described at the top of this file.
An optimization pass inserting data prefetches in loops.
Context object for machine code objects.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
void addDelegate(Delegate *delegate)
const MachineFunction & getMF() const
MachineSchedRegistry provides a selection of available machine instruction schedulers.
This interface provides simple read-only access to a block of memory, and provides simple methods for...
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
const char * getBufferStart() const
A Module instance is used to store all the information related to an LLVM module.
This class provides access to building LLVM's passes.
This class manages callbacks registration, as well as provides a way for PassInstrumentation to pass ...
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t<!std::is_same_v< PassT, PassManager > > addPass(PassT &&Pass)
PreservedAnalyses run(IRUnitT &IR, AnalysisManagerT &AM, ExtraArgTs... ExtraArgs)
Run all of the passes in this manager over the given unit of IR.
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...
Pass interface - Implemented by all 'passes'.
@ ExternalSymbolCallEntry
RegisterPassParser class - Handle the addition of new machine passes.
RegisterRegAllocBase class - Track the registration of register allocators.
FunctionPass *(*)() FunctionPassCtor
Wrapper class representing virtual and physical registers.
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
bool initializeBaseYamlFields(const yaml::SIMachineFunctionInfo &YamlMFI, const MachineFunction &MF, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange)
void setFlag(Register Reg, uint8_t Flag)
bool checkFlag(Register Reg, uint8_t Flag) const
void reserveWWMRegister(Register Reg)
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Represents a location in source code.
static SMLoc getFromPointer(const char *Ptr)
Represents a range in source code.
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
ScheduleDAGMI is an implementation of ScheduleDAGInstrs that simply schedules machine instructions ac...
void addMutation(std::unique_ptr< ScheduleDAGMutation > Mutation)
Add a postprocessing step to the DAG builder.
const TargetInstrInfo * TII
Target instruction information.
const TargetRegisterInfo * TRI
Target processor register info.
Move instructions into successor blocks when possible.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
void append(StringRef RHS)
Append from a StringRef.
void push_back(const T &Elt)
unsigned getMainFileID() const
const MemoryBuffer * getMemoryBuffer(unsigned i) const
Represent a constant reference to a string, i.e.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
constexpr bool empty() const
Check if the string is empty.
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
A switch()-like statement whose cases are string literals.
StringSwitch & Cases(std::initializer_list< StringLiteral > CaseStrings, T Value)
Primary interface to the complete machine description for the target machine.
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
const Triple & getTargetTriple() const
const MCSubtargetInfo & getMCSubtargetInfo() const
StringRef getTargetFeatureString() const
StringRef getTargetCPU() const
std::unique_ptr< const MCSubtargetInfo > STI
std::unique_ptr< const MCRegisterInfo > MRI
void setEnableDefaultMachineVerifier(bool Enable)
Target-Independent Code Generator Pass Configuration Options.
virtual void addCodeGenPrepare()
Add pass to prepare the LLVM IR for code generation.
virtual bool addILPOpts()
Add passes that optimize instruction level parallelism for out-of-order targets.
virtual void addPostRegAlloc()
This method may be implemented by targets that want to run passes after register allocation pass pipe...
CodeGenOptLevel getOptLevel() const
virtual void addOptimizedRegAlloc()
addOptimizedRegAlloc - Add passes related to register allocation.
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.
void disablePass(AnalysisID PassID)
Allow the target to disable a specific standard pass by default.
AnalysisID addPass(AnalysisID PassID)
Utilities for targets to add passes to the pass manager.
TargetPassConfig(TargetMachine &TM, PassManagerBase &PM)
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM Value Representation.
int getNumOccurrences() const
An efficient, type-erasing, non-owning reference to a callable.
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
An abstract base class for streams implementations that also support a pwrite operation.
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.
@ LOCAL_ADDRESS
Address space for local memory.
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
constexpr StringLiteral BufferFlag("amdgpu.buffer.oob.mode")
constexpr StringLiteral TBufferFlag("amdgpu.tbuffer.oob.mode")
StringRef getSchedStrategy(const Function &F)
bool isFlatGlobalAddrSpace(unsigned AS)
LLVM_READNONE constexpr bool isModuleEntryFunctionCC(CallingConv::ID CC)
GPUKind
GPU kinds supported by the AMDGPU target.
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
LLVM_ABI Triple::SubArchType getSubArch(GPUKind AK)
LLVM_ABI StringRef getArchNameFromSubArch(Triple::SubArchType SubArch)
Returns the canonical GPU name for an AMDGPU subarch, e.g.
LLVM_ABI GPUKind parseArchAMDGCN(StringRef CPU)
LLVM_ABI Triple::SubArchType getMajorSubArch(Triple::SubArchType SubArch)
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
bool match(Val *V, const Pattern &P)
match_deferred< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
auto m_Value()
Match an arbitrary value and ignore it.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
template class LLVM_TEMPLATE_ABI opt< bool >
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
This is an optimization pass for GlobalISel generic memory operations.
ScheduleDAGMILive * createSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
LLVM_ABI FunctionPass * createFlattenCFGPass()
ModulePass * createAMDGPUSwLowerLDSLegacyPass()
std::unique_ptr< ScheduleDAGMutation > createAMDGPUBarrierLatencyDAGMutation(MachineFunction *MF)
LLVM_ABI FunctionPass * createFastRegisterAllocator()
FastRegisterAllocation Pass - This pass register allocates as fast as possible.
LLVM_ABI char & EarlyMachineLICMID
This pass performs loop invariant code motion on machine instructions.
ImmutablePass * createAMDGPUAAWrapperPass()
LLVM_ABI char & PostRAHazardRecognizerID
PostRAHazardRecognizer - This pass runs the post-ra hazard recognizer.
std::function< bool(const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, const Register Reg)> RegAllocFilterFunc
Filter function for register classes during regalloc.
FunctionPass * createAMDGPUSetWavePriorityPass()
LLVM_ABI Pass * createLCSSAPass()
void initializeAMDGPUMarkLastScratchLoadLegacyPass(PassRegistry &)
void initializeAMDGPUInsertDelayAluLegacyPass(PassRegistry &)
void initializeSIOptimizeExecMaskingPreRALegacyPass(PassRegistry &)
char & GCNPreRAOptimizationsID
LLVM_ABI char & GCLoweringID
GCLowering Pass - Used by gc.root to perform its default lowering operations.
void initializeSIInsertHardClausesLegacyPass(PassRegistry &)
FunctionPass * createSIAnnotateControlFlowLegacyPass()
Create the annotation pass.
FunctionPass * createSIModeRegisterPass()
void initializeGCNPreRAOptimizationsLegacyPass(PassRegistry &)
void initializeSILowerWWMCopiesLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
void initializeAMDGPUAAWrapperPassPass(PassRegistry &)
void initializeSIShrinkInstructionsLegacyPass(PassRegistry &)
ModulePass * createAMDGPULowerBufferFatPointersPass()
void initializeR600ClauseMergePassPass(PassRegistry &)
ModulePass * createAMDGPUCtorDtorLoweringLegacyPass()
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
ModuleToFunctionPassAdaptor createModuleToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
void initializeGCNRewritePartialRegUsesLegacyPass(llvm::PassRegistry &)
void initializeAMDGPURewriteUndefForPHILegacyPass(PassRegistry &)
char & GCNRewritePartialRegUsesID
void initializeAMDGPUSwLowerLDSLegacyPass(PassRegistry &)
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
void initializeAMDGPULowerVGPREncodingLegacyPass(PassRegistry &)
char & AMDGPUWaitSGPRHazardsLegacyID
void initializeSILowerSGPRSpillsLegacyPass(PassRegistry &)
LLVM_ABI Pass * createLoadStoreVectorizerPass()
Create a legacy pass manager instance of the LoadStoreVectorizer pass.
std::unique_ptr< ScheduleDAGMutation > createIGroupLPDAGMutation(AMDGPU::SchedulingPhase Phase)
Phase specifes whether or not this is a reentry into the IGroupLPDAGMutation.
void initializeAMDGPUDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createAMDGPURegBankCombiner(bool IsOptNone)
LLVM_ABI FunctionPass * createNaryReassociatePass()
char & AMDGPUReserveWWMRegsLegacyID
void initializeAMDGPUWaitSGPRHazardsLegacyPass(PassRegistry &)
LLVM_ABI char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
char & SIOptimizeExecMaskingLegacyID
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
void initializeAMDGPUNextUseAnalysisLegacyPassPass(PassRegistry &)
void initializeR600ExpandSpecialInstrsPassPass(PassRegistry &)
void initializeR600PacketizerPass(PassRegistry &)
@ O1
Optimize quickly without destroying debuggability.
@ O0
Disable as many optimizations as possible.
std::unique_ptr< ScheduleDAGMutation > createVOPDPairingMutation()
ModulePass * createAMDGPUExportKernelRuntimeHandlesLegacyPass()
ModulePass * createAMDGPUAlwaysInlinePass(bool GlobalOpt=true)
void initializeAMDGPUAsmPrinterPass(PassRegistry &)
void initializeSIFoldOperandsLegacyPass(PassRegistry &)
char & SILoadStoreOptimizerLegacyID
PassManager< LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult & > CGSCCPassManager
The CGSCC pass manager.
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Target & getTheR600Target()
The target for R600 GPUs.
LLVM_ABI char & MachineSchedulerID
MachineScheduler - This pass schedules machine instructions.
LLVM_ABI Pass * createStructurizeCFGPass(bool SkipUniformRegions=false)
When SkipUniformRegions is true the structizer will not structurize regions that only contain uniform...
LLVM_ABI char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
LLVM_ABI Pass * createLICMPass()
char & SIFormMemoryClausesID
void initializeSILoadStoreOptimizerLegacyPass(PassRegistry &)
void initializeAMDGPULowerModuleLDSLegacyPass(PassRegistry &)
AnalysisManager< LazyCallGraph::SCC, LazyCallGraph & > CGSCCAnalysisManager
The CGSCC analysis manager.
void initializeAMDGPUCtorDtorLoweringLegacyPass(PassRegistry &)
LLVM_ABI char & EarlyIfConverterLegacyID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
FunctionPass * createAMDGPUUniformIntrinsicCombineLegacyPass()
void initializeAMDGPURegBankCombinerPass(PassRegistry &)
ThinOrFullLTOPhase
This enumerates the LLVM full LTO or ThinLTO optimization phases.
@ FullLTOPostLink
Full LTO postlink (backend compile) phase.
char & AMDGPUUnifyDivergentExitNodesID
void initializeAMDGPUPrepareAGPRAllocLegacyPass(PassRegistry &)
FunctionPass * createAMDGPUAtomicOptimizerPass(ScanOptions ScanStrategy)
FunctionPass * createAMDGPUPreloadKernArgPrologLegacyPass()
char & SIOptimizeVGPRLiveRangeLegacyID
LLVM_ABI char & ShadowStackGCLoweringID
ShadowStackGCLowering - Implements the custom lowering mechanism used by the shadow stack GC.
void initializeAMDGPURewriteOutArgumentsPass(PassRegistry &)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
void initializeAMDGPUExternalAAWrapperPass(PassRegistry &)
char & SIFoldOperandsLegacyID
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
void initializeAMDGPULowerKernelArgumentsPass(PassRegistry &)
void initializeSIModeRegisterLegacyPass(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.
void initializeAMDGPUPreloadKernelArgumentsLegacyPass(PassRegistry &)
LLVM_ABI ModulePass * createExpandVariadicsPass(ExpandVariadicsMode)
char & SILateBranchLoweringPassID
FunctionToLoopPassAdaptor createFunctionToLoopPassAdaptor(LoopPassT &&Pass, bool UseMemorySSA=false)
A function to deduce a loop pass type and wrap it in the templated adaptor.
LLVM_ABI char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
LLVM_ABI FunctionPass * createSinkingPass()
CGSCCToFunctionPassAdaptor createCGSCCToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false, bool NoRerun=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
void initializeSIMemoryLegalizerLegacyPass(PassRegistry &)
ModulePass * createAMDGPULowerIntrinsicsLegacyPass()
void initializeR600MachineCFGStructurizerPass(PassRegistry &)
CodeGenFileType
These enums are meant to be passed into addPassesToEmitFile to indicate what type of file to emit,...
char & GCNDPPCombineLegacyID
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createStoreClusterDAGMutation(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...
LLVM_ABI FunctionPass * createLoopDataPrefetchPass()
FunctionPass * createAMDGPULowerKernelArgumentsPass()
char & AMDGPUInsertDelayAluID
std::unique_ptr< ScheduleDAGMutation > createAMDGPUMacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createAMDGPUMacroFusionDAGMutation()); to AMDGPUTargetMach...
LLVM_ABI char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
void initializeGCNPreRALongBranchRegLegacyPass(PassRegistry &)
char & SILowerWWMCopiesLegacyID
LLVM_ABI FunctionPass * createUnifyLoopExitsPass()
char & SIOptimizeExecMaskingPreRAID
LLVM_ABI FunctionPass * createFixIrreduciblePass()
void initializeR600EmitClauseMarkersPass(PassRegistry &)
LLVM_ABI char & FuncletLayoutID
This pass lays out funclets contiguously.
LLVM_ABI char & DetectDeadLanesID
This pass adds dead/undef flags after analyzing subregister lanes.
void initializeAMDGPULowerExecSyncLegacyPass(PassRegistry &)
void initializeAMDGPUPostLegalizerCombinerPass(PassRegistry &)
ScheduleDAGInstrs * createGCNNoopPostMachineScheduler(MachineSchedContext *C)
void initializeAMDGPUExportKernelRuntimeHandlesLegacyPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
void initializeSIInsertWaitcntsLegacyPass(PassRegistry &)
ModulePass * createAMDGPUPreloadKernelArgumentsLegacyPass(const TargetMachine *)
ModulePass * createAMDGPUPrintfRuntimeBinding()
LLVM_ABI char & StackSlotColoringID
StackSlotColoring - This pass performs stack slot coloring.
LLVM_ABI Pass * createAlwaysInlinerLegacyPass(bool InsertLifetime=true)
Create a legacy pass manager instance of a pass to inline and remove functions marked as "always_inli...
void initializeR600ControlFlowFinalizerPass(PassRegistry &)
void initializeAMDGPUImageIntrinsicOptimizerPass(PassRegistry &)
void initializeSILateBranchLoweringLegacyPass(PassRegistry &)
void initializeSILowerControlFlowLegacyPass(PassRegistry &)
void initializeSIFormMemoryClausesLegacyPass(PassRegistry &)
char & SIPreAllocateWWMRegsLegacyID
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
ModulePass * createAMDGPULowerModuleLDSLegacyPass(const AMDGPUTargetMachine *TM=nullptr)
void initializeAMDGPUPreLegalizerCombinerPass(PassRegistry &)
FunctionPass * createAMDGPUPromoteAlloca()
LLVM_ABI FunctionPass * createSeparateConstOffsetFromGEPPass(bool LowerGEP=false)
void initializeAMDGPUReserveWWMRegsLegacyPass(PassRegistry &)
char & SIPreEmitPeepholeID
char & SIPostRABundlerLegacyID
ModulePass * createAMDGPURemoveIncompatibleFunctionsPass(const TargetMachine *)
void initializeGCNRegPressurePrinterPass(PassRegistry &)
void initializeSILowerI1CopiesLegacyPass(PassRegistry &)
LLVM_ABI ImmutablePass * createExternalAAWrapperPass(std::function< void(Pass &, Function &, AAResults &)> Callback, bool RunEarly=false)
A wrapper pass around a callback which can be used to populate the AAResults in the AAResultsWrapperP...
char & SILowerSGPRSpillsLegacyID
LLVM_ABI FunctionPass * createBasicRegisterAllocator()
BasicRegisterAllocation Pass - This pass implements a degenerate global register allocator using the ...
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
char & SILowerControlFlowLegacyID
ModulePass * createR600OpenCLImageTypeLoweringPass()
FunctionPass * createAMDGPUCodeGenPreparePass()
void initializeSIAnnotateControlFlowLegacyPass(PassRegistry &)
FunctionPass * createAMDGPUISelDag(TargetMachine &TM, CodeGenOptLevel OptLevel)
This pass converts a legalized DAG into a AMDGPU-specific.
void initializeGCNCreateVOPDLegacyPass(PassRegistry &)
void initializeAMDGPUUniformIntrinsicCombineLegacyPass(PassRegistry &)
ScheduleDAGInstrs * createGCNCoExecMachineScheduler(MachineSchedContext *C)
void initializeSIPreAllocateWWMRegsLegacyPass(PassRegistry &)
void initializeSIFixVGPRCopiesLegacyPass(PassRegistry &)
Target & getTheGCNTarget()
The target for GCN GPUs.
void initializeSIFixSGPRCopiesLegacyPass(PassRegistry &)
void initializeAMDGPUAtomicOptimizerPass(PassRegistry &)
void initializeAMDGPULowerIntrinsicsLegacyPass(PassRegistry &)
LLVM_ABI char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
LLVM_ABI FunctionPass * createGVNPass()
void initializeAMDGPURewriteAGPRCopyMFMALegacyPass(PassRegistry &)
void initializeAMDGPUNextUseAnalysisPrinterLegacyPassPass(PassRegistry &)
void initializeSIPostRABundlerLegacyPass(PassRegistry &)
FunctionPass * createAMDGPURegBankSelectPass()
FunctionPass * createAMDGPURegBankLegalizePass()
LLVM_ABI char & MachineCSELegacyID
MachineCSE - This pass performs global CSE on machine instructions.
LLVM_ABI 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...
PassManager< Function > FunctionPassManager
Convenience typedef for a pass manager over functions.
LLVM_ABI char & LiveVariablesID
LiveVariables pass - This pass computes the set of blocks in which each variable is life and sets mac...
void initializeAMDGPUCodeGenPreparePass(PassRegistry &)
FunctionPass * createAMDGPURewriteUndefForPHILegacyPass()
void initializeSIOptimizeExecMaskingLegacyPass(PassRegistry &)
void call_once(once_flag &flag, Function &&F, Args &&... ArgList)
Execute the function specified as a parameter once.
FunctionPass * createSILowerI1CopiesLegacyPass()
FunctionPass * createAMDGPUPostLegalizeCombiner(bool IsOptNone)
void initializeAMDGPULowerKernelAttributesPass(PassRegistry &)
char & SIInsertHardClausesID
char & SIFixSGPRCopiesLegacyID
void initializeGCNDPPCombineLegacyPass(PassRegistry &)
char & SIPeepholeSDWALegacyID
LLVM_ABI char & VirtRegRewriterID
VirtRegRewriter pass.
void initializeGCNNSAReassignLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createLowerSwitchPass()
void initializeAMDGPUPreloadKernArgPrologLegacyPass(PassRegistry &)
Target & getTheGCNLegacyTarget()
The target for GCN GPUs, registered under the legacy "amdgcn" architecture name for use with -march.
LLVM_ABI FunctionPass * createVirtRegRewriter(bool ClearVirtRegs=true)
void initializeR600VectorRegMergerPass(PassRegistry &)
char & AMDGPURewriteAGPRCopyMFMALegacyID
ModulePass * createAMDGPULowerExecSyncLegacyPass()
char & AMDGPULowerVGPREncodingLegacyID
FunctionPass * createAMDGPUGlobalISelDivergenceLoweringPass()
FunctionPass * createSIMemoryLegalizerPass()
void initializeAMDGPULateCodeGenPrepareLegacyPass(PassRegistry &)
void initializeSIOptimizeVGPRLiveRangeLegacyPass(PassRegistry &)
void initializeSIPeepholeSDWALegacyPass(PassRegistry &)
void initializeAMDGPURegBankLegalizePass(PassRegistry &)
LLVM_ABI char & TwoAddressInstructionPassID
TwoAddressInstruction - This pass reduces two-address instructions to use two operands.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
FunctionPass * createAMDGPUPreLegalizeCombiner(bool IsOptNone)
void initializeAMDGPURegBankSelectPass(PassRegistry &)
FunctionPass * createAMDGPULateCodeGenPrepareLegacyPass()
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
void initializeAMDGPUGlobalISelDivergenceLoweringLegacyPass(PassRegistry &)
MCRegisterInfo * createGCNMCRegisterInfo(AMDGPUDwarfFlavour DwarfFlavour)
LLVM_ABI FunctionPass * createStraightLineStrengthReducePass()
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
FunctionPass * createAMDGPUImageIntrinsicOptimizerPass(const TargetMachine *)
void initializeAMDGPULowerBufferFatPointersPass(PassRegistry &)
void initializeAMDGPUUnifyDivergentExitNodesLegacyPass(PassRegistry &)
FunctionPass * createSIInsertWaitcntsPass()
FunctionPass * createAMDGPUAnnotateUniformValuesLegacy()
LLVM_ABI FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
void initializeSIWholeQuadModeLegacyPass(PassRegistry &)
LLVM_ABI char & PHIEliminationID
PHIElimination - This pass eliminates machine instruction PHI nodes by inserting copy instructions.
LLVM_ABI llvm::cl::opt< bool > NoKernelInfoEndLTO
LLVM_ABI bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg, StringRef Src, SMDiagnostic &Error)
void initializeAMDGPUResourceUsageAnalysisWrapperPassPass(PassRegistry &)
FunctionPass * createSIShrinkInstructionsLegacyPass()
char & AMDGPUPrepareAGPRAllocLegacyID
char & AMDGPUMarkLastScratchLoadID
LLVM_ABI char & RenameIndependentSubregsID
This pass detects subregister lanes in a virtual register that are used independently of other lanes ...
void initializeAMDGPUAnnotateUniformValuesLegacyPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createAMDGPUExportClusteringDAGMutation()
void initializeAMDGPUPrintfRuntimeBindingPass(PassRegistry &)
void initializeAMDGPUPromoteAllocaPass(PassRegistry &)
void initializeAMDGPURemoveIncompatibleFunctionsLegacyPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createAMDGPUHazardLatencyDAGMutation(MachineFunction *MF)
void initializeAMDGPUAlwaysInlinePass(PassRegistry &)
LLVM_ABI char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
void initializeSIPreEmitPeepholeLegacyPass(PassRegistry &)
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
char & AMDGPUPerfHintAnalysisLegacyID
char & GCNPreRALongBranchRegID
MCRegisterClass TargetRegisterClass
LLVM_ABI CGPassBuilderOption getCGPassBuilderOption()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
void initializeAMDGPUPromoteKernelArgumentsPass(PassRegistry &)
ArgDescriptor PrivateSegmentBuffer
ArgDescriptor WorkGroupIDY
ArgDescriptor WorkGroupIDZ
ArgDescriptor PrivateSegmentSize
ArgDescriptor ImplicitArgPtr
ArgDescriptor PrivateSegmentWaveByteOffset
ArgDescriptor WorkGroupInfo
ArgDescriptor WorkItemIDZ
ArgDescriptor WorkItemIDY
ArgDescriptor LDSKernelId
ArgDescriptor KernargSegmentPtr
ArgDescriptor WorkItemIDX
ArgDescriptor FlatScratchInit
ArgDescriptor DispatchPtr
ArgDescriptor ImplicitBufferPtr
Register FirstKernArgPreloadReg
ArgDescriptor WorkGroupIDX
static ArgDescriptor createStack(unsigned Offset, unsigned Mask=~0u)
static ArgDescriptor createArg(const ArgDescriptor &Arg, unsigned Mask)
static ArgDescriptor createRegister(Register Reg, unsigned Mask=~0u)
DenormalModeKind Input
Denormal treatment kind for floating point instruction inputs in the default floating-point environme...
@ PreserveSign
The sign of a flushed-to-zero number is preserved in the sign of 0.
@ IEEE
IEEE-754 denormal numbers preserved.
DenormalModeKind Output
Denormal flushing mode for floating point instruction results in the default floating point environme...
A simple and fast domtree-based CSE pass.
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.
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
StringMap< VRegInfo * > VRegInfosNamed
DenseMap< Register, VRegInfo * > VRegInfos
RegisterTargetMachine - Helper template for registering a target machine implementation,...
bool DX10Clamp
Used by the vector ALU to force DX10-style treatment of NaNs: when set, clamp NaN to zero; otherwise,...
DenormalMode FP64FP16Denormals
If this is set, neither input or output denormals are flushed for both f64 and f16/v2f16 instructions...
bool IEEE
Floating point opcodes that support exception flag gathering quiet and propagate signaling NaN inputs...
DenormalMode FP32Denormals
If this is set, neither input or output denormals are flushed for most f32 instructions.
The llvm::once_flag structure.
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.
StringValue SGPRForEXECCopy
SmallVector< StringValue > WWMReservedRegs
StringValue FrameOffsetReg
StringValue LongBranchReservedReg
unsigned NumKernargPreloadSGPRs
StringValue VGPRForAGPRCopy
std::optional< SIArgumentInfo > ArgInfo
SmallVector< StringValue, 2 > SpillPhysVGPRS
StringValue ScratchRSrcReg
StringValue StackPtrOffsetReg
bool FP64FP16OutputDenormals
bool FP64FP16InputDenormals
A wrapper around std::string which contains a source range that's being set during parsing.