[llvm] [shrinkwrap] PowerPC's FP register should be honored when processing the save point for prologue. (PR #129855)
Tony Varghese via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 12:54:00 PDT 2025
================
@@ -348,10 +348,14 @@ bool ShrinkWrap::useOrDefCSROrFI(const MachineInstr &MI, RegScavenger *RS,
// calling convention definitions, so we need to watch for it, too. An LR
// mentioned implicitly by a return (or "branch to link register")
// instruction we can ignore, otherwise we may pessimize shrinkwrapping.
- UseOrDefCSR =
- (!MI.isCall() && PhysReg == SP) ||
- RCI.getLastCalleeSavedAlias(PhysReg) ||
- (!MI.isReturn() && TRI->isNonallocatableRegisterCalleeSave(PhysReg));
+ // PPC's Frame pointer (FP) is also not described as a callee-saved
+ // register. Until the FP is assigned a Physical Register PPC's FP needs
+ // to be checked separately.
+ UseOrDefCSR = (!MI.isCall() && PhysReg == SP) ||
+ RCI.getLastCalleeSavedAlias(PhysReg) ||
+ (!MI.isReturn() &&
+ TRI->isNonallocatableRegisterCalleeSave(PhysReg)) ||
+ (!MI.isReturn() && TRI->isVirtualFrameRegister(PhysReg));
----------------
tonykuttai wrote:
done
https://github.com/llvm/llvm-project/pull/129855
More information about the llvm-commits
mailing list