[llvm] [llvm] Support multiple save/restore points in mir (PR #119357)
Michael Maitland via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 06:09:01 PDT 2025
================
@@ -37,6 +52,8 @@ class CalleeSavedInfo {
int FrameIdx;
unsigned DstReg;
};
+ std::vector<MachineBasicBlock *> SpilledIn;
----------------
michaelmaitland wrote:
Should we reuse CSInfoPerSave and CSInfoPerRestore instead of duplicating this information to reduce memory footprint? I think those data structures contain MBB that is spilled in and restored in respectively.
https://github.com/llvm/llvm-project/pull/119357
More information about the llvm-commits
mailing list