blob: 025ad0538f2c9fa8799a9ecd3241884da715bfbb [file] [log] [blame]
Chris Lattnerfb449b92004-07-23 17:49:16 +00001//===-- LiveInterval.cpp - Live Interval Representation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerfb449b92004-07-23 17:49:16 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LiveRange and LiveInterval classes. Given some
11// numbering of each the machine instructions an interval [i, j) is said to be a
12// live interval for register v if there is no instruction with number j' > j
Bob Wilson86af6552010-01-12 22:18:56 +000013// such that v is live at j' and there is no instruction with number i' < i such
Chris Lattnerfb449b92004-07-23 17:49:16 +000014// that v is live at i'. In this implementation intervals can have holes,
15// i.e. an interval might look like [1,20), [50,65), [1000,1001). Each
16// individual range is represented as an instance of LiveRange, and the whole
17// interval is represented as an instance of LiveInterval.
18//
19//===----------------------------------------------------------------------===//
20
Bill Wendlingd9fd2ac2006-11-28 02:08:17 +000021#include "llvm/CodeGen/LiveInterval.h"
Lang Hames233a60e2009-11-03 23:52:08 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Evan Cheng90f95f82009-06-14 20:22:55 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng0adb5272009-04-25 09:25:19 +000024#include "llvm/ADT/DenseMap.h"
Evan Cheng3c1f4a42007-10-17 02:13:29 +000025#include "llvm/ADT/SmallSet.h"
Bill Wendling38b0e7b2006-11-28 03:31:29 +000026#include "llvm/ADT/STLExtras.h"
David Greene52421542010-01-04 22:41:43 +000027#include "llvm/Support/Debug.h"
Daniel Dunbara717b7b2009-07-24 10:47:20 +000028#include "llvm/Support/raw_ostream.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000029#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosc4d3b912004-09-28 02:38:58 +000030#include <algorithm>
Chris Lattnerfb449b92004-07-23 17:49:16 +000031using namespace llvm;
32
33// An example for liveAt():
34//
Chris Lattneraa141472004-07-23 18:40:00 +000035// this = [1,4), liveAt(0) will return false. The instruction defining this
36// spans slots [0,3]. The interval belongs to an spilled definition of the
37// variable it represents. This is because slot 1 is used (def slot) and spans
38// up to slot 3 (store slot).
Chris Lattnerfb449b92004-07-23 17:49:16 +000039//
Lang Hames233a60e2009-11-03 23:52:08 +000040bool LiveInterval::liveAt(SlotIndex I) const {
Chris Lattnerebd7e6c2004-07-23 18:13:24 +000041 Ranges::const_iterator r = std::upper_bound(ranges.begin(), ranges.end(), I);
Misha Brukmanedf128a2005-04-21 22:36:52 +000042
Chris Lattnerfb449b92004-07-23 17:49:16 +000043 if (r == ranges.begin())
44 return false;
45
46 --r;
Chris Lattneraa141472004-07-23 18:40:00 +000047 return r->contains(I);
Chris Lattnerfb449b92004-07-23 17:49:16 +000048}
49
Evan Chengc8d044e2008-02-15 18:24:29 +000050// liveBeforeAndAt - Check if the interval is live at the index and the index
51// just before it. If index is liveAt, check if it starts a new live range.
52// If it does, then check if the previous live range ends at index-1.
Lang Hames233a60e2009-11-03 23:52:08 +000053bool LiveInterval::liveBeforeAndAt(SlotIndex I) const {
Evan Chengc8d044e2008-02-15 18:24:29 +000054 Ranges::const_iterator r = std::upper_bound(ranges.begin(), ranges.end(), I);
55
56 if (r == ranges.begin())
57 return false;
58
59 --r;
60 if (!r->contains(I))
61 return false;
62 if (I != r->start)
63 return true;
64 // I is the start of a live range. Check if the previous live range ends
65 // at I-1.
66 if (r == ranges.begin())
67 return false;
68 return r->end == I;
69}
70
Chris Lattnerbae74d92004-11-18 03:47:34 +000071// overlaps - Return true if the intersection of the two live intervals is
72// not empty.
73//
Chris Lattnerfb449b92004-07-23 17:49:16 +000074// An example for overlaps():
75//
76// 0: A = ...
77// 4: B = ...
78// 8: C = A + B ;; last use of A
79//
80// The live intervals should look like:
81//
82// A = [3, 11)
83// B = [7, x)
84// C = [11, y)
85//
86// A->overlaps(C) should return false since we want to be able to join
87// A and C.
Chris Lattnerbae74d92004-11-18 03:47:34 +000088//
89bool LiveInterval::overlapsFrom(const LiveInterval& other,
90 const_iterator StartPos) const {
91 const_iterator i = begin();
92 const_iterator ie = end();
93 const_iterator j = StartPos;
94 const_iterator je = other.end();
95
96 assert((StartPos->start <= i->start || StartPos == other.begin()) &&
Chris Lattner8c68b6a2004-11-18 04:02:11 +000097 StartPos != other.end() && "Bogus start position hint!");
Chris Lattnerf5426492004-07-25 07:11:19 +000098
Chris Lattnerfb449b92004-07-23 17:49:16 +000099 if (i->start < j->start) {
Chris Lattneraa141472004-07-23 18:40:00 +0000100 i = std::upper_bound(i, ie, j->start);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000101 if (i != ranges.begin()) --i;
Chris Lattneraa141472004-07-23 18:40:00 +0000102 } else if (j->start < i->start) {
Chris Lattneread1b3f2004-12-04 01:22:09 +0000103 ++StartPos;
104 if (StartPos != other.end() && StartPos->start <= i->start) {
105 assert(StartPos < other.end() && i < end());
Chris Lattner8c68b6a2004-11-18 04:02:11 +0000106 j = std::upper_bound(j, je, i->start);
107 if (j != other.ranges.begin()) --j;
108 }
Chris Lattneraa141472004-07-23 18:40:00 +0000109 } else {
110 return true;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000111 }
112
Chris Lattner9fddc122004-11-18 05:28:21 +0000113 if (j == je) return false;
114
115 while (i != ie) {
Chris Lattnerfb449b92004-07-23 17:49:16 +0000116 if (i->start > j->start) {
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000117 std::swap(i, j);
118 std::swap(ie, je);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000119 }
Chris Lattnerfb449b92004-07-23 17:49:16 +0000120
121 if (i->end > j->start)
122 return true;
123 ++i;
124 }
125
126 return false;
127}
128
Evan Chengcccdb2b2009-04-18 08:52:15 +0000129/// overlaps - Return true if the live interval overlaps a range specified
130/// by [Start, End).
Lang Hames233a60e2009-11-03 23:52:08 +0000131bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const {
Evan Chengcccdb2b2009-04-18 08:52:15 +0000132 assert(Start < End && "Invalid range");
133 const_iterator I = begin();
134 const_iterator E = end();
135 const_iterator si = std::upper_bound(I, E, Start);
136 const_iterator ei = std::upper_bound(I, E, End);
137 if (si != ei)
138 return true;
139 if (si == I)
140 return false;
141 --si;
142 return si->contains(Start);
143}
144
Chris Lattnerb26c2152004-07-23 19:38:44 +0000145/// extendIntervalEndTo - This method is used when we want to extend the range
146/// specified by I to end at the specified endpoint. To do this, we should
147/// merge and eliminate all ranges that this will overlap with. The iterator is
148/// not invalidated.
Lang Hames233a60e2009-11-03 23:52:08 +0000149void LiveInterval::extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000150 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000151 VNInfo *ValNo = I->valno;
Lang Hames233a60e2009-11-03 23:52:08 +0000152 SlotIndex OldEnd = I->end;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000153
Chris Lattnerb26c2152004-07-23 19:38:44 +0000154 // Search for the first interval that we can't merge with.
155 Ranges::iterator MergeTo = next(I);
Chris Lattnerabf295f2004-07-24 02:52:23 +0000156 for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000157 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000158 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000159
160 // If NewEnd was in the middle of an interval, make sure to get its endpoint.
161 I->end = std::max(NewEnd, prior(MergeTo)->end);
162
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000163 // Erase any dead ranges.
Chris Lattnerb26c2152004-07-23 19:38:44 +0000164 ranges.erase(next(I), MergeTo);
Evan Cheng4f8ff162007-08-11 00:59:19 +0000165
166 // Update kill info.
Lang Hames233a60e2009-11-03 23:52:08 +0000167 ValNo->removeKills(OldEnd, I->end.getPrevSlot());
Evan Cheng4f8ff162007-08-11 00:59:19 +0000168
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000169 // If the newly formed range now touches the range after it and if they have
170 // the same value number, merge the two ranges into one range.
Chris Lattnercef60102005-10-20 22:50:10 +0000171 Ranges::iterator Next = next(I);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000172 if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
Chris Lattnercef60102005-10-20 22:50:10 +0000173 I->end = Next->end;
174 ranges.erase(Next);
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000175 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000176}
177
178
179/// extendIntervalStartTo - This method is used when we want to extend the range
180/// specified by I to start at the specified endpoint. To do this, we should
181/// merge and eliminate all ranges that this will overlap with.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000182LiveInterval::Ranges::iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000183LiveInterval::extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStart) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000184 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000185 VNInfo *ValNo = I->valno;
Chris Lattnerb26c2152004-07-23 19:38:44 +0000186
187 // Search for the first interval that we can't merge with.
188 Ranges::iterator MergeTo = I;
189 do {
190 if (MergeTo == ranges.begin()) {
191 I->start = NewStart;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000192 ranges.erase(MergeTo, I);
Chris Lattnerb26c2152004-07-23 19:38:44 +0000193 return I;
194 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000195 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Chris Lattnerb26c2152004-07-23 19:38:44 +0000196 --MergeTo;
197 } while (NewStart <= MergeTo->start);
198
199 // If we start in the middle of another interval, just delete a range and
200 // extend that interval.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000201 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000202 MergeTo->end = I->end;
203 } else {
204 // Otherwise, extend the interval right after.
205 ++MergeTo;
206 MergeTo->start = NewStart;
207 MergeTo->end = I->end;
208 }
209
210 ranges.erase(next(MergeTo), next(I));
211 return MergeTo;
212}
213
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000214LiveInterval::iterator
215LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
Lang Hames233a60e2009-11-03 23:52:08 +0000216 SlotIndex Start = LR.start, End = LR.end;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000217 iterator it = std::upper_bound(From, ranges.end(), Start);
Chris Lattnerb26c2152004-07-23 19:38:44 +0000218
219 // If the inserted interval starts in the middle or right at the end of
220 // another interval, just extend that interval to contain the range of LR.
221 if (it != ranges.begin()) {
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000222 iterator B = prior(it);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000223 if (LR.valno == B->valno) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000224 if (B->start <= Start && B->end >= Start) {
225 extendIntervalEndTo(B, End);
226 return B;
227 }
228 } else {
229 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000230 // different valno's.
Chris Lattnerabf295f2004-07-24 02:52:23 +0000231 assert(B->end <= Start &&
Brian Gaeke8311bef2004-11-16 06:52:35 +0000232 "Cannot overlap two LiveRanges with differing ValID's"
233 " (did you def the same reg twice in a MachineInstr?)");
Chris Lattnerb26c2152004-07-23 19:38:44 +0000234 }
235 }
236
237 // Otherwise, if this range ends in the middle of, or right next to, another
238 // interval, merge it into that interval.
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +0000239 if (it != ranges.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000240 if (LR.valno == it->valno) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000241 if (it->start <= End) {
242 it = extendIntervalStartTo(it, Start);
243
244 // If LR is a complete superset of an interval, we may need to grow its
245 // endpoint as well.
246 if (End > it->end)
247 extendIntervalEndTo(it, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000248 else if (End < it->end)
Evan Chengc3868e02007-11-29 01:05:47 +0000249 // Overlapping intervals, there might have been a kill here.
Lang Hames86511252009-09-04 20:41:11 +0000250 it->valno->removeKill(End);
Chris Lattnerabf295f2004-07-24 02:52:23 +0000251 return it;
252 }
253 } else {
254 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000255 // different valno's.
Chris Lattnerabf295f2004-07-24 02:52:23 +0000256 assert(it->start >= End &&
257 "Cannot overlap two LiveRanges with differing ValID's");
258 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +0000259 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000260
261 // Otherwise, this is just a new range that doesn't interact with anything.
262 // Insert it.
263 return ranges.insert(it, LR);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000264}
265
Lang Hames86511252009-09-04 20:41:11 +0000266/// isInOneLiveRange - Return true if the range specified is entirely in
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000267/// a single LiveRange of the live interval.
Lang Hames233a60e2009-11-03 23:52:08 +0000268bool LiveInterval::isInOneLiveRange(SlotIndex Start, SlotIndex End) {
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000269 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
270 if (I == ranges.begin())
271 return false;
272 --I;
Lang Hames86511252009-09-04 20:41:11 +0000273 return I->containsRange(Start, End);
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000274}
275
Chris Lattnerabf295f2004-07-24 02:52:23 +0000276
277/// removeRange - Remove the specified range from this interval. Note that
Evan Cheng42cc6e32009-01-29 00:06:09 +0000278/// the range must be in a single LiveRange in its entirety.
Lang Hames233a60e2009-11-03 23:52:08 +0000279void LiveInterval::removeRange(SlotIndex Start, SlotIndex End,
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000280 bool RemoveDeadValNo) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000281 // Find the LiveRange containing this span.
282 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
283 assert(I != ranges.begin() && "Range is not in interval!");
284 --I;
Lang Hames86511252009-09-04 20:41:11 +0000285 assert(I->containsRange(Start, End) && "Range is not entirely in interval!");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000286
287 // If the span we are removing is at the start of the LiveRange, adjust it.
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000288 VNInfo *ValNo = I->valno;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000289 if (I->start == Start) {
Evan Cheng4f8ff162007-08-11 00:59:19 +0000290 if (I->end == End) {
Lang Hames86511252009-09-04 20:41:11 +0000291 ValNo->removeKills(Start, End);
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000292 if (RemoveDeadValNo) {
293 // Check if val# is dead.
294 bool isDead = true;
295 for (const_iterator II = begin(), EE = end(); II != EE; ++II)
296 if (II != I && II->valno == ValNo) {
297 isDead = false;
298 break;
299 }
300 if (isDead) {
301 // Now that ValNo is dead, remove it. If it is the largest value
302 // number, just nuke it (and any other deleted values neighboring it),
303 // otherwise mark it as ~1U so it can be nuked later.
304 if (ValNo->id == getNumValNums()-1) {
305 do {
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000306 valnos.pop_back();
Lang Hames857c4e02009-06-17 21:01:20 +0000307 } while (!valnos.empty() && valnos.back()->isUnused());
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000308 } else {
Lang Hames857c4e02009-06-17 21:01:20 +0000309 ValNo->setIsUnused(true);
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000310 }
311 }
312 }
313
Chris Lattnerabf295f2004-07-24 02:52:23 +0000314 ranges.erase(I); // Removed the whole LiveRange.
Evan Cheng4f8ff162007-08-11 00:59:19 +0000315 } else
Chris Lattnerabf295f2004-07-24 02:52:23 +0000316 I->start = End;
317 return;
318 }
319
320 // Otherwise if the span we are removing is at the end of the LiveRange,
321 // adjust the other way.
322 if (I->end == End) {
Lang Hames86511252009-09-04 20:41:11 +0000323 ValNo->removeKills(Start, End);
Chris Lattner6925a9f2004-07-25 05:43:53 +0000324 I->end = Start;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000325 return;
326 }
327
328 // Otherwise, we are splitting the LiveRange into two pieces.
Lang Hames233a60e2009-11-03 23:52:08 +0000329 SlotIndex OldEnd = I->end;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000330 I->end = Start; // Trim the old interval.
331
332 // Insert the new one.
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000333 ranges.insert(next(I), LiveRange(End, OldEnd, ValNo));
Chris Lattnerabf295f2004-07-24 02:52:23 +0000334}
335
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000336/// removeValNo - Remove all the ranges defined by the specified value#.
337/// Also remove the value# from value# list.
338void LiveInterval::removeValNo(VNInfo *ValNo) {
339 if (empty()) return;
340 Ranges::iterator I = ranges.end();
341 Ranges::iterator E = ranges.begin();
342 do {
343 --I;
344 if (I->valno == ValNo)
345 ranges.erase(I);
346 } while (I != E);
347 // Now that ValNo is dead, remove it. If it is the largest value
348 // number, just nuke it (and any other deleted values neighboring it),
349 // otherwise mark it as ~1U so it can be nuked later.
350 if (ValNo->id == getNumValNums()-1) {
351 do {
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000352 valnos.pop_back();
Lang Hames857c4e02009-06-17 21:01:20 +0000353 } while (!valnos.empty() && valnos.back()->isUnused());
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000354 } else {
Lang Hames857c4e02009-06-17 21:01:20 +0000355 ValNo->setIsUnused(true);
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000356 }
357}
Lang Hames86511252009-09-04 20:41:11 +0000358
Chris Lattnerabf295f2004-07-24 02:52:23 +0000359/// getLiveRangeContaining - Return the live range that contains the
360/// specified index, or null if there is none.
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000361LiveInterval::const_iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000362LiveInterval::FindLiveRangeContaining(SlotIndex Idx) const {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000363 const_iterator It = std::upper_bound(begin(), end(), Idx);
Chris Lattnerabf295f2004-07-24 02:52:23 +0000364 if (It != ranges.begin()) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000365 --It;
366 if (It->contains(Idx))
367 return It;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000368 }
369
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000370 return end();
Chris Lattnerabf295f2004-07-24 02:52:23 +0000371}
372
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000373LiveInterval::iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000374LiveInterval::FindLiveRangeContaining(SlotIndex Idx) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000375 iterator It = std::upper_bound(begin(), end(), Idx);
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000376 if (It != begin()) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000377 --It;
378 if (It->contains(Idx))
379 return It;
380 }
381
382 return end();
383}
Chris Lattnerabf295f2004-07-24 02:52:23 +0000384
Lang Hames86511252009-09-04 20:41:11 +0000385/// findDefinedVNInfo - Find the VNInfo defined by the specified
386/// index (register interval).
Lang Hames233a60e2009-11-03 23:52:08 +0000387VNInfo *LiveInterval::findDefinedVNInfoForRegInt(SlotIndex Idx) const {
Evan Cheng3f32d652008-06-04 09:18:41 +0000388 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
Lang Hames86511252009-09-04 20:41:11 +0000389 i != e; ++i) {
390 if ((*i)->def == Idx)
391 return *i;
392 }
393
394 return 0;
395}
396
397/// findDefinedVNInfo - Find the VNInfo defined by the specified
398/// register (stack inteval).
399VNInfo *LiveInterval::findDefinedVNInfoForStackInt(unsigned reg) const {
400 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
401 i != e; ++i) {
402 if ((*i)->getReg() == reg)
403 return *i;
404 }
405 return 0;
Evan Cheng3f32d652008-06-04 09:18:41 +0000406}
407
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000408/// join - Join two live intervals (this, and other) together. This applies
409/// mappings to the value numbers in the LHS/RHS intervals as specified. If
410/// the intervals are not joinable, this aborts.
Lang Hames233a60e2009-11-03 23:52:08 +0000411void LiveInterval::join(LiveInterval &Other,
412 const int *LHSValNoAssignments,
David Greeneaf992f72007-09-06 19:46:46 +0000413 const int *RHSValNoAssignments,
Evan Cheng90f95f82009-06-14 20:22:55 +0000414 SmallVector<VNInfo*, 16> &NewVNInfo,
415 MachineRegisterInfo *MRI) {
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000416 // Determine if any of our live range values are mapped. This is uncommon, so
Evan Cheng34301352007-09-01 02:03:17 +0000417 // we want to avoid the interval scan if not.
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000418 bool MustMapCurValNos = false;
Evan Cheng34301352007-09-01 02:03:17 +0000419 unsigned NumVals = getNumValNums();
420 unsigned NumNewVals = NewVNInfo.size();
421 for (unsigned i = 0; i != NumVals; ++i) {
422 unsigned LHSValID = LHSValNoAssignments[i];
423 if (i != LHSValID ||
Evan Chengf3bb2e62007-09-05 21:46:51 +0000424 (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000425 MustMapCurValNos = true;
Chris Lattnerdeb99712004-07-24 03:41:50 +0000426 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000427
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000428 // If we have to apply a mapping to our base interval assignment, rewrite it
429 // now.
430 if (MustMapCurValNos) {
431 // Map the first live range.
432 iterator OutIt = begin();
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000433 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000434 ++OutIt;
435 for (iterator I = OutIt, E = end(); I != E; ++I) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000436 OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000437
438 // If this live range has the same value # as its immediate predecessor,
439 // and if they are neighbors, remove one LiveRange. This happens when we
440 // have [0,3:0)[4,7:1) and map 0/1 onto the same value #.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000441 if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000442 (OutIt-1)->end = OutIt->end;
443 } else {
444 if (I != OutIt) {
445 OutIt->start = I->start;
446 OutIt->end = I->end;
447 }
448
449 // Didn't merge, on to the next one.
450 ++OutIt;
451 }
452 }
453
454 // If we merge some live ranges, chop off the end.
455 ranges.erase(OutIt, end());
456 }
Evan Cheng4f8ff162007-08-11 00:59:19 +0000457
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000458 // Remember assignements because val# ids are changing.
Evan Cheng34301352007-09-01 02:03:17 +0000459 SmallVector<unsigned, 16> OtherAssignments;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000460 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I)
461 OtherAssignments.push_back(RHSValNoAssignments[I->valno->id]);
462
463 // Update val# info. Renumber them and make sure they all belong to this
Evan Chengf3bb2e62007-09-05 21:46:51 +0000464 // LiveInterval now. Also remove dead val#'s.
465 unsigned NumValNos = 0;
466 for (unsigned i = 0; i < NumNewVals; ++i) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000467 VNInfo *VNI = NewVNInfo[i];
Evan Chengf3bb2e62007-09-05 21:46:51 +0000468 if (VNI) {
Evan Cheng30590f52009-04-28 06:24:09 +0000469 if (NumValNos >= NumVals)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000470 valnos.push_back(VNI);
471 else
472 valnos[NumValNos] = VNI;
473 VNI->id = NumValNos++; // Renumber val#.
Evan Cheng34301352007-09-01 02:03:17 +0000474 }
475 }
Evan Cheng34301352007-09-01 02:03:17 +0000476 if (NumNewVals < NumVals)
477 valnos.resize(NumNewVals); // shrinkify
Evan Cheng4f8ff162007-08-11 00:59:19 +0000478
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000479 // Okay, now insert the RHS live ranges into the LHS.
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000480 iterator InsertPos = begin();
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000481 unsigned RangeNo = 0;
482 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I, ++RangeNo) {
483 // Map the valno in the other live range to the current live range.
484 I->valno = NewVNInfo[OtherAssignments[RangeNo]];
Evan Chengf3bb2e62007-09-05 21:46:51 +0000485 assert(I->valno && "Adding a dead range?");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000486 InsertPos = addRangeFrom(*I, InsertPos);
487 }
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000488
David Greene29ff37f2009-07-22 20:08:25 +0000489 ComputeJoinedWeight(Other);
Evan Cheng90f95f82009-06-14 20:22:55 +0000490
491 // Update regalloc hint if currently there isn't one.
492 if (TargetRegisterInfo::isVirtualRegister(reg) &&
493 TargetRegisterInfo::isVirtualRegister(Other.reg)) {
Evan Cheng358dec52009-06-15 08:28:29 +0000494 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(reg);
495 if (Hint.first == 0 && Hint.second == 0) {
496 std::pair<unsigned, unsigned> OtherHint =
Evan Cheng90f95f82009-06-14 20:22:55 +0000497 MRI->getRegAllocationHint(Other.reg);
Evan Cheng358dec52009-06-15 08:28:29 +0000498 if (OtherHint.first || OtherHint.second)
Evan Cheng90f95f82009-06-14 20:22:55 +0000499 MRI->setRegAllocationHint(reg, OtherHint.first, OtherHint.second);
500 }
501 }
Chris Lattnerfb449b92004-07-23 17:49:16 +0000502}
503
Chris Lattnerf21f0202006-09-02 05:26:59 +0000504/// MergeRangesInAsValue - Merge all of the intervals in RHS into this live
505/// interval as the specified value number. The LiveRanges in RHS are
506/// allowed to overlap with LiveRanges in the current interval, but only if
507/// the overlapping LiveRanges have the specified value number.
508void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000509 VNInfo *LHSValNo) {
Chris Lattnerf21f0202006-09-02 05:26:59 +0000510 // TODO: Make this more efficient.
511 iterator InsertPos = begin();
512 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000513 // Map the valno in the other live range to the current live range.
Chris Lattnerf21f0202006-09-02 05:26:59 +0000514 LiveRange Tmp = *I;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000515 Tmp.valno = LHSValNo;
Chris Lattnerf21f0202006-09-02 05:26:59 +0000516 InsertPos = addRangeFrom(Tmp, InsertPos);
517 }
518}
519
520
Evan Cheng32dfbea2007-10-12 08:50:34 +0000521/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
522/// in RHS into this live interval as the specified value number.
523/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000524/// current interval, it will replace the value numbers of the overlaped
525/// live ranges with the specified value number.
Lang Hames233a60e2009-11-03 23:52:08 +0000526void LiveInterval::MergeValueInAsValue(
527 const LiveInterval &RHS,
528 const VNInfo *RHSValNo, VNInfo *LHSValNo) {
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000529 SmallVector<VNInfo*, 4> ReplacedValNos;
530 iterator IP = begin();
Evan Cheng32dfbea2007-10-12 08:50:34 +0000531 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
532 if (I->valno != RHSValNo)
533 continue;
Lang Hames233a60e2009-11-03 23:52:08 +0000534 SlotIndex Start = I->start, End = I->end;
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000535 IP = std::upper_bound(IP, end(), Start);
536 // If the start of this range overlaps with an existing liverange, trim it.
537 if (IP != begin() && IP[-1].end > Start) {
Evan Cheng294e6522008-01-30 22:44:55 +0000538 if (IP[-1].valno != LHSValNo) {
539 ReplacedValNos.push_back(IP[-1].valno);
540 IP[-1].valno = LHSValNo; // Update val#.
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000541 }
542 Start = IP[-1].end;
543 // Trimmed away the whole range?
544 if (Start >= End) continue;
545 }
546 // If the end of this range overlaps with an existing liverange, trim it.
547 if (IP != end() && End > IP->start) {
548 if (IP->valno != LHSValNo) {
549 ReplacedValNos.push_back(IP->valno);
550 IP->valno = LHSValNo; // Update val#.
551 }
552 End = IP->start;
553 // If this trimmed away the whole range, ignore it.
554 if (Start == End) continue;
555 }
556
Evan Cheng32dfbea2007-10-12 08:50:34 +0000557 // Map the valno in the other live range to the current live range.
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000558 IP = addRangeFrom(LiveRange(Start, End, LHSValNo), IP);
559 }
560
561
562 SmallSet<VNInfo*, 4> Seen;
563 for (unsigned i = 0, e = ReplacedValNos.size(); i != e; ++i) {
564 VNInfo *V1 = ReplacedValNos[i];
565 if (Seen.insert(V1)) {
566 bool isDead = true;
567 for (const_iterator I = begin(), E = end(); I != E; ++I)
568 if (I->valno == V1) {
569 isDead = false;
570 break;
571 }
572 if (isDead) {
573 // Now that V1 is dead, remove it. If it is the largest value number,
574 // just nuke it (and any other deleted values neighboring it), otherwise
575 // mark it as ~1U so it can be nuked later.
576 if (V1->id == getNumValNums()-1) {
577 do {
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000578 valnos.pop_back();
Lang Hames857c4e02009-06-17 21:01:20 +0000579 } while (!valnos.empty() && valnos.back()->isUnused());
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000580 } else {
Lang Hames857c4e02009-06-17 21:01:20 +0000581 V1->setIsUnused(true);
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000582 }
583 }
584 }
Evan Cheng32dfbea2007-10-12 08:50:34 +0000585 }
586}
587
588
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000589/// MergeInClobberRanges - For any live ranges that are not defined in the
590/// current interval, but are defined in the Clobbers interval, mark them
591/// used with an unknown definition value.
Lang Hames233a60e2009-11-03 23:52:08 +0000592void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
593 const LiveInterval &Clobbers,
Benjamin Kramer991de142010-03-30 20:16:45 +0000594 VNInfo::Allocator &VNInfoAllocator) {
Dan Gohmana8c763b2008-08-14 18:13:49 +0000595 if (Clobbers.empty()) return;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000596
Evan Cheng0adb5272009-04-25 09:25:19 +0000597 DenseMap<VNInfo*, VNInfo*> ValNoMaps;
Evan Chenga4b2bab2009-04-25 20:20:15 +0000598 VNInfo *UnusedValNo = 0;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000599 iterator IP = begin();
600 for (const_iterator I = Clobbers.begin(), E = Clobbers.end(); I != E; ++I) {
Evan Cheng0adb5272009-04-25 09:25:19 +0000601 // For every val# in the Clobbers interval, create a new "unknown" val#.
602 VNInfo *ClobberValNo = 0;
603 DenseMap<VNInfo*, VNInfo*>::iterator VI = ValNoMaps.find(I->valno);
604 if (VI != ValNoMaps.end())
605 ClobberValNo = VI->second;
Evan Chenga4b2bab2009-04-25 20:20:15 +0000606 else if (UnusedValNo)
607 ClobberValNo = UnusedValNo;
Evan Cheng0adb5272009-04-25 09:25:19 +0000608 else {
Lang Hames86511252009-09-04 20:41:11 +0000609 UnusedValNo = ClobberValNo =
Lang Hames233a60e2009-11-03 23:52:08 +0000610 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
Evan Cheng0adb5272009-04-25 09:25:19 +0000611 ValNoMaps.insert(std::make_pair(I->valno, ClobberValNo));
612 }
613
Dan Gohman97121ba2009-04-08 00:15:30 +0000614 bool Done = false;
Lang Hames233a60e2009-11-03 23:52:08 +0000615 SlotIndex Start = I->start, End = I->end;
Dan Gohman97121ba2009-04-08 00:15:30 +0000616 // If a clobber range starts before an existing range and ends after
617 // it, the clobber range will need to be split into multiple ranges.
618 // Loop until the entire clobber range is handled.
619 while (!Done) {
620 Done = true;
621 IP = std::upper_bound(IP, end(), Start);
Lang Hames233a60e2009-11-03 23:52:08 +0000622 SlotIndex SubRangeStart = Start;
623 SlotIndex SubRangeEnd = End;
Dan Gohman97121ba2009-04-08 00:15:30 +0000624
625 // If the start of this range overlaps with an existing liverange, trim it.
626 if (IP != begin() && IP[-1].end > SubRangeStart) {
627 SubRangeStart = IP[-1].end;
628 // Trimmed away the whole range?
629 if (SubRangeStart >= SubRangeEnd) continue;
630 }
631 // If the end of this range overlaps with an existing liverange, trim it.
632 if (IP != end() && SubRangeEnd > IP->start) {
633 // If the clobber live range extends beyond the existing live range,
634 // it'll need at least another live range, so set the flag to keep
635 // iterating.
636 if (SubRangeEnd > IP->end) {
637 Start = IP->end;
638 Done = false;
639 }
640 SubRangeEnd = IP->start;
641 // If this trimmed away the whole range, ignore it.
642 if (SubRangeStart == SubRangeEnd) continue;
643 }
644
645 // Insert the clobber interval.
646 IP = addRangeFrom(LiveRange(SubRangeStart, SubRangeEnd, ClobberValNo),
647 IP);
Evan Chenga4b2bab2009-04-25 20:20:15 +0000648 UnusedValNo = 0;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000649 }
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000650 }
Evan Cheng27e46662009-04-27 17:35:19 +0000651
652 if (UnusedValNo) {
653 // Delete the last unused val#.
654 valnos.pop_back();
Evan Cheng27e46662009-04-27 17:35:19 +0000655 }
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000656}
657
Lang Hames233a60e2009-11-03 23:52:08 +0000658void LiveInterval::MergeInClobberRange(LiveIntervals &li_,
659 SlotIndex Start,
660 SlotIndex End,
Benjamin Kramer991de142010-03-30 20:16:45 +0000661 VNInfo::Allocator &VNInfoAllocator) {
Evan Chenga2e64352009-03-11 00:03:21 +0000662 // Find a value # to use for the clobber ranges. If there is already a value#
663 // for unknown values, use it.
Lang Hames86511252009-09-04 20:41:11 +0000664 VNInfo *ClobberValNo =
Lang Hames233a60e2009-11-03 23:52:08 +0000665 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
Evan Chenga2e64352009-03-11 00:03:21 +0000666
667 iterator IP = begin();
668 IP = std::upper_bound(IP, end(), Start);
669
670 // If the start of this range overlaps with an existing liverange, trim it.
671 if (IP != begin() && IP[-1].end > Start) {
672 Start = IP[-1].end;
673 // Trimmed away the whole range?
674 if (Start >= End) return;
675 }
676 // If the end of this range overlaps with an existing liverange, trim it.
677 if (IP != end() && End > IP->start) {
678 End = IP->start;
679 // If this trimmed away the whole range, ignore it.
680 if (Start == End) return;
681 }
682
683 // Insert the clobber interval.
684 addRangeFrom(LiveRange(Start, End, ClobberValNo), IP);
685}
686
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000687/// MergeValueNumberInto - This method is called when two value nubmers
688/// are found to be equivalent. This eliminates V1, replacing all
689/// LiveRanges with the V1 value number with the V2 value number. This can
690/// cause merging of V1/V2 values numbers and compaction of the value space.
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000691VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000692 assert(V1 != V2 && "Identical value#'s are always equivalent!");
693
694 // This code actually merges the (numerically) larger value number into the
695 // smaller value number, which is likely to allow us to compactify the value
696 // space. The only thing we have to be careful of is to preserve the
697 // instruction that defines the result value.
698
699 // Make sure V2 is smaller than V1.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000700 if (V1->id < V2->id) {
Lang Hames52c1afc2009-08-10 23:43:28 +0000701 V1->copyFrom(*V2);
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000702 std::swap(V1, V2);
703 }
704
705 // Merge V1 live ranges into V2.
706 for (iterator I = begin(); I != end(); ) {
707 iterator LR = I++;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000708 if (LR->valno != V1) continue; // Not a V1 LiveRange.
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000709
710 // Okay, we found a V1 live range. If it had a previous, touching, V2 live
711 // range, extend it.
712 if (LR != begin()) {
713 iterator Prev = LR-1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000714 if (Prev->valno == V2 && Prev->end == LR->start) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000715 Prev->end = LR->end;
716
717 // Erase this live-range.
718 ranges.erase(LR);
719 I = Prev+1;
720 LR = Prev;
721 }
722 }
723
724 // Okay, now we have a V1 or V2 live range that is maximally merged forward.
725 // Ensure that it is a V2 live-range.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000726 LR->valno = V2;
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000727
728 // If we can merge it into later V2 live ranges, do so now. We ignore any
729 // following V1 live ranges, as they will be merged in subsequent iterations
730 // of the loop.
731 if (I != end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000732 if (I->start == LR->end && I->valno == V2) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000733 LR->end = I->end;
734 ranges.erase(I);
735 I = LR+1;
736 }
737 }
738 }
Chris Lattnerc82b3aa2006-08-24 23:22:59 +0000739
740 // Now that V1 is dead, remove it. If it is the largest value number, just
741 // nuke it (and any other deleted values neighboring it), otherwise mark it as
742 // ~1U so it can be nuked later.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000743 if (V1->id == getNumValNums()-1) {
Chris Lattnerc82b3aa2006-08-24 23:22:59 +0000744 do {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000745 valnos.pop_back();
Lang Hames857c4e02009-06-17 21:01:20 +0000746 } while (valnos.back()->isUnused());
Chris Lattnerc82b3aa2006-08-24 23:22:59 +0000747 } else {
Lang Hames857c4e02009-06-17 21:01:20 +0000748 V1->setIsUnused(true);
Chris Lattnerc82b3aa2006-08-24 23:22:59 +0000749 }
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000750
751 return V2;
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000752}
753
Evan Cheng32dfbea2007-10-12 08:50:34 +0000754void LiveInterval::Copy(const LiveInterval &RHS,
Evan Cheng90f95f82009-06-14 20:22:55 +0000755 MachineRegisterInfo *MRI,
Benjamin Kramer991de142010-03-30 20:16:45 +0000756 VNInfo::Allocator &VNInfoAllocator) {
Evan Cheng32dfbea2007-10-12 08:50:34 +0000757 ranges.clear();
758 valnos.clear();
Evan Cheng358dec52009-06-15 08:28:29 +0000759 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
Evan Cheng90f95f82009-06-14 20:22:55 +0000760 MRI->setRegAllocationHint(reg, Hint.first, Hint.second);
761
Evan Cheng32dfbea2007-10-12 08:50:34 +0000762 weight = RHS.weight;
763 for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) {
764 const VNInfo *VNI = RHS.getValNumInfo(i);
Lang Hames857c4e02009-06-17 21:01:20 +0000765 createValueCopy(VNI, VNInfoAllocator);
Evan Cheng32dfbea2007-10-12 08:50:34 +0000766 }
767 for (unsigned i = 0, e = RHS.ranges.size(); i != e; ++i) {
768 const LiveRange &LR = RHS.ranges[i];
769 addRange(LiveRange(LR.start, LR.end, getValNumInfo(LR.valno->id)));
770 }
771}
772
Evan Chenge52eef82007-04-17 20:25:11 +0000773unsigned LiveInterval::getSize() const {
774 unsigned Sum = 0;
775 for (const_iterator I = begin(), E = end(); I != E; ++I)
Lang Hames86511252009-09-04 20:41:11 +0000776 Sum += I->start.distance(I->end);
Evan Chenge52eef82007-04-17 20:25:11 +0000777 return Sum;
778}
779
David Greene29ff37f2009-07-22 20:08:25 +0000780/// ComputeJoinedWeight - Set the weight of a live interval Joined
781/// after Other has been merged into it.
782void LiveInterval::ComputeJoinedWeight(const LiveInterval &Other) {
783 // If either of these intervals was spilled, the weight is the
784 // weight of the non-spilled interval. This can only happen with
785 // iterative coalescers.
786
David Greene92b78bb2009-07-22 22:32:19 +0000787 if (Other.weight != HUGE_VALF) {
788 weight += Other.weight;
789 }
790 else if (weight == HUGE_VALF &&
David Greene29ff37f2009-07-22 20:08:25 +0000791 !TargetRegisterInfo::isPhysicalRegister(reg)) {
792 // Remove this assert if you have an iterative coalescer
793 assert(0 && "Joining to spilled interval");
794 weight = Other.weight;
795 }
David Greene29ff37f2009-07-22 20:08:25 +0000796 else {
797 // Otherwise the weight stays the same
798 // Remove this assert if you have an iterative coalescer
799 assert(0 && "Joining from spilled interval");
800 }
801}
802
Daniel Dunbar1cd1d982009-07-24 10:36:58 +0000803raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) {
804 return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
805}
Chris Lattnerfb449b92004-07-23 17:49:16 +0000806
Chris Lattnerabf295f2004-07-24 02:52:23 +0000807void LiveRange::dump() const {
David Greene52421542010-01-04 22:41:43 +0000808 dbgs() << *this << "\n";
Chris Lattnerabf295f2004-07-24 02:52:23 +0000809}
810
Chris Lattnerc02497f2009-08-23 03:47:42 +0000811void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
Evan Cheng99ec7792008-06-23 21:03:19 +0000812 if (isStackSlot())
813 OS << "SS#" << getStackSlotIndex();
Evan Cheng3f32d652008-06-04 09:18:41 +0000814 else if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000815 OS << TRI->getName(reg);
Chris Lattner38135af2005-05-14 05:34:15 +0000816 else
817 OS << "%reg" << reg;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000818
Chris Lattner38135af2005-05-14 05:34:15 +0000819 OS << ',' << weight;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000820
Chris Lattner38135af2005-05-14 05:34:15 +0000821 if (empty())
Evan Cheng3f32d652008-06-04 09:18:41 +0000822 OS << " EMPTY";
Chris Lattner38135af2005-05-14 05:34:15 +0000823 else {
824 OS << " = ";
825 for (LiveInterval::Ranges::const_iterator I = ranges.begin(),
826 E = ranges.end(); I != E; ++I)
827 OS << *I;
828 }
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000829
830 // Print value number info.
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000831 if (getNumValNums()) {
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000832 OS << " ";
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000833 unsigned vnum = 0;
834 for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
835 ++i, ++vnum) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000836 const VNInfo *vni = *i;
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000837 if (vnum) OS << " ";
838 OS << vnum << "@";
Lang Hames857c4e02009-06-17 21:01:20 +0000839 if (vni->isUnused()) {
Evan Cheng8df78602007-08-08 03:00:28 +0000840 OS << "x";
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000841 } else {
Lang Hames61945692009-12-09 05:39:12 +0000842 if (!vni->isDefAccurate() && !vni->isPHIDef())
Evan Cheng4f8ff162007-08-11 00:59:19 +0000843 OS << "?";
844 else
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000845 OS << vni->def;
846 unsigned ee = vni->kills.size();
Lang Hames857c4e02009-06-17 21:01:20 +0000847 if (ee || vni->hasPHIKill()) {
Evan Cheng4f8ff162007-08-11 00:59:19 +0000848 OS << "-(";
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000849 for (unsigned j = 0; j != ee; ++j) {
Lang Hames86511252009-09-04 20:41:11 +0000850 OS << vni->kills[j];
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000851 if (j != ee-1)
Evan Cheng4f8ff162007-08-11 00:59:19 +0000852 OS << " ";
853 }
Lang Hames857c4e02009-06-17 21:01:20 +0000854 if (vni->hasPHIKill()) {
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000855 if (ee)
856 OS << " ";
857 OS << "phi";
858 }
Evan Cheng4f8ff162007-08-11 00:59:19 +0000859 OS << ")";
860 }
Evan Chenga8d94f12007-08-07 23:49:57 +0000861 }
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000862 }
863 }
Chris Lattnerfb449b92004-07-23 17:49:16 +0000864}
Chris Lattnerabf295f2004-07-24 02:52:23 +0000865
866void LiveInterval::dump() const {
David Greene52421542010-01-04 22:41:43 +0000867 dbgs() << *this << "\n";
Chris Lattnerabf295f2004-07-24 02:52:23 +0000868}
Jeff Cohenc21c5ee2006-12-15 22:57:14 +0000869
870
Daniel Dunbar1cd1d982009-07-24 10:36:58 +0000871void LiveRange::print(raw_ostream &os) const {
872 os << *this;
873}