[llvm] [AMDGPU] Merge consecutive wait_alu instruction (PR #128916)
Ana Mihajlovic via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 04:41:24 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:
@nhaehnle I am also not sure about this one
https://github.com/llvm/llvm-project/pull/128916
More information about the llvm-commits
mailing list