LLVM 24.0.0git
GCNSubtarget.h
Go to the documentation of this file.
1//=====-- GCNSubtarget.h - Define GCN Subtarget for AMDGPU ------*- C++ -*-===//
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/// AMD GCN specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H
15#define LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H
16
17#include "AMDGPUCallLowering.h"
19#include "AMDGPUSubtarget.h"
20#include "SIFrameLowering.h"
21#include "SIISelLowering.h"
22#include "SIInstrInfo.h"
26#include <optional>
27
28#define GET_SUBTARGETINFO_HEADER
29#include "AMDGPUGenSubtargetInfo.inc"
30
31namespace llvm {
32
33class GCNTargetMachine;
34
35/// Module flag names controlling out-of-bounds buffer access semantics.
36/// Each flag is an i32 with Module::Max merge behaviour and tri-state values:
37/// 0 = any (absent/default - backend currently treats as strict)
38/// 1 = relaxed
39/// 2 = strict
40namespace AMDGPUOOBMode {
41inline constexpr StringLiteral BufferFlag("amdgpu.buffer.oob.mode");
42inline constexpr StringLiteral TBufferFlag("amdgpu.tbuffer.oob.mode");
43} // namespace AMDGPUOOBMode
44
46 public AMDGPUSubtarget {
47public:
49
50 // Following 2 enums are documented at:
51 // - https://llvm.org/docs/AMDGPUUsage.html#trap-handler-abi
52 enum class TrapHandlerAbi {
53 NONE = 0x00,
54 AMDHSA = 0x01,
55 };
56
57 enum class TrapID {
60 };
61
62private:
63 /// SelectionDAGISel related APIs.
64 std::unique_ptr<const SelectionDAGTargetInfo> TSInfo;
65
66 /// GlobalISel related APIs.
67 std::unique_ptr<AMDGPUCallLowering> CallLoweringInfo;
68 std::unique_ptr<InlineAsmLowering> InlineAsmLoweringInfo;
69 std::unique_ptr<InstructionSelector> InstSelector;
70 std::unique_ptr<LegalizerInfo> Legalizer;
71 std::unique_ptr<AMDGPURegisterBankInfo> RegBankInfo;
72
73protected:
74 // Basic subtarget description.
76 unsigned Gen = INVALID;
78 int LDSBankCount = 0;
80
81 // Instruction cache line size in bytes; set from TableGen subtarget features.
82 unsigned InstCacheLineSize = 0;
83
84 // Data (VMEM) cache line size in bytes; set from TableGen subtarget features.
85 unsigned DataCacheLineSize = 0;
86
87 /// The width, in bits, of the num_records field of a buffer resource (V#),
88 /// set from tablegen subtarget features, 0 is unknown.
90
91 // Dynamically set bits that enable features.
92 bool ScalarizeGlobal = false;
93 const bool BufferOOBRelaxed;
95
96 /// The maximum number of instructions that may be placed within an S_CLAUSE,
97 /// which is one greater than the maximum argument to S_CLAUSE. A value of 0
98 /// indicates a lack of S_CLAUSE support.
99 unsigned MaxHardClauseLength = 0;
100
101#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
102 bool ATTRIBUTE = DEFAULT;
103#include "AMDGPUGenSubtargetInfo.inc"
104
105private:
106 SIInstrInfo InstrInfo;
107 SITargetLowering TLInfo;
108 SIFrameLowering FrameLowering;
109
110 /// Get the register that represents the actual dependency between the
111 /// definition and the use. The definition might only affect a subregister
112 /// that is not actually used. Works for both virtual and physical registers.
113 /// Note: Currently supports VOP3P instructions (without WMMA an SWMMAC).
114 /// Returns the definition register if there is a real dependency and no
115 /// better match is found.
116 Register getRealSchedDependency(const MachineInstr &DefI, int DefOpIdx,
117 const MachineInstr &UseI, int UseOpIdx) const;
118
119public:
121 const Triple &TT, StringRef GPU, StringRef FS, const GCNTargetMachine &TM,
122 bool BufferOOBRelaxed = false, bool TBufferOOBRelaxed = false,
123 AMDGPU::TargetIDSetting XnackSetting = AMDGPU::TargetIDSetting::Any,
124 AMDGPU::TargetIDSetting SramEccSetting = AMDGPU::TargetIDSetting::Any);
125 ~GCNSubtarget() override;
126
128 StringRef FS);
129
130 /// Diagnose inconsistent subtarget features before attempting to codegen
131 /// function \p F.
132 void checkSubtargetFeatures(const Function &F) const;
133
134 const SIInstrInfo *getInstrInfo() const override { return &InstrInfo; }
135
136 const SIFrameLowering *getFrameLowering() const override {
137 return &FrameLowering;
138 }
139
140 const SITargetLowering *getTargetLowering() const override { return &TLInfo; }
141
142 const SIRegisterInfo *getRegisterInfo() const override {
143 return &InstrInfo.getRegisterInfo();
144 }
145
146 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override;
147
148 const CallLowering *getCallLowering() const override {
149 return CallLoweringInfo.get();
150 }
151
152 const InlineAsmLowering *getInlineAsmLowering() const override {
153 return InlineAsmLoweringInfo.get();
154 }
155
157 return InstSelector.get();
158 }
159
160 const LegalizerInfo *getLegalizerInfo() const override {
161 return Legalizer.get();
162 }
163
164 const AMDGPURegisterBankInfo *getRegBankInfo() const override {
165 return RegBankInfo.get();
166 }
167
168 const AMDGPU::TargetID &getTargetID() const { return TargetID; }
169
171 return &InstrItins;
172 }
173
175
177
178 bool isGFX11Plus() const { return getGeneration() >= GFX11; }
179
180#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
181 bool GETTER() const override { return ATTRIBUTE; }
182#include "AMDGPUGenSubtargetInfo.inc"
183
184 unsigned getMaxWaveScratchSize() const {
185 // See COMPUTE_TMPRING_SIZE.WAVESIZE.
186 if (getGeneration() >= GFX12) {
187 // 18-bit field in units of 64-dword.
188 return (64 * 4) * ((1 << 18) - 1);
189 }
190 if (getGeneration() == GFX11) {
191 // 15-bit field in units of 64-dword.
192 return (64 * 4) * ((1 << 15) - 1);
193 }
194 // 13-bit field in units of 256-dword.
195 return (256 * 4) * ((1 << 13) - 1);
196 }
197
198 /// Return the number of high bits known to be zero for a frame index.
202
203 int getLDSBankCount() const { return LDSBankCount; }
204
205 /// Instruction cache line size in bytes (64 for pre-GFX11, 128 for GFX11+).
206 unsigned getInstCacheLineSize() const { return InstCacheLineSize; }
207
208 /// Data (VMEM) cache line size in bytes (128 for gfx12), has no use before
209 /// GFX12.
210 unsigned getDataCacheLineSize() const { return DataCacheLineSize; }
211
212 unsigned getMaxPrivateElementSize(bool ForBufferRSrc = false) const {
213 return (ForBufferRSrc || !hasFlatScratchEnabled()) ? MaxPrivateElementSize
214 : 16;
215 }
216
217 unsigned getConstantBusLimit(unsigned Opcode) const;
218
219 /// Returns if the result of this instruction with a 16-bit result returned in
220 /// a 32-bit register implicitly zeroes the high 16-bits, rather than preserve
221 /// the original value.
222 bool zeroesHigh16BitsOfDest(unsigned Opcode) const;
223
224 bool hasHWFP64() const { return HasFP64; }
225
226 bool hasAddr64() const {
228 }
229
230 bool hasFlat() const {
232 }
233
234 // Return true if the target only has the reverse operand versions of VALU
235 // shift instructions (e.g. v_lshrrev_b32, and no v_lshr_b32).
236 bool hasOnlyRevVALUShifts() const {
238 }
239
240 bool hasFractBug() const { return getGeneration() == SOUTHERN_ISLANDS; }
241
242 bool hasMed3_16() const { return getGeneration() >= AMDGPUSubtarget::GFX9; }
243
244 bool hasMin3Max3_16() const {
246 }
247
248 bool hasSwap() const { return HasGFX9Insts; }
249
250 bool hasScalarPackInsts() const { return HasGFX9Insts; }
251
252 bool hasScalarMulHiInsts() const { return HasGFX9Insts; }
253
254 bool hasScalarSubwordLoads() const { return getGeneration() >= GFX12; }
255
256 bool hasAsyncMark() const { return hasVMemToLDSLoad() || HasAsynccnt; }
257
261
263 // The S_GETREG DOORBELL_ID is supported by all GFX9 onward targets.
264 return getGeneration() >= GFX9;
265 }
266
267 /// True if the offset field of DS instructions works as expected. On SI, the
268 /// offset uses a 16-bit adder and does not always wrap properly.
269 bool hasUsableDSOffset() const { return getGeneration() >= SEA_ISLANDS; }
270
272 return EnableUnsafeDSOffsetFolding;
273 }
274
275 /// Condition output from div_scale is usable.
279
280 /// Extra wait hazard is needed in some cases before
281 /// s_cbranch_vccnz/s_cbranch_vccz.
282 bool hasReadVCCZBug() const { return getGeneration() <= SEA_ISLANDS; }
283
284 /// Writes to VCC_LO/VCC_HI update the VCCZ flag.
285 bool partialVCCWritesUpdateVCCZ() const { return getGeneration() >= GFX10; }
286
287 /// A read of an SGPR by SMRD instruction requires 4 wait states when the SGPR
288 /// was written by a VALU instruction.
291 }
292
293 /// A read of an SGPR by a VMEM instruction requires 5 wait states when the
294 /// SGPR was written by a VALU Instruction.
297 }
298
299 bool hasRFEHazards() const { return getGeneration() >= VOLCANIC_ISLANDS; }
300
301 /// Number of hazard wait states for s_setreg_b32/s_setreg_imm32_b32.
302 unsigned getSetRegWaitStates() const {
303 return getGeneration() <= SEA_ISLANDS ? 1 : 2;
304 }
305
308 }
309
310 /// \returns If target supports S_DENORM_MODE.
311 bool hasDenormModeInst() const {
313 }
314
315 /// \returns If target supports ds_read/write_b128 and user enables generation
316 /// of ds_read/write_b128.
317 bool useDS128() const { return HasCIInsts && EnableDS128; }
318
319 /// \return If target supports ds_read/write_b96/128.
320 bool hasDS96AndDS128() const { return HasCIInsts; }
321
322 /// Have v_trunc_f64, v_ceil_f64, v_rndne_f64
323 bool haveRoundOpsF64() const { return HasCIInsts; }
324
325 /// \returns If MUBUF instructions always perform range checking, even for
326 /// buffer resources used for private memory access.
330
331 /// \returns If target requires PRT Struct NULL support (zero result registers
332 /// for sparse texture support).
333 bool usePRTStrictNull() const { return EnablePRTStrictNull; }
334
336 return HasUnalignedBufferAccess && HasUnalignedAccessMode;
337 }
338
340 return HasUnalignedDSAccess && HasUnalignedAccessMode;
341 }
342
344 return HasUnalignedScratchAccess && HasUnalignedAccessMode;
345 }
346
347 bool isXNACKEnabled() const { return TargetID.isXnackOnOrAny(); }
348
351
352 /// Return the width, in bits, of the num_records field of a buffer resource
353 /// (V#) on this subtarget, or std::nullopt if not yet known.
354 std::optional<unsigned> getBufferResourceNumRecordsWidth() const {
356 return std::nullopt;
358 }
359
360 bool isCuModeEnabled() const { return EnableCuMode; }
361
362 /// \returns Whether a work-group runs on all of the block's SIMDs.
363 bool isFullSIMDMode() const {
364 return (HasGFX1250Insts && getGeneration() < GFX13) || !EnableCuMode;
365 }
366
367 bool isPreciseMemoryEnabled() const { return EnablePreciseMemory; }
368
369 bool hasFlatScrRegister() const { return hasFlatAddressSpace(); }
370
371 // Check if target supports ST addressing mode with FLAT scratch instructions.
372 // The ST addressing mode means no registers are used, either VGPR or SGPR,
373 // but only immediate offset is swizzled and added to the FLAT scratch base.
374 bool hasFlatScratchSTMode() const {
375 return hasFlatScratchInsts() && (hasGFX10_3Insts() || hasGFX940Insts());
376 }
377
378 bool hasFlatScratchSVSMode() const { return HasGFX940Insts || HasGFX11Insts; }
379
381 return hasArchitectedFlatScratch() ||
382 (EnableFlatScratch && hasFlatScratchInsts());
383 }
384
385 bool hasGlobalAddTidInsts() const { return HasGFX10_BEncoding; }
386
387 bool hasAtomicCSub() const { return HasGFX10_BEncoding; }
388
389 bool hasExportInsts() const {
390 return !hasGFX940Insts() && !hasGFX1250Insts();
391 }
392
393 bool hasVINTERPEncoding() const {
394 return HasGFX11Insts && !hasGFX1250Insts();
395 }
396
398 return getGeneration() >= GFX9;
399 }
400
401 bool hasFlatLgkmVMemCountInOrder() const { return getGeneration() > GFX9; }
402
403 bool hasD16LoadStore() const { return getGeneration() >= GFX9; }
404
406 return hasD16LoadStore() && !TargetID.isSramEccOnOrAny();
407 }
408
409 bool hasD16Images() const { return getGeneration() >= VOLCANIC_ISLANDS; }
410
411 /// Return if most LDS instructions have an m0 use that require m0 to be
412 /// initialized.
413 bool ldsRequiresM0Init() const { return getGeneration() < GFX9; }
414
415 // True if the hardware rewinds and replays GWS operations if a wave is
416 // preempted.
417 //
418 // If this is false, a GWS operation requires testing if a nack set the
419 // MEM_VIOL bit, and repeating if so.
420 bool hasGWSAutoReplay() const { return getGeneration() >= GFX9; }
421
422 /// \returns if target has ds_gws_sema_release_all instruction.
423 bool hasGWSSemaReleaseAll() const { return HasCIInsts; }
424
425 bool hasScalarAddSub64() const { return getGeneration() >= GFX12; }
426
427 bool hasScalarSMulU64() const { return getGeneration() >= GFX12; }
428
429 // Covers VS/PS/CS graphics shaders
430 bool isMesaGfxShader(const Function &F) const {
431 return isMesa3DOS() && AMDGPU::isShader(F.getCallingConv());
432 }
433
434 bool hasMad64_32() const { return getGeneration() >= SEA_ISLANDS; }
435
436 bool hasAtomicFaddInsts() const {
437 return HasAtomicFaddRtnInsts || HasAtomicFaddNoRtnInsts;
438 }
439
441 return getGeneration() < SEA_ISLANDS;
442 }
443
444 bool hasInstPrefetch() const {
445 return getGeneration() == GFX10 || getGeneration() == GFX11;
446 }
447
448 bool hasPrefetch() const { return HasGFX12Insts; }
449
450 bool hasInstPrefSize() const { return isGFX11Plus(); }
451
452 void getInstPrefSizeArgs(uint32_t &Mask, uint32_t &Shift, uint32_t &Width,
453 uint32_t &CacheLineSize) const {
456 if (getGeneration() == GFX11) {
457 Mask = amdhsa::COMPUTE_PGM_RSRC3_GFX11_INST_PREF_SIZE;
458 Shift = amdhsa::COMPUTE_PGM_RSRC3_GFX11_INST_PREF_SIZE_SHIFT;
459 Width = amdhsa::COMPUTE_PGM_RSRC3_GFX11_INST_PREF_SIZE_WIDTH;
460 } else {
461 Mask = amdhsa::COMPUTE_PGM_RSRC3_GFX12_PLUS_INST_PREF_SIZE;
462 Shift = amdhsa::COMPUTE_PGM_RSRC3_GFX12_PLUS_INST_PREF_SIZE_SHIFT;
463 Width = amdhsa::COMPUTE_PGM_RSRC3_GFX12_PLUS_INST_PREF_SIZE_WIDTH;
464 }
465 }
466
467 // Has s_cmpk_* instructions.
468 bool hasSCmpK() const { return getGeneration() < GFX12; }
469
470 // Scratch is allocated in 256 dword per wave blocks for the entire
471 // wavefront. When viewed from the perspective of an arbitrary workitem, this
472 // is 4-byte aligned.
473 //
474 // Only 4-byte alignment is really needed to access anything. Transformations
475 // on the pointer value itself may rely on the alignment / known low bits of
476 // the pointer. Set this to something above the minimum to avoid needing
477 // dynamic realignment in common cases.
478 Align getStackAlignment() const { return Align(16); }
479
480 bool enableMachineScheduler() const override { return true; }
481
482 bool useAA() const override;
483
484 bool enableSubRegLiveness() const override { return true; }
485
488
489 // XXX - Why is this here if it isn't in the default pass set?
490 bool enableEarlyIfConversion() const override { return true; }
491
493 const SchedRegion &Region) const override;
494
496 const SchedRegion &Region) const override;
497
498 void overridePipelinerPolicy(MachinePipelinerPolicy &Policy) const override;
499
500 void mirFileLoaded(MachineFunction &MF) const override;
501
502 unsigned getMaxNumUserSGPRs() const {
503 return AMDGPU::getMaxNumUserSGPRs(*this);
504 }
505
506 bool useVGPRIndexMode() const;
507
508 bool hasScalarCompareEq64() const {
510 }
511
512 bool hasLDSFPAtomicAddF32() const { return HasGFX8Insts; }
513 bool hasLDSFPAtomicAddF64() const {
514 return HasGFX90AInsts || HasGFX1250Insts;
515 }
516
517 /// \returns true if the subtarget has the v_permlane64_b32 instruction.
518 bool hasPermLane64() const { return getGeneration() >= GFX11; }
519
520 /// \returns true if the subtarget supports the ds_swizzle rotate and FFT
521 /// swizzle modes (GFX9+).
522 bool hasDsSwizzleRotateMode() const { return getGeneration() >= GFX9; }
523
524 bool hasDPPRowShare() const {
525 return HasDPP && (HasGFX90AInsts || getGeneration() >= GFX10);
526 }
527
528 // Has V_PK_MOV_B32 opcode
529 bool hasPkMovB32() const { return HasGFX90AInsts; }
530
531 bool hasBufferTFEFormatD16() const { return !HasGFX90AInsts; }
532
534 return getGeneration() >= GFX10 || hasGFX940Insts();
535 }
536
537 bool hasFmaakFmamkF64Insts() const { return hasGFX1250Insts(); }
538
539 bool hasNonNSAEncoding() const { return getGeneration() < GFX12; }
540
541 unsigned getNSAMaxSize(bool HasSampler = false) const {
542 return AMDGPU::getNSAMaxSize(*this, HasSampler);
543 }
544
545 bool hasMadF16() const;
546
547 // Scalar and global loads support scale_offset bit.
548 bool hasScaleOffset() const { return HasGFX1250Insts; }
549
550 // FLAT GLOBAL VOffset is signed
551 bool hasSignedGVSOffset() const { return HasGFX1250Insts; }
552
554
556 return HasUserSGPRInit16Bug && isWave32();
557 }
558
562
563 // \returns true if the subtarget supports DWORDX3 load/store instructions.
564 bool hasDwordx3LoadStores() const { return HasCIInsts; }
565
569
574
577 }
578
581 }
582
584 return HasLDSMisalignedBug && !EnableCuMode;
585 }
586
587 // Shift amount of a 64 bit shift cannot be a highest allocated register
588 // if also at the end of the allocation block.
589 bool hasShift64HighRegBug() const { return HasGFX90AInsts; }
590
591 // v_dot2c_f32_f16 unconditionally flushes f16 subnormal inputs to zero
592 // regardless of the MODE register, unlike v_fma_mix_f32 which respects it.
594 return HasGFX90AInsts && !HasGFX940Insts;
595 }
596
597 // Has one cycle hazard on transcendental instruction feeding a
598 // non transcendental VALU.
599 bool hasTransForwardingHazard() const { return HasGFX940Insts; }
600
601 // Has one cycle hazard on a VALU instruction partially writing dst with
602 // a shift of result bits feeding another VALU instruction.
603 bool hasDstSelForwardingHazard() const { return HasGFX940Insts; }
604
605 // Cannot use op_sel with v_dot instructions.
606 bool hasDOTOpSelHazard() const { return HasGFX940Insts || HasGFX11Insts; }
607
608 // Does not have HW interlocs for VALU writing and then reading SGPRs.
609 bool hasVDecCoExecHazard() const { return HasGFX940Insts; }
610
611 bool hasHardClauses() const { return MaxHardClauseLength > 0; }
612
614 return getGeneration() == GFX10;
615 }
616
617 bool hasVOP3DPP() const { return getGeneration() >= GFX11; }
618
619 bool hasLdsDirect() const { return getGeneration() >= GFX11; }
620
621 bool hasLdsWaitVMSRC() const { return getGeneration() >= GFX12; }
622
624 return getGeneration() == GFX11;
625 }
626
627 /// GFX11 VOPD dest-buffer forwarding can drop the interlock when SRC0 or
628 /// SRC1 X/Y are distinct VGPRs with the same parity.
629 bool hasGFX11VOPDInterlockHazard() const { return getGeneration() == GFX11; }
630
631 bool hasCvtScaleForwardingHazard() const { return HasGFX950Insts; }
632
633 // All GFX9 targets experience a fetch delay when an instruction at the start
634 // of a loop header is split by a 32-byte fetch window boundary, but GFX950
635 // is uniquely sensitive to this: the delay triggers further performance
636 // degradation beyond the fetch latency itself.
637 bool hasLoopHeadInstSplitSensitivity() const { return HasGFX950Insts; }
638
639 bool requiresCodeObjectV6() const { return RequiresCOV6; }
640
641 bool useVGPRBlockOpsForCSR() const { return UseBlockVGPROpsForCSR; }
642
643 bool hasVALUMaskWriteHazard() const { return getGeneration() == GFX11; }
644
646 return HasGFX12Insts && !HasGFX1250Insts;
647 }
648
649 bool setRegModeNeedsVNOPs() const {
650 return HasGFX1250Insts && getGeneration() == GFX12;
651 }
652
653 /// Return if operations acting on VGPR tuples require even alignment.
654 bool needsAlignedVGPRs() const { return RequiresAlignVGPR; }
655
656 /// Return true if the target has the S_PACK_HL_B32_B16 instruction.
657 bool hasSPackHL() const { return HasGFX11Insts; }
658
659 /// Return true if the target has the V_CVT_PK_I16_F32/V_CVT_PK_U16_F32
660 /// instructions.
661 bool hasVCvtPkIU16F32() const { return HasGFX11Insts; }
662
663 /// Return true if the target's EXP instruction supports the NULL export
664 /// target.
665 bool hasNullExportTarget() const { return !HasGFX11Insts; }
666
667 bool hasFlatScratchSVSSwizzleBug() const { return getGeneration() == GFX11; }
668
669 /// Return true if the target has the S_DELAY_ALU instruction.
670 bool hasDelayAlu() const { return HasGFX11Insts; }
671
672 /// Returns true if the target supports
673 /// global_load_lds_dwordx3/global_load_lds_dwordx4 or
674 /// buffer_load_dwordx3/buffer_load_dwordx4 with the lds bit.
675 bool hasLDSLoadB96_B128() const { return hasGFX950Insts(); }
676
677 /// \returns true if the target uses LOADcnt/SAMPLEcnt/BVHcnt, DScnt/KMcnt
678 /// and STOREcnt rather than VMcnt, LGKMcnt and VScnt respectively.
679 bool hasExtendedWaitCounts() const { return getGeneration() >= GFX12; }
680
681 /// \returns true if the target has packed f32 instructions that only read 32
682 /// bits from a scalar operand (SGPR or literal) and replicates the bits to
683 /// both channels.
685 return getGeneration() == GFX12 && HasGFX1250Insts;
686 }
687
688 bool hasAddPC64Inst() const { return HasGFX1250Insts; }
689
690 /// \returns true if the target supports expert scheduling mode 2 which relies
691 /// on the compiler to insert waits to avoid hazards between VMEM and VALU
692 /// instructions in some instances.
693 bool hasExpertSchedulingMode() const { return getGeneration() >= GFX12; }
694
695 /// \returns The maximum number of instructions that can be enclosed in an
696 /// S_CLAUSE on the given subtarget, or 0 for targets that do not support that
697 /// instruction.
698 unsigned maxHardClauseLength() const { return MaxHardClauseLength; }
699
700 /// Return the maximum number of waves per SIMD for kernels using \p SGPRs
701 /// SGPRs
702 unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const;
703
704 /// Return the maximum number of waves per SIMD for kernels using \p VGPRs
705 /// VGPRs
706 unsigned getOccupancyWithNumVGPRs(unsigned VGPRs,
707 unsigned DynamicVGPRBlockSize) const;
708
709 /// Subtarget's minimum/maximum occupancy, in number of waves per EU, that can
710 /// be achieved when the only function running on a CU is \p F, each workgroup
711 /// uses \p LDSSize bytes of LDS, and each wave uses \p NumSGPRs SGPRs and \p
712 /// NumVGPRs VGPRs. The flat workgroup sizes associated to the function are a
713 /// range, so this returns a range as well.
714 ///
715 /// Note that occupancy can be affected by the scratch allocation as well, but
716 /// we do not have enough information to compute it.
717 std::pair<unsigned, unsigned> computeOccupancy(const Function &F,
718 unsigned LDSSize = 0,
719 unsigned NumSGPRs = 0,
720 unsigned NumVGPRs = 0) const;
721
722 /// \returns true if the flat_scratch register should be initialized with the
723 /// pointer to the wave's scratch memory rather than a size and offset.
724 bool flatScratchIsPointer() const {
726 }
727
728 /// \returns true if the machine has merged shaders in which s0-s7 are
729 /// reserved by the hardware and user SGPRs start at s8
730 bool hasMergedShaders() const { return getGeneration() >= GFX9; }
731
732 // \returns true if the target supports the pre-NGG legacy geometry path.
733 bool hasLegacyGeometry() const { return getGeneration() < GFX11; }
734
735 // \returns true if the target has split barriers feature
736 bool hasSplitBarriers() const { return getGeneration() >= GFX12; }
737
738 // \returns true if the target has WG_RR_MODE kernel descriptor mode bit
739 bool hasRrWGMode() const { return getGeneration() >= GFX12; }
740
741 /// \returns true if VADDR and SADDR fields in VSCRATCH can use negative
742 /// values.
743 bool hasSignedScratchOffsets() const { return getGeneration() >= GFX12; }
744
745 bool hasINVWBL2WaitCntRequirement() const { return HasGFX1250Insts; }
746
747 bool hasVOPD3() const { return HasGFX1250Insts; }
748
749 // \returns true if the target has V_PK_{MIN|MAX}3_{I|U}16 instructions.
750 bool hasPkMinMax3Insts() const { return HasGFX1250Insts; }
751
752 // \returns ture if target has S_GET_SHADER_CYCLES_U64 instruction.
753 bool hasSGetShaderCyclesInst() const { return HasGFX1250Insts; }
754
755 // \returns true if S_GETPC_B64 zero-extends the result from 48 bits instead
756 // of sign-extending. Note that GFX1250 has not only fixed the bug but also
757 // extended VA to 57 bits.
759 return HasGFX12Insts && !HasGFX1250Insts;
760 }
761
762 // \returns true if the target needs to create a prolog for backward
763 // compatibility when preloading kernel arguments.
765 return hasKernargPreload() && !HasGFX1250Insts;
766 }
767
768 bool hasCondSubInsts() const { return HasGFX12Insts; }
769
770 bool hasSubClampInsts() const { return hasGFX10_3Insts(); }
771
772 bool hasAnyPackedFP32Ops() const {
773 return hasPackedFP32Ops() || hasPackedFP32SingleSGPROps();
774 };
775
776 bool hasAnyPackedFP64Ops() const { return hasPackedFP64SingleSGPROps(); };
777
778 bool hasAnyPackedU64Ops() const { return hasPackedU64SingleSGPROps(); };
779
780 /// \returns SGPR allocation granularity supported by the subtarget.
781 unsigned getSGPRAllocGranule() const {
782 return AMDGPU::getSGPRAllocGranule(getTargetID().getGPUKind());
783 }
784
785 /// \returns SGPR encoding granularity supported by the subtarget.
786 unsigned getSGPREncodingGranule() const {
788 }
789
790 /// \returns Total number of SGPRs supported by the subtarget.
791 unsigned getTotalNumSGPRs() const {
792 return AMDGPU::getTotalNumSGPRs(getTargetID().getGPUKind());
793 }
794
795 /// \returns Addressable number of SGPRs supported by the subtarget.
796 unsigned getAddressableNumSGPRs() const {
797 return AMDGPU::getAddressableNumSGPRs(getTargetID().getGPUKind());
798 }
799
800 /// \returns Minimum number of SGPRs that meets the given number of waves per
801 /// execution unit requirement supported by the subtarget.
802 unsigned getMinNumSGPRs(unsigned WavesPerEU) const {
803 return AMDGPU::IsaInfo::getMinNumSGPRs(*this, WavesPerEU);
804 }
805
806 /// \returns Maximum number of SGPRs that meets the given number of waves per
807 /// execution unit requirement supported by the subtarget.
808 unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const {
809 return AMDGPU::IsaInfo::getMaxNumSGPRs(*this, WavesPerEU, Addressable);
810 }
811
812 /// \returns Reserved number of SGPRs. This is common
813 /// utility function called by MachineFunction and
814 /// Function variants of getReservedNumSGPRs.
815 unsigned getBaseReservedNumSGPRs(const bool HasFlatScratch) const;
816 /// \returns Reserved number of SGPRs for given machine function \p MF.
817 unsigned getReservedNumSGPRs(const MachineFunction &MF) const;
818
819 /// \returns Reserved number of SGPRs for given function \p F.
820 unsigned getReservedNumSGPRs(const Function &F) const;
821
822 /// \returns Maximum number of preloaded SGPRs for the subtarget.
823 unsigned getMaxNumPreloadedSGPRs() const;
824
825 /// \returns max num SGPRs. This is the common utility
826 /// function called by MachineFunction and Function
827 /// variants of getMaxNumSGPRs.
828 unsigned getBaseMaxNumSGPRs(const Function &F,
829 std::pair<unsigned, unsigned> WavesPerEU,
830 unsigned PreloadedSGPRs,
831 unsigned ReservedNumSGPRs) const;
832
833 /// \returns Maximum number of SGPRs that meets number of waves per execution
834 /// unit requirement for function \p MF, or number of SGPRs explicitly
835 /// requested using "amdgpu-num-sgpr" attribute attached to function \p MF.
836 ///
837 /// \returns Value that meets number of waves per execution unit requirement
838 /// if explicitly requested value cannot be converted to integer, violates
839 /// subtarget's specifications, or does not meet number of waves per execution
840 /// unit requirement.
841 unsigned getMaxNumSGPRs(const MachineFunction &MF) const;
842
843 /// \returns Maximum number of SGPRs that meets number of waves per execution
844 /// unit requirement for function \p F, or number of SGPRs explicitly
845 /// requested using "amdgpu-num-sgpr" attribute attached to function \p F.
846 ///
847 /// \returns Value that meets number of waves per execution unit requirement
848 /// if explicitly requested value cannot be converted to integer, violates
849 /// subtarget's specifications, or does not meet number of waves per execution
850 /// unit requirement.
851 unsigned getMaxNumSGPRs(const Function &F) const;
852
853 /// \returns VGPR allocation granularity supported by the subtarget.
854 unsigned getVGPRAllocGranule(unsigned DynamicVGPRBlockSize) const {
855 return AMDGPU::IsaInfo::getVGPRAllocGranule(*this, DynamicVGPRBlockSize);
856 }
857
858 /// \returns VGPR encoding granularity supported by the subtarget.
859 unsigned getVGPREncodingGranule() const {
861 }
862
863 /// \returns Total number of VGPRs supported by the subtarget.
864 unsigned getTotalNumVGPRs() const {
865 return AMDGPU::getTotalNumVGPRs(getTargetID().getGPUKind(), isWave32());
866 }
867
868 /// \returns Addressable number of architectural VGPRs supported by the
869 /// subtarget.
873
874 /// \returns Addressable number of VGPRs supported by the subtarget.
875 unsigned getAddressableNumVGPRs(unsigned DynamicVGPRBlockSize) const {
876 // Dynamic VGPR mode is a per-kernel mode, so it is not covered by the
877 // TargetParser query.
878 if (DynamicVGPRBlockSize != 0) {
880 DynamicVGPRBlockSize);
881 }
882 return AMDGPU::getAddressableNumVGPRs(getTargetID().getGPUKind(),
883 isWave32());
884 }
885
886 /// \returns the minimum number of VGPRs that will prevent achieving more than
887 /// the specified number of waves \p WavesPerEU.
888 unsigned getMinNumVGPRs(unsigned WavesPerEU,
889 unsigned DynamicVGPRBlockSize) const {
890 return AMDGPU::IsaInfo::getMinNumVGPRs(*this, WavesPerEU,
891 DynamicVGPRBlockSize);
892 }
893
894 /// \returns the maximum number of VGPRs that can be used and still achieved
895 /// at least the specified number of waves \p WavesPerEU.
896 unsigned getMaxNumVGPRs(unsigned WavesPerEU,
897 unsigned DynamicVGPRBlockSize) const {
898 return AMDGPU::IsaInfo::getMaxNumVGPRs(*this, WavesPerEU,
899 DynamicVGPRBlockSize);
900 }
901
902 /// \returns max num VGPRs. This is the common utility function
903 /// called by MachineFunction and Function variants of getMaxNumVGPRs.
904 unsigned
906 std::pair<unsigned, unsigned> NumVGPRBounds) const;
907
908 /// \returns Maximum number of VGPRs that meets number of waves per execution
909 /// unit requirement for function \p F, or number of VGPRs explicitly
910 /// requested using "amdgpu-num-vgpr" attribute attached to function \p F.
911 ///
912 /// \returns Value that meets number of waves per execution unit requirement
913 /// if explicitly requested value cannot be converted to integer, violates
914 /// subtarget's specifications, or does not meet number of waves per execution
915 /// unit requirement.
916 unsigned getMaxNumVGPRs(const Function &F) const;
917
918 unsigned getMaxNumAGPRs(const Function &F) const { return getMaxNumVGPRs(F); }
919
920 /// Return a pair of maximum numbers of VGPRs and AGPRs that meet the number
921 /// of waves per execution unit required for the function \p MF.
922 std::pair<unsigned, unsigned> getMaxNumVectorRegs(const Function &F) const;
923
924 /// \returns Maximum number of VGPRs that meets number of waves per execution
925 /// unit requirement for function \p MF, or number of VGPRs explicitly
926 /// requested using "amdgpu-num-vgpr" attribute attached to function \p MF.
927 ///
928 /// \returns Value that meets number of waves per execution unit requirement
929 /// if explicitly requested value cannot be converted to integer, violates
930 /// subtarget's specifications, or does not meet number of waves per execution
931 /// unit requirement.
932 unsigned getMaxNumVGPRs(const MachineFunction &MF) const;
933
934 bool isWave32() const { return getWavefrontSize() == 32; }
935
936 bool isWave64() const { return getWavefrontSize() == 64; }
937
938 /// Returns if the wavesize of this subtarget is known reliable. This is false
939 /// only for the a default target-cpu that does not have an explicit
940 /// +wavefrontsize target feature.
941 bool isWaveSizeKnown() const {
942 return hasFeature(AMDGPU::FeatureWavefrontSize32) ||
943 hasFeature(AMDGPU::FeatureWavefrontSize64);
944 }
945
947 return getRegisterInfo()->getBoolRC();
948 }
949
950 /// \returns Maximum number of work groups per compute unit supported by the
951 /// subtarget and limited by given \p FlatWorkGroupSize.
952 unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override {
953 return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(*this, FlatWorkGroupSize);
954 }
955
956 /// \returns Minimum flat work group size supported by the subtarget.
957 unsigned getMinFlatWorkGroupSize() const override {
959 }
960
961 /// \returns Maximum flat work group size supported by the subtarget.
962 unsigned getMaxFlatWorkGroupSize() const override {
964 }
965
966 /// \returns Number of waves per execution unit required to support the given
967 /// \p FlatWorkGroupSize.
968 unsigned
969 getWavesPerEUForWorkGroup(unsigned FlatWorkGroupSize) const override {
970 return AMDGPU::IsaInfo::getWavesPerEUForWorkGroup(*this, FlatWorkGroupSize);
971 }
972
973 /// \returns Minimum number of waves per execution unit supported by the
974 /// subtarget.
975 unsigned getMinWavesPerEU() const override {
977 }
978
979 void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx,
980 SDep &Dep,
981 const TargetSchedModel *SchedModel) const override;
982
983 // \returns true if it's beneficial on this subtarget for the scheduler to
984 // cluster stores as well as loads.
985 bool shouldClusterStores() const { return getGeneration() >= GFX11; }
986
987 // \returns the number of address arguments from which to enable MIMG NSA
988 // on supported architectures.
989 unsigned getNSAThreshold(const MachineFunction &MF) const;
990
991 // \returns true if the subtarget has a hazard requiring an "s_nop 0"
992 // instruction before "s_sendmsg sendmsg(MSG_DEALLOC_VGPRS)".
993 bool requiresNopBeforeDeallocVGPRs() const { return !HasGFX1250Insts; }
994
995 // \returns true if the subtarget needs S_WAIT_ALU 0 before S_GETREG_B32 on
996 // STATUS, STATE_PRIV, EXCP_FLAG_PRIV, or EXCP_FLAG_USER.
997 bool requiresWaitIdleBeforeGetReg() const { return HasGFX1250Insts; }
998
1000 // AMDGPU doesn't care if early-clobber and undef operands are allocated
1001 // to the same register.
1002 return false;
1003 }
1004
1005 // DS_ATOMIC_ASYNC_BARRIER_ARRIVE_B64 shall not be claused with anything
1006 // and surronded by S_WAIT_ALU(0xFFE3).
1008 return getGeneration() == GFX12;
1009 }
1010
1011 // Requires s_wait_alu(0) after s102/s103 write and src_flat_scratch_base
1012 // read.
1014 return HasGFX1250Insts && getGeneration() == GFX12;
1015 }
1016
1017 // src_flat_scratch_hi cannot be used as a source in SALU producing a 64-bit
1018 // result.
1020 return HasGFX1250Insts && getGeneration() == GFX12;
1021 }
1022
1023 /// \returns true if the subtarget requires a wait for xcnt before VMEM
1024 /// accesses that must never be repeated in the event of a page fault/re-try.
1025 /// Atomic stores/rmw and all volatile accesses fall under this criteria.
1027 return HasGFX1250Insts;
1028 }
1029
1030 /// True if VALU pipe occupancy is modeled with GFX1250BlockingCycles
1031 /// (gfx1250 pipeline property, not gfx1250 ISA feature).
1032 bool hasGFX1250VALUBlockingCycles() const { return AMDGPU::isGFX1250(*this); }
1033
1034 /// \returns the number of significant bits in the immediate field of the
1035 /// S_NOP instruction.
1036 unsigned getSNopBits() const {
1038 return 7;
1040 return 4;
1041 return 3;
1042 }
1043
1047
1049 return (getGeneration() <= AMDGPUSubtarget::GFX9 ||
1051 isWave32();
1052 }
1053
1054 /// Return true if real (non-fake) variants of True16 instructions using
1055 /// 16-bit registers should be code-generated. Fake True16 instructions are
1056 /// identical to non-fake ones except that they take 32-bit registers as
1057 /// operands and always use their low halves.
1058 // TODO: Remove and use hasTrue16BitInsts() instead once True16 is fully
1059 // supported and the support for fake True16 instructions is removed.
1060 bool useRealTrue16Insts() const {
1061 return hasTrue16BitInsts() && EnableRealTrue16Insts;
1062 }
1063
1064 bool requiresWaitOnWorkgroupReleaseFence(bool TgSplit) const {
1065 return getGeneration() >= GFX10 || TgSplit;
1066 }
1067
1068 bool useDFAforSMS() const override { return false; }
1069
1070 bool enableWindowScheduler() const override { return false; }
1071
1072 // \returns true if ISel should select the native i64 min/max instructions
1073 // (V_MIN/MAX_{I|U}64).
1074 bool useMinMaxI64Insts() const {
1075 return hasMinMaxI64Insts() && !hasSlowMaxMinMulI64Insts();
1076 }
1077
1078 // \returns true if ISel should select the native i64 mul instruction
1079 // V_MUL_U64.
1080 bool useVMulU64Inst() const {
1081 return hasVMulU64Inst() && !hasSlowMaxMinMulI64Insts();
1082 }
1083};
1084
1086public:
1087 bool hasImplicitBufferPtr() const { return ImplicitBufferPtr; }
1088
1089 bool hasPrivateSegmentBuffer() const { return PrivateSegmentBuffer; }
1090
1091 bool hasDispatchPtr() const { return DispatchPtr; }
1092
1093 bool hasQueuePtr() const { return QueuePtr; }
1094
1095 bool hasKernargSegmentPtr() const { return KernargSegmentPtr; }
1096
1097 bool hasDispatchID() const { return DispatchID; }
1098
1099 bool hasFlatScratchInit() const { return FlatScratchInit; }
1100
1101 bool hasPrivateSegmentSize() const { return PrivateSegmentSize; }
1102
1103 unsigned getNumKernargPreloadSGPRs() const { return NumKernargPreloadSGPRs; }
1104
1105 unsigned getNumUsedUserSGPRs() const { return NumUsedUserSGPRs; }
1106
1107 unsigned getNumFreeUserSGPRs();
1108
1109 void allocKernargPreloadSGPRs(unsigned NumSGPRs);
1110
1121
1122 // Returns the size in number of SGPRs for preload user SGPR field.
1124 switch (ID) {
1126 return 2;
1128 return 4;
1129 case DispatchPtrID:
1130 return 2;
1131 case QueuePtrID:
1132 return 2;
1134 return 2;
1135 case DispatchIdID:
1136 return 2;
1137 case FlatScratchInitID:
1138 return 2;
1140 return 1;
1141 }
1142 llvm_unreachable("Unknown UserSGPRID.");
1143 }
1144
1145 GCNUserSGPRUsageInfo(const Function &F, const GCNSubtarget &ST);
1146
1147private:
1148 const GCNSubtarget &ST;
1149
1150 // Private memory buffer
1151 // Compute directly in sgpr[0:1]
1152 // Other shaders indirect 64-bits at sgpr[0:1]
1153 bool ImplicitBufferPtr = false;
1154
1155 bool PrivateSegmentBuffer = false;
1156
1157 bool DispatchPtr = false;
1158
1159 bool QueuePtr = false;
1160
1161 bool KernargSegmentPtr = false;
1162
1163 bool DispatchID = false;
1164
1165 bool FlatScratchInit = false;
1166
1167 bool PrivateSegmentSize = false;
1168
1169 unsigned NumKernargPreloadSGPRs = 0;
1170
1171 unsigned NumUsedUserSGPRs = 0;
1172};
1173
1174} // end namespace llvm
1175
1176#endif // LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > EnableLoadStoreOpt("aarch64-enable-ldst-opt", cl::desc("Enable the load/store pair" " optimization pass"), cl::init(true), cl::Hidden)
This file describes how to lower LLVM calls to machine code calls.
This file declares the targeting of the RegisterBankInfo class for AMDGPU.
Base class for AMDGPU specific classes of TargetSubtarget.
static cl::opt< bool > SramEccSetting("amdgpu-sramecc", cl::desc("Force amdgpu.sramecc for testing"), cl::ReallyHidden)
static cl::opt< bool > XnackSetting("amdgpu-xnack", cl::desc("Force amdgpu.xnack value for testing"), cl::ReallyHidden)
AMDHSA kernel descriptor definitions.
DXIL Legalizer
static bool hasFeature(StringRef Feature, const FeatureBitset &FeatureBits, ArrayRef< SubtargetFeatureKV > ProcFeatures)
#define F(x, y, z)
Definition MD5.cpp:54
Promote Memory to Register
Definition Mem2Reg.cpp:110
SI DAG Lowering interface definition.
Interface definition for SIInstrInfo.
static cl::opt< unsigned > CacheLineSize("cache-line-size", cl::init(0), cl::Hidden, cl::desc("Use this to override the target cache line size when " "specified by the user."))
unsigned getWavefrontSizeLog2() const
AMDGPUSubtarget(const Triple &TT)
unsigned getMaxWavesPerEU() const
unsigned getWavefrontSize() const
bool hasPrefetch() const
bool hasFlat() const
bool hasD16Images() const
InstrItineraryData InstrItins
bool useVGPRIndexMode() const
bool dot2UnconditionalFlush() const
bool partialVCCWritesUpdateVCCZ() const
Writes to VCC_LO/VCC_HI update the VCCZ flag.
bool hasSwap() const
bool hasPkMinMax3Insts() const
bool hasD16LoadStore() const
bool hasMergedShaders() const
bool hasRrWGMode() const
bool hasScalarCompareEq64() const
int getLDSBankCount() const
bool hasOnlyRevVALUShifts() const
bool hasNonNSAEncoding() const
bool hasUsableDivScaleConditionOutput() const
Condition output from div_scale is usable.
bool hasExpertSchedulingMode() const
void mirFileLoaded(MachineFunction &MF) const override
bool hasUsableDSOffset() const
True if the offset field of DS instructions works as expected.
bool loadStoreOptEnabled() const
bool enableSubRegLiveness() const override
unsigned getSGPRAllocGranule() const
bool hasFlatLgkmVMemCountInOrder() const
bool flatScratchIsPointer() const
bool hasShift64HighRegBug() const
unsigned MaxPrivateElementSize
bool unsafeDSOffsetFoldingEnabled() const
bool hasFPAtomicToDenormModeHazard() const
unsigned getAddressableNumArchVGPRs() const
bool vmemWriteNeedsExpWaitcnt() const
bool shouldClusterStores() const
unsigned getMinNumSGPRs(unsigned WavesPerEU) const
bool hasUserSGPRInit16BugInWave32() const
unsigned getSGPREncodingGranule() const
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
void overridePipelinerPolicy(MachinePipelinerPolicy &Policy) const override
bool hasFlatScratchHiInB64InstHazard() const
bool hasDstSelForwardingHazard() const
void setScalarizeGlobalBehavior(bool b)
bool hasFlatScratchEnabled() const
bool hasRelaxedBufferOOBMode() const
unsigned DataCacheLineSize
unsigned getSNopBits() const
bool hasLDSLoadB96_B128() const
Returns true if the target supports global_load_lds_dwordx3/global_load_lds_dwordx4 or buffer_load_dw...
bool hasMultiDwordFlatScratchAddressing() const
bool hasFmaakFmamkF64Insts() const
bool hasDsSwizzleRotateMode() const
bool hasHWFP64() const
bool hasScaleOffset() const
bool hasAnyPackedFP64Ops() const
bool hasDenormModeInst() const
bool hasCvtScaleForwardingHazard() const
unsigned getTotalNumVGPRs() const
unsigned getMinWavesPerEU() const override
bool hasUnalignedDSAccessEnabled() const
const SIInstrInfo * getInstrInfo() const override
unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override
unsigned getConstantBusLimit(unsigned Opcode) const
bool hasVALUMaskWriteHazard() const
bool hasCondSubInsts() const
const InlineAsmLowering * getInlineAsmLowering() const override
unsigned getTotalNumSGPRs() const
const InstrItineraryData * getInstrItineraryData() const override
void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep, const TargetSchedModel *SchedModel) const override
void overridePostRASchedPolicy(MachineSchedPolicy &Policy, const SchedRegion &Region) const override
bool isFullSIMDMode() const
bool hasPkMovB32() const
bool needsAlignedVGPRs() const
Return if operations acting on VGPR tuples require even alignment.
Align getStackAlignment() const
bool privateMemoryResourceIsRangeChecked() const
bool hasScalarSubwordLoads() const
const bool BufferOOBRelaxed
bool hasMadF16() const
bool hasDsAtomicAsyncBarrierArriveB64PipeBug() const
unsigned getInstCacheLineSize() const
Instruction cache line size in bytes (64 for pre-GFX11, 128 for GFX11+).
bool hasLoopHeadInstSplitSensitivity() const
bool hasDwordx3LoadStores() const
bool hasSignedScratchOffsets() const
bool hasGlobalAddTidInsts() const
bool hasFlatScrRegister() const
bool hasGetPCZeroExtension() const
bool hasPermLane64() const
bool requiresNopBeforeDeallocVGPRs() const
unsigned getMinNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
bool supportsGetDoorbellID() const
unsigned getMaxNumAGPRs(const Function &F) const
bool hasReadM0MovRelInterpHazard() const
bool hasInstPrefSize() const
const SIRegisterInfo * getRegisterInfo() const override
bool hasDOTOpSelHazard() const
bool hasLdsWaitVMSRC() const
const TargetRegisterClass * getBoolRC() const
unsigned getBaseMaxNumVGPRs(const Function &F, std::pair< unsigned, unsigned > NumVGPRBounds) const
bool hasFmaakFmamkF32Insts() const
bool hasMad64_32() const
InstructionSelector * getInstructionSelector() const override
unsigned getVGPREncodingGranule() const
bool hasHardClauses() const
bool useDS128() const
bool hasExtendedWaitCounts() const
bool enableWindowScheduler() const override
bool d16PreservesUnusedBits() const
bool hasInstPrefetch() const
bool hasAddPC64Inst() const
unsigned maxHardClauseLength() const
bool hasAnyPackedFP32Ops() const
bool isMesaGfxShader(const Function &F) const
bool hasExportInsts() const
bool hasVINTERPEncoding() const
const AMDGPURegisterBankInfo * getRegBankInfo() const override
bool hasLegacyGeometry() const
TrapHandlerAbi getTrapHandlerAbi() const
bool isCuModeEnabled() const
const SIFrameLowering * getFrameLowering() const override
bool hasDPPRowShare() const
bool zeroesHigh16BitsOfDest(unsigned Opcode) const
Returns if the result of this instruction with a 16-bit result returned in a 32-bit register implicit...
unsigned getBaseMaxNumSGPRs(const Function &F, std::pair< unsigned, unsigned > WavesPerEU, unsigned PreloadedSGPRs, unsigned ReservedNumSGPRs) const
unsigned getMaxNumPreloadedSGPRs() const
GCNSubtarget & initializeSubtargetDependencies(const Triple &TT, StringRef GPU, StringRef FS)
bool has12DWordStoreHazard() const
bool hasVALUPartialForwardingHazard() const
void overrideSchedPolicy(MachineSchedPolicy &Policy, const SchedRegion &Region) const override
bool useVGPRBlockOpsForCSR() const
std::pair< unsigned, unsigned > computeOccupancy(const Function &F, unsigned LDSSize=0, unsigned NumSGPRs=0, unsigned NumVGPRs=0) const
Subtarget's minimum/maximum occupancy, in number of waves per EU, that can be achieved when the only ...
bool requiresWaitOnWorkgroupReleaseFence(bool TgSplit) const
bool needsKernArgPreloadProlog() const
bool hasMin3Max3_16() const
bool hasGFX1250VALUBlockingCycles() const
True if VALU pipe occupancy is modeled with GFX1250BlockingCycles (gfx1250 pipeline property,...
unsigned getMaxNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
unsigned getVGPRAllocGranule(unsigned DynamicVGPRBlockSize) const
bool useDFAforSMS() const override
AMDGPU::TargetID TargetID
unsigned getSetRegWaitStates() const
Number of hazard wait states for s_setreg_b32/s_setreg_imm32_b32.
const SITargetLowering * getTargetLowering() const override
bool hasTransForwardingHazard() const
bool enableMachineScheduler() const override
bool hasLDSFPAtomicAddF64() const
bool useVMulU64Inst() const
unsigned getNSAThreshold(const MachineFunction &MF) const
bool getScalarizeGlobalBehavior() const
bool hasPKF32InstsReplicatingLower32BitsOfScalarInput() const
bool hasReadM0LdsDmaHazard() const
bool hasScalarSMulU64() const
const AMDGPU::TargetID & getTargetID() const
unsigned getKnownHighZeroBitsForFrameIndex() const
Return the number of high bits known to be zero for a frame index.
bool hasScratchBaseForwardingHazard() const
unsigned BufferResourceNumRecordsWidth
The width, in bits, of the num_records field of a buffer resource (V#), set from tablegen subtarget f...
GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, const GCNTargetMachine &TM, bool BufferOOBRelaxed=false, bool TBufferOOBRelaxed=false, AMDGPU::TargetIDSetting XnackSetting=AMDGPU::TargetIDSetting::Any, AMDGPU::TargetIDSetting SramEccSetting=AMDGPU::TargetIDSetting::Any)
bool hasRelaxedTBufferOOBMode() const
bool hasScalarPackInsts() const
bool requiresDisjointEarlyClobberAndUndef() const override
bool hasVALUReadSGPRHazard() const
bool usePRTStrictNull() const
unsigned getAddressableNumVGPRs(unsigned DynamicVGPRBlockSize) const
bool hasGFX11VOPDInterlockHazard() const
GFX11 VOPD dest-buffer forwarding can drop the interlock when SRC0 or SRC1 X/Y are distinct VGPRs wit...
bool supportsWaveWideBPermute() const
bool hasMed3_16() const
unsigned getReservedNumSGPRs(const MachineFunction &MF) const
bool hasUnalignedScratchAccessEnabled() const
bool hasNullExportTarget() const
Return true if the target's EXP instruction supports the NULL export target.
bool ldsRequiresM0Init() const
Return if most LDS instructions have an m0 use that require m0 to be initialized.
bool useRealTrue16Insts() const
Return true if real (non-fake) variants of True16 instructions using 16-bit registers should be code-...
const bool TBufferOOBRelaxed
bool useAA() const override
bool isWave32() const
bool isGFX11Plus() const
unsigned getOccupancyWithNumVGPRs(unsigned VGPRs, unsigned DynamicVGPRBlockSize) const
Return the maximum number of waves per SIMD for kernels using VGPRs VGPRs.
bool hasUnalignedBufferAccessEnabled() const
bool isWaveSizeKnown() const
Returns if the wavesize of this subtarget is known reliable.
unsigned getMaxPrivateElementSize(bool ForBufferRSrc=false) const
unsigned getMinFlatWorkGroupSize() const override
bool hasAsyncMark() const
bool hasSPackHL() const
Return true if the target has the S_PACK_HL_B32_B16 instruction.
bool supportsMinMaxDenormModes() const
bool supportsBPermute() const
bool hasFlatScratchSVSMode() const
unsigned InstCacheLineSize
std::optional< unsigned > getBufferResourceNumRecordsWidth() const
Return the width, in bits, of the num_records field of a buffer resource (V#) on this subtarget,...
bool hasAtomicFaddInsts() const
bool hasSubClampInsts() const
bool requiresWaitXCntForSingleAccessInstructions() const
unsigned getNSAMaxSize(bool HasSampler=false) const
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const
Return the maximum number of waves per SIMD for kernels using SGPRs SGPRs.
bool hasVOP3DPP() const
void getInstPrefSizeArgs(uint32_t &Mask, uint32_t &Shift, uint32_t &Width, uint32_t &CacheLineSize) const
unsigned getMaxFlatWorkGroupSize() const override
unsigned getMaxNumUserSGPRs() const
unsigned MaxHardClauseLength
The maximum number of instructions that may be placed within an S_CLAUSE, which is one greater than t...
bool hasFlatScratchSVSSwizzleBug() const
bool hasVDecCoExecHazard() const
bool hasSignedGVSOffset() const
bool hasLDSFPAtomicAddF32() const
unsigned getWavesPerEUForWorkGroup(unsigned FlatWorkGroupSize) const override
bool haveRoundOpsF64() const
Have v_trunc_f64, v_ceil_f64, v_rndne_f64.
bool hasDelayAlu() const
Return true if the target has the S_DELAY_ALU instruction.
unsigned getDataCacheLineSize() const
Data (VMEM) cache line size in bytes (128 for gfx12), has no use before GFX12.
bool hasReadM0SendMsgHazard() const
bool hasScalarMulHiInsts() const
bool hasSCmpK() const
bool hasVCvtPkIU16F32() const
Return true if the target has the V_CVT_PK_I16_F32/V_CVT_PK_U16_F32 instructions.
const LegalizerInfo * getLegalizerInfo() const override
bool requiresWaitIdleBeforeGetReg() const
bool hasDS96AndDS128() const
bool hasReadM0LdsDirectHazard() const
Generation getGeneration() const
unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const
std::pair< unsigned, unsigned > getMaxNumVectorRegs(const Function &F) const
Return a pair of maximum numbers of VGPRs and AGPRs that meet the number of waves per execution unit ...
bool isXNACKEnabled() const
bool hasScalarAddSub64() const
bool hasSplitBarriers() const
bool enableEarlyIfConversion() const override
bool hasSMRDReadVALUDefHazard() const
A read of an SGPR by SMRD instruction requires 4 wait states when the SGPR was written by a VALU inst...
bool hasSGetShaderCyclesInst() const
bool hasINVWBL2WaitCntRequirement() const
bool hasRFEHazards() const
bool hasVMEMReadSGPRVALUDefHazard() const
A read of an SGPR by a VMEM instruction requires 5 wait states when the SGPR was written by a VALU In...
bool hasFlatScratchSTMode() const
unsigned getBaseReservedNumSGPRs(const bool HasFlatScratch) const
bool hasGWSSemaReleaseAll() const
bool hasAddr64() const
unsigned getAddressableNumSGPRs() const
bool hasReadVCCZBug() const
Extra wait hazard is needed in some cases before s_cbranch_vccnz/s_cbranch_vccz.
bool isWave64() const
bool useMinMaxI64Insts() const
bool setRegModeNeedsVNOPs() const
bool hasFractBug() const
bool isPreciseMemoryEnabled() const
unsigned getMaxWaveScratchSize() const
bool hasLDSMisalignedBugInWGPMode() const
bool hasAnyPackedU64Ops() const
bool hasBufferTFEFormatD16() const
void checkSubtargetFeatures(const Function &F) const
Diagnose inconsistent subtarget features before attempting to codegen function F.
~GCNSubtarget() override
const SelectionDAGTargetInfo * getSelectionDAGInfo() const override
bool hasVOPD3() const
bool hasAtomicCSub() const
bool requiresCodeObjectV6() const
const CallLowering * getCallLowering() const override
bool hasLdsDirect() const
bool hasGWSAutoReplay() const
static unsigned getNumUserSGPRForField(UserSGPRID ID)
void allocKernargPreloadSGPRs(unsigned NumSGPRs)
bool hasPrivateSegmentBuffer() const
unsigned getNumKernargPreloadSGPRs() const
unsigned getNumUsedUserSGPRs() const
GCNUserSGPRUsageInfo(const Function &F, const GCNSubtarget &ST)
Itinerary data supplied by a subtarget to be used by a target.
Scheduling dependency.
Definition ScheduleDAG.h:52
const TargetRegisterClass * getBoolRC() const
Scheduling unit. This is a node in the scheduling DAG.
Targets can subclass this to parameterize the SelectionDAG lowering and instruction selection process...
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
Definition StringRef.h:888
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Provide an instruction scheduling machine model to CodeGen passes.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Module flag names controlling out-of-bounds buffer access semantics.
constexpr StringLiteral BufferFlag("amdgpu.buffer.oob.mode")
constexpr StringLiteral TBufferFlag("amdgpu.tbuffer.oob.mode")
unsigned getAddressableNumArchVGPRs(const MCSubtargetInfo &STI)
unsigned getVGPREncodingGranule(const MCSubtargetInfo &STI, std::optional< bool > EnableWavefrontSize32)
unsigned getMaxWorkGroupsPerCU(const MCSubtargetInfo &STI, unsigned FlatWorkGroupSize)
unsigned getMinNumSGPRs(const MCSubtargetInfo &STI, unsigned WavesPerEU)
unsigned getMaxNumSGPRs(const MCSubtargetInfo &STI, unsigned WavesPerEU, bool Addressable)
unsigned getWavesPerEUForWorkGroup(const MCSubtargetInfo &STI, unsigned FlatWorkGroupSize)
unsigned getSGPREncodingGranule(const MCSubtargetInfo &STI)
unsigned getMinNumVGPRs(const MCSubtargetInfo &STI, unsigned WavesPerEU, unsigned DynamicVGPRBlockSize)
unsigned getAddressableNumVGPRs(const MCSubtargetInfo &STI, unsigned DynamicVGPRBlockSize)
unsigned getMaxNumVGPRs(const MCSubtargetInfo &STI, unsigned WavesPerEU, unsigned DynamicVGPRBlockSize)
unsigned getVGPRAllocGranule(const MCSubtargetInfo &STI, unsigned DynamicVGPRBlockSize, std::optional< bool > EnableWavefrontSize32)
constexpr unsigned getMaxFlatWorkGroupSize()
LLVM_READNONE constexpr bool isShader(CallingConv::ID CC)
constexpr unsigned getMinFlatWorkGroupSize()
unsigned getMaxNumUserSGPRs(const MCSubtargetInfo &STI)
unsigned getNSAMaxSize(const MCSubtargetInfo &STI, bool HasSampler)
LLVM_ABI unsigned getAddressableNumSGPRs(GPUKind AK)
LLVM_ABI unsigned getTotalNumVGPRs(GPUKind AK, bool IsWave32)
LLVM_ABI unsigned getTotalNumSGPRs(GPUKind AK)
LLVM_ABI unsigned getSGPRAllocGranule(GPUKind AK)
constexpr unsigned getMinWavesPerEU()
LLVM_ABI unsigned getAddressableNumVGPRs(GPUKind AK, bool IsWave32)
bool isGFX1250(const MCSubtargetInfo &STI)
This is an optimization pass for GlobalISel generic memory operations.
int countl_zero(T Val)
Count number of 0's from the most significant bit to the least stopping at the first 1.
Definition bit.h:263
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Software pipelining policy for a loop, which a target can customize by implementing TargetSubtargetIn...
Define a generic scheduling policy for targets that don't provide their own MachineSchedStrategy.
A region of an MBB for scheduling.