[llvm] [MachineScheduler][RISCV] Release the pending queue base on condition (PR #125468)

Pengcheng Wang via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 00:32:53 PST 2025


================
@@ -1190,6 +1190,23 @@ class TargetRegisterInfo : public MCRegisterInfo {
     return false;
   }
 
+  /// Based on the target and current register pressure information from the
+  /// Scheduler, determine whether to release the node in the pending queue
+  virtual bool
+  needReleasePendingQueue(MachineFunction &MF,
+                          ArrayRef<unsigned> MaxSetPressure) const {
+    return false;
+  }
+
+  /// For each SUnit, determine whether to release it
----------------
wangpc-pp wrote:

The format is wrong here.

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


More information about the llvm-commits mailing list