mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Add an assertion that the frame index is indeed inside the declared lifetime region.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9a2ae00c85
commit
0aa52ee04e
@ -454,6 +454,11 @@ void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) {
|
||||
for (BB = MF->begin(), BBE = MF->end(); BB != BBE; ++BB)
|
||||
for (I = BB->begin(), IE = BB->end(); I != IE; ++I) {
|
||||
|
||||
// Skip lifetime markers. We'll remove them soon.
|
||||
if (I->getOpcode() == TargetOpcode::LIFETIME_START ||
|
||||
I->getOpcode() == TargetOpcode::LIFETIME_END)
|
||||
continue;
|
||||
|
||||
// Update the MachineMemOperand to use the new alloca.
|
||||
for (MachineInstr::mmo_iterator MM = I->memoperands_begin(),
|
||||
E = I->memoperands_end(); MM != E; ++MM) {
|
||||
@ -491,6 +496,17 @@ void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) {
|
||||
if (!SlotRemap.count(FromSlot))
|
||||
continue;
|
||||
|
||||
// In a debug build, check that the instruction that we are check is
|
||||
// inside its expected live range. If the instruction is not inside
|
||||
// the calculated range then it means that the alloca usage moved
|
||||
// outside of the lifetime markers.
|
||||
#ifndef NDEBUG
|
||||
SlotIndex Index = Indexes->getInstructionIndex(I);
|
||||
LiveInterval* Interval = Intervals[FromSlot];
|
||||
assert(Interval->find(Index) != Interval->end() &&
|
||||
"Found instruction usage outside of live range.");
|
||||
#endif
|
||||
|
||||
// Fix the machine instructions.
|
||||
int ToSlot = SlotRemap[FromSlot];
|
||||
MO.setIndex(ToSlot);
|
||||
|
Loading…
Reference in New Issue
Block a user