- Added removeValNo() to remove all live ranges of a particular value#.
[oota-llvm.git] / lib / CodeGen / LiveInterval.cpp
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' 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"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/Support/Streams.h"
25 #include "llvm/Target/TargetRegisterInfo.h"
26 #include <algorithm>
27 #include <ostream>
28 using 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 //
37 bool 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 //
65 bool 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.
109 void LiveInterval::extendIntervalEndTo(Ranges::iterator I, unsigned NewEnd) {
110   assert(I != ranges.end() && "Not a valid interval!");
111   VNInfo *ValNo = I->valno;
112   unsigned OldEnd = I->end;
113
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) {
117     assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
118   }
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);
125
126   // Update kill info.
127   removeKills(ValNo, OldEnd, I->end-1);
128
129   // 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);
132   if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) {
133     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.
142 LiveInterval::Ranges::iterator
143 LiveInterval::extendIntervalStartTo(Ranges::iterator I, unsigned NewStart) {
144   assert(I != ranges.end() && "Not a valid interval!");
145   VNInfo *ValNo = I->valno;
146
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     }
155     assert(MergeTo->valno == ValNo && "Cannot merge with differing values!");
156     --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.
161   if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) {
162     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
174 LiveInterval::iterator
175 LiveInterval::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);
183     if (LR.valno == B->valno) {
184       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
190       // different valno's.
191       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())
200     if (LR.valno == it->valno) {
201       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);
208         else if (End < it->end)
209           // Overlapping intervals, there might have been a kill here.
210           removeKill(it->valno, End);
211         return it;
212       }
213     } else {
214       // Check to make sure that we are not overlapping two live ranges with
215       // different valno's.
216       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.
228 void LiveInterval::removeRange(unsigned Start, unsigned End,
229                                bool RemoveDeadValNo) {
230   // 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.
238   VNInfo *ValNo = I->valno;
239   if (I->start == Start) {
240     if (I->end == End) {
241       removeKills(I->valno, Start, End);
242       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
266       ranges.erase(I);  // Removed the whole LiveRange.
267     } else
268       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) {
275     removeKills(ValNo, Start, End);
276     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.
285   ranges.insert(next(I), LiveRange(End, OldEnd, ValNo));
286 }
287
288 /// removeValNo - Remove all the ranges defined by the specified value#.
289 /// Also remove the value# from value# list.
290 void 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  
313 /// getLiveRangeContaining - Return the live range that contains the
314 /// specified index, or null if there is none.
315 LiveInterval::const_iterator 
316 LiveInterval::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
327 LiveInterval::iterator 
328 LiveInterval::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.
342 void LiveInterval::join(LiveInterval &Other, const int *LHSValNoAssignments,
343                         const int *RHSValNoAssignments, 
344                         SmallVector<VNInfo*, 16> &NewVNInfo) {
345   // Determine if any of our live range values are mapped.  This is uncommon, so
346   // we want to avoid the interval scan if not. 
347   bool MustMapCurValNos = false;
348   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 ||
353         (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i)))
354       MustMapCurValNos = true;
355   }
356
357   // 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();
362     OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]];
363     ++OutIt;
364     for (iterator I = OutIt, E = end(); I != E; ++I) {
365       OutIt->valno = NewVNInfo[LHSValNoAssignments[I->valno->id]];
366       
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 #.
370       if (OutIt->valno == (OutIt-1)->valno && (OutIt-1)->end == OutIt->start) {
371         (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   }
386
387   // Remember assignements because val# ids are changing.
388   SmallVector<unsigned, 16> OtherAssignments;
389   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
393   // LiveInterval now. Also remove dead val#'s.
394   unsigned NumValNos = 0;
395   for (unsigned i = 0; i < NumNewVals; ++i) {
396     VNInfo *VNI = NewVNInfo[i];
397     if (VNI) {
398       if (i >= NumVals)
399         valnos.push_back(VNI);
400       else 
401         valnos[NumValNos] = VNI;
402       VNI->id = NumValNos++;  // Renumber val#.
403     }
404   }
405   if (NumNewVals < NumVals)
406     valnos.resize(NumNewVals);  // shrinkify
407
408   // Okay, now insert the RHS live ranges into the LHS.
409   iterator InsertPos = begin();
410   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]];
414     assert(I->valno && "Adding a dead range?");
415     InsertPos = addRangeFrom(*I, InsertPos);
416   }
417
418   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.
427 void LiveInterval::MergeRangesInAsValue(const LiveInterval &RHS, 
428                                         VNInfo *LHSValNo) {
429   // TODO: Make this more efficient.
430   iterator InsertPos = begin();
431   for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
432     // Map the valno in the other live range to the current live range.
433     LiveRange Tmp = *I;
434     Tmp.valno = LHSValNo;
435     InsertPos = addRangeFrom(Tmp, InsertPos);
436   }
437 }
438
439
440 /// 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
443 /// current interval, it will replace the value numbers of the overlaped
444 /// live ranges with the specified value number.
445 void LiveInterval::MergeValueInAsValue(const LiveInterval &RHS,
446                                      const VNInfo *RHSValNo, VNInfo *LHSValNo) {
447   SmallVector<VNInfo*, 4> ReplacedValNos;
448   iterator IP = begin();
449   for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) {
450     if (I->valno != RHSValNo)
451       continue;
452     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) {
456       if (IP[-1].valno != LHSValNo) {
457         ReplacedValNos.push_back(IP[-1].valno);
458         IP[-1].valno = LHSValNo; // Update val#.
459       }
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     
475     // Map the valno in the other live range to the current live range.
476     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();
499           } while (!valnos.empty() && valnos.back()->def == ~1U);
500         } else {
501           V1->def = ~1U;
502         }
503       }
504     }
505   }
506 }
507
508
509 /// 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.
512 void LiveInterval::MergeInClobberRanges(const LiveInterval &Clobbers,
513                                         BumpPtrAllocator &VNInfoAllocator) {
514   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!
519   VNInfo *ClobberValNo = getNextValue(~0U, 0, VNInfoAllocator);
520   
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.
548 void LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
549   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.
557   if (V1->id < V2->id) {
558     copyValNumInfo(V1, V2);
559     std::swap(V1, V2);
560   }
561
562   // Merge V1 live ranges into V2.
563   for (iterator I = begin(); I != end(); ) {
564     iterator LR = I++;
565     if (LR->valno != V1) continue;  // Not a V1 LiveRange.
566     
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;
571       if (Prev->valno == V2 && Prev->end == LR->start) {
572         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.
583     LR->valno = V2;
584     
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()) {
589       if (I->start == LR->end && I->valno == V2) {
590         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.
600   if (V1->id == getNumValNums()-1) {
601     do {
602       VNInfo *VNI = valnos.back();
603       valnos.pop_back();
604       VNI->~VNInfo();
605     } while (valnos.back()->def == ~1U);
606   } else {
607     V1->def = ~1U;
608   }
609 }
610
611 void 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
628 unsigned 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
635 std::ostream& llvm::operator<<(std::ostream& os, const LiveRange &LR) {
636   return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
637 }
638
639 void LiveRange::dump() const {
640   cerr << *this << "\n";
641 }
642
643 void LiveInterval::print(std::ostream &OS,
644                          const TargetRegisterInfo *TRI) const {
645   if (TRI && TargetRegisterInfo::isPhysicalRegister(reg))
646     OS << TRI->getName(reg);
647   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 << "  ";
664     unsigned vnum = 0;
665     for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e;
666          ++i, ++vnum) {
667       const VNInfo *vni = *i;
668       if (vnum) OS << " ";
669       OS << vnum << "@";
670       if (vni->def == ~1U) {
671         OS << "x";
672       } else {
673         if (vni->def == ~0U)
674           OS << "?";
675         else
676           OS << vni->def;
677         unsigned ee = vni->kills.size();
678         if (ee || vni->hasPHIKill) {
679           OS << "-(";
680           for (unsigned j = 0; j != ee; ++j) {
681             OS << vni->kills[j];
682             if (j != ee-1)
683               OS << " ";
684           }
685           if (vni->hasPHIKill) {
686             if (ee)
687               OS << " ";
688             OS << "phi";
689           }
690           OS << ")";
691         }
692       }
693     }
694   }
695 }
696
697 void LiveInterval::dump() const {
698   cerr << *this << "\n";
699 }
700
701
702 void LiveRange::print(std::ostream &os) const {
703   os << *this;
704 }