[clang] [llvm] [RISCV] SiFive CLIC Support (PR #132481)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 16:48:41 PDT 2025
================
@@ -1502,6 +1659,9 @@ void RISCVFrameLowering::determineCalleeSaves(MachineFunction &MF,
auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>();
if (RVFI->isPushable(MF) && SavedRegs.test(RISCV::X26))
SavedRegs.set(RISCV::X27);
+
+ // SiFive Preemptible Interrupt Handlers need additional frame entries
+ createSiFivePreemptibleInterruptFrameEntries(MF, *RVFI);
----------------
topperc wrote:
Should this be called from `assignCalleeSavedSpillSlots` rather than `determineCalleeSaves`. `assignCalleeSavedSpillSlots` is where other stack slot objects are created.
https://github.com/llvm/llvm-project/pull/132481
More information about the llvm-commits
mailing list