[llvm] [AMDGPU] Remove s_delay_alu for VALU->SGPR->SALU (PR #127212)

Nicolai Hähnle via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 07:59:10 PDT 2025


================
@@ -362,12 +367,51 @@ class AMDGPUInsertDelayAlu {
             for (MCRegUnit Unit : TRI->regunits(Op.getReg())) {
               auto It = State.find(Unit);
               if (It != State.end()) {
-                Delay.merge(It->second);
-                State.erase(Unit);
+                if (SII->isSALU(MI.getOpcode()) &&
+                    AMDGPU::isSGPR(Op.getReg(), TRI) &&
+                    It->second.VALUCycles > 0) {
+                  deletedCyclesNum = It->second.VALUCycles;
+                  State.erase(Unit);
+                  VALUSALUStall = true;
+                } else {
+                  Delay.merge(It->second);
+                  State.erase(Unit);
+                }
               }
             }
           }
         }
+        unsigned maxCycles = 0;
----------------
nhaehnle wrote:

Add an empty line before this to group the code a bit better.

https://github.com/llvm/llvm-project/pull/127212


More information about the llvm-commits mailing list