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

Pengcheng Wang via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 02:32:00 PST 2025


================
@@ -954,3 +954,36 @@ bool RISCVRegisterInfo::getRegAllocationHints(
 
   return BaseImplRetVal;
 }
+
+bool RISCVRegisterInfo::needReleasePendingQueue(
+    MachineFunction &MF, ArrayRef<unsigned> MaxSetPressure) const {
+  for (unsigned Idx = 0; Idx < MaxSetPressure.size(); Idx++) {
+    // Consider only the RVV Register, as RVV spilling/reloading has higher
+    // potential costs than hazards.
+    if (!StringRef(getRegPressureSetName(Idx)).starts_with("VM") &&
+        !StringRef(getRegPressureSetName(Idx)).starts_with("VRM8NoV0"))
----------------
wangpc-pp wrote:

Yes, I meant the Idx version. If the sets change, we can at least be aware of that via some compile errors.

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


More information about the llvm-commits mailing list