[llvm] [MachineScheduler][RISCV] Release the pending queue base on condition (PR #125468)
Jianjian Guan via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 01:10:50 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++) {
----------------
jacquesguan wrote:
Early exit when we don't have any vector extensions?
https://github.com/llvm/llvm-project/pull/125468
More information about the llvm-commits
mailing list