19#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
25 if (
TII.isVALU(Inst,
false)) {
31 return HWEvents::VGPR_XDL_READ | HWEvents::VGPR_XDL_WRITE;
33 if (
TII.isTRANS(Inst))
34 return HWEvents::VGPR_TRANS_READ | HWEvents::VGPR_TRANS_WRITE;
37 return HWEvents::VGPR_DPMACC_READ | HWEvents::VGPR_DPMACC_WRITE;
39 return HWEvents::VGPR_CSMACC_READ | HWEvents::VGPR_CSMACC_WRITE;
47 return HWEvents::VGPR_FLAT_READ;
50 return HWEvents::VGPR_LDS_READ;
52 if (
TII.isVMEM(Inst) ||
TII.isVIMAGE(Inst) ||
TII.isVSAMPLE(Inst))
53 return HWEvents::VGPR_VMEM_READ;
56 return HWEvents::NONE;
63 case AMDGPU::GLOBAL_INV:
64 case AMDGPU::BUFFER_INV:
65 return HWEvents::VMEM_INV_ACCESS;
67 case AMDGPU::GLOBAL_WB:
68 case AMDGPU::GLOBAL_WBINV:
69 return HWEvents::VMEM_WRITE_ACCESS;
78 return HWEvents::VMEM_READ_ACCESS;
82 if (
TII.mayAccessScratch(Inst))
83 return HWEvents::SCRATCH_WRITE_ACCESS;
84 return HWEvents::VMEM_WRITE_ACCESS;
88 return HWEvents::VMEM_READ_ACCESS;
96 return HWEvents::VMEM_BVH_READ_ACCESS;
102 return HWEvents::VMEM_SAMPLER_READ_ACCESS;
105 return HWEvents::VMEM_READ_ACCESS;
111 if (
TII.isDS(Inst) &&
TII.usesLGKM_CNT(Inst)) {
113 TII.hasModifiersSet(Inst, AMDGPU::OpName::gds))
114 return HWEvents::GDS_ACCESS | HWEvents::GDS_GPR_LOCK;
116 return HWEvents::LDS_ACCESS;
119 if (
TII.isFLAT(Inst)) {
125 if (
TII.mayAccessVMEMThroughFlat(Inst)) {
126 if (ST.hasWaitXcnt())
127 E |= HWEvents::VMEM_GROUP;
131 if (
TII.mayAccessLDSThroughFlat(Inst, TgSplit))
132 E |= HWEvents::LDS_ACCESS;
135 E |= HWEvents::ASYNC_ACCESS;
141 return HWEvents::TENSOR_ACCESS;
145 Inst.
getOpcode() == AMDGPU::BUFFER_INV ||
146 Inst.
getOpcode() == AMDGPU::BUFFER_WBL2)) {
150 if (ST.hasWaitXcnt())
151 E |= HWEvents::VMEM_GROUP;
152 if (ST.vmemWriteNeedsExpWaitcnt() &&
154 E |= HWEvents::VMW_GPR_LOCK;
159 if (
TII.isSMRD(Inst)) {
160 if (ST.hasWaitXcnt())
161 return HWEvents::SMEM_GROUP | HWEvents::SMEM_ACCESS;
162 return HWEvents::SMEM_ACCESS;
166 return HWEvents::EXP_LDS_ACCESS;
170 unsigned Imm =
TII.getNamedOperand(Inst, AMDGPU::OpName::tgt)->getImm();
172 return HWEvents::EXP_PARAM_ACCESS;
174 return HWEvents::EXP_POS_ACCESS;
175 return HWEvents::EXP_GPR_LOCK;
179 return HWEvents::SCC_WRITE;
183 case AMDGPU::S_SENDMSG:
184 case AMDGPU::S_SENDMSG_RTN_B32:
185 case AMDGPU::S_SENDMSG_RTN_B64:
186 case AMDGPU::S_SENDMSGHALT:
187 return HWEvents::SQ_MESSAGE;
188 case AMDGPU::S_MEMTIME:
189 case AMDGPU::S_MEMREALTIME:
190 case AMDGPU::S_GET_BARRIER_STATE_M0:
191 case AMDGPU::S_GET_BARRIER_STATE_IMM:
192 return HWEvents::SMEM_ACCESS;
195 return HWEvents::NONE;
199 bool IsExpertMode,
bool TgSplit) {
211#define AMDGPU_HW_EVENT(E, V) \
212 if (Events & AMDGPU::HWEvents::E) \
213 OS << LS << #E << " ";
214#include "AMDGPUHWEvents.def"
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
AMD GCN specific subclass of TargetSubtarget.
const HexagonInstrInfo * TII
Interface definition for SIInstrInfo.
Bit mask of hardware events.
A helper class to return the specified delimiter string after the first invocation of operator String...
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
bool mayLoadOrStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read or modify memory.
bool mayLoad(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read memory.
bool mayStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly modify memory.
static bool isVMEM(const MachineInstr &MI)
static bool isEXP(const MachineInstr &MI)
static bool mayWriteLDSThroughDMA(const MachineInstr &MI)
static bool usesTENSOR_CNT(const MachineInstr &MI)
static bool isLDSDIR(const MachineInstr &MI)
static bool isVSAMPLE(const MachineInstr &MI)
static bool isAtomicRet(const MachineInstr &MI)
static bool isImage(const MachineInstr &MI)
static bool isGFX12CacheInvOrWBInst(unsigned Opc)
static bool isSBarrierSCCWrite(unsigned Opcode)
static bool usesASYNC_CNT(const MachineInstr &MI)
static bool isFLAT(const MachineInstr &MI)
static bool isAtomicNoRet(const MachineInstr &MI)
This class implements an extremely fast bulk output stream that can only output to a stream.
LLVM_READONLY const MIMGInfo * getMIMGInfo(unsigned Opc)
bool isDPMACCInstruction(unsigned Opc)
static HWEvents getExpertSchedulingEventType(const MachineInstr &Inst, const SIInstrInfo &TII)
HWEvents getSimplifiedVMEMEventsFor(const MachineInstr &Inst, const SIInstrInfo &TII)
HWEvents getEventsFor(const MachineInstr &Inst, const GCNSubtarget &ST, bool IsExpertMode, bool TgSplit)
bool getMUBUFIsBufferInv(unsigned Opc)
LLVM_READONLY const MIMGBaseOpcodeInfo * getMIMGBaseOpcodeInfo(unsigned BaseOpcode)
static HWEvents getEventsForImpl(const MachineInstr &Inst, const GCNSubtarget &ST, const SIInstrInfo &TII, bool TgSplit)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)