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

Nicolai Hähnle via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 10:37:25 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());
----------------
nhaehnle wrote:

Clearly there are many ways to do this :)

Quite frankly, I think it's fine as is. Though the parenthesis are redundant, and it's more common in LLVM style to avoid redundant parenthesis.

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


More information about the llvm-commits mailing list