LiveIntervalAnalysis: Adapt handleMove() to subregister ranges.
[oota-llvm.git] / lib / CodeGen / LiveIntervalAnalysis.cpp
1 //===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
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 LiveInterval analysis pass which is used
11 // by the Linear Scan Register allocator. This pass linearizes the
12 // basic blocks of the function in DFS order and uses the
13 // LiveVariables pass to conservatively compute live intervals for
14 // each virtual and physical register.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
19 #include "LiveRangeCalc.h"
20 #include "llvm/ADT/DenseSet.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/Analysis/AliasAnalysis.h"
23 #include "llvm/CodeGen/LiveVariables.h"
24 #include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
25 #include "llvm/CodeGen/MachineDominators.h"
26 #include "llvm/CodeGen/MachineInstr.h"
27 #include "llvm/CodeGen/MachineRegisterInfo.h"
28 #include "llvm/CodeGen/Passes.h"
29 #include "llvm/CodeGen/VirtRegMap.h"
30 #include "llvm/IR/Value.h"
31 #include "llvm/Support/BlockFrequency.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/Format.h"
36 #include "llvm/Support/raw_ostream.h"
37 #include "llvm/Target/TargetInstrInfo.h"
38 #include "llvm/Target/TargetRegisterInfo.h"
39 #include "llvm/Target/TargetSubtargetInfo.h"
40 #include <algorithm>
41 #include <cmath>
42 #include <limits>
43 using namespace llvm;
44
45 #define DEBUG_TYPE "regalloc"
46
47 char LiveIntervals::ID = 0;
48 char &llvm::LiveIntervalsID = LiveIntervals::ID;
49 INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
50                 "Live Interval Analysis", false, false)
51 INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
52 INITIALIZE_PASS_DEPENDENCY(LiveVariables)
53 INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
54 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
55 INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
56                 "Live Interval Analysis", false, false)
57
58 #ifndef NDEBUG
59 static cl::opt<bool> EnablePrecomputePhysRegs(
60   "precompute-phys-liveness", cl::Hidden,
61   cl::desc("Eagerly compute live intervals for all physreg units."));
62 #else
63 static bool EnablePrecomputePhysRegs = false;
64 #endif // NDEBUG
65
66 void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
67   AU.setPreservesCFG();
68   AU.addRequired<AliasAnalysis>();
69   AU.addPreserved<AliasAnalysis>();
70   // LiveVariables isn't really required by this analysis, it is only required
71   // here to make sure it is live during TwoAddressInstructionPass and
72   // PHIElimination. This is temporary.
73   AU.addRequired<LiveVariables>();
74   AU.addPreserved<LiveVariables>();
75   AU.addPreservedID(MachineLoopInfoID);
76   AU.addRequiredTransitiveID(MachineDominatorsID);
77   AU.addPreservedID(MachineDominatorsID);
78   AU.addPreserved<SlotIndexes>();
79   AU.addRequiredTransitive<SlotIndexes>();
80   MachineFunctionPass::getAnalysisUsage(AU);
81 }
82
83 LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
84   DomTree(nullptr), LRCalc(nullptr) {
85   initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
86 }
87
88 LiveIntervals::~LiveIntervals() {
89   delete LRCalc;
90 }
91
92 void LiveIntervals::releaseMemory() {
93   // Free the live intervals themselves.
94   for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
95     delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
96   VirtRegIntervals.clear();
97   RegMaskSlots.clear();
98   RegMaskBits.clear();
99   RegMaskBlocks.clear();
100
101   for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
102     delete RegUnitRanges[i];
103   RegUnitRanges.clear();
104
105   // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
106   VNInfoAllocator.Reset();
107 }
108
109 /// runOnMachineFunction - calculates LiveIntervals
110 ///
111 bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
112   MF = &fn;
113   MRI = &MF->getRegInfo();
114   TRI = MF->getSubtarget().getRegisterInfo();
115   TII = MF->getSubtarget().getInstrInfo();
116   AA = &getAnalysis<AliasAnalysis>();
117   Indexes = &getAnalysis<SlotIndexes>();
118   DomTree = &getAnalysis<MachineDominatorTree>();
119   if (!LRCalc)
120     LRCalc = new LiveRangeCalc();
121
122   // Allocate space for all virtual registers.
123   VirtRegIntervals.resize(MRI->getNumVirtRegs());
124
125   computeVirtRegs();
126   computeRegMasks();
127   computeLiveInRegUnits();
128
129   if (EnablePrecomputePhysRegs) {
130     // For stress testing, precompute live ranges of all physical register
131     // units, including reserved registers.
132     for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
133       getRegUnit(i);
134   }
135   DEBUG(dump());
136   return true;
137 }
138
139 /// print - Implement the dump method.
140 void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
141   OS << "********** INTERVALS **********\n";
142
143   // Dump the regunits.
144   for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
145     if (LiveRange *LR = RegUnitRanges[i])
146       OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
147
148   // Dump the virtregs.
149   for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
150     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
151     if (hasInterval(Reg))
152       OS << getInterval(Reg) << '\n';
153   }
154
155   OS << "RegMasks:";
156   for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
157     OS << ' ' << RegMaskSlots[i];
158   OS << '\n';
159
160   printInstrs(OS);
161 }
162
163 void LiveIntervals::printInstrs(raw_ostream &OS) const {
164   OS << "********** MACHINEINSTRS **********\n";
165   MF->print(OS, Indexes);
166 }
167
168 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
169 void LiveIntervals::dumpInstrs() const {
170   printInstrs(dbgs());
171 }
172 #endif
173
174 LiveInterval* LiveIntervals::createInterval(unsigned reg) {
175   float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
176                   llvm::huge_valf : 0.0F;
177   return new LiveInterval(reg, Weight);
178 }
179
180
181 /// computeVirtRegInterval - Compute the live interval of a virtual register,
182 /// based on defs and uses.
183 void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
184   assert(LRCalc && "LRCalc not initialized.");
185   assert(LI.empty() && "Should only compute empty intervals.");
186   LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
187   LRCalc->createDeadDefs(LI);
188   LRCalc->extendToUses(LI);
189   computeDeadValues(LI, LI);
190 }
191
192 void LiveIntervals::computeVirtRegs() {
193   for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
194     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
195     if (MRI->reg_nodbg_empty(Reg))
196       continue;
197     createAndComputeVirtRegInterval(Reg);
198   }
199 }
200
201 void LiveIntervals::computeRegMasks() {
202   RegMaskBlocks.resize(MF->getNumBlockIDs());
203
204   // Find all instructions with regmask operands.
205   for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
206        MBBI != E; ++MBBI) {
207     MachineBasicBlock *MBB = MBBI;
208     std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
209     RMB.first = RegMaskSlots.size();
210     for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
211          MI != ME; ++MI)
212       for (MIOperands MO(MI); MO.isValid(); ++MO) {
213         if (!MO->isRegMask())
214           continue;
215           RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
216           RegMaskBits.push_back(MO->getRegMask());
217       }
218     // Compute the number of register mask instructions in this block.
219     RMB.second = RegMaskSlots.size() - RMB.first;
220   }
221 }
222
223 //===----------------------------------------------------------------------===//
224 //                           Register Unit Liveness
225 //===----------------------------------------------------------------------===//
226 //
227 // Fixed interference typically comes from ABI boundaries: Function arguments
228 // and return values are passed in fixed registers, and so are exception
229 // pointers entering landing pads. Certain instructions require values to be
230 // present in specific registers. That is also represented through fixed
231 // interference.
232 //
233
234 /// computeRegUnitInterval - Compute the live range of a register unit, based
235 /// on the uses and defs of aliasing registers.  The range should be empty,
236 /// or contain only dead phi-defs from ABI blocks.
237 void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
238   assert(LRCalc && "LRCalc not initialized.");
239   LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
240
241   // The physregs aliasing Unit are the roots and their super-registers.
242   // Create all values as dead defs before extending to uses. Note that roots
243   // may share super-registers. That's OK because createDeadDefs() is
244   // idempotent. It is very rare for a register unit to have multiple roots, so
245   // uniquing super-registers is probably not worthwhile.
246   for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
247     for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
248          Supers.isValid(); ++Supers) {
249       if (!MRI->reg_empty(*Supers))
250         LRCalc->createDeadDefs(LR, *Supers);
251     }
252   }
253
254   // Now extend LR to reach all uses.
255   // Ignore uses of reserved registers. We only track defs of those.
256   for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
257     for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
258          Supers.isValid(); ++Supers) {
259       unsigned Reg = *Supers;
260       if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
261         LRCalc->extendToUses(LR, Reg);
262     }
263   }
264 }
265
266
267 /// computeLiveInRegUnits - Precompute the live ranges of any register units
268 /// that are live-in to an ABI block somewhere. Register values can appear
269 /// without a corresponding def when entering the entry block or a landing pad.
270 ///
271 void LiveIntervals::computeLiveInRegUnits() {
272   RegUnitRanges.resize(TRI->getNumRegUnits());
273   DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
274
275   // Keep track of the live range sets allocated.
276   SmallVector<unsigned, 8> NewRanges;
277
278   // Check all basic blocks for live-ins.
279   for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
280        MFI != MFE; ++MFI) {
281     const MachineBasicBlock *MBB = MFI;
282
283     // We only care about ABI blocks: Entry + landing pads.
284     if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
285       continue;
286
287     // Create phi-defs at Begin for all live-in registers.
288     SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
289     DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
290     for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
291          LIE = MBB->livein_end(); LII != LIE; ++LII) {
292       for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
293         unsigned Unit = *Units;
294         LiveRange *LR = RegUnitRanges[Unit];
295         if (!LR) {
296           LR = RegUnitRanges[Unit] = new LiveRange();
297           NewRanges.push_back(Unit);
298         }
299         VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
300         (void)VNI;
301         DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
302       }
303     }
304     DEBUG(dbgs() << '\n');
305   }
306   DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
307
308   // Compute the 'normal' part of the ranges.
309   for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
310     unsigned Unit = NewRanges[i];
311     computeRegUnitRange(*RegUnitRanges[Unit], Unit);
312   }
313 }
314
315
316 static void createSegmentsForValues(LiveRange &LR,
317       iterator_range<LiveInterval::vni_iterator> VNIs) {
318   for (auto VNI : VNIs) {
319     if (VNI->isUnused())
320       continue;
321     SlotIndex Def = VNI->def;
322     LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
323   }
324 }
325
326 typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
327
328 static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
329                                  ShrinkToUsesWorkList &WorkList,
330                                  const LiveRange &OldRange) {
331   // Keep track of the PHIs that are in use.
332   SmallPtrSet<VNInfo*, 8> UsedPHIs;
333   // Blocks that have already been added to WorkList as live-out.
334   SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
335
336   // Extend intervals to reach all uses in WorkList.
337   while (!WorkList.empty()) {
338     SlotIndex Idx = WorkList.back().first;
339     VNInfo *VNI = WorkList.back().second;
340     WorkList.pop_back();
341     const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
342     SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
343
344     // Extend the live range for VNI to be live at Idx.
345     if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
346       assert(ExtVNI == VNI && "Unexpected existing value number");
347       (void)ExtVNI;
348       // Is this a PHIDef we haven't seen before?
349       if (!VNI->isPHIDef() || VNI->def != BlockStart ||
350           !UsedPHIs.insert(VNI).second)
351         continue;
352       // The PHI is live, make sure the predecessors are live-out.
353       for (auto &Pred : MBB->predecessors()) {
354         if (!LiveOut.insert(Pred).second)
355           continue;
356         SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
357         // A predecessor is not required to have a live-out value for a PHI.
358         if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
359           WorkList.push_back(std::make_pair(Stop, PVNI));
360       }
361       continue;
362     }
363
364     // VNI is live-in to MBB.
365     DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
366     LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
367
368     // Make sure VNI is live-out from the predecessors.
369     for (auto &Pred : MBB->predecessors()) {
370       if (!LiveOut.insert(Pred).second)
371         continue;
372       SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
373       assert(OldRange.getVNInfoBefore(Stop) == VNI &&
374              "Wrong value out of predecessor");
375       WorkList.push_back(std::make_pair(Stop, VNI));
376     }
377   }
378 }
379
380 /// shrinkToUses - After removing some uses of a register, shrink its live
381 /// range to just the remaining uses. This method does not compute reaching
382 /// defs for new uses, and it doesn't remove dead defs.
383 bool LiveIntervals::shrinkToUses(LiveInterval *li,
384                                  SmallVectorImpl<MachineInstr*> *dead) {
385   DEBUG(dbgs() << "Shrink: " << *li << '\n');
386   assert(TargetRegisterInfo::isVirtualRegister(li->reg)
387          && "Can only shrink virtual registers");
388
389   // Shrink subregister live ranges.
390   for (LiveInterval::subrange_iterator I = li->subrange_begin(),
391        E = li->subrange_end(); I != E; ++I) {
392     shrinkToUses(*I, li->reg);
393   }
394
395   // Find all the values used, including PHI kills.
396   ShrinkToUsesWorkList WorkList;
397
398   // Visit all instructions reading li->reg.
399   for (MachineRegisterInfo::reg_instr_iterator
400        I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
401        I != E; ) {
402     MachineInstr *UseMI = &*(I++);
403     if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
404       continue;
405     SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
406     LiveQueryResult LRQ = li->Query(Idx);
407     VNInfo *VNI = LRQ.valueIn();
408     if (!VNI) {
409       // This shouldn't happen: readsVirtualRegister returns true, but there is
410       // no live value. It is likely caused by a target getting <undef> flags
411       // wrong.
412       DEBUG(dbgs() << Idx << '\t' << *UseMI
413                    << "Warning: Instr claims to read non-existent value in "
414                     << *li << '\n');
415       continue;
416     }
417     // Special case: An early-clobber tied operand reads and writes the
418     // register one slot early.
419     if (VNInfo *DefVNI = LRQ.valueDefined())
420       Idx = DefVNI->def;
421
422     WorkList.push_back(std::make_pair(Idx, VNI));
423   }
424
425   // Create new live ranges with only minimal live segments per def.
426   LiveRange NewLR;
427   createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
428   extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
429
430   // Handle dead values.
431   bool CanSeparate;
432   computeDeadValues(NewLR, *li, &CanSeparate, li->reg, dead);
433
434   // Move the trimmed segments back.
435   li->segments.swap(NewLR.segments);
436   DEBUG(dbgs() << "Shrunk: " << *li << '\n');
437   return CanSeparate;
438 }
439
440 void LiveIntervals::computeDeadValues(LiveRange &Segments, LiveRange &LR,
441                                       bool *CanSeparateRes, unsigned Reg,
442                                       SmallVectorImpl<MachineInstr*> *dead) {
443   bool CanSeparate = false;
444   for (auto VNI : make_range(LR.vni_begin(), LR.vni_end())) {
445     if (VNI->isUnused())
446       continue;
447     LiveRange::iterator LRI = Segments.FindSegmentContaining(VNI->def);
448     assert(LRI != Segments.end() && "Missing segment for PHI");
449     if (LRI->end != VNI->def.getDeadSlot())
450       continue;
451     if (VNI->isPHIDef()) {
452       // This is a dead PHI. Remove it.
453       VNI->markUnused();
454       Segments.removeSegment(LRI->start, LRI->end);
455       DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
456       CanSeparate = true;
457     } else if (dead != nullptr) {
458       // This is a dead def. Make sure the instruction knows.
459       MachineInstr *MI = getInstructionFromIndex(VNI->def);
460       assert(MI && "No instruction defining live value");
461       MI->addRegisterDead(Reg, TRI);
462       if (dead && MI->allDefsAreDead()) {
463         DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
464         dead->push_back(MI);
465       }
466     }
467   }
468   if (CanSeparateRes != nullptr)
469     *CanSeparateRes = CanSeparate;
470 }
471
472 bool LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
473 {
474   DEBUG(dbgs() << "Shrink: " << SR << '\n');
475   assert(TargetRegisterInfo::isVirtualRegister(Reg)
476          && "Can only shrink virtual registers");
477   // Find all the values used, including PHI kills.
478   ShrinkToUsesWorkList WorkList;
479
480   // Visit all instructions reading Reg.
481   SlotIndex LastIdx;
482   for (MachineOperand &MO : MRI->reg_operands(Reg)) {
483     MachineInstr *UseMI = MO.getParent();
484     if (UseMI->isDebugValue())
485       continue;
486     // Maybe the operand is for a subregister we don't care about.
487     unsigned SubReg = MO.getSubReg();
488     if (SubReg != 0) {
489       unsigned SubRegMask = TRI->getSubRegIndexLaneMask(SubReg);
490       if ((SubRegMask & SR.LaneMask) == 0)
491         continue;
492     }
493     // We only need to visit each instruction once.
494     SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
495     if (Idx == LastIdx)
496       continue;
497     LastIdx = Idx;
498
499     LiveQueryResult LRQ = SR.Query(Idx);
500     VNInfo *VNI = LRQ.valueIn();
501     // For Subranges it is possible that only undef values are left in that
502     // part of the subregister, so there is no real liverange at the use
503     if (!VNI)
504       continue;
505
506     // Special case: An early-clobber tied operand reads and writes the
507     // register one slot early.
508     if (VNInfo *DefVNI = LRQ.valueDefined())
509       Idx = DefVNI->def;
510
511     WorkList.push_back(std::make_pair(Idx, VNI));
512   }
513
514   // Create a new live ranges with only minimal live segments per def.
515   LiveRange NewLR;
516   createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
517   extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
518
519   // Handle dead values.
520   bool CanSeparate;
521   computeDeadValues(NewLR, SR, &CanSeparate);
522
523   // Move the trimmed ranges back.
524   SR.segments.swap(NewLR.segments);
525   DEBUG(dbgs() << "Shrunk: " << SR << '\n');
526   return CanSeparate;
527 }
528
529 void LiveIntervals::extendToIndices(LiveRange &LR,
530                                     ArrayRef<SlotIndex> Indices) {
531   assert(LRCalc && "LRCalc not initialized.");
532   LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
533   for (unsigned i = 0, e = Indices.size(); i != e; ++i)
534     LRCalc->extend(LR, Indices[i]);
535 }
536
537 void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill,
538                                SmallVectorImpl<SlotIndex> *EndPoints) {
539   LiveQueryResult LRQ = LI->Query(Kill);
540   VNInfo *VNI = LRQ.valueOut();
541   if (!VNI)
542     return;
543
544   MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
545   SlotIndex MBBStart, MBBEnd;
546   std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
547
548   // If VNI isn't live out from KillMBB, the value is trivially pruned.
549   if (LRQ.endPoint() < MBBEnd) {
550     LI->removeSegment(Kill, LRQ.endPoint());
551     if (EndPoints) EndPoints->push_back(LRQ.endPoint());
552     return;
553   }
554
555   // VNI is live out of KillMBB.
556   LI->removeSegment(Kill, MBBEnd);
557   if (EndPoints) EndPoints->push_back(MBBEnd);
558
559   // Find all blocks that are reachable from KillMBB without leaving VNI's live
560   // range. It is possible that KillMBB itself is reachable, so start a DFS
561   // from each successor.
562   typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
563   VisitedTy Visited;
564   for (MachineBasicBlock::succ_iterator
565        SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
566        SuccI != SuccE; ++SuccI) {
567     for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
568          I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
569          I != E;) {
570       MachineBasicBlock *MBB = *I;
571
572       // Check if VNI is live in to MBB.
573       std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
574       LiveQueryResult LRQ = LI->Query(MBBStart);
575       if (LRQ.valueIn() != VNI) {
576         // This block isn't part of the VNI segment. Prune the search.
577         I.skipChildren();
578         continue;
579       }
580
581       // Prune the search if VNI is killed in MBB.
582       if (LRQ.endPoint() < MBBEnd) {
583         LI->removeSegment(MBBStart, LRQ.endPoint());
584         if (EndPoints) EndPoints->push_back(LRQ.endPoint());
585         I.skipChildren();
586         continue;
587       }
588
589       // VNI is live through MBB.
590       LI->removeSegment(MBBStart, MBBEnd);
591       if (EndPoints) EndPoints->push_back(MBBEnd);
592       ++I;
593     }
594   }
595 }
596
597 //===----------------------------------------------------------------------===//
598 // Register allocator hooks.
599 //
600
601 void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
602   // Keep track of regunit ranges.
603   SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU;
604
605   for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
606     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
607     if (MRI->reg_nodbg_empty(Reg))
608       continue;
609     LiveInterval *LI = &getInterval(Reg);
610     if (LI->empty())
611       continue;
612
613     // Find the regunit intervals for the assigned register. They may overlap
614     // the virtual register live range, cancelling any kills.
615     RU.clear();
616     for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
617          ++Units) {
618       LiveRange &RURanges = getRegUnit(*Units);
619       if (RURanges.empty())
620         continue;
621       RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end)));
622     }
623
624     // Every instruction that kills Reg corresponds to a segment range end
625     // point.
626     for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE;
627          ++RI) {
628       // A block index indicates an MBB edge.
629       if (RI->end.isBlock())
630         continue;
631       MachineInstr *MI = getInstructionFromIndex(RI->end);
632       if (!MI)
633         continue;
634
635       // Check if any of the regunits are live beyond the end of RI. That could
636       // happen when a physreg is defined as a copy of a virtreg:
637       //
638       //   %EAX = COPY %vreg5
639       //   FOO %vreg5         <--- MI, cancel kill because %EAX is live.
640       //   BAR %EAX<kill>
641       //
642       // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
643       bool CancelKill = false;
644       for (unsigned u = 0, e = RU.size(); u != e; ++u) {
645         LiveRange &RRanges = *RU[u].first;
646         LiveRange::iterator &I = RU[u].second;
647         if (I == RRanges.end())
648           continue;
649         I = RRanges.advanceTo(I, RI->end);
650         if (I == RRanges.end() || I->start >= RI->end)
651           continue;
652         // I is overlapping RI.
653         CancelKill = true;
654         break;
655       }
656       if (CancelKill)
657         MI->clearRegisterKills(Reg, nullptr);
658       else
659         MI->addRegisterKilled(Reg, nullptr);
660     }
661   }
662 }
663
664 MachineBasicBlock*
665 LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
666   // A local live range must be fully contained inside the block, meaning it is
667   // defined and killed at instructions, not at block boundaries. It is not
668   // live in or or out of any block.
669   //
670   // It is technically possible to have a PHI-defined live range identical to a
671   // single block, but we are going to return false in that case.
672
673   SlotIndex Start = LI.beginIndex();
674   if (Start.isBlock())
675     return nullptr;
676
677   SlotIndex Stop = LI.endIndex();
678   if (Stop.isBlock())
679     return nullptr;
680
681   // getMBBFromIndex doesn't need to search the MBB table when both indexes
682   // belong to proper instructions.
683   MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
684   MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
685   return MBB1 == MBB2 ? MBB1 : nullptr;
686 }
687
688 bool
689 LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
690   for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
691        I != E; ++I) {
692     const VNInfo *PHI = *I;
693     if (PHI->isUnused() || !PHI->isPHIDef())
694       continue;
695     const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
696     // Conservatively return true instead of scanning huge predecessor lists.
697     if (PHIMBB->pred_size() > 100)
698       return true;
699     for (MachineBasicBlock::const_pred_iterator
700          PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
701       if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
702         return true;
703   }
704   return false;
705 }
706
707 float
708 LiveIntervals::getSpillWeight(bool isDef, bool isUse,
709                               const MachineBlockFrequencyInfo *MBFI,
710                               const MachineInstr *MI) {
711   BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
712   const float Scale = 1.0f / MBFI->getEntryFreq();
713   return (isDef + isUse) * (Freq.getFrequency() * Scale);
714 }
715
716 LiveRange::Segment
717 LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
718   LiveInterval& Interval = createEmptyInterval(reg);
719   VNInfo* VN = Interval.getNextValue(
720     SlotIndex(getInstructionIndex(startInst).getRegSlot()),
721     getVNInfoAllocator());
722   LiveRange::Segment S(
723      SlotIndex(getInstructionIndex(startInst).getRegSlot()),
724      getMBBEndIdx(startInst->getParent()), VN);
725   Interval.addSegment(S);
726
727   return S;
728 }
729
730
731 //===----------------------------------------------------------------------===//
732 //                          Register mask functions
733 //===----------------------------------------------------------------------===//
734
735 bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
736                                              BitVector &UsableRegs) {
737   if (LI.empty())
738     return false;
739   LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
740
741   // Use a smaller arrays for local live ranges.
742   ArrayRef<SlotIndex> Slots;
743   ArrayRef<const uint32_t*> Bits;
744   if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
745     Slots = getRegMaskSlotsInBlock(MBB->getNumber());
746     Bits = getRegMaskBitsInBlock(MBB->getNumber());
747   } else {
748     Slots = getRegMaskSlots();
749     Bits = getRegMaskBits();
750   }
751
752   // We are going to enumerate all the register mask slots contained in LI.
753   // Start with a binary search of RegMaskSlots to find a starting point.
754   ArrayRef<SlotIndex>::iterator SlotI =
755     std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
756   ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
757
758   // No slots in range, LI begins after the last call.
759   if (SlotI == SlotE)
760     return false;
761
762   bool Found = false;
763   for (;;) {
764     assert(*SlotI >= LiveI->start);
765     // Loop over all slots overlapping this segment.
766     while (*SlotI < LiveI->end) {
767       // *SlotI overlaps LI. Collect mask bits.
768       if (!Found) {
769         // This is the first overlap. Initialize UsableRegs to all ones.
770         UsableRegs.clear();
771         UsableRegs.resize(TRI->getNumRegs(), true);
772         Found = true;
773       }
774       // Remove usable registers clobbered by this mask.
775       UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
776       if (++SlotI == SlotE)
777         return Found;
778     }
779     // *SlotI is beyond the current LI segment.
780     LiveI = LI.advanceTo(LiveI, *SlotI);
781     if (LiveI == LiveE)
782       return Found;
783     // Advance SlotI until it overlaps.
784     while (*SlotI < LiveI->start)
785       if (++SlotI == SlotE)
786         return Found;
787   }
788 }
789
790 //===----------------------------------------------------------------------===//
791 //                         IntervalUpdate class.
792 //===----------------------------------------------------------------------===//
793
794 // HMEditor is a toolkit used by handleMove to trim or extend live intervals.
795 class LiveIntervals::HMEditor {
796 private:
797   LiveIntervals& LIS;
798   const MachineRegisterInfo& MRI;
799   const TargetRegisterInfo& TRI;
800   SlotIndex OldIdx;
801   SlotIndex NewIdx;
802   SmallPtrSet<LiveRange*, 8> Updated;
803   bool UpdateFlags;
804
805 public:
806   HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
807            const TargetRegisterInfo& TRI,
808            SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
809     : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
810       UpdateFlags(UpdateFlags) {}
811
812   // FIXME: UpdateFlags is a workaround that creates live intervals for all
813   // physregs, even those that aren't needed for regalloc, in order to update
814   // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
815   // flags, and postRA passes will use a live register utility instead.
816   LiveRange *getRegUnitLI(unsigned Unit) {
817     if (UpdateFlags)
818       return &LIS.getRegUnit(Unit);
819     return LIS.getCachedRegUnit(Unit);
820   }
821
822   /// Update all live ranges touched by MI, assuming a move from OldIdx to
823   /// NewIdx.
824   void updateAllRanges(MachineInstr *MI) {
825     DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
826     bool hasRegMask = false;
827     for (MIOperands MO(MI); MO.isValid(); ++MO) {
828       if (MO->isRegMask())
829         hasRegMask = true;
830       if (!MO->isReg())
831         continue;
832       // Aggressively clear all kill flags.
833       // They are reinserted by VirtRegRewriter.
834       if (MO->isUse())
835         MO->setIsKill(false);
836
837       unsigned Reg = MO->getReg();
838       if (!Reg)
839         continue;
840       if (TargetRegisterInfo::isVirtualRegister(Reg)) {
841         LiveInterval &LI = LIS.getInterval(Reg);
842         if (LI.hasSubRanges()) {
843           unsigned SubReg = MO->getSubReg();
844           unsigned LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
845           for (LiveInterval::subrange_iterator S = LI.subrange_begin(),
846                SE = LI.subrange_end(); S != SE; ++S) {
847             if ((S->LaneMask & LaneMask) == 0)
848               continue;
849             updateRange(*S, Reg, S->LaneMask);
850           }
851         }
852         updateRange(LI, Reg, 0);
853         continue;
854       }
855
856       // For physregs, only update the regunits that actually have a
857       // precomputed live range.
858       for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
859         if (LiveRange *LR = getRegUnitLI(*Units))
860           updateRange(*LR, *Units, 0);
861     }
862     if (hasRegMask)
863       updateRegMaskSlots();
864   }
865
866 private:
867   /// Update a single live range, assuming an instruction has been moved from
868   /// OldIdx to NewIdx.
869   void updateRange(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
870     if (!Updated.insert(&LR).second)
871       return;
872     DEBUG({
873       dbgs() << "     ";
874       if (TargetRegisterInfo::isVirtualRegister(Reg)) {
875         dbgs() << PrintReg(Reg);
876         if (LaneMask != 0)
877           dbgs() << format(" L%04X", LaneMask);
878       } else {
879         dbgs() << PrintRegUnit(Reg, &TRI);
880       }
881       dbgs() << ":\t" << LR << '\n';
882     });
883     if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
884       handleMoveDown(LR);
885     else
886       handleMoveUp(LR, Reg, LaneMask);
887     DEBUG(dbgs() << "        -->\t" << LR << '\n');
888     LR.verify();
889   }
890
891   /// Update LR to reflect an instruction has been moved downwards from OldIdx
892   /// to NewIdx.
893   ///
894   /// 1. Live def at OldIdx:
895   ///    Move def to NewIdx, assert endpoint after NewIdx.
896   ///
897   /// 2. Live def at OldIdx, killed at NewIdx:
898   ///    Change to dead def at NewIdx.
899   ///    (Happens when bundling def+kill together).
900   ///
901   /// 3. Dead def at OldIdx:
902   ///    Move def to NewIdx, possibly across another live value.
903   ///
904   /// 4. Def at OldIdx AND at NewIdx:
905   ///    Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
906   ///    (Happens when bundling multiple defs together).
907   ///
908   /// 5. Value read at OldIdx, killed before NewIdx:
909   ///    Extend kill to NewIdx.
910   ///
911   void handleMoveDown(LiveRange &LR) {
912     // First look for a kill at OldIdx.
913     LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
914     LiveRange::iterator E = LR.end();
915     // Is LR even live at OldIdx?
916     if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
917       return;
918
919     // Handle a live-in value.
920     if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
921       bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
922       // If the live-in value already extends to NewIdx, there is nothing to do.
923       if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
924         return;
925       // Aggressively remove all kill flags from the old kill point.
926       // Kill flags shouldn't be used while live intervals exist, they will be
927       // reinserted by VirtRegRewriter.
928       if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
929         for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
930           if (MO->isReg() && MO->isUse())
931             MO->setIsKill(false);
932       // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
933       // overlapping ranges. Case 5 above.
934       I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
935       // If this was a kill, there may also be a def. Otherwise we're done.
936       if (!isKill)
937         return;
938       ++I;
939     }
940
941     // Check for a def at OldIdx.
942     if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
943       return;
944     // We have a def at OldIdx.
945     VNInfo *DefVNI = I->valno;
946     assert(DefVNI->def == I->start && "Inconsistent def");
947     DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
948     // If the defined value extends beyond NewIdx, just move the def down.
949     // This is case 1 above.
950     if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
951       I->start = DefVNI->def;
952       return;
953     }
954     // The remaining possibilities are now:
955     // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
956     // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
957     // In either case, it is possible that there is an existing def at NewIdx.
958     assert((I->end == OldIdx.getDeadSlot() ||
959             SlotIndex::isSameInstr(I->end, NewIdx)) &&
960             "Cannot move def below kill");
961     LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
962     if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
963       // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
964       // coalesced into that value.
965       assert(NewI->valno != DefVNI && "Multiple defs of value?");
966       LR.removeValNo(DefVNI);
967       return;
968     }
969     // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
970     // If the def at OldIdx was dead, we allow it to be moved across other LR
971     // values. The new range should be placed immediately before NewI, move any
972     // intermediate ranges up.
973     assert(NewI != I && "Inconsistent iterators");
974     std::copy(std::next(I), NewI, I);
975     *std::prev(NewI)
976       = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
977   }
978
979   /// Update LR to reflect an instruction has been moved upwards from OldIdx
980   /// to NewIdx.
981   ///
982   /// 1. Live def at OldIdx:
983   ///    Hoist def to NewIdx.
984   ///
985   /// 2. Dead def at OldIdx:
986   ///    Hoist def+end to NewIdx, possibly move across other values.
987   ///
988   /// 3. Dead def at OldIdx AND existing def at NewIdx:
989   ///    Remove value defined at OldIdx, coalescing it with existing value.
990   ///
991   /// 4. Live def at OldIdx AND existing def at NewIdx:
992   ///    Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
993   ///    (Happens when bundling multiple defs together).
994   ///
995   /// 5. Value killed at OldIdx:
996   ///    Hoist kill to NewIdx, then scan for last kill between NewIdx and
997   ///    OldIdx.
998   ///
999   void handleMoveUp(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
1000     // First look for a kill at OldIdx.
1001     LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1002     LiveRange::iterator E = LR.end();
1003     // Is LR even live at OldIdx?
1004     if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1005       return;
1006
1007     // Handle a live-in value.
1008     if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1009       // If the live-in value isn't killed here, there is nothing to do.
1010       if (!SlotIndex::isSameInstr(OldIdx, I->end))
1011         return;
1012       // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1013       // another use, we need to search for that use. Case 5 above.
1014       I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1015       ++I;
1016       // If OldIdx also defines a value, there couldn't have been another use.
1017       if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1018         // No def, search for the new kill.
1019         // This can never be an early clobber kill since there is no def.
1020         std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
1021         return;
1022       }
1023     }
1024
1025     // Now deal with the def at OldIdx.
1026     assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1027     VNInfo *DefVNI = I->valno;
1028     assert(DefVNI->def == I->start && "Inconsistent def");
1029     DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1030
1031     // Check for an existing def at NewIdx.
1032     LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
1033     if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1034       assert(NewI->valno != DefVNI && "Same value defined more than once?");
1035       // There is an existing def at NewIdx.
1036       if (I->end.isDead()) {
1037         // Case 3: Remove the dead def at OldIdx.
1038         LR.removeValNo(DefVNI);
1039         return;
1040       }
1041       // Case 4: Replace def at NewIdx with live def at OldIdx.
1042       I->start = DefVNI->def;
1043       LR.removeValNo(NewI->valno);
1044       return;
1045     }
1046
1047     // There is no existing def at NewIdx. Hoist DefVNI.
1048     if (!I->end.isDead()) {
1049       // Leave the end point of a live def.
1050       I->start = DefVNI->def;
1051       return;
1052     }
1053
1054     // DefVNI is a dead def. It may have been moved across other values in LR,
1055     // so move I up to NewI. Slide [NewI;I) down one position.
1056     std::copy_backward(NewI, I, std::next(I));
1057     *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
1058   }
1059
1060   void updateRegMaskSlots() {
1061     SmallVectorImpl<SlotIndex>::iterator RI =
1062       std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1063                        OldIdx);
1064     assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1065            "No RegMask at OldIdx.");
1066     *RI = NewIdx.getRegSlot();
1067     assert((RI == LIS.RegMaskSlots.begin() ||
1068             SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1069            "Cannot move regmask instruction above another call");
1070     assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1071             SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1072            "Cannot move regmask instruction below another call");
1073   }
1074
1075   // Return the last use of reg between NewIdx and OldIdx.
1076   SlotIndex findLastUseBefore(unsigned Reg, unsigned LaneMask) {
1077
1078     if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1079       SlotIndex LastUse = NewIdx;
1080       for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1081         unsigned SubReg = MO.getSubReg();
1082         if (SubReg != 0 && LaneMask != 0
1083             && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1084           continue;
1085
1086         const MachineInstr *MI = MO.getParent();
1087         SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1088         if (InstSlot > LastUse && InstSlot < OldIdx)
1089           LastUse = InstSlot;
1090       }
1091       return LastUse;
1092     }
1093
1094     // This is a regunit interval, so scanning the use list could be very
1095     // expensive. Scan upwards from OldIdx instead.
1096     assert(NewIdx < OldIdx && "Expected upwards move");
1097     SlotIndexes *Indexes = LIS.getSlotIndexes();
1098     MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1099
1100     // OldIdx may not correspond to an instruction any longer, so set MII to
1101     // point to the next instruction after OldIdx, or MBB->end().
1102     MachineBasicBlock::iterator MII = MBB->end();
1103     if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1104                            Indexes->getNextNonNullIndex(OldIdx)))
1105       if (MI->getParent() == MBB)
1106         MII = MI;
1107
1108     MachineBasicBlock::iterator Begin = MBB->begin();
1109     while (MII != Begin) {
1110       if ((--MII)->isDebugValue())
1111         continue;
1112       SlotIndex Idx = Indexes->getInstructionIndex(MII);
1113
1114       // Stop searching when NewIdx is reached.
1115       if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1116         return NewIdx;
1117
1118       // Check if MII uses Reg.
1119       for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1120         if (MO->isReg() &&
1121             TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1122             TRI.hasRegUnit(MO->getReg(), Reg))
1123           return Idx;
1124     }
1125     // Didn't reach NewIdx. It must be the first instruction in the block.
1126     return NewIdx;
1127   }
1128 };
1129
1130 void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
1131   assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
1132   SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1133   Indexes->removeMachineInstrFromMaps(MI);
1134   SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
1135   assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1136          OldIndex < getMBBEndIdx(MI->getParent()) &&
1137          "Cannot handle moves across basic block boundaries.");
1138
1139   HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
1140   HME.updateAllRanges(MI);
1141 }
1142
1143 void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
1144                                          MachineInstr* BundleStart,
1145                                          bool UpdateFlags) {
1146   SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1147   SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
1148   HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
1149   HME.updateAllRanges(MI);
1150 }
1151
1152 void
1153 LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
1154                                       MachineBasicBlock::iterator Begin,
1155                                       MachineBasicBlock::iterator End,
1156                                       ArrayRef<unsigned> OrigRegs) {
1157   // Find anchor points, which are at the beginning/end of blocks or at
1158   // instructions that already have indexes.
1159   while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1160     --Begin;
1161   while (End != MBB->end() && !Indexes->hasIndex(End))
1162     ++End;
1163
1164   SlotIndex endIdx;
1165   if (End == MBB->end())
1166     endIdx = getMBBEndIdx(MBB).getPrevSlot();
1167   else
1168     endIdx = getInstructionIndex(End);
1169
1170   Indexes->repairIndexesInRange(MBB, Begin, End);
1171
1172   for (MachineBasicBlock::iterator I = End; I != Begin;) {
1173     --I;
1174     MachineInstr *MI = I;
1175     if (MI->isDebugValue())
1176       continue;
1177     for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1178          MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1179       if (MOI->isReg() &&
1180           TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1181           !hasInterval(MOI->getReg())) {
1182         createAndComputeVirtRegInterval(MOI->getReg());
1183       }
1184     }
1185   }
1186
1187   for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1188     unsigned Reg = OrigRegs[i];
1189     if (!TargetRegisterInfo::isVirtualRegister(Reg))
1190       continue;
1191
1192     LiveInterval &LI = getInterval(Reg);
1193     // FIXME: Should we support undefs that gain defs?
1194     if (!LI.hasAtLeastOneValue())
1195       continue;
1196
1197     LiveInterval::iterator LII = LI.find(endIdx);
1198     SlotIndex lastUseIdx;
1199     if (LII != LI.end() && LII->start < endIdx)
1200       lastUseIdx = LII->end;
1201     else
1202       --LII;
1203
1204     for (MachineBasicBlock::iterator I = End; I != Begin;) {
1205       --I;
1206       MachineInstr *MI = I;
1207       if (MI->isDebugValue())
1208         continue;
1209
1210       SlotIndex instrIdx = getInstructionIndex(MI);
1211       bool isStartValid = getInstructionFromIndex(LII->start);
1212       bool isEndValid = getInstructionFromIndex(LII->end);
1213
1214       // FIXME: This doesn't currently handle early-clobber or multiple removed
1215       // defs inside of the region to repair.
1216       for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1217            OE = MI->operands_end(); OI != OE; ++OI) {
1218         const MachineOperand &MO = *OI;
1219         if (!MO.isReg() || MO.getReg() != Reg)
1220           continue;
1221
1222         if (MO.isDef()) {
1223           if (!isStartValid) {
1224             if (LII->end.isDead()) {
1225               SlotIndex prevStart;
1226               if (LII != LI.begin())
1227                 prevStart = std::prev(LII)->start;
1228
1229               // FIXME: This could be more efficient if there was a
1230               // removeSegment method that returned an iterator.
1231               LI.removeSegment(*LII, true);
1232               if (prevStart.isValid())
1233                 LII = LI.find(prevStart);
1234               else
1235                 LII = LI.begin();
1236             } else {
1237               LII->start = instrIdx.getRegSlot();
1238               LII->valno->def = instrIdx.getRegSlot();
1239               if (MO.getSubReg() && !MO.isUndef())
1240                 lastUseIdx = instrIdx.getRegSlot();
1241               else
1242                 lastUseIdx = SlotIndex();
1243               continue;
1244             }
1245           }
1246
1247           if (!lastUseIdx.isValid()) {
1248             VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1249                                           VNInfoAllocator);
1250             LiveRange::Segment S(instrIdx.getRegSlot(),
1251                                  instrIdx.getDeadSlot(), VNI);
1252             LII = LI.addSegment(S);
1253           } else if (LII->start != instrIdx.getRegSlot()) {
1254             VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1255                                           VNInfoAllocator);
1256             LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1257             LII = LI.addSegment(S);
1258           }
1259
1260           if (MO.getSubReg() && !MO.isUndef())
1261             lastUseIdx = instrIdx.getRegSlot();
1262           else
1263             lastUseIdx = SlotIndex();
1264         } else if (MO.isUse()) {
1265           // FIXME: This should probably be handled outside of this branch,
1266           // either as part of the def case (for defs inside of the region) or
1267           // after the loop over the region.
1268           if (!isEndValid && !LII->end.isBlock())
1269             LII->end = instrIdx.getRegSlot();
1270           if (!lastUseIdx.isValid())
1271             lastUseIdx = instrIdx.getRegSlot();
1272         }
1273       }
1274     }
1275   }
1276 }