[llvm] [AMDGPU] Make S_WAIT_EVENT a scheduling boundary (PR #129032)

Austin Kerbow via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 20:31:27 PDT 2025


================
@@ -4214,6 +4214,13 @@ bool SIInstrInfo::isSchedulingBoundary(const MachineInstr &MI,
   if (MI.getOpcode() == AMDGPU::SCHED_BARRIER && MI.getOperand(0).getImm() == 0)
     return true;
 
+  // The scheduler does not understand what kind of external events this
+  // instruction waits for, so cannot do a good job of scheduling it. Making it
+  // a boundary allows front ends to insert it at an appropriate place without
----------------
kerbowa wrote:

Frontends could achieve the same thing with `sched_barrier(0)`, but having any kind of scheduling barrier would prevent independent non-sideeffect having instructions from being scheduled before the `s_wait_event` so it will not be as late as possible.

You could add a custom heuristic in tryCand, or there is probably some trick with the SchedModel if you make it occupy a resource for x cycles, but if what you have works well enough then LGTM.

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


More information about the llvm-commits mailing list