LiveInterval.cpp revision d88710a3e0847baec0847b802637a48b71718d4d
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 33LiveInterval::iterator LiveInterval::find(SlotIndex Pos) { 34 // This algorithm is basically std::upper_bound. 35 // Unfortunately, std::upper_bound cannot be used with mixed types until we 36 // adopt C++0x. Many libraries can do it, but not all. 37 if (empty() || Pos >= endIndex()) 38 return end(); 39 iterator I = begin(); 40 size_t Len = ranges.size(); 41 do { 42 size_t Mid = Len >> 1; 43 if (Pos < I[Mid].end) 44 Len = Mid; 45 else 46 I += Mid + 1, Len -= Mid + 1; 47 } while (Len); 48 return I; 49} 50 51/// killedInRange - Return true if the interval has kills in [Start,End). 52bool LiveInterval::killedInRange(SlotIndex Start, SlotIndex End) const { 53 Ranges::const_iterator r = 54 std::lower_bound(ranges.begin(), ranges.end(), End); 55 56 // Now r points to the first interval with start >= End, or ranges.end(). 57 if (r == ranges.begin()) 58 return false; 59 60 --r; 61 // Now r points to the last interval with end <= End. 62 // r->end is the kill point. 63 return r->end >= Start && r->end < End; 64} 65 66// overlaps - Return true if the intersection of the two live intervals is 67// not empty. 68// 69// An example for overlaps(): 70// 71// 0: A = ... 72// 4: B = ... 73// 8: C = A + B ;; last use of A 74// 75// The live intervals should look like: 76// 77// A = [3, 11) 78// B = [7, x) 79// C = [11, y) 80// 81// A->overlaps(C) should return false since we want to be able to join 82// A and C. 83// 84bool LiveInterval::overlapsFrom(const LiveInterval& other, 85 const_iterator StartPos) const { 86 assert(!empty() && "empty interval"); 87 const_iterator i = begin(); 88 const_iterator ie = end(); 89 const_iterator j = StartPos; 90 const_iterator je = other.end(); 91 92 assert((StartPos->start <= i->start || StartPos == other.begin()) && 93 StartPos != other.end() && "Bogus start position hint!"); 94 95 if (i->start < j->start) { 96 i = std::upper_bound(i, ie, j->start); 97 if (i != ranges.begin()) --i; 98 } else if (j->start < i->start) { 99 ++StartPos; 100 if (StartPos != other.end() && StartPos->start <= i->start) { 101 assert(StartPos < other.end() && i < end()); 102 j = std::upper_bound(j, je, i->start); 103 if (j != other.ranges.begin()) --j; 104 } 105 } else { 106 return true; 107 } 108 109 if (j == je) return false; 110 111 while (i != ie) { 112 if (i->start > j->start) { 113 std::swap(i, j); 114 std::swap(ie, je); 115 } 116 117 if (i->end > j->start) 118 return true; 119 ++i; 120 } 121 122 return false; 123} 124 125/// overlaps - Return true if the live interval overlaps a range specified 126/// by [Start, End). 127bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const { 128 assert(Start < End && "Invalid range"); 129 const_iterator I = std::lower_bound(begin(), end(), End); 130 return I != begin() && (--I)->end > Start; 131} 132 133 134/// ValNo is dead, remove it. If it is the largest value number, just nuke it 135/// (and any other deleted values neighboring it), otherwise mark it as ~1U so 136/// it can be nuked later. 137void LiveInterval::markValNoForDeletion(VNInfo *ValNo) { 138 if (ValNo->id == getNumValNums()-1) { 139 do { 140 valnos.pop_back(); 141 } while (!valnos.empty() && valnos.back()->isUnused()); 142 } else { 143 ValNo->setIsUnused(true); 144 } 145} 146 147/// RenumberValues - Renumber all values in order of appearance and delete the 148/// remaining unused values. 149void LiveInterval::RenumberValues(LiveIntervals &lis) { 150 SmallPtrSet<VNInfo*, 8> Seen; 151 valnos.clear(); 152 for (const_iterator I = begin(), E = end(); I != E; ++I) { 153 VNInfo *VNI = I->valno; 154 if (!Seen.insert(VNI)) 155 continue; 156 assert(!VNI->isUnused() && "Unused valno used by live range"); 157 VNI->id = (unsigned)valnos.size(); 158 valnos.push_back(VNI); 159 } 160} 161 162/// extendIntervalEndTo - This method is used when we want to extend the range 163/// specified by I to end at the specified endpoint. To do this, we should 164/// merge and eliminate all ranges that this will overlap with. The iterator is 165/// not invalidated. 166void LiveInterval::extendIntervalEndTo(Ranges::iterator I, SlotIndex NewEnd) { 167 assert(I != ranges.end() && "Not a valid interval!"); 168 VNInfo *ValNo = I->valno; 169 170 // Search for the first interval that we can't merge with. 171 Ranges::iterator MergeTo = llvm::next(I); 172 for (; MergeTo != ranges.end() && NewEnd >= MergeTo->end; ++MergeTo) { 173 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!"); 174 } 175 176 // If NewEnd was in the middle of an interval, make sure to get its endpoint. 177 I->end = std::max(NewEnd, prior(MergeTo)->end); 178 179 // Erase any dead ranges. 180 ranges.erase(llvm::next(I), MergeTo); 181 182 // If the newly formed range now touches the range after it and if they have 183 // the same value number, merge the two ranges into one range. 184 Ranges::iterator Next = llvm::next(I); 185 if (Next != ranges.end() && Next->start <= I->end && Next->valno == ValNo) { 186 I->end = Next->end; 187 ranges.erase(Next); 188 } 189} 190 191 192/// extendIntervalStartTo - This method is used when we want to extend the range 193/// specified by I to start at the specified endpoint. To do this, we should 194/// merge and eliminate all ranges that this will overlap with. 195LiveInterval::Ranges::iterator 196LiveInterval::extendIntervalStartTo(Ranges::iterator I, SlotIndex NewStart) { 197 assert(I != ranges.end() && "Not a valid interval!"); 198 VNInfo *ValNo = I->valno; 199 200 // Search for the first interval that we can't merge with. 201 Ranges::iterator MergeTo = I; 202 do { 203 if (MergeTo == ranges.begin()) { 204 I->start = NewStart; 205 ranges.erase(MergeTo, I); 206 return I; 207 } 208 assert(MergeTo->valno == ValNo && "Cannot merge with differing values!"); 209 --MergeTo; 210 } while (NewStart <= MergeTo->start); 211 212 // If we start in the middle of another interval, just delete a range and 213 // extend that interval. 214 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) { 215 MergeTo->end = I->end; 216 } else { 217 // Otherwise, extend the interval right after. 218 ++MergeTo; 219 MergeTo->start = NewStart; 220 MergeTo->end = I->end; 221 } 222 223 ranges.erase(llvm::next(MergeTo), llvm::next(I)); 224 return MergeTo; 225} 226 227LiveInterval::iterator 228LiveInterval::addRangeFrom(LiveRange LR, iterator From) { 229 SlotIndex Start = LR.start, End = LR.end; 230 iterator it = std::upper_bound(From, ranges.end(), Start); 231 232 // If the inserted interval starts in the middle or right at the end of 233 // another interval, just extend that interval to contain the range of LR. 234 if (it != ranges.begin()) { 235 iterator B = prior(it); 236 if (LR.valno == B->valno) { 237 if (B->start <= Start && B->end >= Start) { 238 extendIntervalEndTo(B, End); 239 return B; 240 } 241 } else { 242 // Check to make sure that we are not overlapping two live ranges with 243 // different valno's. 244 assert(B->end <= Start && 245 "Cannot overlap two LiveRanges with differing ValID's" 246 " (did you def the same reg twice in a MachineInstr?)"); 247 } 248 } 249 250 // Otherwise, if this range ends in the middle of, or right next to, another 251 // interval, merge it into that interval. 252 if (it != ranges.end()) { 253 if (LR.valno == it->valno) { 254 if (it->start <= End) { 255 it = extendIntervalStartTo(it, Start); 256 257 // If LR is a complete superset of an interval, we may need to grow its 258 // endpoint as well. 259 if (End > it->end) 260 extendIntervalEndTo(it, End); 261 return it; 262 } 263 } else { 264 // Check to make sure that we are not overlapping two live ranges with 265 // different valno's. 266 assert(it->start >= End && 267 "Cannot overlap two LiveRanges with differing ValID's"); 268 } 269 } 270 271 // Otherwise, this is just a new range that doesn't interact with anything. 272 // Insert it. 273 return ranges.insert(it, LR); 274} 275 276/// extendInBlock - If this interval is live before Kill in the basic 277/// block that starts at StartIdx, extend it to be live up to Kill and return 278/// the value. If there is no live range before Kill, return NULL. 279VNInfo *LiveInterval::extendInBlock(SlotIndex StartIdx, SlotIndex Kill) { 280 if (empty()) 281 return 0; 282 iterator I = std::upper_bound(begin(), end(), Kill.getPrevSlot()); 283 if (I == begin()) 284 return 0; 285 --I; 286 if (I->end <= StartIdx) 287 return 0; 288 if (I->end < Kill) 289 extendIntervalEndTo(I, Kill); 290 return I->valno; 291} 292 293/// removeRange - Remove the specified range from this interval. Note that 294/// the range must be in a single LiveRange in its entirety. 295void LiveInterval::removeRange(SlotIndex Start, SlotIndex End, 296 bool RemoveDeadValNo) { 297 // Find the LiveRange containing this span. 298 Ranges::iterator I = find(Start); 299 assert(I != ranges.end() && "Range is not in interval!"); 300 assert(I->containsRange(Start, End) && "Range is not entirely in interval!"); 301 302 // If the span we are removing is at the start of the LiveRange, adjust it. 303 VNInfo *ValNo = I->valno; 304 if (I->start == Start) { 305 if (I->end == End) { 306 if (RemoveDeadValNo) { 307 // Check if val# is dead. 308 bool isDead = true; 309 for (const_iterator II = begin(), EE = end(); II != EE; ++II) 310 if (II != I && II->valno == ValNo) { 311 isDead = false; 312 break; 313 } 314 if (isDead) { 315 // Now that ValNo is dead, remove it. 316 markValNoForDeletion(ValNo); 317 } 318 } 319 320 ranges.erase(I); // Removed the whole LiveRange. 321 } else 322 I->start = End; 323 return; 324 } 325 326 // Otherwise if the span we are removing is at the end of the LiveRange, 327 // adjust the other way. 328 if (I->end == End) { 329 I->end = Start; 330 return; 331 } 332 333 // Otherwise, we are splitting the LiveRange into two pieces. 334 SlotIndex OldEnd = I->end; 335 I->end = Start; // Trim the old interval. 336 337 // Insert the new one. 338 ranges.insert(llvm::next(I), LiveRange(End, OldEnd, ValNo)); 339} 340 341/// removeValNo - Remove all the ranges defined by the specified value#. 342/// Also remove the value# from value# list. 343void LiveInterval::removeValNo(VNInfo *ValNo) { 344 if (empty()) return; 345 Ranges::iterator I = ranges.end(); 346 Ranges::iterator E = ranges.begin(); 347 do { 348 --I; 349 if (I->valno == ValNo) 350 ranges.erase(I); 351 } while (I != E); 352 // Now that ValNo is dead, remove it. 353 markValNoForDeletion(ValNo); 354} 355 356/// findDefinedVNInfo - Find the VNInfo defined by the specified 357/// index (register interval). 358VNInfo *LiveInterval::findDefinedVNInfoForRegInt(SlotIndex Idx) const { 359 for (LiveInterval::const_vni_iterator i = vni_begin(), e = vni_end(); 360 i != e; ++i) { 361 if ((*i)->def == Idx) 362 return *i; 363 } 364 365 return 0; 366} 367 368/// join - Join two live intervals (this, and other) together. This applies 369/// mappings to the value numbers in the LHS/RHS intervals as specified. If 370/// the intervals are not joinable, this aborts. 371void LiveInterval::join(LiveInterval &Other, 372 const int *LHSValNoAssignments, 373 const int *RHSValNoAssignments, 374 SmallVector<VNInfo*, 16> &NewVNInfo, 375 MachineRegisterInfo *MRI) { 376 // Determine if any of our live range values are mapped. This is uncommon, so 377 // we want to avoid the interval scan if not. 378 bool MustMapCurValNos = false; 379 unsigned NumVals = getNumValNums(); 380 unsigned NumNewVals = NewVNInfo.size(); 381 for (unsigned i = 0; i != NumVals; ++i) { 382 unsigned LHSValID = LHSValNoAssignments[i]; 383 if (i != LHSValID || 384 (NewVNInfo[LHSValID] && NewVNInfo[LHSValID] != getValNumInfo(i))) { 385 MustMapCurValNos = true; 386 break; 387 } 388 } 389 390 // If we have to apply a mapping to our base interval assignment, rewrite it 391 // now. 392 if (MustMapCurValNos) { 393 // Map the first live range. 394 395 iterator OutIt = begin(); 396 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]]; 397 for (iterator I = next(OutIt), E = end(); I != E; ++I) { 398 VNInfo* nextValNo = NewVNInfo[LHSValNoAssignments[I->valno->id]]; 399 assert(nextValNo != 0 && "Huh?"); 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,4:0)[4,7:1) and map 0/1 onto the same value #. 404 if (OutIt->valno == nextValNo && OutIt->end == I->start) { 405 OutIt->end = I->end; 406 } else { 407 // Didn't merge. Move OutIt to the next interval, 408 ++OutIt; 409 OutIt->valno = nextValNo; 410 if (OutIt != I) { 411 OutIt->start = I->start; 412 OutIt->end = I->end; 413 } 414 } 415 } 416 // If we merge some live ranges, chop off the end. 417 ++OutIt; 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 // TODO: Make this more efficient. 481 iterator InsertPos = begin(); 482 for (const_iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) { 483 if (I->valno != RHSValNo) 484 continue; 485 // Map the valno in the other live range to the current live range. 486 LiveRange Tmp = *I; 487 Tmp.valno = LHSValNo; 488 InsertPos = addRangeFrom(Tmp, InsertPos); 489 } 490} 491 492 493/// MergeValueNumberInto - This method is called when two value nubmers 494/// are found to be equivalent. This eliminates V1, replacing all 495/// LiveRanges with the V1 value number with the V2 value number. This can 496/// cause merging of V1/V2 values numbers and compaction of the value space. 497VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) { 498 assert(V1 != V2 && "Identical value#'s are always equivalent!"); 499 500 // This code actually merges the (numerically) larger value number into the 501 // smaller value number, which is likely to allow us to compactify the value 502 // space. The only thing we have to be careful of is to preserve the 503 // instruction that defines the result value. 504 505 // Make sure V2 is smaller than V1. 506 if (V1->id < V2->id) { 507 V1->copyFrom(*V2); 508 std::swap(V1, V2); 509 } 510 511 // Merge V1 live ranges into V2. 512 for (iterator I = begin(); I != end(); ) { 513 iterator LR = I++; 514 if (LR->valno != V1) continue; // Not a V1 LiveRange. 515 516 // Okay, we found a V1 live range. If it had a previous, touching, V2 live 517 // range, extend it. 518 if (LR != begin()) { 519 iterator Prev = LR-1; 520 if (Prev->valno == V2 && Prev->end == LR->start) { 521 Prev->end = LR->end; 522 523 // Erase this live-range. 524 ranges.erase(LR); 525 I = Prev+1; 526 LR = Prev; 527 } 528 } 529 530 // Okay, now we have a V1 or V2 live range that is maximally merged forward. 531 // Ensure that it is a V2 live-range. 532 LR->valno = V2; 533 534 // If we can merge it into later V2 live ranges, do so now. We ignore any 535 // following V1 live ranges, as they will be merged in subsequent iterations 536 // of the loop. 537 if (I != end()) { 538 if (I->start == LR->end && I->valno == V2) { 539 LR->end = I->end; 540 ranges.erase(I); 541 I = LR+1; 542 } 543 } 544 } 545 546 // Merge the relevant flags. 547 V2->mergeFlags(V1); 548 549 // Now that V1 is dead, remove it. 550 markValNoForDeletion(V1); 551 552 return V2; 553} 554 555void LiveInterval::Copy(const LiveInterval &RHS, 556 MachineRegisterInfo *MRI, 557 VNInfo::Allocator &VNInfoAllocator) { 558 ranges.clear(); 559 valnos.clear(); 560 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg); 561 MRI->setRegAllocationHint(reg, Hint.first, Hint.second); 562 563 weight = RHS.weight; 564 for (unsigned i = 0, e = RHS.getNumValNums(); i != e; ++i) { 565 const VNInfo *VNI = RHS.getValNumInfo(i); 566 createValueCopy(VNI, VNInfoAllocator); 567 } 568 for (unsigned i = 0, e = RHS.ranges.size(); i != e; ++i) { 569 const LiveRange &LR = RHS.ranges[i]; 570 addRange(LiveRange(LR.start, LR.end, getValNumInfo(LR.valno->id))); 571 } 572} 573 574unsigned LiveInterval::getSize() const { 575 unsigned Sum = 0; 576 for (const_iterator I = begin(), E = end(); I != E; ++I) 577 Sum += I->start.distance(I->end); 578 return Sum; 579} 580 581/// ComputeJoinedWeight - Set the weight of a live interval Joined 582/// after Other has been merged into it. 583void LiveInterval::ComputeJoinedWeight(const LiveInterval &Other) { 584 // If either of these intervals was spilled, the weight is the 585 // weight of the non-spilled interval. This can only happen with 586 // iterative coalescers. 587 588 if (Other.weight != HUGE_VALF) { 589 weight += Other.weight; 590 } 591 else if (weight == HUGE_VALF && 592 !TargetRegisterInfo::isPhysicalRegister(reg)) { 593 // Remove this assert if you have an iterative coalescer 594 assert(0 && "Joining to spilled interval"); 595 weight = Other.weight; 596 } 597 else { 598 // Otherwise the weight stays the same 599 // Remove this assert if you have an iterative coalescer 600 assert(0 && "Joining from spilled interval"); 601 } 602} 603 604raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) { 605 return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")"; 606} 607 608void LiveRange::dump() const { 609 dbgs() << *this << "\n"; 610} 611 612void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { 613 OS << PrintReg(reg, TRI); 614 if (weight != 0) 615 OS << ',' << weight; 616 617 if (empty()) 618 OS << " EMPTY"; 619 else { 620 OS << " = "; 621 for (LiveInterval::Ranges::const_iterator I = ranges.begin(), 622 E = ranges.end(); I != E; ++I) { 623 OS << *I; 624 assert(I->valno == getValNumInfo(I->valno->id) && "Bad VNInfo"); 625 } 626 } 627 628 // Print value number info. 629 if (getNumValNums()) { 630 OS << " "; 631 unsigned vnum = 0; 632 for (const_vni_iterator i = vni_begin(), e = vni_end(); i != e; 633 ++i, ++vnum) { 634 const VNInfo *vni = *i; 635 if (vnum) OS << " "; 636 OS << vnum << "@"; 637 if (vni->isUnused()) { 638 OS << "x"; 639 } else { 640 OS << vni->def; 641 if (vni->isPHIDef()) 642 OS << "-phidef"; 643 if (vni->hasPHIKill()) 644 OS << "-phikill"; 645 if (vni->hasRedefByEC()) 646 OS << "-ec"; 647 } 648 } 649 } 650} 651 652void LiveInterval::dump() const { 653 dbgs() << *this << "\n"; 654} 655 656 657void LiveRange::print(raw_ostream &os) const { 658 os << *this; 659} 660 661unsigned ConnectedVNInfoEqClasses::Classify(const LiveInterval *LI) { 662 // Create initial equivalence classes. 663 EqClass.clear(); 664 EqClass.grow(LI->getNumValNums()); 665 666 const VNInfo *used = 0, *unused = 0; 667 668 // Determine connections. 669 for (LiveInterval::const_vni_iterator I = LI->vni_begin(), E = LI->vni_end(); 670 I != E; ++I) { 671 const VNInfo *VNI = *I; 672 // Group all unused values into one class. 673 if (VNI->isUnused()) { 674 if (unused) 675 EqClass.join(unused->id, VNI->id); 676 unused = VNI; 677 continue; 678 } 679 used = VNI; 680 if (VNI->isPHIDef()) { 681 const MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def); 682 assert(MBB && "Phi-def has no defining MBB"); 683 // Connect to values live out of predecessors. 684 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), 685 PE = MBB->pred_end(); PI != PE; ++PI) 686 if (const VNInfo *PVNI = LI->getVNInfoBefore(LIS.getMBBEndIdx(*PI))) 687 EqClass.join(VNI->id, PVNI->id); 688 } else { 689 // Normal value defined by an instruction. Check for two-addr redef. 690 // FIXME: This could be coincidental. Should we really check for a tied 691 // operand constraint? 692 // Note that VNI->def may be a use slot for an early clobber def. 693 if (const VNInfo *UVNI = LI->getVNInfoBefore(VNI->def)) 694 EqClass.join(VNI->id, UVNI->id); 695 } 696 } 697 698 // Lump all the unused values in with the last used value. 699 if (used && unused) 700 EqClass.join(used->id, unused->id); 701 702 EqClass.compress(); 703 return EqClass.getNumClasses(); 704} 705 706void ConnectedVNInfoEqClasses::Distribute(LiveInterval *LIV[], 707 MachineRegisterInfo &MRI) { 708 assert(LIV[0] && "LIV[0] must be set"); 709 LiveInterval &LI = *LIV[0]; 710 711 // Rewrite instructions. 712 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(LI.reg), 713 RE = MRI.reg_end(); RI != RE;) { 714 MachineOperand &MO = RI.getOperand(); 715 MachineInstr *MI = MO.getParent(); 716 ++RI; 717 if (MO.isUse() && MO.isUndef()) 718 continue; 719 // DBG_VALUE instructions should have been eliminated earlier. 720 SlotIndex Idx = LIS.getInstructionIndex(MI); 721 Idx = Idx.getRegSlot(MO.isUse()); 722 const VNInfo *VNI = LI.getVNInfoAt(Idx); 723 assert(VNI && "Interval not live at use."); 724 MO.setReg(LIV[getEqClass(VNI)]->reg); 725 } 726 727 // Move runs to new intervals. 728 LiveInterval::iterator J = LI.begin(), E = LI.end(); 729 while (J != E && EqClass[J->valno->id] == 0) 730 ++J; 731 for (LiveInterval::iterator I = J; I != E; ++I) { 732 if (unsigned eq = EqClass[I->valno->id]) { 733 assert((LIV[eq]->empty() || LIV[eq]->expiredAt(I->start)) && 734 "New intervals should be empty"); 735 LIV[eq]->ranges.push_back(*I); 736 } else 737 *J++ = *I; 738 } 739 LI.ranges.erase(J, E); 740 741 // Transfer VNInfos to their new owners and renumber them. 742 unsigned j = 0, e = LI.getNumValNums(); 743 while (j != e && EqClass[j] == 0) 744 ++j; 745 for (unsigned i = j; i != e; ++i) { 746 VNInfo *VNI = LI.getValNumInfo(i); 747 if (unsigned eq = EqClass[i]) { 748 VNI->id = LIV[eq]->getNumValNums(); 749 LIV[eq]->valnos.push_back(VNI); 750 } else { 751 VNI->id = j; 752 LI.valnos[j++] = VNI; 753 } 754 } 755 LI.valnos.resize(j); 756} 757