LLVM 19.0.0git
AMDGPUTargetMachine.cpp
Go to the documentation of this file.
1//===-- AMDGPUTargetMachine.cpp - TargetMachine for hw codegen targets-----===//
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/// \file
10/// The AMDGPU target machine contains all of the hardware specific
11/// information needed to emit code for SI+ GPUs.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AMDGPUTargetMachine.h"
16#include "AMDGPU.h"
17#include "AMDGPUAliasAnalysis.h"
21#include "AMDGPUIGroupLP.h"
22#include "AMDGPUISelDAGToDAG.h"
23#include "AMDGPUMacroFusion.h"
24#include "AMDGPURegBankSelect.h"
25#include "AMDGPUSplitModule.h"
30#include "GCNSchedStrategy.h"
31#include "GCNVOPDUtils.h"
32#include "R600.h"
34#include "R600TargetMachine.h"
36#include "SIMachineScheduler.h"
48#include "llvm/CodeGen/Passes.h"
51#include "llvm/IR/IntrinsicsAMDGPU.h"
52#include "llvm/IR/PassManager.h"
58#include "llvm/Transforms/IPO.h"
69#include <optional>
70
71using namespace llvm;
72using namespace llvm::PatternMatch;
73
74namespace {
75class SGPRRegisterRegAlloc : public RegisterRegAllocBase<SGPRRegisterRegAlloc> {
76public:
77 SGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
79};
80
81class VGPRRegisterRegAlloc : public RegisterRegAllocBase<VGPRRegisterRegAlloc> {
82public:
83 VGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
85};
86
87static bool onlyAllocateSGPRs(const TargetRegisterInfo &TRI,
88 const TargetRegisterClass &RC) {
89 return static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(&RC);
90}
91
92static bool onlyAllocateVGPRs(const TargetRegisterInfo &TRI,
93 const TargetRegisterClass &RC) {
94 return !static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(&RC);
95}
96
97
98/// -{sgpr|vgpr}-regalloc=... command line option.
99static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
100
101/// A dummy default pass factory indicates whether the register allocator is
102/// overridden on the command line.
103static llvm::once_flag InitializeDefaultSGPRRegisterAllocatorFlag;
104static llvm::once_flag InitializeDefaultVGPRRegisterAllocatorFlag;
105
106static SGPRRegisterRegAlloc
107defaultSGPRRegAlloc("default",
108 "pick SGPR register allocator based on -O option",
110
111static cl::opt<SGPRRegisterRegAlloc::FunctionPassCtor, false,
113SGPRRegAlloc("sgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
114 cl::desc("Register allocator to use for SGPRs"));
115
116static cl::opt<VGPRRegisterRegAlloc::FunctionPassCtor, false,
118VGPRRegAlloc("vgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
119 cl::desc("Register allocator to use for VGPRs"));
120
121
122static void initializeDefaultSGPRRegisterAllocatorOnce() {
123 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
124
125 if (!Ctor) {
126 Ctor = SGPRRegAlloc;
127 SGPRRegisterRegAlloc::setDefault(SGPRRegAlloc);
128 }
129}
130
131static void initializeDefaultVGPRRegisterAllocatorOnce() {
132 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
133
134 if (!Ctor) {
135 Ctor = VGPRRegAlloc;
136 VGPRRegisterRegAlloc::setDefault(VGPRRegAlloc);
137 }
138}
139
140static FunctionPass *createBasicSGPRRegisterAllocator() {
141 return createBasicRegisterAllocator(onlyAllocateSGPRs);
142}
143
144static FunctionPass *createGreedySGPRRegisterAllocator() {
145 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
146}
147
148static FunctionPass *createFastSGPRRegisterAllocator() {
149 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
150}
151
152static FunctionPass *createBasicVGPRRegisterAllocator() {
153 return createBasicRegisterAllocator(onlyAllocateVGPRs);
154}
155
156static FunctionPass *createGreedyVGPRRegisterAllocator() {
157 return createGreedyRegisterAllocator(onlyAllocateVGPRs);
158}
159
160static FunctionPass *createFastVGPRRegisterAllocator() {
161 return createFastRegisterAllocator(onlyAllocateVGPRs, true);
162}
163
164static SGPRRegisterRegAlloc basicRegAllocSGPR(
165 "basic", "basic register allocator", createBasicSGPRRegisterAllocator);
166static SGPRRegisterRegAlloc greedyRegAllocSGPR(
167 "greedy", "greedy register allocator", createGreedySGPRRegisterAllocator);
168
169static SGPRRegisterRegAlloc fastRegAllocSGPR(
170 "fast", "fast register allocator", createFastSGPRRegisterAllocator);
171
172
173static VGPRRegisterRegAlloc basicRegAllocVGPR(
174 "basic", "basic register allocator", createBasicVGPRRegisterAllocator);
175static VGPRRegisterRegAlloc greedyRegAllocVGPR(
176 "greedy", "greedy register allocator", createGreedyVGPRRegisterAllocator);
177
178static VGPRRegisterRegAlloc fastRegAllocVGPR(
179 "fast", "fast register allocator", createFastVGPRRegisterAllocator);
180}
181
182static cl::opt<bool>
184 cl::desc("Run early if-conversion"),
185 cl::init(false));
186
187static cl::opt<bool>
188OptExecMaskPreRA("amdgpu-opt-exec-mask-pre-ra", cl::Hidden,
189 cl::desc("Run pre-RA exec mask optimizations"),
190 cl::init(true));
191
192static cl::opt<bool>
193 LowerCtorDtor("amdgpu-lower-global-ctor-dtor",
194 cl::desc("Lower GPU ctor / dtors to globals on the device."),
195 cl::init(true), cl::Hidden);
196
197// Option to disable vectorizer for tests.
199 "amdgpu-load-store-vectorizer",
200 cl::desc("Enable load store vectorizer"),
201 cl::init(true),
202 cl::Hidden);
203
204// Option to control global loads scalarization
206 "amdgpu-scalarize-global-loads",
207 cl::desc("Enable global load scalarization"),
208 cl::init(true),
209 cl::Hidden);
210
211// Option to run internalize pass.
213 "amdgpu-internalize-symbols",
214 cl::desc("Enable elimination of non-kernel functions and unused globals"),
215 cl::init(false),
216 cl::Hidden);
217
218// Option to inline all early.
220 "amdgpu-early-inline-all",
221 cl::desc("Inline all functions early"),
222 cl::init(false),
223 cl::Hidden);
224
226 "amdgpu-enable-remove-incompatible-functions", cl::Hidden,
227 cl::desc("Enable removal of functions when they"
228 "use features not supported by the target GPU"),
229 cl::init(true));
230
232 "amdgpu-sdwa-peephole",
233 cl::desc("Enable SDWA peepholer"),
234 cl::init(true));
235
237 "amdgpu-dpp-combine",
238 cl::desc("Enable DPP combiner"),
239 cl::init(true));
240
241// Enable address space based alias analysis
243 cl::desc("Enable AMDGPU Alias Analysis"),
244 cl::init(true));
245
246// Option to run late CFG structurizer
248 "amdgpu-late-structurize",
249 cl::desc("Enable late CFG structurization"),
251 cl::Hidden);
252
253// Disable structurizer-based control-flow lowering in order to test convergence
254// control tokens. This should eventually be replaced by the wave-transform.
256 "amdgpu-disable-structurizer",
257 cl::desc("Disable structurizer for experiments; produces unusable code"),
259
260// Enable lib calls simplifications
262 "amdgpu-simplify-libcall",
263 cl::desc("Enable amdgpu library simplifications"),
264 cl::init(true),
265 cl::Hidden);
266
268 "amdgpu-ir-lower-kernel-arguments",
269 cl::desc("Lower kernel argument loads in IR pass"),
270 cl::init(true),
271 cl::Hidden);
272
274 "amdgpu-reassign-regs",
275 cl::desc("Enable register reassign optimizations on gfx10+"),
276 cl::init(true),
277 cl::Hidden);
278
280 "amdgpu-opt-vgpr-liverange",
281 cl::desc("Enable VGPR liverange optimizations for if-else structure"),
282 cl::init(true), cl::Hidden);
283
285 "amdgpu-atomic-optimizer-strategy",
286 cl::desc("Select DPP or Iterative strategy for scan"),
287 cl::init(ScanOptions::Iterative),
289 clEnumValN(ScanOptions::DPP, "DPP", "Use DPP operations for scan"),
290 clEnumValN(ScanOptions::Iterative, "Iterative",
291 "Use Iterative approach for scan"),
292 clEnumValN(ScanOptions::None, "None", "Disable atomic optimizer")));
293
294// Enable Mode register optimization
296 "amdgpu-mode-register",
297 cl::desc("Enable mode register pass"),
298 cl::init(true),
299 cl::Hidden);
300
301// Enable GFX11.5+ s_singleuse_vdst insertion
302static cl::opt<bool>
303 EnableInsertSingleUseVDST("amdgpu-enable-single-use-vdst",
304 cl::desc("Enable s_singleuse_vdst insertion"),
305 cl::init(false), cl::Hidden);
306
307// Enable GFX11+ s_delay_alu insertion
308static cl::opt<bool>
309 EnableInsertDelayAlu("amdgpu-enable-delay-alu",
310 cl::desc("Enable s_delay_alu insertion"),
311 cl::init(true), cl::Hidden);
312
313// Enable GFX11+ VOPD
314static cl::opt<bool>
315 EnableVOPD("amdgpu-enable-vopd",
316 cl::desc("Enable VOPD, dual issue of VALU in wave32"),
317 cl::init(true), cl::Hidden);
318
319// Option is used in lit tests to prevent deadcoding of patterns inspected.
320static cl::opt<bool>
321EnableDCEInRA("amdgpu-dce-in-ra",
322 cl::init(true), cl::Hidden,
323 cl::desc("Enable machine DCE inside regalloc"));
324
325static cl::opt<bool> EnableSetWavePriority("amdgpu-set-wave-priority",
326 cl::desc("Adjust wave priority"),
327 cl::init(false), cl::Hidden);
328
330 "amdgpu-scalar-ir-passes",
331 cl::desc("Enable scalar IR passes"),
332 cl::init(true),
333 cl::Hidden);
334
336 "amdgpu-enable-structurizer-workarounds",
337 cl::desc("Enable workarounds for the StructurizeCFG pass"), cl::init(true),
338 cl::Hidden);
339
341 "amdgpu-enable-lower-module-lds", cl::desc("Enable lower module lds pass"),
343 cl::Hidden);
344
346 "amdgpu-enable-pre-ra-optimizations",
347 cl::desc("Enable Pre-RA optimizations pass"), cl::init(true),
348 cl::Hidden);
349
351 "amdgpu-enable-promote-kernel-arguments",
352 cl::desc("Enable promotion of flat kernel pointer arguments to global"),
353 cl::Hidden, cl::init(true));
354
356 "amdgpu-enable-image-intrinsic-optimizer",
357 cl::desc("Enable image intrinsic optimizer pass"), cl::init(true),
358 cl::Hidden);
359
360static cl::opt<bool>
361 EnableLoopPrefetch("amdgpu-loop-prefetch",
362 cl::desc("Enable loop data prefetch on AMDGPU"),
363 cl::Hidden, cl::init(false));
364
366 "amdgpu-enable-max-ilp-scheduling-strategy",
367 cl::desc("Enable scheduling strategy to maximize ILP for a single wave."),
368 cl::Hidden, cl::init(false));
369
371 "amdgpu-enable-rewrite-partial-reg-uses",
372 cl::desc("Enable rewrite partial reg uses pass"), cl::init(true),
373 cl::Hidden);
374
376 "amdgpu-enable-hipstdpar",
377 cl::desc("Enable HIP Standard Parallelism Offload support"), cl::init(false),
378 cl::Hidden);
379
381 // Register the target
384
459}
460
461static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
462 return std::make_unique<AMDGPUTargetObjectFile>();
463}
464
466 return new SIScheduleDAGMI(C);
467}
468
469static ScheduleDAGInstrs *
471 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
472 ScheduleDAGMILive *DAG =
473 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxOccupancySchedStrategy>(C));
474 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
475 if (ST.shouldClusterStores())
476 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
477 DAG->addMutation(createIGroupLPDAGMutation(AMDGPU::SchedulingPhase::Initial));
478 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
479 DAG->addMutation(createAMDGPUExportClusteringDAGMutation());
480 return DAG;
481}
482
483static ScheduleDAGInstrs *
485 ScheduleDAGMILive *DAG =
486 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxILPSchedStrategy>(C));
487 DAG->addMutation(createIGroupLPDAGMutation(AMDGPU::SchedulingPhase::Initial));
488 return DAG;
489}
490
491static ScheduleDAGInstrs *
493 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
494 auto DAG = new GCNIterativeScheduler(C,
496 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
497 if (ST.shouldClusterStores())
498 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
499 return DAG;
500}
501
503 return new GCNIterativeScheduler(C,
505}
506
507static ScheduleDAGInstrs *
509 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
510 auto DAG = new GCNIterativeScheduler(C,
512 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
513 if (ST.shouldClusterStores())
514 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
515 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
516 return DAG;
517}
518
520SISchedRegistry("si", "Run SI's custom scheduler",
522
525 "Run GCN scheduler to maximize occupancy",
527
529 GCNMaxILPSchedRegistry("gcn-max-ilp", "Run GCN scheduler to maximize ilp",
531
533 "gcn-iterative-max-occupancy-experimental",
534 "Run GCN scheduler to maximize occupancy (experimental)",
536
538 "gcn-iterative-minreg",
539 "Run GCN iterative scheduler for minimal register usage (experimental)",
541
543 "gcn-iterative-ilp",
544 "Run GCN iterative scheduler for ILP scheduling (experimental)",
546
548 if (TT.getArch() == Triple::r600) {
549 // 32-bit pointers.
550 return "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128"
551 "-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1";
552 }
553
554 // 32-bit private, local, and region pointers. 64-bit global, constant and
555 // flat. 160-bit non-integral fat buffer pointers that include a 128-bit
556 // buffer descriptor and a 32-bit offset, which are indexed by 32-bit values
557 // (address space 7), and 128-bit non-integral buffer resourcees (address
558 // space 8) which cannot be non-trivilally accessed by LLVM memory operations
559 // like getelementptr.
560 return "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32"
561 "-p7:160:256:256:32-p8:128:128-p9:192:256:256:32-i64:64-v16:16-v24:32-"
562 "v32:32-v48:64-v96:"
563 "128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-"
564 "G1-ni:7:8:9";
565}
566
569 if (!GPU.empty())
570 return GPU;
571
572 // Need to default to a target with flat support for HSA.
573 if (TT.getArch() == Triple::amdgcn)
574 return TT.getOS() == Triple::AMDHSA ? "generic-hsa" : "generic";
575
576 return "r600";
577}
578
579static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
580 // The AMDGPU toolchain only supports generating shared objects, so we
581 // must always use PIC.
582 return Reloc::PIC_;
583}
584
586 StringRef CPU, StringRef FS,
587 const TargetOptions &Options,
588 std::optional<Reloc::Model> RM,
589 std::optional<CodeModel::Model> CM,
590 CodeGenOptLevel OptLevel)
593 getEffectiveCodeModel(CM, CodeModel::Small), OptLevel),
594 TLOF(createTLOF(getTargetTriple())) {
595 initAsmInfo();
596 if (TT.getArch() == Triple::amdgcn) {
597 if (getMCSubtargetInfo()->checkFeatures("+wavefrontsize64"))
599 else if (getMCSubtargetInfo()->checkFeatures("+wavefrontsize32"))
601 }
602}
603
608
610
612 Attribute GPUAttr = F.getFnAttribute("target-cpu");
613 return GPUAttr.isValid() ? GPUAttr.getValueAsString() : getTargetCPU();
614}
615
617 Attribute FSAttr = F.getFnAttribute("target-features");
618
619 return FSAttr.isValid() ? FSAttr.getValueAsString()
621}
622
623/// Predicate for Internalize pass.
624static bool mustPreserveGV(const GlobalValue &GV) {
625 if (const Function *F = dyn_cast<Function>(&GV))
626 return F->isDeclaration() || F->getName().starts_with("__asan_") ||
627 F->getName().starts_with("__sanitizer_") ||
628 AMDGPU::isEntryFunctionCC(F->getCallingConv());
629
631 return !GV.use_empty();
632}
633
636}
637
640 if (Params.empty())
642 Params.consume_front("strategy=");
643 auto Result = StringSwitch<std::optional<ScanOptions>>(Params)
644 .Case("dpp", ScanOptions::DPP)
645 .Cases("iterative", "", ScanOptions::Iterative)
646 .Case("none", ScanOptions::None)
647 .Default(std::nullopt);
648 if (Result)
649 return *Result;
650 return make_error<StringError>("invalid parameter", inconvertibleErrorCode());
651}
652
655 CodeGenFileType FileType, const CGPassBuilderOption &Opts,
657 AMDGPUCodeGenPassBuilder CGPB(*this, Opts, PIC);
658 return CGPB.buildPipeline(MPM, Out, DwoOut, FileType);
659}
660
662
663#define GET_PASS_REGISTRY "AMDGPUPassRegistry.def"
665
667 [](ModulePassManager &PM, OptimizationLevel Level) {
669 PM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
670 if (EnableHipStdPar)
672 });
673
675 [](ModulePassManager &PM, OptimizationLevel Level) {
677
678 if (Level == OptimizationLevel::O0)
679 return;
680
682
683 if (InternalizeSymbols) {
686 }
687
690 });
691
693 [](FunctionPassManager &FPM, OptimizationLevel Level) {
694 if (Level == OptimizationLevel::O0)
695 return;
696
700 });
701
703 [this](CGSCCPassManager &PM, OptimizationLevel Level) {
704 if (Level == OptimizationLevel::O0)
705 return;
706
708
709 // Add promote kernel arguments pass to the opt pipeline right before
710 // infer address spaces which is needed to do actual address space
711 // rewriting.
712 if (Level.getSpeedupLevel() > OptimizationLevel::O1.getSpeedupLevel() &&
715
716 // Add infer address spaces pass to the opt pipeline after inlining
717 // but before SROA to increase SROA opportunities.
719
720 // This should run after inlining to have any chance of doing
721 // anything, and before other cleanup optimizations.
723
724 if (Level != OptimizationLevel::O0) {
725 // Promote alloca to vector before SROA and loop unroll. If we
726 // manage to eliminate allocas before unroll we may choose to unroll
727 // less.
729 }
730
731 PM.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
732 });
733
735 [this](ModulePassManager &PM, OptimizationLevel Level) {
736 // We want to support the -lto-partitions=N option as "best effort".
737 // For that, we need to lower LDS earlier in the pipeline before the
738 // module is partitioned for codegen.
741 });
742
744 [](StringRef FilterName) -> RegClassFilterFunc {
745 if (FilterName == "sgpr")
746 return onlyAllocateSGPRs;
747 if (FilterName == "vgpr")
748 return onlyAllocateVGPRs;
749 return nullptr;
750 });
751}
752
753int64_t AMDGPUTargetMachine::getNullPointerValue(unsigned AddrSpace) {
754 return (AddrSpace == AMDGPUAS::LOCAL_ADDRESS ||
755 AddrSpace == AMDGPUAS::PRIVATE_ADDRESS ||
756 AddrSpace == AMDGPUAS::REGION_ADDRESS)
757 ? -1
758 : 0;
759}
760
762 unsigned DestAS) const {
763 return AMDGPU::isFlatGlobalAddrSpace(SrcAS) &&
765}
766
768 const auto *LD = dyn_cast<LoadInst>(V);
769 if (!LD)
771
772 // It must be a generic pointer loaded.
773 assert(V->getType()->isPointerTy() &&
774 V->getType()->getPointerAddressSpace() == AMDGPUAS::FLAT_ADDRESS);
775
776 const auto *Ptr = LD->getPointerOperand();
777 if (Ptr->getType()->getPointerAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS)
779 // For a generic pointer loaded from the constant memory, it could be assumed
780 // as a global pointer since the constant memory is only populated on the
781 // host side. As implied by the offload programming model, only global
782 // pointers could be referenced on the host side.
784}
785
786std::pair<const Value *, unsigned>
788 if (auto *II = dyn_cast<IntrinsicInst>(V)) {
789 switch (II->getIntrinsicID()) {
790 case Intrinsic::amdgcn_is_shared:
791 return std::pair(II->getArgOperand(0), AMDGPUAS::LOCAL_ADDRESS);
792 case Intrinsic::amdgcn_is_private:
793 return std::pair(II->getArgOperand(0), AMDGPUAS::PRIVATE_ADDRESS);
794 default:
795 break;
796 }
797 return std::pair(nullptr, -1);
798 }
799 // Check the global pointer predication based on
800 // (!is_share(p) && !is_private(p)). Note that logic 'and' is commutative and
801 // the order of 'is_shared' and 'is_private' is not significant.
802 Value *Ptr;
803 if (match(
804 const_cast<Value *>(V),
805 m_c_And(m_Not(m_Intrinsic<Intrinsic::amdgcn_is_shared>(m_Value(Ptr))),
806 m_Not(m_Intrinsic<Intrinsic::amdgcn_is_private>(
807 m_Deferred(Ptr))))))
808 return std::pair(Ptr, AMDGPUAS::GLOBAL_ADDRESS);
809
810 return std::pair(nullptr, -1);
811}
812
813unsigned
815 switch (Kind) {
825 }
827}
828
830 Module &M, unsigned NumParts,
831 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback) {
832 // FIXME(?): Would be better to use an already existing Analysis/PassManager,
833 // but all current users of this API don't have one ready and would need to
834 // create one anyway. Let's hide the boilerplate for now to keep it simple.
835
840
841 PassBuilder PB(this);
845
847 MPM.addPass(AMDGPUSplitModulePass(NumParts, ModuleCallback));
848 MPM.run(M, MAM);
849 return true;
850}
851
852//===----------------------------------------------------------------------===//
853// GCN Target Machine (SI+)
854//===----------------------------------------------------------------------===//
855
857 StringRef CPU, StringRef FS,
858 const TargetOptions &Options,
859 std::optional<Reloc::Model> RM,
860 std::optional<CodeModel::Model> CM,
861 CodeGenOptLevel OL, bool JIT)
862 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
863
866 StringRef GPU = getGPUName(F);
868
869 SmallString<128> SubtargetKey(GPU);
870 SubtargetKey.append(FS);
871
872 auto &I = SubtargetMap[SubtargetKey];
873 if (!I) {
874 // This needs to be done before we create a new subtarget since any
875 // creation will depend on the TM and the code generation flags on the
876 // function that reside in TargetOptions.
878 I = std::make_unique<GCNSubtarget>(TargetTriple, GPU, FS, *this);
879 }
880
881 I->setScalarizeGlobalBehavior(ScalarizeGlobal);
882
883 return I.get();
884}
885
888 return TargetTransformInfo(GCNTTIImpl(this, F));
889}
890
891//===----------------------------------------------------------------------===//
892// AMDGPU Pass Setup
893//===----------------------------------------------------------------------===//
894
895std::unique_ptr<CSEConfigBase> llvm::AMDGPUPassConfig::getCSEConfig() const {
897}
898
899namespace {
900
901class GCNPassConfig final : public AMDGPUPassConfig {
902public:
903 GCNPassConfig(LLVMTargetMachine &TM, PassManagerBase &PM)
904 : AMDGPUPassConfig(TM, PM) {
905 // It is necessary to know the register usage of the entire call graph. We
906 // allow calls without EnableAMDGPUFunctionCalls if they are marked
907 // noinline, so this is always required.
908 setRequiresCodeGenSCCOrder(true);
909 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
910 }
911
912 GCNTargetMachine &getGCNTargetMachine() const {
913 return getTM<GCNTargetMachine>();
914 }
915
917 createMachineScheduler(MachineSchedContext *C) const override;
918
920 createPostMachineScheduler(MachineSchedContext *C) const override {
922 C, std::make_unique<PostGenericScheduler>(C),
923 /*RemoveKillFlags=*/true);
924 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
926 if (ST.shouldClusterStores())
928 DAG->addMutation(ST.createFillMFMAShadowMutation(DAG->TII));
929 DAG->addMutation(
930 createIGroupLPDAGMutation(AMDGPU::SchedulingPhase::PostRA));
931 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less))
933 return DAG;
934 }
935
936 bool addPreISel() override;
937 void addMachineSSAOptimization() override;
938 bool addILPOpts() override;
939 bool addInstSelector() override;
940 bool addIRTranslator() override;
941 void addPreLegalizeMachineIR() override;
942 bool addLegalizeMachineIR() override;
943 void addPreRegBankSelect() override;
944 bool addRegBankSelect() override;
945 void addPreGlobalInstructionSelect() override;
946 bool addGlobalInstructionSelect() override;
947 void addFastRegAlloc() override;
948 void addOptimizedRegAlloc() override;
949
950 FunctionPass *createSGPRAllocPass(bool Optimized);
951 FunctionPass *createVGPRAllocPass(bool Optimized);
952 FunctionPass *createRegAllocPass(bool Optimized) override;
953
954 bool addRegAssignAndRewriteFast() override;
955 bool addRegAssignAndRewriteOptimized() override;
956
957 void addPreRegAlloc() override;
958 bool addPreRewrite() override;
959 void addPostRegAlloc() override;
960 void addPreSched2() override;
961 void addPreEmitPass() override;
962};
963
964} // end anonymous namespace
965
967 : TargetPassConfig(TM, PM) {
968 // Exceptions and StackMaps are not supported, so these passes will never do
969 // anything.
972 // Garbage collection is not supported.
975}
976
980 else
982}
983
988 // ReassociateGEPs exposes more opportunities for SLSR. See
989 // the example in reassociate-geps-and-slsr.ll.
991 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
992 // EarlyCSE can reuse.
994 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
996 // NaryReassociate on GEPs creates redundant common expressions, so run
997 // EarlyCSE after it.
999}
1000
1003
1007
1008 // There is no reason to run these.
1012
1014 if (LowerCtorDtor)
1016
1019
1020 // This can be disabled by passing ::Disable here or on the command line
1021 // with --expand-variadics-override=disable.
1023
1024 // Function calls are not supported, so make sure we inline everything.
1027
1028 // Handle uses of OpenCL image2d_t, image3d_t and sampler_t arguments.
1029 if (Arch == Triple::r600)
1031
1032 // Replace OpenCL enqueued block function pointers with global variables.
1034
1035 // Runs before PromoteAlloca so the latter can account for function uses
1038 }
1039
1040 // AMDGPUAttributor infers lack of llvm.amdgcn.lds.kernel.id calls, so run
1041 // after their introduction
1044
1047
1048 // Run atomic optimizer before Atomic Expand
1053 }
1054
1056
1059
1062
1066 AAResults &AAR) {
1067 if (auto *WrapperPass = P.getAnalysisIfAvailable<AMDGPUAAWrapperPass>())
1068 AAR.addAAResult(WrapperPass->getResult());
1069 }));
1070 }
1071
1073 // TODO: May want to move later or split into an early and late one.
1075 }
1076
1077 // Try to hoist loop invariant parts of divisions AMDGPUCodeGenPrepare may
1078 // have expanded.
1081 }
1082
1084
1085 // EarlyCSE is not always strong enough to clean up what LSR produces. For
1086 // example, GVN can combine
1087 //
1088 // %0 = add %a, %b
1089 // %1 = add %b, %a
1090 //
1091 // and
1092 //
1093 // %0 = shl nsw %a, 2
1094 // %1 = shl %a, 2
1095 //
1096 // but EarlyCSE can do neither of them.
1099}
1100
1103 // FIXME: This pass adds 2 hacky attributes that can be replaced with an
1104 // analysis, and should be removed.
1106 }
1107
1111
1113 // This lowering has been placed after codegenprepare to take advantage of
1114 // address mode matching (which is why it isn't put with the LDS lowerings).
1115 // It could be placed anywhere before uniformity annotations (an analysis
1116 // that it changes by splitting up fat pointers into their components)
1117 // but has been put before switch lowering and CFG flattening so that those
1118 // passes can run on the more optimized control flow this pass creates in
1119 // many cases.
1120 //
1121 // FIXME: This should ideally be put after the LoadStoreVectorizer.
1122 // However, due to some annoying facts about ResourceUsageAnalysis,
1123 // (especially as exercised in the resource-usage-dead-function test),
1124 // we need all the function passes codegenprepare all the way through
1125 // said resource usage analysis to run on the call graph produced
1126 // before codegenprepare runs (because codegenprepare will knock some
1127 // nodes out of the graph, which leads to function-level passes not
1128 // being run on them, which causes crashes in the resource usage analysis).
1130 // In accordance with the above FIXME, manually force all the
1131 // function-level passes into a CGSCCPassManager.
1132 addPass(new DummyCGSCCPass());
1133 }
1134
1136
1139
1140 // LowerSwitch pass may introduce unreachable blocks that can
1141 // cause unexpected behavior for subsequent passes. Placing it
1142 // here seems better that these blocks would get cleaned up by
1143 // UnreachableBlockElim inserted next in the pass flow.
1145}
1146
1150 return false;
1151}
1152
1155 return false;
1156}
1157
1159 // Do nothing. GC is not supported.
1160 return false;
1161}
1162
1165 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1167 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
1168 if (ST.shouldClusterStores())
1169 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
1170 return DAG;
1171}
1172
1174 BumpPtrAllocator &Allocator, const Function &F,
1175 const TargetSubtargetInfo *STI) const {
1176 return R600MachineFunctionInfo::create<R600MachineFunctionInfo>(
1177 Allocator, F, static_cast<const R600Subtarget *>(STI));
1178}
1179
1180//===----------------------------------------------------------------------===//
1181// GCN Pass Setup
1182//===----------------------------------------------------------------------===//
1183
1184ScheduleDAGInstrs *GCNPassConfig::createMachineScheduler(
1185 MachineSchedContext *C) const {
1186 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1187 if (ST.enableSIScheduler())
1189
1192
1194}
1195
1196bool GCNPassConfig::addPreISel() {
1198
1199 if (TM->getOptLevel() > CodeGenOptLevel::None)
1201
1202 if (TM->getOptLevel() > CodeGenOptLevel::None)
1203 addPass(createSinkingPass());
1204
1205 // Merge divergent exit nodes. StructurizeCFG won't recognize the multi-exit
1206 // regions formed by them.
1210 addPass(createFixIrreduciblePass());
1211 addPass(createUnifyLoopExitsPass());
1212 }
1213 addPass(createStructurizeCFGPass(false)); // true -> SkipUniformRegions
1214 }
1218 // TODO: Move this right after structurizeCFG to avoid extra divergence
1219 // analysis. This depends on stopping SIAnnotateControlFlow from making
1220 // control flow modifications.
1222 }
1223 addPass(createLCSSAPass());
1224
1225 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1226 addPass(&AMDGPUPerfHintAnalysisID);
1227
1228 return false;
1229}
1230
1231void GCNPassConfig::addMachineSSAOptimization() {
1233
1234 // We want to fold operands after PeepholeOptimizer has run (or as part of
1235 // it), because it will eliminate extra copies making it easier to fold the
1236 // real source operand. We want to eliminate dead instructions after, so that
1237 // we see fewer uses of the copies. We then need to clean up the dead
1238 // instructions leftover after the operands are folded as well.
1239 //
1240 // XXX - Can we get away without running DeadMachineInstructionElim again?
1241 addPass(&SIFoldOperandsID);
1242 if (EnableDPPCombine)
1243 addPass(&GCNDPPCombineID);
1244 addPass(&SILoadStoreOptimizerID);
1245 if (isPassEnabled(EnableSDWAPeephole)) {
1246 addPass(&SIPeepholeSDWAID);
1247 addPass(&EarlyMachineLICMID);
1248 addPass(&MachineCSEID);
1249 addPass(&SIFoldOperandsID);
1250 }
1253}
1254
1255bool GCNPassConfig::addILPOpts() {
1257 addPass(&EarlyIfConverterID);
1258
1260 return false;
1261}
1262
1263bool GCNPassConfig::addInstSelector() {
1265 addPass(&SIFixSGPRCopiesID);
1266 addPass(createSILowerI1CopiesPass());
1267 return false;
1268}
1269
1270bool GCNPassConfig::addIRTranslator() {
1271 addPass(new IRTranslator(getOptLevel()));
1272 return false;
1273}
1274
1275void GCNPassConfig::addPreLegalizeMachineIR() {
1276 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1277 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone));
1278 addPass(new Localizer());
1279}
1280
1281bool GCNPassConfig::addLegalizeMachineIR() {
1282 addPass(new Legalizer());
1283 return false;
1284}
1285
1286void GCNPassConfig::addPreRegBankSelect() {
1287 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1288 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone));
1290}
1291
1292bool GCNPassConfig::addRegBankSelect() {
1293 addPass(new AMDGPURegBankSelect());
1294 return false;
1295}
1296
1297void GCNPassConfig::addPreGlobalInstructionSelect() {
1298 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1299 addPass(createAMDGPURegBankCombiner(IsOptNone));
1300}
1301
1302bool GCNPassConfig::addGlobalInstructionSelect() {
1303 addPass(new InstructionSelect(getOptLevel()));
1304 return false;
1305}
1306
1307void GCNPassConfig::addPreRegAlloc() {
1308 if (LateCFGStructurize) {
1310 }
1311}
1312
1313void GCNPassConfig::addFastRegAlloc() {
1314 // FIXME: We have to disable the verifier here because of PHIElimination +
1315 // TwoAddressInstructions disabling it.
1316
1317 // This must be run immediately after phi elimination and before
1318 // TwoAddressInstructions, otherwise the processing of the tied operand of
1319 // SI_ELSE will introduce a copy of the tied operand source after the else.
1321
1323
1325}
1326
1327void GCNPassConfig::addOptimizedRegAlloc() {
1328 // Allow the scheduler to run before SIWholeQuadMode inserts exec manipulation
1329 // instructions that cause scheduling barriers.
1331
1332 if (OptExecMaskPreRA)
1334
1337
1338 if (isPassEnabled(EnablePreRAOptimizations))
1340
1341 // This is not an essential optimization and it has a noticeable impact on
1342 // compilation time, so we only enable it from O2.
1343 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1345
1346 // FIXME: when an instruction has a Killed operand, and the instruction is
1347 // inside a bundle, seems only the BUNDLE instruction appears as the Kills of
1348 // the register in LiveVariables, this would trigger a failure in verifier,
1349 // we should fix it and enable the verifier.
1350 if (OptVGPRLiveRange)
1352 // This must be run immediately after phi elimination and before
1353 // TwoAddressInstructions, otherwise the processing of the tied operand of
1354 // SI_ELSE will introduce a copy of the tied operand source after the else.
1356
1357 if (EnableDCEInRA)
1359
1361}
1362
1363bool GCNPassConfig::addPreRewrite() {
1364 addPass(&SILowerWWMCopiesID);
1366 addPass(&GCNNSAReassignID);
1367 return true;
1368}
1369
1370FunctionPass *GCNPassConfig::createSGPRAllocPass(bool Optimized) {
1371 // Initialize the global default.
1372 llvm::call_once(InitializeDefaultSGPRRegisterAllocatorFlag,
1373 initializeDefaultSGPRRegisterAllocatorOnce);
1374
1375 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
1376 if (Ctor != useDefaultRegisterAllocator)
1377 return Ctor();
1378
1379 if (Optimized)
1380 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
1381
1382 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
1383}
1384
1385FunctionPass *GCNPassConfig::createVGPRAllocPass(bool Optimized) {
1386 // Initialize the global default.
1387 llvm::call_once(InitializeDefaultVGPRRegisterAllocatorFlag,
1388 initializeDefaultVGPRRegisterAllocatorOnce);
1389
1390 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
1391 if (Ctor != useDefaultRegisterAllocator)
1392 return Ctor();
1393
1394 if (Optimized)
1395 return createGreedyVGPRRegisterAllocator();
1396
1397 return createFastVGPRRegisterAllocator();
1398}
1399
1400FunctionPass *GCNPassConfig::createRegAllocPass(bool Optimized) {
1401 llvm_unreachable("should not be used");
1402}
1403
1405 "-regalloc not supported with amdgcn. Use -sgpr-regalloc and -vgpr-regalloc";
1406
1407bool GCNPassConfig::addRegAssignAndRewriteFast() {
1408 if (!usingDefaultRegAlloc())
1410
1411 addPass(&GCNPreRALongBranchRegID);
1412
1413 addPass(createSGPRAllocPass(false));
1414
1415 // Equivalent of PEI for SGPRs.
1416 addPass(&SILowerSGPRSpillsID);
1417 addPass(&SIPreAllocateWWMRegsID);
1418
1419 addPass(createVGPRAllocPass(false));
1420
1421 addPass(&SILowerWWMCopiesID);
1422 return true;
1423}
1424
1425bool GCNPassConfig::addRegAssignAndRewriteOptimized() {
1426 if (!usingDefaultRegAlloc())
1428
1429 addPass(&GCNPreRALongBranchRegID);
1430
1431 addPass(createSGPRAllocPass(true));
1432
1433 // Commit allocated register changes. This is mostly necessary because too
1434 // many things rely on the use lists of the physical registers, such as the
1435 // verifier. This is only necessary with allocators which use LiveIntervals,
1436 // since FastRegAlloc does the replacements itself.
1437 addPass(createVirtRegRewriter(false));
1438
1439 // Equivalent of PEI for SGPRs.
1440 addPass(&SILowerSGPRSpillsID);
1441 addPass(&SIPreAllocateWWMRegsID);
1442
1443 addPass(createVGPRAllocPass(true));
1444
1445 addPreRewrite();
1446 addPass(&VirtRegRewriterID);
1447
1449
1450 return true;
1451}
1452
1453void GCNPassConfig::addPostRegAlloc() {
1454 addPass(&SIFixVGPRCopiesID);
1455 if (getOptLevel() > CodeGenOptLevel::None)
1456 addPass(&SIOptimizeExecMaskingID);
1458}
1459
1460void GCNPassConfig::addPreSched2() {
1461 if (TM->getOptLevel() > CodeGenOptLevel::None)
1463 addPass(&SIPostRABundlerID);
1464}
1465
1466void GCNPassConfig::addPreEmitPass() {
1467 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less))
1468 addPass(&GCNCreateVOPDID);
1469 addPass(createSIMemoryLegalizerPass());
1470 addPass(createSIInsertWaitcntsPass());
1471
1472 addPass(createSIModeRegisterPass());
1473
1474 if (getOptLevel() > CodeGenOptLevel::None)
1475 addPass(&SIInsertHardClausesID);
1476
1478 if (isPassEnabled(EnableSetWavePriority, CodeGenOptLevel::Less))
1480 if (getOptLevel() > CodeGenOptLevel::None)
1481 addPass(&SIPreEmitPeepholeID);
1482 // The hazard recognizer that runs as part of the post-ra scheduler does not
1483 // guarantee to be able handle all hazards correctly. This is because if there
1484 // are multiple scheduling regions in a basic block, the regions are scheduled
1485 // bottom up, so when we begin to schedule a region we don't know what
1486 // instructions were emitted directly before it.
1487 //
1488 // Here we add a stand-alone hazard recognizer pass which can handle all
1489 // cases.
1490 addPass(&PostRAHazardRecognizerID);
1491
1494
1495 if (isPassEnabled(EnableInsertDelayAlu, CodeGenOptLevel::Less))
1496 addPass(&AMDGPUInsertDelayAluID);
1497
1498 addPass(&BranchRelaxationPassID);
1499}
1500
1502 return new GCNPassConfig(*this, PM);
1503}
1504
1506 MachineFunction &MF) const {
1508 MF.getRegInfo().addDelegate(MFI);
1509}
1510
1512 BumpPtrAllocator &Allocator, const Function &F,
1513 const TargetSubtargetInfo *STI) const {
1514 return SIMachineFunctionInfo::create<SIMachineFunctionInfo>(
1515 Allocator, F, static_cast<const GCNSubtarget *>(STI));
1516}
1517
1519 return new yaml::SIMachineFunctionInfo();
1520}
1521
1525 return new yaml::SIMachineFunctionInfo(
1526 *MFI, *MF.getSubtarget<GCNSubtarget>().getRegisterInfo(), MF);
1527}
1528
1531 SMDiagnostic &Error, SMRange &SourceRange) const {
1532 const yaml::SIMachineFunctionInfo &YamlMFI =
1533 static_cast<const yaml::SIMachineFunctionInfo &>(MFI_);
1534 MachineFunction &MF = PFS.MF;
1536 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
1537
1538 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange))
1539 return true;
1540
1541 if (MFI->Occupancy == 0) {
1542 // Fixup the subtarget dependent default value.
1543 MFI->Occupancy = ST.computeOccupancy(MF.getFunction(), MFI->getLDSSize());
1544 }
1545
1546 auto parseRegister = [&](const yaml::StringValue &RegName, Register &RegVal) {
1547 Register TempReg;
1548 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) {
1549 SourceRange = RegName.SourceRange;
1550 return true;
1551 }
1552 RegVal = TempReg;
1553
1554 return false;
1555 };
1556
1557 auto parseOptionalRegister = [&](const yaml::StringValue &RegName,
1558 Register &RegVal) {
1559 return !RegName.Value.empty() && parseRegister(RegName, RegVal);
1560 };
1561
1562 if (parseOptionalRegister(YamlMFI.VGPRForAGPRCopy, MFI->VGPRForAGPRCopy))
1563 return true;
1564
1565 if (parseOptionalRegister(YamlMFI.SGPRForEXECCopy, MFI->SGPRForEXECCopy))
1566 return true;
1567
1568 if (parseOptionalRegister(YamlMFI.LongBranchReservedReg,
1569 MFI->LongBranchReservedReg))
1570 return true;
1571
1572 auto diagnoseRegisterClass = [&](const yaml::StringValue &RegName) {
1573 // Create a diagnostic for a the register string literal.
1574 const MemoryBuffer &Buffer =
1575 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID());
1576 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1,
1577 RegName.Value.size(), SourceMgr::DK_Error,
1578 "incorrect register class for field", RegName.Value,
1579 std::nullopt, std::nullopt);
1580 SourceRange = RegName.SourceRange;
1581 return true;
1582 };
1583
1584 if (parseRegister(YamlMFI.ScratchRSrcReg, MFI->ScratchRSrcReg) ||
1585 parseRegister(YamlMFI.FrameOffsetReg, MFI->FrameOffsetReg) ||
1586 parseRegister(YamlMFI.StackPtrOffsetReg, MFI->StackPtrOffsetReg))
1587 return true;
1588
1589 if (MFI->ScratchRSrcReg != AMDGPU::PRIVATE_RSRC_REG &&
1590 !AMDGPU::SGPR_128RegClass.contains(MFI->ScratchRSrcReg)) {
1591 return diagnoseRegisterClass(YamlMFI.ScratchRSrcReg);
1592 }
1593
1594 if (MFI->FrameOffsetReg != AMDGPU::FP_REG &&
1595 !AMDGPU::SGPR_32RegClass.contains(MFI->FrameOffsetReg)) {
1596 return diagnoseRegisterClass(YamlMFI.FrameOffsetReg);
1597 }
1598
1599 if (MFI->StackPtrOffsetReg != AMDGPU::SP_REG &&
1600 !AMDGPU::SGPR_32RegClass.contains(MFI->StackPtrOffsetReg)) {
1601 return diagnoseRegisterClass(YamlMFI.StackPtrOffsetReg);
1602 }
1603
1604 for (const auto &YamlReg : YamlMFI.WWMReservedRegs) {
1605 Register ParsedReg;
1606 if (parseRegister(YamlReg, ParsedReg))
1607 return true;
1608
1609 MFI->reserveWWMRegister(ParsedReg);
1610 }
1611
1612 auto parseAndCheckArgument = [&](const std::optional<yaml::SIArgument> &A,
1613 const TargetRegisterClass &RC,
1614 ArgDescriptor &Arg, unsigned UserSGPRs,
1615 unsigned SystemSGPRs) {
1616 // Skip parsing if it's not present.
1617 if (!A)
1618 return false;
1619
1620 if (A->IsRegister) {
1621 Register Reg;
1622 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) {
1623 SourceRange = A->RegisterName.SourceRange;
1624 return true;
1625 }
1626 if (!RC.contains(Reg))
1627 return diagnoseRegisterClass(A->RegisterName);
1629 } else
1630 Arg = ArgDescriptor::createStack(A->StackOffset);
1631 // Check and apply the optional mask.
1632 if (A->Mask)
1633 Arg = ArgDescriptor::createArg(Arg, *A->Mask);
1634
1635 MFI->NumUserSGPRs += UserSGPRs;
1636 MFI->NumSystemSGPRs += SystemSGPRs;
1637 return false;
1638 };
1639
1640 if (YamlMFI.ArgInfo &&
1641 (parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentBuffer,
1642 AMDGPU::SGPR_128RegClass,
1643 MFI->ArgInfo.PrivateSegmentBuffer, 4, 0) ||
1644 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchPtr,
1645 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchPtr,
1646 2, 0) ||
1647 parseAndCheckArgument(YamlMFI.ArgInfo->QueuePtr, AMDGPU::SReg_64RegClass,
1648 MFI->ArgInfo.QueuePtr, 2, 0) ||
1649 parseAndCheckArgument(YamlMFI.ArgInfo->KernargSegmentPtr,
1650 AMDGPU::SReg_64RegClass,
1651 MFI->ArgInfo.KernargSegmentPtr, 2, 0) ||
1652 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchID,
1653 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchID,
1654 2, 0) ||
1655 parseAndCheckArgument(YamlMFI.ArgInfo->FlatScratchInit,
1656 AMDGPU::SReg_64RegClass,
1657 MFI->ArgInfo.FlatScratchInit, 2, 0) ||
1658 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentSize,
1659 AMDGPU::SGPR_32RegClass,
1660 MFI->ArgInfo.PrivateSegmentSize, 0, 0) ||
1661 parseAndCheckArgument(YamlMFI.ArgInfo->LDSKernelId,
1662 AMDGPU::SGPR_32RegClass,
1663 MFI->ArgInfo.LDSKernelId, 0, 1) ||
1664 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDX,
1665 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDX,
1666 0, 1) ||
1667 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDY,
1668 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDY,
1669 0, 1) ||
1670 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDZ,
1671 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDZ,
1672 0, 1) ||
1673 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupInfo,
1674 AMDGPU::SGPR_32RegClass,
1675 MFI->ArgInfo.WorkGroupInfo, 0, 1) ||
1676 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentWaveByteOffset,
1677 AMDGPU::SGPR_32RegClass,
1678 MFI->ArgInfo.PrivateSegmentWaveByteOffset, 0, 1) ||
1679 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitArgPtr,
1680 AMDGPU::SReg_64RegClass,
1681 MFI->ArgInfo.ImplicitArgPtr, 0, 0) ||
1682 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitBufferPtr,
1683 AMDGPU::SReg_64RegClass,
1684 MFI->ArgInfo.ImplicitBufferPtr, 2, 0) ||
1685 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDX,
1686 AMDGPU::VGPR_32RegClass,
1687 MFI->ArgInfo.WorkItemIDX, 0, 0) ||
1688 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDY,
1689 AMDGPU::VGPR_32RegClass,
1690 MFI->ArgInfo.WorkItemIDY, 0, 0) ||
1691 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDZ,
1692 AMDGPU::VGPR_32RegClass,
1693 MFI->ArgInfo.WorkItemIDZ, 0, 0)))
1694 return true;
1695
1696 if (ST.hasIEEEMode())
1697 MFI->Mode.IEEE = YamlMFI.Mode.IEEE;
1698 if (ST.hasDX10ClampMode())
1699 MFI->Mode.DX10Clamp = YamlMFI.Mode.DX10Clamp;
1700
1701 // FIXME: Move proper support for denormal-fp-math into base MachineFunction
1702 MFI->Mode.FP32Denormals.Input = YamlMFI.Mode.FP32InputDenormals
1705 MFI->Mode.FP32Denormals.Output = YamlMFI.Mode.FP32OutputDenormals
1708
1715
1716 return false;
1717}
static cl::opt< bool > EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden, cl::desc("Run early if-conversion"), cl::init(true))
This is the AMGPU address space based alias analysis pass.
Defines an instruction selector for the AMDGPU target.
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 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 cl::opt< bool > EnableLowerKernelArguments("amdgpu-ir-lower-kernel-arguments", cl::desc("Lower kernel argument loads in IR pass"), cl::init(true), 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 > EnableImageIntrinsicOptimizer("amdgpu-enable-image-intrinsic-optimizer", cl::desc("Enable image intrinsic optimizer pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableSIModeRegisterPass("amdgpu-mode-register", cl::desc("Enable mode register pass"), cl::init(true), cl::Hidden)
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, true > DisableStructurizer("amdgpu-disable-structurizer", cl::desc("Disable structurizer for experiments; produces unusable code"), cl::location(AMDGPUTargetMachine::DisableStructurizer), 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))
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 LLVM_READNONE StringRef getGPUOrDefault(const Triple &TT, StringRef GPU)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
static cl::opt< bool > EnableStructurizerWorkarounds("amdgpu-enable-structurizer-workarounds", cl::desc("Enable workarounds for the StructurizeCFG pass"), cl::init(true), cl::Hidden)
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, true > LateCFGStructurize("amdgpu-late-structurize", cl::desc("Enable late CFG structurization"), cl::location(AMDGPUTargetMachine::EnableLateStructurizeCFG), cl::Hidden)
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 cl::opt< bool > EnableMaxIlpSchedStrategy("amdgpu-enable-max-ilp-scheduling-strategy", cl::desc("Enable scheduling strategy to maximize ILP for a single wave."), cl::Hidden, cl::init(false))
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))
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAMDGPUTarget()
static cl::opt< bool > EnableInsertSingleUseVDST("amdgpu-enable-single-use-vdst", cl::desc("Enable s_singleuse_vdst insertion"), cl::init(false), cl::Hidden)
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 cl::opt< bool > EnableEarlyIfConversion("amdgpu-early-ifcvt", cl::Hidden, cl::desc("Run early if-conversion"), cl::init(false))
static ScheduleDAGInstrs * createGCNMaxOccupancyMachineScheduler(MachineSchedContext *C)
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.
This file a TargetTransformInfo::Concept conforming object specific to the AMDGPU target machine.
Provides passes to inlining "always_inline" functions.
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.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
Definition: CommandLine.h:686
#define LLVM_READNONE
Definition: Compiler.h:220
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
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.
#define RegName(no)
static LVOptions Options
Definition: LVOptions.cpp:25
static std::string computeDataLayout()
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
uint64_t IntrinsicInst * II
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
#define P(N)
CGSCCAnalysisManager CGAM
ModulePassManager MPM
LoopAnalysisManager LAM
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
const char LLVMTargetMachineRef TM
PassInstrumentationCallbacks PIC
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
This header defines various interfaces for pass management in LLVM.
The AMDGPU TargetMachine interface definition for hw codegen targets.
Basic Register Allocator
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
SI Machine Scheduler interface.
static FunctionPass * useDefaultRegisterAllocator()
-regalloc=... command line option.
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.
AMDGPUTargetMachine & getAMDGPUTargetMachine() const
std::unique_ptr< CSEConfigBase > getCSEConfig() const override
Returns the CSEConfig object to use for the current optimization level.
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
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.
AMDGPUPassConfig(LLVMTargetMachine &TM, PassManagerBase &PM)
void addIRPasses() override
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
void addCodeGenPrepare() override
Add pass to prepare the LLVM IR for code generation.
Splits the module M into N linkable partitions.
static int64_t getNullPointerValue(unsigned AddrSpace)
Get the integer value of a null pointer in the given address space.
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.
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
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.
Error buildCodeGenPipeline(ModulePassManager &MPM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, const CGPassBuilderOption &Opts, PassInstrumentationCallbacks *PIC) override
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
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.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:391
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition: Attributes.h:203
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
Error buildPipeline(ModulePassManager &MPM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType) const
void removeDeadConstantUsers() const
If there are any dead constant users dangling off of this constant, remove them.
Definition: Constants.cpp:723
This pass is required by interprocedural register allocation.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
Tagged union holding either a T or a Error.
Definition: Error.h:481
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
const SIRegisterInfo * getRegisterInfo() const override
Definition: GCNSubtarget.h:274
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
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...
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.
Pass to remove unused function declarations.
Definition: GlobalDCE.h:36
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...
Definition: Internalize.h:36
This class describes a target machine that is implemented with the LLVM target-independent code gener...
This pass implements the localization mechanism described at the top of this file.
Definition: Localizer.h:43
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.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
void addDelegate(Delegate *delegate)
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...
Definition: MemoryBuffer.h:51
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
Definition: MemoryBuffer.h:76
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
static const OptimizationLevel O0
Disable as many optimizations as possible.
unsigned getSpeedupLevel() const
static const OptimizationLevel O1
Optimize quickly without destroying debuggability.
This class provides access to building LLVM's passes.
Definition: PassBuilder.h:106
void registerPipelineEarlySimplificationEPCallback(const std::function< void(ModulePassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:481
void registerPipelineStartEPCallback(const std::function< void(ModulePassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:472
void crossRegisterProxies(LoopAnalysisManager &LAM, FunctionAnalysisManager &FAM, CGSCCAnalysisManager &CGAM, ModuleAnalysisManager &MAM, MachineFunctionAnalysisManager *MFAM=nullptr)
Cross register the analysis managers through their proxies.
void registerPeepholeEPCallback(const std::function< void(FunctionPassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:406
void registerCGSCCOptimizerLateEPCallback(const std::function< void(CGSCCPassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:451
void registerRegClassFilterParsingCallback(const std::function< RegClassFilterFunc(StringRef)> &C)
Register callbacks to parse target specific filter field if regalloc pass needs it.
Definition: PassBuilder.h:588
void registerModuleAnalyses(ModuleAnalysisManager &MAM)
Registers all available module analysis passes.
void registerFullLinkTimeOptimizationLastEPCallback(const std::function< void(ModulePassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:517
void registerFunctionAnalyses(FunctionAnalysisManager &FAM)
Registers all available function analysis 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)
Definition: PassManager.h:195
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...
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
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
RegisterPassParser class - Handle the addition of new machine passes.
RegisterRegAllocBase class - Track the registration of register allocators.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
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)
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition: SourceMgr.h:281
Represents a location in source code.
Definition: SMLoc.h:23
Represents a range in source code.
Definition: SMLoc.h:48
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
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.
Definition: ScheduleDAG.h:575
const TargetRegisterInfo * TRI
Target processor register info.
Definition: ScheduleDAG.h:576
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
void append(StringRef RHS)
Append from a StringRef.
Definition: SmallString.h:68
unsigned getMainFileID() const
Definition: SourceMgr.h:132
const MemoryBuffer * getMemoryBuffer(unsigned i) const
Definition: SourceMgr.h:125
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
bool consume_front(StringRef Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
Definition: StringRef.h:628
A switch()-like statement whose cases are string literals.
Definition: StringSwitch.h:44
StringSwitch & Case(StringLiteral S, T Value)
Definition: StringSwitch.h:69
R Default(T Value)
Definition: StringSwitch.h:182
StringSwitch & Cases(StringLiteral S0, StringLiteral S1, T Value)
Definition: StringSwitch.h:90
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
Definition: TargetMachine.h:96
const Triple & getTargetTriple() const
const MCSubtargetInfo * getMCSubtargetInfo() const
StringRef getTargetFeatureString() const
StringRef getTargetCPU() const
std::unique_ptr< const MCSubtargetInfo > STI
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
std::unique_ptr< const MCRegisterInfo > MRI
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
Target-Independent Code Generator Pass Configuration Options.
LLVMTargetMachine * TM
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.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition: Triple.h:373
LLVM Value Representation.
Definition: Value.h:74
bool use_empty() const
Definition: Value.h:344
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.
Definition: raw_ostream.h:445
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.
@ REGION_ADDRESS
Address space for region memory. (GDS)
@ 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.
bool isFlatGlobalAddrSpace(unsigned AS)
Definition: AMDGPU.h:415
bool isEntryFunctionCC(CallingConv::ID CC)
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
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)
Definition: PatternMatch.h:49
deferredval_ty< 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()...
Definition: PatternMatch.h:893
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
Definition: PatternMatch.h:92
BinaryOp_match< cst_pred_ty< is_all_ones >, ValTy, Instruction::Xor, true > m_Not(const ValTy &V)
Matches a 'Not' as 'xor V, -1' or 'xor -1, V'.
@ ReallyHidden
Definition: CommandLine.h:138
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
Definition: CommandLine.h:711
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:443
LocationClass< Ty > location(Ty &L)
Definition: CommandLine.h:463
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createFlattenCFGPass()
void initializeSIFormMemoryClausesPass(PassRegistry &)
char & SIPreAllocateWWMRegsID
FunctionPass * createFastRegisterAllocator()
FastRegisterAllocation Pass - This pass register allocates as fast as possible.
char & EarlyMachineLICMID
This pass performs loop invariant code motion on machine instructions.
ImmutablePass * createAMDGPUAAWrapperPass()
char & PostRAHazardRecognizerID
PostRAHazardRecognizer - This pass runs the post-ra hazard recognizer.
FunctionPass * createAMDGPUSetWavePriorityPass()
void initializeAMDGPUInsertSingleUseVDSTPass(PassRegistry &)
Pass * createLCSSAPass()
Definition: LCSSA.cpp:506
void initializeGCNCreateVOPDPass(PassRegistry &)
ModulePass * createAMDGPUOpenCLEnqueuedBlockLoweringPass()
char & GCNPreRAOptimizationsID
char & GCLoweringID
GCLowering Pass - Used by gc.root to perform its default lowering operations.
void initializeGCNPreRAOptimizationsPass(PassRegistry &)
Pass * createLoadStoreVectorizerPass()
Create a legacy pass manager instance of the LoadStoreVectorizer pass.
ModulePass * createExpandVariadicsPass(ExpandVariadicsMode)
void initializeGCNRewritePartialRegUsesPass(llvm::PassRegistry &)
void initializeAMDGPUAttributorLegacyPass(PassRegistry &)
char & SIPostRABundlerID
FunctionPass * createSIModeRegisterPass()
FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
void initializeAMDGPUAAWrapperPassPass(PassRegistry &)
ModulePass * createAMDGPULowerBufferFatPointersPass()
void initializeR600ClauseMergePassPass(PassRegistry &)
void initializeSIModeRegisterPass(PassRegistry &)
ModulePass * createAMDGPUCtorDtorLoweringLegacyPass()
void initializeSIOptimizeVGPRLiveRangePass(PassRegistry &)
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:848
void initializeAMDGPULateCodeGenPreparePass(PassRegistry &)
void initializeAMDGPURewriteUndefForPHILegacyPass(PassRegistry &)
FunctionPass * createAMDGPUPreLegalizeCombiner(bool IsOptNone)
char & GCNRewritePartialRegUsesID
FunctionPass * createAMDGPUPostLegalizeCombiner(bool IsOptNone)
void initializeAMDGPUAnnotateUniformValuesPass(PassRegistry &)
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition: Error.cpp:98
void initializeSIShrinkInstructionsPass(PassRegistry &)
char & SIFoldOperandsID
void initializeGCNPreRALongBranchRegPass(PassRegistry &)
char & SILoadStoreOptimizerID
std::unique_ptr< ScheduleDAGMutation > createIGroupLPDAGMutation(AMDGPU::SchedulingPhase Phase)
Phase specifes whether or not this is a reentry into the IGroupLPDAGMutation.
void initializeAMDGPUDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createNaryReassociatePass()
char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
void initializeR600ExpandSpecialInstrsPassPass(PassRegistry &)
void initializeR600PacketizerPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createVOPDPairingMutation()
ModulePass * createAMDGPUAlwaysInlinePass(bool GlobalOpt=true)
void initializeSIPreEmitPeepholePass(PassRegistry &)
char & SILowerWWMCopiesID
void initializeSIFixVGPRCopiesPass(PassRegistry &)
void initializeAMDGPUGlobalISelDivergenceLoweringPass(PassRegistry &)
std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition: CSEInfo.cpp:79
Target & getTheR600Target()
The target for R600 GPUs.
char & MachineSchedulerID
MachineScheduler - This pass schedules machine instructions.
Pass * createStructurizeCFGPass(bool SkipUniformRegions=false)
When SkipUniformRegions is true the structizer will not structurize regions that only contain uniform...
void initializeAMDGPURemoveIncompatibleFunctionsPass(PassRegistry &)
void initializeSILowerWWMCopiesPass(PassRegistry &)
void initializeGCNNSAReassignPass(PassRegistry &)
char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
void initializeSIInsertWaitcntsPass(PassRegistry &)
char & AMDGPUInsertSingleUseVDSTID
Pass * createLICMPass()
Definition: LICM.cpp:379
ScheduleDAGMILive * createGenericSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
char & SIFormMemoryClausesID
void initializeAMDGPULowerModuleLDSLegacyPass(PassRegistry &)
void initializeAMDGPUCtorDtorLoweringLegacyPass(PassRegistry &)
void initializeAMDGPURegBankCombinerPass(PassRegistry &)
void initializeSILoadStoreOptimizerPass(PassRegistry &)
void initializeSILateBranchLoweringPass(PassRegistry &)
void initializeSIPeepholeSDWAPass(PassRegistry &)
char & AMDGPUUnifyDivergentExitNodesID
FunctionPass * createAMDGPUAtomicOptimizerPass(ScanOptions ScanStrategy)
char & ShadowStackGCLoweringID
ShadowStackGCLowering - Implements the custom lowering mechanism used by the shadow stack GC.
char & GCNNSAReassignID
void initializeAMDGPURewriteOutArgumentsPass(PassRegistry &)
void initializeAMDGPUExternalAAWrapperPass(PassRegistry &)
void initializeAMDGPULowerKernelArgumentsPass(PassRegistry &)
char & AMDGPUPerfHintAnalysisID
char & SILowerSGPRSpillsID
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 & SILateBranchLoweringPassID
char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
FunctionPass * createSinkingPass()
Definition: Sink.cpp:277
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.
FunctionPass * createSIShrinkInstructionsPass()
void initializeAMDGPUAnnotateKernelFeaturesPass(PassRegistry &)
CodeGenFileType
These enums are meant to be passed into addPassesToEmitFile to indicate what type of file to emit,...
Definition: CodeGen.h:83
void initializeSIPostRABundlerPass(PassRegistry &)
void initializeAMDGPUPromoteAllocaToVectorPass(PassRegistry &)
Pass * createAMDGPUAttributorLegacyPass()
void initializeSIWholeQuadModePass(PassRegistry &)
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...
FunctionPass * createLoopDataPrefetchPass()
FunctionPass * createAMDGPULowerKernelArgumentsPass()
char & AMDGPUInsertDelayAluID
Pass * createAMDGPUAnnotateKernelFeaturesPass()
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167
std::unique_ptr< ScheduleDAGMutation > createAMDGPUMacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createAMDGPUMacroFusionDAGMutation()); to AMDGPUPassConfig...
char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
char & SIOptimizeVGPRLiveRangeID
FunctionPass * createUnifyLoopExitsPass()
char & SIOptimizeExecMaskingPreRAID
FunctionPass * createFixIrreduciblePass()
char & FuncletLayoutID
This pass lays out funclets contiguously.
void initializeSIInsertHardClausesPass(PassRegistry &)
char & DetectDeadLanesID
This pass adds dead/undef flags after analyzing subregister lanes.
void initializeAMDGPUPostLegalizerCombinerPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
void initializeSIAnnotateControlFlowPass(PassRegistry &)
ModulePass * createAMDGPUPrintfRuntimeBinding()
void initializeSIMemoryLegalizerPass(PassRegistry &)
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 &)
FunctionPass * createAMDGPUAnnotateUniformValues()
ModulePass * createAMDGPULowerModuleLDSLegacyPass(const AMDGPUTargetMachine *TM=nullptr)
void initializeAMDGPUPreLegalizerCombinerPass(PassRegistry &)
FunctionPass * createAMDGPUPromoteAlloca()
FunctionPass * createSeparateConstOffsetFromGEPPass(bool LowerGEP=false)
char & EarlyIfConverterID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
char & SIPreEmitPeepholeID
ModulePass * createAMDGPURemoveIncompatibleFunctionsPass(const TargetMachine *)
FunctionPass * createSILowerI1CopiesPass()
void initializeGCNRegPressurePrinterPass(PassRegistry &)
void initializeAMDGPUArgumentUsageInfoPass(PassRegistry &)
FunctionPass * createBasicRegisterAllocator()
BasicRegisterAllocation Pass - This pass implements a degenerate global register allocator using the ...
void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
Definition: GlobalISel.cpp:17
void initializeSIPreAllocateWWMRegsPass(PassRegistry &)
ModulePass * createR600OpenCLImageTypeLoweringPass()
FunctionPass * createAMDGPUCodeGenPreparePass()
FunctionPass * createAMDGPUISelDag(TargetMachine &TM, CodeGenOptLevel OptLevel)
This pass converts a legalized DAG into a AMDGPU-specific.
Target & getTheGCNTarget()
The target for GCN GPUs.
void initializeAMDGPUAtomicOptimizerPass(PassRegistry &)
char & MachineCSEID
MachineCSE - This pass performs global CSE on machine instructions.
Definition: MachineCSE.cpp:165
char & GCNDPPCombineID
FunctionPass * createAMDGPURegBankCombiner(bool IsOptNone)
char & SIWholeQuadModeID
std::unique_ptr< ScheduleDAGMutation > createLoadClusterDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ReorderWhileClustering=false)
If ReorderWhileClustering is set to true, no attempt will be made to reduce reordering due to store c...
void initializeSIOptimizeExecMaskingPreRAPass(PassRegistry &)
void initializeAMDGPUMarkLastScratchLoadPass(PassRegistry &)
char & LiveVariablesID
LiveVariables pass - This pass computes the set of blocks in which each variable is life and sets mac...
void initializeAMDGPUCodeGenPreparePass(PassRegistry &)
FunctionPass * createGVNPass(bool NoMemDepAnalysis=false)
Create a legacy GVN pass.
Definition: GVN.cpp:3396
FunctionPass * createAMDGPURewriteUndefForPHILegacyPass()
void call_once(once_flag &flag, Function &&F, Args &&... ArgList)
Execute the function specified as a parameter once.
Definition: Threading.h:87
void initializeSILowerSGPRSpillsPass(PassRegistry &)
void initializeAMDGPULowerKernelAttributesPass(PassRegistry &)
char & SIInsertHardClausesID
FunctionPass * createAMDGPUMachineCFGStructurizerPass()
void initializeAMDGPUResourceUsageAnalysisPass(PassRegistry &)
void initializeSIFixSGPRCopiesPass(PassRegistry &)
char & GCNCreateVOPDID
FunctionPass * createInferAddressSpacesPass(unsigned AddressSpace=~0u)
char & VirtRegRewriterID
VirtRegRewriter pass.
Definition: VirtRegMap.cpp:227
void initializeSILowerI1CopiesPass(PassRegistry &)
char & SILowerControlFlowID
FunctionPass * createLowerSwitchPass()
FunctionPass * createVirtRegRewriter(bool ClearVirtRegs=true)
Definition: VirtRegMap.cpp:645
void initializeR600VectorRegMergerPass(PassRegistry &)
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...
void initializeSIOptimizeExecMaskingPass(PassRegistry &)
FunctionPass * createAMDGPUGlobalISelDivergenceLoweringPass()
FunctionPass * createSIMemoryLegalizerPass()
void initializeSIFoldOperandsPass(PassRegistry &)
void initializeSILowerControlFlowPass(PassRegistry &)
char & SIPeepholeSDWAID
char & SIFixVGPRCopiesID
char & TwoAddressInstructionPassID
TwoAddressInstruction - This pass reduces two-address instructions to use two operands.
void initializeAMDGPURegBankSelectPass(PassRegistry &)
FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
MCRegisterInfo * createGCNMCRegisterInfo(AMDGPUDwarfFlavour DwarfFlavour)
FunctionPass * createStraightLineStrengthReducePass()
FunctionPass * createAMDGPUImageIntrinsicOptimizerPass(const TargetMachine *)
void initializeAMDGPUUnifyDivergentExitNodesPass(PassRegistry &)
void initializeAMDGPULowerBufferFatPointersPass(PassRegistry &)
FunctionPass * createSIInsertWaitcntsPass()
FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
Definition: EarlyCSE.cpp:1932
void initializeGCNDPPCombinePass(PassRegistry &)
char & PHIEliminationID
PHIElimination - This pass eliminates machine instruction PHI nodes by inserting copy instructions.
bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg, StringRef Src, SMDiagnostic &Error)
Definition: MIParser.cpp:3632
FunctionPass * createAMDGPULateCodeGenPreparePass()
char & AMDGPUMarkLastScratchLoadID
char & RenameIndependentSubregsID
This pass detects subregister lanes in a virtual register that are used independently of other lanes ...
std::unique_ptr< ScheduleDAGMutation > createAMDGPUExportClusteringDAGMutation()
void initializeAMDGPUPrintfRuntimeBindingPass(PassRegistry &)
void initializeAMDGPUPromoteAllocaPass(PassRegistry &)
void initializeAMDGPUOpenCLEnqueuedBlockLoweringPass(PassRegistry &)
void initializeAMDGPUInsertDelayAluPass(PassRegistry &)
char & SIOptimizeExecMaskingID
void initializeAMDGPUUnifyMetadataPass(PassRegistry &)
char & SIFixSGPRCopiesID
FunctionPass * createSIAnnotateControlFlowPass()
Create the annotation pass.
std::function< bool(const TargetRegisterInfo &TRI, const TargetRegisterClass &RC)> RegClassFilterFunc
Filter function for register classes during regalloc.
void initializeAMDGPUAlwaysInlinePass(PassRegistry &)
char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
char & GCNPreRALongBranchRegID
void initializeAMDGPUPromoteKernelArgumentsPass(PassRegistry &)
#define N
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...
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
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.
Definition: Threading.h:68
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.
SmallVector< StringValue > WWMReservedRegs
std::optional< SIArgumentInfo > ArgInfo
A wrapper around std::string which contains a source range that's being set during parsing.