[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
================
@@ -27,6 +27,21 @@ class MachineBasicBlock;
class BitVector;
class AllocaInst;
+using SaveRestorePoints = DenseMap<MachineBasicBlock *, std::vector<Register>>;
+
+class CalleeSavedInfoPerBB {
----------------
michaelmaitland wrote:
This class is almost the same as SaveRestorePoints with some extra helper functions? Maybe we could combine the two?
https://github.com/llvm/llvm-project/pull/119357
More information about the llvm-commits
mailing list