[llvm] Xtensa] Implement windowed call ABI. (PR #130001)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 00:33:40 PST 2025
================
@@ -51,6 +58,83 @@ void XtensaFrameLowering::emitPrologue(MachineFunction &MF,
// Round up StackSize to 16*N
StackSize += (16 - StackSize) & 0xf;
+ if (STI.isWinABI()) {
+ StackSize += 32;
+ uint64_t MaxAlignment = MFI.getMaxAlign().value();
+ if(MaxAlignment > 32)
+ StackSize += MaxAlignment;
+
+ if (StackSize <= 32760) {
+ BuildMI(MBB, MBBI, DL, TII.get(Xtensa::ENTRY))
+ .addReg(SP)
+ .addImm(StackSize);
+ } else {
+ /* Use a8 as a temporary since a0-a7 may be live. */
+ unsigned TmpReg = Xtensa::A8;
+
+ const XtensaInstrInfo &TII = *static_cast<const XtensaInstrInfo *>(
+ MBB.getParent()->getSubtarget().getInstrInfo());
----------------
arsenm wrote:
Use the STI member you added instead of finding it from the parent function
https://github.com/llvm/llvm-project/pull/130001
More information about the llvm-commits
mailing list