[llvm] Xtensa] Implement windowed call ABI. (PR #130001)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 02:31:15 PDT 2025


================
@@ -1385,6 +1389,16 @@ MachineBasicBlock *XtensaTargetLowering::EmitInstrWithCustomInserter(
     }
     return MBB;
   }
+  case Xtensa::MOVSP_P: {
+    MachineOperand SP = MI.getOperand(0);
+    MachineOperand NewSP = MI.getOperand(1);
+
+    BuildMI(*MBB, MI, DL, TII.get(Xtensa::MOVSP), SP.getReg())
----------------
arsenm wrote:

Could this just have used the call frame pseudos to start 

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


More information about the llvm-commits mailing list