[llvm] [AMDGPU] Remove s_delay_alu for VALU->SGPR->SALU (PR #127212)
Ana Mihajlovic via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 07:59:07 PST 2025
================
@@ -254,12 +255,15 @@ class AMDGPUInsertDelayAlu : public MachineFunctionPass {
}
}
- void advanceByNum(DelayType Type, unsigned Cycles, unsigned VALUNum) {
+ void advanceByNum(DelayType Type, unsigned Cycles, unsigned SGPRWriteVALUNum) {
iterator Next;
for (auto I = begin(), E = end(); I != E; I = Next) {
Next = std::next(I);
- if (I->second.VALUNum >= VALUNum && I->second.advance(Type, Cycles))
+ if (I->second.VALUNum >= SGPRWriteVALUNum && I->second.VALUCycles > 0){
----------------
mihajlovicana wrote:
Should I save I->second in a variable before if ?
https://github.com/llvm/llvm-project/pull/127212
More information about the llvm-commits
mailing list