llc (et al): Add support for --show-encoding and --show-inst.
[llvm.git] / lib / CodeGen / LiveInterval.cpp
blob025ad0538f2c9fa8799a9ecd3241884da715bfbb
1 //===-- LiveInterval.cpp - Live Interval Representation -------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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' and 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.
19 //===----------------------------------------------------------------------===//
21 #include "llvm/CodeGen/LiveInterval.h"
22 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
23 #include "llvm/CodeGen/MachineRegisterInfo.h"
24 #include "llvm/ADT/DenseMap.h"
25 #include "llvm/ADT/SmallSet.h"
26 #include "llvm/ADT/STLExtras.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include "llvm/Target/TargetRegisterInfo.h"
30 #include <algorithm>
31 using namespace llvm;
33 // An example for liveAt():
35 // 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).
40 bool LiveInterval::liveAt(SlotIndex I) const {
41 Ranges::const_iterator r = std::upper_bound(ranges.begin(), ranges.end(), I);
43 if (r == ranges.begin())
44 return false;
46 --r;
47 return r->contains(I);
50 // 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.
53 bool LiveInterval::liveBeforeAndAt(SlotIndex I) const {
54 Ranges::const_iterator r = std::upper_bound(ranges.begin(), ranges.end(), I);
56 if (r == ranges.begin())
57 return false;
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;
71 // overlaps - Return true if the intersection of the two live intervals is
72 // not empty.
74 // An example for overlaps():
76 // 0: A = ...
77 // 4: B = ...
78 // 8: C = A + B ;; last use of A
80 // The live intervals should look like:
82 // A = [3, 11)
83 // B = [7, x)
84 // C = [11, y)
86 // A->overlaps(C) should return false since we want to be able to join
87 // A and C.
89 bool 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();
96 assert((StartPos->start <= i->start || StartPos == other.begin()) &&
97 StartPos != other.end() && "Bogus start position hint!");
99 if (i->start < j->start) {
100 i = std::upper_bound(i, ie, j->start);
101 if (i != ranges.begin()) --i;
102 } else if (j->start < i->start) {
103 ++StartPos;
104 if (StartPos != other.end() && StartPos->start <= i->start) {
105 assert(StartPos < other.end() && i < end());
106 j = std::upper_bound(j, je, i->start);
107 if (j != other.ranges.begin()) --j;
109 } else {
110 return true;
113 if (j == je) return false;
115 while (i != ie) {
116 if (i->start > j->start) {
117 std::swap(i, j);
118 std::swap(ie, je);
121 if (i->end > j->start)
122 return true;
123 ++i;
126 return false;
129 /// overlaps - Return true if the live interval overlaps a range specified
130 /// by [Start, End).
131 bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const {
132 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);
145 /// 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.
149 void LiveInterval::extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd) {
150 assert(I != ranges.end() && "Not a valid interval!");
151 VNInfo *ValNo = I->valno;
152 SlotIndex OldEnd = I->end;
154 // Search for the first interval that we can't merge with.
155 Ranges::iterator MergeTo = next(I);
156 for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) {
157 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
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);
163 // Erase any dead ranges.
164 ranges.erase(next(I), MergeTo);
166 // Update kill info.
167 ValNo->removeKills(OldEnd, I->end.getPrevSlot());
169 // 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.
171 Ranges::iterator Next = next(I);
172 if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
173 I->end = Next->end;
174 ranges.erase(Next);
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.
182 LiveInterval::Ranges::iterator
183 LiveInterval::extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStart) {
184 assert(I != ranges.end() && "Not a valid interval!");
185 VNInfo *ValNo = I->valno;
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;
192 ranges.erase(MergeTo, I);
193 return I;
195 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
196 --MergeTo;
197 } while (NewStart <= MergeTo->start);
199 // If we start in the middle of another interval, just delete a range and
200 // extend that interval.
201 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
202 MergeTo->end = I->end;
203 } else {
204 // Otherwise, extend the interval right after.
205 ++MergeTo;
206 MergeTo->start = NewStart;
207 MergeTo->end = I->end;
210 ranges.erase(next(MergeTo), next(I));
211 return MergeTo;
214 LiveInterval::iterator
215 LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
216 SlotIndex Start = LR.start, End = LR.end;
217 iterator it = std::upper_bound(From, ranges.end(), Start);
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()) {
222 iterator B = prior(it);
223 if (LR.valno == B->valno) {
224 if (B->start <= Start && B->end >= Start) {
225 extendIntervalEndTo(B, End);
226 return B;
228 } else {
229 // Check to make sure that we are not overlapping two live ranges with
230 // different valno's.
231 assert(B->end <= Start &&
232 "Cannot overlap two LiveRanges with differing ValID's"
233 " (did you def the same reg twice in a MachineInstr?)");
237 // Otherwise, if this range ends in the middle of, or right next to, another
238 // interval, merge it into that interval.
239 if (it != ranges.end()) {
240 if (LR.valno == it->valno) {
241 if (it->start <= End) {
242 it = extendIntervalStartTo(it, Start);
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);
248 else if (End < it->end)
249 // Overlapping intervals, there might have been a kill here.
250 it->valno->removeKill(End);
251 return it;
253 } else {
254 // Check to make sure that we are not overlapping two live ranges with
255 // different valno's.
256 assert(it->start >= End &&
257 "Cannot overlap two LiveRanges with differing ValID's");
261 // Otherwise, this is just a new range that doesn't interact with anything.
262 // Insert it.
263 return ranges.insert(it, LR);
266 /// isInOneLiveRange - Return true if the range specified is entirely in
267 /// a single LiveRange of the live interval.
268 bool LiveInterval::isInOneLiveRange(SlotIndex Start, SlotIndex End) {
269 Ranges::iterator I = std::upper_bound(ranges.begin(), ranges.end(), Start);
270 if (I == ranges.begin())
271 return false;
272 --I;
273 return I->containsRange(Start, End);
277 /// removeRange - Remove the specified range from this interval. Note that
278 /// the range must be in a single LiveRange in its entirety.
279 void LiveInterval::removeRange(SlotIndex Start, SlotIndex End,
280 bool RemoveDeadValNo) {
281 // 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;
285 assert(I->containsRange(Start, End) && "Range is not entirely in interval!");
287 // If the span we are removing is at the start of the LiveRange, adjust it.
288 VNInfo *ValNo = I->valno;
289 if (I->start == Start) {
290 if (I->end == End) {
291 ValNo->removeKills(Start, End);
292 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;
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 {
306 valnos.pop_back();
307 } while (!valnos.empty() && valnos.back()->isUnused());
308 } else {
309 ValNo->setIsUnused(true);
314 ranges.erase(I); // Removed the whole LiveRange.
315 } else
316 I->start = End;
317 return;
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) {
323 ValNo->removeKills(Start, End);
324 I->end = Start;
325 return;
328 // Otherwise, we are splitting the LiveRange into two pieces.
329 SlotIndex OldEnd = I->end;
330 I->end = Start; // Trim the old interval.
332 // Insert the new one.
333 ranges.insert(next(I), LiveRange(End, OldEnd, ValNo));
336 /// removeValNo - Remove all the ranges defined by the specified value#.
337 /// Also remove the value# from value# list.
338 void 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 {
352 valnos.pop_back();
353 } while (!valnos.empty() && valnos.back()->isUnused());
354 } else {
355 ValNo->setIsUnused(true);
359 /// getLiveRangeContaining - Return the live range that contains the
360 /// specified index, or null if there is none.
361 LiveInterval::const_iterator
362 LiveInterval::FindLiveRangeContaining(SlotIndex Idx) const {
363 const_iterator It = std::upper_bound(begin(), end(), Idx);
364 if (It != ranges.begin()) {
365 --It;
366 if (It->contains(Idx))
367 return It;
370 return end();
373 LiveInterval::iterator
374 LiveInterval::FindLiveRangeContaining(SlotIndex Idx) {
375 iterator It = std::upper_bound(begin(), end(), Idx);
376 if (It != begin()) {
377 --It;
378 if (It->contains(Idx))
379 return It;
382 return end();
385 /// findDefinedVNInfo - Find the VNInfo defined by the specified
386 /// index (register interval).
387 VNInfo *LiveInterval::findDefinedVNInfoForRegInt(SlotIndex Idx) const {
388 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
389 i != e; ++i) {
390 if ((*i)->def == Idx)
391 return *i;
394 return 0;
397 /// findDefinedVNInfo - Find the VNInfo defined by the specified
398 /// register (stack inteval).
399 VNInfo *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;
405 return 0;
408 /// 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.
411 void LiveInterval::join(LiveInterval &Other,
412 const int *LHSValNoAssignments,
413 const int *RHSValNoAssignments,
414 SmallVector<VNInfo*, 16> &NewVNInfo,
415 MachineRegisterInfo *MRI) {
416 // Determine if any of our live range values are mapped. This is uncommon, so
417 // we want to avoid the interval scan if not.
418 bool MustMapCurValNos = false;
419 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 ||
424 (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
425 MustMapCurValNos = true;
428 // 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();
433 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
434 ++OutIt;
435 for (iterator I = OutIt, E = end(); I != E; ++I) {
436 OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
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 #.
441 if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
442 (OutIt-1)->end = OutIt->end;
443 } else {
444 if (I != OutIt) {
445 OutIt->start = I->start;
446 OutIt->end = I->end;
449 // Didn't merge, on to the next one.
450 ++OutIt;
454 // If we merge some live ranges, chop off the end.
455 ranges.erase(OutIt, end());
458 // Remember assignements because val# ids are changing.
459 SmallVector<unsigned, 16> OtherAssignments;
460 for (iterator I = Other.begin(), E = Other.end(); I != E; ++I)
461 OtherAssignments.push_back(RHSValNoAssignments[I->valno->id]);
463 // Update val# info. Renumber them and make sure they all belong to this
464 // LiveInterval now. Also remove dead val#'s.
465 unsigned NumValNos = 0;
466 for (unsigned i = 0; i < NumNewVals; ++i) {
467 VNInfo *VNI = NewVNInfo[i];
468 if (VNI) {
469 if (NumValNos >= NumVals)
470 valnos.push_back(VNI);
471 else
472 valnos[NumValNos] = VNI;
473 VNI->id = NumValNos++; // Renumber val#.
476 if (NumNewVals < NumVals)
477 valnos.resize(NumNewVals); // shrinkify
479 // Okay, now insert the RHS live ranges into the LHS.
480 iterator InsertPos = begin();
481 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]];
485 assert(I->valno && "Adding a dead range?");
486 InsertPos = addRangeFrom(*I, InsertPos);
489 ComputeJoinedWeight(Other);
491 // Update regalloc hint if currently there isn't one.
492 if (TargetRegisterInfo::isVirtualRegister(reg) &&
493 TargetRegisterInfo::isVirtualRegister(Other.reg)) {
494 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(reg);
495 if (Hint.first == 0 && Hint.second == 0) {
496 std::pair<unsigned, unsigned> OtherHint =
497 MRI->getRegAllocationHint(Other.reg);
498 if (OtherHint.first || OtherHint.second)
499 MRI->setRegAllocationHint(reg, OtherHint.first, OtherHint.second);
504 /// 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.
508 void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS,
509 VNInfo *LHSValNo) {
510 // TODO: Make this more efficient.
511 iterator InsertPos = begin();
512 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
513 // Map the valno in the other live range to the current live range.
514 LiveRange Tmp = *I;
515 Tmp.valno = LHSValNo;
516 InsertPos = addRangeFrom(Tmp, InsertPos);
521 /// 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
524 /// current interval, it will replace the value numbers of the overlaped
525 /// live ranges with the specified value number.
526 void LiveInterval::MergeValueInAsValue(
527 const LiveInterval &RHS,
528 const VNInfo *RHSValNo, VNInfo *LHSValNo) {
529 SmallVector<VNInfo*, 4> ReplacedValNos;
530 iterator IP = begin();
531 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
532 if (I->valno != RHSValNo)
533 continue;
534 SlotIndex Start = I->start, End = I->end;
535 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) {
538 if (IP[-1].valno != LHSValNo) {
539 ReplacedValNos.push_back(IP[-1].valno);
540 IP[-1].valno = LHSValNo; // Update val#.
542 Start = IP[-1].end;
543 // Trimmed away the whole range?
544 if (Start >= End) continue;
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#.
552 End = IP->start;
553 // If this trimmed away the whole range, ignore it.
554 if (Start == End) continue;
557 // Map the valno in the other live range to the current live range.
558 IP = addRangeFrom(LiveRange(Start, End, LHSValNo), IP);
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;
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 {
578 valnos.pop_back();
579 } while (!valnos.empty() && valnos.back()->isUnused());
580 } else {
581 V1->setIsUnused(true);
589 /// 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.
592 void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
593 const LiveInterval &Clobbers,
594 VNInfo::Allocator &VNInfoAllocator) {
595 if (Clobbers.empty()) return;
597 DenseMap<VNInfo*, VNInfo*> ValNoMaps;
598 VNInfo *UnusedValNo = 0;
599 iterator IP = begin();
600 for (const_iterator I = Clobbers.begin(), E = Clobbers.end(); I != E; ++I) {
601 // 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;
606 else if (UnusedValNo)
607 ClobberValNo = UnusedValNo;
608 else {
609 UnusedValNo = ClobberValNo =
610 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
611 ValNoMaps.insert(std::make_pair(I->valno, ClobberValNo));
614 bool Done = false;
615 SlotIndex Start = I->start, End = I->end;
616 // 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);
622 SlotIndex SubRangeStart = Start;
623 SlotIndex SubRangeEnd = End;
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;
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;
640 SubRangeEnd = IP->start;
641 // If this trimmed away the whole range, ignore it.
642 if (SubRangeStart == SubRangeEnd) continue;
645 // Insert the clobber interval.
646 IP = addRangeFrom(LiveRange(SubRangeStart, SubRangeEnd, ClobberValNo),
647 IP);
648 UnusedValNo = 0;
652 if (UnusedValNo) {
653 // Delete the last unused val#.
654 valnos.pop_back();
658 void LiveInterval::MergeInClobberRange(LiveIntervals &li_,
659 SlotIndex Start,
660 SlotIndex End,
661 VNInfo::Allocator &VNInfoAllocator) {
662 // Find a value # to use for the clobber ranges. If there is already a value#
663 // for unknown values, use it.
664 VNInfo *ClobberValNo =
665 getNextValue(li_.getInvalidIndex(), 0, false, VNInfoAllocator);
667 iterator IP = begin();
668 IP = std::upper_bound(IP, end(), Start);
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;
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;
683 // Insert the clobber interval.
684 addRangeFrom(LiveRange(Start, End, ClobberValNo), IP);
687 /// 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.
691 VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
692 assert(V1 != V2 && "Identical value#'s are always equivalent!");
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.
699 // Make sure V2 is smaller than V1.
700 if (V1->id < V2->id) {
701 V1->copyFrom(*V2);
702 std::swap(V1, V2);
705 // Merge V1 live ranges into V2.
706 for (iterator I = begin(); I != end(); ) {
707 iterator LR = I++;
708 if (LR->valno != V1) continue; // Not a V1 LiveRange.
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;
714 if (Prev->valno == V2 && Prev->end == LR->start) {
715 Prev->end = LR->end;
717 // Erase this live-range.
718 ranges.erase(LR);
719 I = Prev+1;
720 LR = Prev;
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.
726 LR->valno = V2;
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()) {
732 if (I->start == LR->end && I->valno == V2) {
733 LR->end = I->end;
734 ranges.erase(I);
735 I = LR+1;
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.
743 if (V1->id == getNumValNums()-1) {
744 do {
745 valnos.pop_back();
746 } while (valnos.back()->isUnused());
747 } else {
748 V1->setIsUnused(true);
751 return V2;
754 void LiveInterval::Copy(const LiveInterval &RHS,
755 MachineRegisterInfo *MRI,
756 VNInfo::Allocator &VNInfoAllocator) {
757 ranges.clear();
758 valnos.clear();
759 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
760 MRI->setRegAllocationHint(reg, Hint.first, Hint.second);
762 weight = RHS.weight;
763 for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) {
764 const VNInfo *VNI = RHS.getValNumInfo(i);
765 createValueCopy(VNI, VNInfoAllocator);
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)));
773 unsigned LiveInterval::getSize() const {
774 unsigned Sum = 0;
775 for (const_iterator I = begin(), E = end(); I != E; ++I)
776 Sum += I->start.distance(I->end);
777 return Sum;
780 /// ComputeJoinedWeight - Set the weight of a live interval Joined
781 /// after Other has been merged into it.
782 void 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.
787 if (Other.weight != HUGE_VALF) {
788 weight += Other.weight;
790 else if (weight == HUGE_VALF &&
791 !TargetRegisterInfo::isPhysicalRegister(reg)) {
792 // Remove this assert if you have an iterative coalescer
793 assert(0 && "Joining to spilled interval");
794 weight = Other.weight;
796 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");
803 raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) {
804 return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
807 void LiveRange::dump() const {
808 dbgs() << *this << "\n";
811 void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
812 if (isStackSlot())
813 OS << "SS#" << getStackSlotIndex();
814 else if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
815 OS << TRI->getName(reg);
816 else
817 OS << "%reg" << reg;
819 OS << ',' << weight;
821 if (empty())
822 OS << " EMPTY";
823 else {
824 OS << " = ";
825 for (LiveInterval::Ranges::const_iterator I = ranges.begin(),
826 E = ranges.end(); I != E; ++I)
827 OS << *I;
830 // Print value number info.
831 if (getNumValNums()) {
832 OS << " ";
833 unsigned vnum = 0;
834 for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
835 ++i, ++vnum) {
836 const VNInfo *vni = *i;
837 if (vnum) OS << " ";
838 OS << vnum << "@";
839 if (vni->isUnused()) {
840 OS << "x";
841 } else {
842 if (!vni->isDefAccurate() && !vni->isPHIDef())
843 OS << "?";
844 else
845 OS << vni->def;
846 unsigned ee = vni->kills.size();
847 if (ee || vni->hasPHIKill()) {
848 OS << "-(";
849 for (unsigned j = 0; j != ee; ++j) {
850 OS << vni->kills[j];
851 if (j != ee-1)
852 OS << " ";
854 if (vni->hasPHIKill()) {
855 if (ee)
856 OS << " ";
857 OS << "phi";
859 OS << ")";
866 void LiveInterval::dump() const {
867 dbgs() << *this << "\n";
871 void LiveRange::print(raw_ostream &os) const {
872 os << *this;