LLVM 24.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"
20#include "AMDGPUAsmPrinter.h"
26#include "AMDGPUHazardLatency.h"
27#include "AMDGPUIGroupLP.h"
28#include "AMDGPUISelDAGToDAG.h"
30#include "AMDGPUMacroFusion.h"
38#include "AMDGPUSplitModule.h"
43#include "GCNDPPCombine.h"
45#include "GCNNSAReassign.h"
49#include "GCNSchedStrategy.h"
50#include "GCNVOPDUtils.h"
51#include "R600.h"
52#include "R600TargetMachine.h"
53#include "SIFixSGPRCopies.h"
54#include "SIFixVGPRCopies.h"
55#include "SIFoldOperands.h"
56#include "SIFormMemoryClauses.h"
58#include "SILowerControlFlow.h"
59#include "SILowerSGPRSpills.h"
60#include "SILowerWWMCopies.h"
62#include "SIMachineScheduler.h"
66#include "SIPeepholeSDWA.h"
67#include "SIPostRABundler.h"
70#include "SIWholeQuadMode.h"
95#include "llvm/CodeGen/Passes.h"
107#include "llvm/IR/IntrinsicsAMDGPU.h"
108#include "llvm/IR/Module.h"
109#include "llvm/IR/PassManager.h"
110#include "llvm/IR/PatternMatch.h"
119#include "llvm/Transforms/IPO.h"
144#include <optional>
145
146using namespace llvm;
147using namespace llvm::PatternMatch;
148
149namespace {
150//===----------------------------------------------------------------------===//
151// AMDGPU CodeGen Pass Builder interface.
152//===----------------------------------------------------------------------===//
153
154class AMDGPUCodeGenPassBuilder : public CodeGenPassBuilder {
155 using Base = CodeGenPassBuilder;
156
157 GCNTargetMachine &getTM() const {
158 return static_cast<GCNTargetMachine &>(TM);
159 }
160
161public:
162 AMDGPUCodeGenPassBuilder(GCNTargetMachine &TM,
163 const CGPassBuilderOption &Opts,
164 PassInstrumentationCallbacks *PIC);
165
166 void addIRPasses(PassManagerWrapper &PMW) override;
167 void addCodeGenPrepare(PassManagerWrapper &PMW) override;
168 void addPreISel(PassManagerWrapper &PMW) override;
169 void addILPOpts(PassManagerWrapper &PMW) override;
170 void addAsmPrinterBegin(PassManagerWrapper &PMW) override;
171 void addAsmPrinter(PassManagerWrapper &PMW) override;
172 void addAsmPrinterEnd(PassManagerWrapper &PMW) override;
173 Error addInstSelector(PassManagerWrapper &PMW) override;
174 void addPreRewrite(PassManagerWrapper &PMW) override;
175 void addMachineSSAOptimization(PassManagerWrapper &PMW) override;
176 void addPostRegAlloc(PassManagerWrapper &PMW) override;
177 void addPreEmitPass(PassManagerWrapper &PMW) override;
178 Error addRegAssignAndRewriteFast(PassManagerWrapper &PMW) override;
179 Expected<bool>
180 addRegAssignAndRewriteOptimized(PassManagerWrapper &PMW) override;
181 void addPreRegAlloc(PassManagerWrapper &PMW) override;
182 Error addFastRegAlloc(PassManagerWrapper &PMW) override;
183 Error addOptimizedRegAlloc(PassManagerWrapper &PMW) override;
184 void addPreSched2(PassManagerWrapper &PMW) override;
185 void addPostBBSections(PassManagerWrapper &PMW) override;
186
187private:
188 Error validateRegAllocOptions() const;
189
190public:
191 /// Check if a pass is enabled given \p Opt option. The option always
192 /// overrides defaults if explicitly used. Otherwise its default will be used
193 /// given that a pass shall work at an optimization \p Level minimum.
194 bool isPassEnabled(const cl::opt<bool> &Opt,
195 CodeGenOptLevel Level = CodeGenOptLevel::Default) const;
196 void addEarlyCSEOrGVNPass(PassManagerWrapper &PMW);
197 void addStraightLineScalarOptimizationPasses(PassManagerWrapper &PMW);
198};
199
200class SGPRRegisterRegAlloc : public RegisterRegAllocBase<SGPRRegisterRegAlloc> {
201public:
202 SGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
203 : RegisterRegAllocBase(N, D, C) {}
204};
205
206class VGPRRegisterRegAlloc : public RegisterRegAllocBase<VGPRRegisterRegAlloc> {
207public:
208 VGPRRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
209 : RegisterRegAllocBase(N, D, C) {}
210};
211
212class WWMRegisterRegAlloc : public RegisterRegAllocBase<WWMRegisterRegAlloc> {
213public:
214 WWMRegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
215 : RegisterRegAllocBase(N, D, C) {}
216};
217
218static bool onlyAllocateSGPRs(const TargetRegisterInfo &TRI,
219 const MachineRegisterInfo &MRI,
220 const Register Reg) {
221 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
222 return static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC);
223}
224
225static bool onlyAllocateVGPRs(const TargetRegisterInfo &TRI,
226 const MachineRegisterInfo &MRI,
227 const Register Reg) {
228 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
229 return !static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC);
230}
231
232static bool onlyAllocateWWMRegs(const TargetRegisterInfo &TRI,
233 const MachineRegisterInfo &MRI,
234 const Register Reg) {
235 const SIMachineFunctionInfo *MFI =
237 const TargetRegisterClass *RC = MRI.getRegClass(Reg);
238 return !static_cast<const SIRegisterInfo &>(TRI).isSGPRClass(RC) &&
240}
241
242/// -{sgpr|wwm|vgpr}-regalloc=... command line option.
243static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
244
245/// A dummy default pass factory indicates whether the register allocator is
246/// overridden on the command line.
247static llvm::once_flag InitializeDefaultSGPRRegisterAllocatorFlag;
248static llvm::once_flag InitializeDefaultVGPRRegisterAllocatorFlag;
249static llvm::once_flag InitializeDefaultWWMRegisterAllocatorFlag;
250
251static SGPRRegisterRegAlloc
252defaultSGPRRegAlloc("default",
253 "pick SGPR register allocator based on -O option",
255
256static cl::opt<SGPRRegisterRegAlloc::FunctionPassCtor, false,
258SGPRRegAlloc("sgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
259 cl::desc("Register allocator to use for SGPRs"));
260
261static cl::opt<VGPRRegisterRegAlloc::FunctionPassCtor, false,
263VGPRRegAlloc("vgpr-regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
264 cl::desc("Register allocator to use for VGPRs"));
265
266static cl::opt<WWMRegisterRegAlloc::FunctionPassCtor, false,
268 WWMRegAlloc("wwm-regalloc", cl::Hidden,
270 cl::desc("Register allocator to use for WWM registers"));
271
272// New pass manager register allocator options for AMDGPU
274 "sgpr-regalloc-npm", cl::Hidden, cl::init(RegAllocType::Default),
275 cl::desc("Register allocator for SGPRs (new pass manager)"));
276
278 "vgpr-regalloc-npm", cl::Hidden, cl::init(RegAllocType::Default),
279 cl::desc("Register allocator for VGPRs (new pass manager)"));
280
282 "wwm-regalloc-npm", cl::Hidden, cl::init(RegAllocType::Default),
283 cl::desc("Register allocator for WWM registers (new pass manager)"));
284
285/// Check if the given RegAllocType is supported for AMDGPU NPM register
286/// allocation. Only Fast and Greedy are supported; Basic and PBQP are not.
287static Error checkRegAllocSupported(RegAllocType RAType, StringRef RegName) {
288 if (RAType == RegAllocType::Basic || RAType == RegAllocType::PBQP) {
290 Twine("unsupported register allocator '") +
291 (RAType == RegAllocType::Basic ? "basic" : "pbqp") + "' for " +
292 RegName + " registers",
294 }
295 return Error::success();
296}
297
298Error AMDGPUCodeGenPassBuilder::validateRegAllocOptions() const {
299 // 1. Generic --regalloc-npm is not supported for AMDGPU.
300 if (Opt.RegAlloc != RegAllocType::Unset) {
302 "-regalloc-npm not supported for amdgcn. Use -sgpr-regalloc-npm, "
303 "-vgpr-regalloc-npm, and -wwm-regalloc-npm",
305 }
306
307 // 2. Legacy PM regalloc options are not compatible with NPM.
308 if (SGPRRegAlloc.getNumOccurrences() > 0 ||
309 VGPRRegAlloc.getNumOccurrences() > 0 ||
310 WWMRegAlloc.getNumOccurrences() > 0) {
312 "-sgpr-regalloc, -vgpr-regalloc, and -wwm-regalloc are legacy PM "
313 "options. Use -sgpr-regalloc-npm, -vgpr-regalloc-npm, and "
314 "-wwm-regalloc-npm with the new pass manager",
316 }
317
318 // 3. Only Fast and Greedy allocators are supported for AMDGPU.
319 if (auto Err = checkRegAllocSupported(SGPRRegAllocNPM, "SGPR"))
320 return Err;
321 if (auto Err = checkRegAllocSupported(WWMRegAllocNPM, "WWM"))
322 return Err;
323 if (auto Err = checkRegAllocSupported(VGPRRegAllocNPM, "VGPR"))
324 return Err;
325
326 return Error::success();
327}
328
329static void initializeDefaultSGPRRegisterAllocatorOnce() {
330 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
331
332 if (!Ctor) {
333 Ctor = SGPRRegAlloc;
334 SGPRRegisterRegAlloc::setDefault(SGPRRegAlloc);
335 }
336}
337
338static void initializeDefaultVGPRRegisterAllocatorOnce() {
339 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
340
341 if (!Ctor) {
342 Ctor = VGPRRegAlloc;
343 VGPRRegisterRegAlloc::setDefault(VGPRRegAlloc);
344 }
345}
346
347static void initializeDefaultWWMRegisterAllocatorOnce() {
348 RegisterRegAlloc::FunctionPassCtor Ctor = WWMRegisterRegAlloc::getDefault();
349
350 if (!Ctor) {
351 Ctor = WWMRegAlloc;
352 WWMRegisterRegAlloc::setDefault(WWMRegAlloc);
353 }
354}
355
356static FunctionPass *createBasicSGPRRegisterAllocator() {
357 return createBasicRegisterAllocator(onlyAllocateSGPRs);
358}
359
360static FunctionPass *createGreedySGPRRegisterAllocator() {
361 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
362}
363
364static FunctionPass *createFastSGPRRegisterAllocator() {
365 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
366}
367
368static FunctionPass *createBasicVGPRRegisterAllocator() {
369 return createBasicRegisterAllocator(onlyAllocateVGPRs);
370}
371
372static FunctionPass *createGreedyVGPRRegisterAllocator() {
373 return createGreedyRegisterAllocator(onlyAllocateVGPRs);
374}
375
376static FunctionPass *createFastVGPRRegisterAllocator() {
377 return createFastRegisterAllocator(onlyAllocateVGPRs, true);
378}
379
380static FunctionPass *createBasicWWMRegisterAllocator() {
381 return createBasicRegisterAllocator(onlyAllocateWWMRegs);
382}
383
384static FunctionPass *createGreedyWWMRegisterAllocator() {
385 return createGreedyRegisterAllocator(onlyAllocateWWMRegs);
386}
387
388static FunctionPass *createFastWWMRegisterAllocator() {
389 return createFastRegisterAllocator(onlyAllocateWWMRegs, false);
390}
391
392static SGPRRegisterRegAlloc basicRegAllocSGPR(
393 "basic", "basic register allocator", createBasicSGPRRegisterAllocator);
394static SGPRRegisterRegAlloc greedyRegAllocSGPR(
395 "greedy", "greedy register allocator", createGreedySGPRRegisterAllocator);
396
397static SGPRRegisterRegAlloc fastRegAllocSGPR(
398 "fast", "fast register allocator", createFastSGPRRegisterAllocator);
399
400
401static VGPRRegisterRegAlloc basicRegAllocVGPR(
402 "basic", "basic register allocator", createBasicVGPRRegisterAllocator);
403static VGPRRegisterRegAlloc greedyRegAllocVGPR(
404 "greedy", "greedy register allocator", createGreedyVGPRRegisterAllocator);
405
406static VGPRRegisterRegAlloc fastRegAllocVGPR(
407 "fast", "fast register allocator", createFastVGPRRegisterAllocator);
408static WWMRegisterRegAlloc basicRegAllocWWMReg("basic",
409 "basic register allocator",
410 createBasicWWMRegisterAllocator);
411static WWMRegisterRegAlloc
412 greedyRegAllocWWMReg("greedy", "greedy register allocator",
413 createGreedyWWMRegisterAllocator);
414static WWMRegisterRegAlloc fastRegAllocWWMReg("fast", "fast register allocator",
415 createFastWWMRegisterAllocator);
416
418 return Phase == ThinOrFullLTOPhase::FullLTOPreLink ||
419 Phase == ThinOrFullLTOPhase::ThinLTOPreLink;
420}
421} // anonymous namespace
422
423static cl::opt<bool>
425 cl::desc("Run early if-conversion"),
426 cl::init(false));
427
428static cl::opt<bool>
429OptExecMaskPreRA("amdgpu-opt-exec-mask-pre-ra", cl::Hidden,
430 cl::desc("Run pre-RA exec mask optimizations"),
431 cl::init(true));
432
433static cl::opt<bool>
434 LowerCtorDtor("amdgpu-lower-global-ctor-dtor",
435 cl::desc("Lower GPU ctor / dtors to globals on the device."),
436 cl::init(true), cl::Hidden);
437
438// Option to disable vectorizer for tests.
440 "amdgpu-load-store-vectorizer",
441 cl::desc("Enable load store vectorizer"),
442 cl::init(true),
443 cl::Hidden);
444
445// Option to control global loads scalarization
447 "amdgpu-scalarize-global-loads",
448 cl::desc("Enable global load scalarization"),
449 cl::init(true),
450 cl::Hidden);
451
452// Option to run internalize pass.
454 "amdgpu-internalize-symbols",
455 cl::desc("Enable elimination of non-kernel functions and unused globals"),
456 cl::init(false),
457 cl::Hidden);
458
459// Option to inline all early.
461 "amdgpu-early-inline-all",
462 cl::desc("Inline all functions early"),
463 cl::init(false),
464 cl::Hidden);
465
467 "amdgpu-enable-remove-incompatible-functions", cl::Hidden,
468 cl::desc("Enable removal of functions when they"
469 "use features not supported by the target GPU"),
470 cl::init(true));
471
473 "amdgpu-sdwa-peephole",
474 cl::desc("Enable SDWA peepholer"),
475 cl::init(true));
476
478 "amdgpu-dpp-combine",
479 cl::desc("Enable DPP combiner"),
480 cl::init(true));
481
482// Enable address space based alias analysis
484 cl::desc("Enable AMDGPU Alias Analysis"),
485 cl::init(true));
486
487static cl::opt<bool>
488 XnackSetting("amdgpu-xnack",
489 cl::desc("Force amdgpu.xnack value for testing"),
491
492static cl::opt<bool>
493 SramEccSetting("amdgpu-sramecc",
494 cl::desc("Force amdgpu.sramecc for testing"),
496
497// Enable lib calls simplifications
499 "amdgpu-simplify-libcall",
500 cl::desc("Enable amdgpu library simplifications"),
501 cl::init(true),
502 cl::Hidden);
503
505 "amdgpu-ir-lower-kernel-arguments",
506 cl::desc("Lower kernel argument loads in IR pass"),
507 cl::init(true),
508 cl::Hidden);
509
511 "amdgpu-reassign-regs",
512 cl::desc("Enable register reassign optimizations on gfx10+"),
513 cl::init(true),
514 cl::Hidden);
515
517 "amdgpu-opt-vgpr-liverange",
518 cl::desc("Enable VGPR liverange optimizations for if-else structure"),
519 cl::init(true), cl::Hidden);
520
522 "amdgpu-atomic-optimizer-strategy",
523 cl::desc("Select DPP or Iterative strategy for scan"),
526 clEnumValN(ScanOptions::DPP, "DPP", "Use DPP operations for scan"),
528 "Use Iterative approach for scan"),
529 clEnumValN(ScanOptions::None, "None", "Disable atomic optimizer")));
530
531// Enable Mode register optimization
533 "amdgpu-mode-register",
534 cl::desc("Enable mode register pass"),
535 cl::init(true),
536 cl::Hidden);
537
538// Enable GFX11+ s_delay_alu insertion
539static cl::opt<bool>
540 EnableInsertDelayAlu("amdgpu-enable-delay-alu",
541 cl::desc("Enable s_delay_alu insertion"),
542 cl::init(true), cl::Hidden);
543
544// Enable GFX11+ VOPD
545static cl::opt<bool>
546 EnableVOPD("amdgpu-enable-vopd",
547 cl::desc("Enable VOPD, dual issue of VALU in wave32"),
548 cl::init(true), cl::Hidden);
549
550// Option is used in lit tests to prevent deadcoding of patterns inspected.
551static cl::opt<bool>
552EnableDCEInRA("amdgpu-dce-in-ra",
553 cl::init(true), cl::Hidden,
554 cl::desc("Enable machine DCE inside regalloc"));
555
556static cl::opt<bool> EnableSetWavePriority("amdgpu-set-wave-priority",
557 cl::desc("Adjust wave priority"),
558 cl::init(false), cl::Hidden);
559
561 "amdgpu-scalar-ir-passes",
562 cl::desc("Enable scalar IR passes"),
563 cl::init(true),
564 cl::Hidden);
565
567 "amdgpu-enable-lower-exec-sync",
568 cl::desc("Enable lowering of execution synchronization."), cl::init(true),
569 cl::Hidden);
570
571static cl::opt<bool>
572 EnableSwLowerLDS("amdgpu-enable-sw-lower-lds",
573 cl::desc("Enable lowering of lds to global memory pass "
574 "and asan instrument resulting IR."),
575 cl::init(true), cl::Hidden);
576
578 "amdgpu-enable-object-linking",
579 cl::desc("Enable object linking for cross-TU LDS and ABI support"),
581 cl::Hidden);
582
584 "amdgpu-enable-lower-module-lds", cl::desc("Enable lower module lds pass"),
586 cl::Hidden);
587
589 "amdgpu-enable-pre-ra-optimizations",
590 cl::desc("Enable Pre-RA optimizations pass"), cl::init(true),
591 cl::Hidden);
592
594 "amdgpu-enable-promote-kernel-arguments",
595 cl::desc("Enable promotion of flat kernel pointer arguments to global"),
596 cl::Hidden, cl::init(true));
597
599 "amdgpu-enable-image-intrinsic-optimizer",
600 cl::desc("Enable image intrinsic optimizer pass"), cl::init(true),
601 cl::Hidden);
602
603static cl::opt<bool>
604 EnableLoopPrefetch("amdgpu-loop-prefetch",
605 cl::desc("Enable loop data prefetch on AMDGPU"),
606 cl::Hidden, cl::init(false));
607
609 AMDGPUSchedStrategy("amdgpu-sched-strategy",
610 cl::desc("Select custom AMDGPU scheduling strategy."),
611 cl::Hidden, cl::init(""));
612
613// Scheduler selection is consulted both when creating the scheduler and from
614// overrideSchedPolicy(), so keep the attribute and global command line handling
615// in one helper.
617 Attribute SchedStrategyAttr = F.getFnAttribute("amdgpu-sched-strategy");
618 if (SchedStrategyAttr.isValid())
619 return SchedStrategyAttr.getValueAsString();
620
621 if (!AMDGPUSchedStrategy.empty())
622 return AMDGPUSchedStrategy;
623
624 return "";
625}
626
627static void
629 const GCNSubtarget &ST) {
630 if (ST.hasGFX1250Insts())
631 return;
632
633 F.getContext().diagnose(DiagnosticInfoUnsupported(
634 F, "'amdgpu-sched-strategy'='coexec' is only supported for gfx1250",
636}
637
638static bool useNoopPostScheduler(const Function &F) {
639 Attribute PostSchedStrategyAttr =
640 F.getFnAttribute("amdgpu-post-sched-strategy");
641 return PostSchedStrategyAttr.isValid() &&
642 PostSchedStrategyAttr.getValueAsString() == "nop";
643}
644
646 "amdgpu-enable-rewrite-partial-reg-uses",
647 cl::desc("Enable rewrite partial reg uses pass"), cl::init(true),
648 cl::Hidden);
649
651 "amdgpu-enable-hipstdpar",
652 cl::desc("Enable HIP Standard Parallelism Offload support"), cl::init(false),
653 cl::Hidden);
654
655static cl::opt<bool>
656 EnableAMDGPUAttributor("amdgpu-attributor-enable",
657 cl::desc("Enable AMDGPUAttributorPass"),
658 cl::init(true), cl::Hidden);
659
661 "amdgpu-link-time-closed-world",
662 cl::desc("Whether has closed-world assumption at link time"),
663 cl::init(false), cl::Hidden);
664
666 "amdgpu-enable-uniform-intrinsic-combine",
667 cl::desc("Enable/Disable the Uniform Intrinsic Combine Pass"),
668 cl::init(true), cl::Hidden);
669
670static cl::opt<bool>
671 EnableMachinePipeliner("amdgpu-enable-pipeliner",
672 cl::desc("Enable Machine Pipeliner for AMDGCN"),
673 cl::init(false), cl::Hidden);
674
676 // Register the target
680
766}
767
768static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
769 return std::make_unique<AMDGPUTargetObjectFile>();
770}
771
775
776static ScheduleDAGInstrs *
778 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
779 ScheduleDAGMILive *DAG =
780 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxOccupancySchedStrategy>(C));
781 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
782 if (ST.shouldClusterStores())
783 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
785 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
786 DAG->addMutation(createAMDGPUExportClusteringDAGMutation());
787 DAG->addMutation(createAMDGPUBarrierLatencyDAGMutation(C->MF));
788 DAG->addMutation(createAMDGPUHazardLatencyDAGMutation(C->MF));
789 return DAG;
790}
791
792static ScheduleDAGInstrs *
794 ScheduleDAGMILive *DAG =
795 new GCNScheduleDAGMILive(C, std::make_unique<GCNMaxILPSchedStrategy>(C));
797 return DAG;
798}
799
800static ScheduleDAGInstrs *
802 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
804 C, std::make_unique<GCNMaxMemoryClauseSchedStrategy>(C));
805 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
806 if (ST.shouldClusterStores())
807 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
808 DAG->addMutation(createAMDGPUExportClusteringDAGMutation());
809 DAG->addMutation(createAMDGPUBarrierLatencyDAGMutation(C->MF));
810 DAG->addMutation(createAMDGPUHazardLatencyDAGMutation(C->MF));
811 return DAG;
812}
813
814static ScheduleDAGInstrs *
816 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
817 auto *DAG = new GCNIterativeScheduler(
819 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
820 if (ST.shouldClusterStores())
821 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
823 return DAG;
824}
825
832
833static ScheduleDAGInstrs *
835 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
837 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
838 if (ST.shouldClusterStores())
839 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
840 DAG->addMutation(createAMDGPUMacroFusionDAGMutation());
842 return DAG;
843}
844
845static MachineSchedRegistry
846SISchedRegistry("si", "Run SI's custom scheduler",
848
851 "Run GCN scheduler to maximize occupancy",
853
855 GCNMaxILPSchedRegistry("gcn-max-ilp", "Run GCN scheduler to maximize ilp",
857
859 "gcn-max-memory-clause", "Run GCN scheduler to maximize memory clause",
861
863 "gcn-iterative-max-occupancy-experimental",
864 "Run GCN scheduler to maximize occupancy (experimental)",
866
868 "gcn-iterative-minreg",
869 "Run GCN iterative scheduler for minimal register usage (experimental)",
871
873 "gcn-iterative-ilp",
874 "Run GCN iterative scheduler for ILP scheduling (experimental)",
876
879 if (!GPU.empty())
880 return GPU;
881
882 if (StringRef Name = AMDGPU::getArchNameFromSubArch(TT.getSubArch());
883 !Name.empty())
884 return Name;
885
886 // Need to default to a target with flat support for HSA.
887 if (TT.isAMDGCN())
888 return TT.getOS() == Triple::AMDHSA ? "generic-hsa" : "generic";
889
890 return "r600";
891}
892
894 // The AMDGPU toolchain only supports generating shared objects, so we
895 // must always use PIC.
896 return Reloc::PIC_;
897}
898
900 StringRef CPU, StringRef FS,
901 const TargetOptions &Options,
902 std::optional<Reloc::Model> RM,
903 std::optional<CodeModel::Model> CM,
906 T, TT.computeDataLayout(), TT, getGPUOrDefault(TT, CPU), FS, Options,
908 OptLevel),
910 initAsmInfo();
911 if (TT.isAMDGCN()) {
912 // Triple is missing a representation for non-empty, but unrecognized
913 // subarches. Only permit no subarch for any subtarget if it was really
914 // empty.
915 bool IsUnknownSubArch =
916 TT.getSubArch() == Triple::NoSubArch && TT.getArchName().size() != 6;
917 if (IsUnknownSubArch)
918 reportFatalUsageError("unknown subarch " + TT.getArchName());
919
920 if (TT.getSubArch() != Triple::NoSubArch) {
922 Triple::SubArchType GPUSubArch = AMDGPU::getSubArch(Kind);
923 if (Kind != AMDGPU::GK_NONE && GPUSubArch != TT.getSubArch() &&
924 TT.getSubArch() != AMDGPU::getMajorSubArch(GPUSubArch)) {
925 reportFatalUsageError("invalid cpu '" + CPU + "' for subarch " +
926 TT.getArchName());
927 }
928 }
929
930 if (getMCSubtargetInfo().checkFeatures("+wavefrontsize64"))
932 else if (getMCSubtargetInfo().checkFeatures("+wavefrontsize32"))
934 }
936}
937
941
943
945 Attribute GPUAttr = F.getFnAttribute("target-cpu");
946 return GPUAttr.isValid() ? GPUAttr.getValueAsString() : getTargetCPU();
947}
948
950 Attribute FSAttr = F.getFnAttribute("target-features");
951
952 return FSAttr.isValid() ? FSAttr.getValueAsString()
954}
955
958 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
960 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
961 if (ST.shouldClusterStores())
962 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
963 return DAG;
964}
965
966/// Predicate for Internalize pass.
967static bool mustPreserveGV(const GlobalValue &GV) {
968 if (const Function *F = dyn_cast<Function>(&GV))
969 return F->isDeclaration() || F->getName().starts_with("__asan_") ||
970 F->getName().starts_with("__sanitizer_") ||
971 AMDGPU::isEntryFunctionCC(F->getCallingConv());
972
974 return !GV.use_empty();
975}
976
981
984 if (Params.empty())
986 Params.consume_front("strategy=");
987 auto Result = StringSwitch<std::optional<ScanOptions>>(Params)
988 .Case("dpp", ScanOptions::DPP)
989 .Cases({"iterative", ""}, ScanOptions::Iterative)
990 .Case("none", ScanOptions::None)
991 .Default(std::nullopt);
992 if (Result)
993 return *Result;
994 return make_error<StringError>("invalid parameter", inconvertibleErrorCode());
995}
996
1000 while (!Params.empty()) {
1001 StringRef ParamName;
1002 std::tie(ParamName, Params) = Params.split(';');
1003 if (ParamName == "closed-world") {
1004 Result.IsClosedWorld = true;
1005 } else {
1007 formatv("invalid AMDGPUAttributor pass parameter '{0}' ", ParamName)
1008 .str(),
1010 }
1011 }
1012 return Result;
1013}
1014
1016
1017#define GET_PASS_REGISTRY "AMDGPUPassRegistry.def"
1019
1020 PB.registerPipelineParsingCallback(
1021 [this](StringRef Name, CGSCCPassManager &PM,
1023 if (Name == "amdgpu-attributor-cgscc" && getTargetTriple().isAMDGCN()) {
1025 *static_cast<GCNTargetMachine *>(this)));
1026 return true;
1027 }
1028 return false;
1029 });
1030
1031 PB.registerScalarOptimizerLateEPCallback(
1032 [](FunctionPassManager &FPM, OptimizationLevel Level) {
1033 if (Level == OptimizationLevel::O0)
1034 return;
1035
1037 });
1038
1039 PB.registerVectorizerEndEPCallback(
1040 [](FunctionPassManager &FPM, OptimizationLevel Level) {
1041 if (Level == OptimizationLevel::O0)
1042 return;
1043
1045 });
1046
1047 PB.registerPipelineEarlySimplificationEPCallback(
1048 [this](ModulePassManager &PM, OptimizationLevel Level,
1050 if (!isLTOPreLink(Phase) && getTargetTriple().isAMDGCN()) {
1051 // When we are not using -fgpu-rdc, we can run accelerator code
1052 // selection relatively early, but still after linking to prevent
1053 // eager removal of potentially reachable symbols.
1054 if (EnableHipStdPar) {
1057 }
1058
1060 }
1061
1062 if (Level == OptimizationLevel::O0)
1063 return;
1064
1065 // We don't want to run internalization at per-module stage.
1068 PM.addPass(GlobalDCEPass());
1069 }
1070
1073 });
1074
1075 PB.registerPeepholeEPCallback(
1076 [](FunctionPassManager &FPM, OptimizationLevel Level) {
1077 if (Level == OptimizationLevel::O0)
1078 return;
1079
1083
1086 });
1087
1088 PB.registerCGSCCOptimizerLateEPCallback(
1089 [this](CGSCCPassManager &PM, OptimizationLevel Level) {
1090 if (Level == OptimizationLevel::O0)
1091 return;
1092
1094
1095 // Add promote kernel arguments pass to the opt pipeline right before
1096 // infer address spaces which is needed to do actual address space
1097 // rewriting.
1100
1101 // Add infer address spaces pass to the opt pipeline after inlining
1102 // but before SROA to increase SROA opportunities.
1104
1105 // This should run after inlining to have any chance of doing
1106 // anything, and before other cleanup optimizations.
1108
1109 // Promote alloca to vector before SROA and loop unroll. If we
1110 // manage to eliminate allocas before unroll we may choose to unroll
1111 // less.
1113
1114 PM.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
1115 });
1116
1117 // FIXME: Why is AMDGPUAttributor not in CGSCC?
1118 PB.registerOptimizerLastEPCallback([this](ModulePassManager &MPM,
1119 OptimizationLevel Level,
1121 if (Level != OptimizationLevel::O0) {
1122 if (!isLTOPreLink(Phase)) {
1123 if (EnableAMDGPUAttributor && getTargetTriple().isAMDGCN()) {
1125 MPM.addPass(AMDGPUAttributorPass(*this, Opts, Phase));
1126 }
1127 }
1128 }
1129 });
1130
1131 PB.registerFullLinkTimeOptimizationLastEPCallback(
1132 [this](ModulePassManager &PM, OptimizationLevel Level) {
1133 // Clean up redundant memory round-trips that the full-LTO pipeline,
1134 // unlike the non-LTO/ThinLTO ones, otherwise leaves for codegen.
1135 if (Level != OptimizationLevel::O0) {
1137 EarlyCSEPass(/*UseMemorySSA=*/true)));
1138 }
1139
1140 // When we are using -fgpu-rdc, we can only run accelerator code
1141 // selection after linking to prevent, otherwise we end up removing
1142 // potentially reachable symbols that were exported as external in other
1143 // modules.
1144 if (EnableHipStdPar) {
1147 }
1148 // We want to support the -lto-partitions=N option as "best effort".
1149 // For that, we need to lower LDS earlier in the pipeline before the
1150 // module is partitioned for codegen.
1153 if (EnableSwLowerLDS)
1157 if (Level != OptimizationLevel::O0) {
1158 // We only want to run this with O2 or higher since inliner and SROA
1159 // don't run in O1.
1160 if (Level != OptimizationLevel::O1) {
1161 PM.addPass(
1163 }
1164 // Do we really need internalization in LTO?
1165 if (InternalizeSymbols) {
1167 PM.addPass(GlobalDCEPass());
1168 }
1169 if (EnableAMDGPUAttributor && getTargetTriple().isAMDGCN()) {
1172 Opt.IsClosedWorld = true;
1175 }
1176 }
1177 if (!NoKernelInfoEndLTO) {
1179 FPM.addPass(KernelInfoPrinter(this));
1180 PM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
1181 }
1182 });
1183
1184 PB.registerRegClassFilterParsingCallback(
1185 [](StringRef FilterName) -> RegAllocFilterFunc {
1186 if (FilterName == "sgpr")
1187 return onlyAllocateSGPRs;
1188 if (FilterName == "vgpr")
1189 return onlyAllocateVGPRs;
1190 if (FilterName == "wwm")
1191 return onlyAllocateWWMRegs;
1192 return nullptr;
1193 });
1194}
1195
1197 unsigned DestAS) const {
1198 return AMDGPU::isFlatGlobalAddrSpace(SrcAS) &&
1200}
1201
1203 if (auto *Arg = dyn_cast<Argument>(V);
1204 Arg &&
1205 AMDGPU::isModuleEntryFunctionCC(Arg->getParent()->getCallingConv()) &&
1206 !Arg->hasByRefAttr())
1208
1209 const auto *LD = dyn_cast<LoadInst>(V);
1210 if (!LD) // TODO: Handle invariant load like constant.
1212
1213 // It must be a generic pointer loaded.
1214 assert(V->getType()->getPointerAddressSpace() == AMDGPUAS::FLAT_ADDRESS);
1215
1216 const auto *Ptr = LD->getPointerOperand();
1217 if (Ptr->getType()->getPointerAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS)
1219 // For a generic pointer loaded from the constant memory, it could be assumed
1220 // as a global pointer since the constant memory is only populated on the
1221 // host side. As implied by the offload programming model, only global
1222 // pointers could be referenced on the host side.
1224}
1225
1226std::pair<const Value *, unsigned>
1228 if (auto *II = dyn_cast<IntrinsicInst>(V)) {
1229 switch (II->getIntrinsicID()) {
1230 case Intrinsic::amdgcn_is_shared:
1231 return std::pair(II->getArgOperand(0), AMDGPUAS::LOCAL_ADDRESS);
1232 case Intrinsic::amdgcn_is_private:
1233 return std::pair(II->getArgOperand(0), AMDGPUAS::PRIVATE_ADDRESS);
1234 default:
1235 break;
1236 }
1237 return std::pair(nullptr, -1);
1238 }
1239 // Check the global pointer predication based on
1240 // (!is_share(p) && !is_private(p)). Note that logic 'and' is commutative and
1241 // the order of 'is_shared' and 'is_private' is not significant.
1242 Value *Ptr;
1243 if (match(
1244 const_cast<Value *>(V),
1247 m_Deferred(Ptr))))))
1248 return std::pair(Ptr, AMDGPUAS::GLOBAL_ADDRESS);
1249
1250 return std::pair(nullptr, -1);
1251}
1252
1253unsigned
1268
1270 Module &M, unsigned NumParts,
1271 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback) {
1272 // FIXME(?): Would be better to use an already existing Analysis/PassManager,
1273 // but all current users of this API don't have one ready and would need to
1274 // create one anyway. Let's hide the boilerplate for now to keep it simple.
1275
1280
1281 PassBuilder PB(this);
1282 PB.registerModuleAnalyses(MAM);
1283 PB.registerFunctionAnalyses(FAM);
1284 PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
1285
1287 MPM.addPass(AMDGPUSplitModulePass(NumParts, ModuleCallback));
1288 MPM.run(M, MAM);
1289 return true;
1290}
1291
1292//===----------------------------------------------------------------------===//
1293// GCN Target Machine (SI+)
1294//===----------------------------------------------------------------------===//
1295
1297 StringRef CPU, StringRef FS,
1298 const TargetOptions &Options,
1299 std::optional<Reloc::Model> RM,
1300 std::optional<CodeModel::Model> CM,
1301 CodeGenOptLevel OL, bool JIT)
1302 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {
1304}
1305
1306enum class OOBFlagValue {
1307 Any = 0,
1310};
1311
1312/// Returns the OOB mode encoded by a module flag.
1313/// An absent flag defaults to Any.
1314static OOBFlagValue getOOBFlagValue(const Module &M, StringRef FlagName) {
1315 const auto *Flag =
1316 mdconst::dyn_extract_or_null<ConstantInt>(M.getModuleFlag(FlagName));
1317 if (!Flag)
1318 return OOBFlagValue::Any;
1319 return static_cast<OOBFlagValue>(Flag->getZExtValue());
1320}
1321
1322/// Returns the xnack/sramecc setting encoded by a module flag.
1323/// Module flag values: 0 = disabled, 1 = enabled.
1324/// An absent flag defaults to Any.
1327 StringRef FlagName) {
1329
1330 if (XnackSetting.getNumOccurrences() > 0 && FlagName == "amdgpu.xnack")
1331 return XnackSetting ? TargetIDSetting::On : TargetIDSetting::Off;
1332 if (SramEccSetting.getNumOccurrences() > 0 && FlagName == "amdgpu.sramecc")
1333 return SramEccSetting ? TargetIDSetting::On : TargetIDSetting::Off;
1334
1335 const auto *Flag =
1336 mdconst::dyn_extract_or_null<ConstantInt>(M.getModuleFlag(FlagName));
1337 if (!Flag)
1338 return TargetIDSetting::Any;
1339 return Flag->getZExtValue() == 0 ? TargetIDSetting::Off : TargetIDSetting::On;
1340}
1341
1342const TargetSubtargetInfo *
1344 StringRef GPU = getGPUName(F);
1346
1347 const Module &M = *F.getParent();
1350 bool BufRelaxed = BufOOB == OOBFlagValue::Relaxed;
1351 bool TBufRelaxed = TBufOOB == OOBFlagValue::Relaxed;
1352
1354 TargetIDSetting Xnack = getTargetIDSettingFromModuleFlag(M, "amdgpu.xnack");
1355 TargetIDSetting SramEcc =
1356 getTargetIDSettingFromModuleFlag(M, "amdgpu.sramecc");
1357
1358 SmallString<128> SubtargetKey(GPU);
1359 SubtargetKey.append(FS);
1360 if (BufRelaxed)
1361 SubtargetKey.append(",buf-oob=1");
1362 if (TBufRelaxed)
1363 SubtargetKey.append(",tbuf-oob=1");
1364 if (Xnack != TargetIDSetting::Any) {
1365 SubtargetKey.append(",xnack=");
1366 SubtargetKey.push_back(Xnack == TargetIDSetting::On ? '1' : '0');
1367 }
1368 if (SramEcc != TargetIDSetting::Any) {
1369 SubtargetKey.append(",sramecc=");
1370 SubtargetKey.push_back(Xnack == TargetIDSetting::On ? '1' : '0');
1371 }
1372
1373 auto &I = SubtargetMap[SubtargetKey];
1374 if (!I) {
1376 Triple::SubArchType GPUSubArch = AMDGPU::getSubArch(Kind);
1377
1378 // Enforce the subtarget is covered by the subarch. Tolerate no subarch for
1379 // legacy compatibility.
1380 const Triple &TT = M.getTargetTriple();
1381 if (GPUSubArch != TT.getSubArch() && Kind != AMDGPU::GK_NONE) {
1382 // Check if this is a generic subarch which has subtargets. Ignore
1383 // unknown subtargets with a known subarch, since for whatever reason
1384 // the convention is to just print a warning and ignore unrecognized
1385 // subtargets.
1386 bool IsLegacyEmptySubArch = TT.getSubArch() == Triple::NoSubArch;
1387 if (!IsLegacyEmptySubArch &&
1388 AMDGPU::getMajorSubArch(GPUSubArch) != TT.getSubArch()) {
1389 F.getContext().emitError("invalid subtarget '" + Twine(GPU) +
1390 "' for subarch " + TT.getArchName());
1391 }
1392 }
1393
1394 I = std::make_unique<GCNSubtarget>(TargetTriple, GPU, FS, *this, BufRelaxed,
1395 TBufRelaxed, Xnack, SramEcc);
1396 }
1397
1398 I->setScalarizeGlobalBehavior(ScalarizeGlobal);
1399
1400 return I.get();
1401}
1402
1405 return TargetTransformInfo(std::make_unique<GCNTTIImpl>(this, F));
1406}
1407
1410 raw_pwrite_stream *DwoOut, CodeGenFileType FileType,
1411 const CGPassBuilderOption &Opts, MCContext &Ctx,
1413 AMDGPUCodeGenPassBuilder CGPB(*this, Opts, PIC);
1414 return CGPB.buildPipeline(MPM, MAM, Out, DwoOut, FileType, Ctx);
1415}
1416
1419 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1420 if (ST.enableSIScheduler())
1422
1423 StringRef SchedStrategy = AMDGPU::getSchedStrategy(C->MF->getFunction());
1424
1425 if (SchedStrategy == "max-ilp")
1427
1428 if (SchedStrategy == "max-memory-clause")
1430
1431 if (SchedStrategy == "iterative-ilp")
1433
1434 if (SchedStrategy == "iterative-minreg")
1435 return createMinRegScheduler(C);
1436
1437 if (SchedStrategy == "iterative-maxocc")
1439
1440 if (SchedStrategy == "coexec") {
1441 diagnoseUnsupportedCoExecSchedulerSelection(C->MF->getFunction(), ST);
1443 }
1444
1446}
1447
1450 if (useNoopPostScheduler(C->MF->getFunction()))
1452
1453 ScheduleDAGMI *DAG =
1454 new GCNPostScheduleDAGMILive(C, std::make_unique<PostGenericScheduler>(C),
1455 /*RemoveKillFlags=*/true);
1456 const GCNSubtarget &ST = C->MF->getSubtarget<GCNSubtarget>();
1458 if (ST.shouldClusterStores())
1461 if ((EnableVOPD.getNumOccurrences() ||
1463 EnableVOPD)
1468 return DAG;
1469}
1470//===----------------------------------------------------------------------===//
1471// AMDGPU Legacy Pass Setup
1472//===----------------------------------------------------------------------===//
1473
1474std::unique_ptr<CSEConfigBase> llvm::AMDGPUPassConfig::getCSEConfig() const {
1475 return getStandardCSEConfigForOpt(TM->getOptLevel());
1476}
1477
1478namespace {
1479
1480class GCNPassConfig final : public AMDGPUPassConfig {
1481public:
1482 GCNPassConfig(TargetMachine &TM, PassManagerBase &PM)
1483 : AMDGPUPassConfig(TM, PM) {
1484 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
1485 }
1486
1487 GCNTargetMachine &getGCNTargetMachine() const {
1488 return getTM<GCNTargetMachine>();
1489 }
1490
1491 bool addPreISel() override;
1492 void addMachineSSAOptimization() override;
1493 bool addILPOpts() override;
1494 bool addInstSelector() override;
1495 bool addIRTranslator() override;
1496 void addPreLegalizeMachineIR() override;
1497 bool addLegalizeMachineIR() override;
1498 void addPreRegBankSelect() override;
1499 bool addRegBankSelect() override;
1500 void addPreGlobalInstructionSelect() override;
1501 bool addGlobalInstructionSelect() override;
1502 void addPreRegAlloc() override;
1503 void addFastRegAlloc() override;
1504 void addOptimizedRegAlloc() override;
1505
1506 FunctionPass *createSGPRAllocPass(bool Optimized);
1507 FunctionPass *createVGPRAllocPass(bool Optimized);
1508 FunctionPass *createWWMRegAllocPass(bool Optimized);
1509 FunctionPass *createRegAllocPass(bool Optimized) override;
1510
1511 bool addRegAssignAndRewriteFast() override;
1512 bool addRegAssignAndRewriteOptimized() override;
1513
1514 bool addPreRewrite() override;
1515 void addPostRegAlloc() override;
1516 void addPreSched2() override;
1517 void addPreEmitPass() override;
1518 void addPostBBSections() override;
1519};
1520
1521} // end anonymous namespace
1522
1524 : TargetPassConfig(TM, PM) {
1525 // Exceptions and StackMaps are not supported, so these passes will never do
1526 // anything.
1529 // Garbage collection is not supported.
1532}
1533
1540
1545 // ReassociateGEPs exposes more opportunities for SLSR. See
1546 // the example in reassociate-geps-and-slsr.ll.
1548 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
1549 // EarlyCSE can reuse.
1551 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
1553 // NaryReassociate on GEPs creates redundant common expressions, so run
1554 // EarlyCSE after it.
1556}
1557
1560
1561 if (RemoveIncompatibleFunctions && TM.getTargetTriple().isAMDGCN())
1563
1564 // There is no reason to run these.
1568
1569 if (TM.getTargetTriple().isAMDGCN())
1571
1572 if (LowerCtorDtor)
1574
1575 if (TM.getTargetTriple().isAMDGCN() &&
1578
1581
1582 // This can be disabled by passing ::Disable here or on the command line
1583 // with --expand-variadics-override=disable.
1585
1586 // Function calls are not supported, so make sure we inline everything.
1589
1590 // Handle uses of OpenCL image2d_t, image3d_t and sampler_t arguments.
1591 if (TM.getTargetTriple().getArch() == Triple::r600)
1593
1594 // Make enqueued block runtime handles externally visible.
1596
1597 // Lower special LDS accesses.
1600
1601 // Lower LDS accesses to global memory pass if address sanitizer is enabled.
1602 if (EnableSwLowerLDS)
1604
1605 // Runs before PromoteAlloca so the latter can account for function uses
1608 }
1609
1610 // Run atomic optimizer before Atomic Expand
1611 if ((TM.getTargetTriple().isAMDGCN()) &&
1612 (TM.getOptLevel() >= CodeGenOptLevel::Less) &&
1615 }
1616
1618
1619 if (TM.getOptLevel() > CodeGenOptLevel::None) {
1621
1624
1628 AAResults &AAR) {
1629 if (auto *WrapperPass = P.getAnalysisIfAvailable<AMDGPUAAWrapperPass>())
1630 AAR.addAAResult(WrapperPass->getResult());
1631 }));
1632 }
1633
1634 if (TM.getTargetTriple().isAMDGCN()) {
1635 // TODO: May want to move later or split into an early and late one.
1637 }
1638
1639 // Try to hoist loop invariant parts of divisions AMDGPUCodeGenPrepare may
1640 // have expanded.
1641 if (TM.getOptLevel() > CodeGenOptLevel::Less)
1643 }
1644
1646
1647 // EarlyCSE is not always strong enough to clean up what LSR produces. For
1648 // example, GVN can combine
1649 //
1650 // %0 = add %a, %b
1651 // %1 = add %b, %a
1652 //
1653 // and
1654 //
1655 // %0 = shl nsw %a, 2
1656 // %1 = shl %a, 2
1657 //
1658 // but EarlyCSE can do neither of them.
1661}
1662
1664 if (TM->getTargetTriple().isAMDGCN() &&
1665 TM->getOptLevel() > CodeGenOptLevel::None)
1667
1668 if (TM->getTargetTriple().isAMDGCN() && EnableLowerKernelArguments)
1670
1672
1675
1676 if (TM->getTargetTriple().isAMDGCN()) {
1677 // This lowering has been placed after codegenprepare to take advantage of
1678 // address mode matching (which is why it isn't put with the LDS lowerings).
1679 // It could be placed anywhere before uniformity annotations (an analysis
1680 // that it changes by splitting up fat pointers into their components)
1681 // but has been put before switch lowering and CFG flattening so that those
1682 // passes can run on the more optimized control flow this pass creates in
1683 // many cases.
1686 }
1687
1688 // LowerSwitch pass may introduce unreachable blocks that can
1689 // cause unexpected behavior for subsequent passes. Placing it
1690 // here seems better that these blocks would get cleaned up by
1691 // UnreachableBlockElim inserted next in the pass flow.
1693}
1694
1696 if (TM->getOptLevel() > CodeGenOptLevel::None)
1698 return false;
1699}
1700
1705
1707 // Do nothing. GC is not supported.
1708 return false;
1709}
1710
1711//===----------------------------------------------------------------------===//
1712// GCN Legacy Pass Setup
1713//===----------------------------------------------------------------------===//
1714
1715bool GCNPassConfig::addPreISel() {
1717
1718 if (TM->getOptLevel() > CodeGenOptLevel::None) {
1719 addPass(createSinkingPass());
1721 }
1722
1723 // Merge divergent exit nodes. StructurizeCFG won't recognize the multi-exit
1724 // regions formed by them.
1726 addPass(createFixIrreduciblePass());
1727 addPass(createUnifyLoopExitsPass());
1728 addPass(createStructurizeCFGPass(false)); // true -> SkipUniformRegions
1729
1732 // TODO: Move this right after structurizeCFG to avoid extra divergence
1733 // analysis. This depends on stopping SIAnnotateControlFlow from making
1734 // control flow modifications.
1736
1737 // SDAG requires LCSSA, GlobalISel does not. Disable LCSSA for -global-isel
1738 // without any of the fallback options.
1741 !isGlobalISelAbortEnabled())
1742 addPass(createLCSSAPass());
1743
1744 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1746
1747 return false;
1748}
1749
1750void GCNPassConfig::addMachineSSAOptimization() {
1752
1753 // We want to fold operands after PeepholeOptimizer has run (or as part of
1754 // it), because it will eliminate extra copies making it easier to fold the
1755 // real source operand. We want to eliminate dead instructions after, so that
1756 // we see fewer uses of the copies. We then need to clean up the dead
1757 // instructions leftover after the operands are folded as well.
1758 //
1759 // XXX - Can we get away without running DeadMachineInstructionElim again?
1760 addPass(&SIFoldOperandsLegacyID);
1761 if (EnableDPPCombine)
1762 addPass(&GCNDPPCombineLegacyID);
1764 if (isPassEnabled(EnableSDWAPeephole)) {
1765 addPass(&SIPeepholeSDWALegacyID);
1766 addPass(&EarlyMachineLICMID);
1767 addPass(&MachineCSELegacyID);
1768 addPass(&SIFoldOperandsLegacyID);
1769 }
1772}
1773
1774bool GCNPassConfig::addILPOpts() {
1776 addPass(&EarlyIfConverterLegacyID);
1777
1779 return false;
1780}
1781
1782bool GCNPassConfig::addInstSelector() {
1784 addPass(&SIFixSGPRCopiesLegacyID);
1786 return false;
1787}
1788
1789bool GCNPassConfig::addIRTranslator() {
1790 addPass(new IRTranslatorLegacy(getOptLevel()));
1791 return false;
1792}
1793
1794void GCNPassConfig::addPreLegalizeMachineIR() {
1795 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1796 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone));
1797 addPass(new LocalizerLegacy());
1798}
1799
1800bool GCNPassConfig::addLegalizeMachineIR() {
1801 addPass(new LegalizerLegacy());
1802 return false;
1803}
1804
1805void GCNPassConfig::addPreRegBankSelect() {
1806 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1807 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone));
1809}
1810
1811bool GCNPassConfig::addRegBankSelect() {
1814 return false;
1815}
1816
1817void GCNPassConfig::addPreGlobalInstructionSelect() {
1818 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
1819 addPass(createAMDGPURegBankCombiner(IsOptNone));
1820}
1821
1822bool GCNPassConfig::addGlobalInstructionSelect() {
1823 addPass(new InstructionSelectLegacy(getOptLevel()));
1824 return false;
1825}
1826
1827void GCNPassConfig::addFastRegAlloc() {
1828 // FIXME: We have to disable the verifier here because of PHIElimination +
1829 // TwoAddressInstructions disabling it.
1830
1831 // This must be run immediately after phi elimination and before
1832 // TwoAddressInstructions, otherwise the processing of the tied operand of
1833 // SI_ELSE will introduce a copy of the tied operand source after the else.
1835
1837
1839}
1840
1841void GCNPassConfig::addPreRegAlloc() {
1842 if (getOptLevel() != CodeGenOptLevel::None)
1844 if (getOptLevel() >= CodeGenOptLevel::Default && EnableMachinePipeliner)
1845 addPass(&MachinePipelinerID);
1846}
1847
1848void GCNPassConfig::addOptimizedRegAlloc() {
1849 if (EnableDCEInRA)
1851
1852 // FIXME: when an instruction has a Killed operand, and the instruction is
1853 // inside a bundle, seems only the BUNDLE instruction appears as the Kills of
1854 // the register in LiveVariables, this would trigger a failure in verifier,
1855 // we should fix it and enable the verifier.
1856 if (OptVGPRLiveRange)
1858
1859 // This must be run immediately after phi elimination and before
1860 // TwoAddressInstructions, otherwise the processing of the tied operand of
1861 // SI_ELSE will introduce a copy of the tied operand source after the else.
1863
1866
1867 if (isPassEnabled(EnablePreRAOptimizations))
1869
1870 // Allow the scheduler to run before SIWholeQuadMode inserts exec manipulation
1871 // instructions that cause scheduling barriers.
1873
1874 if (OptExecMaskPreRA)
1876
1877 // This is not an essential optimization and it has a noticeable impact on
1878 // compilation time, so we only enable it from O2.
1879 if (TM->getOptLevel() > CodeGenOptLevel::Less)
1881
1883}
1884
1885bool GCNPassConfig::addPreRewrite() {
1887 addPass(&GCNNSAReassignID);
1888
1890 return true;
1891}
1892
1893FunctionPass *GCNPassConfig::createSGPRAllocPass(bool Optimized) {
1894 // Initialize the global default.
1895 llvm::call_once(InitializeDefaultSGPRRegisterAllocatorFlag,
1896 initializeDefaultSGPRRegisterAllocatorOnce);
1897
1898 RegisterRegAlloc::FunctionPassCtor Ctor = SGPRRegisterRegAlloc::getDefault();
1899 if (Ctor != useDefaultRegisterAllocator)
1900 return Ctor();
1901
1902 if (Optimized)
1903 return createGreedyRegisterAllocator(onlyAllocateSGPRs);
1904
1905 return createFastRegisterAllocator(onlyAllocateSGPRs, false);
1906}
1907
1908FunctionPass *GCNPassConfig::createVGPRAllocPass(bool Optimized) {
1909 // Initialize the global default.
1910 llvm::call_once(InitializeDefaultVGPRRegisterAllocatorFlag,
1911 initializeDefaultVGPRRegisterAllocatorOnce);
1912
1913 RegisterRegAlloc::FunctionPassCtor Ctor = VGPRRegisterRegAlloc::getDefault();
1914 if (Ctor != useDefaultRegisterAllocator)
1915 return Ctor();
1916
1917 if (Optimized)
1918 return createGreedyVGPRRegisterAllocator();
1919
1920 return createFastVGPRRegisterAllocator();
1921}
1922
1923FunctionPass *GCNPassConfig::createWWMRegAllocPass(bool Optimized) {
1924 // Initialize the global default.
1925 llvm::call_once(InitializeDefaultWWMRegisterAllocatorFlag,
1926 initializeDefaultWWMRegisterAllocatorOnce);
1927
1928 RegisterRegAlloc::FunctionPassCtor Ctor = WWMRegisterRegAlloc::getDefault();
1929 if (Ctor != useDefaultRegisterAllocator)
1930 return Ctor();
1931
1932 if (Optimized)
1933 return createGreedyWWMRegisterAllocator();
1934
1935 return createFastWWMRegisterAllocator();
1936}
1937
1938FunctionPass *GCNPassConfig::createRegAllocPass(bool Optimized) {
1939 llvm_unreachable("should not be used");
1940}
1941
1943 "-regalloc not supported with amdgcn. Use -sgpr-regalloc, -wwm-regalloc, "
1944 "and -vgpr-regalloc";
1945
1946bool GCNPassConfig::addRegAssignAndRewriteFast() {
1947 if (!usingDefaultRegAlloc())
1949
1950 addPass(&GCNPreRALongBranchRegID);
1951
1952 addPass(createSGPRAllocPass(false));
1953
1954 // Equivalent of PEI for SGPRs.
1955 addPass(&SILowerSGPRSpillsLegacyID);
1956
1957 // To Allocate wwm registers used in whole quad mode operations (for shaders).
1959
1960 // For allocating other wwm register operands.
1961 addPass(createWWMRegAllocPass(false));
1962
1963 addPass(&SILowerWWMCopiesLegacyID);
1965
1966 // For allocating per-thread VGPRs.
1967 addPass(createVGPRAllocPass(false));
1968
1969 return true;
1970}
1971
1972bool GCNPassConfig::addRegAssignAndRewriteOptimized() {
1973 if (!usingDefaultRegAlloc())
1975
1976 addPass(&GCNPreRALongBranchRegID);
1977
1978 addPass(createSGPRAllocPass(true));
1979
1980 // Commit allocated register changes. This is mostly necessary because too
1981 // many things rely on the use lists of the physical registers, such as the
1982 // verifier. This is only necessary with allocators which use LiveIntervals,
1983 // since FastRegAlloc does the replacements itself.
1984 addPass(createVirtRegRewriter(false));
1985
1986 // At this point, the sgpr-regalloc has been done and it is good to have the
1987 // stack slot coloring to try to optimize the SGPR spill stack indices before
1988 // attempting the custom SGPR spill lowering.
1989 addPass(&StackSlotColoringID);
1990
1991 // Equivalent of PEI for SGPRs.
1992 addPass(&SILowerSGPRSpillsLegacyID);
1993
1994 // To Allocate wwm registers used in whole quad mode operations (for shaders).
1996
1997 // For allocating other whole wave mode registers.
1998 addPass(createWWMRegAllocPass(true));
1999 addPass(&SILowerWWMCopiesLegacyID);
2000 addPass(createVirtRegRewriter(false));
2002
2003 // For allocating per-thread VGPRs.
2004 addPass(createVGPRAllocPass(true));
2005
2006 addPreRewrite();
2007 addPass(&VirtRegRewriterID);
2008
2010
2011 return true;
2012}
2013
2014void GCNPassConfig::addPostRegAlloc() {
2015 addPass(&SIFixVGPRCopiesID);
2016 if (getOptLevel() > CodeGenOptLevel::None)
2019}
2020
2021void GCNPassConfig::addPreSched2() {
2022 if (TM->getOptLevel() > CodeGenOptLevel::None)
2024 addPass(&SIPostRABundlerLegacyID);
2025}
2026
2027void GCNPassConfig::addPreEmitPass() {
2028 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less))
2029 addPass(&GCNCreateVOPDID);
2030 addPass(createSIMemoryLegalizerPass());
2031 addPass(createSIInsertWaitcntsPass());
2032
2033 addPass(createSIModeRegisterPass());
2034
2035 if (getOptLevel() > CodeGenOptLevel::None)
2036 addPass(&SIInsertHardClausesID);
2037
2039 if (isPassEnabled(EnableSetWavePriority, CodeGenOptLevel::Less))
2041 if (getOptLevel() > CodeGenOptLevel::None)
2042 addPass(&SIPreEmitPeepholeID);
2043 // The hazard recognizer that runs as part of the post-ra scheduler does not
2044 // guarantee to be able handle all hazards correctly. This is because if there
2045 // are multiple scheduling regions in a basic block, the regions are scheduled
2046 // bottom up, so when we begin to schedule a region we don't know what
2047 // instructions were emitted directly before it.
2048 //
2049 // Here we add a stand-alone hazard recognizer pass which can handle all
2050 // cases.
2051 addPass(&PostRAHazardRecognizerID);
2052
2054
2056
2057 if (isPassEnabled(EnableInsertDelayAlu, CodeGenOptLevel::Less))
2058 addPass(&AMDGPUInsertDelayAluID);
2059
2060 addPass(&BranchRelaxationPassID);
2061}
2062
2063void GCNPassConfig::addPostBBSections() {
2064 // We run this later to avoid passes like livedebugvalues and BBSections
2065 // having to deal with the apparent multi-entry functions we may generate.
2067}
2068
2070 return new GCNPassConfig(*this, PM);
2071}
2072
2078
2085
2089
2096
2099 SMDiagnostic &Error, SMRange &SourceRange) const {
2100 const yaml::SIMachineFunctionInfo &YamlMFI =
2101 static_cast<const yaml::SIMachineFunctionInfo &>(MFI_);
2102 MachineFunction &MF = PFS.MF;
2104 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
2105
2106 if (MFI->initializeBaseYamlFields(YamlMFI, MF, PFS, Error, SourceRange))
2107 return true;
2108
2109 if (MFI->Occupancy == 0) {
2110 // Fixup the subtarget dependent default value.
2111 MFI->Occupancy = ST.getOccupancyWithWorkGroupSizes(MF).second;
2112 }
2113
2114 auto parseRegister = [&](const yaml::StringValue &RegName, Register &RegVal) {
2115 Register TempReg;
2116 if (parseNamedRegisterReference(PFS, TempReg, RegName.Value, Error)) {
2117 SourceRange = RegName.SourceRange;
2118 return true;
2119 }
2120 RegVal = TempReg;
2121
2122 return false;
2123 };
2124
2125 auto parseOptionalRegister = [&](const yaml::StringValue &RegName,
2126 Register &RegVal) {
2127 return !RegName.Value.empty() && parseRegister(RegName, RegVal);
2128 };
2129
2130 if (parseOptionalRegister(YamlMFI.VGPRForAGPRCopy, MFI->VGPRForAGPRCopy))
2131 return true;
2132
2133 if (parseOptionalRegister(YamlMFI.SGPRForEXECCopy, MFI->SGPRForEXECCopy))
2134 return true;
2135
2136 if (parseOptionalRegister(YamlMFI.LongBranchReservedReg,
2137 MFI->LongBranchReservedReg))
2138 return true;
2139
2140 auto diagnoseRegisterClass = [&](const yaml::StringValue &RegName) {
2141 // Create a diagnostic for a the register string literal.
2142 const MemoryBuffer &Buffer =
2143 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID());
2144 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1,
2145 RegName.Value.size(), SourceMgr::DK_Error,
2146 "incorrect register class for field", RegName.Value,
2147 {}, {});
2148 SourceRange = RegName.SourceRange;
2149 return true;
2150 };
2151
2152 if (parseRegister(YamlMFI.ScratchRSrcReg, MFI->ScratchRSrcReg) ||
2153 parseRegister(YamlMFI.FrameOffsetReg, MFI->FrameOffsetReg) ||
2154 parseRegister(YamlMFI.StackPtrOffsetReg, MFI->StackPtrOffsetReg))
2155 return true;
2156
2157 if (MFI->ScratchRSrcReg != AMDGPU::PRIVATE_RSRC_REG &&
2158 !AMDGPU::SGPR_128RegClass.contains(MFI->ScratchRSrcReg)) {
2159 return diagnoseRegisterClass(YamlMFI.ScratchRSrcReg);
2160 }
2161
2162 if (MFI->FrameOffsetReg != AMDGPU::FP_REG &&
2163 !AMDGPU::SGPR_32RegClass.contains(MFI->FrameOffsetReg)) {
2164 return diagnoseRegisterClass(YamlMFI.FrameOffsetReg);
2165 }
2166
2167 if (MFI->StackPtrOffsetReg != AMDGPU::SP_REG &&
2168 !AMDGPU::SGPR_32RegClass.contains(MFI->StackPtrOffsetReg)) {
2169 return diagnoseRegisterClass(YamlMFI.StackPtrOffsetReg);
2170 }
2171
2172 for (const auto &YamlReg : YamlMFI.WWMReservedRegs) {
2173 Register ParsedReg;
2174 if (parseRegister(YamlReg, ParsedReg))
2175 return true;
2176
2177 MFI->reserveWWMRegister(ParsedReg);
2178 }
2179
2180 for (const auto &[_, Info] : PFS.VRegInfosNamed) {
2181 MFI->setFlag(Info->VReg, Info->Flags);
2182 }
2183 for (const auto &[_, Info] : PFS.VRegInfos) {
2184 MFI->setFlag(Info->VReg, Info->Flags);
2185 }
2186
2187 for (const auto &YamlRegStr : YamlMFI.SpillPhysVGPRS) {
2188 Register ParsedReg;
2189 if (parseRegister(YamlRegStr, ParsedReg))
2190 return true;
2191 MFI->SpillPhysVGPRs.push_back(ParsedReg);
2192 }
2193
2194 auto parseAndCheckArgument = [&](const std::optional<yaml::SIArgument> &A,
2195 const TargetRegisterClass &RC,
2196 ArgDescriptor &Arg, unsigned UserSGPRs,
2197 unsigned SystemSGPRs) {
2198 // Skip parsing if it's not present.
2199 if (!A)
2200 return false;
2201
2202 if (A->IsRegister) {
2203 Register Reg;
2204 if (parseNamedRegisterReference(PFS, Reg, A->RegisterName.Value, Error)) {
2205 SourceRange = A->RegisterName.SourceRange;
2206 return true;
2207 }
2208 if (!RC.contains(Reg))
2209 return diagnoseRegisterClass(A->RegisterName);
2211 } else
2212 Arg = ArgDescriptor::createStack(A->StackOffset);
2213 // Check and apply the optional mask.
2214 if (A->Mask)
2215 Arg = ArgDescriptor::createArg(Arg, *A->Mask);
2216
2217 MFI->NumUserSGPRs += UserSGPRs;
2218 MFI->NumSystemSGPRs += SystemSGPRs;
2219 return false;
2220 };
2221
2222 if (YamlMFI.ArgInfo &&
2223 (parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentBuffer,
2224 AMDGPU::SGPR_128RegClass,
2225 MFI->ArgInfo.PrivateSegmentBuffer, 4, 0) ||
2226 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchPtr,
2227 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchPtr,
2228 2, 0) ||
2229 parseAndCheckArgument(YamlMFI.ArgInfo->QueuePtr, AMDGPU::SReg_64RegClass,
2230 MFI->ArgInfo.QueuePtr, 2, 0) ||
2231 parseAndCheckArgument(YamlMFI.ArgInfo->KernargSegmentPtr,
2232 AMDGPU::SReg_64RegClass,
2233 MFI->ArgInfo.KernargSegmentPtr, 2, 0) ||
2234 parseAndCheckArgument(YamlMFI.ArgInfo->DispatchID,
2235 AMDGPU::SReg_64RegClass, MFI->ArgInfo.DispatchID,
2236 2, 0) ||
2237 parseAndCheckArgument(YamlMFI.ArgInfo->FlatScratchInit,
2238 AMDGPU::SReg_64RegClass,
2239 MFI->ArgInfo.FlatScratchInit, 2, 0) ||
2240 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentSize,
2241 AMDGPU::SGPR_32RegClass,
2242 MFI->ArgInfo.PrivateSegmentSize, 0, 0) ||
2243 parseAndCheckArgument(YamlMFI.ArgInfo->LDSKernelId,
2244 AMDGPU::SGPR_32RegClass,
2245 MFI->ArgInfo.LDSKernelId, 0, 1) ||
2246 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDX,
2247 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDX,
2248 0, 1) ||
2249 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDY,
2250 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDY,
2251 0, 1) ||
2252 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupIDZ,
2253 AMDGPU::SGPR_32RegClass, MFI->ArgInfo.WorkGroupIDZ,
2254 0, 1) ||
2255 parseAndCheckArgument(YamlMFI.ArgInfo->WorkGroupInfo,
2256 AMDGPU::SGPR_32RegClass,
2257 MFI->ArgInfo.WorkGroupInfo, 0, 1) ||
2258 parseAndCheckArgument(YamlMFI.ArgInfo->PrivateSegmentWaveByteOffset,
2259 AMDGPU::SGPR_32RegClass,
2260 MFI->ArgInfo.PrivateSegmentWaveByteOffset, 0, 1) ||
2261 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitArgPtr,
2262 AMDGPU::SReg_64RegClass,
2263 MFI->ArgInfo.ImplicitArgPtr, 0, 0) ||
2264 parseAndCheckArgument(YamlMFI.ArgInfo->ImplicitBufferPtr,
2265 AMDGPU::SReg_64RegClass,
2266 MFI->ArgInfo.ImplicitBufferPtr, 2, 0) ||
2267 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDX,
2268 AMDGPU::VGPR_32RegClass,
2269 MFI->ArgInfo.WorkItemIDX, 0, 0) ||
2270 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDY,
2271 AMDGPU::VGPR_32RegClass,
2272 MFI->ArgInfo.WorkItemIDY, 0, 0) ||
2273 parseAndCheckArgument(YamlMFI.ArgInfo->WorkItemIDZ,
2274 AMDGPU::VGPR_32RegClass,
2275 MFI->ArgInfo.WorkItemIDZ, 0, 0)))
2276 return true;
2277
2278 // Parse FirstKernArgPreloadReg separately, since it's a Register,
2279 // not ArgDescriptor.
2280 if (YamlMFI.ArgInfo && YamlMFI.ArgInfo->FirstKernArgPreloadReg) {
2281 const yaml::SIArgument &A = *YamlMFI.ArgInfo->FirstKernArgPreloadReg;
2282
2283 if (!A.IsRegister) {
2284 // For stack arguments, we don't have RegisterName.SourceRange,
2285 // but we should have some location info from the YAML parser
2286 const MemoryBuffer &Buffer =
2287 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID());
2288 // Create a minimal valid source range
2290 SMRange Range(Loc, Loc);
2291
2293 *PFS.SM, Loc, Buffer.getBufferIdentifier(), 1, 0, SourceMgr::DK_Error,
2294 "firstKernArgPreloadReg must be a register, not a stack location", "",
2295 {}, {});
2296
2297 SourceRange = Range;
2298 return true;
2299 }
2300
2301 Register Reg;
2302 if (parseNamedRegisterReference(PFS, Reg, A.RegisterName.Value, Error)) {
2303 SourceRange = A.RegisterName.SourceRange;
2304 return true;
2305 }
2306
2307 if (!AMDGPU::SGPR_32RegClass.contains(Reg))
2308 return diagnoseRegisterClass(A.RegisterName);
2309
2310 MFI->ArgInfo.FirstKernArgPreloadReg = Reg;
2311 MFI->NumUserSGPRs += YamlMFI.NumKernargPreloadSGPRs;
2312 }
2313
2314 if (ST.hasFeature(AMDGPU::FeatureDX10ClampAndIEEEMode)) {
2315 MFI->Mode.IEEE = YamlMFI.Mode.IEEE;
2316 MFI->Mode.DX10Clamp = YamlMFI.Mode.DX10Clamp;
2317 }
2318
2319 // FIXME: Move proper support for denormal-fp-math into base MachineFunction
2320 MFI->Mode.FP32Denormals.Input = YamlMFI.Mode.FP32InputDenormals
2323 MFI->Mode.FP32Denormals.Output = YamlMFI.Mode.FP32OutputDenormals
2326
2333
2334 if (YamlMFI.HasInitWholeWave)
2335 MFI->setInitWholeWave();
2336
2337 return false;
2338}
2339
2340//===----------------------------------------------------------------------===//
2341// AMDGPU CodeGen Pass Builder interface.
2342//===----------------------------------------------------------------------===//
2343
2344AMDGPUCodeGenPassBuilder::AMDGPUCodeGenPassBuilder(
2345 GCNTargetMachine &TM, const CGPassBuilderOption &Opts,
2347 : CodeGenPassBuilder(TM, Opts, PIC) {
2348 Opt.MISchedPostRA = true;
2349 Opt.RequiresCodeGenSCCOrder = true;
2350 // Exceptions and StackMaps are not supported, so these passes will never do
2351 // anything.
2352 // Garbage collection is not supported.
2353 disablePass<StackMapLivenessPass, FuncletLayoutPass, PatchableFunctionPass,
2355}
2356
2357void AMDGPUCodeGenPassBuilder::addIRPasses(PassManagerWrapper &PMW) {
2358 if (RemoveIncompatibleFunctions && TM.getTargetTriple().isAMDGCN()) {
2359 flushFPMsToMPM(PMW);
2360 addModulePass(AMDGPURemoveIncompatibleFunctionsPass(TM), PMW);
2361 }
2362
2363 flushFPMsToMPM(PMW);
2364
2365 if (TM.getTargetTriple().isAMDGCN())
2366 addModulePass(AMDGPUPrintfRuntimeBindingPass(), PMW);
2367
2368 if (LowerCtorDtor)
2369 addModulePass(AMDGPUCtorDtorLoweringPass(), PMW);
2370
2371 if (isPassEnabled(EnableImageIntrinsicOptimizer))
2372 addFunctionPass(AMDGPUImageIntrinsicOptimizerPass(TM), PMW);
2373
2375 addFunctionPass(AMDGPUUniformIntrinsicCombinePass(), PMW);
2376 // This can be disabled by passing ::Disable here or on the command line
2377 // with --expand-variadics-override=disable.
2378 flushFPMsToMPM(PMW);
2380
2381 addModulePass(AMDGPUAlwaysInlinePass(), PMW);
2382 addModulePass(AlwaysInlinerPass(), PMW);
2383
2384 addModulePass(AMDGPUExportKernelRuntimeHandlesPass(), PMW);
2385
2387 addModulePass(AMDGPULowerExecSyncPass(), PMW);
2388
2389 if (EnableSwLowerLDS)
2390 addModulePass(AMDGPUSwLowerLDSPass(), PMW);
2391
2392 // Runs before PromoteAlloca so the latter can account for function uses
2394 addModulePass(AMDGPULowerModuleLDSPass(getTM()), PMW);
2395
2396 // Run atomic optimizer before Atomic Expand
2397 if (TM.getOptLevel() >= CodeGenOptLevel::Less &&
2399 addFunctionPass(
2401
2402 addFunctionPass(AtomicExpandPass(TM), PMW);
2403
2404 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2405 addFunctionPass(AMDGPUPromoteAllocaPass(TM), PMW);
2406 if (isPassEnabled(EnableScalarIRPasses))
2407 addStraightLineScalarOptimizationPasses(PMW);
2408
2409 // TODO: Handle EnableAMDGPUAliasAnalysis
2410
2411 // TODO: May want to move later or split into an early and late one.
2412 addFunctionPass(AMDGPUCodeGenPreparePass(TM), PMW);
2413
2414 // Try to hoist loop invariant parts of divisions AMDGPUCodeGenPrepare may
2415 // have expanded.
2416 if (TM.getOptLevel() > CodeGenOptLevel::Less) {
2418 /*UseMemorySSA=*/true),
2419 PMW);
2420 }
2421 }
2422
2423 Base::addIRPasses(PMW);
2424
2425 // EarlyCSE is not always strong enough to clean up what LSR produces. For
2426 // example, GVN can combine
2427 //
2428 // %0 = add %a, %b
2429 // %1 = add %b, %a
2430 //
2431 // and
2432 //
2433 // %0 = shl nsw %a, 2
2434 // %1 = shl %a, 2
2435 //
2436 // but EarlyCSE can do neither of them.
2437 if (isPassEnabled(EnableScalarIRPasses))
2438 addEarlyCSEOrGVNPass(PMW);
2439}
2440
2441void AMDGPUCodeGenPassBuilder::addCodeGenPrepare(PassManagerWrapper &PMW) {
2442 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2443 flushFPMsToMPM(PMW);
2444 addModulePass(AMDGPUPreloadKernelArgumentsPass(TM), PMW);
2445 }
2446
2448 addFunctionPass(AMDGPULowerKernelArgumentsPass(TM), PMW);
2449
2450 Base::addCodeGenPrepare(PMW);
2451
2452 if (isPassEnabled(EnableLoadStoreVectorizer))
2453 addFunctionPass(LoadStoreVectorizerPass(), PMW);
2454
2455 // This lowering has been placed after codegenprepare to take advantage of
2456 // address mode matching (which is why it isn't put with the LDS lowerings).
2457 // It could be placed anywhere before uniformity annotations (an analysis
2458 // that it changes by splitting up fat pointers into their components)
2459 // but has been put before switch lowering and CFG flattening so that those
2460 // passes can run on the more optimized control flow this pass creates in
2461 // many cases.
2462 flushFPMsToMPM(PMW);
2463 addModulePass(AMDGPULowerBufferFatPointersPass(TM), PMW);
2464 flushFPMsToMPM(PMW);
2465 requireCGSCCOrder(PMW);
2466
2467 addModulePass(AMDGPULowerIntrinsicsPass(getTM()), PMW);
2468
2469 // LowerSwitch pass may introduce unreachable blocks that can cause unexpected
2470 // behavior for subsequent passes. Placing it here seems better that these
2471 // blocks would get cleaned up by UnreachableBlockElim inserted next in the
2472 // pass flow.
2473 addFunctionPass(LowerSwitchPass(), PMW);
2474}
2475
2476void AMDGPUCodeGenPassBuilder::addPreISel(PassManagerWrapper &PMW) {
2477
2478 if (TM.getOptLevel() > CodeGenOptLevel::None) {
2479 addFunctionPass(FlattenCFGPass(), PMW);
2480 addFunctionPass(SinkingPass(), PMW);
2481 addFunctionPass(AMDGPULateCodeGenPreparePass(getTM()), PMW);
2482 }
2483
2484 // Merge divergent exit nodes. StructurizeCFG won't recognize the multi-exit
2485 // regions formed by them.
2486
2487 addFunctionPass(AMDGPUUnifyDivergentExitNodesPass(), PMW);
2488 addFunctionPass(FixIrreduciblePass(), PMW);
2489 addFunctionPass(UnifyLoopExitsPass(), PMW);
2490 addFunctionPass(StructurizeCFGPass(/*SkipUniformRegions=*/false), PMW);
2491
2492 addFunctionPass(AMDGPUAnnotateUniformValuesPass(), PMW);
2493
2494 addFunctionPass(SIAnnotateControlFlowPass(getTM()), PMW);
2495
2496 // TODO: Move this right after structurizeCFG to avoid extra divergence
2497 // analysis. This depends on stopping SIAnnotateControlFlow from making
2498 // control flow modifications.
2499 addFunctionPass(AMDGPURewriteUndefForPHIPass(), PMW);
2500
2503 !isGlobalISelAbortEnabled())
2504 addFunctionPass(LCSSAPass(), PMW);
2505
2506 if (TM.getOptLevel() > CodeGenOptLevel::Less) {
2507 flushFPMsToMPM(PMW);
2508 addModulePass(AMDGPUPerfHintAnalysisPass(getTM()), PMW);
2509 }
2510}
2511
2512void AMDGPUCodeGenPassBuilder::addILPOpts(PassManagerWrapper &PMW) {
2514 addMachineFunctionPass(EarlyIfConverterPass(), PMW);
2515
2516 Base::addILPOpts(PMW);
2517}
2518
2519void AMDGPUCodeGenPassBuilder::addAsmPrinterBegin(PassManagerWrapper &PMW) {
2520 addModulePass(AMDGPUAsmPrinterBeginPass(), PMW,
2521 /*Force=*/true);
2522}
2523
2524void AMDGPUCodeGenPassBuilder::addAsmPrinter(PassManagerWrapper &PMW) {
2525 addMachineFunctionPass(AMDGPUAsmPrinterPass(), PMW);
2526}
2527
2528void AMDGPUCodeGenPassBuilder::addAsmPrinterEnd(PassManagerWrapper &PMW) {
2529 addModulePass(AMDGPUAsmPrinterEndPass(), PMW);
2530}
2531
2532Error AMDGPUCodeGenPassBuilder::addInstSelector(PassManagerWrapper &PMW) {
2533 addMachineFunctionPass(AMDGPUISelDAGToDAGPass(TM), PMW);
2534 addMachineFunctionPass(SIFixSGPRCopiesPass(), PMW);
2535 addMachineFunctionPass(SILowerI1CopiesPass(), PMW);
2536 return Error::success();
2537}
2538
2539void AMDGPUCodeGenPassBuilder::addPreRewrite(PassManagerWrapper &PMW) {
2540 if (EnableRegReassign) {
2541 addMachineFunctionPass(GCNNSAReassignPass(), PMW);
2542 }
2543
2544 addMachineFunctionPass(AMDGPURewriteAGPRCopyMFMAPass(), PMW);
2545}
2546
2547void AMDGPUCodeGenPassBuilder::addMachineSSAOptimization(
2548 PassManagerWrapper &PMW) {
2549 Base::addMachineSSAOptimization(PMW);
2550
2551 addMachineFunctionPass(SIFoldOperandsPass(), PMW);
2552 if (EnableDPPCombine) {
2553 addMachineFunctionPass(GCNDPPCombinePass(), PMW);
2554 }
2555 addMachineFunctionPass(SILoadStoreOptimizerPass(), PMW);
2556 if (isPassEnabled(EnableSDWAPeephole)) {
2557 addMachineFunctionPass(SIPeepholeSDWAPass(), PMW);
2558 addMachineFunctionPass(EarlyMachineLICMPass(), PMW);
2559 addMachineFunctionPass(MachineCSEPass(), PMW);
2560 addMachineFunctionPass(SIFoldOperandsPass(), PMW);
2561 }
2562 addMachineFunctionPass(DeadMachineInstructionElimPass(), PMW);
2563 addMachineFunctionPass(SIShrinkInstructionsPass(), PMW);
2564}
2565
2566Error AMDGPUCodeGenPassBuilder::addFastRegAlloc(PassManagerWrapper &PMW) {
2567 insertPass<PHIEliminationPass>(SILowerControlFlowPass());
2568
2569 insertPass<TwoAddressInstructionPass>(SIWholeQuadModePass());
2570
2571 return Base::addFastRegAlloc(PMW);
2572}
2573
2574Error AMDGPUCodeGenPassBuilder::addRegAssignAndRewriteFast(
2575 PassManagerWrapper &PMW) {
2576 if (auto Err = validateRegAllocOptions())
2577 return Err;
2578
2579 addMachineFunctionPass(GCNPreRALongBranchRegPass(), PMW);
2580
2581 // SGPR allocation - default to fast at -O0.
2582 if (SGPRRegAllocNPM == RegAllocType::Greedy)
2583 addMachineFunctionPass(RAGreedyPass({onlyAllocateSGPRs, "sgpr"}), PMW);
2584 else
2585 addMachineFunctionPass(RegAllocFastPass({onlyAllocateSGPRs, "sgpr", false}),
2586 PMW);
2587
2588 // Equivalent of PEI for SGPRs.
2589 addMachineFunctionPass(SILowerSGPRSpillsPass(), PMW);
2590
2591 // To Allocate wwm registers used in whole quad mode operations (for shaders).
2592 addMachineFunctionPass(SIPreAllocateWWMRegsPass(), PMW);
2593
2594 // WWM allocation - default to fast at -O0.
2595 if (WWMRegAllocNPM == RegAllocType::Greedy)
2596 addMachineFunctionPass(RAGreedyPass({onlyAllocateWWMRegs, "wwm"}), PMW);
2597 else
2598 addMachineFunctionPass(
2599 RegAllocFastPass({onlyAllocateWWMRegs, "wwm", false}), PMW);
2600
2601 addMachineFunctionPass(SILowerWWMCopiesPass(), PMW);
2602 addMachineFunctionPass(AMDGPUReserveWWMRegsPass(), PMW);
2603
2604 // VGPR allocation - default to fast at -O0.
2605 if (VGPRRegAllocNPM == RegAllocType::Greedy)
2606 addMachineFunctionPass(RAGreedyPass({onlyAllocateVGPRs, "vgpr"}), PMW);
2607 else
2608 addMachineFunctionPass(RegAllocFastPass({onlyAllocateVGPRs, "vgpr"}), PMW);
2609
2610 return Error::success();
2611}
2612
2613Error AMDGPUCodeGenPassBuilder::addOptimizedRegAlloc(PassManagerWrapper &PMW) {
2614 if (EnableDCEInRA)
2615 insertPass<DetectDeadLanesPass>(DeadMachineInstructionElimPass());
2616
2617 // FIXME: when an instruction has a Killed operand, and the instruction is
2618 // inside a bundle, seems only the BUNDLE instruction appears as the Kills of
2619 // the register in LiveVariables, this would trigger a failure in verifier,
2620 // we should fix it and enable the verifier.
2621 if (OptVGPRLiveRange)
2622 insertPass<RequireAnalysisPass<LiveVariablesAnalysis, MachineFunction>>(
2624
2625 // This must be run immediately after phi elimination and before
2626 // TwoAddressInstructions, otherwise the processing of the tied operand of
2627 // SI_ELSE will introduce a copy of the tied operand source after the else.
2628 insertPass<PHIEliminationPass>(SILowerControlFlowPass());
2629
2631 insertPass<RenameIndependentSubregsPass>(GCNRewritePartialRegUsesPass());
2632
2633 if (isPassEnabled(EnablePreRAOptimizations))
2634 insertPass<MachineSchedulerPass>(GCNPreRAOptimizationsPass());
2635
2636 // Allow the scheduler to run before SIWholeQuadMode inserts exec manipulation
2637 // instructions that cause scheduling barriers.
2638 insertPass<MachineSchedulerPass>(SIWholeQuadModePass());
2639
2640 if (OptExecMaskPreRA)
2641 insertPass<MachineSchedulerPass>(SIOptimizeExecMaskingPreRAPass());
2642
2643 // This is not an essential optimization and it has a noticeable impact on
2644 // compilation time, so we only enable it from O2.
2645 if (TM.getOptLevel() > CodeGenOptLevel::Less)
2646 insertPass<MachineSchedulerPass>(SIFormMemoryClausesPass());
2647
2648 return Base::addOptimizedRegAlloc(PMW);
2649}
2650
2651void AMDGPUCodeGenPassBuilder::addPreRegAlloc(PassManagerWrapper &PMW) {
2652 if (getOptLevel() != CodeGenOptLevel::None)
2653 addMachineFunctionPass(AMDGPUPrepareAGPRAllocPass(), PMW);
2654}
2655
2656Expected<bool> AMDGPUCodeGenPassBuilder::addRegAssignAndRewriteOptimized(
2657 PassManagerWrapper &PMW) {
2658 if (auto Err = validateRegAllocOptions())
2659 return Err;
2660
2661 addMachineFunctionPass(GCNPreRALongBranchRegPass(), PMW);
2662
2663 // SGPR allocation - default to greedy at -O1 and above.
2664 if (SGPRRegAllocNPM == RegAllocType::Fast)
2665 addMachineFunctionPass(RegAllocFastPass({onlyAllocateSGPRs, "sgpr", false}),
2666 PMW);
2667 else
2668 addMachineFunctionPass(RAGreedyPass({onlyAllocateSGPRs, "sgpr"}), PMW);
2669
2670 // Commit allocated register changes. This is mostly necessary because too
2671 // many things rely on the use lists of the physical registers, such as the
2672 // verifier. This is only necessary with allocators which use LiveIntervals,
2673 // since FastRegAlloc does the replacements itself.
2674 addMachineFunctionPass(VirtRegRewriterPass(false), PMW);
2675
2676 // At this point, the sgpr-regalloc has been done and it is good to have the
2677 // stack slot coloring to try to optimize the SGPR spill stack indices before
2678 // attempting the custom SGPR spill lowering.
2679 addMachineFunctionPass(StackSlotColoringPass(), PMW);
2680
2681 // Equivalent of PEI for SGPRs.
2682 addMachineFunctionPass(SILowerSGPRSpillsPass(), PMW);
2683
2684 // To Allocate wwm registers used in whole quad mode operations (for shaders).
2685 addMachineFunctionPass(SIPreAllocateWWMRegsPass(), PMW);
2686
2687 // WWM allocation - default to greedy at -O1 and above.
2688 if (WWMRegAllocNPM == RegAllocType::Fast)
2689 addMachineFunctionPass(
2690 RegAllocFastPass({onlyAllocateWWMRegs, "wwm", false}), PMW);
2691 else
2692 addMachineFunctionPass(RAGreedyPass({onlyAllocateWWMRegs, "wwm"}), PMW);
2693 addMachineFunctionPass(SILowerWWMCopiesPass(), PMW);
2694 addMachineFunctionPass(VirtRegRewriterPass(false), PMW);
2695 addMachineFunctionPass(AMDGPUReserveWWMRegsPass(), PMW);
2696
2697 // VGPR allocation - default to greedy at -O1 and above.
2698 if (VGPRRegAllocNPM == RegAllocType::Fast)
2699 addMachineFunctionPass(RegAllocFastPass({onlyAllocateVGPRs, "vgpr"}), PMW);
2700 else
2701 addMachineFunctionPass(RAGreedyPass({onlyAllocateVGPRs, "vgpr"}), PMW);
2702
2703 addPreRewrite(PMW);
2704 addMachineFunctionPass(VirtRegRewriterPass(true), PMW);
2705
2706 addMachineFunctionPass(AMDGPUMarkLastScratchLoadPass(), PMW);
2707 return true;
2708}
2709
2710void AMDGPUCodeGenPassBuilder::addPostRegAlloc(PassManagerWrapper &PMW) {
2711 addMachineFunctionPass(SIFixVGPRCopiesPass(), PMW);
2712 if (TM.getOptLevel() > CodeGenOptLevel::None)
2713 addMachineFunctionPass(SIOptimizeExecMaskingPass(), PMW);
2714 Base::addPostRegAlloc(PMW);
2715}
2716
2717void AMDGPUCodeGenPassBuilder::addPreSched2(PassManagerWrapper &PMW) {
2718 if (TM.getOptLevel() > CodeGenOptLevel::None)
2719 addMachineFunctionPass(SIShrinkInstructionsPass(), PMW);
2720 addMachineFunctionPass(SIPostRABundlerPass(), PMW);
2721}
2722
2723void AMDGPUCodeGenPassBuilder::addPostBBSections(PassManagerWrapper &PMW) {
2724 // We run this later to avoid passes like livedebugvalues and BBSections
2725 // having to deal with the apparent multi-entry functions we may generate.
2726 addMachineFunctionPass(AMDGPUPreloadKernArgPrologPass(), PMW);
2727}
2728
2729void AMDGPUCodeGenPassBuilder::addPreEmitPass(PassManagerWrapper &PMW) {
2730 if (isPassEnabled(EnableVOPD, CodeGenOptLevel::Less)) {
2731 addMachineFunctionPass(GCNCreateVOPDPass(), PMW);
2732 }
2733
2734 addMachineFunctionPass(SIMemoryLegalizerPass(), PMW);
2735 addMachineFunctionPass(SIInsertWaitcntsPass(), PMW);
2736
2737 addMachineFunctionPass(SIModeRegisterPass(), PMW);
2738
2739 if (TM.getOptLevel() > CodeGenOptLevel::None)
2740 addMachineFunctionPass(SIInsertHardClausesPass(), PMW);
2741
2742 addMachineFunctionPass(SILateBranchLoweringPass(), PMW);
2743
2744 if (isPassEnabled(EnableSetWavePriority, CodeGenOptLevel::Less))
2745 addMachineFunctionPass(AMDGPUSetWavePriorityPass(), PMW);
2746
2747 if (TM.getOptLevel() > CodeGenOptLevel::None)
2748 addMachineFunctionPass(SIPreEmitPeepholePass(), PMW);
2749
2750 // The hazard recognizer that runs as part of the post-ra scheduler does not
2751 // guarantee to be able handle all hazards correctly. This is because if there
2752 // are multiple scheduling regions in a basic block, the regions are scheduled
2753 // bottom up, so when we begin to schedule a region we don't know what
2754 // instructions were emitted directly before it.
2755 //
2756 // Here we add a stand-alone hazard recognizer pass which can handle all
2757 // cases.
2758 addMachineFunctionPass(PostRAHazardRecognizerPass(), PMW);
2759 addMachineFunctionPass(AMDGPUWaitSGPRHazardsPass(), PMW);
2760 addMachineFunctionPass(AMDGPULowerVGPREncodingPass(), PMW);
2761
2762 if (isPassEnabled(EnableInsertDelayAlu, CodeGenOptLevel::Less)) {
2763 addMachineFunctionPass(AMDGPUInsertDelayAluPass(), PMW);
2764 }
2765
2766 addMachineFunctionPass(BranchRelaxationPass(), PMW);
2767}
2768
2769bool AMDGPUCodeGenPassBuilder::isPassEnabled(const cl::opt<bool> &Opt,
2770 CodeGenOptLevel Level) const {
2771 if (Opt.getNumOccurrences())
2772 return Opt;
2773 if (TM.getOptLevel() < Level)
2774 return false;
2775 return Opt;
2776}
2777
2778void AMDGPUCodeGenPassBuilder::addEarlyCSEOrGVNPass(PassManagerWrapper &PMW) {
2779 if (TM.getOptLevel() == CodeGenOptLevel::Aggressive)
2780 addFunctionPass(GVNPass(), PMW);
2781 else
2782 addFunctionPass(EarlyCSEPass(), PMW);
2783}
2784
2785void AMDGPUCodeGenPassBuilder::addStraightLineScalarOptimizationPasses(
2786 PassManagerWrapper &PMW) {
2788 addFunctionPass(LoopDataPrefetchPass(), PMW);
2789
2790 addFunctionPass(SeparateConstOffsetFromGEPPass(), PMW);
2791
2792 // ReassociateGEPs exposes more opportunities for SLSR. See
2793 // the example in reassociate-geps-and-slsr.ll.
2794 addFunctionPass(StraightLineStrengthReducePass(), PMW);
2795
2796 // SeparateConstOffsetFromGEP and SLSR creates common expressions which GVN or
2797 // EarlyCSE can reuse.
2798 addEarlyCSEOrGVNPass(PMW);
2799
2800 // Run NaryReassociate after EarlyCSE/GVN to be more effective.
2801 addFunctionPass(NaryReassociatePass(), PMW);
2802
2803 // NaryReassociate on GEPs creates redundant common expressions, so run
2804 // EarlyCSE after it.
2805 addFunctionPass(EarlyCSEPass(), PMW);
2806}
aarch64 falkor hwpf fix Falkor HW Prefetch Fix Late Phase
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden, cl::desc("Run early if-conversion"), cl::init(true))
static cl::opt< bool > EnableMachinePipeliner("aarch64-enable-pipeliner", cl::desc("Enable Machine Pipeliner for AArch64"), cl::init(false), cl::Hidden)
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
This is the AMGPU address space based alias analysis pass.
AMDGPU Assembly printer class.
Coexecution-focused scheduling strategy for AMDGPU.
Defines an instruction selector for the AMDGPU target.
Analyzes if a function potentially memory bound and if a kernel kernel may benefit from limiting numb...
Analyzes how many registers and other resources are used by functions.
static cl::opt< bool > EnableDCEInRA("amdgpu-dce-in-ra", cl::init(true), cl::Hidden, cl::desc("Enable machine DCE inside regalloc"))
static cl::opt< bool, true > EnableLowerModuleLDS("amdgpu-enable-lower-module-lds", cl::desc("Enable lower module lds pass"), cl::location(AMDGPUTargetMachine::EnableLowerModuleLDS), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNMaxMemoryClauseSchedRegistry("gcn-max-memory-clause", "Run GCN scheduler to maximize memory clause", createGCNMaxMemoryClauseMachineScheduler)
static Reloc::Model getEffectiveRelocModel()
static cl::opt< bool > EnableUniformIntrinsicCombine("amdgpu-enable-uniform-intrinsic-combine", cl::desc("Enable/Disable the Uniform Intrinsic Combine Pass"), cl::init(true), cl::Hidden)
static MachineSchedRegistry SISchedRegistry("si", "Run SI's custom scheduler", createSIMachineScheduler)
static ScheduleDAGInstrs * createIterativeILPMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EarlyInlineAll("amdgpu-early-inline-all", cl::desc("Inline all functions early"), cl::init(false), cl::Hidden)
static OOBFlagValue getOOBFlagValue(const Module &M, StringRef FlagName)
Returns the OOB mode encoded by a module flag.
static cl::opt< bool > EnableSwLowerLDS("amdgpu-enable-sw-lower-lds", cl::desc("Enable lowering of lds to global memory pass " "and asan instrument resulting IR."), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLowerKernelArguments("amdgpu-ir-lower-kernel-arguments", cl::desc("Lower kernel argument loads in IR pass"), cl::init(true), cl::Hidden)
static cl::opt< bool, true > EnableObjectLinking("amdgpu-enable-object-linking", cl::desc("Enable object linking for cross-TU LDS and ABI support"), cl::location(AMDGPUTargetMachine::EnableObjectLinking), cl::init(false), cl::Hidden)
static ScheduleDAGInstrs * createGCNMaxILPMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableSDWAPeephole("amdgpu-sdwa-peephole", cl::desc("Enable SDWA peepholer"), cl::init(true))
static MachineSchedRegistry GCNMinRegSchedRegistry("gcn-iterative-minreg", "Run GCN iterative scheduler for minimal register usage (experimental)", createMinRegScheduler)
static cl::opt< bool > SramEccSetting("amdgpu-sramecc", cl::desc("Force amdgpu.sramecc for testing"), cl::ReallyHidden)
static void diagnoseUnsupportedCoExecSchedulerSelection(const Function &F, const GCNSubtarget &ST)
static cl::opt< bool > EnableImageIntrinsicOptimizer("amdgpu-enable-image-intrinsic-optimizer", cl::desc("Enable image intrinsic optimizer pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > HasClosedWorldAssumption("amdgpu-link-time-closed-world", cl::desc("Whether has closed-world assumption at link time"), cl::init(false), cl::Hidden)
static bool useNoopPostScheduler(const Function &F)
static ScheduleDAGInstrs * createGCNMaxMemoryClauseMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableSIModeRegisterPass("amdgpu-mode-register", cl::desc("Enable mode register pass"), cl::init(true), cl::Hidden)
static cl::opt< std::string > AMDGPUSchedStrategy("amdgpu-sched-strategy", cl::desc("Select custom AMDGPU scheduling strategy."), cl::Hidden, cl::init(""))
static cl::opt< bool > EnableDPPCombine("amdgpu-dpp-combine", cl::desc("Enable DPP combiner"), cl::init(true))
static MachineSchedRegistry IterativeGCNMaxOccupancySchedRegistry("gcn-iterative-max-occupancy-experimental", "Run GCN scheduler to maximize occupancy (experimental)", createIterativeGCNMaxOccupancyMachineScheduler)
static cl::opt< bool > EnableSetWavePriority("amdgpu-set-wave-priority", cl::desc("Adjust wave priority"), cl::init(false), cl::Hidden)
static cl::opt< bool > LowerCtorDtor("amdgpu-lower-global-ctor-dtor", cl::desc("Lower GPU ctor / dtors to globals on the device."), cl::init(true), cl::Hidden)
static cl::opt< bool > XnackSetting("amdgpu-xnack", cl::desc("Force amdgpu.xnack value for testing"), cl::ReallyHidden)
static cl::opt< bool > OptExecMaskPreRA("amdgpu-opt-exec-mask-pre-ra", cl::Hidden, cl::desc("Run pre-RA exec mask optimizations"), cl::init(true))
static cl::opt< bool > EnablePromoteKernelArguments("amdgpu-enable-promote-kernel-arguments", cl::desc("Enable promotion of flat kernel pointer arguments to global"), cl::Hidden, cl::init(true))
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAMDGPUTarget()
static cl::opt< bool > EnableRewritePartialRegUses("amdgpu-enable-rewrite-partial-reg-uses", cl::desc("Enable rewrite partial reg uses pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableLibCallSimplify("amdgpu-simplify-libcall", cl::desc("Enable amdgpu library simplifications"), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNMaxILPSchedRegistry("gcn-max-ilp", "Run GCN scheduler to maximize ilp", createGCNMaxILPMachineScheduler)
static cl::opt< bool > InternalizeSymbols("amdgpu-internalize-symbols", cl::desc("Enable elimination of non-kernel functions and unused globals"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableAMDGPUAttributor("amdgpu-attributor-enable", cl::desc("Enable AMDGPUAttributorPass"), cl::init(true), cl::Hidden)
static LLVM_READNONE StringRef getGPUOrDefault(const Triple &TT, StringRef GPU)
Expected< AMDGPUAttributorOptions > parseAMDGPUAttributorPassOptions(StringRef Params)
static cl::opt< bool > EnableAMDGPUAliasAnalysis("enable-amdgpu-aa", cl::Hidden, cl::desc("Enable AMDGPU Alias Analysis"), cl::init(true))
static Expected< ScanOptions > parseAMDGPUAtomicOptimizerStrategy(StringRef Params)
static ScheduleDAGInstrs * createMinRegScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableHipStdPar("amdgpu-enable-hipstdpar", cl::desc("Enable HIP Standard Parallelism Offload support"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableInsertDelayAlu("amdgpu-enable-delay-alu", cl::desc("Enable s_delay_alu insertion"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createIterativeGCNMaxOccupancyMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableLoadStoreVectorizer("amdgpu-load-store-vectorizer", cl::desc("Enable load store vectorizer"), cl::init(true), cl::Hidden)
static bool mustPreserveGV(const GlobalValue &GV)
Predicate for Internalize pass.
static cl::opt< bool > EnableLoopPrefetch("amdgpu-loop-prefetch", cl::desc("Enable loop data prefetch on AMDGPU"), cl::Hidden, cl::init(false))
static cl::opt< bool > RemoveIncompatibleFunctions("amdgpu-enable-remove-incompatible-functions", cl::Hidden, cl::desc("Enable removal of functions when they" "use features not supported by the target GPU"), cl::init(true))
static cl::opt< bool > EnableScalarIRPasses("amdgpu-scalar-ir-passes", cl::desc("Enable scalar IR passes"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableRegReassign("amdgpu-reassign-regs", cl::desc("Enable register reassign optimizations on gfx10+"), cl::init(true), cl::Hidden)
static cl::opt< bool > OptVGPRLiveRange("amdgpu-opt-vgpr-liverange", cl::desc("Enable VGPR liverange optimizations for if-else structure"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createSIMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnablePreRAOptimizations("amdgpu-enable-pre-ra-optimizations", cl::desc("Enable Pre-RA optimizations pass"), cl::init(true), cl::Hidden)
static cl::opt< ScanOptions > AMDGPUAtomicOptimizerStrategy("amdgpu-atomic-optimizer-strategy", cl::desc("Select DPP or Iterative strategy for scan"), cl::init(ScanOptions::Iterative), cl::values(clEnumValN(ScanOptions::DPP, "DPP", "Use DPP operations for scan"), clEnumValN(ScanOptions::Iterative, "Iterative", "Use Iterative approach for scan"), clEnumValN(ScanOptions::None, "None", "Disable atomic optimizer")))
static cl::opt< bool > EnableVOPD("amdgpu-enable-vopd", cl::desc("Enable VOPD, dual issue of VALU in wave32"), cl::init(true), cl::Hidden)
static ScheduleDAGInstrs * createGCNMaxOccupancyMachineScheduler(MachineSchedContext *C)
static cl::opt< bool > EnableLowerExecSync("amdgpu-enable-lower-exec-sync", cl::desc("Enable lowering of execution synchronization."), cl::init(true), cl::Hidden)
static MachineSchedRegistry GCNILPSchedRegistry("gcn-iterative-ilp", "Run GCN iterative scheduler for ILP scheduling (experimental)", createIterativeILPMachineScheduler)
static cl::opt< bool > ScalarizeGlobal("amdgpu-scalarize-global-loads", cl::desc("Enable global load scalarization"), cl::init(true), cl::Hidden)
static const char RegAllocOptNotSupportedMessage[]
static MachineSchedRegistry GCNMaxOccupancySchedRegistry("gcn-max-occupancy", "Run GCN scheduler to maximize occupancy", createGCNMaxOccupancyMachineScheduler)
The AMDGPU TargetMachine interface definition for hw codegen targets.
This file declares the AMDGPU-specific subclass of TargetLoweringObjectFile.
This file a TargetTransformInfoImplBase conforming object specific to the AMDGPU target machine.
Provides passes to inlining "always_inline" functions.
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This header provides classes for managing passes over SCCs of the call graph.
Provides analysis for continuously CSEing during GISel passes.
Interfaces for producing common pass manager configurations.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
#define LLVM_READNONE
Definition Compiler.h:323
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
Analysis that tracks defined/used subregister lanes across COPY instructions and instructions that ge...
This file provides the interface for a simple, fast CSE pass.
This file defines the class GCNIterativeScheduler, which uses an iterative approach to find a best sc...
This file provides the interface for LLVM's Global Value Numbering pass which eliminates fully redund...
#define _
AcceleratorCodeSelection - Identify all functions reachable from a kernel, removing those that are un...
This file declares the IRTranslator pass.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
#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:54
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
#define T
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
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 bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:484
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static FunctionPass * useDefaultRegisterAllocator()
-regalloc=... command line option.
static cl::opt< cl::boolOrDefault > EnableGlobalISelOption("global-isel", cl::Hidden, cl::desc("Enable the \"global\" instruction selector"))
Target-Independent Code Generator Pass Configuration Options pass.
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
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".
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:105
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:261
This class provides access to building LLVM's passes.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
LLVM_ABI void removeDeadConstantUsers() const
If there are any dead constant users dangling off of this constant, remove them.
Diagnostic information for unsupported feature in backend.
Lightweight error class with error context and mandatory checking.
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
LowerIntrinsics - This pass rewrites calls to the llvm.gcread or llvm.gcwrite intrinsics,...
Definition GCMetadata.h:229
const SIRegisterInfo * getRegisterInfo() const override
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
static AMDGPU::TargetIDSetting getTargetIDSettingFromModuleFlag(const Module &M, StringRef FlagName)
Get xnack/sramecc setting from module flag or cl::opt (for testing).
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
void registerMachineRegisterInfoCallback(MachineFunction &MF) const override
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
Error buildCodeGenPipeline(ModulePassManager &MPM, ModuleAnalysisManager &MAM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, const CGPassBuilderOption &Opts, MCContext &Ctx, PassInstrumentationCallbacks *PIC) override
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
GCNTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
The core GVN pass object.
Definition GVN.h:123
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
static void setUseExtended(bool Enable)
This pass implements the localization mechanism described at the top of this file.
Definition Localizer.h:40
An optimization pass inserting data prefetches in loops.
Context object for machine code objects.
Definition MCContext.h:83
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
void addDelegate(Delegate *delegate)
const MachineFunction & getMF() const
MachineSchedRegistry provides a selection of available machine instruction schedulers.
This interface provides simple read-only access to a block of memory, and provides simple methods for...
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
const char * getBufferStart() const
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
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
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:20
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:308
Represents a location in source code.
Definition SMLoc.h:22
static SMLoc getFromPointer(const char *Ptr)
Definition SMLoc.h:35
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
void push_back(const T &Elt)
unsigned getMainFileID() const
Definition SourceMgr.h:151
const MemoryBuffer * getMemoryBuffer(unsigned i) const
Definition SourceMgr.h:144
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition StringRef.h:736
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
Definition StringRef.h:661
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
std::unique_ptr< const MCRegisterInfo > MRI
CodeGenOptLevel OptLevel
void setEnableDefaultMachineVerifier(bool Enable)
Target-Independent Code Generator Pass Configuration Options.
virtual void addCodeGenPrepare()
Add pass to prepare the LLVM IR for code generation.
virtual bool addILPOpts()
Add passes that optimize instruction level parallelism for out-of-order targets.
virtual void addPostRegAlloc()
This method may be implemented by targets that want to run passes after register allocation pass pipe...
CodeGenOptLevel getOptLevel() const
virtual void addOptimizedRegAlloc()
addOptimizedRegAlloc - Add passes related to register allocation.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addFastRegAlloc()
addFastRegAlloc - Add the minimum set of target-independent passes that are required for fast registe...
virtual void addMachineSSAOptimization()
addMachineSSAOptimization - Add standard passes that optimize machine instructions in SSA form.
void disablePass(AnalysisID PassID)
Allow the target to disable a specific standard pass by default.
AnalysisID addPass(AnalysisID PassID)
Utilities for targets to add passes to the pass manager.
TargetPassConfig(TargetMachine &TM, PassManagerBase &PM)
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
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:48
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
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.
@ LOCAL_ADDRESS
Address space for local memory.
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
constexpr StringLiteral BufferFlag("amdgpu.buffer.oob.mode")
constexpr StringLiteral TBufferFlag("amdgpu.tbuffer.oob.mode")
StringRef getSchedStrategy(const Function &F)
bool isFlatGlobalAddrSpace(unsigned AS)
LLVM_READNONE constexpr bool isModuleEntryFunctionCC(CallingConv::ID CC)
GPUKind
GPU kinds supported by the AMDGPU target.
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
LLVM_ABI Triple::SubArchType getSubArch(GPUKind AK)
LLVM_ABI StringRef getArchNameFromSubArch(Triple::SubArchType SubArch)
Returns the canonical GPU name for an AMDGPU subarch, e.g.
LLVM_ABI GPUKind parseArchAMDGCN(StringRef CPU)
LLVM_ABI Triple::SubArchType getMajorSubArch(Triple::SubArchType SubArch)
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
bool match(Val *V, const Pattern &P)
match_deferred< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
auto m_Value()
Match an arbitrary value and ignore it.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
template class LLVM_TEMPLATE_ABI opt< bool >
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
Definition Metadata.h:709
This is an optimization pass for GlobalISel generic memory operations.
ScheduleDAGMILive * createSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
LLVM_ABI FunctionPass * createFlattenCFGPass()
ModulePass * createAMDGPUSwLowerLDSLegacyPass()
std::unique_ptr< ScheduleDAGMutation > createAMDGPUBarrierLatencyDAGMutation(MachineFunction *MF)
LLVM_ABI FunctionPass * createFastRegisterAllocator()
FastRegisterAllocation Pass - This pass register allocates as fast as possible.
LLVM_ABI char & EarlyMachineLICMID
This pass performs loop invariant code motion on machine instructions.
ImmutablePass * createAMDGPUAAWrapperPass()
LLVM_ABI char & PostRAHazardRecognizerID
PostRAHazardRecognizer - This pass runs the post-ra hazard recognizer.
std::function< bool(const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, const Register Reg)> RegAllocFilterFunc
Filter function for register classes during regalloc.
FunctionPass * createAMDGPUSetWavePriorityPass()
LLVM_ABI Pass * createLCSSAPass()
Definition LCSSA.cpp:544
void initializeAMDGPUMarkLastScratchLoadLegacyPass(PassRegistry &)
void initializeAMDGPUInsertDelayAluLegacyPass(PassRegistry &)
void initializeSIOptimizeExecMaskingPreRALegacyPass(PassRegistry &)
char & GCNPreRAOptimizationsID
LLVM_ABI char & GCLoweringID
GCLowering Pass - Used by gc.root to perform its default lowering operations.
void initializeSIInsertHardClausesLegacyPass(PassRegistry &)
FunctionPass * createSIAnnotateControlFlowLegacyPass()
Create the annotation pass.
FunctionPass * createSIModeRegisterPass()
void initializeGCNPreRAOptimizationsLegacyPass(PassRegistry &)
void initializeSILowerWWMCopiesLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
void initializeAMDGPUAAWrapperPassPass(PassRegistry &)
void initializeSIShrinkInstructionsLegacyPass(PassRegistry &)
ModulePass * createAMDGPULowerBufferFatPointersPass()
void initializeR600ClauseMergePassPass(PassRegistry &)
ModulePass * createAMDGPUCtorDtorLoweringLegacyPass()
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
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.
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:94
void initializeAMDGPULowerVGPREncodingLegacyPass(PassRegistry &)
char & AMDGPUWaitSGPRHazardsLegacyID
void initializeSILowerSGPRSpillsLegacyPass(PassRegistry &)
LLVM_ABI Pass * createLoadStoreVectorizerPass()
Create a legacy pass manager instance of the LoadStoreVectorizer pass.
std::unique_ptr< ScheduleDAGMutation > createIGroupLPDAGMutation(AMDGPU::SchedulingPhase Phase)
Phase specifes whether or not this is a reentry into the IGroupLPDAGMutation.
void initializeAMDGPUDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createAMDGPURegBankCombiner(bool IsOptNone)
LLVM_ABI FunctionPass * createNaryReassociatePass()
char & AMDGPUReserveWWMRegsLegacyID
void initializeAMDGPUWaitSGPRHazardsLegacyPass(PassRegistry &)
LLVM_ABI char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
char & SIOptimizeExecMaskingLegacyID
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
void initializeAMDGPUNextUseAnalysisLegacyPassPass(PassRegistry &)
void initializeR600ExpandSpecialInstrsPassPass(PassRegistry &)
void initializeR600PacketizerPass(PassRegistry &)
@ O1
Optimize quickly without destroying debuggability.
@ O0
Disable as many optimizations as possible.
std::unique_ptr< ScheduleDAGMutation > createVOPDPairingMutation()
ModulePass * createAMDGPUExportKernelRuntimeHandlesLegacyPass()
ModulePass * createAMDGPUAlwaysInlinePass(bool GlobalOpt=true)
void initializeAMDGPUAsmPrinterPass(PassRegistry &)
void initializeSIFoldOperandsLegacyPass(PassRegistry &)
char & SILoadStoreOptimizerLegacyID
PassManager< LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult & > CGSCCPassManager
The CGSCC pass manager.
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:85
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:394
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
@ FullLTOPostLink
Full LTO postlink (backend compile) phase.
Definition Pass.h:87
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 &)
char & SIFoldOperandsLegacyID
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
void initializeAMDGPULowerKernelArgumentsPass(PassRegistry &)
void initializeSIModeRegisterLegacyPass(PassRegistry &)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
void initializeAMDGPUPreloadKernelArgumentsLegacyPass(PassRegistry &)
LLVM_ABI ModulePass * createExpandVariadicsPass(ExpandVariadicsMode)
char & SILateBranchLoweringPassID
FunctionToLoopPassAdaptor createFunctionToLoopPassAdaptor(LoopPassT &&Pass, bool UseMemorySSA=false)
A function to deduce a loop pass type and wrap it in the templated adaptor.
LLVM_ABI char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
LLVM_ABI FunctionPass * createSinkingPass()
Definition Sink.cpp:273
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:178
char & GCNDPPCombineLegacyID
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createStoreClusterDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ReorderWhileClustering=false)
If ReorderWhileClustering is set to true, no attempt will be made to reduce reordering due to store c...
LLVM_ABI FunctionPass * createLoopDataPrefetchPass()
FunctionPass * createAMDGPULowerKernelArgumentsPass()
char & AMDGPUInsertDelayAluID
std::unique_ptr< ScheduleDAGMutation > createAMDGPUMacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createAMDGPUMacroFusionDAGMutation()); to AMDGPUTargetMach...
LLVM_ABI char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
void initializeGCNPreRALongBranchRegLegacyPass(PassRegistry &)
char & SILowerWWMCopiesLegacyID
LLVM_ABI FunctionPass * createUnifyLoopExitsPass()
char & SIOptimizeExecMaskingPreRAID
LLVM_ABI FunctionPass * createFixIrreduciblePass()
void initializeR600EmitClauseMarkersPass(PassRegistry &)
LLVM_ABI char & FuncletLayoutID
This pass lays out funclets contiguously.
LLVM_ABI char & DetectDeadLanesID
This pass adds dead/undef flags after analyzing subregister lanes.
void initializeAMDGPULowerExecSyncLegacyPass(PassRegistry &)
void initializeAMDGPUPostLegalizerCombinerPass(PassRegistry &)
ScheduleDAGInstrs * createGCNNoopPostMachineScheduler(MachineSchedContext *C)
void initializeAMDGPUExportKernelRuntimeHandlesLegacyPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:149
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:152
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 &)
LLVM_ABI ImmutablePass * createExternalAAWrapperPass(std::function< void(Pass &, Function &, AAResults &)> Callback, bool RunEarly=false)
A wrapper pass around a callback which can be used to populate the AAResults in the AAResultsWrapperP...
char & SILowerSGPRSpillsLegacyID
LLVM_ABI FunctionPass * createBasicRegisterAllocator()
BasicRegisterAllocation Pass - This pass implements a degenerate global register allocator using the ...
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
char & SILowerControlFlowLegacyID
ModulePass * createR600OpenCLImageTypeLoweringPass()
FunctionPass * createAMDGPUCodeGenPreparePass()
void initializeSIAnnotateControlFlowLegacyPass(PassRegistry &)
FunctionPass * createAMDGPUISelDag(TargetMachine &TM, CodeGenOptLevel OptLevel)
This pass converts a legalized DAG into a AMDGPU-specific.
void initializeGCNCreateVOPDLegacyPass(PassRegistry &)
void initializeAMDGPUUniformIntrinsicCombineLegacyPass(PassRegistry &)
ScheduleDAGInstrs * createGCNCoExecMachineScheduler(MachineSchedContext *C)
void initializeSIPreAllocateWWMRegsLegacyPass(PassRegistry &)
void initializeSIFixVGPRCopiesLegacyPass(PassRegistry &)
Target & getTheGCNTarget()
The target for GCN GPUs.
void initializeSIFixSGPRCopiesLegacyPass(PassRegistry &)
void initializeAMDGPUAtomicOptimizerPass(PassRegistry &)
void initializeAMDGPULowerIntrinsicsLegacyPass(PassRegistry &)
LLVM_ABI char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
LLVM_ABI FunctionPass * createGVNPass()
Definition GVN.cpp:4081
void initializeAMDGPURewriteAGPRCopyMFMALegacyPass(PassRegistry &)
void initializeAMDGPUNextUseAnalysisPrinterLegacyPassPass(PassRegistry &)
void initializeSIPostRABundlerLegacyPass(PassRegistry &)
FunctionPass * createAMDGPURegBankSelectPass()
FunctionPass * createAMDGPURegBankLegalizePass()
LLVM_ABI char & MachineCSELegacyID
MachineCSE - This pass performs global CSE on machine instructions.
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
void initializeGCNNSAReassignLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createLowerSwitchPass()
void initializeAMDGPUPreloadKernArgPrologLegacyPass(PassRegistry &)
Target & getTheGCNLegacyTarget()
The target for GCN GPUs, registered under the legacy "amdgcn" architecture name for use with -march.
LLVM_ABI FunctionPass * createVirtRegRewriter(bool ClearVirtRegs=true)
void initializeR600VectorRegMergerPass(PassRegistry &)
char & AMDGPURewriteAGPRCopyMFMALegacyID
ModulePass * createAMDGPULowerExecSyncLegacyPass()
char & AMDGPULowerVGPREncodingLegacyID
FunctionPass * createAMDGPUGlobalISelDivergenceLoweringPass()
FunctionPass * createSIMemoryLegalizerPass()
void initializeAMDGPULateCodeGenPrepareLegacyPass(PassRegistry &)
void initializeSIOptimizeVGPRLiveRangeLegacyPass(PassRegistry &)
void initializeSIPeepholeSDWALegacyPass(PassRegistry &)
void initializeAMDGPURegBankLegalizePass(PassRegistry &)
LLVM_ABI char & TwoAddressInstructionPassID
TwoAddressInstruction - This pass reduces two-address instructions to use two operands.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
FunctionPass * createAMDGPUPreLegalizeCombiner(bool IsOptNone)
void initializeAMDGPURegBankSelectPass(PassRegistry &)
FunctionPass * createAMDGPULateCodeGenPrepareLegacyPass()
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
void initializeAMDGPUGlobalISelDivergenceLoweringLegacyPass(PassRegistry &)
MCRegisterInfo * createGCNMCRegisterInfo(AMDGPUDwarfFlavour DwarfFlavour)
LLVM_ABI FunctionPass * createStraightLineStrengthReducePass()
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
FunctionPass * createAMDGPUImageIntrinsicOptimizerPass(const TargetMachine *)
void initializeAMDGPULowerBufferFatPointersPass(PassRegistry &)
void initializeAMDGPUUnifyDivergentExitNodesLegacyPass(PassRegistry &)
FunctionPass * createSIInsertWaitcntsPass()
FunctionPass * createAMDGPUAnnotateUniformValuesLegacy()
LLVM_ABI FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
void initializeSIWholeQuadModeLegacyPass(PassRegistry &)
LLVM_ABI char & PHIEliminationID
PHIElimination - This pass eliminates machine instruction PHI nodes by inserting copy instructions.
LLVM_ABI llvm::cl::opt< bool > NoKernelInfoEndLTO
LLVM_ABI bool parseNamedRegisterReference(PerFunctionMIParsingState &PFS, Register &Reg, StringRef Src, SMDiagnostic &Error)
void initializeAMDGPUResourceUsageAnalysisWrapperPassPass(PassRegistry &)
FunctionPass * createSIShrinkInstructionsLegacyPass()
char & AMDGPUPrepareAGPRAllocLegacyID
char & AMDGPUMarkLastScratchLoadID
LLVM_ABI char & RenameIndependentSubregsID
This pass detects subregister lanes in a virtual register that are used independently of other lanes ...
void initializeAMDGPUAnnotateUniformValuesLegacyPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createAMDGPUExportClusteringDAGMutation()
void initializeAMDGPUPrintfRuntimeBindingPass(PassRegistry &)
void initializeAMDGPUPromoteAllocaPass(PassRegistry &)
void initializeAMDGPURemoveIncompatibleFunctionsLegacyPass(PassRegistry &)
std::unique_ptr< ScheduleDAGMutation > createAMDGPUHazardLatencyDAGMutation(MachineFunction *MF)
void initializeAMDGPUAlwaysInlinePass(PassRegistry &)
LLVM_ABI char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
void initializeSIPreEmitPeepholeLegacyPass(PassRegistry &)
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
char & AMDGPUPerfHintAnalysisLegacyID
char & GCNPreRALongBranchRegID
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58
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:177
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:180
DenseMap< Register, VRegInfo * > VRegInfos
Definition MIParser.h:179
RegisterTargetMachine - Helper template for registering a target machine implementation,...
bool DX10Clamp
Used by the vector ALU to force DX10-style treatment of NaNs: when set, clamp NaN to zero; otherwise,...
DenormalMode FP64FP16Denormals
If this is set, neither input or output denormals are flushed for both f64 and f16/v2f16 instructions...
bool IEEE
Floating point opcodes that support exception flag gathering quiet and propagate signaling NaN inputs...
DenormalMode FP32Denormals
If this is set, neither input or output denormals are flushed for most f32 instructions.
The llvm::once_flag structure.
Definition Threading.h: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.