[PATCH] D95151: AMDGPU: Add assertion to determineCalleeSaves
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 21 10:24:06 PST 2021
arsenm created this revision.
arsenm added reviewers: rampitec, scott.linder, kerbowa, RamNalamothu.
Herald added subscribers: hiraditya, t-tye, tpr, dstuttard, yaxunl, nhaehnle, jvesely, kzhuravl.
arsenm requested review of this revision.
Herald added a subscriber: wdng.
Herald added a project: LLVM.
Make sure this isn't getting called multiple times. I was surprised we
were modifying the function here, which I think is a bit questionable.
https://reviews.llvm.org/D95151
Files:
llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
Index: llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
+++ llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
@@ -1303,6 +1303,8 @@
LiveRegs.init(*TRI);
if (WillHaveFP || hasFP(MF)) {
+ assert(!MFI->SGPRForFPSaveRestoreCopy && !MFI->FramePointerSaveIndex &&
+ "Re-reserving spill slot for FP");
getVGPRSpillLaneOrTempRegister(MF, LiveRegs, MFI->SGPRForFPSaveRestoreCopy,
MFI->FramePointerSaveIndex, true);
}
@@ -1310,6 +1312,9 @@
if (TRI->hasBasePointer(MF)) {
if (MFI->SGPRForFPSaveRestoreCopy)
LiveRegs.addReg(MFI->SGPRForFPSaveRestoreCopy);
+
+ assert(!MFI->SGPRForBPSaveRestoreCopy &&
+ !MFI->BasePointerSaveIndex && "Re-reserving spill slot for BP");
getVGPRSpillLaneOrTempRegister(MF, LiveRegs, MFI->SGPRForBPSaveRestoreCopy,
MFI->BasePointerSaveIndex, false);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95151.318252.patch
Type: text/x-patch
Size: 1008 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210121/7aeeeee3/attachment.bin>
More information about the llvm-commits
mailing list