[llvm] [InlineSpiller] Check rematerialization before folding operand (PR #134015)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 1 21:04:05 PDT 2025
================
@@ -615,6 +620,23 @@ bool InlineSpiller::canGuaranteeAssignmentAfterRemat(Register VReg,
return true;
}
+/// hasPhysRegAvailable - Check if there is an available physical register for
+/// rematerialization.
+bool InlineSpiller::hasPhysRegAvailable(const MachineInstr &MI) {
+ if (!Order || !Matrix)
+ return false;
----------------
arsenm wrote:
Should not be optional
https://github.com/llvm/llvm-project/pull/134015
More information about the llvm-commits
mailing list