LLVM 22.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/// This file contains both AMDGPU target machine and the CodeGen pass builder.
11/// The AMDGPU target machine contains all of the hardware specific information
12/// needed to emit code for SI+ GPUs in the legacy pass manager pipeline. The
13/// CodeGen pass builder handles the pass pipeline for new pass manager.
14//
15//===----------------------------------------------------------------------===//
16
17#include "AMDGPUTargetMachine.h"
18#include "AMDGPU.h"
19#include "AMDGPUAliasAnalysis.h"
24#include "AMDGPUIGroupLP.h"
25#include "AMDGPUISelDAGToDAG.h"
27#include "AMDGPUMacroFusion.h"
34#include "AMDGPUSplitModule.h"
39#include "GCNDPPCombine.h"
41#include "GCNNSAReassign.h"
45#include "GCNSchedStrategy.h"
46#include "GCNVOPDUtils.h"
47#include "R600.h"
48#include "R600TargetMachine.h"
49#include "SIFixSGPRCopies.h"
50#include "SIFixVGPRCopies.h"
51#include "SIFoldOperands.h"
52#include "SIFormMemoryClauses.h"
54#include "SILowerControlFlow.h"
55#include "SILowerSGPRSpills.h"
56#include "SILowerWWMCopies.h"
58#include "SIMachineScheduler.h"
62#include "SIPeepholeSDWA.h"
63#include "SIPostRABundler.h"
66#include "SIWholeQuadMode.h"
86#include "llvm/CodeGen/Passes.h"
90#include "llvm/IR/IntrinsicsAMDGPU.h"
91#include "llvm/IR/PassManager.h"
100#include "llvm/Transforms/IPO.h"
125#include <optional>
126
127using namespace llvm;
128using namespace llvm::PatternMatch;
129
130namespace {
131//===----------------------------------------------------------------------===//
132// AMDGPU CodeGen Pass Builder interface.
133//===----------------------------------------------------------------------===//
134
135class AMDGPUCodeGenPassBuilder
136 : public CodeGenPassBuilder<AMDGPUCodeGenPassBuilder, GCNTargetMachine> {
137 using Base = CodeGenPassBuilder<AMDGPUCodeGenPassBuilder, GCNTargetMachine>;
138
139public:
140 AMDGPUCodeGenPassBuilder(GCNTargetMachine &TM,
141 const CGPassBuilderOption &Opts,
142 PassInstrumentationCallbacks *PIC);
143
144 void addIRPasses(AddIRPass &) const;
145 void addCodeGenPrepare(AddIRPass &) const;
146 void addPreISel(AddIRPass &addPass) const;
147 void addILPOpts(AddMachinePass &) const;
148 void addAsmPrinter(AddMachinePass &, CreateMCStreamer) const;
149 Error addInstSelector(AddMachinePass &) const;
150 void addPreRewrite(AddMachinePass &) const;
151 void addMachineSSAOptimization(AddMachinePass &) const;
152 void addPostRegAlloc(AddMachinePass &) const;
153 void addPreEmitPass(AddMachinePass &) const;
154 void addPreEmitRegAlloc(AddMachinePass &) const;
155 Error addRegAssignmentOptimized(AddMachinePass &) const;
156 void addPreRegAlloc(AddMachinePass &) const;
157 void addOptimizedRegAlloc(AddMachinePass &) const;
158 void addPreSched2(AddMachinePass &) const;
159
160 /// Check if a pass is enabled given \p Opt option. The option always
161 /// overrides defaults if explicitly used. Otherwise its default will be used
162 /// given that a pass shall work at an optimization \p Level minimum.
163 bool isPassEnabled(const cl::opt<bool> &Opt,
164 CodeGenOptLevel Level = CodeGenOptLevel::Default) const;
165 void addEarlyCSEOrGVNPass(AddIRPass &) const;
166 void addStraightLineScalarOptimizationPasses(AddIRPass &) const;
167};
168
169class SGPRRegisterRegAlloc : public RegisterRegAllocBase<SGPRRegisterRegAlloc> {
170public:
171 SGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
172 : RegisterRegAllocBase(N, D, C) {}
173};
174
175class VGPRRegisterRegAlloc : public RegisterRegAllocBase<VGPRRegisterRegAlloc> {
176public:
177 VGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
178 : RegisterRegAllocBase(N, D, C) {}
179};
180
181class WWMRegisterRegAlloc : public RegisterRegAllocBase<WWMRegisterRegAlloc> {
182public:
183 WWMRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
184 : RegisterRegAllocBase(N, D, C) {}
185};
186
187static bool onlyAllocateSGPRs(const TargetRegisterInfo &TRI,
189 const Register Reg) {
190 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
191 return static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC);
192}
193
194static bool onlyAllocateVGPRs(const TargetRegisterInfo &TRI,
196 const Register Reg) {
197 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
198 return !static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC);
199}
200
201static bool onlyAllocateWWMRegs(const TargetRegisterInfo &TRI,
203 const Register Reg) {
204 const SIMachineFunctionInfo *MFI =
205 MRI.getMF().getInfo<SIMachineFunctionInfo>();
206 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
207 return !static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC) &&
209}
210
211/// -{sgpr|wwm|vgpr}-regalloc=... command line option.
212static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
213
214/// A dummy default pass factory indicates whether the register allocator is
215/// overridden on the command line.
216static llvm::once_flag InitializeDefaultSGPRRegisterAllocatorFlag;
217static llvm::once_flag InitializeDefaultVGPRRegisterAllocatorFlag;
218static llvm::once_flag InitializeDefaultWWMRegisterAllocatorFlag;
219
220static SGPRRegisterRegAlloc
221defaultSGPRRegAlloc("default",
222 "pick SGPR register allocator based on -O option",
224
225static cl::opt<SGPRRegisterRegAlloc::FunctionPassCtor, false,
227SGPRRegAlloc("sgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
228 cl::desc("Register allocator to use for SGPRs"));
229
230static cl::opt<VGPRRegisterRegAlloc::FunctionPassCtor, false,
232VGPRRegAlloc("vgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
233 cl::desc("Register allocator to use for VGPRs"));
234
235static cl::opt<WWMRegisterRegAlloc::FunctionPassCtor, false,
237 WWMRegAlloc("wwm-regalloc", cl::Hidden,
239 cl::desc("Register allocator to use for WWM registers"));
240
241static void initializeDefaultSGPRRegisterAllocatorOnce() {
242 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
243
244 if (!Ctor) {
245 Ctor = SGPRRegAlloc;
246 SGPRRegisterRegAlloc::setDefault(SGPRRegAlloc);
247 }
248}
249
250static void initializeDefaultVGPRRegisterAllocatorOnce() {
251 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
252
253 if (!Ctor) {
254 Ctor = VGPRRegAlloc;
255 VGPRRegisterRegAlloc::setDefault(VGPRRegAlloc);
256 }
257}
258
259static void initializeDefaultWWMRegisterAllocatorOnce() {
260 RegisterRegAlloc::FunctionPassCtor Ctor = WWMRegisterRegAlloc::getDefault();
261
262 if (!Ctor) {
263 Ctor = WWMRegAlloc;
264 WWMRegisterRegAlloc::setDefault(WWMRegAlloc);
265 }
266}
267
268static FunctionPass *createBasicSGPRRegisterAllocator() {
269 return createBasicRegisterAllocator(onlyAllocateSGPRs);
270}
271
272static FunctionPass *createGreedySGPRRegisterAllocator() {
273 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
274}
275
276static FunctionPass *createFastSGPRRegisterAllocator() {
277 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
278}
279
280static FunctionPass *createBasicVGPRRegisterAllocator() {
281 return createBasicRegisterAllocator(onlyAllocateVGPRs);
282}
283
284static FunctionPass *createGreedyVGPRRegisterAllocator() {
285 return createGreedyRegisterAllocator(onlyAllocateVGPRs);
286}
287
288static FunctionPass *createFastVGPRRegisterAllocator() {
289 return createFastRegisterAllocator(onlyAllocateVGPRs, true);
290}
291
292static FunctionPass *createBasicWWMRegisterAllocator() {
293 return createBasicRegisterAllocator(onlyAllocateWWMRegs);
294}
295
296static FunctionPass *createGreedyWWMRegisterAllocator() {
297 return createGreedyRegisterAllocator(onlyAllocateWWMRegs);
298}
299
300static FunctionPass *createFastWWMRegisterAllocator() {
301 return createFastRegisterAllocator(onlyAllocateWWMRegs, false);
302}
303
304static SGPRRegisterRegAlloc basicRegAllocSGPR(
305 "basic", "basic register allocator", createBasicSGPRRegisterAllocator);
306static SGPRRegisterRegAlloc greedyRegAllocSGPR(
307 "greedy", "greedy register allocator", createGreedySGPRRegisterAllocator);
308
309static SGPRRegisterRegAlloc fastRegAllocSGPR(
310 "fast", "fast register allocator", createFastSGPRRegisterAllocator);
311
312
313static VGPRRegisterRegAlloc basicRegAllocVGPR(
314 "basic", "basic register allocator", createBasicVGPRRegisterAllocator);
315static VGPRRegisterRegAlloc greedyRegAllocVGPR(
316 "greedy", "greedy register allocator", createGreedyVGPRRegisterAllocator);
317
318static VGPRRegisterRegAlloc fastRegAllocVGPR(
319 "fast", "fast register allocator", createFastVGPRRegisterAllocator);
320static WWMRegisterRegAlloc basicRegAllocWWMReg("basic",
321 "basic register allocator",
322 createBasicWWMRegisterAllocator);
323static WWMRegisterRegAlloc
324 greedyRegAllocWWMReg("greedy", "greedy register allocator",
325 createGreedyWWMRegisterAllocator);
326static WWMRegisterRegAlloc fastRegAllocWWMReg("fast", "fast register allocator",
327 createFastWWMRegisterAllocator);
328
332}
333} // anonymous namespace
334
335static cl::opt<bool>
337 cl::desc("Run early if-conversion"),
338 cl::init(false));
339
340static cl::opt<bool>
341OptExecMaskPreRA("amdgpu-opt-exec-mask-pre-ra", cl::Hidden,
342 cl::desc("Run pre-RA exec mask optimizations"),
343 cl::init(true));
344
345static cl::opt<bool>
346 LowerCtorDtor("amdgpu-lower-global-ctor-dtor",
347 cl::desc("Lower GPU ctor / dtors to globals on the device."),
348 cl::init(true), cl::Hidden);
349
350// Option to disable vectorizer for tests.
352 "amdgpu-load-store-vectorizer",
353 cl::desc("Enable load store vectorizer"),
354 cl::init(true),
355 cl::Hidden);
356
357// Option to control global loads scalarization
359 "amdgpu-scalarize-global-loads",
360 cl::desc("Enable global load scalarization"),
361 cl::init(true),
362 cl::Hidden);
363
364// Option to run internalize pass.
366 "amdgpu-internalize-symbols",
367 cl::desc("Enable elimination of non-kernel functions and unused globals"),
368 cl::init(false),
369 cl::Hidden);
370
371// Option to inline all early.
373 "amdgpu-early-inline-all",
374 cl::desc("Inline all functions early"),
375 cl::init(false),
376 cl::Hidden);
377
379 "amdgpu-enable-remove-incompatible-functions", cl::Hidden,
380 cl::desc("Enable removal of functions when they"
381 "use features not supported by the target GPU"),
382 cl::init(true));
383
385 "amdgpu-sdwa-peephole",
386 cl::desc("Enable SDWA peepholer"),
387 cl::init(true));
388
390 "amdgpu-dpp-combine",
391 cl::desc("Enable DPP combiner"),
392 cl::init(true));
393
394// Enable address space based alias analysis
396 cl::desc("Enable AMDGPU Alias Analysis"),
397 cl::init(true));
398
399// Enable lib calls simplifications
401 "amdgpu-simplify-libcall",
402 cl::desc("Enable amdgpu library simplifications"),
403 cl::init(true),
404 cl::Hidden);
405
407 "amdgpu-ir-lower-kernel-arguments",
408 cl::desc("Lower kernel argument loads in IR pass"),
409 cl::init(true),
410 cl::Hidden);
411
413 "amdgpu-reassign-regs",
414 cl::desc("Enable register reassign optimizations on gfx10+"),
415 cl::init(true),
416 cl::Hidden);
417
419 "amdgpu-opt-vgpr-liverange",
420 cl::desc("Enable VGPR liverange optimizations for if-else structure"),
421 cl::init(true), cl::Hidden);
422
424 "amdgpu-atomic-optimizer-strategy",
425 cl::desc("Select DPP or Iterative strategy for scan"),
428 clEnumValN(ScanOptions::DPP, "DPP", "Use DPP operations for scan"),
430 "Use Iterative approach for scan"),
431 clEnumValN(ScanOptions::None, "None", "Disable atomic optimizer")));
432
433// Enable Mode register optimization
435 "amdgpu-mode-register",
436 cl::desc("Enable mode register pass"),
437 cl::init(true),
438 cl::Hidden);
439
440// Enable GFX11+ s_delay_alu insertion
441static cl::opt<bool>
442 EnableInsertDelayAlu("amdgpu-enable-delay-alu",
443 cl::desc("Enable s_delay_alu insertion"),
444 cl::init(true), cl::Hidden);
445
446// Enable GFX11+ VOPD
447static cl::opt<bool>
448 EnableVOPD("amdgpu-enable-vopd",
449 cl::desc("Enable VOPD, dual issue of VALU in wave32"),
450 cl::init(true), cl::Hidden);
451
452// Option is used in lit tests to prevent deadcoding of patterns inspected.
453static cl::opt<bool>
454EnableDCEInRA("amdgpu-dce-in-ra",
455 cl::init(true), cl::Hidden,
456 cl::desc("Enable machine DCE inside regalloc"));
457
458static cl::opt<bool> EnableSetWavePriority("amdgpu-set-wave-priority",
459 cl::desc("Adjust wave priority"),
460 cl::init(false), cl::Hidden);
461
463 "amdgpu-scalar-ir-passes",
464 cl::desc("Enable scalar IR passes"),
465 cl::init(true),
466 cl::Hidden);
467
468static cl::opt<bool>
469 EnableSwLowerLDS("amdgpu-enable-sw-lower-lds",
470 cl::desc("Enable lowering of lds to global memory pass "
471 "and asan instrument resulting IR."),
472 cl::init(true), cl::Hidden);
473
475 "amdgpu-enable-lower-module-lds", cl::desc("Enable lower module lds pass"),
477 cl::Hidden);
478
480 "amdgpu-enable-pre-ra-optimizations",
481 cl::desc("Enable Pre-RA optimizations pass"), cl::init(true),
482 cl::Hidden);
483
485 "amdgpu-enable-promote-kernel-arguments",
486 cl::desc("Enable promotion of flat kernel pointer arguments to global"),
487 cl::Hidden, cl::init(true));
488
490 "amdgpu-enable-image-intrinsic-optimizer",
491 cl::desc("Enable image intrinsic optimizer pass"), cl::init(true),
492 cl::Hidden);
493
494static cl::opt<bool>
495 EnableLoopPrefetch("amdgpu-loop-prefetch",
496 cl::desc("Enable loop data prefetch on AMDGPU"),
497 cl::Hidden, cl::init(false));
498
500 AMDGPUSchedStrategy("amdgpu-sched-strategy",
501 cl::desc("Select custom AMDGPU scheduling strategy."),
502 cl::Hidden, cl::init(""));
503
505 "amdgpu-enable-rewrite-partial-reg-uses",
506 cl::desc("Enable rewrite partial reg uses pass"), cl::init(true),
507 cl::Hidden);
508
510 "amdgpu-enable-hipstdpar",
511 cl::desc("Enable HIP Standard Parallelism Offload support"), cl::init(false),
512 cl::Hidden);
513
514static cl::opt<bool>
515 EnableAMDGPUAttributor("amdgpu-attributor-enable",
516 cl::desc("Enable AMDGPUAttributorPass"),
517 cl::init(true), cl::Hidden);
518
520 "new-reg-bank-select",
521 cl::desc("Run amdgpu-regbankselect and amdgpu-regbanklegalize instead of "
522 "regbankselect"),
523 cl::init(false), cl::Hidden);
524
526 "amdgpu-link-time-closed-world",
527 cl::desc("Whether has closed-world assumption at link time"),
528 cl::init(false), cl::Hidden);
529
531 "amdgpu-enable-uniform-intrinsic-combine",
532 cl::desc("Enable/Disable the Uniform Intrinsic Combine Pass"),
533 cl::init(true), cl::Hidden);
534
536 // Register the target
539
623}
624
625static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
626 return std::make_unique<AMDGPUTargetObjectFile>();
627}
628
632
633static ScheduleDAGInstrs *
635 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
636 ScheduleDAGMILive *DAG =
637 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxOccupancySchedStrategy>(C));
638 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
639 if (ST.shouldClusterStores())
640 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
642 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
643 DAG->addMutation(createAMDGPUExportClusteringDAGMutation());
644 DAG->addMutation(createAMDGPUBarrierLatencyDAGMutation());
645 return DAG;
646}
647
648static ScheduleDAGInstrs *
650 ScheduleDAGMILive *DAG =
651 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxILPSchedStrategy>(C));
653 return DAG;
654}
655
656static ScheduleDAGInstrs *
658 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
660 C, std::make_unique<GCNMaxMemoryClauseSchedStrategy>(C));
661 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
662 if (ST.shouldClusterStores())
663 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
664 DAG->addMutation(createAMDGPUExportClusteringDAGMutation());
665 DAG->addMutation(createAMDGPUBarrierLatencyDAGMutation());
666 return DAG;
667}
668
669static ScheduleDAGInstrs *
671 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
672 auto *DAG = new GCNIterativeScheduler(
674 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
675 if (ST.shouldClusterStores())
676 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
678 return DAG;
679}
680
687
688static ScheduleDAGInstrs *
690 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
692 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
693 if (ST.shouldClusterStores())
694 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
695 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
697 return DAG;
698}
699
701SISchedRegistry("si", "Run SI's custom scheduler",
703
706 "Run GCN scheduler to maximize occupancy",
708
710 GCNMaxILPSchedRegistry("gcn-max-ilp", "Run GCN scheduler to maximize ilp",
712
714 "gcn-max-memory-clause", "Run GCN scheduler to maximize memory clause",
716
718 "gcn-iterative-max-occupancy-experimental",
719 "Run GCN scheduler to maximize occupancy (experimental)",
721
723 "gcn-iterative-minreg",
724 "Run GCN iterative scheduler for minimal register usage (experimental)",
726
728 "gcn-iterative-ilp",
729 "Run GCN iterative scheduler for ILP scheduling (experimental)",
731
734 if (!GPU.empty())
735 return GPU;
736
737 // Need to default to a target with flat support for HSA.
738 if (TT.isAMDGCN())
739 return TT.getOS() == Triple::AMDHSA ? "generic-hsa" : "generic";
740
741 return "r600";
742}
743
745 // The AMDGPU toolchain only supports generating shared objects, so we
746 // must always use PIC.
747 return Reloc::PIC_;
748}
749
751 StringRef CPU, StringRef FS,
752 const TargetOptions &Options,
753 std::optional<Reloc::Model> RM,
754 std::optional<CodeModel::Model> CM,
757 T, TT.computeDataLayout(), TT, getGPUOrDefault(TT, CPU), FS, Options,
759 OptLevel),
761 initAsmInfo();
762 if (TT.isAMDGCN()) {
763 if (getMCSubtargetInfo()->checkFeatures("+wavefrontsize64"))
765 else if (getMCSubtargetInfo()->checkFeatures("+wavefrontsize32"))
767 }
768}
769
772
774
776 Attribute GPUAttr = F.getFnAttribute("target-cpu");
777 return GPUAttr.isValid() ? GPUAttr.getValueAsString() : getTargetCPU();
778}
779
781 Attribute FSAttr = F.getFnAttribute("target-features");
782
783 return FSAttr.isValid() ? FSAttr.getValueAsString()
785}
786
789 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
791 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
792 if (ST.shouldClusterStores())
793 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
794 return DAG;
795}
796
797/// Predicate for Internalize pass.
798static bool mustPreserveGV(const GlobalValue &GV) {
799 if (const Function *F = dyn_cast<Function>(&GV))
800 return F->isDeclaration() || F->getName().starts_with("__asan_") ||
801 F->getName().starts_with("__sanitizer_") ||
802 AMDGPU::isEntryFunctionCC(F->getCallingConv());
803
805 return !GV.use_empty();
806}
807
811
814 if (Params.empty())
816 Params.consume_front("strategy=");
817 auto Result = StringSwitch<std::optional<ScanOptions>>(Params)
818 .Case("dpp", ScanOptions::DPP)
819 .Cases({"iterative", ""}, ScanOptions::Iterative)
820 .Case("none", ScanOptions::None)
821 .Default(std::nullopt);
822 if (Result)
823 return *Result;
824 return make_error<StringError>("invalid parameter", inconvertibleErrorCode());
825}
826
830 while (!Params.empty()) {
831 StringRef ParamName;
832 std::tie(ParamName, Params) = Params.split(';');
833 if (ParamName == "closed-world") {
834 Result.IsClosedWorld = true;
835 } else {
837 formatv("invalid AMDGPUAttributor pass parameter '{0}' ", ParamName)
838 .str(),
840 }
841 }
842 return Result;
843}
844
846
847#define GET_PASS_REGISTRY "AMDGPUPassRegistry.def"
849
850 PB.registerScalarOptimizerLateEPCallback(
851 [](FunctionPassManager &FPM, OptimizationLevel Level) {
852 if (Level == OptimizationLevel::O0)
853 return;
854
856 });
857
858 PB.registerVectorizerEndEPCallback(
859 [](FunctionPassManager &FPM, OptimizationLevel Level) {
860 if (Level == OptimizationLevel::O0)
861 return;
862
864 });
865
866 PB.registerPipelineEarlySimplificationEPCallback(
869 if (!isLTOPreLink(Phase)) {
870 // When we are not using -fgpu-rdc, we can run accelerator code
871 // selection relatively early, but still after linking to prevent
872 // eager removal of potentially reachable symbols.
873 if (EnableHipStdPar) {
876 }
878 }
879
880 if (Level == OptimizationLevel::O0)
881 return;
882
883 // We don't want to run internalization at per-module stage.
887 }
888
891 });
892
893 PB.registerPeepholeEPCallback(
894 [](FunctionPassManager &FPM, OptimizationLevel Level) {
895 if (Level == OptimizationLevel::O0)
896 return;
897
901
904 });
905
906 PB.registerCGSCCOptimizerLateEPCallback(
907 [this](CGSCCPassManager &PM, OptimizationLevel Level) {
908 if (Level == OptimizationLevel::O0)
909 return;
910
912
913 // Add promote kernel arguments pass to the opt pipeline right before
914 // infer address spaces which is needed to do actual address space
915 // rewriting.
916 if (Level.getSpeedupLevel() > OptimizationLevel::O1.getSpeedupLevel() &&
919
920 // Add infer address spaces pass to the opt pipeline after inlining
921 // but before SROA to increase SROA opportunities.
923
924 // This should run after inlining to have any chance of doing
925 // anything, and before other cleanup optimizations.
927
928 if (Level != OptimizationLevel::O0) {
929 // Promote alloca to vector before SROA and loop unroll. If we
930 // manage to eliminate allocas before unroll we may choose to unroll
931 // less.
933 }
934
935 PM.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
936 });
937
938 // FIXME: Why is AMDGPUAttributor not in CGSCC?
939 PB.registerOptimizerLastEPCallback([this](ModulePassManager &MPM,
940 OptimizationLevel Level,
942 if (Level != OptimizationLevel::O0) {
943 if (!isLTOPreLink(Phase)) {
944 if (EnableAMDGPUAttributor && getTargetTriple().isAMDGCN()) {
946 MPM.addPass(AMDGPUAttributorPass(*this, Opts, Phase));
947 }
948 }
949 }
950 });
951
952 PB.registerFullLinkTimeOptimizationLastEPCallback(
953 [this](ModulePassManager &PM, OptimizationLevel Level) {
954 // When we are using -fgpu-rdc, we can only run accelerator code
955 // selection after linking to prevent, otherwise we end up removing
956 // potentially reachable symbols that were exported as external in other
957 // modules.
958 if (EnableHipStdPar) {
961 }
962 // We want to support the -lto-partitions=N option as "best effort".
963 // For that, we need to lower LDS earlier in the pipeline before the
964 // module is partitioned for codegen.
966 PM.addPass(AMDGPUSwLowerLDSPass(*this));
969 if (Level != OptimizationLevel::O0) {
970 // We only want to run this with O2 or higher since inliner and SROA
971 // don't run in O1.
972 if (Level != OptimizationLevel::O1) {
973 PM.addPass(
975 }
976 // Do we really need internalization in LTO?
977 if (InternalizeSymbols) {
980 }
981 if (EnableAMDGPUAttributor && getTargetTriple().isAMDGCN()) {
984 Opt.IsClosedWorld = true;
987 }
988 }
989 if (!NoKernelInfoEndLTO) {
991 FPM.addPass(KernelInfoPrinter(this));
992 PM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
993 }
994 });
995
996 PB.registerRegClassFilterParsingCallback(
997 [](StringRef FilterName) -> RegAllocFilterFunc {
998 if (FilterName == "sgpr")
999 return onlyAllocateSGPRs;
1000 if (FilterName == "vgpr")
1001 return onlyAllocateVGPRs;
1002 if (FilterName == "wwm")
1003 return onlyAllocateWWMRegs;
1004 return nullptr;
1005 });
1006}
1007
1008int64_t AMDGPUTargetMachine::getNullPointerValue(unsigned AddrSpace) {
1009 return (AddrSpace == AMDGPUAS::LOCAL_ADDRESS ||
1010 AddrSpace == AMDGPUAS::PRIVATE_ADDRESS ||
1011 AddrSpace == AMDGPUAS::REGION_ADDRESS)
1012 ? -1
1013 : 0;
1014}
1015
1017 unsigned DestAS) const {
1018 return AMDGPU::isFlatGlobalAddrSpace(SrcAS) &&
1020}
1021
1023 if (auto *Arg = dyn_cast<Argument>(V);
1024 Arg &&
1025 AMDGPU::isModuleEntryFunctionCC(Arg->getParent()->getCallingConv()) &&
1026 !Arg->hasByRefAttr())
1028
1029 const auto *LD = dyn_cast<LoadInst>(V);
1030 if (!LD) // TODO: Handle invariant load like constant.
1032
1033 // It must be a generic pointer loaded.
1034 assert(V->getType()->getPointerAddressSpace() == AMDGPUAS::FLAT_ADDRESS);
1035
1036 const auto *Ptr = LD->getPointerOperand();
1037 if (Ptr->getType()->getPointerAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS)
1039 // For a generic pointer loaded from the constant memory, it could be assumed
1040 // as a global pointer since the constant memory is only populated on the
1041 // host side. As implied by the offload programming model, only global
1042 // pointers could be referenced on the host side.
1044}
1045
1046std::pair<const Value *, unsigned>
1048 if (auto *II = dyn_cast<IntrinsicInst>(V)) {
1049 switch (II->getIntrinsicID()) {
1050 case Intrinsic::amdgcn_is_shared:
1051 return std::pair(II->getArgOperand(0), AMDGPUAS::LOCAL_ADDRESS);
1052 case Intrinsic::amdgcn_is_private:
1053 return std::pair(II->getArgOperand(0), AMDGPUAS::PRIVATE_ADDRESS);
1054 default:
1055 break;
1056 }
1057 return std::pair(nullptr, -1);
1058 }
1059 // Check the global pointer predication based on
1060 // (!is_share(p) && !is_private(p)). Note that logic 'and' is commutative and
1061 // the order of 'is_shared' and 'is_private' is not significant.
1062 Value *Ptr;
1063 if (match(
1064 const_cast<Value *>(V),
1067 m_Deferred(Ptr))))))
1068 return std::pair(Ptr, AMDGPUAS::GLOBAL_ADDRESS);
1069
1070 return std::pair(nullptr, -1);
1071}
1072
1073unsigned
1088
1090 Module &M, unsigned NumParts,
1091 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback) {
1092 // FIXME(?): Would be better to use an already existing Analysis/PassManager,
1093 // but all current users of this API don't have one ready and would need to
1094 // create one anyway. Let's hide the boilerplate for now to keep it simple.
1095
1100
1101 PassBuilder PB(this);
1102 PB.registerModuleAnalyses(MAM);
1103 PB.registerFunctionAnalyses(FAM);
1104 PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
1105
1107 MPM.addPass(AMDGPUSplitModulePass(NumParts, ModuleCallback));
1108 MPM.run(M, MAM);
1109 return true;
1110}
1111
1112//===----------------------------------------------------------------------===//
1113// GCN Target Machine (SI+)
1114//===----------------------------------------------------------------------===//
1115
1117 StringRef CPU, StringRef FS,
1118 const TargetOptions &Options,
1119 std::optional<Reloc::Model> RM,
1120 std::optional<CodeModel::Model> CM,
1121 CodeGenOptLevel OL, bool JIT)
1122 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
1123
1124const TargetSubtargetInfo *
1126 StringRef GPU = getGPUName(F);
1128
1129 SmallString<128> SubtargetKey(GPU);
1130 SubtargetKey.append(FS);
1131
1132 auto &I = SubtargetMap[SubtargetKey];
1133 if (!I) {
1134 // This needs to be done before we create a new subtarget since any
1135 // creation will depend on the TM and the code generation flags on the
1136 // function that reside in TargetOptions.
1138 I = std::make_unique<GCNSubtarget>(TargetTriple, GPU, FS, *this);
1139 }
1140
1141 I->setScalarizeGlobalBehavior(ScalarizeGlobal);
1142
1143 return I.get();
1144}
1145
1148 return TargetTransformInfo(std::make_unique<GCNTTIImpl>(this, F));
1149}
1150
1153 CodeGenFileType FileType, const CGPassBuilderOption &Opts,
1155 AMDGPUCodeGenPassBuilder CGPB(*this, Opts, PIC);
1156 return CGPB.buildPipeline(MPM, Out, DwoOut, FileType);
1157}
1158
1161 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1162 if (ST.enableSIScheduler())
1164
1165 Attribute SchedStrategyAttr =
1166 C->MF->getFunction().getFnAttribute("amdgpu-sched-strategy");
1167 StringRef SchedStrategy = SchedStrategyAttr.isValid()
1168 ? SchedStrategyAttr.getValueAsString()
1170
1171 if (SchedStrategy == "max-ilp")
1173
1174 if (SchedStrategy == "max-memory-clause")
1176
1177 if (SchedStrategy == "iterative-ilp")
1179
1180 if (SchedStrategy == "iterative-minreg")
1181 return createMinRegScheduler(C);
1182
1183 if (SchedStrategy == "iterative-maxocc")
1185
1187}
1188
1191 ScheduleDAGMI *DAG =
1192 new GCNPostScheduleDAGMILive(C, std::make_unique<PostGenericScheduler>(C),
1193 /*RemoveKillFlags=*/true);
1194 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1196 if (ST.shouldClusterStores())
1199 if ((EnableVOPD.getNumOccurrences() ||
1201 EnableVOPD)
1205 return DAG;
1206}
1207//===----------------------------------------------------------------------===//
1208// AMDGPU Legacy Pass Setup
1209//===----------------------------------------------------------------------===//
1210
1211std::unique_ptr<CSEConfigBase> llvm::AMDGPUPassConfig::getCSEConfig() const {
1212 return getStandardCSEConfigForOpt(TM->getOptLevel());
1213}
1214
1215namespace {
1216
1217class GCNPassConfig final : public AMDGPUPassConfig {
1218public:
1219 GCNPassConfig(TargetMachine &TM, PassManagerBase &PM)
1220 : AMDGPUPassConfig(TM, PM) {
1221 // It is necessary to know the register usage of the entire call graph. We
1222 // allow calls without EnableAMDGPUFunctionCalls if they are marked
1223 // noinline, so this is always required.
1224 setRequiresCodeGenSCCOrder(true);
1225 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
1226 }
1227
1228 GCNTargetMachine &getGCNTargetMachine() const {
1229 return getTM<GCNTargetMachine>();
1230 }
1231
1232 bool addPreISel() override;
1233 void addMachineSSAOptimization() override;
1234 bool addILPOpts() override;
1235 bool addInstSelector() override;
1236 bool addIRTranslator() override;
1237 void addPreLegalizeMachineIR() override;
1238 bool addLegalizeMachineIR() override;
1239 void addPreRegBankSelect() override;
1240 bool addRegBankSelect() override;
1241 void addPreGlobalInstructionSelect() override;
1242 bool addGlobalInstructionSelect() override;
1243 void addPreRegAlloc() override;
1244 void addFastRegAlloc() override;
1245 void addOptimizedRegAlloc() override;
1246
1247 FunctionPass *createSGPRAllocPass(bool Optimized);
1248 FunctionPass *createVGPRAllocPass(bool Optimized);
1249 FunctionPass *createWWMRegAllocPass(bool Optimized);
1250 FunctionPass *createRegAllocPass(bool Optimized) override;
1251
1252 bool addRegAssignAndRewriteFast() override;
1253 bool addRegAssignAndRewriteOptimized() override;
1254
1255 bool addPreRewrite() override;
1256 void addPostRegAlloc() override;
1257 void addPreSched2() override;
1258 void addPreEmitPass() override;
1259 void addPostBBSections() override;
1260};
1261
1262} // end anonymous namespace
1263
1265 : TargetPassConfig(TM, PM) {
1266 // Exceptions and StackMaps are not supported, so these passes will never do
1267 // anything.
1270 // Garbage collection is not supported.
1273}
1274
1281
1286 // ReassociateGEPs exposes more opportunities for SLSR. See
1287 // the example in reassociate-geps-and-slsr.ll.
1289 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
1290 // EarlyCSE can reuse.
1292 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
1294 // NaryReassociate on GEPs creates redundant common expressions, so run
1295 // EarlyCSE after it.
1297}
1298
1301
1302 if (RemoveIncompatibleFunctions && TM.getTargetTriple().isAMDGCN())
1304
1305 // There is no reason to run these.
1309
1311 if (LowerCtorDtor)
1313
1314 if (TM.getTargetTriple().isAMDGCN() &&
1317
1320
1321 // This can be disabled by passing ::Disable here or on the command line
1322 // with --expand-variadics-override=disable.
1324
1325 // Function calls are not supported, so make sure we inline everything.
1328
1329 // Handle uses of OpenCL image2d_t, image3d_t and sampler_t arguments.
1330 if (TM.getTargetTriple().getArch() == Triple::r600)
1332
1333 // Make enqueued block runtime handles externally visible.
1335
1336 // Lower LDS accesses to global memory pass if address sanitizer is enabled.
1337 if (EnableSwLowerLDS)
1339
1340 // Runs before PromoteAlloca so the latter can account for function uses
1343 }
1344
1345 // Run atomic optimizer before Atomic Expand
1346 if ((TM.getTargetTriple().isAMDGCN()) &&
1347 (TM.getOptLevel() >= CodeGenOptLevel::Less) &&
1350 }
1351
1353
1354 if (TM.getOptLevel() > CodeGenOptLevel::None) {
1356
1359
1363 AAResults &AAR) {
1364 if (auto *WrapperPass = P.getAnalysisIfAvailable<AMDGPUAAWrapperPass>())
1365 AAR.addAAResult(WrapperPass->getResult());
1366 }));
1367 }
1368
1369 if (TM.getTargetTriple().isAMDGCN()) {
1370 // TODO: May want to move later or split into an early and late one.
1372 }
1373
1374 // Try to hoist loop invariant parts of divisions AMDGPUCodeGenPrepare may
1375 // have expanded.
1376 if (TM.getOptLevel() > CodeGenOptLevel::Less)
1378 }
1379
1381
1382 // EarlyCSE is not always strong enough to clean up what LSR produces. For
1383 // example, GVN can combine
1384 //
1385 // %0 = add %a, %b
1386 // %1 = add %b, %a
1387 //
1388 // and
1389 //
1390 // %0 = shl nsw %a, 2
1391 // %1 = shl %a, 2
1392 //
1393 // but EarlyCSE can do neither of them.
1396}
1397
1399 if (TM->getTargetTriple().isAMDGCN() &&
1400 TM->getOptLevel() > CodeGenOptLevel::None)
1402
1403 if (TM->getTargetTriple().isAMDGCN() && EnableLowerKernelArguments)
1405
1407
1410
1411 if (TM->getTargetTriple().isAMDGCN()) {
1412 // This lowering has been placed after codegenprepare to take advantage of
1413 // address mode matching (which is why it isn't put with the LDS lowerings).
1414 // It could be placed anywhere before uniformity annotations (an analysis
1415 // that it changes by splitting up fat pointers into their components)
1416 // but has been put before switch lowering and CFG flattening so that those
1417 // passes can run on the more optimized control flow this pass creates in
1418 // many cases.
1421 // In accordance with the above FIXME, manually force all the
1422 // function-level passes into a CGSCCPassManager.
1423 addPass(new DummyCGSCCPass());
1424 }
1425
1426 // LowerSwitch pass may introduce unreachable blocks that can
1427 // cause unexpected behavior for subsequent passes. Placing it
1428 // here seems better that these blocks would get cleaned up by
1429 // UnreachableBlockElim inserted next in the pass flow.
1431}
1432
1434 if (TM->getOptLevel() > CodeGenOptLevel::None)
1436 return false;
1437}
1438
1443
1445 // Do nothing. GC is not supported.
1446 return false;
1447}
1448
1449//===----------------------------------------------------------------------===//
1450// GCN Legacy Pass Setup
1451//===----------------------------------------------------------------------===//
1452
1453bool GCNPassConfig::addPreISel() {
1455
1456 if (TM->getOptLevel() > CodeGenOptLevel::None)
1457 addPass(createSinkingPass());
1458
1459 if (TM->getOptLevel() > CodeGenOptLevel::None)
1461
1462 // Merge divergent exit nodes. StructurizeCFG won't recognize the multi-exit
1463 // regions formed by them.
1465 addPass(createFixIrreduciblePass());
1466 addPass(createUnifyLoopExitsPass());
1467 addPass(createStructurizeCFGPass(false)); // true -> SkipUniformRegions
1468
1471 // TODO: Move this right after structurizeCFG to avoid extra divergence
1472 // analysis. This depends on stopping SIAnnotateControlFlow from making
1473 // control flow modifications.
1475
1476 // SDAG requires LCSSA, GlobalISel does not. Disable LCSSA for -global-isel
1477 // with -new-reg-bank-select and without any of the fallback options.
1479 !isGlobalISelAbortEnabled() || !NewRegBankSelect)
1480 addPass(createLCSSAPass());
1481
1482 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1484
1485 return false;
1486}
1487
1488void GCNPassConfig::addMachineSSAOptimization() {
1490
1491 // We want to fold operands after PeepholeOptimizer has run (or as part of
1492 // it), because it will eliminate extra copies making it easier to fold the
1493 // real source operand. We want to eliminate dead instructions after, so that
1494 // we see fewer uses of the copies. We then need to clean up the dead
1495 // instructions leftover after the operands are folded as well.
1496 //
1497 // XXX - Can we get away without running DeadMachineInstructionElim again?
1498 addPass(&SIFoldOperandsLegacyID);
1499 if (EnableDPPCombine)
1500 addPass(&GCNDPPCombineLegacyID);
1502 if (isPassEnabled(EnableSDWAPeephole)) {
1503 addPass(&SIPeepholeSDWALegacyID);
1504 addPass(&EarlyMachineLICMID);
1505 addPass(&MachineCSELegacyID);
1506 addPass(&SIFoldOperandsLegacyID);
1507 }
1510}
1511
1512bool GCNPassConfig::addILPOpts() {
1514 addPass(&EarlyIfConverterLegacyID);
1515
1517 return false;
1518}
1519
1520bool GCNPassConfig::addInstSelector() {
1522 addPass(&SIFixSGPRCopiesLegacyID);
1524 return false;
1525}
1526
1527bool GCNPassConfig::addIRTranslator() {
1528 addPass(new IRTranslator(getOptLevel()));
1529 return false;
1530}
1531
1532void GCNPassConfig::addPreLegalizeMachineIR() {
1533 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1534 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone));
1535 addPass(new Localizer());
1536}
1537
1538bool GCNPassConfig::addLegalizeMachineIR() {
1539 addPass(new Legalizer());
1540 return false;
1541}
1542
1543void GCNPassConfig::addPreRegBankSelect() {
1544 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1545 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone));
1547}
1548
1549bool GCNPassConfig::addRegBankSelect() {
1550 if (NewRegBankSelect) {
1553 } else {
1554 addPass(new RegBankSelect());
1555 }
1556 return false;
1557}
1558
1559void GCNPassConfig::addPreGlobalInstructionSelect() {
1560 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1561 addPass(createAMDGPURegBankCombiner(IsOptNone));
1562}
1563
1564bool GCNPassConfig::addGlobalInstructionSelect() {
1565 addPass(new InstructionSelect(getOptLevel()));
1566 return false;
1567}
1568
1569void GCNPassConfig::addFastRegAlloc() {
1570 // FIXME: We have to disable the verifier here because of PHIElimination +
1571 // TwoAddressInstructions disabling it.
1572
1573 // This must be run immediately after phi elimination and before
1574 // TwoAddressInstructions, otherwise the processing of the tied operand of
1575 // SI_ELSE will introduce a copy of the tied operand source after the else.
1577
1579
1581}
1582
1583void GCNPassConfig::addPreRegAlloc() {
1584 if (getOptLevel() != CodeGenOptLevel::None)
1586}
1587
1588void GCNPassConfig::addOptimizedRegAlloc() {
1589 if (EnableDCEInRA)
1591
1592 // FIXME: when an instruction has a Killed operand, and the instruction is
1593 // inside a bundle, seems only the BUNDLE instruction appears as the Kills of
1594 // the register in LiveVariables, this would trigger a failure in verifier,
1595 // we should fix it and enable the verifier.
1596 if (OptVGPRLiveRange)
1598
1599 // This must be run immediately after phi elimination and before
1600 // TwoAddressInstructions, otherwise the processing of the tied operand of
1601 // SI_ELSE will introduce a copy of the tied operand source after the else.
1603
1606
1607 if (isPassEnabled(EnablePreRAOptimizations))
1609
1610 // Allow the scheduler to run before SIWholeQuadMode inserts exec manipulation
1611 // instructions that cause scheduling barriers.
1613
1614 if (OptExecMaskPreRA)
1616
1617 // This is not an essential optimization and it has a noticeable impact on
1618 // compilation time, so we only enable it from O2.
1619 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1621
1623}
1624
1625bool GCNPassConfig::addPreRewrite() {
1627 addPass(&GCNNSAReassignID);
1628
1630 return true;
1631}
1632
1633FunctionPass *GCNPassConfig::createSGPRAllocPass(bool Optimized) {
1634 // Initialize the global default.
1635 llvm::call_once(InitializeDefaultSGPRRegisterAllocatorFlag,
1636 initializeDefaultSGPRRegisterAllocatorOnce);
1637
1638 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
1639 if (Ctor != useDefaultRegisterAllocator)
1640 return Ctor();
1641
1642 if (Optimized)
1643 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
1644
1645 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
1646}
1647
1648FunctionPass *GCNPassConfig::createVGPRAllocPass(bool Optimized) {
1649 // Initialize the global default.
1650 llvm::call_once(InitializeDefaultVGPRRegisterAllocatorFlag,
1651 initializeDefaultVGPRRegisterAllocatorOnce);
1652
1653 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
1654 if (Ctor != useDefaultRegisterAllocator)
1655 return Ctor();
1656
1657 if (Optimized)
1658 return createGreedyVGPRRegisterAllocator();
1659
1660 return createFastVGPRRegisterAllocator();
1661}
1662
1663FunctionPass *GCNPassConfig::createWWMRegAllocPass(bool Optimized) {
1664 // Initialize the global default.
1665 llvm::call_once(InitializeDefaultWWMRegisterAllocatorFlag,
1666 initializeDefaultWWMRegisterAllocatorOnce);
1667
1668 RegisterRegAlloc::FunctionPassCtor Ctor = WWMRegisterRegAlloc::getDefault();
1669 if (Ctor != useDefaultRegisterAllocator)
1670 return Ctor();
1671
1672 if (Optimized)
1673 return createGreedyWWMRegisterAllocator();
1674
1675 return createFastWWMRegisterAllocator();
1676}
1677
1678FunctionPass *GCNPassConfig::createRegAllocPass(bool Optimized) {
1679 llvm_unreachable("should not be used");
1680}
1681
1683 "-regalloc not supported with amdgcn. Use -sgpr-regalloc, -wwm-regalloc, "
1684 "and -vgpr-regalloc";
1685
1686bool GCNPassConfig::addRegAssignAndRewriteFast() {
1687 if (!usingDefaultRegAlloc())
1689
1690 addPass(&GCNPreRALongBranchRegID);
1691
1692 addPass(createSGPRAllocPass(false));
1693
1694 // Equivalent of PEI for SGPRs.
1695 addPass(&SILowerSGPRSpillsLegacyID);
1696
1697 // To Allocate wwm registers used in whole quad mode operations (for shaders).
1699
1700 // For allocating other wwm register operands.
1701 addPass(createWWMRegAllocPass(false));
1702
1703 addPass(&SILowerWWMCopiesLegacyID);
1705
1706 // For allocating per-thread VGPRs.
1707 addPass(createVGPRAllocPass(false));
1708
1709 return true;
1710}
1711
1712bool GCNPassConfig::addRegAssignAndRewriteOptimized() {
1713 if (!usingDefaultRegAlloc())
1715
1716 addPass(&GCNPreRALongBranchRegID);
1717
1718 addPass(createSGPRAllocPass(true));
1719
1720 // Commit allocated register changes. This is mostly necessary because too
1721 // many things rely on the use lists of the physical registers, such as the
1722 // verifier. This is only necessary with allocators which use LiveIntervals,
1723 // since FastRegAlloc does the replacements itself.
1724 addPass(createVirtRegRewriter(false));
1725
1726 // At this point, the sgpr-regalloc has been done and it is good to have the
1727 // stack slot coloring to try to optimize the SGPR spill stack indices before
1728 // attempting the custom SGPR spill lowering.
1729 addPass(&StackSlotColoringID);
1730
1731 // Equivalent of PEI for SGPRs.
1732 addPass(&SILowerSGPRSpillsLegacyID);
1733
1734 // To Allocate wwm registers used in whole quad mode operations (for shaders).
1736
1737 // For allocating other whole wave mode registers.
1738 addPass(createWWMRegAllocPass(true));
1739 addPass(&SILowerWWMCopiesLegacyID);
1740 addPass(createVirtRegRewriter(false));
1742
1743 // For allocating per-thread VGPRs.
1744 addPass(createVGPRAllocPass(true));
1745
1746 addPreRewrite();
1747 addPass(&VirtRegRewriterID);
1748
1750
1751 return true;
1752}
1753
1754void GCNPassConfig::addPostRegAlloc() {
1755 addPass(&SIFixVGPRCopiesID);
1756 if (getOptLevel() > CodeGenOptLevel::None)
1759}
1760
1761void GCNPassConfig::addPreSched2() {
1762 if (TM->getOptLevel() > CodeGenOptLevel::None)
1764 addPass(&SIPostRABundlerLegacyID);
1765}
1766
1767void GCNPassConfig::addPreEmitPass() {
1768 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less))
1769 addPass(&GCNCreateVOPDID);
1770 addPass(createSIMemoryLegalizerPass());
1771 addPass(createSIInsertWaitcntsPass());
1772
1773 addPass(createSIModeRegisterPass());
1774
1775 if (getOptLevel() > CodeGenOptLevel::None)
1776 addPass(&SIInsertHardClausesID);
1777
1779 if (isPassEnabled(EnableSetWavePriority, CodeGenOptLevel::Less))
1781 if (getOptLevel() > CodeGenOptLevel::None)
1782 addPass(&SIPreEmitPeepholeID);
1783 // The hazard recognizer that runs as part of the post-ra scheduler does not
1784 // guarantee to be able handle all hazards correctly. This is because if there
1785 // are multiple scheduling regions in a basic block, the regions are scheduled
1786 // bottom up, so when we begin to schedule a region we don't know what
1787 // instructions were emitted directly before it.
1788 //
1789 // Here we add a stand-alone hazard recognizer pass which can handle all
1790 // cases.
1791 addPass(&PostRAHazardRecognizerID);
1792
1794
1796
1797 if (isPassEnabled(EnableInsertDelayAlu, CodeGenOptLevel::Less))
1798 addPass(&AMDGPUInsertDelayAluID);
1799
1800 addPass(&BranchRelaxationPassID);
1801}
1802
1803void GCNPassConfig::addPostBBSections() {
1804 // We run this later to avoid passes like livedebugvalues and BBSections
1805 // having to deal with the apparent multi-entry functions we may generate.
1807}
1808
1810 return new GCNPassConfig(*this, PM);
1811}
1812
1818
1825
1829
1836
1839 SMDiagnostic &Error, SMRange &SourceRange) const {
1840 const yaml::SIMachineFunctionInfo &YamlMFI =
1841 static_cast<const yaml::SIMachineFunctionInfo &>(MFI_);
1842 MachineFunction &MF = PFS.MF;
1844 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
1845
1846 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange))
1847 return true;
1848
1849 if (MFI->Occupancy == 0) {
1850 // Fixup the subtarget dependent default value.
1851 MFI->Occupancy = ST.getOccupancyWithWorkGroupSizes(MF).second;
1852 }
1853
1854 auto parseRegister = [&](const yaml::StringValue &RegName, Register &RegVal) {
1855 Register TempReg;
1856 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) {
1857 SourceRange = RegName.SourceRange;
1858 return true;
1859 }
1860 RegVal = TempReg;
1861
1862 return false;
1863 };
1864
1865 auto parseOptionalRegister = [&](const yaml::StringValue &RegName,
1866 Register &RegVal) {
1867 return !RegName.Value.empty() && parseRegister(RegName, RegVal);
1868 };
1869
1870 if (parseOptionalRegister(YamlMFI.VGPRForAGPRCopy, MFI->VGPRForAGPRCopy))
1871 return true;
1872
1873 if (parseOptionalRegister(YamlMFI.SGPRForEXECCopy, MFI->SGPRForEXECCopy))
1874 return true;
1875
1876 if (parseOptionalRegister(YamlMFI.LongBranchReservedReg,
1877 MFI->LongBranchReservedReg))
1878 return true;
1879
1880 auto diagnoseRegisterClass = [&](const yaml::StringValue &RegName) {
1881 // Create a diagnostic for a the register string literal.
1882 const MemoryBuffer &Buffer =
1883 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID());
1884 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1,
1885 RegName.Value.size(), SourceMgr::DK_Error,
1886 "incorrect register class for field", RegName.Value,
1887 {}, {});
1888 SourceRange = RegName.SourceRange;
1889 return true;
1890 };
1891
1892 if (parseRegister(YamlMFI.ScratchRSrcReg, MFI->ScratchRSrcReg) ||
1893 parseRegister(YamlMFI.FrameOffsetReg, MFI->FrameOffsetReg) ||
1894 parseRegister(YamlMFI.StackPtrOffsetReg, MFI->StackPtrOffsetReg))
1895 return true;
1896
1897 if (MFI->ScratchRSrcReg != AMDGPU::PRIVATE_RSRC_REG &&
1898 !AMDGPU::SGPR_128RegClass.contains(MFI->ScratchRSrcReg)) {
1899 return diagnoseRegisterClass(YamlMFI.ScratchRSrcReg);
1900 }
1901
1902 if (MFI->FrameOffsetReg != AMDGPU::FP_REG &&
1903 !AMDGPU::SGPR_32RegClass.contains(MFI->FrameOffsetReg)) {
1904 return diagnoseRegisterClass(YamlMFI.FrameOffsetReg);
1905 }
1906
1907 if (MFI->StackPtrOffsetReg != AMDGPU::SP_REG &&
1908 !AMDGPU::SGPR_32RegClass.contains(MFI->StackPtrOffsetReg)) {
1909 return diagnoseRegisterClass(YamlMFI.StackPtrOffsetReg);
1910 }
1911
1912 for (const auto &YamlReg : YamlMFI.WWMReservedRegs) {
1913 Register ParsedReg;
1914 if (parseRegister(YamlReg, ParsedReg))
1915 return true;
1916
1917 MFI->reserveWWMRegister(ParsedReg);
1918 }
1919
1920 for (const auto &[_, Info] : PFS.VRegInfosNamed) {
1921 MFI->setFlag(Info->VReg, Info->Flags);
1922 }
1923 for (const auto &[_, Info] : PFS.VRegInfos) {
1924 MFI->setFlag(Info->VReg, Info->Flags);
1925 }
1926
1927 for (const auto &YamlRegStr : YamlMFI.SpillPhysVGPRS) {
1928 Register ParsedReg;
1929 if (parseRegister(YamlRegStr, ParsedReg))
1930 return true;
1931 MFI->SpillPhysVGPRs.push_back(ParsedReg);
1932 }
1933
1934 auto parseAndCheckArgument = [&](const std::optional<yaml::SIArgument> &A,
1935 const TargetRegisterClass &RC,
1936 ArgDescriptor &Arg, unsigned UserSGPRs,
1937 unsigned SystemSGPRs) {
1938 // Skip parsing if it's not present.
1939 if (!A)
1940 return false;
1941
1942 if (A->IsRegister) {
1943 Register Reg;
1944 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) {
1945 SourceRange = A->RegisterName.SourceRange;
1946 return true;
1947 }
1948 if (!RC.contains(Reg))
1949 return diagnoseRegisterClass(A->RegisterName);
1951 } else
1952 Arg = ArgDescriptor::createStack(A->StackOffset);
1953 // Check and apply the optional mask.
1954 if (A->Mask)
1955 Arg = ArgDescriptor::createArg(Arg, *A->Mask);
1956
1957 MFI->NumUserSGPRs += UserSGPRs;
1958 MFI->NumSystemSGPRs += SystemSGPRs;
1959 return false;
1960 };
1961
1962 if (YamlMFI.ArgInfo &&
1963 (parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentBuffer,
1964 AMDGPU::SGPR_128RegClass,
1965 MFI->ArgInfo.PrivateSegmentBuffer, 4, 0) ||
1966 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchPtr,
1967 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchPtr,
1968 2, 0) ||
1969 parseAndCheckArgument(YamlMFI.ArgInfo->QueuePtr, AMDGPU::SReg_64RegClass,
1970 MFI->ArgInfo.QueuePtr, 2, 0) ||
1971 parseAndCheckArgument(YamlMFI.ArgInfo->KernargSegmentPtr,
1972 AMDGPU::SReg_64RegClass,
1973 MFI->ArgInfo.KernargSegmentPtr, 2, 0) ||
1974 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchID,
1975 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchID,
1976 2, 0) ||
1977 parseAndCheckArgument(YamlMFI.ArgInfo->FlatScratchInit,
1978 AMDGPU::SReg_64RegClass,
1979 MFI->ArgInfo.FlatScratchInit, 2, 0) ||
1980 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentSize,
1981 AMDGPU::SGPR_32RegClass,
1982 MFI->ArgInfo.PrivateSegmentSize, 0, 0) ||
1983 parseAndCheckArgument(YamlMFI.ArgInfo->LDSKernelId,
1984 AMDGPU::SGPR_32RegClass,
1985 MFI->ArgInfo.LDSKernelId, 0, 1) ||
1986 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDX,
1987 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDX,
1988 0, 1) ||
1989 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDY,
1990 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDY,
1991 0, 1) ||
1992 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDZ,
1993 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDZ,
1994 0, 1) ||
1995 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupInfo,
1996 AMDGPU::SGPR_32RegClass,
1997 MFI->ArgInfo.WorkGroupInfo, 0, 1) ||
1998 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentWaveByteOffset,
1999 AMDGPU::SGPR_32RegClass,
2000 MFI->ArgInfo.PrivateSegmentWaveByteOffset, 0, 1) ||
2001 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitArgPtr,
2002 AMDGPU::SReg_64RegClass,
2003 MFI->ArgInfo.ImplicitArgPtr, 0, 0) ||
2004 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitBufferPtr,
2005 AMDGPU::SReg_64RegClass,
2006 MFI->ArgInfo.ImplicitBufferPtr, 2, 0) ||
2007 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDX,
2008 AMDGPU::VGPR_32RegClass,
2009 MFI->ArgInfo.WorkItemIDX, 0, 0) ||
2010 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDY,
2011 AMDGPU::VGPR_32RegClass,
2012 MFI->ArgInfo.WorkItemIDY, 0, 0) ||
2013 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDZ,
2014 AMDGPU::VGPR_32RegClass,
2015 MFI->ArgInfo.WorkItemIDZ, 0, 0)))
2016 return true;
2017
2018 if (ST.hasIEEEMode())
2019 MFI->Mode.IEEE = YamlMFI.Mode.IEEE;
2020 if (ST.hasDX10ClampMode())
2021 MFI->Mode.DX10Clamp = YamlMFI.Mode.DX10Clamp;
2022
2023 // FIXME: Move proper support for denormal-fp-math into base MachineFunction
2024 MFI->Mode.FP32Denormals.Input = YamlMFI.Mode.FP32InputDenormals
2027 MFI->Mode.FP32Denormals.Output = YamlMFI.Mode.FP32OutputDenormals
2030
2037
2038 if (YamlMFI.HasInitWholeWave)
2039 MFI->setInitWholeWave();
2040
2041 return false;
2042}
2043
2044//===----------------------------------------------------------------------===//
2045// AMDGPU CodeGen Pass Builder interface.
2046//===----------------------------------------------------------------------===//
2047
2048AMDGPUCodeGenPassBuilder::AMDGPUCodeGenPassBuilder(
2049 GCNTargetMachine &TM, const CGPassBuilderOption &Opts,
2051 : CodeGenPassBuilder(TM, Opts, PIC) {
2052 Opt.MISchedPostRA = true;
2053 Opt.RequiresCodeGenSCCOrder = true;
2054 // Exceptions and StackMaps are not supported, so these passes will never do
2055 // anything.
2056 // Garbage collection is not supported.
2057 disablePass<StackMapLivenessPass, FuncletLayoutPass,
2059}
2060
2061void AMDGPUCodeGenPassBuilder::addIRPasses(AddIRPass &addPass) const {
2062 if (RemoveIncompatibleFunctions && TM.getTargetTriple().isAMDGCN())
2064
2066 if (LowerCtorDtor)
2067 addPass(AMDGPUCtorDtorLoweringPass());
2068
2069 if (isPassEnabled(EnableImageIntrinsicOptimizer))
2071
2074 // This can be disabled by passing ::Disable here or on the command line
2075 // with --expand-variadics-override=disable.
2077
2078 addPass(AMDGPUAlwaysInlinePass());
2079 addPass(AlwaysInlinerPass());
2080
2082
2083 if (EnableSwLowerLDS)
2084 addPass(AMDGPUSwLowerLDSPass(TM));
2085
2086 // Runs before PromoteAlloca so the latter can account for function uses
2088 addPass(AMDGPULowerModuleLDSPass(TM));
2089
2090 // Run atomic optimizer before Atomic Expand
2091 if (TM.getOptLevel() >= CodeGenOptLevel::Less &&
2094
2095 addPass(AtomicExpandPass(TM));
2096
2097 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2098 addPass(AMDGPUPromoteAllocaPass(TM));
2099 if (isPassEnabled(EnableScalarIRPasses))
2100 addStraightLineScalarOptimizationPasses(addPass);
2101
2102 // TODO: Handle EnableAMDGPUAliasAnalysis
2103
2104 // TODO: May want to move later or split into an early and late one.
2105 addPass(AMDGPUCodeGenPreparePass(TM));
2106
2107 // Try to hoist loop invariant parts of divisions AMDGPUCodeGenPrepare may
2108 // have expanded.
2109 if (TM.getOptLevel() > CodeGenOptLevel::Less) {
2111 /*UseMemorySSA=*/true));
2112 }
2113 }
2114
2115 Base::addIRPasses(addPass);
2116
2117 // EarlyCSE is not always strong enough to clean up what LSR produces. For
2118 // example, GVN can combine
2119 //
2120 // %0 = add %a, %b
2121 // %1 = add %b, %a
2122 //
2123 // and
2124 //
2125 // %0 = shl nsw %a, 2
2126 // %1 = shl %a, 2
2127 //
2128 // but EarlyCSE can do neither of them.
2129 if (isPassEnabled(EnableScalarIRPasses))
2130 addEarlyCSEOrGVNPass(addPass);
2131}
2132
2133void AMDGPUCodeGenPassBuilder::addCodeGenPrepare(AddIRPass &addPass) const {
2134 if (TM.getOptLevel() > CodeGenOptLevel::None)
2136
2138 addPass(AMDGPULowerKernelArgumentsPass(TM));
2139
2140 Base::addCodeGenPrepare(addPass);
2141
2142 if (isPassEnabled(EnableLoadStoreVectorizer))
2143 addPass(LoadStoreVectorizerPass());
2144
2145 // This lowering has been placed after codegenprepare to take advantage of
2146 // address mode matching (which is why it isn't put with the LDS lowerings).
2147 // It could be placed anywhere before uniformity annotations (an analysis
2148 // that it changes by splitting up fat pointers into their components)
2149 // but has been put before switch lowering and CFG flattening so that those
2150 // passes can run on the more optimized control flow this pass creates in
2151 // many cases.
2153 addPass.requireCGSCCOrder();
2154
2155 addPass(AMDGPULowerIntrinsicsPass(TM));
2156
2157 // LowerSwitch pass may introduce unreachable blocks that can cause unexpected
2158 // behavior for subsequent passes. Placing it here seems better that these
2159 // blocks would get cleaned up by UnreachableBlockElim inserted next in the
2160 // pass flow.
2161 addPass(LowerSwitchPass());
2162}
2163
2164void AMDGPUCodeGenPassBuilder::addPreISel(AddIRPass &addPass) const {
2165
2166 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2167 addPass(FlattenCFGPass());
2168 addPass(SinkingPass());
2169 addPass(AMDGPULateCodeGenPreparePass(TM));
2170 }
2171
2172 // Merge divergent exit nodes. StructurizeCFG won't recognize the multi-exit
2173 // regions formed by them.
2174
2176 addPass(FixIrreduciblePass());
2177 addPass(UnifyLoopExitsPass());
2178 addPass(StructurizeCFGPass(/*SkipUniformRegions=*/false));
2179
2181
2182 addPass(SIAnnotateControlFlowPass(TM));
2183
2184 // TODO: Move this right after structurizeCFG to avoid extra divergence
2185 // analysis. This depends on stopping SIAnnotateControlFlow from making
2186 // control flow modifications.
2188
2190 !isGlobalISelAbortEnabled() || !NewRegBankSelect)
2191 addPass(LCSSAPass());
2192
2193 if (TM.getOptLevel() > CodeGenOptLevel::Less)
2194 addPass(AMDGPUPerfHintAnalysisPass(TM));
2195
2196 // FIXME: Why isn't this queried as required from AMDGPUISelDAGToDAG, and why
2197 // isn't this in addInstSelector?
2199 /*Force=*/true);
2200}
2201
2202void AMDGPUCodeGenPassBuilder::addILPOpts(AddMachinePass &addPass) const {
2204 addPass(EarlyIfConverterPass());
2205
2206 Base::addILPOpts(addPass);
2207}
2208
2209void AMDGPUCodeGenPassBuilder::addAsmPrinter(AddMachinePass &addPass,
2210 CreateMCStreamer) const {
2211 // TODO: Add AsmPrinter.
2212}
2213
2214Error AMDGPUCodeGenPassBuilder::addInstSelector(AddMachinePass &addPass) const {
2215 addPass(AMDGPUISelDAGToDAGPass(TM));
2216 addPass(SIFixSGPRCopiesPass());
2217 addPass(SILowerI1CopiesPass());
2218 return Error::success();
2219}
2220
2221void AMDGPUCodeGenPassBuilder::addPreRewrite(AddMachinePass &addPass) const {
2222 if (EnableRegReassign) {
2223 addPass(GCNNSAReassignPass());
2224 }
2225}
2226
2227void AMDGPUCodeGenPassBuilder::addMachineSSAOptimization(
2228 AddMachinePass &addPass) const {
2229 Base::addMachineSSAOptimization(addPass);
2230
2231 addPass(SIFoldOperandsPass());
2232 if (EnableDPPCombine) {
2233 addPass(GCNDPPCombinePass());
2234 }
2235 addPass(SILoadStoreOptimizerPass());
2236 if (isPassEnabled(EnableSDWAPeephole)) {
2237 addPass(SIPeepholeSDWAPass());
2238 addPass(EarlyMachineLICMPass());
2239 addPass(MachineCSEPass());
2240 addPass(SIFoldOperandsPass());
2241 }
2243 addPass(SIShrinkInstructionsPass());
2244}
2245
2246void AMDGPUCodeGenPassBuilder::addOptimizedRegAlloc(
2247 AddMachinePass &addPass) const {
2248 if (EnableDCEInRA)
2249 insertPass<DetectDeadLanesPass>(DeadMachineInstructionElimPass());
2250
2251 // FIXME: when an instruction has a Killed operand, and the instruction is
2252 // inside a bundle, seems only the BUNDLE instruction appears as the Kills of
2253 // the register in LiveVariables, this would trigger a failure in verifier,
2254 // we should fix it and enable the verifier.
2255 if (OptVGPRLiveRange)
2256 insertPass<RequireAnalysisPass<LiveVariablesAnalysis, MachineFunction>>(
2258
2259 // This must be run immediately after phi elimination and before
2260 // TwoAddressInstructions, otherwise the processing of the tied operand of
2261 // SI_ELSE will introduce a copy of the tied operand source after the else.
2262 insertPass<PHIEliminationPass>(SILowerControlFlowPass());
2263
2265 insertPass<RenameIndependentSubregsPass>(GCNRewritePartialRegUsesPass());
2266
2267 if (isPassEnabled(EnablePreRAOptimizations))
2268 insertPass<MachineSchedulerPass>(GCNPreRAOptimizationsPass());
2269
2270 // Allow the scheduler to run before SIWholeQuadMode inserts exec manipulation
2271 // instructions that cause scheduling barriers.
2272 insertPass<MachineSchedulerPass>(SIWholeQuadModePass());
2273
2274 if (OptExecMaskPreRA)
2275 insertPass<MachineSchedulerPass>(SIOptimizeExecMaskingPreRAPass());
2276
2277 // This is not an essential optimization and it has a noticeable impact on
2278 // compilation time, so we only enable it from O2.
2279 if (TM.getOptLevel() > CodeGenOptLevel::Less)
2280 insertPass<MachineSchedulerPass>(SIFormMemoryClausesPass());
2281
2282 Base::addOptimizedRegAlloc(addPass);
2283}
2284
2285void AMDGPUCodeGenPassBuilder::addPreRegAlloc(AddMachinePass &addPass) const {
2286 if (getOptLevel() != CodeGenOptLevel::None)
2287 addPass(AMDGPUPrepareAGPRAllocPass());
2288}
2289
2290Error AMDGPUCodeGenPassBuilder::addRegAssignmentOptimized(
2291 AddMachinePass &addPass) const {
2292 // TODO: Check --regalloc-npm option
2293
2294 addPass(GCNPreRALongBranchRegPass());
2295
2296 addPass(RAGreedyPass({onlyAllocateSGPRs, "sgpr"}));
2297
2298 // Commit allocated register changes. This is mostly necessary because too
2299 // many things rely on the use lists of the physical registers, such as the
2300 // verifier. This is only necessary with allocators which use LiveIntervals,
2301 // since FastRegAlloc does the replacements itself.
2302 addPass(VirtRegRewriterPass(false));
2303
2304 // At this point, the sgpr-regalloc has been done and it is good to have the
2305 // stack slot coloring to try to optimize the SGPR spill stack indices before
2306 // attempting the custom SGPR spill lowering.
2307 addPass(StackSlotColoringPass());
2308
2309 // Equivalent of PEI for SGPRs.
2310 addPass(SILowerSGPRSpillsPass());
2311
2312 // To Allocate wwm registers used in whole quad mode operations (for shaders).
2313 addPass(SIPreAllocateWWMRegsPass());
2314
2315 // For allocating other wwm register operands.
2316 addPass(RAGreedyPass({onlyAllocateWWMRegs, "wwm"}));
2317 addPass(SILowerWWMCopiesPass());
2318 addPass(VirtRegRewriterPass(false));
2319 addPass(AMDGPUReserveWWMRegsPass());
2320
2321 // For allocating per-thread VGPRs.
2322 addPass(RAGreedyPass({onlyAllocateVGPRs, "vgpr"}));
2323
2324
2325 addPreRewrite(addPass);
2326 addPass(VirtRegRewriterPass(true));
2327
2329 return Error::success();
2330}
2331
2332void AMDGPUCodeGenPassBuilder::addPostRegAlloc(AddMachinePass &addPass) const {
2333 addPass(SIFixVGPRCopiesPass());
2334 if (TM.getOptLevel() > CodeGenOptLevel::None)
2335 addPass(SIOptimizeExecMaskingPass());
2336 Base::addPostRegAlloc(addPass);
2337}
2338
2339void AMDGPUCodeGenPassBuilder::addPreSched2(AddMachinePass &addPass) const {
2340 if (TM.getOptLevel() > CodeGenOptLevel::None)
2341 addPass(SIShrinkInstructionsPass());
2342 addPass(SIPostRABundlerPass());
2343}
2344
2345void AMDGPUCodeGenPassBuilder::addPreEmitPass(AddMachinePass &addPass) const {
2346 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less)) {
2347 addPass(GCNCreateVOPDPass());
2348 }
2349
2350 addPass(SIMemoryLegalizerPass());
2351 addPass(SIInsertWaitcntsPass());
2352
2353 // TODO: addPass(SIModeRegisterPass());
2354
2355 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2356 // TODO: addPass(SIInsertHardClausesPass());
2357 }
2358
2359 addPass(SILateBranchLoweringPass());
2360
2361 if (isPassEnabled(EnableSetWavePriority, CodeGenOptLevel::Less))
2362 addPass(AMDGPUSetWavePriorityPass());
2363
2364 if (TM.getOptLevel() > CodeGenOptLevel::None)
2365 addPass(SIPreEmitPeepholePass());
2366
2367 // The hazard recognizer that runs as part of the post-ra scheduler does not
2368 // guarantee to be able handle all hazards correctly. This is because if there
2369 // are multiple scheduling regions in a basic block, the regions are scheduled
2370 // bottom up, so when we begin to schedule a region we don't know what
2371 // instructions were emitted directly before it.
2372 //
2373 // Here we add a stand-alone hazard recognizer pass which can handle all
2374 // cases.
2375 addPass(PostRAHazardRecognizerPass());
2376 addPass(AMDGPUWaitSGPRHazardsPass());
2377 addPass(AMDGPULowerVGPREncodingPass());
2378
2379 if (isPassEnabled(EnableInsertDelayAlu, CodeGenOptLevel::Less)) {
2380 addPass(AMDGPUInsertDelayAluPass());
2381 }
2382
2383 addPass(BranchRelaxationPass());
2384}
2385
2386bool AMDGPUCodeGenPassBuilder::isPassEnabled(const cl::opt<bool> &Opt,
2387 CodeGenOptLevel Level) const {
2388 if (Opt.getNumOccurrences())
2389 return Opt;
2390 if (TM.getOptLevel() < Level)
2391 return false;
2392 return Opt;
2393}
2394
2395void AMDGPUCodeGenPassBuilder::addEarlyCSEOrGVNPass(AddIRPass &addPass) const {
2396 if (TM.getOptLevel() == CodeGenOptLevel::Aggressive)
2397 addPass(GVNPass());
2398 else
2399 addPass(EarlyCSEPass());
2400}
2401
2402void AMDGPUCodeGenPassBuilder::addStraightLineScalarOptimizationPasses(
2403 AddIRPass &addPass) const {
2405 addPass(LoopDataPrefetchPass());
2406
2408
2409 // ReassociateGEPs exposes more opportunities for SLSR. See
2410 // the example in reassociate-geps-and-slsr.ll.
2412
2413 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
2414 // EarlyCSE can reuse.
2415 addEarlyCSEOrGVNPass(addPass);
2416
2417 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
2418 addPass(NaryReassociatePass());
2419
2420 // NaryReassociate on GEPs creates redundant common expressions, so run
2421 // EarlyCSE after it.
2422 addPass(EarlyCSEPass());
2423}
unsigned const MachineRegisterInfo * MRI
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 std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
This is the AMGPU address space based alias analysis pass.
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 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 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 > HasClosedWorldAssumption("amdgpu-link-time-closed-world", cl::desc("Whether has closed-world assumption at link time"), cl::init(false), cl::Hidden)
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 > 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 > NewRegBankSelect("new-reg-bank-select", cl::desc("Run amdgpu-regbankselect and amdgpu-regbanklegalize instead of " "regbankselect"), 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 TargetTransformInfoImplBase 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.
Interfaces for producing common pass manager configurations.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
#define LLVM_READNONE
Definition Compiler.h:315
#define LLVM_ABI
Definition Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
DXIL Legalizer
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...
#define _
AcceleratorCodeSelection - Identify all functions reachable from a kernel, removing those that are un...
This file declares the IRTranslator pass.
This header defines various interfaces for pass management in LLVM.
#define RegName(no)
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.
#define F(x, y, z)
Definition MD5.cpp:55
#define I(x, y, z)
Definition MD5.cpp:58
Register Reg
Register const TargetRegisterInfo * TRI
#define T
uint64_t IntrinsicInst * II
#define P(N)
CGSCCAnalysisManager CGAM
LoopAnalysisManager LAM
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.
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
SI Machine Scheduler interface.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
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.
LLVM IR instance of the generic uniformity analysis.
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.
AMDGPUPassConfig(TargetMachine &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.
std::unique_ptr< TargetLoweringObjectFile > TLOF
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
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
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.
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.
Inlines functions marked as "always_inline".
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:69
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:223
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.
This pass is required by interprocedural register allocation.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
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.
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.
Error buildCodeGenPipeline(ModulePassManager &MPM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, const CGPassBuilderOption &Opts, PassInstrumentationCallbacks *PIC) override
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.
The core GVN pass object.
Definition GVN.h:128
Pass to remove unused function declarations.
Definition GlobalDCE.h:38
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:37
Converts loops into loop-closed SSA form.
Definition LCSSA.h:38
Performs Loop Invariant Code Motion Pass.
Definition LICM.h:66
This pass implements the localization mechanism described at the top of this file.
Definition Localizer.h:43
An optimization pass inserting data prefetches in loops.
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,...
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...
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
static LLVM_ABI const OptimizationLevel O0
Disable as many optimizations as possible.
static LLVM_ABI const OptimizationLevel O1
Optimize quickly without destroying debuggability.
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'.
Definition Pass.h:99
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
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)
void setFlag(Register Reg, uint8_t Flag)
bool checkFlag(Register Reg, uint8_t Flag) const
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:297
Represents a location in source code.
Definition SMLoc.h:22
Represents a range in source code.
Definition SMLoc.h:47
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.
Definition Sink.h:24
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:148
const MemoryBuffer * getMemoryBuffer(unsigned i) const
Definition SourceMgr.h:141
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition StringRef.h:702
constexpr bool empty() const
empty - Check if the string is empty.
Definition StringRef.h:143
bool consume_front(StringRef Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
Definition StringRef.h:637
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
TargetOptions Options
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
std::unique_ptr< const MCRegisterInfo > MRI
CodeGenOptLevel OptLevel
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.
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:47
LLVM Value Representation.
Definition Value.h:75
bool use_empty() const
Definition Value.h:346
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.
@ 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)
LLVM_READNONE constexpr bool isModuleEntryFunctionCC(CallingConv::ID CC)
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
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)
IntrinsicID_match m_Intrinsic()
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
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()...
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
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)
This is an optimization pass for GlobalISel generic memory operations.
ScheduleDAGMILive * createSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
LLVM_ABI FunctionPass * createFlattenCFGPass()
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()
Definition LCSSA.cpp:525
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 &)
ModulePass * createExpandVariadicsPass(ExpandVariadicsMode)
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.
Definition Casting.h:643
ModuleToFunctionPassAdaptor createModuleToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
ModulePass * createAMDGPUSwLowerLDSLegacyPass(const AMDGPUTargetMachine *TM=nullptr)
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...
Definition Error.cpp:98
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 initializeR600ExpandSpecialInstrsPassPass(PassRegistry &)
void initializeR600PacketizerPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createVOPDPairingMutation()
std::unique_ptr< ScheduleDAGMutation > createAMDGPUBarrierLatencyDAGMutation()
ModulePass * createAMDGPUExportKernelRuntimeHandlesLegacyPass()
ModulePass * createAMDGPUAlwaysInlinePass(bool GlobalOpt=true)
void initializeAMDGPUAsmPrinterPass(PassRegistry &)
void initializeSIFoldOperandsLegacyPass(PassRegistry &)
char & SILoadStoreOptimizerLegacyID
void initializeAMDGPUGlobalISelDivergenceLoweringPass(PassRegistry &)
PassManager< LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult & > CGSCCPassManager
The CGSCC pass manager.
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:89
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()
Definition LICM.cpp:392
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.
Definition Pass.h:77
@ FullLTOPreLink
Full LTO prelink phase.
Definition Pass.h:85
@ FullLTOPostLink
Full LTO postlink (backend compile) phase.
Definition Pass.h:87
@ ThinLTOPreLink
ThinLTO prelink (summary) phase.
Definition Pass.h:81
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.
char & GCNNSAReassignID
void initializeAMDGPURewriteOutArgumentsPass(PassRegistry &)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
void initializeAMDGPUExternalAAWrapperPass(PassRegistry &)
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 &)
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()
Definition Sink.cpp:275
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,...
Definition CodeGen.h:111
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 initializeAMDGPUPostLegalizerCombinerPass(PassRegistry &)
void initializeAMDGPUExportKernelRuntimeHandlesLegacyPass(PassRegistry &)
BumpPtrAllocatorImpl BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
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.
Definition Error.h:340
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 &)
char & SILowerSGPRSpillsLegacyID
void initializeAMDGPUArgumentUsageInfoPass(PassRegistry &)
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 &)
void initializeSIPreAllocateWWMRegsLegacyPass(PassRegistry &)
void initializeSIFixVGPRCopiesLegacyPass(PassRegistry &)
Target & getTheGCNTarget()
The target for GCN GPUs.
void initializeSIFixSGPRCopiesLegacyPass(PassRegistry &)
void initializeAMDGPUAtomicOptimizerPass(PassRegistry &)
void initializeAMDGPULowerIntrinsicsLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createGVNPass()
Create a legacy GVN pass.
Definition GVN.cpp:3402
void initializeAMDGPURewriteAGPRCopyMFMALegacyPass(PassRegistry &)
void initializeSIPostRABundlerLegacyPass(PassRegistry &)
FunctionPass * createAMDGPURegBankSelectPass()
FunctionPass * createAMDGPURegBankLegalizePass()
LLVM_ABI char & MachineCSELegacyID
MachineCSE - This pass performs global CSE on machine instructions.
char & SIWholeQuadModeID
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.
Definition Threading.h:86
FunctionPass * createSILowerI1CopiesLegacyPass()
FunctionPass * createAMDGPUPostLegalizeCombiner(bool IsOptNone)
void initializeAMDGPULowerKernelAttributesPass(PassRegistry &)
char & SIInsertHardClausesID
char & SIFixSGPRCopiesLegacyID
void initializeGCNDPPCombineLegacyPass(PassRegistry &)
char & GCNCreateVOPDID
char & SIPeepholeSDWALegacyID
LLVM_ABI char & VirtRegRewriterID
VirtRegRewriter pass.
char & SIFixVGPRCopiesID
char & SIFoldOperandsLegacyID
void initializeGCNNSAReassignLegacyPass(PassRegistry &)
char & AMDGPUPrepareAGPRAllocLegacyID
LLVM_ABI FunctionPass * createLowerSwitchPass()
void initializeAMDGPUPreloadKernArgPrologLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createVirtRegRewriter(bool ClearVirtRegs=true)
void initializeR600VectorRegMergerPass(PassRegistry &)
char & AMDGPURewriteAGPRCopyMFMALegacyID
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,...
MCRegisterInfo * createGCNMCRegisterInfo(AMDGPUDwarfFlavour DwarfFlavour)
LLVM_ABI FunctionPass * createStraightLineStrengthReducePass()
FunctionPass * createAMDGPUImageIntrinsicOptimizerPass(const TargetMachine *)
void initializeAMDGPUUnifyDivergentExitNodesPass(PassRegistry &)
void initializeAMDGPULowerBufferFatPointersPass(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
bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg, StringRef Src, SMDiagnostic &Error)
void initializeAMDGPUResourceUsageAnalysisWrapperPassPass(PassRegistry &)
FunctionPass * createSIShrinkInstructionsLegacyPass()
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 &)
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.
Definition MIRParser.h:39
char & AMDGPUPerfHintAnalysisLegacyID
LLVM_ABI ImmutablePass * createExternalAAWrapperPass(std::function< void(Pass &, Function &, AAResults &)> Callback)
A wrapper pass around a callback which can be used to populate the AAResults in the AAResultsWrapperP...
char & GCNPreRALongBranchRegID
LLVM_ABI CGPassBuilderOption getCGPassBuilderOption()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:180
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...
A simple and fast domtree-based CSE pass.
Definition EarlyCSE.h:31
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
Definition MIParser.h:177
DenseMap< Register, VRegInfo * > VRegInfos
Definition MIParser.h:176
RegisterTargetMachine - Helper template for registering a target machine implementation,...
A utility pass template to force an analysis result to be available.
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:67
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.
SmallVector< StringValue > WWMReservedRegs
std::optional< SIArgumentInfo > ArgInfo
SmallVector< StringValue, 2 > SpillPhysVGPRS
A wrapper around std::string which contains a source range that's being set during parsing.