[llvm] [AMDGPU] Treat XDL ops as TRANS on gfx12 (PR #130692)
Changpeng Fang via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 18:06:45 PDT 2025
================
@@ -10262,6 +10262,8 @@ bool SIInstrInfo::isGlobalMemoryObject(const MachineInstr *MI) const {
bool SIInstrInfo::isXDL(const MachineInstr &MI) const {
unsigned Opcode = MI.getOpcode();
+ if (AMDGPU::isGFX12(ST))
----------------
changpeng wrote:
As you may have already known, a WMMA does not necessarily be a XDL for downstream branches.
Is AMDGPU::isGFX12(ST) the same as AMDGPU::isGFX12Plus(ST)? So we need to be careful for downstream.
https://github.com/llvm/llvm-project/pull/130692
More information about the llvm-commits
mailing list