blob: 6820a615e8d83656176ecbf4a73ad4c1f153eda4 [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
Jakob Stoklund Olesen15a57142010-06-25 22:53:05 +000071/// killedAt - Return true if a live range ends at index. Note that the kill
72/// point is not contained in the half-open live range. It is usually the
73/// getDefIndex() slot following its last use.
74bool LiveInterval::killedAt(SlotIndex I) const {
75 Ranges::const_iterator r = std::lower_bound(ranges.begin(), ranges.end(), I);
76
77 // Now r points to the first interval with start >= I, or ranges.end().
78 if (r == ranges.begin())
79 return false;
80
81 --r;
82 // Now r points to the last interval with end <= I.
83 // r->end is the kill point.
84 return r->end == I;
85}
86
87/// killedInRange - Return true if the interval has kills in [Start,End).
88bool LiveInterval::killedInRange(SlotIndex Start, SlotIndex End) const {
89 Ranges::const_iterator r =
90 std::lower_bound(ranges.begin(), ranges.end(), End);
91
92 // Now r points to the first interval with start >= End, or ranges.end().
93 if (r == ranges.begin())
94 return false;
95
96 --r;
97 // Now r points to the last interval with end <= End.
98 // r->end is the kill point.
99 return r->end >= Start && r->end < End;
100}
101
Chris Lattnerbae74d92004-11-18 03:47:34 +0000102// overlaps - Return true if the intersection of the two live intervals is
103// not empty.
104//
Chris Lattnerfb449b92004-07-23 17:49:16 +0000105// An example for overlaps():
106//
107// 0: A = ...
108// 4: B = ...
109// 8: C = A + B ;; last use of A
110//
111// The live intervals should look like:
112//
113// A = [3, 11)
114// B = [7, x)
115// C = [11, y)
116//
117// A->overlaps(C) should return false since we want to be able to join
118// A and C.
Chris Lattnerbae74d92004-11-18 03:47:34 +0000119//
120bool LiveInterval::overlapsFrom(const LiveInterval& other,
121 const_iterator StartPos) const {
Jakob Stoklund Olesen6382d2c2010-07-13 19:56:28 +0000122 assert(!empty() && "empty interval");
Chris Lattnerbae74d92004-11-18 03:47:34 +0000123 const_iterator i = begin();
124 const_iterator ie = end();
125 const_iterator j = StartPos;
126 const_iterator je = other.end();
127
128 assert((StartPos->start <= i->start || StartPos == other.begin()) &&
Chris Lattner8c68b6a2004-11-18 04:02:11 +0000129 StartPos != other.end() && "Bogus start position hint!");
Chris Lattnerf5426492004-07-25 07:11:19 +0000130
Chris Lattnerfb449b92004-07-23 17:49:16 +0000131 if (i->start < j->start) {
Chris Lattneraa141472004-07-23 18:40:00 +0000132 i = std::upper_bound(i, ie, j->start);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000133 if (i != ranges.begin()) --i;
Chris Lattneraa141472004-07-23 18:40:00 +0000134 } else if (j->start < i->start) {
Chris Lattneread1b3f2004-12-04 01:22:09 +0000135 ++StartPos;
136 if (StartPos != other.end() && StartPos->start <= i->start) {
137 assert(StartPos < other.end() && i < end());
Chris Lattner8c68b6a2004-11-18 04:02:11 +0000138 j = std::upper_bound(j, je, i->start);
139 if (j != other.ranges.begin()) --j;
140 }
Chris Lattneraa141472004-07-23 18:40:00 +0000141 } else {
142 return true;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000143 }
144
Chris Lattner9fddc122004-11-18 05:28:21 +0000145 if (j == je) return false;
146
147 while (i != ie) {
Chris Lattnerfb449b92004-07-23 17:49:16 +0000148 if (i->start > j->start) {
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000149 std::swap(i, j);
150 std::swap(ie, je);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000151 }
Chris Lattnerfb449b92004-07-23 17:49:16 +0000152
153 if (i->end > j->start)
154 return true;
155 ++i;
156 }
157
158 return false;
159}
160
Evan Chengcccdb2b2009-04-18 08:52:15 +0000161/// overlaps - Return true if the live interval overlaps a range specified
162/// by [Start, End).
Lang Hames233a60e2009-11-03 23:52:08 +0000163bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const {
Evan Chengcccdb2b2009-04-18 08:52:15 +0000164 assert(Start < End && "Invalid range");
Jakob Stoklund Olesen186eb732010-07-13 19:42:20 +0000165 const_iterator I = std::lower_bound(begin(), end(), End);
166 return I != begin() && (--I)->end > Start;
Evan Chengcccdb2b2009-04-18 08:52:15 +0000167}
168
Lang Hames6f4e4df2010-07-26 01:49:41 +0000169
170/// ValNo is dead, remove it. If it is the largest value number, just nuke it
171/// (and any other deleted values neighboring it), otherwise mark it as ~1U so
172/// it can be nuked later.
173void LiveInterval::markValNoForDeletion(VNInfo *ValNo) {
174 if (ValNo->id == getNumValNums()-1) {
175 do {
176 valnos.pop_back();
177 } while (!valnos.empty() && valnos.back()->isUnused());
178 } else {
179 ValNo->setIsUnused(true);
180 }
181}
182
Jakob Stoklund Olesen23436592010-08-06 18:46:59 +0000183/// RenumberValues - Renumber all values in order of appearance and delete the
184/// remaining unused values.
185void LiveInterval::RenumberValues() {
186 SmallPtrSet<VNInfo*, 8> Seen;
187 valnos.clear();
188 for (const_iterator I = begin(), E = end(); I != E; ++I) {
189 VNInfo *VNI = I->valno;
190 if (!Seen.insert(VNI))
191 continue;
192 assert(!VNI->isUnused() && "Unused valno used by live range");
193 VNI->id = (unsigned)valnos.size();
194 valnos.push_back(VNI);
195 }
196}
197
Chris Lattnerb26c2152004-07-23 19:38:44 +0000198/// extendIntervalEndTo - This method is used when we want to extend the range
199/// specified by I to end at the specified endpoint. To do this, we should
200/// merge and eliminate all ranges that this will overlap with. The iterator is
201/// not invalidated.
Lang Hames233a60e2009-11-03 23:52:08 +0000202void LiveInterval::extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000203 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000204 VNInfo *ValNo = I->valno;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000205
Chris Lattnerb26c2152004-07-23 19:38:44 +0000206 // Search for the first interval that we can't merge with.
Oscar Fuentesee56c422010-08-02 06:00:15 +0000207 Ranges::iterator MergeTo = llvm::next(I);
Chris Lattnerabf295f2004-07-24 02:52:23 +0000208 for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000209 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000210 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000211
212 // If NewEnd was in the middle of an interval, make sure to get its endpoint.
213 I->end = std::max(NewEnd, prior(MergeTo)->end);
214
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000215 // Erase any dead ranges.
Oscar Fuentesee56c422010-08-02 06:00:15 +0000216 ranges.erase(llvm::next(I), MergeTo);
Evan Cheng4f8ff162007-08-11 00:59:19 +0000217
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000218 // If the newly formed range now touches the range after it and if they have
219 // the same value number, merge the two ranges into one range.
Oscar Fuentesee56c422010-08-02 06:00:15 +0000220 Ranges::iterator Next = llvm::next(I);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000221 if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
Chris Lattnercef60102005-10-20 22:50:10 +0000222 I->end = Next->end;
223 ranges.erase(Next);
Chris Lattnerb0fa11c2005-10-20 07:39:25 +0000224 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000225}
226
227
228/// extendIntervalStartTo - This method is used when we want to extend the range
229/// specified by I to start at the specified endpoint. To do this, we should
230/// merge and eliminate all ranges that this will overlap with.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000231LiveInterval::Ranges::iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000232LiveInterval::extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStart) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000233 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000234 VNInfo *ValNo = I->valno;
Chris Lattnerb26c2152004-07-23 19:38:44 +0000235
236 // Search for the first interval that we can't merge with.
237 Ranges::iterator MergeTo = I;
238 do {
239 if (MergeTo == ranges.begin()) {
240 I->start = NewStart;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000241 ranges.erase(MergeTo, I);
Chris Lattnerb26c2152004-07-23 19:38:44 +0000242 return I;
243 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000244 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Chris Lattnerb26c2152004-07-23 19:38:44 +0000245 --MergeTo;
246 } while (NewStart <= MergeTo->start);
247
248 // If we start in the middle of another interval, just delete a range and
249 // extend that interval.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000250 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
Chris Lattnerb26c2152004-07-23 19:38:44 +0000251 MergeTo->end = I->end;
252 } else {
253 // Otherwise, extend the interval right after.
254 ++MergeTo;
255 MergeTo->start = NewStart;
256 MergeTo->end = I->end;
257 }
258
Oscar Fuentesee56c422010-08-02 06:00:15 +0000259 ranges.erase(llvm::next(MergeTo), llvm::next(I));
Chris Lattnerb26c2152004-07-23 19:38:44 +0000260 return MergeTo;
261}
262
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000263LiveInterval::iterator
264LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
Lang Hames233a60e2009-11-03 23:52:08 +0000265 SlotIndex Start = LR.start, End = LR.end;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000266 iterator it = std::upper_bound(From, ranges.end(), Start);
Chris Lattnerb26c2152004-07-23 19:38:44 +0000267
268 // If the inserted interval starts in the middle or right at the end of
269 // another interval, just extend that interval to contain the range of LR.
270 if (it != ranges.begin()) {
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000271 iterator B = prior(it);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000272 if (LR.valno == B->valno) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000273 if (B->start <= Start && B->end >= Start) {
274 extendIntervalEndTo(B, End);
275 return B;
276 }
277 } else {
278 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000279 // different valno's.
Chris Lattnerabf295f2004-07-24 02:52:23 +0000280 assert(B->end <= Start &&
Brian Gaeke8311bef2004-11-16 06:52:35 +0000281 "Cannot overlap two LiveRanges with differing ValID's"
282 " (did you def the same reg twice in a MachineInstr?)");
Chris Lattnerb26c2152004-07-23 19:38:44 +0000283 }
284 }
285
286 // Otherwise, if this range ends in the middle of, or right next to, another
287 // interval, merge it into that interval.
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +0000288 if (it != ranges.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000289 if (LR.valno == it->valno) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000290 if (it->start <= End) {
291 it = extendIntervalStartTo(it, Start);
292
293 // If LR is a complete superset of an interval, we may need to grow its
294 // endpoint as well.
295 if (End > it->end)
296 extendIntervalEndTo(it, End);
297 return it;
298 }
299 } else {
300 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000301 // different valno's.
Chris Lattnerabf295f2004-07-24 02:52:23 +0000302 assert(it->start >= End &&
303 "Cannot overlap two LiveRanges with differing ValID's");
304 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +0000305 }
Chris Lattnerb26c2152004-07-23 19:38:44 +0000306
307 // Otherwise, this is just a new range that doesn't interact with anything.
308 // Insert it.
309 return ranges.insert(it, LR);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000310}
311
Lang Hames86511252009-09-04 20:41:11 +0000312/// isInOneLiveRange - Return true if the range specified is entirely in
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000313/// a single LiveRange of the live interval.
Lang Hames233a60e2009-11-03 23:52:08 +0000314bool LiveInterval::isInOneLiveRange(SlotIndex Start, SlotIndex End) {
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000315 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
316 if (I == ranges.begin())
317 return false;
318 --I;
Lang Hames86511252009-09-04 20:41:11 +0000319 return I->containsRange(Start, End);
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000320}
321
Chris Lattnerabf295f2004-07-24 02:52:23 +0000322
323/// removeRange - Remove the specified range from this interval. Note that
Evan Cheng42cc6e32009-01-29 00:06:09 +0000324/// the range must be in a single LiveRange in its entirety.
Lang Hames233a60e2009-11-03 23:52:08 +0000325void LiveInterval::removeRange(SlotIndex Start, SlotIndex End,
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000326 bool RemoveDeadValNo) {
Chris Lattnerabf295f2004-07-24 02:52:23 +0000327 // Find the LiveRange containing this span.
328 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
329 assert(I != ranges.begin() && "Range is not in interval!");
330 --I;
Lang Hames86511252009-09-04 20:41:11 +0000331 assert(I->containsRange(Start, End) && "Range is not entirely in interval!");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000332
333 // If the span we are removing is at the start of the LiveRange, adjust it.
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000334 VNInfo *ValNo = I->valno;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000335 if (I->start == Start) {
Evan Cheng4f8ff162007-08-11 00:59:19 +0000336 if (I->end == End) {
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000337 if (RemoveDeadValNo) {
338 // Check if val# is dead.
339 bool isDead = true;
340 for (const_iterator II = begin(), EE = end(); II != EE; ++II)
341 if (II != I && II->valno == ValNo) {
342 isDead = false;
343 break;
Jakob Stoklund Olesen15a57142010-06-25 22:53:05 +0000344 }
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000345 if (isDead) {
Lang Hames6f4e4df2010-07-26 01:49:41 +0000346 // Now that ValNo is dead, remove it.
347 markValNoForDeletion(ValNo);
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000348 }
349 }
350
Chris Lattnerabf295f2004-07-24 02:52:23 +0000351 ranges.erase(I); // Removed the whole LiveRange.
Evan Cheng4f8ff162007-08-11 00:59:19 +0000352 } else
Chris Lattnerabf295f2004-07-24 02:52:23 +0000353 I->start = End;
354 return;
355 }
356
357 // Otherwise if the span we are removing is at the end of the LiveRange,
358 // adjust the other way.
359 if (I->end == End) {
Chris Lattner6925a9f2004-07-25 05:43:53 +0000360 I->end = Start;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000361 return;
362 }
363
364 // Otherwise, we are splitting the LiveRange into two pieces.
Lang Hames233a60e2009-11-03 23:52:08 +0000365 SlotIndex OldEnd = I->end;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000366 I->end = Start; // Trim the old interval.
367
368 // Insert the new one.
Oscar Fuentesee56c422010-08-02 06:00:15 +0000369 ranges.insert(llvm::next(I), LiveRange(End, OldEnd, ValNo));
Chris Lattnerabf295f2004-07-24 02:52:23 +0000370}
371
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000372/// removeValNo - Remove all the ranges defined by the specified value#.
373/// Also remove the value# from value# list.
374void LiveInterval::removeValNo(VNInfo *ValNo) {
375 if (empty()) return;
376 Ranges::iterator I = ranges.end();
377 Ranges::iterator E = ranges.begin();
378 do {
379 --I;
380 if (I->valno == ValNo)
381 ranges.erase(I);
382 } while (I != E);
Lang Hames6f4e4df2010-07-26 01:49:41 +0000383 // Now that ValNo is dead, remove it.
384 markValNoForDeletion(ValNo);
Evan Chengd2b8d7b2008-02-13 02:48:26 +0000385}
Lang Hames86511252009-09-04 20:41:11 +0000386
Chris Lattnerabf295f2004-07-24 02:52:23 +0000387/// getLiveRangeContaining - Return the live range that contains the
388/// specified index, or null if there is none.
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000389LiveInterval::const_iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000390LiveInterval::FindLiveRangeContaining(SlotIndex Idx) const {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000391 const_iterator It = std::upper_bound(begin(), end(), Idx);
Chris Lattnerabf295f2004-07-24 02:52:23 +0000392 if (It != ranges.begin()) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000393 --It;
394 if (It->contains(Idx))
395 return It;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000396 }
397
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000398 return end();
Chris Lattnerabf295f2004-07-24 02:52:23 +0000399}
400
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000401LiveInterval::iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000402LiveInterval::FindLiveRangeContaining(SlotIndex Idx) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000403 iterator It = std::upper_bound(begin(), end(), Idx);
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000404 if (It != begin()) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000405 --It;
406 if (It->contains(Idx))
407 return It;
408 }
409
410 return end();
411}
Chris Lattnerabf295f2004-07-24 02:52:23 +0000412
Lang Hames86511252009-09-04 20:41:11 +0000413/// findDefinedVNInfo - Find the VNInfo defined by the specified
414/// index (register interval).
Lang Hames233a60e2009-11-03 23:52:08 +0000415VNInfo *LiveInterval::findDefinedVNInfoForRegInt(SlotIndex Idx) const {
Evan Cheng3f32d652008-06-04 09:18:41 +0000416 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
Lang Hames86511252009-09-04 20:41:11 +0000417 i != e; ++i) {
418 if ((*i)->def == Idx)
419 return *i;
420 }
421
422 return 0;
423}
424
425/// findDefinedVNInfo - Find the VNInfo defined by the specified
426/// register (stack inteval).
427VNInfo *LiveInterval::findDefinedVNInfoForStackInt(unsigned reg) const {
428 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
429 i != e; ++i) {
430 if ((*i)->getReg() == reg)
431 return *i;
432 }
433 return 0;
Evan Cheng3f32d652008-06-04 09:18:41 +0000434}
435
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000436/// join - Join two live intervals (this, and other) together. This applies
437/// mappings to the value numbers in the LHS/RHS intervals as specified. If
438/// the intervals are not joinable, this aborts.
Lang Hames233a60e2009-11-03 23:52:08 +0000439void LiveInterval::join(LiveInterval &Other,
440 const int *LHSValNoAssignments,
David Greeneaf992f72007-09-06 19:46:46 +0000441 const int *RHSValNoAssignments,
Evan Cheng90f95f82009-06-14 20:22:55 +0000442 SmallVector<VNInfo*, 16> &NewVNInfo,
443 MachineRegisterInfo *MRI) {
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000444 // Determine if any of our live range values are mapped. This is uncommon, so
Evan Cheng34301352007-09-01 02:03:17 +0000445 // we want to avoid the interval scan if not.
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000446 bool MustMapCurValNos = false;
Evan Cheng34301352007-09-01 02:03:17 +0000447 unsigned NumVals = getNumValNums();
448 unsigned NumNewVals = NewVNInfo.size();
449 for (unsigned i = 0; i != NumVals; ++i) {
450 unsigned LHSValID = LHSValNoAssignments[i];
451 if (i != LHSValID ||
Evan Chengf3bb2e62007-09-05 21:46:51 +0000452 (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000453 MustMapCurValNos = true;
Chris Lattnerdeb99712004-07-24 03:41:50 +0000454 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000455
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000456 // If we have to apply a mapping to our base interval assignment, rewrite it
457 // now.
458 if (MustMapCurValNos) {
459 // Map the first live range.
460 iterator OutIt = begin();
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000461 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000462 ++OutIt;
463 for (iterator I = OutIt, E = end(); I != E; ++I) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000464 OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000465
466 // If this live range has the same value # as its immediate predecessor,
467 // and if they are neighbors, remove one LiveRange. This happens when we
468 // have [0,3:0)[4,7:1) and map 0/1 onto the same value #.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000469 if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000470 (OutIt-1)->end = OutIt->end;
471 } else {
472 if (I != OutIt) {
473 OutIt->start = I->start;
474 OutIt->end = I->end;
475 }
476
477 // Didn't merge, on to the next one.
478 ++OutIt;
479 }
480 }
481
482 // If we merge some live ranges, chop off the end.
483 ranges.erase(OutIt, end());
484 }
Evan Cheng4f8ff162007-08-11 00:59:19 +0000485
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000486 // Remember assignements because val# ids are changing.
Evan Cheng34301352007-09-01 02:03:17 +0000487 SmallVector<unsigned, 16> OtherAssignments;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000488 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I)
489 OtherAssignments.push_back(RHSValNoAssignments[I->valno->id]);
490
491 // Update val# info. Renumber them and make sure they all belong to this
Evan Chengf3bb2e62007-09-05 21:46:51 +0000492 // LiveInterval now. Also remove dead val#'s.
493 unsigned NumValNos = 0;
494 for (unsigned i = 0; i < NumNewVals; ++i) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000495 VNInfo *VNI = NewVNInfo[i];
Evan Chengf3bb2e62007-09-05 21:46:51 +0000496 if (VNI) {
Evan Cheng30590f52009-04-28 06:24:09 +0000497 if (NumValNos >= NumVals)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000498 valnos.push_back(VNI);
499 else
500 valnos[NumValNos] = VNI;
501 VNI->id = NumValNos++; // Renumber val#.
Evan Cheng34301352007-09-01 02:03:17 +0000502 }
503 }
Evan Cheng34301352007-09-01 02:03:17 +0000504 if (NumNewVals < NumVals)
505 valnos.resize(NumNewVals); // shrinkify
Evan Cheng4f8ff162007-08-11 00:59:19 +0000506
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000507 // Okay, now insert the RHS live ranges into the LHS.
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000508 iterator InsertPos = begin();
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000509 unsigned RangeNo = 0;
510 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I, ++RangeNo) {
511 // Map the valno in the other live range to the current live range.
512 I->valno = NewVNInfo[OtherAssignments[RangeNo]];
Evan Chengf3bb2e62007-09-05 21:46:51 +0000513 assert(I->valno && "Adding a dead range?");
Chris Lattnerabf295f2004-07-24 02:52:23 +0000514 InsertPos = addRangeFrom(*I, InsertPos);
515 }
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000516
David Greene29ff37f2009-07-22 20:08:25 +0000517 ComputeJoinedWeight(Other);
Chris Lattnerfb449b92004-07-23 17:49:16 +0000518}
519
Chris Lattnerf21f0202006-09-02 05:26:59 +0000520/// MergeRangesInAsValue - Merge all of the intervals in RHS into this live
521/// interval as the specified value number. The LiveRanges in RHS are
522/// allowed to overlap with LiveRanges in the current interval, but only if
523/// the overlapping LiveRanges have the specified value number.
524void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000525 VNInfo *LHSValNo) {
Chris Lattnerf21f0202006-09-02 05:26:59 +0000526 // TODO: Make this more efficient.
527 iterator InsertPos = begin();
528 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000529 // Map the valno in the other live range to the current live range.
Chris Lattnerf21f0202006-09-02 05:26:59 +0000530 LiveRange Tmp = *I;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000531 Tmp.valno = LHSValNo;
Chris Lattnerf21f0202006-09-02 05:26:59 +0000532 InsertPos = addRangeFrom(Tmp, InsertPos);
533 }
534}
535
536
Evan Cheng32dfbea2007-10-12 08:50:34 +0000537/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
538/// in RHS into this live interval as the specified value number.
539/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000540/// current interval, it will replace the value numbers of the overlaped
541/// live ranges with the specified value number.
Lang Hames233a60e2009-11-03 23:52:08 +0000542void LiveInterval::MergeValueInAsValue(
543 const LiveInterval &RHS,
544 const VNInfo *RHSValNo, VNInfo *LHSValNo) {
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000545 SmallVector<VNInfo*, 4> ReplacedValNos;
546 iterator IP = begin();
Evan Cheng32dfbea2007-10-12 08:50:34 +0000547 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
Jakob Stoklund Olesen014b8632010-06-23 15:34:36 +0000548 assert(I->valno == RHS.getValNumInfo(I->valno->id) && "Bad VNInfo");
Evan Cheng32dfbea2007-10-12 08:50:34 +0000549 if (I->valno != RHSValNo)
550 continue;
Lang Hames233a60e2009-11-03 23:52:08 +0000551 SlotIndex Start = I->start, End = I->end;
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000552 IP = std::upper_bound(IP, end(), Start);
553 // If the start of this range overlaps with an existing liverange, trim it.
554 if (IP != begin() && IP[-1].end > Start) {
Evan Cheng294e6522008-01-30 22:44:55 +0000555 if (IP[-1].valno != LHSValNo) {
556 ReplacedValNos.push_back(IP[-1].valno);
557 IP[-1].valno = LHSValNo; // Update val#.
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000558 }
559 Start = IP[-1].end;
560 // Trimmed away the whole range?
561 if (Start >= End) continue;
562 }
563 // If the end of this range overlaps with an existing liverange, trim it.
564 if (IP != end() && End > IP->start) {
565 if (IP->valno != LHSValNo) {
566 ReplacedValNos.push_back(IP->valno);
567 IP->valno = LHSValNo; // Update val#.
568 }
569 End = IP->start;
570 // If this trimmed away the whole range, ignore it.
571 if (Start == End) continue;
572 }
573
Evan Cheng32dfbea2007-10-12 08:50:34 +0000574 // Map the valno in the other live range to the current live range.
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000575 IP = addRangeFrom(LiveRange(Start, End, LHSValNo), IP);
576 }
577
578
579 SmallSet<VNInfo*, 4> Seen;
580 for (unsigned i = 0, e = ReplacedValNos.size(); i != e; ++i) {
581 VNInfo *V1 = ReplacedValNos[i];
582 if (Seen.insert(V1)) {
583 bool isDead = true;
584 for (const_iterator I = begin(), E = end(); I != E; ++I)
585 if (I->valno == V1) {
586 isDead = false;
587 break;
588 }
589 if (isDead) {
Lang Hames6f4e4df2010-07-26 01:49:41 +0000590 // Now that V1 is dead, remove it.
591 markValNoForDeletion(V1);
Evan Cheng3c1f4a42007-10-17 02:13:29 +0000592 }
593 }
Evan Cheng32dfbea2007-10-12 08:50:34 +0000594 }
595}
596
597
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000598/// MergeInClobberRanges - For any live ranges that are not defined in the
599/// current interval, but are defined in the Clobbers interval, mark them
600/// used with an unknown definition value.
Lang Hames233a60e2009-11-03 23:52:08 +0000601void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
602 const LiveInterval &Clobbers,
Benjamin Kramer991de142010-03-30 20:16:45 +0000603 VNInfo::Allocator &VNInfoAllocator) {
Dan Gohmana8c763b2008-08-14 18:13:49 +0000604 if (Clobbers.empty()) return;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000605
Evan Cheng0adb5272009-04-25 09:25:19 +0000606 DenseMap<VNInfo*, VNInfo*> ValNoMaps;
Evan Chenga4b2bab2009-04-25 20:20:15 +0000607 VNInfo *UnusedValNo = 0;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000608 iterator IP = begin();
609 for (const_iterator I = Clobbers.begin(), E = Clobbers.end(); I != E; ++I) {
Evan Cheng0adb5272009-04-25 09:25:19 +0000610 // For every val# in the Clobbers interval, create a new "unknown" val#.
611 VNInfo *ClobberValNo = 0;
612 DenseMap<VNInfo*, VNInfo*>::iterator VI = ValNoMaps.find(I->valno);
613 if (VI != ValNoMaps.end())
614 ClobberValNo = VI->second;
Evan Chenga4b2bab2009-04-25 20:20:15 +0000615 else if (UnusedValNo)
616 ClobberValNo = UnusedValNo;
Evan Cheng0adb5272009-04-25 09:25:19 +0000617 else {
Lang Hames86511252009-09-04 20:41:11 +0000618 UnusedValNo = ClobberValNo =
Lang Hames233a60e2009-11-03 23:52:08 +0000619 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
Evan Cheng0adb5272009-04-25 09:25:19 +0000620 ValNoMaps.insert(std::make_pair(I->valno, ClobberValNo));
621 }
622
Dan Gohman97121ba2009-04-08 00:15:30 +0000623 bool Done = false;
Lang Hames233a60e2009-11-03 23:52:08 +0000624 SlotIndex Start = I->start, End = I->end;
Dan Gohman97121ba2009-04-08 00:15:30 +0000625 // If a clobber range starts before an existing range and ends after
626 // it, the clobber range will need to be split into multiple ranges.
627 // Loop until the entire clobber range is handled.
628 while (!Done) {
629 Done = true;
630 IP = std::upper_bound(IP, end(), Start);
Lang Hames233a60e2009-11-03 23:52:08 +0000631 SlotIndex SubRangeStart = Start;
632 SlotIndex SubRangeEnd = End;
Dan Gohman97121ba2009-04-08 00:15:30 +0000633
634 // If the start of this range overlaps with an existing liverange, trim it.
635 if (IP != begin() && IP[-1].end > SubRangeStart) {
636 SubRangeStart = IP[-1].end;
637 // Trimmed away the whole range?
638 if (SubRangeStart >= SubRangeEnd) continue;
639 }
640 // If the end of this range overlaps with an existing liverange, trim it.
641 if (IP != end() && SubRangeEnd > IP->start) {
642 // If the clobber live range extends beyond the existing live range,
643 // it'll need at least another live range, so set the flag to keep
644 // iterating.
645 if (SubRangeEnd > IP->end) {
646 Start = IP->end;
647 Done = false;
648 }
649 SubRangeEnd = IP->start;
650 // If this trimmed away the whole range, ignore it.
651 if (SubRangeStart == SubRangeEnd) continue;
652 }
653
654 // Insert the clobber interval.
655 IP = addRangeFrom(LiveRange(SubRangeStart, SubRangeEnd, ClobberValNo),
656 IP);
Evan Chenga4b2bab2009-04-25 20:20:15 +0000657 UnusedValNo = 0;
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000658 }
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000659 }
Evan Cheng27e46662009-04-27 17:35:19 +0000660
661 if (UnusedValNo) {
662 // Delete the last unused val#.
663 valnos.pop_back();
Evan Cheng27e46662009-04-27 17:35:19 +0000664 }
Chris Lattnerc114b2c2006-08-25 23:41:24 +0000665}
666
Lang Hames233a60e2009-11-03 23:52:08 +0000667void LiveInterval::MergeInClobberRange(LiveIntervals &li_,
668 SlotIndex Start,
669 SlotIndex End,
Benjamin Kramer991de142010-03-30 20:16:45 +0000670 VNInfo::Allocator &VNInfoAllocator) {
Evan Chenga2e64352009-03-11 00:03:21 +0000671 // Find a value # to use for the clobber ranges. If there is already a value#
672 // for unknown values, use it.
Lang Hames86511252009-09-04 20:41:11 +0000673 VNInfo *ClobberValNo =
Lang Hames233a60e2009-11-03 23:52:08 +0000674 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
Evan Chenga2e64352009-03-11 00:03:21 +0000675
676 iterator IP = begin();
677 IP = std::upper_bound(IP, end(), Start);
678
679 // If the start of this range overlaps with an existing liverange, trim it.
680 if (IP != begin() && IP[-1].end > Start) {
681 Start = IP[-1].end;
682 // Trimmed away the whole range?
683 if (Start >= End) return;
684 }
685 // If the end of this range overlaps with an existing liverange, trim it.
686 if (IP != end() && End > IP->start) {
687 End = IP->start;
688 // If this trimmed away the whole range, ignore it.
689 if (Start == End) return;
690 }
691
692 // Insert the clobber interval.
693 addRangeFrom(LiveRange(Start, End, ClobberValNo), IP);
694}
695
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000696/// MergeValueNumberInto - This method is called when two value nubmers
697/// are found to be equivalent. This eliminates V1, replacing all
698/// LiveRanges with the V1 value number with the V2 value number. This can
699/// cause merging of V1/V2 values numbers and compaction of the value space.
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000700VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000701 assert(V1 != V2 && "Identical value#'s are always equivalent!");
702
703 // This code actually merges the (numerically) larger value number into the
704 // smaller value number, which is likely to allow us to compactify the value
705 // space. The only thing we have to be careful of is to preserve the
706 // instruction that defines the result value.
707
708 // Make sure V2 is smaller than V1.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000709 if (V1->id < V2->id) {
Lang Hames52c1afc2009-08-10 23:43:28 +0000710 V1->copyFrom(*V2);
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000711 std::swap(V1, V2);
712 }
713
714 // Merge V1 live ranges into V2.
715 for (iterator I = begin(); I != end(); ) {
716 iterator LR = I++;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000717 if (LR->valno != V1) continue; // Not a V1 LiveRange.
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000718
719 // Okay, we found a V1 live range. If it had a previous, touching, V2 live
720 // range, extend it.
721 if (LR != begin()) {
722 iterator Prev = LR-1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000723 if (Prev->valno == V2 && Prev->end == LR->start) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000724 Prev->end = LR->end;
725
726 // Erase this live-range.
727 ranges.erase(LR);
728 I = Prev+1;
729 LR = Prev;
730 }
731 }
732
733 // Okay, now we have a V1 or V2 live range that is maximally merged forward.
734 // Ensure that it is a V2 live-range.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000735 LR->valno = V2;
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000736
737 // If we can merge it into later V2 live ranges, do so now. We ignore any
738 // following V1 live ranges, as they will be merged in subsequent iterations
739 // of the loop.
740 if (I != end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000741 if (I->start == LR->end && I->valno == V2) {
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000742 LR->end = I->end;
743 ranges.erase(I);
744 I = LR+1;
745 }
746 }
747 }
Chris Lattnerc82b3aa2006-08-24 23:22:59 +0000748
Lang Hames6f4e4df2010-07-26 01:49:41 +0000749 // Now that V1 is dead, remove it.
750 markValNoForDeletion(V1);
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000751
752 return V2;
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000753}
754
Evan Cheng32dfbea2007-10-12 08:50:34 +0000755void LiveInterval::Copy(const LiveInterval &RHS,
Evan Cheng90f95f82009-06-14 20:22:55 +0000756 MachineRegisterInfo *MRI,
Benjamin Kramer991de142010-03-30 20:16:45 +0000757 VNInfo::Allocator &VNInfoAllocator) {
Evan Cheng32dfbea2007-10-12 08:50:34 +0000758 ranges.clear();
759 valnos.clear();
Evan Cheng358dec52009-06-15 08:28:29 +0000760 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
Evan Cheng90f95f82009-06-14 20:22:55 +0000761 MRI->setRegAllocationHint(reg, Hint.first, Hint.second);
762
Evan Cheng32dfbea2007-10-12 08:50:34 +0000763 weight = RHS.weight;
764 for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) {
765 const VNInfo *VNI = RHS.getValNumInfo(i);
Lang Hames857c4e02009-06-17 21:01:20 +0000766 createValueCopy(VNI, VNInfoAllocator);
Evan Cheng32dfbea2007-10-12 08:50:34 +0000767 }
768 for (unsigned i = 0, e = RHS.ranges.size(); i != e; ++i) {
769 const LiveRange &LR = RHS.ranges[i];
770 addRange(LiveRange(LR.start, LR.end, getValNumInfo(LR.valno->id)));
771 }
772}
773
Evan Chenge52eef82007-04-17 20:25:11 +0000774unsigned LiveInterval::getSize() const {
775 unsigned Sum = 0;
776 for (const_iterator I = begin(), E = end(); I != E; ++I)
Lang Hames86511252009-09-04 20:41:11 +0000777 Sum += I->start.distance(I->end);
Evan Chenge52eef82007-04-17 20:25:11 +0000778 return Sum;
779}
780
David Greene29ff37f2009-07-22 20:08:25 +0000781/// ComputeJoinedWeight - Set the weight of a live interval Joined
782/// after Other has been merged into it.
783void LiveInterval::ComputeJoinedWeight(const LiveInterval &Other) {
784 // If either of these intervals was spilled, the weight is the
785 // weight of the non-spilled interval. This can only happen with
786 // iterative coalescers.
787
David Greene92b78bb2009-07-22 22:32:19 +0000788 if (Other.weight != HUGE_VALF) {
789 weight += Other.weight;
790 }
791 else if (weight == HUGE_VALF &&
David Greene29ff37f2009-07-22 20:08:25 +0000792 !TargetRegisterInfo::isPhysicalRegister(reg)) {
793 // Remove this assert if you have an iterative coalescer
794 assert(0 && "Joining to spilled interval");
795 weight = Other.weight;
796 }
David Greene29ff37f2009-07-22 20:08:25 +0000797 else {
798 // Otherwise the weight stays the same
799 // Remove this assert if you have an iterative coalescer
800 assert(0 && "Joining from spilled interval");
801 }
802}
803
Daniel Dunbar1cd1d982009-07-24 10:36:58 +0000804raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) {
805 return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
806}
Chris Lattnerfb449b92004-07-23 17:49:16 +0000807
Chris Lattnerabf295f2004-07-24 02:52:23 +0000808void LiveRange::dump() const {
David Greene52421542010-01-04 22:41:43 +0000809 dbgs() << *this << "\n";
Chris Lattnerabf295f2004-07-24 02:52:23 +0000810}
811
Chris Lattnerc02497f2009-08-23 03:47:42 +0000812void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
Evan Cheng99ec7792008-06-23 21:03:19 +0000813 if (isStackSlot())
814 OS << "SS#" << getStackSlotIndex();
Evan Cheng3f32d652008-06-04 09:18:41 +0000815 else if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000816 OS << TRI->getName(reg);
Chris Lattner38135af2005-05-14 05:34:15 +0000817 else
818 OS << "%reg" << reg;
Chris Lattnerabf295f2004-07-24 02:52:23 +0000819
Chris Lattner38135af2005-05-14 05:34:15 +0000820 OS << ',' << weight;
Chris Lattnerfb449b92004-07-23 17:49:16 +0000821
Chris Lattner38135af2005-05-14 05:34:15 +0000822 if (empty())
Evan Cheng3f32d652008-06-04 09:18:41 +0000823 OS << " EMPTY";
Chris Lattner38135af2005-05-14 05:34:15 +0000824 else {
825 OS << " = ";
826 for (LiveInterval::Ranges::const_iterator I = ranges.begin(),
Jakob Stoklund Olesen014b8632010-06-23 15:34:36 +0000827 E = ranges.end(); I != E; ++I) {
828 OS << *I;
829 assert(I->valno == getValNumInfo(I->valno->id) && "Bad VNInfo");
830 }
Chris Lattner38135af2005-05-14 05:34:15 +0000831 }
Jakob Stoklund Olesen15a57142010-06-25 22:53:05 +0000832
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000833 // Print value number info.
Chris Lattner6d8fbef2006-08-29 23:18:15 +0000834 if (getNumValNums()) {
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000835 OS << " ";
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000836 unsigned vnum = 0;
837 for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
838 ++i, ++vnum) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000839 const VNInfo *vni = *i;
Evan Cheng1a66f0a2007-08-28 08:28:51 +0000840 if (vnum) OS << " ";
841 OS << vnum << "@";
Lang Hames857c4e02009-06-17 21:01:20 +0000842 if (vni->isUnused()) {
Evan Cheng8df78602007-08-08 03:00:28 +0000843 OS << "x";
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000844 } else {
Lang Hames61945692009-12-09 05:39:12 +0000845 if (!vni->isDefAccurate() && !vni->isPHIDef())
Evan Cheng4f8ff162007-08-11 00:59:19 +0000846 OS << "?";
847 else
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000848 OS << vni->def;
Jakob Stoklund Olesend9f6ec92010-07-13 21:19:05 +0000849 if (vni->hasPHIKill())
850 OS << "-phikill";
851 if (vni->hasRedefByEC())
852 OS << "-ec";
Evan Chenga8d94f12007-08-07 23:49:57 +0000853 }
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000854 }
855 }
Chris Lattnerfb449b92004-07-23 17:49:16 +0000856}
Chris Lattnerabf295f2004-07-24 02:52:23 +0000857
858void LiveInterval::dump() const {
David Greene52421542010-01-04 22:41:43 +0000859 dbgs() << *this << "\n";
Chris Lattnerabf295f2004-07-24 02:52:23 +0000860}
Jeff Cohenc21c5ee2006-12-15 22:57:14 +0000861
862
Daniel Dunbar1cd1d982009-07-24 10:36:58 +0000863void LiveRange::print(raw_ostream &os) const {
864 os << *this;
865}