[llvm] [AMDGPU] Merge consecutive wait_alu instruction (PR #128916)

Ana Mihajlovic via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 04:03:50 PST 2025


================
@@ -362,6 +397,26 @@ class AMDGPUWaitSGPRHazards {
           Mask = AMDGPU::DepCtr::encodeFieldVaSdst(Mask, 0);
         }
         if (Emit) {
+          MachineInstr *PrevWaitAlu = nullptr;
+          if (MI != MI->getParent()->begin()) {
+            PrevWaitAlu = getPreviousWaitAlu(MI);
+          } else {
+            auto Preds = MBB.predecessors();
+            if (MBB.pred_size() == 1) {
----------------
mihajlovicana wrote:

I think it is but I still ended up including it just in case.

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


More information about the llvm-commits mailing list