Sink DwarfUnit::constructImportedEntityDIE into DwarfCompileUnit.
[oota-llvm.git] / lib / CodeGen / RegisterCoalescer.cpp
1 //===- RegisterCoalescer.cpp - Generic Register Coalescing Interface -------==//
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 generic RegisterCoalescer interface which
11 // is used as the common interface used by all clients and
12 // implementations of register coalescing.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "RegisterCoalescer.h"
17 #include "llvm/ADT/STLExtras.h"
18 #include "llvm/ADT/SmallSet.h"
19 #include "llvm/ADT/Statistic.h"
20 #include "llvm/Analysis/AliasAnalysis.h"
21 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
22 #include "llvm/CodeGen/LiveRangeEdit.h"
23 #include "llvm/CodeGen/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineInstr.h"
25 #include "llvm/CodeGen/MachineLoopInfo.h"
26 #include "llvm/CodeGen/MachineRegisterInfo.h"
27 #include "llvm/CodeGen/Passes.h"
28 #include "llvm/CodeGen/RegisterClassInfo.h"
29 #include "llvm/CodeGen/VirtRegMap.h"
30 #include "llvm/IR/Value.h"
31 #include "llvm/Pass.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/raw_ostream.h"
36 #include "llvm/Target/TargetInstrInfo.h"
37 #include "llvm/Target/TargetMachine.h"
38 #include "llvm/Target/TargetRegisterInfo.h"
39 #include "llvm/Target/TargetSubtargetInfo.h"
40 #include <algorithm>
41 #include <cmath>
42 using namespace llvm;
43
44 #define DEBUG_TYPE "regalloc"
45
46 STATISTIC(numJoins    , "Number of interval joins performed");
47 STATISTIC(numCrossRCs , "Number of cross class joins performed");
48 STATISTIC(numCommutes , "Number of instruction commuting performed");
49 STATISTIC(numExtends  , "Number of copies extended");
50 STATISTIC(NumReMats   , "Number of instructions re-materialized");
51 STATISTIC(NumInflated , "Number of register classes inflated");
52 STATISTIC(NumLaneConflicts, "Number of dead lane conflicts tested");
53 STATISTIC(NumLaneResolves,  "Number of dead lane conflicts resolved");
54
55 static cl::opt<bool>
56 EnableJoining("join-liveintervals",
57               cl::desc("Coalesce copies (default=true)"),
58               cl::init(true));
59
60 // Temporary flag to test critical edge unsplitting.
61 static cl::opt<bool>
62 EnableJoinSplits("join-splitedges",
63   cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden);
64
65 // Temporary flag to test global copy optimization.
66 static cl::opt<cl::boolOrDefault>
67 EnableGlobalCopies("join-globalcopies",
68   cl::desc("Coalesce copies that span blocks (default=subtarget)"),
69   cl::init(cl::BOU_UNSET), cl::Hidden);
70
71 static cl::opt<bool>
72 VerifyCoalescing("verify-coalescing",
73          cl::desc("Verify machine instrs before and after register coalescing"),
74          cl::Hidden);
75
76 namespace {
77   class RegisterCoalescer : public MachineFunctionPass,
78                             private LiveRangeEdit::Delegate {
79     MachineFunction* MF;
80     MachineRegisterInfo* MRI;
81     const TargetMachine* TM;
82     const TargetRegisterInfo* TRI;
83     const TargetInstrInfo* TII;
84     LiveIntervals *LIS;
85     const MachineLoopInfo* Loops;
86     AliasAnalysis *AA;
87     RegisterClassInfo RegClassInfo;
88
89     /// \brief True if the coalescer should aggressively coalesce global copies
90     /// in favor of keeping local copies.
91     bool JoinGlobalCopies;
92
93     /// \brief True if the coalescer should aggressively coalesce fall-thru
94     /// blocks exclusively containing copies.
95     bool JoinSplitEdges;
96
97     /// Copy instructions yet to be coalesced.
98     SmallVector<MachineInstr*, 8> WorkList;
99     SmallVector<MachineInstr*, 8> LocalWorkList;
100
101     /// Set of instruction pointers that have been erased, and
102     /// that may be present in WorkList.
103     SmallPtrSet<MachineInstr*, 8> ErasedInstrs;
104
105     /// Dead instructions that are about to be deleted.
106     SmallVector<MachineInstr*, 8> DeadDefs;
107
108     /// Virtual registers to be considered for register class inflation.
109     SmallVector<unsigned, 8> InflateRegs;
110
111     /// Recursively eliminate dead defs in DeadDefs.
112     void eliminateDeadDefs();
113
114     /// LiveRangeEdit callback.
115     void LRE_WillEraseInstruction(MachineInstr *MI) override;
116
117     /// Coalesce the LocalWorkList.
118     void coalesceLocals();
119
120     /// Join compatible live intervals
121     void joinAllIntervals();
122
123     /// Coalesce copies in the specified MBB, putting
124     /// copies that cannot yet be coalesced into WorkList.
125     void copyCoalesceInMBB(MachineBasicBlock *MBB);
126
127     /// Try to coalesce all copies in CurrList. Return
128     /// true if any progress was made.
129     bool copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList);
130
131     /// Attempt to join intervals corresponding to SrcReg/DstReg,
132     /// which are the src/dst of the copy instruction CopyMI.  This returns
133     /// true if the copy was successfully coalesced away. If it is not
134     /// currently possible to coalesce this interval, but it may be possible if
135     /// other things get coalesced, then it returns true by reference in
136     /// 'Again'.
137     bool joinCopy(MachineInstr *TheCopy, bool &Again);
138
139     /// Attempt to join these two intervals.  On failure, this
140     /// returns false.  The output "SrcInt" will not have been modified, so we
141     /// can use this information below to update aliases.
142     bool joinIntervals(CoalescerPair &CP);
143
144     /// Attempt joining two virtual registers. Return true on success.
145     bool joinVirtRegs(CoalescerPair &CP);
146
147     /// Attempt joining with a reserved physreg.
148     bool joinReservedPhysReg(CoalescerPair &CP);
149
150     /// We found a non-trivially-coalescable copy. If
151     /// the source value number is defined by a copy from the destination reg
152     /// see if we can merge these two destination reg valno# into a single
153     /// value number, eliminating a copy.
154     bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
155
156     /// Return true if there are definitions of IntB
157     /// other than BValNo val# that can reach uses of AValno val# of IntA.
158     bool hasOtherReachingDefs(LiveInterval &IntA, LiveInterval &IntB,
159                               VNInfo *AValNo, VNInfo *BValNo);
160
161     /// We found a non-trivially-coalescable copy.
162     /// If the source value number is defined by a commutable instruction and
163     /// its other operand is coalesced to the copy dest register, see if we
164     /// can transform the copy into a noop by commuting the definition.
165     bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
166
167     /// If the source of a copy is defined by a
168     /// trivial computation, replace the copy by rematerialize the definition.
169     bool reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI,
170                                  bool &IsDefCopy);
171
172     /// Return true if a physreg copy should be joined.
173     bool canJoinPhys(const CoalescerPair &CP);
174
175     /// Replace all defs and uses of SrcReg to DstReg and
176     /// update the subregister number if it is not zero. If DstReg is a
177     /// physical register and the existing subregister number of the def / use
178     /// being updated is not zero, make sure to set it to the correct physical
179     /// subregister.
180     void updateRegDefsUses(unsigned SrcReg, unsigned DstReg, unsigned SubIdx);
181
182     /// Handle copies of undef values.
183     bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
184
185   public:
186     static char ID; // Class identification, replacement for typeinfo
187     RegisterCoalescer() : MachineFunctionPass(ID) {
188       initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
189     }
190
191     void getAnalysisUsage(AnalysisUsage &AU) const override;
192
193     void releaseMemory() override;
194
195     /// This is the pass entry point.
196     bool runOnMachineFunction(MachineFunction&) override;
197
198     /// Implement the dump method.
199     void print(raw_ostream &O, const Module* = nullptr) const override;
200   };
201 } /// end anonymous namespace
202
203 char &llvm::RegisterCoalescerID = RegisterCoalescer::ID;
204
205 INITIALIZE_PASS_BEGIN(RegisterCoalescer, "simple-register-coalescing",
206                       "Simple Register Coalescing", false, false)
207 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
208 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
209 INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
210 INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
211 INITIALIZE_PASS_END(RegisterCoalescer, "simple-register-coalescing",
212                     "Simple Register Coalescing", false, false)
213
214 char RegisterCoalescer::ID = 0;
215
216 static bool isMoveInstr(const TargetRegisterInfo &tri, const MachineInstr *MI,
217                         unsigned &Src, unsigned &Dst,
218                         unsigned &SrcSub, unsigned &DstSub) {
219   if (MI->isCopy()) {
220     Dst = MI->getOperand(0).getReg();
221     DstSub = MI->getOperand(0).getSubReg();
222     Src = MI->getOperand(1).getReg();
223     SrcSub = MI->getOperand(1).getSubReg();
224   } else if (MI->isSubregToReg()) {
225     Dst = MI->getOperand(0).getReg();
226     DstSub = tri.composeSubRegIndices(MI->getOperand(0).getSubReg(),
227                                       MI->getOperand(3).getImm());
228     Src = MI->getOperand(2).getReg();
229     SrcSub = MI->getOperand(2).getSubReg();
230   } else
231     return false;
232   return true;
233 }
234
235 // Return true if this block should be vacated by the coalescer to eliminate
236 // branches. The important cases to handle in the coalescer are critical edges
237 // split during phi elimination which contain only copies. Simple blocks that
238 // contain non-branches should also be vacated, but this can be handled by an
239 // earlier pass similar to early if-conversion.
240 static bool isSplitEdge(const MachineBasicBlock *MBB) {
241   if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
242     return false;
243
244   for (const auto &MI : *MBB) {
245     if (!MI.isCopyLike() && !MI.isUnconditionalBranch())
246       return false;
247   }
248   return true;
249 }
250
251 bool CoalescerPair::setRegisters(const MachineInstr *MI) {
252   SrcReg = DstReg = 0;
253   SrcIdx = DstIdx = 0;
254   NewRC = nullptr;
255   Flipped = CrossClass = false;
256
257   unsigned Src, Dst, SrcSub, DstSub;
258   if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
259     return false;
260   Partial = SrcSub || DstSub;
261
262   // If one register is a physreg, it must be Dst.
263   if (TargetRegisterInfo::isPhysicalRegister(Src)) {
264     if (TargetRegisterInfo::isPhysicalRegister(Dst))
265       return false;
266     std::swap(Src, Dst);
267     std::swap(SrcSub, DstSub);
268     Flipped = true;
269   }
270
271   const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
272
273   if (TargetRegisterInfo::isPhysicalRegister(Dst)) {
274     // Eliminate DstSub on a physreg.
275     if (DstSub) {
276       Dst = TRI.getSubReg(Dst, DstSub);
277       if (!Dst) return false;
278       DstSub = 0;
279     }
280
281     // Eliminate SrcSub by picking a corresponding Dst superregister.
282     if (SrcSub) {
283       Dst = TRI.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src));
284       if (!Dst) return false;
285     } else if (!MRI.getRegClass(Src)->contains(Dst)) {
286       return false;
287     }
288   } else {
289     // Both registers are virtual.
290     const TargetRegisterClass *SrcRC = MRI.getRegClass(Src);
291     const TargetRegisterClass *DstRC = MRI.getRegClass(Dst);
292
293     // Both registers have subreg indices.
294     if (SrcSub && DstSub) {
295       // Copies between different sub-registers are never coalescable.
296       if (Src == Dst && SrcSub != DstSub)
297         return false;
298
299       NewRC = TRI.getCommonSuperRegClass(SrcRC, SrcSub, DstRC, DstSub,
300                                          SrcIdx, DstIdx);
301       if (!NewRC)
302         return false;
303     } else if (DstSub) {
304       // SrcReg will be merged with a sub-register of DstReg.
305       SrcIdx = DstSub;
306       NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub);
307     } else if (SrcSub) {
308       // DstReg will be merged with a sub-register of SrcReg.
309       DstIdx = SrcSub;
310       NewRC = TRI.getMatchingSuperRegClass(SrcRC, DstRC, SrcSub);
311     } else {
312       // This is a straight copy without sub-registers.
313       NewRC = TRI.getCommonSubClass(DstRC, SrcRC);
314     }
315
316     // The combined constraint may be impossible to satisfy.
317     if (!NewRC)
318       return false;
319
320     // Prefer SrcReg to be a sub-register of DstReg.
321     // FIXME: Coalescer should support subregs symmetrically.
322     if (DstIdx && !SrcIdx) {
323       std::swap(Src, Dst);
324       std::swap(SrcIdx, DstIdx);
325       Flipped = !Flipped;
326     }
327
328     CrossClass = NewRC != DstRC || NewRC != SrcRC;
329   }
330   // Check our invariants
331   assert(TargetRegisterInfo::isVirtualRegister(Src) && "Src must be virtual");
332   assert(!(TargetRegisterInfo::isPhysicalRegister(Dst) && DstSub) &&
333          "Cannot have a physical SubIdx");
334   SrcReg = Src;
335   DstReg = Dst;
336   return true;
337 }
338
339 bool CoalescerPair::flip() {
340   if (TargetRegisterInfo::isPhysicalRegister(DstReg))
341     return false;
342   std::swap(SrcReg, DstReg);
343   std::swap(SrcIdx, DstIdx);
344   Flipped = !Flipped;
345   return true;
346 }
347
348 bool CoalescerPair::isCoalescable(const MachineInstr *MI) const {
349   if (!MI)
350     return false;
351   unsigned Src, Dst, SrcSub, DstSub;
352   if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
353     return false;
354
355   // Find the virtual register that is SrcReg.
356   if (Dst == SrcReg) {
357     std::swap(Src, Dst);
358     std::swap(SrcSub, DstSub);
359   } else if (Src != SrcReg) {
360     return false;
361   }
362
363   // Now check that Dst matches DstReg.
364   if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
365     if (!TargetRegisterInfo::isPhysicalRegister(Dst))
366       return false;
367     assert(!DstIdx && !SrcIdx && "Inconsistent CoalescerPair state.");
368     // DstSub could be set for a physreg from INSERT_SUBREG.
369     if (DstSub)
370       Dst = TRI.getSubReg(Dst, DstSub);
371     // Full copy of Src.
372     if (!SrcSub)
373       return DstReg == Dst;
374     // This is a partial register copy. Check that the parts match.
375     return TRI.getSubReg(DstReg, SrcSub) == Dst;
376   } else {
377     // DstReg is virtual.
378     if (DstReg != Dst)
379       return false;
380     // Registers match, do the subregisters line up?
381     return TRI.composeSubRegIndices(SrcIdx, SrcSub) ==
382            TRI.composeSubRegIndices(DstIdx, DstSub);
383   }
384 }
385
386 void RegisterCoalescer::getAnalysisUsage(AnalysisUsage &AU) const {
387   AU.setPreservesCFG();
388   AU.addRequired<AliasAnalysis>();
389   AU.addRequired<LiveIntervals>();
390   AU.addPreserved<LiveIntervals>();
391   AU.addPreserved<SlotIndexes>();
392   AU.addRequired<MachineLoopInfo>();
393   AU.addPreserved<MachineLoopInfo>();
394   AU.addPreservedID(MachineDominatorsID);
395   MachineFunctionPass::getAnalysisUsage(AU);
396 }
397
398 void RegisterCoalescer::eliminateDeadDefs() {
399   SmallVector<unsigned, 8> NewRegs;
400   LiveRangeEdit(nullptr, NewRegs, *MF, *LIS,
401                 nullptr, this).eliminateDeadDefs(DeadDefs);
402 }
403
404 // Callback from eliminateDeadDefs().
405 void RegisterCoalescer::LRE_WillEraseInstruction(MachineInstr *MI) {
406   // MI may be in WorkList. Make sure we don't visit it.
407   ErasedInstrs.insert(MI);
408 }
409
410 /// We found a non-trivially-coalescable copy with IntA
411 /// being the source and IntB being the dest, thus this defines a value number
412 /// in IntB.  If the source value number (in IntA) is defined by a copy from B,
413 /// see if we can merge these two pieces of B into a single value number,
414 /// eliminating a copy.  For example:
415 ///
416 ///  A3 = B0
417 ///    ...
418 ///  B1 = A3      <- this copy
419 ///
420 /// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
421 /// value number to be replaced with B0 (which simplifies the B liveinterval).
422 ///
423 /// This returns true if an interval was modified.
424 ///
425 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP,
426                                              MachineInstr *CopyMI) {
427   assert(!CP.isPartial() && "This doesn't work for partial copies.");
428   assert(!CP.isPhys() && "This doesn't work for physreg copies.");
429
430   LiveInterval &IntA =
431     LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg());
432   LiveInterval &IntB =
433     LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg());
434   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot();
435
436   // BValNo is a value number in B that is defined by a copy from A.  'B1' in
437   // the example above.
438   LiveInterval::iterator BS = IntB.FindSegmentContaining(CopyIdx);
439   if (BS == IntB.end()) return false;
440   VNInfo *BValNo = BS->valno;
441
442   // Get the location that B is defined at.  Two options: either this value has
443   // an unknown definition point or it is defined at CopyIdx.  If unknown, we
444   // can't process it.
445   if (BValNo->def != CopyIdx) return false;
446
447   // AValNo is the value number in A that defines the copy, A3 in the example.
448   SlotIndex CopyUseIdx = CopyIdx.getRegSlot(true);
449   LiveInterval::iterator AS = IntA.FindSegmentContaining(CopyUseIdx);
450   // The live segment might not exist after fun with physreg coalescing.
451   if (AS == IntA.end()) return false;
452   VNInfo *AValNo = AS->valno;
453
454   // If AValNo is defined as a copy from IntB, we can potentially process this.
455   // Get the instruction that defines this value number.
456   MachineInstr *ACopyMI = LIS->getInstructionFromIndex(AValNo->def);
457   // Don't allow any partial copies, even if isCoalescable() allows them.
458   if (!CP.isCoalescable(ACopyMI) || !ACopyMI->isFullCopy())
459     return false;
460
461   // Get the Segment in IntB that this value number starts with.
462   LiveInterval::iterator ValS =
463     IntB.FindSegmentContaining(AValNo->def.getPrevSlot());
464   if (ValS == IntB.end())
465     return false;
466
467   // Make sure that the end of the live segment is inside the same block as
468   // CopyMI.
469   MachineInstr *ValSEndInst =
470     LIS->getInstructionFromIndex(ValS->end.getPrevSlot());
471   if (!ValSEndInst || ValSEndInst->getParent() != CopyMI->getParent())
472     return false;
473
474   // Okay, we now know that ValS ends in the same block that the CopyMI
475   // live-range starts.  If there are no intervening live segments between them
476   // in IntB, we can merge them.
477   if (ValS+1 != BS) return false;
478
479   DEBUG(dbgs() << "Extending: " << PrintReg(IntB.reg, TRI));
480
481   SlotIndex FillerStart = ValS->end, FillerEnd = BS->start;
482   // We are about to delete CopyMI, so need to remove it as the 'instruction
483   // that defines this value #'. Update the valnum with the new defining
484   // instruction #.
485   BValNo->def = FillerStart;
486
487   // Okay, we can merge them.  We need to insert a new liverange:
488   // [ValS.end, BS.begin) of either value number, then we merge the
489   // two value numbers.
490   IntB.addSegment(LiveInterval::Segment(FillerStart, FillerEnd, BValNo));
491
492   // Okay, merge "B1" into the same value number as "B0".
493   if (BValNo != ValS->valno)
494     IntB.MergeValueNumberInto(BValNo, ValS->valno);
495   DEBUG(dbgs() << "   result = " << IntB << '\n');
496
497   // If the source instruction was killing the source register before the
498   // merge, unset the isKill marker given the live range has been extended.
499   int UIdx = ValSEndInst->findRegisterUseOperandIdx(IntB.reg, true);
500   if (UIdx != -1) {
501     ValSEndInst->getOperand(UIdx).setIsKill(false);
502   }
503
504   // Rewrite the copy. If the copy instruction was killing the destination
505   // register before the merge, find the last use and trim the live range. That
506   // will also add the isKill marker.
507   CopyMI->substituteRegister(IntA.reg, IntB.reg, 0, *TRI);
508   if (AS->end == CopyIdx)
509     LIS->shrinkToUses(&IntA);
510
511   ++numExtends;
512   return true;
513 }
514
515 /// Return true if there are definitions of IntB
516 /// other than BValNo val# that can reach uses of AValno val# of IntA.
517 bool RegisterCoalescer::hasOtherReachingDefs(LiveInterval &IntA,
518                                              LiveInterval &IntB,
519                                              VNInfo *AValNo,
520                                              VNInfo *BValNo) {
521   // If AValNo has PHI kills, conservatively assume that IntB defs can reach
522   // the PHI values.
523   if (LIS->hasPHIKill(IntA, AValNo))
524     return true;
525
526   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
527        AI != AE; ++AI) {
528     if (AI->valno != AValNo) continue;
529     LiveInterval::iterator BI =
530       std::upper_bound(IntB.begin(), IntB.end(), AI->start);
531     if (BI != IntB.begin())
532       --BI;
533     for (; BI != IntB.end() && AI->end >= BI->start; ++BI) {
534       if (BI->valno == BValNo)
535         continue;
536       if (BI->start <= AI->start && BI->end > AI->start)
537         return true;
538       if (BI->start > AI->start && BI->start < AI->end)
539         return true;
540     }
541   }
542   return false;
543 }
544
545 /// We found a non-trivially-coalescable copy with
546 /// IntA being the source and IntB being the dest, thus this defines a value
547 /// number in IntB.  If the source value number (in IntA) is defined by a
548 /// commutable instruction and its other operand is coalesced to the copy dest
549 /// register, see if we can transform the copy into a noop by commuting the
550 /// definition. For example,
551 ///
552 ///  A3 = op A2 B0<kill>
553 ///    ...
554 ///  B1 = A3      <- this copy
555 ///    ...
556 ///     = op A3   <- more uses
557 ///
558 /// ==>
559 ///
560 ///  B2 = op B0 A2<kill>
561 ///    ...
562 ///  B1 = B2      <- now an identify copy
563 ///    ...
564 ///     = op B2   <- more uses
565 ///
566 /// This returns true if an interval was modified.
567 ///
568 bool RegisterCoalescer::removeCopyByCommutingDef(const CoalescerPair &CP,
569                                                  MachineInstr *CopyMI) {
570   assert (!CP.isPhys());
571
572   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot();
573
574   LiveInterval &IntA =
575     LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg());
576   LiveInterval &IntB =
577     LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg());
578
579   // BValNo is a value number in B that is defined by a copy from A. 'B1' in
580   // the example above.
581   VNInfo *BValNo = IntB.getVNInfoAt(CopyIdx);
582   if (!BValNo || BValNo->def != CopyIdx)
583     return false;
584
585   // AValNo is the value number in A that defines the copy, A3 in the example.
586   VNInfo *AValNo = IntA.getVNInfoAt(CopyIdx.getRegSlot(true));
587   assert(AValNo && "COPY source not live");
588   if (AValNo->isPHIDef() || AValNo->isUnused())
589     return false;
590   MachineInstr *DefMI = LIS->getInstructionFromIndex(AValNo->def);
591   if (!DefMI)
592     return false;
593   if (!DefMI->isCommutable())
594     return false;
595   // If DefMI is a two-address instruction then commuting it will change the
596   // destination register.
597   int DefIdx = DefMI->findRegisterDefOperandIdx(IntA.reg);
598   assert(DefIdx != -1);
599   unsigned UseOpIdx;
600   if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx))
601     return false;
602   unsigned Op1, Op2, NewDstIdx;
603   if (!TII->findCommutedOpIndices(DefMI, Op1, Op2))
604     return false;
605   if (Op1 == UseOpIdx)
606     NewDstIdx = Op2;
607   else if (Op2 == UseOpIdx)
608     NewDstIdx = Op1;
609   else
610     return false;
611
612   MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
613   unsigned NewReg = NewDstMO.getReg();
614   if (NewReg != IntB.reg || !IntB.Query(AValNo->def).isKill())
615     return false;
616
617   // Make sure there are no other definitions of IntB that would reach the
618   // uses which the new definition can reach.
619   if (hasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
620     return false;
621
622   // If some of the uses of IntA.reg is already coalesced away, return false.
623   // It's not possible to determine whether it's safe to perform the coalescing.
624   for (MachineOperand &MO : MRI->use_nodbg_operands(IntA.reg)) {
625     MachineInstr *UseMI = MO.getParent();
626     unsigned OpNo = &MO - &UseMI->getOperand(0);
627     SlotIndex UseIdx = LIS->getInstructionIndex(UseMI);
628     LiveInterval::iterator US = IntA.FindSegmentContaining(UseIdx);
629     if (US == IntA.end() || US->valno != AValNo)
630       continue;
631     // If this use is tied to a def, we can't rewrite the register.
632     if (UseMI->isRegTiedToDefOperand(OpNo))
633       return false;
634   }
635
636   DEBUG(dbgs() << "\tremoveCopyByCommutingDef: " << AValNo->def << '\t'
637                << *DefMI);
638
639   // At this point we have decided that it is legal to do this
640   // transformation.  Start by commuting the instruction.
641   MachineBasicBlock *MBB = DefMI->getParent();
642   MachineInstr *NewMI = TII->commuteInstruction(DefMI);
643   if (!NewMI)
644     return false;
645   if (TargetRegisterInfo::isVirtualRegister(IntA.reg) &&
646       TargetRegisterInfo::isVirtualRegister(IntB.reg) &&
647       !MRI->constrainRegClass(IntB.reg, MRI->getRegClass(IntA.reg)))
648     return false;
649   if (NewMI != DefMI) {
650     LIS->ReplaceMachineInstrInMaps(DefMI, NewMI);
651     MachineBasicBlock::iterator Pos = DefMI;
652     MBB->insert(Pos, NewMI);
653     MBB->erase(DefMI);
654   }
655   unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
656   NewMI->getOperand(OpIdx).setIsKill();
657
658   // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
659   // A = or A, B
660   // ...
661   // B = A
662   // ...
663   // C = A<kill>
664   // ...
665   //   = B
666
667   // Update uses of IntA of the specific Val# with IntB.
668   for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(IntA.reg),
669          UE = MRI->use_end(); UI != UE;) {
670     MachineOperand &UseMO = *UI;
671     MachineInstr *UseMI = UseMO.getParent();
672     ++UI;
673     if (UseMI->isDebugValue()) {
674       // FIXME These don't have an instruction index.  Not clear we have enough
675       // info to decide whether to do this replacement or not.  For now do it.
676       UseMO.setReg(NewReg);
677       continue;
678     }
679     SlotIndex UseIdx = LIS->getInstructionIndex(UseMI).getRegSlot(true);
680     LiveInterval::iterator US = IntA.FindSegmentContaining(UseIdx);
681     if (US == IntA.end() || US->valno != AValNo)
682       continue;
683     // Kill flags are no longer accurate. They are recomputed after RA.
684     UseMO.setIsKill(false);
685     if (TargetRegisterInfo::isPhysicalRegister(NewReg))
686       UseMO.substPhysReg(NewReg, *TRI);
687     else
688       UseMO.setReg(NewReg);
689     if (UseMI == CopyMI)
690       continue;
691     if (!UseMI->isCopy())
692       continue;
693     if (UseMI->getOperand(0).getReg() != IntB.reg ||
694         UseMI->getOperand(0).getSubReg())
695       continue;
696
697     // This copy will become a noop. If it's defining a new val#, merge it into
698     // BValNo.
699     SlotIndex DefIdx = UseIdx.getRegSlot();
700     VNInfo *DVNI = IntB.getVNInfoAt(DefIdx);
701     if (!DVNI)
702       continue;
703     DEBUG(dbgs() << "\t\tnoop: " << DefIdx << '\t' << *UseMI);
704     assert(DVNI->def == DefIdx);
705     BValNo = IntB.MergeValueNumberInto(BValNo, DVNI);
706     ErasedInstrs.insert(UseMI);
707     LIS->RemoveMachineInstrFromMaps(UseMI);
708     UseMI->eraseFromParent();
709   }
710
711   // Extend BValNo by merging in IntA live segments of AValNo. Val# definition
712   // is updated.
713   VNInfo *ValNo = BValNo;
714   ValNo->def = AValNo->def;
715   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
716        AI != AE; ++AI) {
717     if (AI->valno != AValNo) continue;
718     IntB.addSegment(LiveInterval::Segment(AI->start, AI->end, ValNo));
719   }
720   DEBUG(dbgs() << "\t\textended: " << IntB << '\n');
721
722   IntA.removeValNo(AValNo);
723   DEBUG(dbgs() << "\t\ttrimmed:  " << IntA << '\n');
724   ++numCommutes;
725   return true;
726 }
727
728 /// If the source of a copy is defined by a trivial
729 /// computation, replace the copy by rematerialize the definition.
730 bool RegisterCoalescer::reMaterializeTrivialDef(CoalescerPair &CP,
731                                                 MachineInstr *CopyMI,
732                                                 bool &IsDefCopy) {
733   IsDefCopy = false;
734   unsigned SrcReg = CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg();
735   unsigned SrcIdx = CP.isFlipped() ? CP.getDstIdx() : CP.getSrcIdx();
736   unsigned DstReg = CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg();
737   unsigned DstIdx = CP.isFlipped() ? CP.getSrcIdx() : CP.getDstIdx();
738   if (TargetRegisterInfo::isPhysicalRegister(SrcReg))
739     return false;
740
741   LiveInterval &SrcInt = LIS->getInterval(SrcReg);
742   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI);
743   VNInfo *ValNo = SrcInt.Query(CopyIdx).valueIn();
744   assert(ValNo && "CopyMI input register not live");
745   if (ValNo->isPHIDef() || ValNo->isUnused())
746     return false;
747   MachineInstr *DefMI = LIS->getInstructionFromIndex(ValNo->def);
748   if (!DefMI)
749     return false;
750   if (DefMI->isCopyLike()) {
751     IsDefCopy = true;
752     return false;
753   }
754   if (!TII->isAsCheapAsAMove(DefMI))
755     return false;
756   if (!TII->isTriviallyReMaterializable(DefMI, AA))
757     return false;
758   bool SawStore = false;
759   if (!DefMI->isSafeToMove(TII, AA, SawStore))
760     return false;
761   const MCInstrDesc &MCID = DefMI->getDesc();
762   if (MCID.getNumDefs() != 1)
763     return false;
764   // Only support subregister destinations when the def is read-undef.
765   MachineOperand &DstOperand = CopyMI->getOperand(0);
766   unsigned CopyDstReg = DstOperand.getReg();
767   if (DstOperand.getSubReg() && !DstOperand.isUndef())
768     return false;
769
770   // If both SrcIdx and DstIdx are set, correct rematerialization would widen
771   // the register substantially (beyond both source and dest size). This is bad
772   // for performance since it can cascade through a function, introducing many
773   // extra spills and fills (e.g. ARM can easily end up copying QQQQPR registers
774   // around after a few subreg copies).
775   if (SrcIdx && DstIdx)
776     return false;
777
778   const TargetRegisterClass *DefRC = TII->getRegClass(MCID, 0, TRI, *MF);
779   if (!DefMI->isImplicitDef()) {
780     if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
781       unsigned NewDstReg = DstReg;
782
783       unsigned NewDstIdx = TRI->composeSubRegIndices(CP.getSrcIdx(),
784                                               DefMI->getOperand(0).getSubReg());
785       if (NewDstIdx)
786         NewDstReg = TRI->getSubReg(DstReg, NewDstIdx);
787
788       // Finally, make sure that the physical subregister that will be
789       // constructed later is permitted for the instruction.
790       if (!DefRC->contains(NewDstReg))
791         return false;
792     } else {
793       // Theoretically, some stack frame reference could exist. Just make sure
794       // it hasn't actually happened.
795       assert(TargetRegisterInfo::isVirtualRegister(DstReg) &&
796              "Only expect to deal with virtual or physical registers");
797     }
798   }
799
800   MachineBasicBlock *MBB = CopyMI->getParent();
801   MachineBasicBlock::iterator MII =
802     std::next(MachineBasicBlock::iterator(CopyMI));
803   TII->reMaterialize(*MBB, MII, DstReg, SrcIdx, DefMI, *TRI);
804   MachineInstr *NewMI = std::prev(MII);
805
806   LIS->ReplaceMachineInstrInMaps(CopyMI, NewMI);
807   CopyMI->eraseFromParent();
808   ErasedInstrs.insert(CopyMI);
809
810   // NewMI may have dead implicit defs (E.g. EFLAGS for MOV<bits>r0 on X86).
811   // We need to remember these so we can add intervals once we insert
812   // NewMI into SlotIndexes.
813   SmallVector<unsigned, 4> NewMIImplDefs;
814   for (unsigned i = NewMI->getDesc().getNumOperands(),
815          e = NewMI->getNumOperands(); i != e; ++i) {
816     MachineOperand &MO = NewMI->getOperand(i);
817     if (MO.isReg()) {
818       assert(MO.isDef() && MO.isImplicit() && MO.isDead() &&
819              TargetRegisterInfo::isPhysicalRegister(MO.getReg()));
820       NewMIImplDefs.push_back(MO.getReg());
821     }
822   }
823
824   if (TargetRegisterInfo::isVirtualRegister(DstReg)) {
825     const TargetRegisterClass *NewRC = CP.getNewRC();
826     unsigned NewIdx = NewMI->getOperand(0).getSubReg();
827
828     if (NewIdx)
829       NewRC = TRI->getMatchingSuperRegClass(NewRC, DefRC, NewIdx);
830     else
831       NewRC = TRI->getCommonSubClass(NewRC, DefRC);
832
833     assert(NewRC && "subreg chosen for remat incompatible with instruction");
834     MRI->setRegClass(DstReg, NewRC);
835
836     updateRegDefsUses(DstReg, DstReg, DstIdx);
837     NewMI->getOperand(0).setSubReg(NewIdx);
838   } else if (NewMI->getOperand(0).getReg() != CopyDstReg) {
839     // The New instruction may be defining a sub-register of what's actually
840     // been asked for. If so it must implicitly define the whole thing.
841     assert(TargetRegisterInfo::isPhysicalRegister(DstReg) &&
842            "Only expect virtual or physical registers in remat");
843     NewMI->getOperand(0).setIsDead(true);
844     NewMI->addOperand(MachineOperand::CreateReg(CopyDstReg,
845                                                 true  /*IsDef*/,
846                                                 true  /*IsImp*/,
847                                                 false /*IsKill*/));
848     // Record small dead def live-ranges for all the subregisters
849     // of the destination register.
850     // Otherwise, variables that live through may miss some
851     // interferences, thus creating invalid allocation.
852     // E.g., i386 code:
853     // vreg1 = somedef ; vreg1 GR8
854     // vreg2 = remat ; vreg2 GR32
855     // CL = COPY vreg2.sub_8bit
856     // = somedef vreg1 ; vreg1 GR8
857     // =>
858     // vreg1 = somedef ; vreg1 GR8
859     // ECX<def, dead> = remat ; CL<imp-def>
860     // = somedef vreg1 ; vreg1 GR8
861     // vreg1 will see the inteferences with CL but not with CH since
862     // no live-ranges would have been created for ECX.
863     // Fix that!
864     SlotIndex NewMIIdx = LIS->getInstructionIndex(NewMI);
865     for (MCRegUnitIterator Units(NewMI->getOperand(0).getReg(), TRI);
866          Units.isValid(); ++Units)
867       if (LiveRange *LR = LIS->getCachedRegUnit(*Units))
868         LR->createDeadDef(NewMIIdx.getRegSlot(), LIS->getVNInfoAllocator());
869   }
870
871   if (NewMI->getOperand(0).getSubReg())
872     NewMI->getOperand(0).setIsUndef();
873
874   // CopyMI may have implicit operands, transfer them over to the newly
875   // rematerialized instruction. And update implicit def interval valnos.
876   for (unsigned i = CopyMI->getDesc().getNumOperands(),
877          e = CopyMI->getNumOperands(); i != e; ++i) {
878     MachineOperand &MO = CopyMI->getOperand(i);
879     if (MO.isReg()) {
880       assert(MO.isImplicit() && "No explicit operands after implict operands.");
881       // Discard VReg implicit defs.
882       if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
883         NewMI->addOperand(MO);
884       }
885     }
886   }
887
888   SlotIndex NewMIIdx = LIS->getInstructionIndex(NewMI);
889   for (unsigned i = 0, e = NewMIImplDefs.size(); i != e; ++i) {
890     unsigned Reg = NewMIImplDefs[i];
891     for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units)
892       if (LiveRange *LR = LIS->getCachedRegUnit(*Units))
893         LR->createDeadDef(NewMIIdx.getRegSlot(), LIS->getVNInfoAllocator());
894   }
895
896   DEBUG(dbgs() << "Remat: " << *NewMI);
897   ++NumReMats;
898
899   // The source interval can become smaller because we removed a use.
900   LIS->shrinkToUses(&SrcInt, &DeadDefs);
901   if (!DeadDefs.empty())
902     eliminateDeadDefs();
903
904   return true;
905 }
906
907 /// ProcessImpicitDefs may leave some copies of <undef>
908 /// values, it only removes local variables. When we have a copy like:
909 ///
910 ///   %vreg1 = COPY %vreg2<undef>
911 ///
912 /// We delete the copy and remove the corresponding value number from %vreg1.
913 /// Any uses of that value number are marked as <undef>.
914 bool RegisterCoalescer::eliminateUndefCopy(MachineInstr *CopyMI,
915                                            const CoalescerPair &CP) {
916   SlotIndex Idx = LIS->getInstructionIndex(CopyMI);
917   LiveInterval *SrcInt = &LIS->getInterval(CP.getSrcReg());
918   if (SrcInt->liveAt(Idx))
919     return false;
920   LiveInterval *DstInt = &LIS->getInterval(CP.getDstReg());
921   if (DstInt->liveAt(Idx))
922     return false;
923
924   // No intervals are live-in to CopyMI - it is undef.
925   if (CP.isFlipped())
926     DstInt = SrcInt;
927   SrcInt = nullptr;
928
929   VNInfo *DeadVNI = DstInt->getVNInfoAt(Idx.getRegSlot());
930   assert(DeadVNI && "No value defined in DstInt");
931   DstInt->removeValNo(DeadVNI);
932
933   // Find new undef uses.
934   for (MachineOperand &MO : MRI->reg_nodbg_operands(DstInt->reg)) {
935     if (MO.isDef() || MO.isUndef())
936       continue;
937     MachineInstr *MI = MO.getParent();
938     SlotIndex Idx = LIS->getInstructionIndex(MI);
939     if (DstInt->liveAt(Idx))
940       continue;
941     MO.setIsUndef(true);
942     DEBUG(dbgs() << "\tnew undef: " << Idx << '\t' << *MI);
943   }
944   return true;
945 }
946
947 /// Replace all defs and uses of SrcReg to DstReg and update the subregister
948 /// number if it is not zero. If DstReg is a physical register and the existing
949 /// subregister number of the def / use being updated is not zero, make sure to
950 /// set it to the correct physical subregister.
951 void RegisterCoalescer::updateRegDefsUses(unsigned SrcReg,
952                                           unsigned DstReg,
953                                           unsigned SubIdx) {
954   bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
955   LiveInterval *DstInt = DstIsPhys ? nullptr : &LIS->getInterval(DstReg);
956
957   SmallPtrSet<MachineInstr*, 8> Visited;
958   for (MachineRegisterInfo::reg_instr_iterator
959        I = MRI->reg_instr_begin(SrcReg), E = MRI->reg_instr_end();
960        I != E; ) {
961     MachineInstr *UseMI = &*(I++);
962
963     // Each instruction can only be rewritten once because sub-register
964     // composition is not always idempotent. When SrcReg != DstReg, rewriting
965     // the UseMI operands removes them from the SrcReg use-def chain, but when
966     // SrcReg is DstReg we could encounter UseMI twice if it has multiple
967     // operands mentioning the virtual register.
968     if (SrcReg == DstReg && !Visited.insert(UseMI))
969       continue;
970
971     SmallVector<unsigned,8> Ops;
972     bool Reads, Writes;
973     std::tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops);
974
975     // If SrcReg wasn't read, it may still be the case that DstReg is live-in
976     // because SrcReg is a sub-register.
977     if (DstInt && !Reads && SubIdx)
978       Reads = DstInt->liveAt(LIS->getInstructionIndex(UseMI));
979
980     // Replace SrcReg with DstReg in all UseMI operands.
981     for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
982       MachineOperand &MO = UseMI->getOperand(Ops[i]);
983
984       // Adjust <undef> flags in case of sub-register joins. We don't want to
985       // turn a full def into a read-modify-write sub-register def and vice
986       // versa.
987       if (SubIdx && MO.isDef())
988         MO.setIsUndef(!Reads);
989
990       if (DstIsPhys)
991         MO.substPhysReg(DstReg, *TRI);
992       else
993         MO.substVirtReg(DstReg, SubIdx, *TRI);
994     }
995
996     DEBUG({
997         dbgs() << "\t\tupdated: ";
998         if (!UseMI->isDebugValue())
999           dbgs() << LIS->getInstructionIndex(UseMI) << "\t";
1000         dbgs() << *UseMI;
1001       });
1002   }
1003 }
1004
1005 /// Return true if a copy involving a physreg should be joined.
1006 bool RegisterCoalescer::canJoinPhys(const CoalescerPair &CP) {
1007   /// Always join simple intervals that are defined by a single copy from a
1008   /// reserved register. This doesn't increase register pressure, so it is
1009   /// always beneficial.
1010   if (!MRI->isReserved(CP.getDstReg())) {
1011     DEBUG(dbgs() << "\tCan only merge into reserved registers.\n");
1012     return false;
1013   }
1014
1015   LiveInterval &JoinVInt = LIS->getInterval(CP.getSrcReg());
1016   if (CP.isFlipped() && JoinVInt.containsOneValue())
1017     return true;
1018
1019   DEBUG(dbgs() << "\tCannot join defs into reserved register.\n");
1020   return false;
1021 }
1022
1023 /// Attempt to join intervals corresponding to SrcReg/DstReg,
1024 /// which are the src/dst of the copy instruction CopyMI.  This returns true
1025 /// if the copy was successfully coalesced away. If it is not currently
1026 /// possible to coalesce this interval, but it may be possible if other
1027 /// things get coalesced, then it returns true by reference in 'Again'.
1028 bool RegisterCoalescer::joinCopy(MachineInstr *CopyMI, bool &Again) {
1029
1030   Again = false;
1031   DEBUG(dbgs() << LIS->getInstructionIndex(CopyMI) << '\t' << *CopyMI);
1032
1033   CoalescerPair CP(*TRI);
1034   if (!CP.setRegisters(CopyMI)) {
1035     DEBUG(dbgs() << "\tNot coalescable.\n");
1036     return false;
1037   }
1038
1039   if (CP.getNewRC()) {
1040     auto SrcRC = MRI->getRegClass(CP.getSrcReg());
1041     auto DstRC = MRI->getRegClass(CP.getDstReg());
1042     unsigned SrcIdx = CP.getSrcIdx();
1043     unsigned DstIdx = CP.getDstIdx();
1044     if (CP.isFlipped()) {
1045       std::swap(SrcIdx, DstIdx);
1046       std::swap(SrcRC, DstRC);
1047     }
1048     if (!TRI->shouldCoalesce(CopyMI, SrcRC, SrcIdx, DstRC, DstIdx,
1049                             CP.getNewRC())) {
1050       DEBUG(dbgs() << "\tSubtarget bailed on coalescing.\n");
1051       return false;
1052     }
1053   }
1054
1055   // Dead code elimination. This really should be handled by MachineDCE, but
1056   // sometimes dead copies slip through, and we can't generate invalid live
1057   // ranges.
1058   if (!CP.isPhys() && CopyMI->allDefsAreDead()) {
1059     DEBUG(dbgs() << "\tCopy is dead.\n");
1060     DeadDefs.push_back(CopyMI);
1061     eliminateDeadDefs();
1062     return true;
1063   }
1064
1065   // Eliminate undefs.
1066   if (!CP.isPhys() && eliminateUndefCopy(CopyMI, CP)) {
1067     DEBUG(dbgs() << "\tEliminated copy of <undef> value.\n");
1068     LIS->RemoveMachineInstrFromMaps(CopyMI);
1069     CopyMI->eraseFromParent();
1070     return false;  // Not coalescable.
1071   }
1072
1073   // Coalesced copies are normally removed immediately, but transformations
1074   // like removeCopyByCommutingDef() can inadvertently create identity copies.
1075   // When that happens, just join the values and remove the copy.
1076   if (CP.getSrcReg() == CP.getDstReg()) {
1077     LiveInterval &LI = LIS->getInterval(CP.getSrcReg());
1078     DEBUG(dbgs() << "\tCopy already coalesced: " << LI << '\n');
1079     LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(CopyMI));
1080     if (VNInfo *DefVNI = LRQ.valueDefined()) {
1081       VNInfo *ReadVNI = LRQ.valueIn();
1082       assert(ReadVNI && "No value before copy and no <undef> flag.");
1083       assert(ReadVNI != DefVNI && "Cannot read and define the same value.");
1084       LI.MergeValueNumberInto(DefVNI, ReadVNI);
1085       DEBUG(dbgs() << "\tMerged values:          " << LI << '\n');
1086     }
1087     LIS->RemoveMachineInstrFromMaps(CopyMI);
1088     CopyMI->eraseFromParent();
1089     return true;
1090   }
1091
1092   // Enforce policies.
1093   if (CP.isPhys()) {
1094     DEBUG(dbgs() << "\tConsidering merging " << PrintReg(CP.getSrcReg(), TRI)
1095                  << " with " << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx())
1096                  << '\n');
1097     if (!canJoinPhys(CP)) {
1098       // Before giving up coalescing, if definition of source is defined by
1099       // trivial computation, try rematerializing it.
1100       bool IsDefCopy;
1101       if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy))
1102         return true;
1103       if (IsDefCopy)
1104         Again = true;  // May be possible to coalesce later.
1105       return false;
1106     }
1107   } else {
1108     DEBUG({
1109       dbgs() << "\tConsidering merging to " << CP.getNewRC()->getName()
1110              << " with ";
1111       if (CP.getDstIdx() && CP.getSrcIdx())
1112         dbgs() << PrintReg(CP.getDstReg()) << " in "
1113                << TRI->getSubRegIndexName(CP.getDstIdx()) << " and "
1114                << PrintReg(CP.getSrcReg()) << " in "
1115                << TRI->getSubRegIndexName(CP.getSrcIdx()) << '\n';
1116       else
1117         dbgs() << PrintReg(CP.getSrcReg(), TRI) << " in "
1118                << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx()) << '\n';
1119     });
1120
1121     // When possible, let DstReg be the larger interval.
1122     if (!CP.isPartial() && LIS->getInterval(CP.getSrcReg()).size() >
1123                            LIS->getInterval(CP.getDstReg()).size())
1124       CP.flip();
1125   }
1126
1127   // Okay, attempt to join these two intervals.  On failure, this returns false.
1128   // Otherwise, if one of the intervals being joined is a physreg, this method
1129   // always canonicalizes DstInt to be it.  The output "SrcInt" will not have
1130   // been modified, so we can use this information below to update aliases.
1131   if (!joinIntervals(CP)) {
1132     // Coalescing failed.
1133
1134     // If definition of source is defined by trivial computation, try
1135     // rematerializing it.
1136     bool IsDefCopy;
1137     if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy))
1138       return true;
1139
1140     // If we can eliminate the copy without merging the live segments, do so
1141     // now.
1142     if (!CP.isPartial() && !CP.isPhys()) {
1143       if (adjustCopiesBackFrom(CP, CopyMI) ||
1144           removeCopyByCommutingDef(CP, CopyMI)) {
1145         LIS->RemoveMachineInstrFromMaps(CopyMI);
1146         CopyMI->eraseFromParent();
1147         DEBUG(dbgs() << "\tTrivial!\n");
1148         return true;
1149       }
1150     }
1151
1152     // Otherwise, we are unable to join the intervals.
1153     DEBUG(dbgs() << "\tInterference!\n");
1154     Again = true;  // May be possible to coalesce later.
1155     return false;
1156   }
1157
1158   // Coalescing to a virtual register that is of a sub-register class of the
1159   // other. Make sure the resulting register is set to the right register class.
1160   if (CP.isCrossClass()) {
1161     ++numCrossRCs;
1162     MRI->setRegClass(CP.getDstReg(), CP.getNewRC());
1163   }
1164
1165   // Removing sub-register copies can ease the register class constraints.
1166   // Make sure we attempt to inflate the register class of DstReg.
1167   if (!CP.isPhys() && RegClassInfo.isProperSubClass(CP.getNewRC()))
1168     InflateRegs.push_back(CP.getDstReg());
1169
1170   // CopyMI has been erased by joinIntervals at this point. Remove it from
1171   // ErasedInstrs since copyCoalesceWorkList() won't add a successful join back
1172   // to the work list. This keeps ErasedInstrs from growing needlessly.
1173   ErasedInstrs.erase(CopyMI);
1174
1175   // Rewrite all SrcReg operands to DstReg.
1176   // Also update DstReg operands to include DstIdx if it is set.
1177   if (CP.getDstIdx())
1178     updateRegDefsUses(CP.getDstReg(), CP.getDstReg(), CP.getDstIdx());
1179   updateRegDefsUses(CP.getSrcReg(), CP.getDstReg(), CP.getSrcIdx());
1180
1181   // SrcReg is guaranteed to be the register whose live interval that is
1182   // being merged.
1183   LIS->removeInterval(CP.getSrcReg());
1184
1185   // Update regalloc hint.
1186   TRI->UpdateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF);
1187
1188   DEBUG({
1189     dbgs() << "\tJoined. Result = ";
1190     if (CP.isPhys())
1191       dbgs() << PrintReg(CP.getDstReg(), TRI);
1192     else
1193       dbgs() << LIS->getInterval(CP.getDstReg());
1194     dbgs() << '\n';
1195   });
1196
1197   ++numJoins;
1198   return true;
1199 }
1200
1201 /// Attempt joining with a reserved physreg.
1202 bool RegisterCoalescer::joinReservedPhysReg(CoalescerPair &CP) {
1203   assert(CP.isPhys() && "Must be a physreg copy");
1204   assert(MRI->isReserved(CP.getDstReg()) && "Not a reserved register");
1205   LiveInterval &RHS = LIS->getInterval(CP.getSrcReg());
1206   DEBUG(dbgs() << "\t\tRHS = " << RHS << '\n');
1207
1208   assert(CP.isFlipped() && RHS.containsOneValue() &&
1209          "Invalid join with reserved register");
1210
1211   // Optimization for reserved registers like ESP. We can only merge with a
1212   // reserved physreg if RHS has a single value that is a copy of CP.DstReg().
1213   // The live range of the reserved register will look like a set of dead defs
1214   // - we don't properly track the live range of reserved registers.
1215
1216   // Deny any overlapping intervals.  This depends on all the reserved
1217   // register live ranges to look like dead defs.
1218   for (MCRegUnitIterator UI(CP.getDstReg(), TRI); UI.isValid(); ++UI)
1219     if (RHS.overlaps(LIS->getRegUnit(*UI))) {
1220       DEBUG(dbgs() << "\t\tInterference: " << PrintRegUnit(*UI, TRI) << '\n');
1221       return false;
1222     }
1223
1224   // Skip any value computations, we are not adding new values to the
1225   // reserved register.  Also skip merging the live ranges, the reserved
1226   // register live range doesn't need to be accurate as long as all the
1227   // defs are there.
1228
1229   // Delete the identity copy.
1230   MachineInstr *CopyMI = MRI->getVRegDef(RHS.reg);
1231   LIS->RemoveMachineInstrFromMaps(CopyMI);
1232   CopyMI->eraseFromParent();
1233
1234   // We don't track kills for reserved registers.
1235   MRI->clearKillFlags(CP.getSrcReg());
1236
1237   return true;
1238 }
1239
1240 //===----------------------------------------------------------------------===//
1241 //                 Interference checking and interval joining
1242 //===----------------------------------------------------------------------===//
1243 //
1244 // In the easiest case, the two live ranges being joined are disjoint, and
1245 // there is no interference to consider. It is quite common, though, to have
1246 // overlapping live ranges, and we need to check if the interference can be
1247 // resolved.
1248 //
1249 // The live range of a single SSA value forms a sub-tree of the dominator tree.
1250 // This means that two SSA values overlap if and only if the def of one value
1251 // is contained in the live range of the other value. As a special case, the
1252 // overlapping values can be defined at the same index.
1253 //
1254 // The interference from an overlapping def can be resolved in these cases:
1255 //
1256 // 1. Coalescable copies. The value is defined by a copy that would become an
1257 //    identity copy after joining SrcReg and DstReg. The copy instruction will
1258 //    be removed, and the value will be merged with the source value.
1259 //
1260 //    There can be several copies back and forth, causing many values to be
1261 //    merged into one. We compute a list of ultimate values in the joined live
1262 //    range as well as a mappings from the old value numbers.
1263 //
1264 // 2. IMPLICIT_DEF. This instruction is only inserted to ensure all PHI
1265 //    predecessors have a live out value. It doesn't cause real interference,
1266 //    and can be merged into the value it overlaps. Like a coalescable copy, it
1267 //    can be erased after joining.
1268 //
1269 // 3. Copy of external value. The overlapping def may be a copy of a value that
1270 //    is already in the other register. This is like a coalescable copy, but
1271 //    the live range of the source register must be trimmed after erasing the
1272 //    copy instruction:
1273 //
1274 //      %src = COPY %ext
1275 //      %dst = COPY %ext  <-- Remove this COPY, trim the live range of %ext.
1276 //
1277 // 4. Clobbering undefined lanes. Vector registers are sometimes built by
1278 //    defining one lane at a time:
1279 //
1280 //      %dst:ssub0<def,read-undef> = FOO
1281 //      %src = BAR
1282 //      %dst:ssub1<def> = COPY %src
1283 //
1284 //    The live range of %src overlaps the %dst value defined by FOO, but
1285 //    merging %src into %dst:ssub1 is only going to clobber the ssub1 lane
1286 //    which was undef anyway.
1287 //
1288 //    The value mapping is more complicated in this case. The final live range
1289 //    will have different value numbers for both FOO and BAR, but there is no
1290 //    simple mapping from old to new values. It may even be necessary to add
1291 //    new PHI values.
1292 //
1293 // 5. Clobbering dead lanes. A def may clobber a lane of a vector register that
1294 //    is live, but never read. This can happen because we don't compute
1295 //    individual live ranges per lane.
1296 //
1297 //      %dst<def> = FOO
1298 //      %src = BAR
1299 //      %dst:ssub1<def> = COPY %src
1300 //
1301 //    This kind of interference is only resolved locally. If the clobbered
1302 //    lane value escapes the block, the join is aborted.
1303
1304 namespace {
1305 /// Track information about values in a single virtual register about to be
1306 /// joined. Objects of this class are always created in pairs - one for each
1307 /// side of the CoalescerPair.
1308 class JoinVals {
1309   LiveInterval &LI;
1310
1311   // Location of this register in the final joined register.
1312   // Either CP.DstIdx or CP.SrcIdx.
1313   unsigned SubIdx;
1314
1315   // Values that will be present in the final live range.
1316   SmallVectorImpl<VNInfo*> &NewVNInfo;
1317
1318   const CoalescerPair &CP;
1319   LiveIntervals *LIS;
1320   SlotIndexes *Indexes;
1321   const TargetRegisterInfo *TRI;
1322
1323   // Value number assignments. Maps value numbers in LI to entries in NewVNInfo.
1324   // This is suitable for passing to LiveInterval::join().
1325   SmallVector<int, 8> Assignments;
1326
1327   // Conflict resolution for overlapping values.
1328   enum ConflictResolution {
1329     // No overlap, simply keep this value.
1330     CR_Keep,
1331
1332     // Merge this value into OtherVNI and erase the defining instruction.
1333     // Used for IMPLICIT_DEF, coalescable copies, and copies from external
1334     // values.
1335     CR_Erase,
1336
1337     // Merge this value into OtherVNI but keep the defining instruction.
1338     // This is for the special case where OtherVNI is defined by the same
1339     // instruction.
1340     CR_Merge,
1341
1342     // Keep this value, and have it replace OtherVNI where possible. This
1343     // complicates value mapping since OtherVNI maps to two different values
1344     // before and after this def.
1345     // Used when clobbering undefined or dead lanes.
1346     CR_Replace,
1347
1348     // Unresolved conflict. Visit later when all values have been mapped.
1349     CR_Unresolved,
1350
1351     // Unresolvable conflict. Abort the join.
1352     CR_Impossible
1353   };
1354
1355   // Per-value info for LI. The lane bit masks are all relative to the final
1356   // joined register, so they can be compared directly between SrcReg and
1357   // DstReg.
1358   struct Val {
1359     ConflictResolution Resolution;
1360
1361     // Lanes written by this def, 0 for unanalyzed values.
1362     unsigned WriteLanes;
1363
1364     // Lanes with defined values in this register. Other lanes are undef and
1365     // safe to clobber.
1366     unsigned ValidLanes;
1367
1368     // Value in LI being redefined by this def.
1369     VNInfo *RedefVNI;
1370
1371     // Value in the other live range that overlaps this def, if any.
1372     VNInfo *OtherVNI;
1373
1374     // Is this value an IMPLICIT_DEF that can be erased?
1375     //
1376     // IMPLICIT_DEF values should only exist at the end of a basic block that
1377     // is a predecessor to a phi-value. These IMPLICIT_DEF instructions can be
1378     // safely erased if they are overlapping a live value in the other live
1379     // interval.
1380     //
1381     // Weird control flow graphs and incomplete PHI handling in
1382     // ProcessImplicitDefs can very rarely create IMPLICIT_DEF values with
1383     // longer live ranges. Such IMPLICIT_DEF values should be treated like
1384     // normal values.
1385     bool ErasableImplicitDef;
1386
1387     // True when the live range of this value will be pruned because of an
1388     // overlapping CR_Replace value in the other live range.
1389     bool Pruned;
1390
1391     // True once Pruned above has been computed.
1392     bool PrunedComputed;
1393
1394     Val() : Resolution(CR_Keep), WriteLanes(0), ValidLanes(0),
1395             RedefVNI(nullptr), OtherVNI(nullptr), ErasableImplicitDef(false),
1396             Pruned(false), PrunedComputed(false) {}
1397
1398     bool isAnalyzed() const { return WriteLanes != 0; }
1399   };
1400
1401   // One entry per value number in LI.
1402   SmallVector<Val, 8> Vals;
1403
1404   unsigned computeWriteLanes(const MachineInstr *DefMI, bool &Redef);
1405   VNInfo *stripCopies(VNInfo *VNI);
1406   ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other);
1407   void computeAssignment(unsigned ValNo, JoinVals &Other);
1408   bool taintExtent(unsigned, unsigned, JoinVals&,
1409                    SmallVectorImpl<std::pair<SlotIndex, unsigned> >&);
1410   bool usesLanes(MachineInstr *MI, unsigned, unsigned, unsigned);
1411   bool isPrunedValue(unsigned ValNo, JoinVals &Other);
1412
1413 public:
1414   JoinVals(LiveInterval &li, unsigned subIdx,
1415            SmallVectorImpl<VNInfo*> &newVNInfo,
1416            const CoalescerPair &cp,
1417            LiveIntervals *lis,
1418            const TargetRegisterInfo *tri)
1419     : LI(li), SubIdx(subIdx), NewVNInfo(newVNInfo), CP(cp), LIS(lis),
1420       Indexes(LIS->getSlotIndexes()), TRI(tri),
1421       Assignments(LI.getNumValNums(), -1), Vals(LI.getNumValNums())
1422   {}
1423
1424   /// Analyze defs in LI and compute a value mapping in NewVNInfo.
1425   /// Returns false if any conflicts were impossible to resolve.
1426   bool mapValues(JoinVals &Other);
1427
1428   /// Try to resolve conflicts that require all values to be mapped.
1429   /// Returns false if any conflicts were impossible to resolve.
1430   bool resolveConflicts(JoinVals &Other);
1431
1432   /// Prune the live range of values in Other.LI where they would conflict with
1433   /// CR_Replace values in LI. Collect end points for restoring the live range
1434   /// after joining.
1435   void pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints);
1436
1437   /// Erase any machine instructions that have been coalesced away.
1438   /// Add erased instructions to ErasedInstrs.
1439   /// Add foreign virtual registers to ShrinkRegs if their live range ended at
1440   /// the erased instrs.
1441   void eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs,
1442                    SmallVectorImpl<unsigned> &ShrinkRegs);
1443
1444   /// Get the value assignments suitable for passing to LiveInterval::join.
1445   const int *getAssignments() const { return Assignments.data(); }
1446 };
1447 } // end anonymous namespace
1448
1449 /// Compute the bitmask of lanes actually written by DefMI.
1450 /// Set Redef if there are any partial register definitions that depend on the
1451 /// previous value of the register.
1452 unsigned JoinVals::computeWriteLanes(const MachineInstr *DefMI, bool &Redef) {
1453   unsigned L = 0;
1454   for (ConstMIOperands MO(DefMI); MO.isValid(); ++MO) {
1455     if (!MO->isReg() || MO->getReg() != LI.reg || !MO->isDef())
1456       continue;
1457     L |= TRI->getSubRegIndexLaneMask(
1458            TRI->composeSubRegIndices(SubIdx, MO->getSubReg()));
1459     if (MO->readsReg())
1460       Redef = true;
1461   }
1462   return L;
1463 }
1464
1465 /// Find the ultimate value that VNI was copied from.
1466 VNInfo *JoinVals::stripCopies(VNInfo *VNI) {
1467   while (!VNI->isPHIDef()) {
1468     MachineInstr *MI = Indexes->getInstructionFromIndex(VNI->def);
1469     assert(MI && "No defining instruction");
1470     if (!MI->isFullCopy())
1471       break;
1472     unsigned Reg = MI->getOperand(1).getReg();
1473     if (!TargetRegisterInfo::isVirtualRegister(Reg))
1474       break;
1475     LiveQueryResult LRQ = LIS->getInterval(Reg).Query(VNI->def);
1476     if (!LRQ.valueIn())
1477       break;
1478     VNI = LRQ.valueIn();
1479   }
1480   return VNI;
1481 }
1482
1483 /// Analyze ValNo in this live range, and set all fields of Vals[ValNo].
1484 /// Return a conflict resolution when possible, but leave the hard cases as
1485 /// CR_Unresolved.
1486 /// Recursively calls computeAssignment() on this and Other, guaranteeing that
1487 /// both OtherVNI and RedefVNI have been analyzed and mapped before returning.
1488 /// The recursion always goes upwards in the dominator tree, making loops
1489 /// impossible.
1490 JoinVals::ConflictResolution
1491 JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) {
1492   Val &V = Vals[ValNo];
1493   assert(!V.isAnalyzed() && "Value has already been analyzed!");
1494   VNInfo *VNI = LI.getValNumInfo(ValNo);
1495   if (VNI->isUnused()) {
1496     V.WriteLanes = ~0u;
1497     return CR_Keep;
1498   }
1499
1500   // Get the instruction defining this value, compute the lanes written.
1501   const MachineInstr *DefMI = nullptr;
1502   if (VNI->isPHIDef()) {
1503     // Conservatively assume that all lanes in a PHI are valid.
1504     V.ValidLanes = V.WriteLanes = TRI->getSubRegIndexLaneMask(SubIdx);
1505   } else {
1506     DefMI = Indexes->getInstructionFromIndex(VNI->def);
1507     bool Redef = false;
1508     V.ValidLanes = V.WriteLanes = computeWriteLanes(DefMI, Redef);
1509
1510     // If this is a read-modify-write instruction, there may be more valid
1511     // lanes than the ones written by this instruction.
1512     // This only covers partial redef operands. DefMI may have normal use
1513     // operands reading the register. They don't contribute valid lanes.
1514     //
1515     // This adds ssub1 to the set of valid lanes in %src:
1516     //
1517     //   %src:ssub1<def> = FOO
1518     //
1519     // This leaves only ssub1 valid, making any other lanes undef:
1520     //
1521     //   %src:ssub1<def,read-undef> = FOO %src:ssub2
1522     //
1523     // The <read-undef> flag on the def operand means that old lane values are
1524     // not important.
1525     if (Redef) {
1526       V.RedefVNI = LI.Query(VNI->def).valueIn();
1527       assert(V.RedefVNI && "Instruction is reading nonexistent value");
1528       computeAssignment(V.RedefVNI->id, Other);
1529       V.ValidLanes |= Vals[V.RedefVNI->id].ValidLanes;
1530     }
1531
1532     // An IMPLICIT_DEF writes undef values.
1533     if (DefMI->isImplicitDef()) {
1534       // We normally expect IMPLICIT_DEF values to be live only until the end
1535       // of their block. If the value is really live longer and gets pruned in
1536       // another block, this flag is cleared again.
1537       V.ErasableImplicitDef = true;
1538       V.ValidLanes &= ~V.WriteLanes;
1539     }
1540   }
1541
1542   // Find the value in Other that overlaps VNI->def, if any.
1543   LiveQueryResult OtherLRQ = Other.LI.Query(VNI->def);
1544
1545   // It is possible that both values are defined by the same instruction, or
1546   // the values are PHIs defined in the same block. When that happens, the two
1547   // values should be merged into one, but not into any preceding value.
1548   // The first value defined or visited gets CR_Keep, the other gets CR_Merge.
1549   if (VNInfo *OtherVNI = OtherLRQ.valueDefined()) {
1550     assert(SlotIndex::isSameInstr(VNI->def, OtherVNI->def) && "Broken LRQ");
1551
1552     // One value stays, the other is merged. Keep the earlier one, or the first
1553     // one we see.
1554     if (OtherVNI->def < VNI->def)
1555       Other.computeAssignment(OtherVNI->id, *this);
1556     else if (VNI->def < OtherVNI->def && OtherLRQ.valueIn()) {
1557       // This is an early-clobber def overlapping a live-in value in the other
1558       // register. Not mergeable.
1559       V.OtherVNI = OtherLRQ.valueIn();
1560       return CR_Impossible;
1561     }
1562     V.OtherVNI = OtherVNI;
1563     Val &OtherV = Other.Vals[OtherVNI->id];
1564     // Keep this value, check for conflicts when analyzing OtherVNI.
1565     if (!OtherV.isAnalyzed())
1566       return CR_Keep;
1567     // Both sides have been analyzed now.
1568     // Allow overlapping PHI values. Any real interference would show up in a
1569     // predecessor, the PHI itself can't introduce any conflicts.
1570     if (VNI->isPHIDef())
1571       return CR_Merge;
1572     if (V.ValidLanes & OtherV.ValidLanes)
1573       // Overlapping lanes can't be resolved.
1574       return CR_Impossible;
1575     else
1576       return CR_Merge;
1577   }
1578
1579   // No simultaneous def. Is Other live at the def?
1580   V.OtherVNI = OtherLRQ.valueIn();
1581   if (!V.OtherVNI)
1582     // No overlap, no conflict.
1583     return CR_Keep;
1584
1585   assert(!SlotIndex::isSameInstr(VNI->def, V.OtherVNI->def) && "Broken LRQ");
1586
1587   // We have overlapping values, or possibly a kill of Other.
1588   // Recursively compute assignments up the dominator tree.
1589   Other.computeAssignment(V.OtherVNI->id, *this);
1590   Val &OtherV = Other.Vals[V.OtherVNI->id];
1591
1592   // Check if OtherV is an IMPLICIT_DEF that extends beyond its basic block.
1593   // This shouldn't normally happen, but ProcessImplicitDefs can leave such
1594   // IMPLICIT_DEF instructions behind, and there is nothing wrong with it
1595   // technically.
1596   //
1597   // WHen it happens, treat that IMPLICIT_DEF as a normal value, and don't try
1598   // to erase the IMPLICIT_DEF instruction.
1599   if (OtherV.ErasableImplicitDef && DefMI &&
1600       DefMI->getParent() != Indexes->getMBBFromIndex(V.OtherVNI->def)) {
1601     DEBUG(dbgs() << "IMPLICIT_DEF defined at " << V.OtherVNI->def
1602                  << " extends into BB#" << DefMI->getParent()->getNumber()
1603                  << ", keeping it.\n");
1604     OtherV.ErasableImplicitDef = false;
1605   }
1606
1607   // Allow overlapping PHI values. Any real interference would show up in a
1608   // predecessor, the PHI itself can't introduce any conflicts.
1609   if (VNI->isPHIDef())
1610     return CR_Replace;
1611
1612   // Check for simple erasable conflicts.
1613   if (DefMI->isImplicitDef())
1614     return CR_Erase;
1615
1616   // Include the non-conflict where DefMI is a coalescable copy that kills
1617   // OtherVNI. We still want the copy erased and value numbers merged.
1618   if (CP.isCoalescable(DefMI)) {
1619     // Some of the lanes copied from OtherVNI may be undef, making them undef
1620     // here too.
1621     V.ValidLanes &= ~V.WriteLanes | OtherV.ValidLanes;
1622     return CR_Erase;
1623   }
1624
1625   // This may not be a real conflict if DefMI simply kills Other and defines
1626   // VNI.
1627   if (OtherLRQ.isKill() && OtherLRQ.endPoint() <= VNI->def)
1628     return CR_Keep;
1629
1630   // Handle the case where VNI and OtherVNI can be proven to be identical:
1631   //
1632   //   %other = COPY %ext
1633   //   %this  = COPY %ext <-- Erase this copy
1634   //
1635   if (DefMI->isFullCopy() && !CP.isPartial() &&
1636       stripCopies(VNI) == stripCopies(V.OtherVNI))
1637     return CR_Erase;
1638
1639   // If the lanes written by this instruction were all undef in OtherVNI, it is
1640   // still safe to join the live ranges. This can't be done with a simple value
1641   // mapping, though - OtherVNI will map to multiple values:
1642   //
1643   //   1 %dst:ssub0 = FOO                <-- OtherVNI
1644   //   2 %src = BAR                      <-- VNI
1645   //   3 %dst:ssub1 = COPY %src<kill>    <-- Eliminate this copy.
1646   //   4 BAZ %dst<kill>
1647   //   5 QUUX %src<kill>
1648   //
1649   // Here OtherVNI will map to itself in [1;2), but to VNI in [2;5). CR_Replace
1650   // handles this complex value mapping.
1651   if ((V.WriteLanes & OtherV.ValidLanes) == 0)
1652     return CR_Replace;
1653
1654   // If the other live range is killed by DefMI and the live ranges are still
1655   // overlapping, it must be because we're looking at an early clobber def:
1656   //
1657   //   %dst<def,early-clobber> = ASM %src<kill>
1658   //
1659   // In this case, it is illegal to merge the two live ranges since the early
1660   // clobber def would clobber %src before it was read.
1661   if (OtherLRQ.isKill()) {
1662     // This case where the def doesn't overlap the kill is handled above.
1663     assert(VNI->def.isEarlyClobber() &&
1664            "Only early clobber defs can overlap a kill");
1665     return CR_Impossible;
1666   }
1667
1668   // VNI is clobbering live lanes in OtherVNI, but there is still the
1669   // possibility that no instructions actually read the clobbered lanes.
1670   // If we're clobbering all the lanes in OtherVNI, at least one must be read.
1671   // Otherwise Other.LI wouldn't be live here.
1672   if ((TRI->getSubRegIndexLaneMask(Other.SubIdx) & ~V.WriteLanes) == 0)
1673     return CR_Impossible;
1674
1675   // We need to verify that no instructions are reading the clobbered lanes. To
1676   // save compile time, we'll only check that locally. Don't allow the tainted
1677   // value to escape the basic block.
1678   MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1679   if (OtherLRQ.endPoint() >= Indexes->getMBBEndIdx(MBB))
1680     return CR_Impossible;
1681
1682   // There are still some things that could go wrong besides clobbered lanes
1683   // being read, for example OtherVNI may be only partially redefined in MBB,
1684   // and some clobbered lanes could escape the block. Save this analysis for
1685   // resolveConflicts() when all values have been mapped. We need to know
1686   // RedefVNI and WriteLanes for any later defs in MBB, and we can't compute
1687   // that now - the recursive analyzeValue() calls must go upwards in the
1688   // dominator tree.
1689   return CR_Unresolved;
1690 }
1691
1692 /// Compute the value assignment for ValNo in LI.
1693 /// This may be called recursively by analyzeValue(), but never for a ValNo on
1694 /// the stack.
1695 void JoinVals::computeAssignment(unsigned ValNo, JoinVals &Other) {
1696   Val &V = Vals[ValNo];
1697   if (V.isAnalyzed()) {
1698     // Recursion should always move up the dominator tree, so ValNo is not
1699     // supposed to reappear before it has been assigned.
1700     assert(Assignments[ValNo] != -1 && "Bad recursion?");
1701     return;
1702   }
1703   switch ((V.Resolution = analyzeValue(ValNo, Other))) {
1704   case CR_Erase:
1705   case CR_Merge:
1706     // Merge this ValNo into OtherVNI.
1707     assert(V.OtherVNI && "OtherVNI not assigned, can't merge.");
1708     assert(Other.Vals[V.OtherVNI->id].isAnalyzed() && "Missing recursion");
1709     Assignments[ValNo] = Other.Assignments[V.OtherVNI->id];
1710     DEBUG(dbgs() << "\t\tmerge " << PrintReg(LI.reg) << ':' << ValNo << '@'
1711                  << LI.getValNumInfo(ValNo)->def << " into "
1712                  << PrintReg(Other.LI.reg) << ':' << V.OtherVNI->id << '@'
1713                  << V.OtherVNI->def << " --> @"
1714                  << NewVNInfo[Assignments[ValNo]]->def << '\n');
1715     break;
1716   case CR_Replace:
1717   case CR_Unresolved:
1718     // The other value is going to be pruned if this join is successful.
1719     assert(V.OtherVNI && "OtherVNI not assigned, can't prune");
1720     Other.Vals[V.OtherVNI->id].Pruned = true;
1721     // Fall through.
1722   default:
1723     // This value number needs to go in the final joined live range.
1724     Assignments[ValNo] = NewVNInfo.size();
1725     NewVNInfo.push_back(LI.getValNumInfo(ValNo));
1726     break;
1727   }
1728 }
1729
1730 bool JoinVals::mapValues(JoinVals &Other) {
1731   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1732     computeAssignment(i, Other);
1733     if (Vals[i].Resolution == CR_Impossible) {
1734       DEBUG(dbgs() << "\t\tinterference at " << PrintReg(LI.reg) << ':' << i
1735                    << '@' << LI.getValNumInfo(i)->def << '\n');
1736       return false;
1737     }
1738   }
1739   return true;
1740 }
1741
1742 /// Assuming ValNo is going to clobber some valid lanes in Other.LI, compute
1743 /// the extent of the tainted lanes in the block.
1744 ///
1745 /// Multiple values in Other.LI can be affected since partial redefinitions can
1746 /// preserve previously tainted lanes.
1747 ///
1748 ///   1 %dst = VLOAD           <-- Define all lanes in %dst
1749 ///   2 %src = FOO             <-- ValNo to be joined with %dst:ssub0
1750 ///   3 %dst:ssub1 = BAR       <-- Partial redef doesn't clear taint in ssub0
1751 ///   4 %dst:ssub0 = COPY %src <-- Conflict resolved, ssub0 wasn't read
1752 ///
1753 /// For each ValNo in Other that is affected, add an (EndIndex, TaintedLanes)
1754 /// entry to TaintedVals.
1755 ///
1756 /// Returns false if the tainted lanes extend beyond the basic block.
1757 bool JoinVals::
1758 taintExtent(unsigned ValNo, unsigned TaintedLanes, JoinVals &Other,
1759             SmallVectorImpl<std::pair<SlotIndex, unsigned> > &TaintExtent) {
1760   VNInfo *VNI = LI.getValNumInfo(ValNo);
1761   MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1762   SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB);
1763
1764   // Scan Other.LI from VNI.def to MBBEnd.
1765   LiveInterval::iterator OtherI = Other.LI.find(VNI->def);
1766   assert(OtherI != Other.LI.end() && "No conflict?");
1767   do {
1768     // OtherI is pointing to a tainted value. Abort the join if the tainted
1769     // lanes escape the block.
1770     SlotIndex End = OtherI->end;
1771     if (End >= MBBEnd) {
1772       DEBUG(dbgs() << "\t\ttaints global " << PrintReg(Other.LI.reg) << ':'
1773                    << OtherI->valno->id << '@' << OtherI->start << '\n');
1774       return false;
1775     }
1776     DEBUG(dbgs() << "\t\ttaints local " << PrintReg(Other.LI.reg) << ':'
1777                  << OtherI->valno->id << '@' << OtherI->start
1778                  << " to " << End << '\n');
1779     // A dead def is not a problem.
1780     if (End.isDead())
1781       break;
1782     TaintExtent.push_back(std::make_pair(End, TaintedLanes));
1783
1784     // Check for another def in the MBB.
1785     if (++OtherI == Other.LI.end() || OtherI->start >= MBBEnd)
1786       break;
1787
1788     // Lanes written by the new def are no longer tainted.
1789     const Val &OV = Other.Vals[OtherI->valno->id];
1790     TaintedLanes &= ~OV.WriteLanes;
1791     if (!OV.RedefVNI)
1792       break;
1793   } while (TaintedLanes);
1794   return true;
1795 }
1796
1797 /// Return true if MI uses any of the given Lanes from Reg.
1798 /// This does not include partial redefinitions of Reg.
1799 bool JoinVals::usesLanes(MachineInstr *MI, unsigned Reg, unsigned SubIdx,
1800                          unsigned Lanes) {
1801   if (MI->isDebugValue())
1802     return false;
1803   for (ConstMIOperands MO(MI); MO.isValid(); ++MO) {
1804     if (!MO->isReg() || MO->isDef() || MO->getReg() != Reg)
1805       continue;
1806     if (!MO->readsReg())
1807       continue;
1808     if (Lanes & TRI->getSubRegIndexLaneMask(
1809                   TRI->composeSubRegIndices(SubIdx, MO->getSubReg())))
1810       return true;
1811   }
1812   return false;
1813 }
1814
1815 bool JoinVals::resolveConflicts(JoinVals &Other) {
1816   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1817     Val &V = Vals[i];
1818     assert (V.Resolution != CR_Impossible && "Unresolvable conflict");
1819     if (V.Resolution != CR_Unresolved)
1820       continue;
1821     DEBUG(dbgs() << "\t\tconflict at " << PrintReg(LI.reg) << ':' << i
1822                  << '@' << LI.getValNumInfo(i)->def << '\n');
1823     ++NumLaneConflicts;
1824     assert(V.OtherVNI && "Inconsistent conflict resolution.");
1825     VNInfo *VNI = LI.getValNumInfo(i);
1826     const Val &OtherV = Other.Vals[V.OtherVNI->id];
1827
1828     // VNI is known to clobber some lanes in OtherVNI. If we go ahead with the
1829     // join, those lanes will be tainted with a wrong value. Get the extent of
1830     // the tainted lanes.
1831     unsigned TaintedLanes = V.WriteLanes & OtherV.ValidLanes;
1832     SmallVector<std::pair<SlotIndex, unsigned>, 8> TaintExtent;
1833     if (!taintExtent(i, TaintedLanes, Other, TaintExtent))
1834       // Tainted lanes would extend beyond the basic block.
1835       return false;
1836
1837     assert(!TaintExtent.empty() && "There should be at least one conflict.");
1838
1839     // Now look at the instructions from VNI->def to TaintExtent (inclusive).
1840     MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1841     MachineBasicBlock::iterator MI = MBB->begin();
1842     if (!VNI->isPHIDef()) {
1843       MI = Indexes->getInstructionFromIndex(VNI->def);
1844       // No need to check the instruction defining VNI for reads.
1845       ++MI;
1846     }
1847     assert(!SlotIndex::isSameInstr(VNI->def, TaintExtent.front().first) &&
1848            "Interference ends on VNI->def. Should have been handled earlier");
1849     MachineInstr *LastMI =
1850       Indexes->getInstructionFromIndex(TaintExtent.front().first);
1851     assert(LastMI && "Range must end at a proper instruction");
1852     unsigned TaintNum = 0;
1853     for(;;) {
1854       assert(MI != MBB->end() && "Bad LastMI");
1855       if (usesLanes(MI, Other.LI.reg, Other.SubIdx, TaintedLanes)) {
1856         DEBUG(dbgs() << "\t\ttainted lanes used by: " << *MI);
1857         return false;
1858       }
1859       // LastMI is the last instruction to use the current value.
1860       if (&*MI == LastMI) {
1861         if (++TaintNum == TaintExtent.size())
1862           break;
1863         LastMI = Indexes->getInstructionFromIndex(TaintExtent[TaintNum].first);
1864         assert(LastMI && "Range must end at a proper instruction");
1865         TaintedLanes = TaintExtent[TaintNum].second;
1866       }
1867       ++MI;
1868     }
1869
1870     // The tainted lanes are unused.
1871     V.Resolution = CR_Replace;
1872     ++NumLaneResolves;
1873   }
1874   return true;
1875 }
1876
1877 // Determine if ValNo is a copy of a value number in LI or Other.LI that will
1878 // be pruned:
1879 //
1880 //   %dst = COPY %src
1881 //   %src = COPY %dst  <-- This value to be pruned.
1882 //   %dst = COPY %src  <-- This value is a copy of a pruned value.
1883 //
1884 bool JoinVals::isPrunedValue(unsigned ValNo, JoinVals &Other) {
1885   Val &V = Vals[ValNo];
1886   if (V.Pruned || V.PrunedComputed)
1887     return V.Pruned;
1888
1889   if (V.Resolution != CR_Erase && V.Resolution != CR_Merge)
1890     return V.Pruned;
1891
1892   // Follow copies up the dominator tree and check if any intermediate value
1893   // has been pruned.
1894   V.PrunedComputed = true;
1895   V.Pruned = Other.isPrunedValue(V.OtherVNI->id, *this);
1896   return V.Pruned;
1897 }
1898
1899 void JoinVals::pruneValues(JoinVals &Other,
1900                            SmallVectorImpl<SlotIndex> &EndPoints) {
1901   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1902     SlotIndex Def = LI.getValNumInfo(i)->def;
1903     switch (Vals[i].Resolution) {
1904     case CR_Keep:
1905       break;
1906     case CR_Replace: {
1907       // This value takes precedence over the value in Other.LI.
1908       LIS->pruneValue(&Other.LI, Def, &EndPoints);
1909       // Check if we're replacing an IMPLICIT_DEF value. The IMPLICIT_DEF
1910       // instructions are only inserted to provide a live-out value for PHI
1911       // predecessors, so the instruction should simply go away once its value
1912       // has been replaced.
1913       Val &OtherV = Other.Vals[Vals[i].OtherVNI->id];
1914       bool EraseImpDef = OtherV.ErasableImplicitDef &&
1915                          OtherV.Resolution == CR_Keep;
1916       if (!Def.isBlock()) {
1917         // Remove <def,read-undef> flags. This def is now a partial redef.
1918         // Also remove <def,dead> flags since the joined live range will
1919         // continue past this instruction.
1920         for (MIOperands MO(Indexes->getInstructionFromIndex(Def));
1921              MO.isValid(); ++MO)
1922           if (MO->isReg() && MO->isDef() && MO->getReg() == LI.reg) {
1923             MO->setIsUndef(EraseImpDef);
1924             MO->setIsDead(false);
1925           }
1926         // This value will reach instructions below, but we need to make sure
1927         // the live range also reaches the instruction at Def.
1928         if (!EraseImpDef)
1929           EndPoints.push_back(Def);
1930       }
1931       DEBUG(dbgs() << "\t\tpruned " << PrintReg(Other.LI.reg) << " at " << Def
1932                    << ": " << Other.LI << '\n');
1933       break;
1934     }
1935     case CR_Erase:
1936     case CR_Merge:
1937       if (isPrunedValue(i, Other)) {
1938         // This value is ultimately a copy of a pruned value in LI or Other.LI.
1939         // We can no longer trust the value mapping computed by
1940         // computeAssignment(), the value that was originally copied could have
1941         // been replaced.
1942         LIS->pruneValue(&LI, Def, &EndPoints);
1943         DEBUG(dbgs() << "\t\tpruned all of " << PrintReg(LI.reg) << " at "
1944                      << Def << ": " << LI << '\n');
1945       }
1946       break;
1947     case CR_Unresolved:
1948     case CR_Impossible:
1949       llvm_unreachable("Unresolved conflicts");
1950     }
1951   }
1952 }
1953
1954 void JoinVals::eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs,
1955                            SmallVectorImpl<unsigned> &ShrinkRegs) {
1956   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1957     // Get the def location before markUnused() below invalidates it.
1958     SlotIndex Def = LI.getValNumInfo(i)->def;
1959     switch (Vals[i].Resolution) {
1960     case CR_Keep:
1961       // If an IMPLICIT_DEF value is pruned, it doesn't serve a purpose any
1962       // longer. The IMPLICIT_DEF instructions are only inserted by
1963       // PHIElimination to guarantee that all PHI predecessors have a value.
1964       if (!Vals[i].ErasableImplicitDef || !Vals[i].Pruned)
1965         break;
1966       // Remove value number i from LI. Note that this VNInfo is still present
1967       // in NewVNInfo, so it will appear as an unused value number in the final
1968       // joined interval.
1969       LI.getValNumInfo(i)->markUnused();
1970       LI.removeValNo(LI.getValNumInfo(i));
1971       DEBUG(dbgs() << "\t\tremoved " << i << '@' << Def << ": " << LI << '\n');
1972       // FALL THROUGH.
1973
1974     case CR_Erase: {
1975       MachineInstr *MI = Indexes->getInstructionFromIndex(Def);
1976       assert(MI && "No instruction to erase");
1977       if (MI->isCopy()) {
1978         unsigned Reg = MI->getOperand(1).getReg();
1979         if (TargetRegisterInfo::isVirtualRegister(Reg) &&
1980             Reg != CP.getSrcReg() && Reg != CP.getDstReg())
1981           ShrinkRegs.push_back(Reg);
1982       }
1983       ErasedInstrs.insert(MI);
1984       DEBUG(dbgs() << "\t\terased:\t" << Def << '\t' << *MI);
1985       LIS->RemoveMachineInstrFromMaps(MI);
1986       MI->eraseFromParent();
1987       break;
1988     }
1989     default:
1990       break;
1991     }
1992   }
1993 }
1994
1995 bool RegisterCoalescer::joinVirtRegs(CoalescerPair &CP) {
1996   SmallVector<VNInfo*, 16> NewVNInfo;
1997   LiveInterval &RHS = LIS->getInterval(CP.getSrcReg());
1998   LiveInterval &LHS = LIS->getInterval(CP.getDstReg());
1999   JoinVals RHSVals(RHS, CP.getSrcIdx(), NewVNInfo, CP, LIS, TRI);
2000   JoinVals LHSVals(LHS, CP.getDstIdx(), NewVNInfo, CP, LIS, TRI);
2001
2002   DEBUG(dbgs() << "\t\tRHS = " << RHS
2003                << "\n\t\tLHS = " << LHS
2004                << '\n');
2005
2006   // First compute NewVNInfo and the simple value mappings.
2007   // Detect impossible conflicts early.
2008   if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals))
2009     return false;
2010
2011   // Some conflicts can only be resolved after all values have been mapped.
2012   if (!LHSVals.resolveConflicts(RHSVals) || !RHSVals.resolveConflicts(LHSVals))
2013     return false;
2014
2015   // All clear, the live ranges can be merged.
2016
2017   // The merging algorithm in LiveInterval::join() can't handle conflicting
2018   // value mappings, so we need to remove any live ranges that overlap a
2019   // CR_Replace resolution. Collect a set of end points that can be used to
2020   // restore the live range after joining.
2021   SmallVector<SlotIndex, 8> EndPoints;
2022   LHSVals.pruneValues(RHSVals, EndPoints);
2023   RHSVals.pruneValues(LHSVals, EndPoints);
2024
2025   // Erase COPY and IMPLICIT_DEF instructions. This may cause some external
2026   // registers to require trimming.
2027   SmallVector<unsigned, 8> ShrinkRegs;
2028   LHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs);
2029   RHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs);
2030   while (!ShrinkRegs.empty())
2031     LIS->shrinkToUses(&LIS->getInterval(ShrinkRegs.pop_back_val()));
2032
2033   // Join RHS into LHS.
2034   LHS.join(RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo);
2035
2036   // Kill flags are going to be wrong if the live ranges were overlapping.
2037   // Eventually, we should simply clear all kill flags when computing live
2038   // ranges. They are reinserted after register allocation.
2039   MRI->clearKillFlags(LHS.reg);
2040   MRI->clearKillFlags(RHS.reg);
2041
2042   if (EndPoints.empty())
2043     return true;
2044
2045   // Recompute the parts of the live range we had to remove because of
2046   // CR_Replace conflicts.
2047   DEBUG(dbgs() << "\t\trestoring liveness to " << EndPoints.size()
2048                << " points: " << LHS << '\n');
2049   LIS->extendToIndices(LHS, EndPoints);
2050   return true;
2051 }
2052
2053 /// Attempt to join these two intervals.  On failure, this returns false.
2054 bool RegisterCoalescer::joinIntervals(CoalescerPair &CP) {
2055   return CP.isPhys() ? joinReservedPhysReg(CP) : joinVirtRegs(CP);
2056 }
2057
2058 namespace {
2059 // Information concerning MBB coalescing priority.
2060 struct MBBPriorityInfo {
2061   MachineBasicBlock *MBB;
2062   unsigned Depth;
2063   bool IsSplit;
2064
2065   MBBPriorityInfo(MachineBasicBlock *mbb, unsigned depth, bool issplit)
2066     : MBB(mbb), Depth(depth), IsSplit(issplit) {}
2067 };
2068 }
2069
2070 // C-style comparator that sorts first based on the loop depth of the basic
2071 // block (the unsigned), and then on the MBB number.
2072 //
2073 // EnableGlobalCopies assumes that the primary sort key is loop depth.
2074 static int compareMBBPriority(const MBBPriorityInfo *LHS,
2075                               const MBBPriorityInfo *RHS) {
2076   // Deeper loops first
2077   if (LHS->Depth != RHS->Depth)
2078     return LHS->Depth > RHS->Depth ? -1 : 1;
2079
2080   // Try to unsplit critical edges next.
2081   if (LHS->IsSplit != RHS->IsSplit)
2082     return LHS->IsSplit ? -1 : 1;
2083
2084   // Prefer blocks that are more connected in the CFG. This takes care of
2085   // the most difficult copies first while intervals are short.
2086   unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size();
2087   unsigned cr = RHS->MBB->pred_size() + RHS->MBB->succ_size();
2088   if (cl != cr)
2089     return cl > cr ? -1 : 1;
2090
2091   // As a last resort, sort by block number.
2092   return LHS->MBB->getNumber() < RHS->MBB->getNumber() ? -1 : 1;
2093 }
2094
2095 /// \returns true if the given copy uses or defines a local live range.
2096 static bool isLocalCopy(MachineInstr *Copy, const LiveIntervals *LIS) {
2097   if (!Copy->isCopy())
2098     return false;
2099
2100   if (Copy->getOperand(1).isUndef())
2101     return false;
2102
2103   unsigned SrcReg = Copy->getOperand(1).getReg();
2104   unsigned DstReg = Copy->getOperand(0).getReg();
2105   if (TargetRegisterInfo::isPhysicalRegister(SrcReg)
2106       || TargetRegisterInfo::isPhysicalRegister(DstReg))
2107     return false;
2108
2109   return LIS->intervalIsInOneMBB(LIS->getInterval(SrcReg))
2110     || LIS->intervalIsInOneMBB(LIS->getInterval(DstReg));
2111 }
2112
2113 // Try joining WorkList copies starting from index From.
2114 // Null out any successful joins.
2115 bool RegisterCoalescer::
2116 copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList) {
2117   bool Progress = false;
2118   for (unsigned i = 0, e = CurrList.size(); i != e; ++i) {
2119     if (!CurrList[i])
2120       continue;
2121     // Skip instruction pointers that have already been erased, for example by
2122     // dead code elimination.
2123     if (ErasedInstrs.erase(CurrList[i])) {
2124       CurrList[i] = nullptr;
2125       continue;
2126     }
2127     bool Again = false;
2128     bool Success = joinCopy(CurrList[i], Again);
2129     Progress |= Success;
2130     if (Success || !Again)
2131       CurrList[i] = nullptr;
2132   }
2133   return Progress;
2134 }
2135
2136 void
2137 RegisterCoalescer::copyCoalesceInMBB(MachineBasicBlock *MBB) {
2138   DEBUG(dbgs() << MBB->getName() << ":\n");
2139
2140   // Collect all copy-like instructions in MBB. Don't start coalescing anything
2141   // yet, it might invalidate the iterator.
2142   const unsigned PrevSize = WorkList.size();
2143   if (JoinGlobalCopies) {
2144     // Coalesce copies bottom-up to coalesce local defs before local uses. They
2145     // are not inherently easier to resolve, but slightly preferable until we
2146     // have local live range splitting. In particular this is required by
2147     // cmp+jmp macro fusion.
2148     for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2149          MII != E; ++MII) {
2150       if (!MII->isCopyLike())
2151         continue;
2152       if (isLocalCopy(&(*MII), LIS))
2153         LocalWorkList.push_back(&(*MII));
2154       else
2155         WorkList.push_back(&(*MII));
2156     }
2157   }
2158   else {
2159      for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2160           MII != E; ++MII)
2161        if (MII->isCopyLike())
2162          WorkList.push_back(MII);
2163   }
2164   // Try coalescing the collected copies immediately, and remove the nulls.
2165   // This prevents the WorkList from getting too large since most copies are
2166   // joinable on the first attempt.
2167   MutableArrayRef<MachineInstr*>
2168     CurrList(WorkList.begin() + PrevSize, WorkList.end());
2169   if (copyCoalesceWorkList(CurrList))
2170     WorkList.erase(std::remove(WorkList.begin() + PrevSize, WorkList.end(),
2171                                (MachineInstr*)nullptr), WorkList.end());
2172 }
2173
2174 void RegisterCoalescer::coalesceLocals() {
2175   copyCoalesceWorkList(LocalWorkList);
2176   for (unsigned j = 0, je = LocalWorkList.size(); j != je; ++j) {
2177     if (LocalWorkList[j])
2178       WorkList.push_back(LocalWorkList[j]);
2179   }
2180   LocalWorkList.clear();
2181 }
2182
2183 void RegisterCoalescer::joinAllIntervals() {
2184   DEBUG(dbgs() << "********** JOINING INTERVALS ***********\n");
2185   assert(WorkList.empty() && LocalWorkList.empty() && "Old data still around.");
2186
2187   std::vector<MBBPriorityInfo> MBBs;
2188   MBBs.reserve(MF->size());
2189   for (MachineFunction::iterator I = MF->begin(), E = MF->end();I != E;++I){
2190     MachineBasicBlock *MBB = I;
2191     MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
2192                                    JoinSplitEdges && isSplitEdge(MBB)));
2193   }
2194   array_pod_sort(MBBs.begin(), MBBs.end(), compareMBBPriority);
2195
2196   // Coalesce intervals in MBB priority order.
2197   unsigned CurrDepth = UINT_MAX;
2198   for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
2199     // Try coalescing the collected local copies for deeper loops.
2200     if (JoinGlobalCopies && MBBs[i].Depth < CurrDepth) {
2201       coalesceLocals();
2202       CurrDepth = MBBs[i].Depth;
2203     }
2204     copyCoalesceInMBB(MBBs[i].MBB);
2205   }
2206   coalesceLocals();
2207
2208   // Joining intervals can allow other intervals to be joined.  Iteratively join
2209   // until we make no progress.
2210   while (copyCoalesceWorkList(WorkList))
2211     /* empty */ ;
2212 }
2213
2214 void RegisterCoalescer::releaseMemory() {
2215   ErasedInstrs.clear();
2216   WorkList.clear();
2217   DeadDefs.clear();
2218   InflateRegs.clear();
2219 }
2220
2221 bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) {
2222   MF = &fn;
2223   MRI = &fn.getRegInfo();
2224   TM = &fn.getTarget();
2225   TRI = TM->getSubtargetImpl()->getRegisterInfo();
2226   TII = TM->getSubtargetImpl()->getInstrInfo();
2227   LIS = &getAnalysis<LiveIntervals>();
2228   AA = &getAnalysis<AliasAnalysis>();
2229   Loops = &getAnalysis<MachineLoopInfo>();
2230
2231   const TargetSubtargetInfo &ST = TM->getSubtarget<TargetSubtargetInfo>();
2232   if (EnableGlobalCopies == cl::BOU_UNSET)
2233     JoinGlobalCopies = ST.useMachineScheduler();
2234   else
2235     JoinGlobalCopies = (EnableGlobalCopies == cl::BOU_TRUE);
2236
2237   // The MachineScheduler does not currently require JoinSplitEdges. This will
2238   // either be enabled unconditionally or replaced by a more general live range
2239   // splitting optimization.
2240   JoinSplitEdges = EnableJoinSplits;
2241
2242   DEBUG(dbgs() << "********** SIMPLE REGISTER COALESCING **********\n"
2243                << "********** Function: " << MF->getName() << '\n');
2244
2245   if (VerifyCoalescing)
2246     MF->verify(this, "Before register coalescing");
2247
2248   RegClassInfo.runOnMachineFunction(fn);
2249
2250   // Join (coalesce) intervals if requested.
2251   if (EnableJoining)
2252     joinAllIntervals();
2253
2254   // After deleting a lot of copies, register classes may be less constrained.
2255   // Removing sub-register operands may allow GR32_ABCD -> GR32 and DPR_VFP2 ->
2256   // DPR inflation.
2257   array_pod_sort(InflateRegs.begin(), InflateRegs.end());
2258   InflateRegs.erase(std::unique(InflateRegs.begin(), InflateRegs.end()),
2259                     InflateRegs.end());
2260   DEBUG(dbgs() << "Trying to inflate " << InflateRegs.size() << " regs.\n");
2261   for (unsigned i = 0, e = InflateRegs.size(); i != e; ++i) {
2262     unsigned Reg = InflateRegs[i];
2263     if (MRI->reg_nodbg_empty(Reg))
2264       continue;
2265     if (MRI->recomputeRegClass(Reg, *TM)) {
2266       DEBUG(dbgs() << PrintReg(Reg) << " inflated to "
2267                    << MRI->getRegClass(Reg)->getName() << '\n');
2268       ++NumInflated;
2269     }
2270   }
2271
2272   DEBUG(dump());
2273   if (VerifyCoalescing)
2274     MF->verify(this, "After register coalescing");
2275   return true;
2276 }
2277
2278 /// Implement the dump method.
2279 void RegisterCoalescer::print(raw_ostream &O, const Module* m) const {
2280    LIS->print(O, m);
2281 }