blob: b09ffd48e64dffb15bd5214d187d7d6fb38d0b53 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LiveInterval.cpp - Live Interval Representation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
13// such that v is live at j' abd there is no instruction with number i' < i such
14// 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
21#include "llvm/CodeGen/LiveInterval.h"
Evan Cheng303fed82007-10-17 02:13:29 +000022#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/ADT/STLExtras.h"
24#include "llvm/Support/Streams.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000025#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include <algorithm>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include <ostream>
28using namespace llvm;
29
30// An example for liveAt():
31//
32// this = [1,4), liveAt(0) will return false. The instruction defining this
33// spans slots [0,3]. The interval belongs to an spilled definition of the
34// variable it represents. This is because slot 1 is used (def slot) and spans
35// up to slot 3 (store slot).
36//
37bool LiveInterval::liveAt(unsigned I) const {
38 Ranges::const_iterator r = std::upper_bound(ranges.begin(), ranges.end(), I);
39
40 if (r == ranges.begin())
41 return false;
42
43 --r;
44 return r->contains(I);
45}
46
47// overlaps - Return true if the intersection of the two live intervals is
48// not empty.
49//
50// An example for overlaps():
51//
52// 0: A = ...
53// 4: B = ...
54// 8: C = A + B ;; last use of A
55//
56// The live intervals should look like:
57//
58// A = [3, 11)
59// B = [7, x)
60// C = [11, y)
61//
62// A->overlaps(C) should return false since we want to be able to join
63// A and C.
64//
65bool LiveInterval::overlapsFrom(const LiveInterval& other,
66 const_iterator StartPos) const {
67 const_iterator i = begin();
68 const_iterator ie = end();
69 const_iterator j = StartPos;
70 const_iterator je = other.end();
71
72 assert((StartPos->start <= i->start || StartPos == other.begin()) &&
73 StartPos != other.end() && "Bogus start position hint!");
74
75 if (i->start < j->start) {
76 i = std::upper_bound(i, ie, j->start);
77 if (i != ranges.begin()) --i;
78 } else if (j->start < i->start) {
79 ++StartPos;
80 if (StartPos != other.end() && StartPos->start <= i->start) {
81 assert(StartPos < other.end() && i < end());
82 j = std::upper_bound(j, je, i->start);
83 if (j != other.ranges.begin()) --j;
84 }
85 } else {
86 return true;
87 }
88
89 if (j == je) return false;
90
91 while (i != ie) {
92 if (i->start > j->start) {
93 std::swap(i, j);
94 std::swap(ie, je);
95 }
96
97 if (i->end > j->start)
98 return true;
99 ++i;
100 }
101
102 return false;
103}
104
105/// extendIntervalEndTo - This method is used when we want to extend the range
106/// specified by I to end at the specified endpoint. To do this, we should
107/// merge and eliminate all ranges that this will overlap with. The iterator is
108/// not invalidated.
109void LiveInterval::extendIntervalEndTo(Ranges::iterator I, unsigned NewEnd) {
110 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng983b81d2007-08-29 20:45:00 +0000111 VNInfo *ValNo = I->valno;
Evan Cheng2d88a7b2007-08-14 01:56:58 +0000112 unsigned OldEnd = I->end;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113
114 // Search for the first interval that we can't merge with.
115 Ranges::iterator MergeTo = next(I);
116 for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000117 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 }
119
120 // If NewEnd was in the middle of an interval, make sure to get its endpoint.
121 I->end = std::max(NewEnd, prior(MergeTo)->end);
122
123 // Erase any dead ranges.
124 ranges.erase(next(I), MergeTo);
Evan Cheng816a7f32007-08-11 00:59:19 +0000125
126 // Update kill info.
Evan Cheng319802c2007-09-05 21:46:51 +0000127 removeKills(ValNo, OldEnd, I->end-1);
Evan Cheng816a7f32007-08-11 00:59:19 +0000128
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 // If the newly formed range now touches the range after it and if they have
130 // the same value number, merge the two ranges into one range.
131 Ranges::iterator Next = next(I);
Evan Cheng983b81d2007-08-29 20:45:00 +0000132 if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 I->end = Next->end;
134 ranges.erase(Next);
135 }
136}
137
138
139/// extendIntervalStartTo - This method is used when we want to extend the range
140/// specified by I to start at the specified endpoint. To do this, we should
141/// merge and eliminate all ranges that this will overlap with.
142LiveInterval::Ranges::iterator
143LiveInterval::extendIntervalStartTo(Ranges::iterator I, unsigned NewStart) {
144 assert(I != ranges.end() && "Not a valid interval!");
Evan Cheng983b81d2007-08-29 20:45:00 +0000145 VNInfo *ValNo = I->valno;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146
147 // Search for the first interval that we can't merge with.
148 Ranges::iterator MergeTo = I;
149 do {
150 if (MergeTo == ranges.begin()) {
151 I->start = NewStart;
152 ranges.erase(MergeTo, I);
153 return I;
154 }
Evan Cheng983b81d2007-08-29 20:45:00 +0000155 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 --MergeTo;
157 } while (NewStart <= MergeTo->start);
158
159 // If we start in the middle of another interval, just delete a range and
160 // extend that interval.
Evan Cheng983b81d2007-08-29 20:45:00 +0000161 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 MergeTo->end = I->end;
163 } else {
164 // Otherwise, extend the interval right after.
165 ++MergeTo;
166 MergeTo->start = NewStart;
167 MergeTo->end = I->end;
168 }
169
170 ranges.erase(next(MergeTo), next(I));
171 return MergeTo;
172}
173
174LiveInterval::iterator
175LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
176 unsigned Start = LR.start, End = LR.end;
177 iterator it = std::upper_bound(From, ranges.end(), Start);
178
179 // If the inserted interval starts in the middle or right at the end of
180 // another interval, just extend that interval to contain the range of LR.
181 if (it != ranges.begin()) {
182 iterator B = prior(it);
Evan Cheng983b81d2007-08-29 20:45:00 +0000183 if (LR.valno == B->valno) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 if (B->start <= Start && B->end >= Start) {
185 extendIntervalEndTo(B, End);
186 return B;
187 }
188 } else {
189 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng983b81d2007-08-29 20:45:00 +0000190 // different valno's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 assert(B->end <= Start &&
192 "Cannot overlap two LiveRanges with differing ValID's"
193 " (did you def the same reg twice in a MachineInstr?)");
194 }
195 }
196
197 // Otherwise, if this range ends in the middle of, or right next to, another
198 // interval, merge it into that interval.
199 if (it != ranges.end())
Evan Cheng983b81d2007-08-29 20:45:00 +0000200 if (LR.valno == it->valno) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 if (it->start <= End) {
202 it = extendIntervalStartTo(it, Start);
203
204 // If LR is a complete superset of an interval, we may need to grow its
205 // endpoint as well.
206 if (End > it->end)
207 extendIntervalEndTo(it, End);
Evan Cheng8b70e632007-11-29 09:49:23 +0000208 else if (End < it->end)
Evan Cheng1f458152007-11-29 01:05:47 +0000209 // Overlapping intervals, there might have been a kill here.
210 removeKill(it->valno, End);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 return it;
212 }
213 } else {
214 // Check to make sure that we are not overlapping two live ranges with
Evan Cheng983b81d2007-08-29 20:45:00 +0000215 // different valno's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 assert(it->start >= End &&
217 "Cannot overlap two LiveRanges with differing ValID's");
218 }
219
220 // Otherwise, this is just a new range that doesn't interact with anything.
221 // Insert it.
222 return ranges.insert(it, LR);
223}
224
225
226/// removeRange - Remove the specified range from this interval. Note that
227/// the range must already be in this interval in its entirety.
Evan Cheng49208cf2008-02-13 02:48:26 +0000228void LiveInterval::removeRange(unsigned Start, unsigned End,
229 bool RemoveDeadValNo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 // Find the LiveRange containing this span.
231 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
232 assert(I != ranges.begin() && "Range is not in interval!");
233 --I;
234 assert(I->contains(Start) && I->contains(End-1) &&
235 "Range is not entirely in interval!");
236
237 // If the span we are removing is at the start of the LiveRange, adjust it.
Evan Cheng49208cf2008-02-13 02:48:26 +0000238 VNInfo *ValNo = I->valno;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 if (I->start == Start) {
Evan Cheng816a7f32007-08-11 00:59:19 +0000240 if (I->end == End) {
Evan Cheng319802c2007-09-05 21:46:51 +0000241 removeKills(I->valno, Start, End);
Evan Cheng49208cf2008-02-13 02:48:26 +0000242 if (RemoveDeadValNo) {
243 // Check if val# is dead.
244 bool isDead = true;
245 for (const_iterator II = begin(), EE = end(); II != EE; ++II)
246 if (II != I && II->valno == ValNo) {
247 isDead = false;
248 break;
249 }
250 if (isDead) {
251 // Now that ValNo is dead, remove it. If it is the largest value
252 // number, just nuke it (and any other deleted values neighboring it),
253 // otherwise mark it as ~1U so it can be nuked later.
254 if (ValNo->id == getNumValNums()-1) {
255 do {
256 VNInfo *VNI = valnos.back();
257 valnos.pop_back();
258 VNI->~VNInfo();
259 } while (!valnos.empty() && valnos.back()->def == ~1U);
260 } else {
261 ValNo->def = ~1U;
262 }
263 }
264 }
265
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 ranges.erase(I); // Removed the whole LiveRange.
Evan Cheng816a7f32007-08-11 00:59:19 +0000267 } else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268 I->start = End;
269 return;
270 }
271
272 // Otherwise if the span we are removing is at the end of the LiveRange,
273 // adjust the other way.
274 if (I->end == End) {
Evan Cheng49208cf2008-02-13 02:48:26 +0000275 removeKills(ValNo, Start, End);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 I->end = Start;
277 return;
278 }
279
280 // Otherwise, we are splitting the LiveRange into two pieces.
281 unsigned OldEnd = I->end;
282 I->end = Start; // Trim the old interval.
283
284 // Insert the new one.
Evan Cheng49208cf2008-02-13 02:48:26 +0000285 ranges.insert(next(I), LiveRange(End, OldEnd, ValNo));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286}
287
Evan Cheng49208cf2008-02-13 02:48:26 +0000288/// removeValNo - Remove all the ranges defined by the specified value#.
289/// Also remove the value# from value# list.
290void LiveInterval::removeValNo(VNInfo *ValNo) {
291 if (empty()) return;
292 Ranges::iterator I = ranges.end();
293 Ranges::iterator E = ranges.begin();
294 do {
295 --I;
296 if (I->valno == ValNo)
297 ranges.erase(I);
298 } while (I != E);
299 // Now that ValNo is dead, remove it. If it is the largest value
300 // number, just nuke it (and any other deleted values neighboring it),
301 // otherwise mark it as ~1U so it can be nuked later.
302 if (ValNo->id == getNumValNums()-1) {
303 do {
304 VNInfo *VNI = valnos.back();
305 valnos.pop_back();
306 VNI->~VNInfo();
307 } while (!valnos.empty() && valnos.back()->def == ~1U);
308 } else {
309 ValNo->def = ~1U;
310 }
311}
312
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313/// getLiveRangeContaining - Return the live range that contains the
314/// specified index, or null if there is none.
315LiveInterval::const_iterator
316LiveInterval::FindLiveRangeContaining(unsigned Idx) const {
317 const_iterator It = std::upper_bound(begin(), end(), Idx);
318 if (It != ranges.begin()) {
319 --It;
320 if (It->contains(Idx))
321 return It;
322 }
323
324 return end();
325}
326
327LiveInterval::iterator
328LiveInterval::FindLiveRangeContaining(unsigned Idx) {
329 iterator It = std::upper_bound(begin(), end(), Idx);
330 if (It != begin()) {
331 --It;
332 if (It->contains(Idx))
333 return It;
334 }
335
336 return end();
337}
338
339/// join - Join two live intervals (this, and other) together. This applies
340/// mappings to the value numbers in the LHS/RHS intervals as specified. If
341/// the intervals are not joinable, this aborts.
David Greenee97f0772007-09-06 19:46:46 +0000342void LiveInterval::join(LiveInterval &Other, const int *LHSValNoAssignments,
343 const int *RHSValNoAssignments,
Evan Cheng983b81d2007-08-29 20:45:00 +0000344 SmallVector<VNInfo*, 16> &NewVNInfo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 // Determine if any of our live range values are mapped. This is uncommon, so
Evan Cheng8b7533e2007-09-01 02:03:17 +0000346 // we want to avoid the interval scan if not.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 bool MustMapCurValNos = false;
Evan Cheng8b7533e2007-09-01 02:03:17 +0000348 unsigned NumVals = getNumValNums();
349 unsigned NumNewVals = NewVNInfo.size();
350 for (unsigned i = 0; i != NumVals; ++i) {
351 unsigned LHSValID = LHSValNoAssignments[i];
352 if (i != LHSValID ||
Evan Cheng319802c2007-09-05 21:46:51 +0000353 (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 MustMapCurValNos = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 }
Evan Cheng983b81d2007-08-29 20:45:00 +0000356
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 // If we have to apply a mapping to our base interval assignment, rewrite it
358 // now.
359 if (MustMapCurValNos) {
360 // Map the first live range.
361 iterator OutIt = begin();
Evan Cheng983b81d2007-08-29 20:45:00 +0000362 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 ++OutIt;
364 for (iterator I = OutIt, E = end(); I != E; ++I) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000365 OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366
367 // If this live range has the same value # as its immediate predecessor,
368 // and if they are neighbors, remove one LiveRange. This happens when we
369 // have [0,3:0)[4,7:1) and map 0/1 onto the same value #.
Evan Cheng983b81d2007-08-29 20:45:00 +0000370 if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 (OutIt-1)->end = OutIt->end;
372 } else {
373 if (I != OutIt) {
374 OutIt->start = I->start;
375 OutIt->end = I->end;
376 }
377
378 // Didn't merge, on to the next one.
379 ++OutIt;
380 }
381 }
382
383 // If we merge some live ranges, chop off the end.
384 ranges.erase(OutIt, end());
385 }
Evan Cheng816a7f32007-08-11 00:59:19 +0000386
Evan Cheng983b81d2007-08-29 20:45:00 +0000387 // Remember assignements because val# ids are changing.
Evan Cheng8b7533e2007-09-01 02:03:17 +0000388 SmallVector<unsigned, 16> OtherAssignments;
Evan Cheng983b81d2007-08-29 20:45:00 +0000389 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I)
390 OtherAssignments.push_back(RHSValNoAssignments[I->valno->id]);
391
392 // Update val# info. Renumber them and make sure they all belong to this
Evan Cheng319802c2007-09-05 21:46:51 +0000393 // LiveInterval now. Also remove dead val#'s.
394 unsigned NumValNos = 0;
395 for (unsigned i = 0; i < NumNewVals; ++i) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000396 VNInfo *VNI = NewVNInfo[i];
Evan Cheng319802c2007-09-05 21:46:51 +0000397 if (VNI) {
398 if (i >= NumVals)
399 valnos.push_back(VNI);
400 else
401 valnos[NumValNos] = VNI;
402 VNI->id = NumValNos++; // Renumber val#.
Evan Cheng8b7533e2007-09-01 02:03:17 +0000403 }
404 }
Evan Cheng8b7533e2007-09-01 02:03:17 +0000405 if (NumNewVals < NumVals)
406 valnos.resize(NumNewVals); // shrinkify
Evan Cheng816a7f32007-08-11 00:59:19 +0000407
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408 // Okay, now insert the RHS live ranges into the LHS.
409 iterator InsertPos = begin();
Evan Cheng983b81d2007-08-29 20:45:00 +0000410 unsigned RangeNo = 0;
411 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I, ++RangeNo) {
412 // Map the valno in the other live range to the current live range.
413 I->valno = NewVNInfo[OtherAssignments[RangeNo]];
Evan Cheng319802c2007-09-05 21:46:51 +0000414 assert(I->valno && "Adding a dead range?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 InsertPos = addRangeFrom(*I, InsertPos);
416 }
417
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 weight += Other.weight;
419 if (Other.preference && !preference)
420 preference = Other.preference;
421}
422
423/// MergeRangesInAsValue - Merge all of the intervals in RHS into this live
424/// interval as the specified value number. The LiveRanges in RHS are
425/// allowed to overlap with LiveRanges in the current interval, but only if
426/// the overlapping LiveRanges have the specified value number.
427void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS,
Evan Cheng983b81d2007-08-29 20:45:00 +0000428 VNInfo *LHSValNo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000429 // TODO: Make this more efficient.
430 iterator InsertPos = begin();
431 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000432 // Map the valno in the other live range to the current live range.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 LiveRange Tmp = *I;
Evan Cheng983b81d2007-08-29 20:45:00 +0000434 Tmp.valno = LHSValNo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 InsertPos = addRangeFrom(Tmp, InsertPos);
436 }
437}
438
439
Evan Cheng687d1082007-10-12 08:50:34 +0000440/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
441/// in RHS into this live interval as the specified value number.
442/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
Evan Cheng303fed82007-10-17 02:13:29 +0000443/// current interval, it will replace the value numbers of the overlaped
444/// live ranges with the specified value number.
Evan Cheng687d1082007-10-12 08:50:34 +0000445void LiveInterval::MergeValueInAsValue(const LiveInterval &RHS,
Evan Cheng06582a02007-10-14 10:08:34 +0000446 const VNInfo *RHSValNo, VNInfo *LHSValNo) {
Evan Cheng303fed82007-10-17 02:13:29 +0000447 SmallVector<VNInfo*, 4> ReplacedValNos;
448 iterator IP = begin();
Evan Cheng687d1082007-10-12 08:50:34 +0000449 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
450 if (I->valno != RHSValNo)
451 continue;
Evan Cheng303fed82007-10-17 02:13:29 +0000452 unsigned Start = I->start, End = I->end;
453 IP = std::upper_bound(IP, end(), Start);
454 // If the start of this range overlaps with an existing liverange, trim it.
455 if (IP != begin() && IP[-1].end > Start) {
Evan Chengc7fe7be2008-01-30 22:44:55 +0000456 if (IP[-1].valno != LHSValNo) {
457 ReplacedValNos.push_back(IP[-1].valno);
458 IP[-1].valno = LHSValNo; // Update val#.
Evan Cheng303fed82007-10-17 02:13:29 +0000459 }
460 Start = IP[-1].end;
461 // Trimmed away the whole range?
462 if (Start >= End) continue;
463 }
464 // If the end of this range overlaps with an existing liverange, trim it.
465 if (IP != end() && End > IP->start) {
466 if (IP->valno != LHSValNo) {
467 ReplacedValNos.push_back(IP->valno);
468 IP->valno = LHSValNo; // Update val#.
469 }
470 End = IP->start;
471 // If this trimmed away the whole range, ignore it.
472 if (Start == End) continue;
473 }
474
Evan Cheng687d1082007-10-12 08:50:34 +0000475 // Map the valno in the other live range to the current live range.
Evan Cheng303fed82007-10-17 02:13:29 +0000476 IP = addRangeFrom(LiveRange(Start, End, LHSValNo), IP);
477 }
478
479
480 SmallSet<VNInfo*, 4> Seen;
481 for (unsigned i = 0, e = ReplacedValNos.size(); i != e; ++i) {
482 VNInfo *V1 = ReplacedValNos[i];
483 if (Seen.insert(V1)) {
484 bool isDead = true;
485 for (const_iterator I = begin(), E = end(); I != E; ++I)
486 if (I->valno == V1) {
487 isDead = false;
488 break;
489 }
490 if (isDead) {
491 // Now that V1 is dead, remove it. If it is the largest value number,
492 // just nuke it (and any other deleted values neighboring it), otherwise
493 // mark it as ~1U so it can be nuked later.
494 if (V1->id == getNumValNums()-1) {
495 do {
496 VNInfo *VNI = valnos.back();
497 valnos.pop_back();
498 VNI->~VNInfo();
Evan Cheng49208cf2008-02-13 02:48:26 +0000499 } while (!valnos.empty() && valnos.back()->def == ~1U);
Evan Cheng303fed82007-10-17 02:13:29 +0000500 } else {
501 V1->def = ~1U;
502 }
503 }
504 }
Evan Cheng687d1082007-10-12 08:50:34 +0000505 }
506}
507
508
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509/// MergeInClobberRanges - For any live ranges that are not defined in the
510/// current interval, but are defined in the Clobbers interval, mark them
511/// used with an unknown definition value.
Evan Cheng319802c2007-09-05 21:46:51 +0000512void LiveInterval::MergeInClobberRanges(const LiveInterval &Clobbers,
513 BumpPtrAllocator &VNInfoAllocator) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 if (Clobbers.begin() == Clobbers.end()) return;
515
516 // Find a value # to use for the clobber ranges. If there is already a value#
517 // for unknown values, use it.
518 // FIXME: Use a single sentinal number for these!
Evan Cheng319802c2007-09-05 21:46:51 +0000519 VNInfo *ClobberValNo = getNextValue(~0U, 0, VNInfoAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520
521 iterator IP = begin();
522 for (const_iterator I = Clobbers.begin(), E = Clobbers.end(); I != E; ++I) {
523 unsigned Start = I->start, End = I->end;
524 IP = std::upper_bound(IP, end(), Start);
525
526 // If the start of this range overlaps with an existing liverange, trim it.
527 if (IP != begin() && IP[-1].end > Start) {
528 Start = IP[-1].end;
529 // Trimmed away the whole range?
530 if (Start >= End) continue;
531 }
532 // If the end of this range overlaps with an existing liverange, trim it.
533 if (IP != end() && End > IP->start) {
534 End = IP->start;
535 // If this trimmed away the whole range, ignore it.
536 if (Start == End) continue;
537 }
538
539 // Insert the clobber interval.
540 IP = addRangeFrom(LiveRange(Start, End, ClobberValNo), IP);
541 }
542}
543
544/// MergeValueNumberInto - This method is called when two value nubmers
545/// are found to be equivalent. This eliminates V1, replacing all
546/// LiveRanges with the V1 value number with the V2 value number. This can
547/// cause merging of V1/V2 values numbers and compaction of the value space.
Evan Cheng983b81d2007-08-29 20:45:00 +0000548void LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 assert(V1 != V2 && "Identical value#'s are always equivalent!");
550
551 // This code actually merges the (numerically) larger value number into the
552 // smaller value number, which is likely to allow us to compactify the value
553 // space. The only thing we have to be careful of is to preserve the
554 // instruction that defines the result value.
555
556 // Make sure V2 is smaller than V1.
Evan Cheng983b81d2007-08-29 20:45:00 +0000557 if (V1->id < V2->id) {
Evan Cheng319802c2007-09-05 21:46:51 +0000558 copyValNumInfo(V1, V2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559 std::swap(V1, V2);
560 }
561
562 // Merge V1 live ranges into V2.
563 for (iterator I = begin(); I != end(); ) {
564 iterator LR = I++;
Evan Cheng983b81d2007-08-29 20:45:00 +0000565 if (LR->valno != V1) continue; // Not a V1 LiveRange.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566
567 // Okay, we found a V1 live range. If it had a previous, touching, V2 live
568 // range, extend it.
569 if (LR != begin()) {
570 iterator Prev = LR-1;
Evan Cheng983b81d2007-08-29 20:45:00 +0000571 if (Prev->valno == V2 && Prev->end == LR->start) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 Prev->end = LR->end;
573
574 // Erase this live-range.
575 ranges.erase(LR);
576 I = Prev+1;
577 LR = Prev;
578 }
579 }
580
581 // Okay, now we have a V1 or V2 live range that is maximally merged forward.
582 // Ensure that it is a V2 live-range.
Evan Cheng983b81d2007-08-29 20:45:00 +0000583 LR->valno = V2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584
585 // If we can merge it into later V2 live ranges, do so now. We ignore any
586 // following V1 live ranges, as they will be merged in subsequent iterations
587 // of the loop.
588 if (I != end()) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000589 if (I->start == LR->end && I->valno == V2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 LR->end = I->end;
591 ranges.erase(I);
592 I = LR+1;
593 }
594 }
595 }
596
597 // Now that V1 is dead, remove it. If it is the largest value number, just
598 // nuke it (and any other deleted values neighboring it), otherwise mark it as
599 // ~1U so it can be nuked later.
Evan Cheng983b81d2007-08-29 20:45:00 +0000600 if (V1->id == getNumValNums()-1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 do {
Evan Cheng27344d42007-09-06 01:07:24 +0000602 VNInfo *VNI = valnos.back();
Evan Cheng983b81d2007-08-29 20:45:00 +0000603 valnos.pop_back();
Evan Cheng27344d42007-09-06 01:07:24 +0000604 VNI->~VNInfo();
Evan Cheng983b81d2007-08-29 20:45:00 +0000605 } while (valnos.back()->def == ~1U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 } else {
Evan Cheng983b81d2007-08-29 20:45:00 +0000607 V1->def = ~1U;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 }
609}
610
Evan Cheng687d1082007-10-12 08:50:34 +0000611void LiveInterval::Copy(const LiveInterval &RHS,
612 BumpPtrAllocator &VNInfoAllocator) {
613 ranges.clear();
614 valnos.clear();
615 preference = RHS.preference;
616 weight = RHS.weight;
617 for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) {
618 const VNInfo *VNI = RHS.getValNumInfo(i);
619 VNInfo *NewVNI = getNextValue(~0U, 0, VNInfoAllocator);
620 copyValNumInfo(NewVNI, VNI);
621 }
622 for (unsigned i = 0, e = RHS.ranges.size(); i != e; ++i) {
623 const LiveRange &LR = RHS.ranges[i];
624 addRange(LiveRange(LR.start, LR.end, getValNumInfo(LR.valno->id)));
625 }
626}
627
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628unsigned LiveInterval::getSize() const {
629 unsigned Sum = 0;
630 for (const_iterator I = begin(), E = end(); I != E; ++I)
631 Sum += I->end - I->start;
632 return Sum;
633}
634
635std::ostream& llvm::operator<<(std::ostream& os, const LiveRange &LR) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000636 return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637}
638
639void LiveRange::dump() const {
640 cerr << *this << "\n";
641}
642
Dan Gohman1e57df32008-02-10 18:45:23 +0000643void LiveInterval::print(std::ostream &OS,
644 const TargetRegisterInfo *TRI) const {
645 if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
646 OS << TRI->getName(reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 else
648 OS << "%reg" << reg;
649
650 OS << ',' << weight;
651
652 if (empty())
653 OS << "EMPTY";
654 else {
655 OS << " = ";
656 for (LiveInterval::Ranges::const_iterator I = ranges.begin(),
657 E = ranges.end(); I != E; ++I)
658 OS << *I;
659 }
660
661 // Print value number info.
662 if (getNumValNums()) {
663 OS << " ";
Evan Chengba990522007-08-28 08:28:51 +0000664 unsigned vnum = 0;
665 for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
666 ++i, ++vnum) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000667 const VNInfo *vni = *i;
Evan Chengba990522007-08-28 08:28:51 +0000668 if (vnum) OS << " ";
669 OS << vnum << "@";
Evan Cheng983b81d2007-08-29 20:45:00 +0000670 if (vni->def == ~1U) {
Evan Cheng58c2b762007-08-08 03:00:28 +0000671 OS << "x";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 } else {
Evan Cheng983b81d2007-08-29 20:45:00 +0000673 if (vni->def == ~0U)
Evan Cheng816a7f32007-08-11 00:59:19 +0000674 OS << "?";
675 else
Evan Cheng983b81d2007-08-29 20:45:00 +0000676 OS << vni->def;
677 unsigned ee = vni->kills.size();
Evan Cheng49208cf2008-02-13 02:48:26 +0000678 if (ee || vni->hasPHIKill) {
Evan Cheng816a7f32007-08-11 00:59:19 +0000679 OS << "-(";
Evan Chengba990522007-08-28 08:28:51 +0000680 for (unsigned j = 0; j != ee; ++j) {
Evan Cheng983b81d2007-08-29 20:45:00 +0000681 OS << vni->kills[j];
Evan Chengba990522007-08-28 08:28:51 +0000682 if (j != ee-1)
Evan Cheng816a7f32007-08-11 00:59:19 +0000683 OS << " ";
684 }
Evan Cheng49208cf2008-02-13 02:48:26 +0000685 if (vni->hasPHIKill) {
686 if (ee)
687 OS << " ";
688 OS << "phi";
689 }
Evan Cheng816a7f32007-08-11 00:59:19 +0000690 OS << ")";
691 }
Evan Cheng4151fde2007-08-07 23:49:57 +0000692 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693 }
694 }
695}
696
697void LiveInterval::dump() const {
698 cerr << *this << "\n";
699}
700
701
702void LiveRange::print(std::ostream &os) const {
703 os << *this;
704}