[llvm] [AArch64] Use spill size when calculating SVE callee saves size (NFC) (PR #123086)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 15 08:58:07 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-aarch64
Author: Benjamin Maxwell (MacDue)
<details>
<summary>Changes</summary>
This is an NFC right now, as currently, all SVE register and spill sizes are the same, but the spill size is the correct size to use here.
---
Full diff: https://github.com/llvm/llvm-project/pull/123086.diff
1 Files Affected:
- (modified) llvm/lib/Target/AArch64/AArch64FrameLowering.cpp (+5-4)
``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp b/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
index 206e410047db56..dd248cf39a5ce9 100644
--- a/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
@@ -3795,14 +3795,15 @@ void AArch64FrameLowering::determineCalleeSaves(MachineFunction &MF,
unsigned CSStackSize = 0;
unsigned SVECSStackSize = 0;
const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
- const MachineRegisterInfo &MRI = MF.getRegInfo();
for (unsigned Reg : SavedRegs.set_bits()) {
- auto RegSize = TRI->getRegSizeInBits(Reg, MRI) / 8;
+ auto *RC = TRI->getMinimalPhysRegClass(Reg);
+ assert(RC && "expected register class!");
+ auto SpillSize = TRI->getSpillSize(*RC);
if (AArch64::PPRRegClass.contains(Reg) ||
AArch64::ZPRRegClass.contains(Reg))
- SVECSStackSize += RegSize;
+ SVECSStackSize += SpillSize;
else
- CSStackSize += RegSize;
+ CSStackSize += SpillSize;
}
// Increase the callee-saved stack size if the function has streaming mode
``````````
</details>
https://github.com/llvm/llvm-project/pull/123086
More information about the llvm-commits
mailing list