[llvm] [AMDGPU] Remove s_delay_alu for VALU->SGPR->SALU (PR #127212)
Ana Mihajlovic via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 09:01:35 PST 2025
================
@@ -377,6 +413,17 @@ class AMDGPUInsertDelayAlu : public MachineFunctionPass {
}
}
}
+
+ if (SII->isVALU(MI.getOpcode())) {
+ for (const auto &Op : MI.defs()) {
+ Register Reg = Op.getReg();
+ if (AMDGPU::isSGPR(Reg, TRI)) {
+ lastSGPRfromVALU = *(TRI->regunits(Reg).begin());
----------------
mihajlovicana wrote:
I tried doing that but this doesn't compile, TRI->regunits(Reg) is a range iterator and doesn't have front, and I can't seem to use [0] either since regunits is not random access
https://github.com/llvm/llvm-project/pull/127212
More information about the llvm-commits
mailing list