aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-02-08 21:46:11 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-02-08 21:46:11 +0000
commitd08d77318a095c5f85c077899caa3594a7767113 (patch)
tree58a9229ee6376ef96de4c77aec3627907caf52cd
parent8a61da8a689ee95874c833af4c7aa965fab5c0a9 (diff)
Also handle the situation where an indirect branch is the first (and last)
instruction in a basic block. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125116 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index 4713da8a9a..d5d76ca1f8 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -808,16 +808,18 @@ void RAGreedy::splitAroundRegion(LiveInterval &VirtReg, unsigned PhysReg,
DEBUG(dbgs() << ", uses at " << BI.LastUse << " after split point "
<< BI.LastSplitPoint << ", stack-out.\n");
SlotIndex SegEnd;
- if (BI.LastSplitPoint == Start)
+ // Find the last real instruction before the split point.
+ MachineBasicBlock::iterator SplitI =
+ LIS->getInstructionFromIndex(BI.LastSplitPoint);
+ MachineBasicBlock::iterator I = SplitI, B = BI.MBB->begin();
+ while (I != B && (--I)->isDebugValue())
+ ;
+ if (I == SplitI)
SegEnd = SE.leaveIntvAtTop(*BI.MBB);
else {
- MachineBasicBlock::iterator I =
- LIS->getInstructionFromIndex(BI.LastSplitPoint);
- do assert(I != BI.MBB->begin() && "Expected instruction");
- while ((--I)->isDebugValue());
SegEnd = SE.leaveIntvAfter(LIS->getInstructionIndex(I));
+ SE.useIntv(Start, SegEnd);
}
- SE.useIntv(Start, SegEnd);
// Run a double interval from the split to the last use.
// This makes it possible to spill the complement without affecting the
// indirect branch.