summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-10-05 23:10:04 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-10-05 23:10:04 +0000
commitd00f7e0c76d997b6b685ea66ba78aba2b952cd92 (patch)
treeb33babe90d1f8c544b4e2a442722d1107672eb7d /lib
parent6dbbff9172a25de867a6c0c5ec5f6fa26850a145 (diff)
dupli always has an interval now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SplitKit.cpp25
1 files changed, 11 insertions, 14 deletions
diff --git a/lib/CodeGen/SplitKit.cpp b/lib/CodeGen/SplitKit.cpp
index 1864e378132..b1ce209d456 100644
--- a/lib/CodeGen/SplitKit.cpp
+++ b/lib/CodeGen/SplitKit.cpp
@@ -798,6 +798,7 @@ SplitEditor::addTruncSimpleRange(SlotIndex Start, SlotIndex End, VNInfo *VNI) {
/// instructions using curli to use the new intervals.
void SplitEditor::rewrite() {
assert(!openli_.getLI() && "Previous LI not closed before rewrite");
+ assert(dupli_.getLI() && "No dupli for rewrite. Noop spilt?");
// First we need to fill in the live ranges in dupli.
// If values were redefined, we need a full recoloring with SSA update.
@@ -863,23 +864,19 @@ void SplitEditor::rewrite() {
break;
}
}
- if (LI) {
- MO.setReg(LI->reg);
- sa_.removeUse(MI);
- DEBUG(dbgs() << " rewrite " << Idx << '\t' << *MI);
- }
+ MO.setReg(LI->reg);
+ sa_.removeUse(MI);
+ DEBUG(dbgs() << " rewrite " << Idx << '\t' << *MI);
}
// dupli_ goes in last, after rewriting.
- if (dupli_.getLI()) {
- if (dupli_.getLI()->empty()) {
- DEBUG(dbgs() << " dupli became empty?\n");
- lis_.removeInterval(dupli_.getLI()->reg);
- dupli_.reset(0);
- } else {
- dupli_.getLI()->RenumberValues(lis_);
- intervals_.push_back(dupli_.getLI());
- }
+ if (dupli_.getLI()->empty()) {
+ DEBUG(dbgs() << " dupli became empty?\n");
+ lis_.removeInterval(dupli_.getLI()->reg);
+ dupli_.reset(0);
+ } else {
+ dupli_.getLI()->RenumberValues(lis_);
+ intervals_.push_back(dupli_.getLI());
}
// Calculate spill weight and allocation hints for new intervals.