[llvm] Rebased save csr in ra (PR #131845)
Michael Maitland via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 10:26:54 PDT 2025
================
@@ -786,6 +788,153 @@ void RISCVFrameLowering::allocateStack(MachineBasicBlock &MBB,
}
}
+struct CFIBuildInfo {
+ MachineBasicBlock *MBB;
+ MachineInstr *InsertAfterMI; // nullptr means insert at MBB.begin()
+ DebugLoc DL;
+ unsigned CFIIndex;
+};
+
+static void trackRegisterAndEmitCFIs(
----------------
michaelmaitland wrote:
Can you help me understand what this function is doing. Why is it needed? How does it work?
https://github.com/llvm/llvm-project/pull/131845
More information about the llvm-commits
mailing list