[llvm] [AMDGPU] Insert before and after instructions that always use GDS (PR #131338)

Stephen Thomas via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 04:57:44 PDT 2025


================
@@ -1982,6 +2003,65 @@ static bool isCacheInvOrWBInst(MachineInstr &Inst) {
          Opc == AMDGPU::GLOBAL_WBINV;
 }
 
+// Return true if the next instruction is S_ENDPGM, following fallthrough
+// blocks if necessary.
+bool SIInsertWaitcnts::isNextENDPGM(MachineBasicBlock::instr_iterator It,
+                                    MachineBasicBlock *Block) const {
+  auto E = Block->instr_end();
----------------
stepthomas wrote:

No. I guess we're can be fairly sure S_ENDPGM won't be in a bundle?

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


More information about the llvm-commits mailing list