1e8d8bef9SDimitry Andric //=====-- GCNSubtarget.h - Define GCN Subtarget for AMDGPU ------*- C++ -*-===// 2e8d8bef9SDimitry Andric // 3e8d8bef9SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4e8d8bef9SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5e8d8bef9SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6e8d8bef9SDimitry Andric // 7e8d8bef9SDimitry Andric //==-----------------------------------------------------------------------===// 8e8d8bef9SDimitry Andric // 9e8d8bef9SDimitry Andric /// \file 10e8d8bef9SDimitry Andric /// AMD GCN specific subclass of TargetSubtarget. 11e8d8bef9SDimitry Andric // 12e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 13e8d8bef9SDimitry Andric 14e8d8bef9SDimitry Andric #ifndef LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H 15e8d8bef9SDimitry Andric #define LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H 16e8d8bef9SDimitry Andric 17e8d8bef9SDimitry Andric #include "AMDGPUCallLowering.h" 1806c3fb27SDimitry Andric #include "AMDGPURegisterBankInfo.h" 19e8d8bef9SDimitry Andric #include "AMDGPUSubtarget.h" 20e8d8bef9SDimitry Andric #include "SIFrameLowering.h" 21e8d8bef9SDimitry Andric #include "SIISelLowering.h" 22e8d8bef9SDimitry Andric #include "SIInstrInfo.h" 2306c3fb27SDimitry Andric #include "Utils/AMDGPUBaseInfo.h" 24e8d8bef9SDimitry Andric #include "llvm/CodeGen/SelectionDAGTargetInfo.h" 255f757f3fSDimitry Andric #include "llvm/Support/ErrorHandling.h" 26e8d8bef9SDimitry Andric 27e8d8bef9SDimitry Andric #define GET_SUBTARGETINFO_HEADER 28e8d8bef9SDimitry Andric #include "AMDGPUGenSubtargetInfo.inc" 29e8d8bef9SDimitry Andric 30e8d8bef9SDimitry Andric namespace llvm { 31e8d8bef9SDimitry Andric 32e8d8bef9SDimitry Andric class GCNTargetMachine; 33e8d8bef9SDimitry Andric 34e8d8bef9SDimitry Andric class GCNSubtarget final : public AMDGPUGenSubtargetInfo, 35e8d8bef9SDimitry Andric public AMDGPUSubtarget { 36bdd1243dSDimitry Andric public: 37e8d8bef9SDimitry Andric using AMDGPUSubtarget::getMaxWavesPerEU; 38e8d8bef9SDimitry Andric 39fe6060f1SDimitry Andric // Following 2 enums are documented at: 40fe6060f1SDimitry Andric // - https://llvm.org/docs/AMDGPUUsage.html#trap-handler-abi 41fe6060f1SDimitry Andric enum class TrapHandlerAbi { 42fe6060f1SDimitry Andric NONE = 0x00, 43fe6060f1SDimitry Andric AMDHSA = 0x01, 44e8d8bef9SDimitry Andric }; 45e8d8bef9SDimitry Andric 46fe6060f1SDimitry Andric enum class TrapID { 47fe6060f1SDimitry Andric LLVMAMDHSATrap = 0x02, 48fe6060f1SDimitry Andric LLVMAMDHSADebugTrap = 0x03, 49e8d8bef9SDimitry Andric }; 50e8d8bef9SDimitry Andric 51e8d8bef9SDimitry Andric private: 52e8d8bef9SDimitry Andric /// GlobalISel related APIs. 53e8d8bef9SDimitry Andric std::unique_ptr<AMDGPUCallLowering> CallLoweringInfo; 54e8d8bef9SDimitry Andric std::unique_ptr<InlineAsmLowering> InlineAsmLoweringInfo; 55e8d8bef9SDimitry Andric std::unique_ptr<InstructionSelector> InstSelector; 56e8d8bef9SDimitry Andric std::unique_ptr<LegalizerInfo> Legalizer; 5706c3fb27SDimitry Andric std::unique_ptr<AMDGPURegisterBankInfo> RegBankInfo; 58e8d8bef9SDimitry Andric 59e8d8bef9SDimitry Andric protected: 60e8d8bef9SDimitry Andric // Basic subtarget description. 61e8d8bef9SDimitry Andric Triple TargetTriple; 62e8d8bef9SDimitry Andric AMDGPU::IsaInfo::AMDGPUTargetID TargetID; 6381ad6265SDimitry Andric unsigned Gen = INVALID; 64e8d8bef9SDimitry Andric InstrItineraryData InstrItins; 6581ad6265SDimitry Andric int LDSBankCount = 0; 6681ad6265SDimitry Andric unsigned MaxPrivateElementSize = 0; 67e8d8bef9SDimitry Andric 68e8d8bef9SDimitry Andric // Possibly statically set by tablegen, but may want to be overridden. 6981ad6265SDimitry Andric bool FastDenormalF32 = false; 7081ad6265SDimitry Andric bool HalfRate64Ops = false; 7181ad6265SDimitry Andric bool FullRate64Ops = false; 72e8d8bef9SDimitry Andric 73e8d8bef9SDimitry Andric // Dynamically set bits that enable features. 7481ad6265SDimitry Andric bool FlatForGlobal = false; 7581ad6265SDimitry Andric bool AutoWaitcntBeforeBarrier = false; 76bdd1243dSDimitry Andric bool BackOffBarrier = false; 7781ad6265SDimitry Andric bool UnalignedScratchAccess = false; 7881ad6265SDimitry Andric bool UnalignedAccessMode = false; 7981ad6265SDimitry Andric bool HasApertureRegs = false; 8081ad6265SDimitry Andric bool SupportsXNACK = false; 815f757f3fSDimitry Andric bool KernargPreload = false; 82e8d8bef9SDimitry Andric 83e8d8bef9SDimitry Andric // This should not be used directly. 'TargetID' tracks the dynamic settings 84e8d8bef9SDimitry Andric // for XNACK. 8581ad6265SDimitry Andric bool EnableXNACK = false; 86e8d8bef9SDimitry Andric 8781ad6265SDimitry Andric bool EnableTgSplit = false; 8881ad6265SDimitry Andric bool EnableCuMode = false; 8981ad6265SDimitry Andric bool TrapHandler = false; 90e8d8bef9SDimitry Andric 91e8d8bef9SDimitry Andric // Used as options. 9281ad6265SDimitry Andric bool EnableLoadStoreOpt = false; 9381ad6265SDimitry Andric bool EnableUnsafeDSOffsetFolding = false; 9481ad6265SDimitry Andric bool EnableSIScheduler = false; 9581ad6265SDimitry Andric bool EnableDS128 = false; 9681ad6265SDimitry Andric bool EnablePRTStrictNull = false; 9781ad6265SDimitry Andric bool DumpCode = false; 98e8d8bef9SDimitry Andric 99e8d8bef9SDimitry Andric // Subtarget statically properties set by tablegen 10081ad6265SDimitry Andric bool FP64 = false; 10181ad6265SDimitry Andric bool FMA = false; 10281ad6265SDimitry Andric bool MIMG_R128 = false; 10381ad6265SDimitry Andric bool CIInsts = false; 10481ad6265SDimitry Andric bool GFX8Insts = false; 10581ad6265SDimitry Andric bool GFX9Insts = false; 10681ad6265SDimitry Andric bool GFX90AInsts = false; 10781ad6265SDimitry Andric bool GFX940Insts = false; 10881ad6265SDimitry Andric bool GFX10Insts = false; 10981ad6265SDimitry Andric bool GFX11Insts = false; 1105f757f3fSDimitry Andric bool GFX12Insts = false; 11181ad6265SDimitry Andric bool GFX10_3Insts = false; 11281ad6265SDimitry Andric bool GFX7GFX8GFX9Insts = false; 11381ad6265SDimitry Andric bool SGPRInitBug = false; 11481ad6265SDimitry Andric bool UserSGPRInit16Bug = false; 11581ad6265SDimitry Andric bool NegativeScratchOffsetBug = false; 11681ad6265SDimitry Andric bool NegativeUnalignedScratchOffsetBug = false; 11781ad6265SDimitry Andric bool HasSMemRealTime = false; 11881ad6265SDimitry Andric bool HasIntClamp = false; 11981ad6265SDimitry Andric bool HasFmaMixInsts = false; 12081ad6265SDimitry Andric bool HasMovrel = false; 12181ad6265SDimitry Andric bool HasVGPRIndexMode = false; 1225f757f3fSDimitry Andric bool HasScalarDwordx3Loads = false; 12381ad6265SDimitry Andric bool HasScalarStores = false; 12481ad6265SDimitry Andric bool HasScalarAtomics = false; 12581ad6265SDimitry Andric bool HasSDWAOmod = false; 12681ad6265SDimitry Andric bool HasSDWAScalar = false; 12781ad6265SDimitry Andric bool HasSDWASdst = false; 12881ad6265SDimitry Andric bool HasSDWAMac = false; 12981ad6265SDimitry Andric bool HasSDWAOutModsVOPC = false; 13081ad6265SDimitry Andric bool HasDPP = false; 13181ad6265SDimitry Andric bool HasDPP8 = false; 1325f757f3fSDimitry Andric bool HasDPALU_DPP = false; 1335f757f3fSDimitry Andric bool HasDPPSrc1SGPR = false; 13481ad6265SDimitry Andric bool HasPackedFP32Ops = false; 13581ad6265SDimitry Andric bool HasImageInsts = false; 13681ad6265SDimitry Andric bool HasExtendedImageInsts = false; 13781ad6265SDimitry Andric bool HasR128A16 = false; 138bdd1243dSDimitry Andric bool HasA16 = false; 13981ad6265SDimitry Andric bool HasG16 = false; 14081ad6265SDimitry Andric bool HasNSAEncoding = false; 14106c3fb27SDimitry Andric bool HasPartialNSAEncoding = false; 14281ad6265SDimitry Andric bool GFX10_AEncoding = false; 14381ad6265SDimitry Andric bool GFX10_BEncoding = false; 14481ad6265SDimitry Andric bool HasDLInsts = false; 145bdd1243dSDimitry Andric bool HasFmacF64Inst = false; 14681ad6265SDimitry Andric bool HasDot1Insts = false; 14781ad6265SDimitry Andric bool HasDot2Insts = false; 14881ad6265SDimitry Andric bool HasDot3Insts = false; 14981ad6265SDimitry Andric bool HasDot4Insts = false; 15081ad6265SDimitry Andric bool HasDot5Insts = false; 15181ad6265SDimitry Andric bool HasDot6Insts = false; 15281ad6265SDimitry Andric bool HasDot7Insts = false; 15381ad6265SDimitry Andric bool HasDot8Insts = false; 154bdd1243dSDimitry Andric bool HasDot9Insts = false; 15506c3fb27SDimitry Andric bool HasDot10Insts = false; 15681ad6265SDimitry Andric bool HasMAIInsts = false; 157fcaf7f86SDimitry Andric bool HasFP8Insts = false; 158*7a6dacacSDimitry Andric bool HasFP8ConversionInsts = false; 15981ad6265SDimitry Andric bool HasPkFmacF16Inst = false; 16006c3fb27SDimitry Andric bool HasAtomicDsPkAdd16Insts = false; 16106c3fb27SDimitry Andric bool HasAtomicFlatPkAdd16Insts = false; 16281ad6265SDimitry Andric bool HasAtomicFaddRtnInsts = false; 16381ad6265SDimitry Andric bool HasAtomicFaddNoRtnInsts = false; 16406c3fb27SDimitry Andric bool HasAtomicBufferGlobalPkAddF16NoRtnInsts = false; 16506c3fb27SDimitry Andric bool HasAtomicBufferGlobalPkAddF16Insts = false; 1665f757f3fSDimitry Andric bool HasAtomicCSubNoRtnInsts = false; 16706c3fb27SDimitry Andric bool HasAtomicGlobalPkAddBF16Inst = false; 168bdd1243dSDimitry Andric bool HasFlatAtomicFaddF32Inst = false; 169*7a6dacacSDimitry Andric bool HasDefaultComponentZero = false; 170*7a6dacacSDimitry Andric bool HasDefaultComponentBroadcast = false; 17181ad6265SDimitry Andric bool SupportsSRAMECC = false; 172e8d8bef9SDimitry Andric 173e8d8bef9SDimitry Andric // This should not be used directly. 'TargetID' tracks the dynamic settings 174e8d8bef9SDimitry Andric // for SRAMECC. 17581ad6265SDimitry Andric bool EnableSRAMECC = false; 176e8d8bef9SDimitry Andric 17781ad6265SDimitry Andric bool HasNoSdstCMPX = false; 17881ad6265SDimitry Andric bool HasVscnt = false; 17981ad6265SDimitry Andric bool HasGetWaveIdInst = false; 18081ad6265SDimitry Andric bool HasSMemTimeInst = false; 18181ad6265SDimitry Andric bool HasShaderCyclesRegister = false; 1821db9f3b2SDimitry Andric bool HasShaderCyclesHiLoRegisters = false; 18381ad6265SDimitry Andric bool HasVOP3Literal = false; 18481ad6265SDimitry Andric bool HasNoDataDepHazard = false; 18581ad6265SDimitry Andric bool FlatAddressSpace = false; 18681ad6265SDimitry Andric bool FlatInstOffsets = false; 18781ad6265SDimitry Andric bool FlatGlobalInsts = false; 18881ad6265SDimitry Andric bool FlatScratchInsts = false; 18981ad6265SDimitry Andric bool ScalarFlatScratchInsts = false; 19081ad6265SDimitry Andric bool HasArchitectedFlatScratch = false; 19181ad6265SDimitry Andric bool EnableFlatScratch = false; 19206c3fb27SDimitry Andric bool HasArchitectedSGPRs = false; 1935f757f3fSDimitry Andric bool HasGDS = false; 1945f757f3fSDimitry Andric bool HasGWS = false; 19581ad6265SDimitry Andric bool AddNoCarryInsts = false; 19681ad6265SDimitry Andric bool HasUnpackedD16VMem = false; 19781ad6265SDimitry Andric bool LDSMisalignedBug = false; 19881ad6265SDimitry Andric bool HasMFMAInlineLiteralBug = false; 19981ad6265SDimitry Andric bool UnalignedBufferAccess = false; 20081ad6265SDimitry Andric bool UnalignedDSAccess = false; 20181ad6265SDimitry Andric bool HasPackedTID = false; 20281ad6265SDimitry Andric bool ScalarizeGlobal = false; 2035f757f3fSDimitry Andric bool HasSALUFloatInsts = false; 2045f757f3fSDimitry Andric bool HasVGPRSingleUseHintInsts = false; 2055f757f3fSDimitry Andric bool HasPseudoScalarTrans = false; 2065f757f3fSDimitry Andric bool HasRestrictedSOffset = false; 207e8d8bef9SDimitry Andric 20881ad6265SDimitry Andric bool HasVcmpxPermlaneHazard = false; 20981ad6265SDimitry Andric bool HasVMEMtoScalarWriteHazard = false; 21081ad6265SDimitry Andric bool HasSMEMtoVectorWriteHazard = false; 21181ad6265SDimitry Andric bool HasInstFwdPrefetchBug = false; 21281ad6265SDimitry Andric bool HasVcmpxExecWARHazard = false; 21381ad6265SDimitry Andric bool HasLdsBranchVmemWARHazard = false; 21481ad6265SDimitry Andric bool HasNSAtoVMEMBug = false; 21581ad6265SDimitry Andric bool HasNSAClauseBug = false; 21681ad6265SDimitry Andric bool HasOffset3fBug = false; 21781ad6265SDimitry Andric bool HasFlatSegmentOffsetBug = false; 21881ad6265SDimitry Andric bool HasImageStoreD16Bug = false; 21981ad6265SDimitry Andric bool HasImageGather4D16Bug = false; 2205f757f3fSDimitry Andric bool HasMSAALoadDstSelBug = false; 221bdd1243dSDimitry Andric bool HasGFX11FullVGPRs = false; 222bdd1243dSDimitry Andric bool HasMADIntraFwdBug = false; 22381ad6265SDimitry Andric bool HasVOPDInsts = false; 224bdd1243dSDimitry Andric bool HasVALUTransUseHazard = false; 22506c3fb27SDimitry Andric bool HasForceStoreSC0SC1 = false; 226e8d8bef9SDimitry Andric 227e8d8bef9SDimitry Andric // Dummy feature to use for assembler in tablegen. 22881ad6265SDimitry Andric bool FeatureDisable = false; 229e8d8bef9SDimitry Andric 230e8d8bef9SDimitry Andric SelectionDAGTargetInfo TSInfo; 231e8d8bef9SDimitry Andric private: 232e8d8bef9SDimitry Andric SIInstrInfo InstrInfo; 233e8d8bef9SDimitry Andric SITargetLowering TLInfo; 234e8d8bef9SDimitry Andric SIFrameLowering FrameLowering; 235e8d8bef9SDimitry Andric 236e8d8bef9SDimitry Andric public: 237e8d8bef9SDimitry Andric GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, 238e8d8bef9SDimitry Andric const GCNTargetMachine &TM); 239e8d8bef9SDimitry Andric ~GCNSubtarget() override; 240e8d8bef9SDimitry Andric 241e8d8bef9SDimitry Andric GCNSubtarget &initializeSubtargetDependencies(const Triple &TT, 242e8d8bef9SDimitry Andric StringRef GPU, StringRef FS); 243e8d8bef9SDimitry Andric 244e8d8bef9SDimitry Andric const SIInstrInfo *getInstrInfo() const override { 245e8d8bef9SDimitry Andric return &InstrInfo; 246e8d8bef9SDimitry Andric } 247e8d8bef9SDimitry Andric 248e8d8bef9SDimitry Andric const SIFrameLowering *getFrameLowering() const override { 249e8d8bef9SDimitry Andric return &FrameLowering; 250e8d8bef9SDimitry Andric } 251e8d8bef9SDimitry Andric 252e8d8bef9SDimitry Andric const SITargetLowering *getTargetLowering() const override { 253e8d8bef9SDimitry Andric return &TLInfo; 254e8d8bef9SDimitry Andric } 255e8d8bef9SDimitry Andric 256e8d8bef9SDimitry Andric const SIRegisterInfo *getRegisterInfo() const override { 257e8d8bef9SDimitry Andric return &InstrInfo.getRegisterInfo(); 258e8d8bef9SDimitry Andric } 259e8d8bef9SDimitry Andric 260e8d8bef9SDimitry Andric const CallLowering *getCallLowering() const override { 261e8d8bef9SDimitry Andric return CallLoweringInfo.get(); 262e8d8bef9SDimitry Andric } 263e8d8bef9SDimitry Andric 264e8d8bef9SDimitry Andric const InlineAsmLowering *getInlineAsmLowering() const override { 265e8d8bef9SDimitry Andric return InlineAsmLoweringInfo.get(); 266e8d8bef9SDimitry Andric } 267e8d8bef9SDimitry Andric 268e8d8bef9SDimitry Andric InstructionSelector *getInstructionSelector() const override { 269e8d8bef9SDimitry Andric return InstSelector.get(); 270e8d8bef9SDimitry Andric } 271e8d8bef9SDimitry Andric 272e8d8bef9SDimitry Andric const LegalizerInfo *getLegalizerInfo() const override { 273e8d8bef9SDimitry Andric return Legalizer.get(); 274e8d8bef9SDimitry Andric } 275e8d8bef9SDimitry Andric 27606c3fb27SDimitry Andric const AMDGPURegisterBankInfo *getRegBankInfo() const override { 277e8d8bef9SDimitry Andric return RegBankInfo.get(); 278e8d8bef9SDimitry Andric } 279e8d8bef9SDimitry Andric 280fe6060f1SDimitry Andric const AMDGPU::IsaInfo::AMDGPUTargetID &getTargetID() const { 281fe6060f1SDimitry Andric return TargetID; 282fe6060f1SDimitry Andric } 283fe6060f1SDimitry Andric 284e8d8bef9SDimitry Andric // Nothing implemented, just prevent crashes on use. 285e8d8bef9SDimitry Andric const SelectionDAGTargetInfo *getSelectionDAGInfo() const override { 286e8d8bef9SDimitry Andric return &TSInfo; 287e8d8bef9SDimitry Andric } 288e8d8bef9SDimitry Andric 289e8d8bef9SDimitry Andric const InstrItineraryData *getInstrItineraryData() const override { 290e8d8bef9SDimitry Andric return &InstrItins; 291e8d8bef9SDimitry Andric } 292e8d8bef9SDimitry Andric 293e8d8bef9SDimitry Andric void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS); 294e8d8bef9SDimitry Andric 295e8d8bef9SDimitry Andric Generation getGeneration() const { 296e8d8bef9SDimitry Andric return (Generation)Gen; 297e8d8bef9SDimitry Andric } 298e8d8bef9SDimitry Andric 29981ad6265SDimitry Andric unsigned getMaxWaveScratchSize() const { 30081ad6265SDimitry Andric // See COMPUTE_TMPRING_SIZE.WAVESIZE. 301*7a6dacacSDimitry Andric if (getGeneration() >= GFX12) { 302*7a6dacacSDimitry Andric // 18-bit field in units of 64-dword. 303*7a6dacacSDimitry Andric return (64 * 4) * ((1 << 18) - 1); 30481ad6265SDimitry Andric } 305*7a6dacacSDimitry Andric if (getGeneration() == GFX11) { 30681ad6265SDimitry Andric // 15-bit field in units of 64-dword. 30781ad6265SDimitry Andric return (64 * 4) * ((1 << 15) - 1); 30881ad6265SDimitry Andric } 309*7a6dacacSDimitry Andric // 13-bit field in units of 256-dword. 310*7a6dacacSDimitry Andric return (256 * 4) * ((1 << 13) - 1); 311*7a6dacacSDimitry Andric } 31281ad6265SDimitry Andric 313349cc55cSDimitry Andric /// Return the number of high bits known to be zero for a frame index. 314e8d8bef9SDimitry Andric unsigned getKnownHighZeroBitsForFrameIndex() const { 31506c3fb27SDimitry Andric return llvm::countl_zero(getMaxWaveScratchSize()) + getWavefrontSizeLog2(); 316e8d8bef9SDimitry Andric } 317e8d8bef9SDimitry Andric 318e8d8bef9SDimitry Andric int getLDSBankCount() const { 319e8d8bef9SDimitry Andric return LDSBankCount; 320e8d8bef9SDimitry Andric } 321e8d8bef9SDimitry Andric 322e8d8bef9SDimitry Andric unsigned getMaxPrivateElementSize(bool ForBufferRSrc = false) const { 323e8d8bef9SDimitry Andric return (ForBufferRSrc || !enableFlatScratch()) ? MaxPrivateElementSize : 16; 324e8d8bef9SDimitry Andric } 325e8d8bef9SDimitry Andric 326e8d8bef9SDimitry Andric unsigned getConstantBusLimit(unsigned Opcode) const; 327e8d8bef9SDimitry Andric 328fe6060f1SDimitry Andric /// Returns if the result of this instruction with a 16-bit result returned in 329fe6060f1SDimitry Andric /// a 32-bit register implicitly zeroes the high 16-bits, rather than preserve 330fe6060f1SDimitry Andric /// the original value. 331fe6060f1SDimitry Andric bool zeroesHigh16BitsOfDest(unsigned Opcode) const; 332fe6060f1SDimitry Andric 333bdd1243dSDimitry Andric bool supportsWGP() const { return getGeneration() >= GFX10; } 334bdd1243dSDimitry Andric 335e8d8bef9SDimitry Andric bool hasIntClamp() const { 336e8d8bef9SDimitry Andric return HasIntClamp; 337e8d8bef9SDimitry Andric } 338e8d8bef9SDimitry Andric 339e8d8bef9SDimitry Andric bool hasFP64() const { 340e8d8bef9SDimitry Andric return FP64; 341e8d8bef9SDimitry Andric } 342e8d8bef9SDimitry Andric 343e8d8bef9SDimitry Andric bool hasMIMG_R128() const { 344e8d8bef9SDimitry Andric return MIMG_R128; 345e8d8bef9SDimitry Andric } 346e8d8bef9SDimitry Andric 347e8d8bef9SDimitry Andric bool hasHWFP64() const { 348e8d8bef9SDimitry Andric return FP64; 349e8d8bef9SDimitry Andric } 350e8d8bef9SDimitry Andric 351e8d8bef9SDimitry Andric bool hasHalfRate64Ops() const { 352e8d8bef9SDimitry Andric return HalfRate64Ops; 353e8d8bef9SDimitry Andric } 354e8d8bef9SDimitry Andric 355fe6060f1SDimitry Andric bool hasFullRate64Ops() const { 356fe6060f1SDimitry Andric return FullRate64Ops; 357fe6060f1SDimitry Andric } 358fe6060f1SDimitry Andric 359e8d8bef9SDimitry Andric bool hasAddr64() const { 360e8d8bef9SDimitry Andric return (getGeneration() < AMDGPUSubtarget::VOLCANIC_ISLANDS); 361e8d8bef9SDimitry Andric } 362e8d8bef9SDimitry Andric 363e8d8bef9SDimitry Andric bool hasFlat() const { 364e8d8bef9SDimitry Andric return (getGeneration() > AMDGPUSubtarget::SOUTHERN_ISLANDS); 365e8d8bef9SDimitry Andric } 366e8d8bef9SDimitry Andric 367e8d8bef9SDimitry Andric // Return true if the target only has the reverse operand versions of VALU 368e8d8bef9SDimitry Andric // shift instructions (e.g. v_lshrrev_b32, and no v_lshr_b32). 369e8d8bef9SDimitry Andric bool hasOnlyRevVALUShifts() const { 370e8d8bef9SDimitry Andric return getGeneration() >= VOLCANIC_ISLANDS; 371e8d8bef9SDimitry Andric } 372e8d8bef9SDimitry Andric 373e8d8bef9SDimitry Andric bool hasFractBug() const { 374e8d8bef9SDimitry Andric return getGeneration() == SOUTHERN_ISLANDS; 375e8d8bef9SDimitry Andric } 376e8d8bef9SDimitry Andric 377e8d8bef9SDimitry Andric bool hasBFE() const { 378e8d8bef9SDimitry Andric return true; 379e8d8bef9SDimitry Andric } 380e8d8bef9SDimitry Andric 381e8d8bef9SDimitry Andric bool hasBFI() const { 382e8d8bef9SDimitry Andric return true; 383e8d8bef9SDimitry Andric } 384e8d8bef9SDimitry Andric 385e8d8bef9SDimitry Andric bool hasBFM() const { 386e8d8bef9SDimitry Andric return hasBFE(); 387e8d8bef9SDimitry Andric } 388e8d8bef9SDimitry Andric 389e8d8bef9SDimitry Andric bool hasBCNT(unsigned Size) const { 390e8d8bef9SDimitry Andric return true; 391e8d8bef9SDimitry Andric } 392e8d8bef9SDimitry Andric 393e8d8bef9SDimitry Andric bool hasFFBL() const { 394e8d8bef9SDimitry Andric return true; 395e8d8bef9SDimitry Andric } 396e8d8bef9SDimitry Andric 397e8d8bef9SDimitry Andric bool hasFFBH() const { 398e8d8bef9SDimitry Andric return true; 399e8d8bef9SDimitry Andric } 400e8d8bef9SDimitry Andric 401e8d8bef9SDimitry Andric bool hasMed3_16() const { 402e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::GFX9; 403e8d8bef9SDimitry Andric } 404e8d8bef9SDimitry Andric 405e8d8bef9SDimitry Andric bool hasMin3Max3_16() const { 406e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::GFX9; 407e8d8bef9SDimitry Andric } 408e8d8bef9SDimitry Andric 409e8d8bef9SDimitry Andric bool hasFmaMixInsts() const { 410e8d8bef9SDimitry Andric return HasFmaMixInsts; 411e8d8bef9SDimitry Andric } 412e8d8bef9SDimitry Andric 413e8d8bef9SDimitry Andric bool hasCARRY() const { 414e8d8bef9SDimitry Andric return true; 415e8d8bef9SDimitry Andric } 416e8d8bef9SDimitry Andric 417e8d8bef9SDimitry Andric bool hasFMA() const { 418e8d8bef9SDimitry Andric return FMA; 419e8d8bef9SDimitry Andric } 420e8d8bef9SDimitry Andric 421e8d8bef9SDimitry Andric bool hasSwap() const { 422e8d8bef9SDimitry Andric return GFX9Insts; 423e8d8bef9SDimitry Andric } 424e8d8bef9SDimitry Andric 425e8d8bef9SDimitry Andric bool hasScalarPackInsts() const { 426e8d8bef9SDimitry Andric return GFX9Insts; 427e8d8bef9SDimitry Andric } 428e8d8bef9SDimitry Andric 429e8d8bef9SDimitry Andric bool hasScalarMulHiInsts() const { 430e8d8bef9SDimitry Andric return GFX9Insts; 431e8d8bef9SDimitry Andric } 432e8d8bef9SDimitry Andric 433*7a6dacacSDimitry Andric bool hasScalarSubwordLoads() const { return getGeneration() >= GFX12; } 434*7a6dacacSDimitry Andric 435e8d8bef9SDimitry Andric TrapHandlerAbi getTrapHandlerAbi() const { 436fe6060f1SDimitry Andric return isAmdHsaOS() ? TrapHandlerAbi::AMDHSA : TrapHandlerAbi::NONE; 437fe6060f1SDimitry Andric } 438fe6060f1SDimitry Andric 439fe6060f1SDimitry Andric bool supportsGetDoorbellID() const { 440fe6060f1SDimitry Andric // The S_GETREG DOORBELL_ID is supported by all GFX9 onward targets. 441fe6060f1SDimitry Andric return getGeneration() >= GFX9; 442e8d8bef9SDimitry Andric } 443e8d8bef9SDimitry Andric 444e8d8bef9SDimitry Andric /// True if the offset field of DS instructions works as expected. On SI, the 445e8d8bef9SDimitry Andric /// offset uses a 16-bit adder and does not always wrap properly. 446e8d8bef9SDimitry Andric bool hasUsableDSOffset() const { 447e8d8bef9SDimitry Andric return getGeneration() >= SEA_ISLANDS; 448e8d8bef9SDimitry Andric } 449e8d8bef9SDimitry Andric 450e8d8bef9SDimitry Andric bool unsafeDSOffsetFoldingEnabled() const { 451e8d8bef9SDimitry Andric return EnableUnsafeDSOffsetFolding; 452e8d8bef9SDimitry Andric } 453e8d8bef9SDimitry Andric 454e8d8bef9SDimitry Andric /// Condition output from div_scale is usable. 455e8d8bef9SDimitry Andric bool hasUsableDivScaleConditionOutput() const { 456e8d8bef9SDimitry Andric return getGeneration() != SOUTHERN_ISLANDS; 457e8d8bef9SDimitry Andric } 458e8d8bef9SDimitry Andric 459e8d8bef9SDimitry Andric /// Extra wait hazard is needed in some cases before 460e8d8bef9SDimitry Andric /// s_cbranch_vccnz/s_cbranch_vccz. 461e8d8bef9SDimitry Andric bool hasReadVCCZBug() const { 462e8d8bef9SDimitry Andric return getGeneration() <= SEA_ISLANDS; 463e8d8bef9SDimitry Andric } 464e8d8bef9SDimitry Andric 465e8d8bef9SDimitry Andric /// Writes to VCC_LO/VCC_HI update the VCCZ flag. 466e8d8bef9SDimitry Andric bool partialVCCWritesUpdateVCCZ() const { 467e8d8bef9SDimitry Andric return getGeneration() >= GFX10; 468e8d8bef9SDimitry Andric } 469e8d8bef9SDimitry Andric 470e8d8bef9SDimitry Andric /// A read of an SGPR by SMRD instruction requires 4 wait states when the SGPR 471e8d8bef9SDimitry Andric /// was written by a VALU instruction. 472e8d8bef9SDimitry Andric bool hasSMRDReadVALUDefHazard() const { 473e8d8bef9SDimitry Andric return getGeneration() == SOUTHERN_ISLANDS; 474e8d8bef9SDimitry Andric } 475e8d8bef9SDimitry Andric 476e8d8bef9SDimitry Andric /// A read of an SGPR by a VMEM instruction requires 5 wait states when the 477e8d8bef9SDimitry Andric /// SGPR was written by a VALU Instruction. 478e8d8bef9SDimitry Andric bool hasVMEMReadSGPRVALUDefHazard() const { 479e8d8bef9SDimitry Andric return getGeneration() >= VOLCANIC_ISLANDS; 480e8d8bef9SDimitry Andric } 481e8d8bef9SDimitry Andric 482e8d8bef9SDimitry Andric bool hasRFEHazards() const { 483e8d8bef9SDimitry Andric return getGeneration() >= VOLCANIC_ISLANDS; 484e8d8bef9SDimitry Andric } 485e8d8bef9SDimitry Andric 486e8d8bef9SDimitry Andric /// Number of hazard wait states for s_setreg_b32/s_setreg_imm32_b32. 487e8d8bef9SDimitry Andric unsigned getSetRegWaitStates() const { 488e8d8bef9SDimitry Andric return getGeneration() <= SEA_ISLANDS ? 1 : 2; 489e8d8bef9SDimitry Andric } 490e8d8bef9SDimitry Andric 491e8d8bef9SDimitry Andric bool dumpCode() const { 492e8d8bef9SDimitry Andric return DumpCode; 493e8d8bef9SDimitry Andric } 494e8d8bef9SDimitry Andric 495e8d8bef9SDimitry Andric /// Return the amount of LDS that can be used that will not restrict the 496e8d8bef9SDimitry Andric /// occupancy lower than WaveCount. 497e8d8bef9SDimitry Andric unsigned getMaxLocalMemSizeWithWaveCount(unsigned WaveCount, 498e8d8bef9SDimitry Andric const Function &) const; 499e8d8bef9SDimitry Andric 500e8d8bef9SDimitry Andric bool supportsMinMaxDenormModes() const { 501e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::GFX9; 502e8d8bef9SDimitry Andric } 503e8d8bef9SDimitry Andric 504e8d8bef9SDimitry Andric /// \returns If target supports S_DENORM_MODE. 505e8d8bef9SDimitry Andric bool hasDenormModeInst() const { 506e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::GFX10; 507e8d8bef9SDimitry Andric } 508e8d8bef9SDimitry Andric 509e8d8bef9SDimitry Andric bool useFlatForGlobal() const { 510e8d8bef9SDimitry Andric return FlatForGlobal; 511e8d8bef9SDimitry Andric } 512e8d8bef9SDimitry Andric 513e8d8bef9SDimitry Andric /// \returns If target supports ds_read/write_b128 and user enables generation 514e8d8bef9SDimitry Andric /// of ds_read/write_b128. 515e8d8bef9SDimitry Andric bool useDS128() const { 516e8d8bef9SDimitry Andric return CIInsts && EnableDS128; 517e8d8bef9SDimitry Andric } 518e8d8bef9SDimitry Andric 519e8d8bef9SDimitry Andric /// \return If target supports ds_read/write_b96/128. 520e8d8bef9SDimitry Andric bool hasDS96AndDS128() const { 521e8d8bef9SDimitry Andric return CIInsts; 522e8d8bef9SDimitry Andric } 523e8d8bef9SDimitry Andric 524e8d8bef9SDimitry Andric /// Have v_trunc_f64, v_ceil_f64, v_rndne_f64 525e8d8bef9SDimitry Andric bool haveRoundOpsF64() const { 526e8d8bef9SDimitry Andric return CIInsts; 527e8d8bef9SDimitry Andric } 528e8d8bef9SDimitry Andric 529e8d8bef9SDimitry Andric /// \returns If MUBUF instructions always perform range checking, even for 530e8d8bef9SDimitry Andric /// buffer resources used for private memory access. 531e8d8bef9SDimitry Andric bool privateMemoryResourceIsRangeChecked() const { 532e8d8bef9SDimitry Andric return getGeneration() < AMDGPUSubtarget::GFX9; 533e8d8bef9SDimitry Andric } 534e8d8bef9SDimitry Andric 535e8d8bef9SDimitry Andric /// \returns If target requires PRT Struct NULL support (zero result registers 536e8d8bef9SDimitry Andric /// for sparse texture support). 537e8d8bef9SDimitry Andric bool usePRTStrictNull() const { 538e8d8bef9SDimitry Andric return EnablePRTStrictNull; 539e8d8bef9SDimitry Andric } 540e8d8bef9SDimitry Andric 541e8d8bef9SDimitry Andric bool hasAutoWaitcntBeforeBarrier() const { 542e8d8bef9SDimitry Andric return AutoWaitcntBeforeBarrier; 543e8d8bef9SDimitry Andric } 544e8d8bef9SDimitry Andric 545bdd1243dSDimitry Andric /// \returns true if the target supports backing off of s_barrier instructions 546bdd1243dSDimitry Andric /// when an exception is raised. 547bdd1243dSDimitry Andric bool supportsBackOffBarrier() const { 548bdd1243dSDimitry Andric return BackOffBarrier; 549bdd1243dSDimitry Andric } 550bdd1243dSDimitry Andric 551e8d8bef9SDimitry Andric bool hasUnalignedBufferAccess() const { 552e8d8bef9SDimitry Andric return UnalignedBufferAccess; 553e8d8bef9SDimitry Andric } 554e8d8bef9SDimitry Andric 555e8d8bef9SDimitry Andric bool hasUnalignedBufferAccessEnabled() const { 556e8d8bef9SDimitry Andric return UnalignedBufferAccess && UnalignedAccessMode; 557e8d8bef9SDimitry Andric } 558e8d8bef9SDimitry Andric 559e8d8bef9SDimitry Andric bool hasUnalignedDSAccess() const { 560e8d8bef9SDimitry Andric return UnalignedDSAccess; 561e8d8bef9SDimitry Andric } 562e8d8bef9SDimitry Andric 563e8d8bef9SDimitry Andric bool hasUnalignedDSAccessEnabled() const { 564e8d8bef9SDimitry Andric return UnalignedDSAccess && UnalignedAccessMode; 565e8d8bef9SDimitry Andric } 566e8d8bef9SDimitry Andric 567e8d8bef9SDimitry Andric bool hasUnalignedScratchAccess() const { 568e8d8bef9SDimitry Andric return UnalignedScratchAccess; 569e8d8bef9SDimitry Andric } 570e8d8bef9SDimitry Andric 571e8d8bef9SDimitry Andric bool hasUnalignedAccessMode() const { 572e8d8bef9SDimitry Andric return UnalignedAccessMode; 573e8d8bef9SDimitry Andric } 574e8d8bef9SDimitry Andric 575e8d8bef9SDimitry Andric bool hasApertureRegs() const { 576e8d8bef9SDimitry Andric return HasApertureRegs; 577e8d8bef9SDimitry Andric } 578e8d8bef9SDimitry Andric 579e8d8bef9SDimitry Andric bool isTrapHandlerEnabled() const { 580e8d8bef9SDimitry Andric return TrapHandler; 581e8d8bef9SDimitry Andric } 582e8d8bef9SDimitry Andric 583e8d8bef9SDimitry Andric bool isXNACKEnabled() const { 584e8d8bef9SDimitry Andric return TargetID.isXnackOnOrAny(); 585e8d8bef9SDimitry Andric } 586e8d8bef9SDimitry Andric 587fe6060f1SDimitry Andric bool isTgSplitEnabled() const { 588fe6060f1SDimitry Andric return EnableTgSplit; 589fe6060f1SDimitry Andric } 590fe6060f1SDimitry Andric 591e8d8bef9SDimitry Andric bool isCuModeEnabled() const { 592e8d8bef9SDimitry Andric return EnableCuMode; 593e8d8bef9SDimitry Andric } 594e8d8bef9SDimitry Andric 595e8d8bef9SDimitry Andric bool hasFlatAddressSpace() const { 596e8d8bef9SDimitry Andric return FlatAddressSpace; 597e8d8bef9SDimitry Andric } 598e8d8bef9SDimitry Andric 599e8d8bef9SDimitry Andric bool hasFlatScrRegister() const { 600e8d8bef9SDimitry Andric return hasFlatAddressSpace(); 601e8d8bef9SDimitry Andric } 602e8d8bef9SDimitry Andric 603e8d8bef9SDimitry Andric bool hasFlatInstOffsets() const { 604e8d8bef9SDimitry Andric return FlatInstOffsets; 605e8d8bef9SDimitry Andric } 606e8d8bef9SDimitry Andric 607e8d8bef9SDimitry Andric bool hasFlatGlobalInsts() const { 608e8d8bef9SDimitry Andric return FlatGlobalInsts; 609e8d8bef9SDimitry Andric } 610e8d8bef9SDimitry Andric 611e8d8bef9SDimitry Andric bool hasFlatScratchInsts() const { 612e8d8bef9SDimitry Andric return FlatScratchInsts; 613e8d8bef9SDimitry Andric } 614e8d8bef9SDimitry Andric 615e8d8bef9SDimitry Andric // Check if target supports ST addressing mode with FLAT scratch instructions. 616e8d8bef9SDimitry Andric // The ST addressing mode means no registers are used, either VGPR or SGPR, 617e8d8bef9SDimitry Andric // but only immediate offset is swizzled and added to the FLAT scratch base. 618e8d8bef9SDimitry Andric bool hasFlatScratchSTMode() const { 61981ad6265SDimitry Andric return hasFlatScratchInsts() && (hasGFX10_3Insts() || hasGFX940Insts()); 620e8d8bef9SDimitry Andric } 621e8d8bef9SDimitry Andric 62281ad6265SDimitry Andric bool hasFlatScratchSVSMode() const { return GFX940Insts || GFX11Insts; } 62381ad6265SDimitry Andric 624e8d8bef9SDimitry Andric bool hasScalarFlatScratchInsts() const { 625e8d8bef9SDimitry Andric return ScalarFlatScratchInsts; 626e8d8bef9SDimitry Andric } 627e8d8bef9SDimitry Andric 62881ad6265SDimitry Andric bool enableFlatScratch() const { 62981ad6265SDimitry Andric return flatScratchIsArchitected() || 63081ad6265SDimitry Andric (EnableFlatScratch && hasFlatScratchInsts()); 63181ad6265SDimitry Andric } 63281ad6265SDimitry Andric 633e8d8bef9SDimitry Andric bool hasGlobalAddTidInsts() const { 634e8d8bef9SDimitry Andric return GFX10_BEncoding; 635e8d8bef9SDimitry Andric } 636e8d8bef9SDimitry Andric 637e8d8bef9SDimitry Andric bool hasAtomicCSub() const { 638e8d8bef9SDimitry Andric return GFX10_BEncoding; 639e8d8bef9SDimitry Andric } 640e8d8bef9SDimitry Andric 641e8d8bef9SDimitry Andric bool hasMultiDwordFlatScratchAddressing() const { 642e8d8bef9SDimitry Andric return getGeneration() >= GFX9; 643e8d8bef9SDimitry Andric } 644e8d8bef9SDimitry Andric 645e8d8bef9SDimitry Andric bool hasFlatSegmentOffsetBug() const { 646e8d8bef9SDimitry Andric return HasFlatSegmentOffsetBug; 647e8d8bef9SDimitry Andric } 648e8d8bef9SDimitry Andric 649e8d8bef9SDimitry Andric bool hasFlatLgkmVMemCountInOrder() const { 650e8d8bef9SDimitry Andric return getGeneration() > GFX9; 651e8d8bef9SDimitry Andric } 652e8d8bef9SDimitry Andric 653e8d8bef9SDimitry Andric bool hasD16LoadStore() const { 654e8d8bef9SDimitry Andric return getGeneration() >= GFX9; 655e8d8bef9SDimitry Andric } 656e8d8bef9SDimitry Andric 657e8d8bef9SDimitry Andric bool d16PreservesUnusedBits() const { 658e8d8bef9SDimitry Andric return hasD16LoadStore() && !TargetID.isSramEccOnOrAny(); 659e8d8bef9SDimitry Andric } 660e8d8bef9SDimitry Andric 661e8d8bef9SDimitry Andric bool hasD16Images() const { 662e8d8bef9SDimitry Andric return getGeneration() >= VOLCANIC_ISLANDS; 663e8d8bef9SDimitry Andric } 664e8d8bef9SDimitry Andric 665e8d8bef9SDimitry Andric /// Return if most LDS instructions have an m0 use that require m0 to be 666349cc55cSDimitry Andric /// initialized. 667e8d8bef9SDimitry Andric bool ldsRequiresM0Init() const { 668e8d8bef9SDimitry Andric return getGeneration() < GFX9; 669e8d8bef9SDimitry Andric } 670e8d8bef9SDimitry Andric 671e8d8bef9SDimitry Andric // True if the hardware rewinds and replays GWS operations if a wave is 672e8d8bef9SDimitry Andric // preempted. 673e8d8bef9SDimitry Andric // 674e8d8bef9SDimitry Andric // If this is false, a GWS operation requires testing if a nack set the 675e8d8bef9SDimitry Andric // MEM_VIOL bit, and repeating if so. 676e8d8bef9SDimitry Andric bool hasGWSAutoReplay() const { 677e8d8bef9SDimitry Andric return getGeneration() >= GFX9; 678e8d8bef9SDimitry Andric } 679e8d8bef9SDimitry Andric 680e8d8bef9SDimitry Andric /// \returns if target has ds_gws_sema_release_all instruction. 681e8d8bef9SDimitry Andric bool hasGWSSemaReleaseAll() const { 682e8d8bef9SDimitry Andric return CIInsts; 683e8d8bef9SDimitry Andric } 684e8d8bef9SDimitry Andric 685e8d8bef9SDimitry Andric /// \returns true if the target has integer add/sub instructions that do not 686e8d8bef9SDimitry Andric /// produce a carry-out. This includes v_add_[iu]32, v_sub_[iu]32, 687e8d8bef9SDimitry Andric /// v_add_[iu]16, and v_sub_[iu]16, all of which support the clamp modifier 688e8d8bef9SDimitry Andric /// for saturation. 689e8d8bef9SDimitry Andric bool hasAddNoCarry() const { 690e8d8bef9SDimitry Andric return AddNoCarryInsts; 691e8d8bef9SDimitry Andric } 692e8d8bef9SDimitry Andric 6935f757f3fSDimitry Andric bool hasScalarAddSub64() const { return getGeneration() >= GFX12; } 6945f757f3fSDimitry Andric 6951db9f3b2SDimitry Andric bool hasScalarSMulU64() const { return getGeneration() >= GFX12; } 6961db9f3b2SDimitry Andric 697e8d8bef9SDimitry Andric bool hasUnpackedD16VMem() const { 698e8d8bef9SDimitry Andric return HasUnpackedD16VMem; 699e8d8bef9SDimitry Andric } 700e8d8bef9SDimitry Andric 701e8d8bef9SDimitry Andric // Covers VS/PS/CS graphics shaders 702e8d8bef9SDimitry Andric bool isMesaGfxShader(const Function &F) const { 703e8d8bef9SDimitry Andric return isMesa3DOS() && AMDGPU::isShader(F.getCallingConv()); 704e8d8bef9SDimitry Andric } 705e8d8bef9SDimitry Andric 706e8d8bef9SDimitry Andric bool hasMad64_32() const { 707e8d8bef9SDimitry Andric return getGeneration() >= SEA_ISLANDS; 708e8d8bef9SDimitry Andric } 709e8d8bef9SDimitry Andric 710e8d8bef9SDimitry Andric bool hasSDWAOmod() const { 711e8d8bef9SDimitry Andric return HasSDWAOmod; 712e8d8bef9SDimitry Andric } 713e8d8bef9SDimitry Andric 714e8d8bef9SDimitry Andric bool hasSDWAScalar() const { 715e8d8bef9SDimitry Andric return HasSDWAScalar; 716e8d8bef9SDimitry Andric } 717e8d8bef9SDimitry Andric 718e8d8bef9SDimitry Andric bool hasSDWASdst() const { 719e8d8bef9SDimitry Andric return HasSDWASdst; 720e8d8bef9SDimitry Andric } 721e8d8bef9SDimitry Andric 722e8d8bef9SDimitry Andric bool hasSDWAMac() const { 723e8d8bef9SDimitry Andric return HasSDWAMac; 724e8d8bef9SDimitry Andric } 725e8d8bef9SDimitry Andric 726e8d8bef9SDimitry Andric bool hasSDWAOutModsVOPC() const { 727e8d8bef9SDimitry Andric return HasSDWAOutModsVOPC; 728e8d8bef9SDimitry Andric } 729e8d8bef9SDimitry Andric 730e8d8bef9SDimitry Andric bool hasDLInsts() const { 731e8d8bef9SDimitry Andric return HasDLInsts; 732e8d8bef9SDimitry Andric } 733e8d8bef9SDimitry Andric 734bdd1243dSDimitry Andric bool hasFmacF64Inst() const { return HasFmacF64Inst; } 735bdd1243dSDimitry Andric 736e8d8bef9SDimitry Andric bool hasDot1Insts() const { 737e8d8bef9SDimitry Andric return HasDot1Insts; 738e8d8bef9SDimitry Andric } 739e8d8bef9SDimitry Andric 740e8d8bef9SDimitry Andric bool hasDot2Insts() const { 741e8d8bef9SDimitry Andric return HasDot2Insts; 742e8d8bef9SDimitry Andric } 743e8d8bef9SDimitry Andric 744e8d8bef9SDimitry Andric bool hasDot3Insts() const { 745e8d8bef9SDimitry Andric return HasDot3Insts; 746e8d8bef9SDimitry Andric } 747e8d8bef9SDimitry Andric 748e8d8bef9SDimitry Andric bool hasDot4Insts() const { 749e8d8bef9SDimitry Andric return HasDot4Insts; 750e8d8bef9SDimitry Andric } 751e8d8bef9SDimitry Andric 752e8d8bef9SDimitry Andric bool hasDot5Insts() const { 753e8d8bef9SDimitry Andric return HasDot5Insts; 754e8d8bef9SDimitry Andric } 755e8d8bef9SDimitry Andric 756e8d8bef9SDimitry Andric bool hasDot6Insts() const { 757e8d8bef9SDimitry Andric return HasDot6Insts; 758e8d8bef9SDimitry Andric } 759e8d8bef9SDimitry Andric 760fe6060f1SDimitry Andric bool hasDot7Insts() const { 761fe6060f1SDimitry Andric return HasDot7Insts; 762fe6060f1SDimitry Andric } 763fe6060f1SDimitry Andric 76481ad6265SDimitry Andric bool hasDot8Insts() const { 76581ad6265SDimitry Andric return HasDot8Insts; 76681ad6265SDimitry Andric } 76781ad6265SDimitry Andric 768bdd1243dSDimitry Andric bool hasDot9Insts() const { 769bdd1243dSDimitry Andric return HasDot9Insts; 770bdd1243dSDimitry Andric } 771bdd1243dSDimitry Andric 77206c3fb27SDimitry Andric bool hasDot10Insts() const { 77306c3fb27SDimitry Andric return HasDot10Insts; 77406c3fb27SDimitry Andric } 77506c3fb27SDimitry Andric 776e8d8bef9SDimitry Andric bool hasMAIInsts() const { 777e8d8bef9SDimitry Andric return HasMAIInsts; 778e8d8bef9SDimitry Andric } 779e8d8bef9SDimitry Andric 780fcaf7f86SDimitry Andric bool hasFP8Insts() const { 781fcaf7f86SDimitry Andric return HasFP8Insts; 782fcaf7f86SDimitry Andric } 783fcaf7f86SDimitry Andric 784*7a6dacacSDimitry Andric bool hasFP8ConversionInsts() const { return HasFP8ConversionInsts; } 785*7a6dacacSDimitry Andric 786e8d8bef9SDimitry Andric bool hasPkFmacF16Inst() const { 787e8d8bef9SDimitry Andric return HasPkFmacF16Inst; 788e8d8bef9SDimitry Andric } 789e8d8bef9SDimitry Andric 79006c3fb27SDimitry Andric bool hasAtomicDsPkAdd16Insts() const { return HasAtomicDsPkAdd16Insts; } 79106c3fb27SDimitry Andric 79206c3fb27SDimitry Andric bool hasAtomicFlatPkAdd16Insts() const { return HasAtomicFlatPkAdd16Insts; } 79306c3fb27SDimitry Andric 794e8d8bef9SDimitry Andric bool hasAtomicFaddInsts() const { 79581ad6265SDimitry Andric return HasAtomicFaddRtnInsts || HasAtomicFaddNoRtnInsts; 796e8d8bef9SDimitry Andric } 797e8d8bef9SDimitry Andric 79881ad6265SDimitry Andric bool hasAtomicFaddRtnInsts() const { return HasAtomicFaddRtnInsts; } 79981ad6265SDimitry Andric 80081ad6265SDimitry Andric bool hasAtomicFaddNoRtnInsts() const { return HasAtomicFaddNoRtnInsts; } 80181ad6265SDimitry Andric 80206c3fb27SDimitry Andric bool hasAtomicBufferGlobalPkAddF16NoRtnInsts() const { 80306c3fb27SDimitry Andric return HasAtomicBufferGlobalPkAddF16NoRtnInsts; 80406c3fb27SDimitry Andric } 80506c3fb27SDimitry Andric 80606c3fb27SDimitry Andric bool hasAtomicBufferGlobalPkAddF16Insts() const { 80706c3fb27SDimitry Andric return HasAtomicBufferGlobalPkAddF16Insts; 80806c3fb27SDimitry Andric } 80906c3fb27SDimitry Andric 81006c3fb27SDimitry Andric bool hasAtomicGlobalPkAddBF16Inst() const { 81106c3fb27SDimitry Andric return HasAtomicGlobalPkAddBF16Inst; 81206c3fb27SDimitry Andric } 81381ad6265SDimitry Andric 814bdd1243dSDimitry Andric bool hasFlatAtomicFaddF32Inst() const { return HasFlatAtomicFaddF32Inst; } 815bdd1243dSDimitry Andric 816*7a6dacacSDimitry Andric bool hasDefaultComponentZero() const { return HasDefaultComponentZero; } 817*7a6dacacSDimitry Andric 818*7a6dacacSDimitry Andric bool hasDefaultComponentBroadcast() const { 819*7a6dacacSDimitry Andric return HasDefaultComponentBroadcast; 820*7a6dacacSDimitry Andric } 821*7a6dacacSDimitry Andric 822e8d8bef9SDimitry Andric bool hasNoSdstCMPX() const { 823e8d8bef9SDimitry Andric return HasNoSdstCMPX; 824e8d8bef9SDimitry Andric } 825e8d8bef9SDimitry Andric 826e8d8bef9SDimitry Andric bool hasVscnt() const { 827e8d8bef9SDimitry Andric return HasVscnt; 828e8d8bef9SDimitry Andric } 829e8d8bef9SDimitry Andric 830e8d8bef9SDimitry Andric bool hasGetWaveIdInst() const { 831e8d8bef9SDimitry Andric return HasGetWaveIdInst; 832e8d8bef9SDimitry Andric } 833e8d8bef9SDimitry Andric 834e8d8bef9SDimitry Andric bool hasSMemTimeInst() const { 835e8d8bef9SDimitry Andric return HasSMemTimeInst; 836e8d8bef9SDimitry Andric } 837e8d8bef9SDimitry Andric 838fe6060f1SDimitry Andric bool hasShaderCyclesRegister() const { 839fe6060f1SDimitry Andric return HasShaderCyclesRegister; 840fe6060f1SDimitry Andric } 841fe6060f1SDimitry Andric 8421db9f3b2SDimitry Andric bool hasShaderCyclesHiLoRegisters() const { 8431db9f3b2SDimitry Andric return HasShaderCyclesHiLoRegisters; 8441db9f3b2SDimitry Andric } 8451db9f3b2SDimitry Andric 846e8d8bef9SDimitry Andric bool hasVOP3Literal() const { 847e8d8bef9SDimitry Andric return HasVOP3Literal; 848e8d8bef9SDimitry Andric } 849e8d8bef9SDimitry Andric 850e8d8bef9SDimitry Andric bool hasNoDataDepHazard() const { 851e8d8bef9SDimitry Andric return HasNoDataDepHazard; 852e8d8bef9SDimitry Andric } 853e8d8bef9SDimitry Andric 854e8d8bef9SDimitry Andric bool vmemWriteNeedsExpWaitcnt() const { 855e8d8bef9SDimitry Andric return getGeneration() < SEA_ISLANDS; 856e8d8bef9SDimitry Andric } 857e8d8bef9SDimitry Andric 858*7a6dacacSDimitry Andric bool hasInstPrefetch() const { 859*7a6dacacSDimitry Andric return getGeneration() == GFX10 || getGeneration() == GFX11; 860*7a6dacacSDimitry Andric } 861bdd1243dSDimitry Andric 8625f757f3fSDimitry Andric bool hasPrefetch() const { return GFX12Insts; } 8635f757f3fSDimitry Andric 8645f757f3fSDimitry Andric // Has s_cmpk_* instructions. 8655f757f3fSDimitry Andric bool hasSCmpK() const { return getGeneration() < GFX12; } 8665f757f3fSDimitry Andric 867e8d8bef9SDimitry Andric // Scratch is allocated in 256 dword per wave blocks for the entire 868349cc55cSDimitry Andric // wavefront. When viewed from the perspective of an arbitrary workitem, this 869e8d8bef9SDimitry Andric // is 4-byte aligned. 870e8d8bef9SDimitry Andric // 871e8d8bef9SDimitry Andric // Only 4-byte alignment is really needed to access anything. Transformations 872e8d8bef9SDimitry Andric // on the pointer value itself may rely on the alignment / known low bits of 873e8d8bef9SDimitry Andric // the pointer. Set this to something above the minimum to avoid needing 874e8d8bef9SDimitry Andric // dynamic realignment in common cases. 875e8d8bef9SDimitry Andric Align getStackAlignment() const { return Align(16); } 876e8d8bef9SDimitry Andric 877e8d8bef9SDimitry Andric bool enableMachineScheduler() const override { 878e8d8bef9SDimitry Andric return true; 879e8d8bef9SDimitry Andric } 880e8d8bef9SDimitry Andric 881e8d8bef9SDimitry Andric bool useAA() const override; 882e8d8bef9SDimitry Andric 883e8d8bef9SDimitry Andric bool enableSubRegLiveness() const override { 884e8d8bef9SDimitry Andric return true; 885e8d8bef9SDimitry Andric } 886e8d8bef9SDimitry Andric 887e8d8bef9SDimitry Andric void setScalarizeGlobalBehavior(bool b) { ScalarizeGlobal = b; } 888e8d8bef9SDimitry Andric bool getScalarizeGlobalBehavior() const { return ScalarizeGlobal; } 889e8d8bef9SDimitry Andric 890e8d8bef9SDimitry Andric // static wrappers 891e8d8bef9SDimitry Andric static bool hasHalfRate64Ops(const TargetSubtargetInfo &STI); 892e8d8bef9SDimitry Andric 893e8d8bef9SDimitry Andric // XXX - Why is this here if it isn't in the default pass set? 894e8d8bef9SDimitry Andric bool enableEarlyIfConversion() const override { 895e8d8bef9SDimitry Andric return true; 896e8d8bef9SDimitry Andric } 897e8d8bef9SDimitry Andric 898e8d8bef9SDimitry Andric void overrideSchedPolicy(MachineSchedPolicy &Policy, 899e8d8bef9SDimitry Andric unsigned NumRegionInstrs) const override; 900e8d8bef9SDimitry Andric 901e8d8bef9SDimitry Andric unsigned getMaxNumUserSGPRs() const { 9025f757f3fSDimitry Andric return AMDGPU::getMaxNumUserSGPRs(*this); 903e8d8bef9SDimitry Andric } 904e8d8bef9SDimitry Andric 905e8d8bef9SDimitry Andric bool hasSMemRealTime() const { 906e8d8bef9SDimitry Andric return HasSMemRealTime; 907e8d8bef9SDimitry Andric } 908e8d8bef9SDimitry Andric 909e8d8bef9SDimitry Andric bool hasMovrel() const { 910e8d8bef9SDimitry Andric return HasMovrel; 911e8d8bef9SDimitry Andric } 912e8d8bef9SDimitry Andric 913e8d8bef9SDimitry Andric bool hasVGPRIndexMode() const { 914e8d8bef9SDimitry Andric return HasVGPRIndexMode; 915e8d8bef9SDimitry Andric } 916e8d8bef9SDimitry Andric 917e8d8bef9SDimitry Andric bool useVGPRIndexMode() const; 918e8d8bef9SDimitry Andric 919e8d8bef9SDimitry Andric bool hasScalarCompareEq64() const { 920e8d8bef9SDimitry Andric return getGeneration() >= VOLCANIC_ISLANDS; 921e8d8bef9SDimitry Andric } 922e8d8bef9SDimitry Andric 9235f757f3fSDimitry Andric bool hasScalarDwordx3Loads() const { return HasScalarDwordx3Loads; } 9245f757f3fSDimitry Andric 925e8d8bef9SDimitry Andric bool hasScalarStores() const { 926e8d8bef9SDimitry Andric return HasScalarStores; 927e8d8bef9SDimitry Andric } 928e8d8bef9SDimitry Andric 929e8d8bef9SDimitry Andric bool hasScalarAtomics() const { 930e8d8bef9SDimitry Andric return HasScalarAtomics; 931e8d8bef9SDimitry Andric } 932e8d8bef9SDimitry Andric 933349cc55cSDimitry Andric bool hasLDSFPAtomicAdd() const { return GFX8Insts; } 934e8d8bef9SDimitry Andric 935fe6060f1SDimitry Andric /// \returns true if the subtarget has the v_permlanex16_b32 instruction. 936fe6060f1SDimitry Andric bool hasPermLaneX16() const { return getGeneration() >= GFX10; } 937fe6060f1SDimitry Andric 93881ad6265SDimitry Andric /// \returns true if the subtarget has the v_permlane64_b32 instruction. 93981ad6265SDimitry Andric bool hasPermLane64() const { return getGeneration() >= GFX11; } 94081ad6265SDimitry Andric 941e8d8bef9SDimitry Andric bool hasDPP() const { 942e8d8bef9SDimitry Andric return HasDPP; 943e8d8bef9SDimitry Andric } 944e8d8bef9SDimitry Andric 945e8d8bef9SDimitry Andric bool hasDPPBroadcasts() const { 946e8d8bef9SDimitry Andric return HasDPP && getGeneration() < GFX10; 947e8d8bef9SDimitry Andric } 948e8d8bef9SDimitry Andric 949e8d8bef9SDimitry Andric bool hasDPPWavefrontShifts() const { 950e8d8bef9SDimitry Andric return HasDPP && getGeneration() < GFX10; 951e8d8bef9SDimitry Andric } 952e8d8bef9SDimitry Andric 953e8d8bef9SDimitry Andric bool hasDPP8() const { 954e8d8bef9SDimitry Andric return HasDPP8; 955e8d8bef9SDimitry Andric } 956e8d8bef9SDimitry Andric 9575f757f3fSDimitry Andric bool hasDPALU_DPP() const { 9585f757f3fSDimitry Andric return HasDPALU_DPP; 959fe6060f1SDimitry Andric } 960fe6060f1SDimitry Andric 9615f757f3fSDimitry Andric bool hasDPPSrc1SGPR() const { return HasDPPSrc1SGPR; } 9625f757f3fSDimitry Andric 963fe6060f1SDimitry Andric bool hasPackedFP32Ops() const { 964fe6060f1SDimitry Andric return HasPackedFP32Ops; 965fe6060f1SDimitry Andric } 966fe6060f1SDimitry Andric 9675f757f3fSDimitry Andric // Has V_PK_MOV_B32 opcode 9685f757f3fSDimitry Andric bool hasPkMovB32() const { 9695f757f3fSDimitry Andric return GFX90AInsts; 9705f757f3fSDimitry Andric } 9715f757f3fSDimitry Andric 972fe6060f1SDimitry Andric bool hasFmaakFmamkF32Insts() const { 97381ad6265SDimitry Andric return getGeneration() >= GFX10 || hasGFX940Insts(); 97481ad6265SDimitry Andric } 97581ad6265SDimitry Andric 97681ad6265SDimitry Andric bool hasImageInsts() const { 97781ad6265SDimitry Andric return HasImageInsts; 978fe6060f1SDimitry Andric } 979fe6060f1SDimitry Andric 980fe6060f1SDimitry Andric bool hasExtendedImageInsts() const { 981fe6060f1SDimitry Andric return HasExtendedImageInsts; 982fe6060f1SDimitry Andric } 983fe6060f1SDimitry Andric 984e8d8bef9SDimitry Andric bool hasR128A16() const { 985e8d8bef9SDimitry Andric return HasR128A16; 986e8d8bef9SDimitry Andric } 987e8d8bef9SDimitry Andric 988bdd1243dSDimitry Andric bool hasA16() const { return HasA16; } 989e8d8bef9SDimitry Andric 990e8d8bef9SDimitry Andric bool hasG16() const { return HasG16; } 991e8d8bef9SDimitry Andric 992e8d8bef9SDimitry Andric bool hasOffset3fBug() const { 993e8d8bef9SDimitry Andric return HasOffset3fBug; 994e8d8bef9SDimitry Andric } 995e8d8bef9SDimitry Andric 996e8d8bef9SDimitry Andric bool hasImageStoreD16Bug() const { return HasImageStoreD16Bug; } 997e8d8bef9SDimitry Andric 998e8d8bef9SDimitry Andric bool hasImageGather4D16Bug() const { return HasImageGather4D16Bug; } 999e8d8bef9SDimitry Andric 1000bdd1243dSDimitry Andric bool hasMADIntraFwdBug() const { return HasMADIntraFwdBug; } 1001bdd1243dSDimitry Andric 10025f757f3fSDimitry Andric bool hasMSAALoadDstSelBug() const { return HasMSAALoadDstSelBug; } 10035f757f3fSDimitry Andric 1004e8d8bef9SDimitry Andric bool hasNSAEncoding() const { return HasNSAEncoding; } 1005e8d8bef9SDimitry Andric 1006*7a6dacacSDimitry Andric bool hasNonNSAEncoding() const { return getGeneration() < GFX12; } 1007*7a6dacacSDimitry Andric 100806c3fb27SDimitry Andric bool hasPartialNSAEncoding() const { return HasPartialNSAEncoding; } 100906c3fb27SDimitry Andric 10105f757f3fSDimitry Andric unsigned getNSAMaxSize(bool HasSampler = false) const { 10115f757f3fSDimitry Andric return AMDGPU::getNSAMaxSize(*this, HasSampler); 10125f757f3fSDimitry Andric } 1013fe6060f1SDimitry Andric 1014fe6060f1SDimitry Andric bool hasGFX10_AEncoding() const { 1015fe6060f1SDimitry Andric return GFX10_AEncoding; 1016fe6060f1SDimitry Andric } 1017fe6060f1SDimitry Andric 1018e8d8bef9SDimitry Andric bool hasGFX10_BEncoding() const { 1019e8d8bef9SDimitry Andric return GFX10_BEncoding; 1020e8d8bef9SDimitry Andric } 1021e8d8bef9SDimitry Andric 1022e8d8bef9SDimitry Andric bool hasGFX10_3Insts() const { 1023e8d8bef9SDimitry Andric return GFX10_3Insts; 1024e8d8bef9SDimitry Andric } 1025e8d8bef9SDimitry Andric 1026e8d8bef9SDimitry Andric bool hasMadF16() const; 1027e8d8bef9SDimitry Andric 102881ad6265SDimitry Andric bool hasMovB64() const { return GFX940Insts; } 102981ad6265SDimitry Andric 103081ad6265SDimitry Andric bool hasLshlAddB64() const { return GFX940Insts; } 103181ad6265SDimitry Andric 1032e8d8bef9SDimitry Andric bool enableSIScheduler() const { 1033e8d8bef9SDimitry Andric return EnableSIScheduler; 1034e8d8bef9SDimitry Andric } 1035e8d8bef9SDimitry Andric 1036e8d8bef9SDimitry Andric bool loadStoreOptEnabled() const { 1037e8d8bef9SDimitry Andric return EnableLoadStoreOpt; 1038e8d8bef9SDimitry Andric } 1039e8d8bef9SDimitry Andric 1040e8d8bef9SDimitry Andric bool hasSGPRInitBug() const { 1041e8d8bef9SDimitry Andric return SGPRInitBug; 1042e8d8bef9SDimitry Andric } 1043e8d8bef9SDimitry Andric 104481ad6265SDimitry Andric bool hasUserSGPRInit16Bug() const { 1045fcaf7f86SDimitry Andric return UserSGPRInit16Bug && isWave32(); 104681ad6265SDimitry Andric } 104781ad6265SDimitry Andric 1048fe6060f1SDimitry Andric bool hasNegativeScratchOffsetBug() const { return NegativeScratchOffsetBug; } 1049fe6060f1SDimitry Andric 1050fe6060f1SDimitry Andric bool hasNegativeUnalignedScratchOffsetBug() const { 1051fe6060f1SDimitry Andric return NegativeUnalignedScratchOffsetBug; 1052fe6060f1SDimitry Andric } 1053fe6060f1SDimitry Andric 1054e8d8bef9SDimitry Andric bool hasMFMAInlineLiteralBug() const { 1055e8d8bef9SDimitry Andric return HasMFMAInlineLiteralBug; 1056e8d8bef9SDimitry Andric } 1057e8d8bef9SDimitry Andric 1058e8d8bef9SDimitry Andric bool has12DWordStoreHazard() const { 1059e8d8bef9SDimitry Andric return getGeneration() != AMDGPUSubtarget::SOUTHERN_ISLANDS; 1060e8d8bef9SDimitry Andric } 1061e8d8bef9SDimitry Andric 1062e8d8bef9SDimitry Andric // \returns true if the subtarget supports DWORDX3 load/store instructions. 1063e8d8bef9SDimitry Andric bool hasDwordx3LoadStores() const { 1064e8d8bef9SDimitry Andric return CIInsts; 1065e8d8bef9SDimitry Andric } 1066e8d8bef9SDimitry Andric 1067e8d8bef9SDimitry Andric bool hasReadM0MovRelInterpHazard() const { 1068e8d8bef9SDimitry Andric return getGeneration() == AMDGPUSubtarget::GFX9; 1069e8d8bef9SDimitry Andric } 1070e8d8bef9SDimitry Andric 1071e8d8bef9SDimitry Andric bool hasReadM0SendMsgHazard() const { 1072e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS && 1073e8d8bef9SDimitry Andric getGeneration() <= AMDGPUSubtarget::GFX9; 1074e8d8bef9SDimitry Andric } 1075e8d8bef9SDimitry Andric 107681ad6265SDimitry Andric bool hasReadM0LdsDmaHazard() const { 107781ad6265SDimitry Andric return getGeneration() == AMDGPUSubtarget::GFX9; 107881ad6265SDimitry Andric } 107981ad6265SDimitry Andric 108081ad6265SDimitry Andric bool hasReadM0LdsDirectHazard() const { 108181ad6265SDimitry Andric return getGeneration() == AMDGPUSubtarget::GFX9; 108281ad6265SDimitry Andric } 108381ad6265SDimitry Andric 1084e8d8bef9SDimitry Andric bool hasVcmpxPermlaneHazard() const { 1085e8d8bef9SDimitry Andric return HasVcmpxPermlaneHazard; 1086e8d8bef9SDimitry Andric } 1087e8d8bef9SDimitry Andric 1088e8d8bef9SDimitry Andric bool hasVMEMtoScalarWriteHazard() const { 1089e8d8bef9SDimitry Andric return HasVMEMtoScalarWriteHazard; 1090e8d8bef9SDimitry Andric } 1091e8d8bef9SDimitry Andric 1092e8d8bef9SDimitry Andric bool hasSMEMtoVectorWriteHazard() const { 1093e8d8bef9SDimitry Andric return HasSMEMtoVectorWriteHazard; 1094e8d8bef9SDimitry Andric } 1095e8d8bef9SDimitry Andric 1096e8d8bef9SDimitry Andric bool hasLDSMisalignedBug() const { 1097e8d8bef9SDimitry Andric return LDSMisalignedBug && !EnableCuMode; 1098e8d8bef9SDimitry Andric } 1099e8d8bef9SDimitry Andric 1100e8d8bef9SDimitry Andric bool hasInstFwdPrefetchBug() const { 1101e8d8bef9SDimitry Andric return HasInstFwdPrefetchBug; 1102e8d8bef9SDimitry Andric } 1103e8d8bef9SDimitry Andric 1104e8d8bef9SDimitry Andric bool hasVcmpxExecWARHazard() const { 1105e8d8bef9SDimitry Andric return HasVcmpxExecWARHazard; 1106e8d8bef9SDimitry Andric } 1107e8d8bef9SDimitry Andric 1108e8d8bef9SDimitry Andric bool hasLdsBranchVmemWARHazard() const { 1109e8d8bef9SDimitry Andric return HasLdsBranchVmemWARHazard; 1110e8d8bef9SDimitry Andric } 1111e8d8bef9SDimitry Andric 1112bdd1243dSDimitry Andric // Shift amount of a 64 bit shift cannot be a highest allocated register 1113bdd1243dSDimitry Andric // if also at the end of the allocation block. 1114bdd1243dSDimitry Andric bool hasShift64HighRegBug() const { 1115bdd1243dSDimitry Andric return GFX90AInsts && !GFX940Insts; 1116bdd1243dSDimitry Andric } 1117bdd1243dSDimitry Andric 111881ad6265SDimitry Andric // Has one cycle hazard on transcendental instruction feeding a 111981ad6265SDimitry Andric // non transcendental VALU. 112081ad6265SDimitry Andric bool hasTransForwardingHazard() const { return GFX940Insts; } 112181ad6265SDimitry Andric 112281ad6265SDimitry Andric // Has one cycle hazard on a VALU instruction partially writing dst with 112381ad6265SDimitry Andric // a shift of result bits feeding another VALU instruction. 112481ad6265SDimitry Andric bool hasDstSelForwardingHazard() const { return GFX940Insts; } 112581ad6265SDimitry Andric 112681ad6265SDimitry Andric // Cannot use op_sel with v_dot instructions. 11271db9f3b2SDimitry Andric bool hasDOTOpSelHazard() const { return GFX940Insts || GFX11Insts; } 112881ad6265SDimitry Andric 112981ad6265SDimitry Andric // Does not have HW interlocs for VALU writing and then reading SGPRs. 113081ad6265SDimitry Andric bool hasVDecCoExecHazard() const { 113181ad6265SDimitry Andric return GFX940Insts; 113281ad6265SDimitry Andric } 113381ad6265SDimitry Andric 1134e8d8bef9SDimitry Andric bool hasNSAtoVMEMBug() const { 1135e8d8bef9SDimitry Andric return HasNSAtoVMEMBug; 1136e8d8bef9SDimitry Andric } 1137e8d8bef9SDimitry Andric 1138fe6060f1SDimitry Andric bool hasNSAClauseBug() const { return HasNSAClauseBug; } 1139fe6060f1SDimitry Andric 1140e8d8bef9SDimitry Andric bool hasHardClauses() const { return getGeneration() >= GFX10; } 1141e8d8bef9SDimitry Andric 1142fe6060f1SDimitry Andric bool hasGFX90AInsts() const { return GFX90AInsts; } 1143fe6060f1SDimitry Andric 1144bdd1243dSDimitry Andric bool hasFPAtomicToDenormModeHazard() const { 1145bdd1243dSDimitry Andric return getGeneration() == GFX10; 1146bdd1243dSDimitry Andric } 1147bdd1243dSDimitry Andric 114881ad6265SDimitry Andric bool hasVOP3DPP() const { return getGeneration() >= GFX11; } 114981ad6265SDimitry Andric 115081ad6265SDimitry Andric bool hasLdsDirect() const { return getGeneration() >= GFX11; } 115181ad6265SDimitry Andric 1152297eecfbSDimitry Andric bool hasLdsWaitVMSRC() const { return getGeneration() >= GFX12; } 1153297eecfbSDimitry Andric 115481ad6265SDimitry Andric bool hasVALUPartialForwardingHazard() const { 1155*7a6dacacSDimitry Andric return getGeneration() == GFX11; 115681ad6265SDimitry Andric } 115781ad6265SDimitry Andric 1158bdd1243dSDimitry Andric bool hasVALUTransUseHazard() const { return HasVALUTransUseHazard; } 1159bdd1243dSDimitry Andric 116006c3fb27SDimitry Andric bool hasForceStoreSC0SC1() const { return HasForceStoreSC0SC1; } 116106c3fb27SDimitry Andric 1162*7a6dacacSDimitry Andric bool hasVALUMaskWriteHazard() const { return getGeneration() == GFX11; } 116381ad6265SDimitry Andric 1164fe6060f1SDimitry Andric /// Return if operations acting on VGPR tuples require even alignment. 1165fe6060f1SDimitry Andric bool needsAlignedVGPRs() const { return GFX90AInsts; } 1166fe6060f1SDimitry Andric 116781ad6265SDimitry Andric /// Return true if the target has the S_PACK_HL_B32_B16 instruction. 116881ad6265SDimitry Andric bool hasSPackHL() const { return GFX11Insts; } 116981ad6265SDimitry Andric 117081ad6265SDimitry Andric /// Return true if the target's EXP instruction has the COMPR flag, which 117181ad6265SDimitry Andric /// affects the meaning of the EN (enable) bits. 117281ad6265SDimitry Andric bool hasCompressedExport() const { return !GFX11Insts; } 117381ad6265SDimitry Andric 117481ad6265SDimitry Andric /// Return true if the target's EXP instruction supports the NULL export 117581ad6265SDimitry Andric /// target. 117681ad6265SDimitry Andric bool hasNullExportTarget() const { return !GFX11Insts; } 117781ad6265SDimitry Andric 1178bdd1243dSDimitry Andric bool hasGFX11FullVGPRs() const { return HasGFX11FullVGPRs; } 1179bdd1243dSDimitry Andric 118081ad6265SDimitry Andric bool hasVOPDInsts() const { return HasVOPDInsts; } 118181ad6265SDimitry Andric 118281ad6265SDimitry Andric bool hasFlatScratchSVSSwizzleBug() const { return getGeneration() == GFX11; } 118381ad6265SDimitry Andric 118481ad6265SDimitry Andric /// Return true if the target has the S_DELAY_ALU instruction. 118581ad6265SDimitry Andric bool hasDelayAlu() const { return GFX11Insts; } 118681ad6265SDimitry Andric 1187fe6060f1SDimitry Andric bool hasPackedTID() const { return HasPackedTID; } 1188fe6060f1SDimitry Andric 118981ad6265SDimitry Andric // GFX940 is a derivation to GFX90A. hasGFX940Insts() being true implies that 119081ad6265SDimitry Andric // hasGFX90AInsts is also true. 119181ad6265SDimitry Andric bool hasGFX940Insts() const { return GFX940Insts; } 119281ad6265SDimitry Andric 11935f757f3fSDimitry Andric bool hasSALUFloatInsts() const { return HasSALUFloatInsts; } 11945f757f3fSDimitry Andric 11955f757f3fSDimitry Andric bool hasVGPRSingleUseHintInsts() const { return HasVGPRSingleUseHintInsts; } 11965f757f3fSDimitry Andric 11975f757f3fSDimitry Andric bool hasPseudoScalarTrans() const { return HasPseudoScalarTrans; } 11985f757f3fSDimitry Andric 11995f757f3fSDimitry Andric bool hasRestrictedSOffset() const { return HasRestrictedSOffset; } 12005f757f3fSDimitry Andric 1201*7a6dacacSDimitry Andric /// \returns true if the target uses LOADcnt/SAMPLEcnt/BVHcnt, DScnt/KMcnt 1202*7a6dacacSDimitry Andric /// and STOREcnt rather than VMcnt, LGKMcnt and VScnt respectively. 1203*7a6dacacSDimitry Andric bool hasExtendedWaitCounts() const { return getGeneration() >= GFX12; } 1204*7a6dacacSDimitry Andric 1205e8d8bef9SDimitry Andric /// Return the maximum number of waves per SIMD for kernels using \p SGPRs 1206e8d8bef9SDimitry Andric /// SGPRs 1207e8d8bef9SDimitry Andric unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const; 1208e8d8bef9SDimitry Andric 1209e8d8bef9SDimitry Andric /// Return the maximum number of waves per SIMD for kernels using \p VGPRs 1210e8d8bef9SDimitry Andric /// VGPRs 1211e8d8bef9SDimitry Andric unsigned getOccupancyWithNumVGPRs(unsigned VGPRs) const; 1212e8d8bef9SDimitry Andric 1213e8d8bef9SDimitry Andric /// Return occupancy for the given function. Used LDS and a number of 1214e8d8bef9SDimitry Andric /// registers if provided. 1215e8d8bef9SDimitry Andric /// Note, occupancy can be affected by the scratch allocation as well, but 1216e8d8bef9SDimitry Andric /// we do not have enough information to compute it. 1217e8d8bef9SDimitry Andric unsigned computeOccupancy(const Function &F, unsigned LDSSize = 0, 1218e8d8bef9SDimitry Andric unsigned NumSGPRs = 0, unsigned NumVGPRs = 0) const; 1219e8d8bef9SDimitry Andric 1220e8d8bef9SDimitry Andric /// \returns true if the flat_scratch register should be initialized with the 1221e8d8bef9SDimitry Andric /// pointer to the wave's scratch memory rather than a size and offset. 1222e8d8bef9SDimitry Andric bool flatScratchIsPointer() const { 1223e8d8bef9SDimitry Andric return getGeneration() >= AMDGPUSubtarget::GFX9; 1224e8d8bef9SDimitry Andric } 1225e8d8bef9SDimitry Andric 1226fe6060f1SDimitry Andric /// \returns true if the flat_scratch register is initialized by the HW. 1227fe6060f1SDimitry Andric /// In this case it is readonly. 1228fe6060f1SDimitry Andric bool flatScratchIsArchitected() const { return HasArchitectedFlatScratch; } 1229fe6060f1SDimitry Andric 123006c3fb27SDimitry Andric /// \returns true if the architected SGPRs are enabled. 123106c3fb27SDimitry Andric bool hasArchitectedSGPRs() const { return HasArchitectedSGPRs; } 123206c3fb27SDimitry Andric 12335f757f3fSDimitry Andric /// \returns true if Global Data Share is supported. 12345f757f3fSDimitry Andric bool hasGDS() const { return HasGDS; } 12355f757f3fSDimitry Andric 12365f757f3fSDimitry Andric /// \returns true if Global Wave Sync is supported. 12375f757f3fSDimitry Andric bool hasGWS() const { return HasGWS; } 12385f757f3fSDimitry Andric 1239e8d8bef9SDimitry Andric /// \returns true if the machine has merged shaders in which s0-s7 are 1240e8d8bef9SDimitry Andric /// reserved by the hardware and user SGPRs start at s8 1241e8d8bef9SDimitry Andric bool hasMergedShaders() const { 1242e8d8bef9SDimitry Andric return getGeneration() >= GFX9; 1243e8d8bef9SDimitry Andric } 1244e8d8bef9SDimitry Andric 124581ad6265SDimitry Andric // \returns true if the target supports the pre-NGG legacy geometry path. 124681ad6265SDimitry Andric bool hasLegacyGeometry() const { return getGeneration() < GFX11; } 124781ad6265SDimitry Andric 12485f757f3fSDimitry Andric // \returns true if preloading kernel arguments is supported. 12495f757f3fSDimitry Andric bool hasKernargPreload() const { return KernargPreload; } 12505f757f3fSDimitry Andric 12515f757f3fSDimitry Andric // \returns true if we need to generate backwards compatible code when 12525f757f3fSDimitry Andric // preloading kernel arguments. 12535f757f3fSDimitry Andric bool needsKernargPreloadBackwardsCompatibility() const { 12545f757f3fSDimitry Andric return hasKernargPreload() && !hasGFX940Insts(); 12555f757f3fSDimitry Andric } 12565f757f3fSDimitry Andric 12575f757f3fSDimitry Andric // \returns true if the target has split barriers feature 12585f757f3fSDimitry Andric bool hasSplitBarriers() const { return getGeneration() >= GFX12; } 12595f757f3fSDimitry Andric 12605f757f3fSDimitry Andric // \returns true if FP8/BF8 VOP1 form of conversion to F32 is unreliable. 12615f757f3fSDimitry Andric bool hasCvtFP8VOP1Bug() const { return true; } 12625f757f3fSDimitry Andric 12635f757f3fSDimitry Andric // \returns true if CSUB (a.k.a. SUB_CLAMP on GFX12) atomics support a 12645f757f3fSDimitry Andric // no-return form. 12655f757f3fSDimitry Andric bool hasAtomicCSubNoRtnInsts() const { return HasAtomicCSubNoRtnInsts; } 12665f757f3fSDimitry Andric 12675f757f3fSDimitry Andric // \returns true if the target has DX10_CLAMP kernel descriptor mode bit 12685f757f3fSDimitry Andric bool hasDX10ClampMode() const { return getGeneration() < GFX12; } 12695f757f3fSDimitry Andric 12705f757f3fSDimitry Andric // \returns true if the target has IEEE kernel descriptor mode bit 12715f757f3fSDimitry Andric bool hasIEEEMode() const { return getGeneration() < GFX12; } 12725f757f3fSDimitry Andric 12735f757f3fSDimitry Andric // \returns true if the target has IEEE fminimum/fmaximum instructions 12745f757f3fSDimitry Andric bool hasIEEEMinMax() const { return getGeneration() >= GFX12; } 12755f757f3fSDimitry Andric 12765f757f3fSDimitry Andric // \returns true if the target has WG_RR_MODE kernel descriptor mode bit 12775f757f3fSDimitry Andric bool hasRrWGMode() const { return getGeneration() >= GFX12; } 12785f757f3fSDimitry Andric 1279*7a6dacacSDimitry Andric /// \returns true if VADDR and SADDR fields in VSCRATCH can use negative 1280*7a6dacacSDimitry Andric /// values. 1281*7a6dacacSDimitry Andric bool hasSignedScratchOffsets() const { return getGeneration() >= GFX12; } 1282*7a6dacacSDimitry Andric 1283*7a6dacacSDimitry Andric // \returns true if S_GETPC_B64 zero-extends the result from 48 bits instead 1284*7a6dacacSDimitry Andric // of sign-extending. 1285*7a6dacacSDimitry Andric bool hasGetPCZeroExtension() const { return GFX12Insts; } 1286*7a6dacacSDimitry Andric 1287e8d8bef9SDimitry Andric /// \returns SGPR allocation granularity supported by the subtarget. 1288e8d8bef9SDimitry Andric unsigned getSGPRAllocGranule() const { 1289e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getSGPRAllocGranule(this); 1290e8d8bef9SDimitry Andric } 1291e8d8bef9SDimitry Andric 1292e8d8bef9SDimitry Andric /// \returns SGPR encoding granularity supported by the subtarget. 1293e8d8bef9SDimitry Andric unsigned getSGPREncodingGranule() const { 1294e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getSGPREncodingGranule(this); 1295e8d8bef9SDimitry Andric } 1296e8d8bef9SDimitry Andric 1297e8d8bef9SDimitry Andric /// \returns Total number of SGPRs supported by the subtarget. 1298e8d8bef9SDimitry Andric unsigned getTotalNumSGPRs() const { 1299e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getTotalNumSGPRs(this); 1300e8d8bef9SDimitry Andric } 1301e8d8bef9SDimitry Andric 1302e8d8bef9SDimitry Andric /// \returns Addressable number of SGPRs supported by the subtarget. 1303e8d8bef9SDimitry Andric unsigned getAddressableNumSGPRs() const { 1304e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getAddressableNumSGPRs(this); 1305e8d8bef9SDimitry Andric } 1306e8d8bef9SDimitry Andric 1307e8d8bef9SDimitry Andric /// \returns Minimum number of SGPRs that meets the given number of waves per 1308e8d8bef9SDimitry Andric /// execution unit requirement supported by the subtarget. 1309e8d8bef9SDimitry Andric unsigned getMinNumSGPRs(unsigned WavesPerEU) const { 1310e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMinNumSGPRs(this, WavesPerEU); 1311e8d8bef9SDimitry Andric } 1312e8d8bef9SDimitry Andric 1313e8d8bef9SDimitry Andric /// \returns Maximum number of SGPRs that meets the given number of waves per 1314e8d8bef9SDimitry Andric /// execution unit requirement supported by the subtarget. 1315e8d8bef9SDimitry Andric unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const { 1316e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMaxNumSGPRs(this, WavesPerEU, Addressable); 1317e8d8bef9SDimitry Andric } 1318e8d8bef9SDimitry Andric 1319fe6060f1SDimitry Andric /// \returns Reserved number of SGPRs. This is common 1320fe6060f1SDimitry Andric /// utility function called by MachineFunction and 1321fe6060f1SDimitry Andric /// Function variants of getReservedNumSGPRs. 132204eeddc0SDimitry Andric unsigned getBaseReservedNumSGPRs(const bool HasFlatScratch) const; 1323fe6060f1SDimitry Andric /// \returns Reserved number of SGPRs for given machine function \p MF. 1324e8d8bef9SDimitry Andric unsigned getReservedNumSGPRs(const MachineFunction &MF) const; 1325e8d8bef9SDimitry Andric 1326fe6060f1SDimitry Andric /// \returns Reserved number of SGPRs for given function \p F. 1327fe6060f1SDimitry Andric unsigned getReservedNumSGPRs(const Function &F) const; 1328fe6060f1SDimitry Andric 1329fe6060f1SDimitry Andric /// \returns max num SGPRs. This is the common utility 1330fe6060f1SDimitry Andric /// function called by MachineFunction and Function 1331fe6060f1SDimitry Andric /// variants of getMaxNumSGPRs. 1332fe6060f1SDimitry Andric unsigned getBaseMaxNumSGPRs(const Function &F, 1333fe6060f1SDimitry Andric std::pair<unsigned, unsigned> WavesPerEU, 1334fe6060f1SDimitry Andric unsigned PreloadedSGPRs, 1335fe6060f1SDimitry Andric unsigned ReservedNumSGPRs) const; 1336fe6060f1SDimitry Andric 1337e8d8bef9SDimitry Andric /// \returns Maximum number of SGPRs that meets number of waves per execution 1338e8d8bef9SDimitry Andric /// unit requirement for function \p MF, or number of SGPRs explicitly 1339e8d8bef9SDimitry Andric /// requested using "amdgpu-num-sgpr" attribute attached to function \p MF. 1340e8d8bef9SDimitry Andric /// 1341e8d8bef9SDimitry Andric /// \returns Value that meets number of waves per execution unit requirement 1342e8d8bef9SDimitry Andric /// if explicitly requested value cannot be converted to integer, violates 1343e8d8bef9SDimitry Andric /// subtarget's specifications, or does not meet number of waves per execution 1344e8d8bef9SDimitry Andric /// unit requirement. 1345e8d8bef9SDimitry Andric unsigned getMaxNumSGPRs(const MachineFunction &MF) const; 1346e8d8bef9SDimitry Andric 1347fe6060f1SDimitry Andric /// \returns Maximum number of SGPRs that meets number of waves per execution 1348fe6060f1SDimitry Andric /// unit requirement for function \p F, or number of SGPRs explicitly 1349fe6060f1SDimitry Andric /// requested using "amdgpu-num-sgpr" attribute attached to function \p F. 1350fe6060f1SDimitry Andric /// 1351fe6060f1SDimitry Andric /// \returns Value that meets number of waves per execution unit requirement 1352fe6060f1SDimitry Andric /// if explicitly requested value cannot be converted to integer, violates 1353fe6060f1SDimitry Andric /// subtarget's specifications, or does not meet number of waves per execution 1354fe6060f1SDimitry Andric /// unit requirement. 1355fe6060f1SDimitry Andric unsigned getMaxNumSGPRs(const Function &F) const; 1356fe6060f1SDimitry Andric 1357e8d8bef9SDimitry Andric /// \returns VGPR allocation granularity supported by the subtarget. 1358e8d8bef9SDimitry Andric unsigned getVGPRAllocGranule() const { 1359e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getVGPRAllocGranule(this); 1360e8d8bef9SDimitry Andric } 1361e8d8bef9SDimitry Andric 1362e8d8bef9SDimitry Andric /// \returns VGPR encoding granularity supported by the subtarget. 1363e8d8bef9SDimitry Andric unsigned getVGPREncodingGranule() const { 1364e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getVGPREncodingGranule(this); 1365e8d8bef9SDimitry Andric } 1366e8d8bef9SDimitry Andric 1367e8d8bef9SDimitry Andric /// \returns Total number of VGPRs supported by the subtarget. 1368e8d8bef9SDimitry Andric unsigned getTotalNumVGPRs() const { 1369e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getTotalNumVGPRs(this); 1370e8d8bef9SDimitry Andric } 1371e8d8bef9SDimitry Andric 1372e8d8bef9SDimitry Andric /// \returns Addressable number of VGPRs supported by the subtarget. 1373e8d8bef9SDimitry Andric unsigned getAddressableNumVGPRs() const { 1374e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getAddressableNumVGPRs(this); 1375e8d8bef9SDimitry Andric } 1376e8d8bef9SDimitry Andric 1377bdd1243dSDimitry Andric /// \returns the minimum number of VGPRs that will prevent achieving more than 1378bdd1243dSDimitry Andric /// the specified number of waves \p WavesPerEU. 1379e8d8bef9SDimitry Andric unsigned getMinNumVGPRs(unsigned WavesPerEU) const { 1380e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMinNumVGPRs(this, WavesPerEU); 1381e8d8bef9SDimitry Andric } 1382e8d8bef9SDimitry Andric 1383bdd1243dSDimitry Andric /// \returns the maximum number of VGPRs that can be used and still achieved 1384bdd1243dSDimitry Andric /// at least the specified number of waves \p WavesPerEU. 1385e8d8bef9SDimitry Andric unsigned getMaxNumVGPRs(unsigned WavesPerEU) const { 1386e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMaxNumVGPRs(this, WavesPerEU); 1387e8d8bef9SDimitry Andric } 1388e8d8bef9SDimitry Andric 1389fe6060f1SDimitry Andric /// \returns max num VGPRs. This is the common utility function 1390fe6060f1SDimitry Andric /// called by MachineFunction and Function variants of getMaxNumVGPRs. 1391fe6060f1SDimitry Andric unsigned getBaseMaxNumVGPRs(const Function &F, 1392fe6060f1SDimitry Andric std::pair<unsigned, unsigned> WavesPerEU) const; 1393fe6060f1SDimitry Andric /// \returns Maximum number of VGPRs that meets number of waves per execution 1394fe6060f1SDimitry Andric /// unit requirement for function \p F, or number of VGPRs explicitly 1395fe6060f1SDimitry Andric /// requested using "amdgpu-num-vgpr" attribute attached to function \p F. 1396fe6060f1SDimitry Andric /// 1397fe6060f1SDimitry Andric /// \returns Value that meets number of waves per execution unit requirement 1398fe6060f1SDimitry Andric /// if explicitly requested value cannot be converted to integer, violates 1399fe6060f1SDimitry Andric /// subtarget's specifications, or does not meet number of waves per execution 1400fe6060f1SDimitry Andric /// unit requirement. 1401fe6060f1SDimitry Andric unsigned getMaxNumVGPRs(const Function &F) const; 1402fe6060f1SDimitry Andric 140381ad6265SDimitry Andric unsigned getMaxNumAGPRs(const Function &F) const { 140481ad6265SDimitry Andric return getMaxNumVGPRs(F); 140581ad6265SDimitry Andric } 140681ad6265SDimitry Andric 1407e8d8bef9SDimitry Andric /// \returns Maximum number of VGPRs that meets number of waves per execution 1408e8d8bef9SDimitry Andric /// unit requirement for function \p MF, or number of VGPRs explicitly 1409e8d8bef9SDimitry Andric /// requested using "amdgpu-num-vgpr" attribute attached to function \p MF. 1410e8d8bef9SDimitry Andric /// 1411e8d8bef9SDimitry Andric /// \returns Value that meets number of waves per execution unit requirement 1412e8d8bef9SDimitry Andric /// if explicitly requested value cannot be converted to integer, violates 1413e8d8bef9SDimitry Andric /// subtarget's specifications, or does not meet number of waves per execution 1414e8d8bef9SDimitry Andric /// unit requirement. 1415e8d8bef9SDimitry Andric unsigned getMaxNumVGPRs(const MachineFunction &MF) const; 1416e8d8bef9SDimitry Andric 1417e8d8bef9SDimitry Andric void getPostRAMutations( 1418e8d8bef9SDimitry Andric std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) 1419e8d8bef9SDimitry Andric const override; 1420e8d8bef9SDimitry Andric 1421349cc55cSDimitry Andric std::unique_ptr<ScheduleDAGMutation> 1422349cc55cSDimitry Andric createFillMFMAShadowMutation(const TargetInstrInfo *TII) const; 1423349cc55cSDimitry Andric 1424e8d8bef9SDimitry Andric bool isWave32() const { 1425e8d8bef9SDimitry Andric return getWavefrontSize() == 32; 1426e8d8bef9SDimitry Andric } 1427e8d8bef9SDimitry Andric 1428e8d8bef9SDimitry Andric bool isWave64() const { 1429e8d8bef9SDimitry Andric return getWavefrontSize() == 64; 1430e8d8bef9SDimitry Andric } 1431e8d8bef9SDimitry Andric 1432e8d8bef9SDimitry Andric const TargetRegisterClass *getBoolRC() const { 1433e8d8bef9SDimitry Andric return getRegisterInfo()->getBoolRC(); 1434e8d8bef9SDimitry Andric } 1435e8d8bef9SDimitry Andric 1436e8d8bef9SDimitry Andric /// \returns Maximum number of work groups per compute unit supported by the 1437e8d8bef9SDimitry Andric /// subtarget and limited by given \p FlatWorkGroupSize. 1438e8d8bef9SDimitry Andric unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override { 1439e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(this, FlatWorkGroupSize); 1440e8d8bef9SDimitry Andric } 1441e8d8bef9SDimitry Andric 1442e8d8bef9SDimitry Andric /// \returns Minimum flat work group size supported by the subtarget. 1443e8d8bef9SDimitry Andric unsigned getMinFlatWorkGroupSize() const override { 1444e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMinFlatWorkGroupSize(this); 1445e8d8bef9SDimitry Andric } 1446e8d8bef9SDimitry Andric 1447e8d8bef9SDimitry Andric /// \returns Maximum flat work group size supported by the subtarget. 1448e8d8bef9SDimitry Andric unsigned getMaxFlatWorkGroupSize() const override { 1449e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMaxFlatWorkGroupSize(this); 1450e8d8bef9SDimitry Andric } 1451e8d8bef9SDimitry Andric 1452e8d8bef9SDimitry Andric /// \returns Number of waves per execution unit required to support the given 1453e8d8bef9SDimitry Andric /// \p FlatWorkGroupSize. 1454e8d8bef9SDimitry Andric unsigned 1455e8d8bef9SDimitry Andric getWavesPerEUForWorkGroup(unsigned FlatWorkGroupSize) const override { 1456e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getWavesPerEUForWorkGroup(this, FlatWorkGroupSize); 1457e8d8bef9SDimitry Andric } 1458e8d8bef9SDimitry Andric 1459e8d8bef9SDimitry Andric /// \returns Minimum number of waves per execution unit supported by the 1460e8d8bef9SDimitry Andric /// subtarget. 1461e8d8bef9SDimitry Andric unsigned getMinWavesPerEU() const override { 1462e8d8bef9SDimitry Andric return AMDGPU::IsaInfo::getMinWavesPerEU(this); 1463e8d8bef9SDimitry Andric } 1464e8d8bef9SDimitry Andric 1465e8d8bef9SDimitry Andric void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, 1466e8d8bef9SDimitry Andric SDep &Dep) const override; 146781ad6265SDimitry Andric 146881ad6265SDimitry Andric // \returns true if it's beneficial on this subtarget for the scheduler to 146981ad6265SDimitry Andric // cluster stores as well as loads. 147081ad6265SDimitry Andric bool shouldClusterStores() const { return getGeneration() >= GFX11; } 1471bdd1243dSDimitry Andric 1472bdd1243dSDimitry Andric // \returns the number of address arguments from which to enable MIMG NSA 1473bdd1243dSDimitry Andric // on supported architectures. 1474bdd1243dSDimitry Andric unsigned getNSAThreshold(const MachineFunction &MF) const; 147506c3fb27SDimitry Andric 147606c3fb27SDimitry Andric // \returns true if the subtarget has a hazard requiring an "s_nop 0" 147706c3fb27SDimitry Andric // instruction before "s_sendmsg sendmsg(MSG_DEALLOC_VGPRS)". 147806c3fb27SDimitry Andric bool requiresNopBeforeDeallocVGPRs() const { 147906c3fb27SDimitry Andric // Currently all targets that support the dealloc VGPRs message also require 148006c3fb27SDimitry Andric // the nop. 148106c3fb27SDimitry Andric return true; 148206c3fb27SDimitry Andric } 1483e8d8bef9SDimitry Andric }; 1484e8d8bef9SDimitry Andric 14855f757f3fSDimitry Andric class GCNUserSGPRUsageInfo { 14865f757f3fSDimitry Andric public: 14875f757f3fSDimitry Andric bool hasImplicitBufferPtr() const { return ImplicitBufferPtr; } 14885f757f3fSDimitry Andric 14895f757f3fSDimitry Andric bool hasPrivateSegmentBuffer() const { return PrivateSegmentBuffer; } 14905f757f3fSDimitry Andric 14915f757f3fSDimitry Andric bool hasDispatchPtr() const { return DispatchPtr; } 14925f757f3fSDimitry Andric 14935f757f3fSDimitry Andric bool hasQueuePtr() const { return QueuePtr; } 14945f757f3fSDimitry Andric 14955f757f3fSDimitry Andric bool hasKernargSegmentPtr() const { return KernargSegmentPtr; } 14965f757f3fSDimitry Andric 14975f757f3fSDimitry Andric bool hasDispatchID() const { return DispatchID; } 14985f757f3fSDimitry Andric 14995f757f3fSDimitry Andric bool hasFlatScratchInit() const { return FlatScratchInit; } 15005f757f3fSDimitry Andric 15015f757f3fSDimitry Andric unsigned getNumKernargPreloadSGPRs() const { return NumKernargPreloadSGPRs; } 15025f757f3fSDimitry Andric 15035f757f3fSDimitry Andric unsigned getNumUsedUserSGPRs() const { return NumUsedUserSGPRs; } 15045f757f3fSDimitry Andric 15055f757f3fSDimitry Andric unsigned getNumFreeUserSGPRs(); 15065f757f3fSDimitry Andric 15075f757f3fSDimitry Andric void allocKernargPreloadSGPRs(unsigned NumSGPRs); 15085f757f3fSDimitry Andric 15095f757f3fSDimitry Andric enum UserSGPRID : unsigned { 15105f757f3fSDimitry Andric ImplicitBufferPtrID = 0, 15115f757f3fSDimitry Andric PrivateSegmentBufferID = 1, 15125f757f3fSDimitry Andric DispatchPtrID = 2, 15135f757f3fSDimitry Andric QueuePtrID = 3, 15145f757f3fSDimitry Andric KernargSegmentPtrID = 4, 15155f757f3fSDimitry Andric DispatchIdID = 5, 15165f757f3fSDimitry Andric FlatScratchInitID = 6, 15175f757f3fSDimitry Andric PrivateSegmentSizeID = 7 15185f757f3fSDimitry Andric }; 15195f757f3fSDimitry Andric 15205f757f3fSDimitry Andric // Returns the size in number of SGPRs for preload user SGPR field. 15215f757f3fSDimitry Andric static unsigned getNumUserSGPRForField(UserSGPRID ID) { 15225f757f3fSDimitry Andric switch (ID) { 15235f757f3fSDimitry Andric case ImplicitBufferPtrID: 15245f757f3fSDimitry Andric return 2; 15255f757f3fSDimitry Andric case PrivateSegmentBufferID: 15265f757f3fSDimitry Andric return 4; 15275f757f3fSDimitry Andric case DispatchPtrID: 15285f757f3fSDimitry Andric return 2; 15295f757f3fSDimitry Andric case QueuePtrID: 15305f757f3fSDimitry Andric return 2; 15315f757f3fSDimitry Andric case KernargSegmentPtrID: 15325f757f3fSDimitry Andric return 2; 15335f757f3fSDimitry Andric case DispatchIdID: 15345f757f3fSDimitry Andric return 2; 15355f757f3fSDimitry Andric case FlatScratchInitID: 15365f757f3fSDimitry Andric return 2; 15375f757f3fSDimitry Andric case PrivateSegmentSizeID: 15385f757f3fSDimitry Andric return 1; 15395f757f3fSDimitry Andric } 15405f757f3fSDimitry Andric llvm_unreachable("Unknown UserSGPRID."); 15415f757f3fSDimitry Andric } 15425f757f3fSDimitry Andric 15435f757f3fSDimitry Andric GCNUserSGPRUsageInfo(const Function &F, const GCNSubtarget &ST); 15445f757f3fSDimitry Andric 15455f757f3fSDimitry Andric private: 15465f757f3fSDimitry Andric const GCNSubtarget &ST; 15475f757f3fSDimitry Andric 15485f757f3fSDimitry Andric // Private memory buffer 15495f757f3fSDimitry Andric // Compute directly in sgpr[0:1] 15505f757f3fSDimitry Andric // Other shaders indirect 64-bits at sgpr[0:1] 15515f757f3fSDimitry Andric bool ImplicitBufferPtr = false; 15525f757f3fSDimitry Andric 15535f757f3fSDimitry Andric bool PrivateSegmentBuffer = false; 15545f757f3fSDimitry Andric 15555f757f3fSDimitry Andric bool DispatchPtr = false; 15565f757f3fSDimitry Andric 15575f757f3fSDimitry Andric bool QueuePtr = false; 15585f757f3fSDimitry Andric 15595f757f3fSDimitry Andric bool KernargSegmentPtr = false; 15605f757f3fSDimitry Andric 15615f757f3fSDimitry Andric bool DispatchID = false; 15625f757f3fSDimitry Andric 15635f757f3fSDimitry Andric bool FlatScratchInit = false; 15645f757f3fSDimitry Andric 15655f757f3fSDimitry Andric unsigned NumKernargPreloadSGPRs = 0; 15665f757f3fSDimitry Andric 15675f757f3fSDimitry Andric unsigned NumUsedUserSGPRs = 0; 15685f757f3fSDimitry Andric }; 15695f757f3fSDimitry Andric 1570e8d8bef9SDimitry Andric } // end namespace llvm 1571e8d8bef9SDimitry Andric 1572e8d8bef9SDimitry Andric #endif // LLVM_LIB_TARGET_AMDGPU_GCNSUBTARGET_H 1573