[llvm] [AMDGPU][True16][CodeGen] update waitcnt for true16 (PR #128927)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 02:05:01 PST 2025
================
@@ -748,27 +748,33 @@ RegInterval WaitcntBrackets::getRegInterval(const MachineInstr *MI,
RegInterval Result;
- unsigned Reg = TRI->getEncodingValue(AMDGPU::getMCReg(Op.getReg(), *ST)) &
- AMDGPU::HWEncoding::REG_IDX_MASK;
+ MCRegister MCReg = AMDGPU::getMCReg(Op.getReg(), *ST);
+ unsigned RegIdx = TRI->getHWRegIndex(MCReg);
+ assert(isUInt<8>(RegIdx));
+ unsigned Reg = (RegIdx << 1) | (AMDGPU::isHi16Reg(MCReg, *TRI) ? 1 : 0);
----------------
jayfoad wrote:
Move this into the isVectorRegister case. It's silly to do it here and then undo it again in the SGPR case.
https://github.com/llvm/llvm-project/pull/128927
More information about the llvm-commits
mailing list