[llvm] [RISCV][RegAlloc] Add getCSRFirstUseCost for RISC-V (PR #131349)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 08:35:01 PDT 2025


================
@@ -2375,10 +2375,12 @@ void RAGreedy::aboutToRemoveInterval(const LiveInterval &LI) {
 }
 
 void RAGreedy::initializeCSRCost() {
-  // We use the larger one out of the command-line option and the value report
-  // by TRI.
+  // We use the command-line option if it is explicitly set, otherwise use the
+  // larger one out of the command-line option and the value reported by TRI.
   CSRCost = BlockFrequency(
-      std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
+      CSRFirstTimeCost.getNumOccurrences()
+          ? CSRFirstTimeCost
+          : std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
----------------
topperc wrote:

I guess, but I'm not sure why the default of the `CSRFirstTimeCost` would be changed instead of the base class implementation of `TargetRegisterInfo::getCSRFirstUseCost()`.

We can take the code how you have it.

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


More information about the llvm-commits mailing list