LiveInterval.cpp revision 89bfef003ec71792d078d489566655006b89bc43
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.
18//
19//===----------------------------------------------------------------------===//
20
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>
31using namespace llvm;
32
33// CompEnd - Compare LiveRange end to Pos.
34namespace {
35struct CompEnd {
36  bool operator()(SlotIndex Pos, const LiveRange &LR) const {
37    return Pos < LR.end;
38  }
39  bool operator()(const LiveRange &LR, SlotIndex Pos) const {
40    return LR.end < Pos;
41  }
42};
43}
44
45LiveInterval::iterator LiveInterval::find(SlotIndex Pos) {
46  return std::upper_bound(begin(), end(), Pos, CompEnd());
47}
48
49/// killedInRange - Return true if the interval has kills in [Start,End).
50bool LiveInterval::killedInRange(SlotIndex Start, SlotIndex End) const {
51  Ranges::const_iterator r =
52    std::lower_bound(ranges.begin(), ranges.end(), End);
53
54  // Now r points to the first interval with start >= End, or ranges.end().
55  if (r == ranges.begin())
56    return false;
57
58  --r;
59  // Now r points to the last interval with end <= End.
60  // r->end is the kill point.
61  return r->end >= Start && r->end < End;
62}
63
64// overlaps - Return true if the intersection of the two live intervals is
65// not empty.
66//
67// An example for overlaps():
68//
69// 0: A = ...
70// 4: B = ...
71// 8: C = A + B ;; last use of A
72//
73// The live intervals should look like:
74//
75// A = [3, 11)
76// B = [7, x)
77// C = [11, y)
78//
79// A->overlaps(C) should return false since we want to be able to join
80// A and C.
81//
82bool LiveInterval::overlapsFrom(const LiveInterval& other,
83                                const_iterator StartPos) const {
84  assert(!empty() && "empty interval");
85  const_iterator i = begin();
86  const_iterator ie = end();
87  const_iterator j = StartPos;
88  const_iterator je = other.end();
89
90  assert((StartPos->start <= i->start || StartPos == other.begin()) &&
91         StartPos != other.end() && "Bogus start position hint!");
92
93  if (i->start < j->start) {
94    i = std::upper_bound(i, ie, j->start);
95    if (i != ranges.begin()) --i;
96  } else if (j->start < i->start) {
97    ++StartPos;
98    if (StartPos != other.end() && StartPos->start <= i->start) {
99      assert(StartPos < other.end() && i < end());
100      j = std::upper_bound(j, je, i->start);
101      if (j != other.ranges.begin()) --j;
102    }
103  } else {
104    return true;
105  }
106
107  if (j == je) return false;
108
109  while (i != ie) {
110    if (i->start > j->start) {
111      std::swap(i, j);
112      std::swap(ie, je);
113    }
114
115    if (i->end > j->start)
116      return true;
117    ++i;
118  }
119
120  return false;
121}
122
123/// overlaps - Return true if the live interval overlaps a range specified
124/// by [Start, End).
125bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const {
126  assert(Start < End && "Invalid range");
127  const_iterator I = std::lower_bound(begin(), end(), End);
128  return I != begin() && (--I)->end > Start;
129}
130
131
132/// ValNo is dead, remove it.  If it is the largest value number, just nuke it
133/// (and any other deleted values neighboring it), otherwise mark it as ~1U so
134/// it can be nuked later.
135void LiveInterval::markValNoForDeletion(VNInfo *ValNo) {
136  if (ValNo->id == getNumValNums()-1) {
137    do {
138      valnos.pop_back();
139    } while (!valnos.empty() && valnos.back()->isUnused());
140  } else {
141    ValNo->setIsUnused(true);
142  }
143}
144
145/// RenumberValues - Renumber all values in order of appearance and delete the
146/// remaining unused values.
147void LiveInterval::RenumberValues(LiveIntervals &lis) {
148  SmallPtrSet<VNInfo*, 8> Seen;
149  bool seenPHIDef = false;
150  valnos.clear();
151  for (const_iterator I = begin(), E = end(); I != E; ++I) {
152    VNInfo *VNI = I->valno;
153    if (!Seen.insert(VNI))
154      continue;
155    assert(!VNI->isUnused() && "Unused valno used by live range");
156    VNI->id = (unsigned)valnos.size();
157    valnos.push_back(VNI);
158    VNI->setHasPHIKill(false);
159    if (VNI->isPHIDef())
160      seenPHIDef = true;
161  }
162
163  // Recompute phi kill flags.
164  if (!seenPHIDef)
165    return;
166  for (const_vni_iterator I = vni_begin(), E = vni_end(); I != E; ++I) {
167    VNInfo *VNI = *I;
168    if (!VNI->isPHIDef())
169      continue;
170    const MachineBasicBlock *PHIBB = lis.getMBBFromIndex(VNI->def);
171    assert(PHIBB && "No basic block for phi-def");
172    for (MachineBasicBlock::const_pred_iterator PI = PHIBB->pred_begin(),
173         PE = PHIBB->pred_end(); PI != PE; ++PI) {
174      VNInfo *KVNI = getVNInfoAt(lis.getMBBEndIdx(*PI).getPrevSlot());
175      if (KVNI)
176        KVNI->setHasPHIKill(true);
177    }
178  }
179}
180
181/// extendIntervalEndTo - This method is used when we want to extend the range
182/// specified by I to end at the specified endpoint.  To do this, we should
183/// merge and eliminate all ranges that this will overlap with.  The iterator is
184/// not invalidated.
185void LiveInterval::extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd) {
186  assert(I != ranges.end() && "Not a valid interval!");
187  VNInfo *ValNo = I->valno;
188
189  // Search for the first interval that we can't merge with.
190  Ranges::iterator MergeTo = llvm::next(I);
191  for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) {
192    assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
193  }
194
195  // If NewEnd was in the middle of an interval, make sure to get its endpoint.
196  I->end = std::max(NewEnd, prior(MergeTo)->end);
197
198  // Erase any dead ranges.
199  ranges.erase(llvm::next(I), MergeTo);
200
201  // If the newly formed range now touches the range after it and if they have
202  // the same value number, merge the two ranges into one range.
203  Ranges::iterator Next = llvm::next(I);
204  if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
205    I->end = Next->end;
206    ranges.erase(Next);
207  }
208}
209
210
211/// extendIntervalStartTo - This method is used when we want to extend the range
212/// specified by I to start at the specified endpoint.  To do this, we should
213/// merge and eliminate all ranges that this will overlap with.
214LiveInterval::Ranges::iterator
215LiveInterval::extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStart) {
216  assert(I != ranges.end() && "Not a valid interval!");
217  VNInfo *ValNo = I->valno;
218
219  // Search for the first interval that we can't merge with.
220  Ranges::iterator MergeTo = I;
221  do {
222    if (MergeTo == ranges.begin()) {
223      I->start = NewStart;
224      ranges.erase(MergeTo, I);
225      return I;
226    }
227    assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
228    --MergeTo;
229  } while (NewStart <= MergeTo->start);
230
231  // If we start in the middle of another interval, just delete a range and
232  // extend that interval.
233  if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
234    MergeTo->end = I->end;
235  } else {
236    // Otherwise, extend the interval right after.
237    ++MergeTo;
238    MergeTo->start = NewStart;
239    MergeTo->end = I->end;
240  }
241
242  ranges.erase(llvm::next(MergeTo), llvm::next(I));
243  return MergeTo;
244}
245
246LiveInterval::iterator
247LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
248  SlotIndex Start = LR.start, End = LR.end;
249  iterator it = std::upper_bound(From, ranges.end(), Start);
250
251  // If the inserted interval starts in the middle or right at the end of
252  // another interval, just extend that interval to contain the range of LR.
253  if (it != ranges.begin()) {
254    iterator B = prior(it);
255    if (LR.valno == B->valno) {
256      if (B->start <= Start && B->end >= Start) {
257        extendIntervalEndTo(B, End);
258        return B;
259      }
260    } else {
261      // Check to make sure that we are not overlapping two live ranges with
262      // different valno's.
263      assert(B->end <= Start &&
264             "Cannot overlap two LiveRanges with differing ValID's"
265             " (did you def the same reg twice in a MachineInstr?)");
266    }
267  }
268
269  // Otherwise, if this range ends in the middle of, or right next to, another
270  // interval, merge it into that interval.
271  if (it != ranges.end()) {
272    if (LR.valno == it->valno) {
273      if (it->start <= End) {
274        it = extendIntervalStartTo(it, Start);
275
276        // If LR is a complete superset of an interval, we may need to grow its
277        // endpoint as well.
278        if (End > it->end)
279          extendIntervalEndTo(it, End);
280        return it;
281      }
282    } else {
283      // Check to make sure that we are not overlapping two live ranges with
284      // different valno's.
285      assert(it->start >= End &&
286             "Cannot overlap two LiveRanges with differing ValID's");
287    }
288  }
289
290  // Otherwise, this is just a new range that doesn't interact with anything.
291  // Insert it.
292  return ranges.insert(it, LR);
293}
294
295
296/// removeRange - Remove the specified range from this interval.  Note that
297/// the range must be in a single LiveRange in its entirety.
298void LiveInterval::removeRange(SlotIndex Start, SlotIndex End,
299                               bool RemoveDeadValNo) {
300  // Find the LiveRange containing this span.
301  Ranges::iterator I = find(Start);
302  assert(I != ranges.end() && "Range is not in interval!");
303  assert(I->containsRange(Start, End) && "Range is not entirely in interval!");
304
305  // If the span we are removing is at the start of the LiveRange, adjust it.
306  VNInfo *ValNo = I->valno;
307  if (I->start == Start) {
308    if (I->end == End) {
309      if (RemoveDeadValNo) {
310        // Check if val# is dead.
311        bool isDead = true;
312        for (const_iterator II = begin(), EE = end(); II != EE; ++II)
313          if (II != I && II->valno == ValNo) {
314            isDead = false;
315            break;
316          }
317        if (isDead) {
318          // Now that ValNo is dead, remove it.
319          markValNoForDeletion(ValNo);
320        }
321      }
322
323      ranges.erase(I);  // Removed the whole LiveRange.
324    } else
325      I->start = End;
326    return;
327  }
328
329  // Otherwise if the span we are removing is at the end of the LiveRange,
330  // adjust the other way.
331  if (I->end == End) {
332    I->end = Start;
333    return;
334  }
335
336  // Otherwise, we are splitting the LiveRange into two pieces.
337  SlotIndex OldEnd = I->end;
338  I->end = Start;   // Trim the old interval.
339
340  // Insert the new one.
341  ranges.insert(llvm::next(I), LiveRange(End, OldEnd, ValNo));
342}
343
344/// removeValNo - Remove all the ranges defined by the specified value#.
345/// Also remove the value# from value# list.
346void LiveInterval::removeValNo(VNInfo *ValNo) {
347  if (empty()) return;
348  Ranges::iterator I = ranges.end();
349  Ranges::iterator E = ranges.begin();
350  do {
351    --I;
352    if (I->valno == ValNo)
353      ranges.erase(I);
354  } while (I != E);
355  // Now that ValNo is dead, remove it.
356  markValNoForDeletion(ValNo);
357}
358
359/// findDefinedVNInfo - Find the VNInfo defined by the specified
360/// index (register interval).
361VNInfo *LiveInterval::findDefinedVNInfoForRegInt(SlotIndex Idx) const {
362  for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end();
363       i != e; ++i) {
364    if ((*i)->def == Idx)
365      return *i;
366  }
367
368  return 0;
369}
370
371/// join - Join two live intervals (this, and other) together.  This applies
372/// mappings to the value numbers in the LHS/RHS intervals as specified.  If
373/// the intervals are not joinable, this aborts.
374void LiveInterval::join(LiveInterval &Other,
375                        const int *LHSValNoAssignments,
376                        const int *RHSValNoAssignments,
377                        SmallVector<VNInfo*, 16> &NewVNInfo,
378                        MachineRegisterInfo *MRI) {
379  // Determine if any of our live range values are mapped.  This is uncommon, so
380  // we want to avoid the interval scan if not.
381  bool MustMapCurValNos = false;
382  unsigned NumVals = getNumValNums();
383  unsigned NumNewVals = NewVNInfo.size();
384  for (unsigned i = 0; i != NumVals; ++i) {
385    unsigned LHSValID = LHSValNoAssignments[i];
386    if (i != LHSValID ||
387        (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
388      MustMapCurValNos = true;
389  }
390
391  // If we have to apply a mapping to our base interval assignment, rewrite it
392  // now.
393  if (MustMapCurValNos) {
394    // Map the first live range.
395    iterator OutIt = begin();
396    OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
397    ++OutIt;
398    for (iterator I = OutIt, E = end(); I != E; ++I) {
399      OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
400
401      // If this live range has the same value # as its immediate predecessor,
402      // and if they are neighbors, remove one LiveRange.  This happens when we
403      // have [0,3:0)[4,7:1) and map 0/1 onto the same value #.
404      if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
405        (OutIt-1)->end = OutIt->end;
406      } else {
407        if (I != OutIt) {
408          OutIt->start = I->start;
409          OutIt->end = I->end;
410        }
411
412        // Didn't merge, on to the next one.
413        ++OutIt;
414      }
415    }
416
417    // If we merge some live ranges, chop off the end.
418    ranges.erase(OutIt, end());
419  }
420
421  // Remember assignements because val# ids are changing.
422  SmallVector<unsigned, 16> OtherAssignments;
423  for (iterator I = Other.begin(), E = Other.end(); I != E; ++I)
424    OtherAssignments.push_back(RHSValNoAssignments[I->valno->id]);
425
426  // Update val# info. Renumber them and make sure they all belong to this
427  // LiveInterval now. Also remove dead val#'s.
428  unsigned NumValNos = 0;
429  for (unsigned i = 0; i < NumNewVals; ++i) {
430    VNInfo *VNI = NewVNInfo[i];
431    if (VNI) {
432      if (NumValNos >= NumVals)
433        valnos.push_back(VNI);
434      else
435        valnos[NumValNos] = VNI;
436      VNI->id = NumValNos++;  // Renumber val#.
437    }
438  }
439  if (NumNewVals < NumVals)
440    valnos.resize(NumNewVals);  // shrinkify
441
442  // Okay, now insert the RHS live ranges into the LHS.
443  iterator InsertPos = begin();
444  unsigned RangeNo = 0;
445  for (iterator I = Other.begin(), E = Other.end(); I != E; ++I, ++RangeNo) {
446    // Map the valno in the other live range to the current live range.
447    I->valno = NewVNInfo[OtherAssignments[RangeNo]];
448    assert(I->valno && "Adding a dead range?");
449    InsertPos = addRangeFrom(*I, InsertPos);
450  }
451
452  ComputeJoinedWeight(Other);
453}
454
455/// MergeRangesInAsValue - Merge all of the intervals in RHS into this live
456/// interval as the specified value number.  The LiveRanges in RHS are
457/// allowed to overlap with LiveRanges in the current interval, but only if
458/// the overlapping LiveRanges have the specified value number.
459void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS,
460                                        VNInfo *LHSValNo) {
461  // TODO: Make this more efficient.
462  iterator InsertPos = begin();
463  for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
464    // Map the valno in the other live range to the current live range.
465    LiveRange Tmp = *I;
466    Tmp.valno = LHSValNo;
467    InsertPos = addRangeFrom(Tmp, InsertPos);
468  }
469}
470
471
472/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
473/// in RHS into this live interval as the specified value number.
474/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
475/// current interval, it will replace the value numbers of the overlaped
476/// live ranges with the specified value number.
477void LiveInterval::MergeValueInAsValue(
478                                    const LiveInterval &RHS,
479                                    const VNInfo *RHSValNo, VNInfo *LHSValNo) {
480  SmallVector<VNInfo*, 4> ReplacedValNos;
481  iterator IP = begin();
482  for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
483    assert(I->valno == RHS.getValNumInfo(I->valno->id) && "Bad VNInfo");
484    if (I->valno != RHSValNo)
485      continue;
486    SlotIndex Start = I->start, End = I->end;
487    IP = std::upper_bound(IP, end(), Start);
488    // If the start of this range overlaps with an existing liverange, trim it.
489    if (IP != begin() && IP[-1].end > Start) {
490      if (IP[-1].valno != LHSValNo) {
491        ReplacedValNos.push_back(IP[-1].valno);
492        IP[-1].valno = LHSValNo; // Update val#.
493      }
494      Start = IP[-1].end;
495      // Trimmed away the whole range?
496      if (Start >= End) continue;
497    }
498    // If the end of this range overlaps with an existing liverange, trim it.
499    if (IP != end() && End > IP->start) {
500      if (IP->valno != LHSValNo) {
501        ReplacedValNos.push_back(IP->valno);
502        IP->valno = LHSValNo;  // Update val#.
503      }
504      End = IP->start;
505      // If this trimmed away the whole range, ignore it.
506      if (Start == End) continue;
507    }
508
509    // Map the valno in the other live range to the current live range.
510    IP = addRangeFrom(LiveRange(Start, End, LHSValNo), IP);
511  }
512
513
514  SmallSet<VNInfo*, 4> Seen;
515  for (unsigned i = 0, e = ReplacedValNos.size(); i != e; ++i) {
516    VNInfo *V1 = ReplacedValNos[i];
517    if (Seen.insert(V1)) {
518      bool isDead = true;
519      for (const_iterator I = begin(), E = end(); I != E; ++I)
520        if (I->valno == V1) {
521          isDead = false;
522          break;
523        }
524      if (isDead) {
525        // Now that V1 is dead, remove it.
526        markValNoForDeletion(V1);
527      }
528    }
529  }
530}
531
532
533
534/// MergeValueNumberInto - This method is called when two value nubmers
535/// are found to be equivalent.  This eliminates V1, replacing all
536/// LiveRanges with the V1 value number with the V2 value number.  This can
537/// cause merging of V1/V2 values numbers and compaction of the value space.
538VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
539  assert(V1 != V2 && "Identical value#'s are always equivalent!");
540
541  // This code actually merges the (numerically) larger value number into the
542  // smaller value number, which is likely to allow us to compactify the value
543  // space.  The only thing we have to be careful of is to preserve the
544  // instruction that defines the result value.
545
546  // Make sure V2 is smaller than V1.
547  if (V1->id < V2->id) {
548    V1->copyFrom(*V2);
549    std::swap(V1, V2);
550  }
551
552  // Merge V1 live ranges into V2.
553  for (iterator I = begin(); I != end(); ) {
554    iterator LR = I++;
555    if (LR->valno != V1) continue;  // Not a V1 LiveRange.
556
557    // Okay, we found a V1 live range.  If it had a previous, touching, V2 live
558    // range, extend it.
559    if (LR != begin()) {
560      iterator Prev = LR-1;
561      if (Prev->valno == V2 && Prev->end == LR->start) {
562        Prev->end = LR->end;
563
564        // Erase this live-range.
565        ranges.erase(LR);
566        I = Prev+1;
567        LR = Prev;
568      }
569    }
570
571    // Okay, now we have a V1 or V2 live range that is maximally merged forward.
572    // Ensure that it is a V2 live-range.
573    LR->valno = V2;
574
575    // If we can merge it into later V2 live ranges, do so now.  We ignore any
576    // following V1 live ranges, as they will be merged in subsequent iterations
577    // of the loop.
578    if (I != end()) {
579      if (I->start == LR->end && I->valno == V2) {
580        LR->end = I->end;
581        ranges.erase(I);
582        I = LR+1;
583      }
584    }
585  }
586
587  // Now that V1 is dead, remove it.
588  markValNoForDeletion(V1);
589
590  return V2;
591}
592
593void LiveInterval::Copy(const LiveInterval &RHS,
594                        MachineRegisterInfo *MRI,
595                        VNInfo::Allocator &VNInfoAllocator) {
596  ranges.clear();
597  valnos.clear();
598  std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
599  MRI->setRegAllocationHint(reg, Hint.first, Hint.second);
600
601  weight = RHS.weight;
602  for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) {
603    const VNInfo *VNI = RHS.getValNumInfo(i);
604    createValueCopy(VNI, VNInfoAllocator);
605  }
606  for (unsigned i = 0, e = RHS.ranges.size(); i != e; ++i) {
607    const LiveRange &LR = RHS.ranges[i];
608    addRange(LiveRange(LR.start, LR.end, getValNumInfo(LR.valno->id)));
609  }
610}
611
612unsigned LiveInterval::getSize() const {
613  unsigned Sum = 0;
614  for (const_iterator I = begin(), E = end(); I != E; ++I)
615    Sum += I->start.distance(I->end);
616  return Sum;
617}
618
619/// ComputeJoinedWeight - Set the weight of a live interval Joined
620/// after Other has been merged into it.
621void LiveInterval::ComputeJoinedWeight(const LiveInterval &Other) {
622  // If either of these intervals was spilled, the weight is the
623  // weight of the non-spilled interval.  This can only happen with
624  // iterative coalescers.
625
626  if (Other.weight != HUGE_VALF) {
627    weight += Other.weight;
628  }
629  else if (weight == HUGE_VALF &&
630      !TargetRegisterInfo::isPhysicalRegister(reg)) {
631    // Remove this assert if you have an iterative coalescer
632    assert(0 && "Joining to spilled interval");
633    weight = Other.weight;
634  }
635  else {
636    // Otherwise the weight stays the same
637    // Remove this assert if you have an iterative coalescer
638    assert(0 && "Joining from spilled interval");
639  }
640}
641
642raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) {
643  return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
644}
645
646void LiveRange::dump() const {
647  dbgs() << *this << "\n";
648}
649
650void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
651  if (isStackSlot())
652    OS << "SS#" << getStackSlotIndex();
653  else if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
654    OS << TRI->getName(reg);
655  else
656    OS << "%reg" << reg;
657
658  OS << ',' << weight;
659
660  if (empty())
661    OS << " EMPTY";
662  else {
663    OS << " = ";
664    for (LiveInterval::Ranges::const_iterator I = ranges.begin(),
665           E = ranges.end(); I != E; ++I) {
666      OS << *I;
667      assert(I->valno == getValNumInfo(I->valno->id) && "Bad VNInfo");
668    }
669  }
670
671  // Print value number info.
672  if (getNumValNums()) {
673    OS << "  ";
674    unsigned vnum = 0;
675    for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
676         ++i, ++vnum) {
677      const VNInfo *vni = *i;
678      if (vnum) OS << " ";
679      OS << vnum << "@";
680      if (vni->isUnused()) {
681        OS << "x";
682      } else {
683        if (!vni->isDefAccurate() && !vni->isPHIDef())
684          OS << "?";
685        else
686          OS << vni->def;
687        if (vni->hasPHIKill())
688          OS << "-phikill";
689        if (vni->hasRedefByEC())
690          OS << "-ec";
691      }
692    }
693  }
694}
695
696void LiveInterval::dump() const {
697  dbgs() << *this << "\n";
698}
699
700
701void LiveRange::print(raw_ostream &os) const {
702  os << *this;
703}
704