Move the complex address expression out of DIVariable and into an extra
[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     /// WorkList - Copy instructions yet to be coalesced.
98     SmallVector<MachineInstr*, 8> WorkList;
99     SmallVector<MachineInstr*, 8> LocalWorkList;
100
101     /// ErasedInstrs - 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     /// coalesceLocals - coalesce the LocalWorkList.
118     void coalesceLocals();
119
120     /// joinAllIntervals - join compatible live intervals
121     void joinAllIntervals();
122
123     /// copyCoalesceInMBB - Coalesce copies in the specified MBB, putting
124     /// copies that cannot yet be coalesced into WorkList.
125     void copyCoalesceInMBB(MachineBasicBlock *MBB);
126
127     /// copyCoalesceWorkList - Try to coalesce all copies in CurrList. Return
128     /// true if any progress was made.
129     bool copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList);
130
131     /// joinCopy - 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     /// joinIntervals - 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     /// adjustCopiesBackFrom - 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     /// hasOtherReachingDefs - 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     /// removeCopyByCommutingDef - 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     /// reMaterializeTrivialDef - 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     /// canJoinPhys - Return true if a physreg copy should be joined.
173     bool canJoinPhys(const CoalescerPair &CP);
174
175     /// updateRegDefsUses - 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     /// eliminateUndefCopy - 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     /// runOnMachineFunction - pass entry point
196     bool runOnMachineFunction(MachineFunction&) override;
197
198     /// print - 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 /// adjustCopiesBackFrom - 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 /// hasOtherReachingDefs - 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 /// removeCopyByCommutingDef - 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 /// reMaterializeTrivialDef - 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 /// eliminateUndefCopy - 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 /// updateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
948 /// update the subregister number if it is not zero. If DstReg is a
949 /// physical register and the existing subregister number of the def / use
950 /// being updated is not zero, make sure to set it to the correct physical
951 /// subregister.
952 void RegisterCoalescer::updateRegDefsUses(unsigned SrcReg,
953                                           unsigned DstReg,
954                                           unsigned SubIdx) {
955   bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
956   LiveInterval *DstInt = DstIsPhys ? nullptr : &LIS->getInterval(DstReg);
957
958   SmallPtrSet<MachineInstr*, 8> Visited;
959   for (MachineRegisterInfo::reg_instr_iterator
960        I = MRI->reg_instr_begin(SrcReg), E = MRI->reg_instr_end();
961        I != E; ) {
962     MachineInstr *UseMI = &*(I++);
963
964     // Each instruction can only be rewritten once because sub-register
965     // composition is not always idempotent. When SrcReg != DstReg, rewriting
966     // the UseMI operands removes them from the SrcReg use-def chain, but when
967     // SrcReg is DstReg we could encounter UseMI twice if it has multiple
968     // operands mentioning the virtual register.
969     if (SrcReg == DstReg && !Visited.insert(UseMI))
970       continue;
971
972     SmallVector<unsigned,8> Ops;
973     bool Reads, Writes;
974     std::tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops);
975
976     // If SrcReg wasn't read, it may still be the case that DstReg is live-in
977     // because SrcReg is a sub-register.
978     if (DstInt && !Reads && SubIdx)
979       Reads = DstInt->liveAt(LIS->getInstructionIndex(UseMI));
980
981     // Replace SrcReg with DstReg in all UseMI operands.
982     for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
983       MachineOperand &MO = UseMI->getOperand(Ops[i]);
984
985       // Adjust <undef> flags in case of sub-register joins. We don't want to
986       // turn a full def into a read-modify-write sub-register def and vice
987       // versa.
988       if (SubIdx && MO.isDef())
989         MO.setIsUndef(!Reads);
990
991       if (DstIsPhys)
992         MO.substPhysReg(DstReg, *TRI);
993       else
994         MO.substVirtReg(DstReg, SubIdx, *TRI);
995     }
996
997     DEBUG({
998         dbgs() << "\t\tupdated: ";
999         if (!UseMI->isDebugValue())
1000           dbgs() << LIS->getInstructionIndex(UseMI) << "\t";
1001         dbgs() << *UseMI;
1002       });
1003   }
1004 }
1005
1006 /// canJoinPhys - Return true if a copy involving a physreg should be joined.
1007 bool RegisterCoalescer::canJoinPhys(const CoalescerPair &CP) {
1008   /// Always join simple intervals that are defined by a single copy from a
1009   /// reserved register. This doesn't increase register pressure, so it is
1010   /// always beneficial.
1011   if (!MRI->isReserved(CP.getDstReg())) {
1012     DEBUG(dbgs() << "\tCan only merge into reserved registers.\n");
1013     return false;
1014   }
1015
1016   LiveInterval &JoinVInt = LIS->getInterval(CP.getSrcReg());
1017   if (CP.isFlipped() && JoinVInt.containsOneValue())
1018     return true;
1019
1020   DEBUG(dbgs() << "\tCannot join defs into reserved register.\n");
1021   return false;
1022 }
1023
1024 /// joinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
1025 /// which are the src/dst of the copy instruction CopyMI.  This returns true
1026 /// if the copy was successfully coalesced away. If it is not currently
1027 /// possible to coalesce this interval, but it may be possible if other
1028 /// things get coalesced, then it returns true by reference in 'Again'.
1029 bool RegisterCoalescer::joinCopy(MachineInstr *CopyMI, bool &Again) {
1030
1031   Again = false;
1032   DEBUG(dbgs() << LIS->getInstructionIndex(CopyMI) << '\t' << *CopyMI);
1033
1034   CoalescerPair CP(*TRI);
1035   if (!CP.setRegisters(CopyMI)) {
1036     DEBUG(dbgs() << "\tNot coalescable.\n");
1037     return false;
1038   }
1039
1040   if (CP.getNewRC()) {
1041     auto SrcRC = MRI->getRegClass(CP.getSrcReg());
1042     auto DstRC = MRI->getRegClass(CP.getDstReg());
1043     unsigned SrcIdx = CP.getSrcIdx();
1044     unsigned DstIdx = CP.getDstIdx();
1045     if (CP.isFlipped()) {
1046       std::swap(SrcIdx, DstIdx);
1047       std::swap(SrcRC, DstRC);
1048     }
1049     if (!TRI->shouldCoalesce(CopyMI, SrcRC, SrcIdx, DstRC, DstIdx,
1050                             CP.getNewRC())) {
1051       DEBUG(dbgs() << "\tSubtarget bailed on coalescing.\n");
1052       return false;
1053     }
1054   }
1055
1056   // Dead code elimination. This really should be handled by MachineDCE, but
1057   // sometimes dead copies slip through, and we can't generate invalid live
1058   // ranges.
1059   if (!CP.isPhys() && CopyMI->allDefsAreDead()) {
1060     DEBUG(dbgs() << "\tCopy is dead.\n");
1061     DeadDefs.push_back(CopyMI);
1062     eliminateDeadDefs();
1063     return true;
1064   }
1065
1066   // Eliminate undefs.
1067   if (!CP.isPhys() && eliminateUndefCopy(CopyMI, CP)) {
1068     DEBUG(dbgs() << "\tEliminated copy of <undef> value.\n");
1069     LIS->RemoveMachineInstrFromMaps(CopyMI);
1070     CopyMI->eraseFromParent();
1071     return false;  // Not coalescable.
1072   }
1073
1074   // Coalesced copies are normally removed immediately, but transformations
1075   // like removeCopyByCommutingDef() can inadvertently create identity copies.
1076   // When that happens, just join the values and remove the copy.
1077   if (CP.getSrcReg() == CP.getDstReg()) {
1078     LiveInterval &LI = LIS->getInterval(CP.getSrcReg());
1079     DEBUG(dbgs() << "\tCopy already coalesced: " << LI << '\n');
1080     LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(CopyMI));
1081     if (VNInfo *DefVNI = LRQ.valueDefined()) {
1082       VNInfo *ReadVNI = LRQ.valueIn();
1083       assert(ReadVNI && "No value before copy and no <undef> flag.");
1084       assert(ReadVNI != DefVNI && "Cannot read and define the same value.");
1085       LI.MergeValueNumberInto(DefVNI, ReadVNI);
1086       DEBUG(dbgs() << "\tMerged values:          " << LI << '\n');
1087     }
1088     LIS->RemoveMachineInstrFromMaps(CopyMI);
1089     CopyMI->eraseFromParent();
1090     return true;
1091   }
1092
1093   // Enforce policies.
1094   if (CP.isPhys()) {
1095     DEBUG(dbgs() << "\tConsidering merging " << PrintReg(CP.getSrcReg(), TRI)
1096                  << " with " << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx())
1097                  << '\n');
1098     if (!canJoinPhys(CP)) {
1099       // Before giving up coalescing, if definition of source is defined by
1100       // trivial computation, try rematerializing it.
1101       bool IsDefCopy;
1102       if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy))
1103         return true;
1104       if (IsDefCopy)
1105         Again = true;  // May be possible to coalesce later.
1106       return false;
1107     }
1108   } else {
1109     DEBUG({
1110       dbgs() << "\tConsidering merging to " << CP.getNewRC()->getName()
1111              << " with ";
1112       if (CP.getDstIdx() && CP.getSrcIdx())
1113         dbgs() << PrintReg(CP.getDstReg()) << " in "
1114                << TRI->getSubRegIndexName(CP.getDstIdx()) << " and "
1115                << PrintReg(CP.getSrcReg()) << " in "
1116                << TRI->getSubRegIndexName(CP.getSrcIdx()) << '\n';
1117       else
1118         dbgs() << PrintReg(CP.getSrcReg(), TRI) << " in "
1119                << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx()) << '\n';
1120     });
1121
1122     // When possible, let DstReg be the larger interval.
1123     if (!CP.isPartial() && LIS->getInterval(CP.getSrcReg()).size() >
1124                            LIS->getInterval(CP.getDstReg()).size())
1125       CP.flip();
1126   }
1127
1128   // Okay, attempt to join these two intervals.  On failure, this returns false.
1129   // Otherwise, if one of the intervals being joined is a physreg, this method
1130   // always canonicalizes DstInt to be it.  The output "SrcInt" will not have
1131   // been modified, so we can use this information below to update aliases.
1132   if (!joinIntervals(CP)) {
1133     // Coalescing failed.
1134
1135     // If definition of source is defined by trivial computation, try
1136     // rematerializing it.
1137     bool IsDefCopy;
1138     if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy))
1139       return true;
1140
1141     // If we can eliminate the copy without merging the live segments, do so
1142     // now.
1143     if (!CP.isPartial() && !CP.isPhys()) {
1144       if (adjustCopiesBackFrom(CP, CopyMI) ||
1145           removeCopyByCommutingDef(CP, CopyMI)) {
1146         LIS->RemoveMachineInstrFromMaps(CopyMI);
1147         CopyMI->eraseFromParent();
1148         DEBUG(dbgs() << "\tTrivial!\n");
1149         return true;
1150       }
1151     }
1152
1153     // Otherwise, we are unable to join the intervals.
1154     DEBUG(dbgs() << "\tInterference!\n");
1155     Again = true;  // May be possible to coalesce later.
1156     return false;
1157   }
1158
1159   // Coalescing to a virtual register that is of a sub-register class of the
1160   // other. Make sure the resulting register is set to the right register class.
1161   if (CP.isCrossClass()) {
1162     ++numCrossRCs;
1163     MRI->setRegClass(CP.getDstReg(), CP.getNewRC());
1164   }
1165
1166   // Removing sub-register copies can ease the register class constraints.
1167   // Make sure we attempt to inflate the register class of DstReg.
1168   if (!CP.isPhys() && RegClassInfo.isProperSubClass(CP.getNewRC()))
1169     InflateRegs.push_back(CP.getDstReg());
1170
1171   // CopyMI has been erased by joinIntervals at this point. Remove it from
1172   // ErasedInstrs since copyCoalesceWorkList() won't add a successful join back
1173   // to the work list. This keeps ErasedInstrs from growing needlessly.
1174   ErasedInstrs.erase(CopyMI);
1175
1176   // Rewrite all SrcReg operands to DstReg.
1177   // Also update DstReg operands to include DstIdx if it is set.
1178   if (CP.getDstIdx())
1179     updateRegDefsUses(CP.getDstReg(), CP.getDstReg(), CP.getDstIdx());
1180   updateRegDefsUses(CP.getSrcReg(), CP.getDstReg(), CP.getSrcIdx());
1181
1182   // SrcReg is guaranteed to be the register whose live interval that is
1183   // being merged.
1184   LIS->removeInterval(CP.getSrcReg());
1185
1186   // Update regalloc hint.
1187   TRI->UpdateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF);
1188
1189   DEBUG({
1190     dbgs() << "\tJoined. Result = ";
1191     if (CP.isPhys())
1192       dbgs() << PrintReg(CP.getDstReg(), TRI);
1193     else
1194       dbgs() << LIS->getInterval(CP.getDstReg());
1195     dbgs() << '\n';
1196   });
1197
1198   ++numJoins;
1199   return true;
1200 }
1201
1202 /// Attempt joining with a reserved physreg.
1203 bool RegisterCoalescer::joinReservedPhysReg(CoalescerPair &CP) {
1204   assert(CP.isPhys() && "Must be a physreg copy");
1205   assert(MRI->isReserved(CP.getDstReg()) && "Not a reserved register");
1206   LiveInterval &RHS = LIS->getInterval(CP.getSrcReg());
1207   DEBUG(dbgs() << "\t\tRHS = " << RHS << '\n');
1208
1209   assert(CP.isFlipped() && RHS.containsOneValue() &&
1210          "Invalid join with reserved register");
1211
1212   // Optimization for reserved registers like ESP. We can only merge with a
1213   // reserved physreg if RHS has a single value that is a copy of CP.DstReg().
1214   // The live range of the reserved register will look like a set of dead defs
1215   // - we don't properly track the live range of reserved registers.
1216
1217   // Deny any overlapping intervals.  This depends on all the reserved
1218   // register live ranges to look like dead defs.
1219   for (MCRegUnitIterator UI(CP.getDstReg(), TRI); UI.isValid(); ++UI)
1220     if (RHS.overlaps(LIS->getRegUnit(*UI))) {
1221       DEBUG(dbgs() << "\t\tInterference: " << PrintRegUnit(*UI, TRI) << '\n');
1222       return false;
1223     }
1224
1225   // Skip any value computations, we are not adding new values to the
1226   // reserved register.  Also skip merging the live ranges, the reserved
1227   // register live range doesn't need to be accurate as long as all the
1228   // defs are there.
1229
1230   // Delete the identity copy.
1231   MachineInstr *CopyMI = MRI->getVRegDef(RHS.reg);
1232   LIS->RemoveMachineInstrFromMaps(CopyMI);
1233   CopyMI->eraseFromParent();
1234
1235   // We don't track kills for reserved registers.
1236   MRI->clearKillFlags(CP.getSrcReg());
1237
1238   return true;
1239 }
1240
1241 //===----------------------------------------------------------------------===//
1242 //                 Interference checking and interval joining
1243 //===----------------------------------------------------------------------===//
1244 //
1245 // In the easiest case, the two live ranges being joined are disjoint, and
1246 // there is no interference to consider. It is quite common, though, to have
1247 // overlapping live ranges, and we need to check if the interference can be
1248 // resolved.
1249 //
1250 // The live range of a single SSA value forms a sub-tree of the dominator tree.
1251 // This means that two SSA values overlap if and only if the def of one value
1252 // is contained in the live range of the other value. As a special case, the
1253 // overlapping values can be defined at the same index.
1254 //
1255 // The interference from an overlapping def can be resolved in these cases:
1256 //
1257 // 1. Coalescable copies. The value is defined by a copy that would become an
1258 //    identity copy after joining SrcReg and DstReg. The copy instruction will
1259 //    be removed, and the value will be merged with the source value.
1260 //
1261 //    There can be several copies back and forth, causing many values to be
1262 //    merged into one. We compute a list of ultimate values in the joined live
1263 //    range as well as a mappings from the old value numbers.
1264 //
1265 // 2. IMPLICIT_DEF. This instruction is only inserted to ensure all PHI
1266 //    predecessors have a live out value. It doesn't cause real interference,
1267 //    and can be merged into the value it overlaps. Like a coalescable copy, it
1268 //    can be erased after joining.
1269 //
1270 // 3. Copy of external value. The overlapping def may be a copy of a value that
1271 //    is already in the other register. This is like a coalescable copy, but
1272 //    the live range of the source register must be trimmed after erasing the
1273 //    copy instruction:
1274 //
1275 //      %src = COPY %ext
1276 //      %dst = COPY %ext  <-- Remove this COPY, trim the live range of %ext.
1277 //
1278 // 4. Clobbering undefined lanes. Vector registers are sometimes built by
1279 //    defining one lane at a time:
1280 //
1281 //      %dst:ssub0<def,read-undef> = FOO
1282 //      %src = BAR
1283 //      %dst:ssub1<def> = COPY %src
1284 //
1285 //    The live range of %src overlaps the %dst value defined by FOO, but
1286 //    merging %src into %dst:ssub1 is only going to clobber the ssub1 lane
1287 //    which was undef anyway.
1288 //
1289 //    The value mapping is more complicated in this case. The final live range
1290 //    will have different value numbers for both FOO and BAR, but there is no
1291 //    simple mapping from old to new values. It may even be necessary to add
1292 //    new PHI values.
1293 //
1294 // 5. Clobbering dead lanes. A def may clobber a lane of a vector register that
1295 //    is live, but never read. This can happen because we don't compute
1296 //    individual live ranges per lane.
1297 //
1298 //      %dst<def> = FOO
1299 //      %src = BAR
1300 //      %dst:ssub1<def> = COPY %src
1301 //
1302 //    This kind of interference is only resolved locally. If the clobbered
1303 //    lane value escapes the block, the join is aborted.
1304
1305 namespace {
1306 /// Track information about values in a single virtual register about to be
1307 /// joined. Objects of this class are always created in pairs - one for each
1308 /// side of the CoalescerPair.
1309 class JoinVals {
1310   LiveInterval &LI;
1311
1312   // Location of this register in the final joined register.
1313   // Either CP.DstIdx or CP.SrcIdx.
1314   unsigned SubIdx;
1315
1316   // Values that will be present in the final live range.
1317   SmallVectorImpl<VNInfo*> &NewVNInfo;
1318
1319   const CoalescerPair &CP;
1320   LiveIntervals *LIS;
1321   SlotIndexes *Indexes;
1322   const TargetRegisterInfo *TRI;
1323
1324   // Value number assignments. Maps value numbers in LI to entries in NewVNInfo.
1325   // This is suitable for passing to LiveInterval::join().
1326   SmallVector<int, 8> Assignments;
1327
1328   // Conflict resolution for overlapping values.
1329   enum ConflictResolution {
1330     // No overlap, simply keep this value.
1331     CR_Keep,
1332
1333     // Merge this value into OtherVNI and erase the defining instruction.
1334     // Used for IMPLICIT_DEF, coalescable copies, and copies from external
1335     // values.
1336     CR_Erase,
1337
1338     // Merge this value into OtherVNI but keep the defining instruction.
1339     // This is for the special case where OtherVNI is defined by the same
1340     // instruction.
1341     CR_Merge,
1342
1343     // Keep this value, and have it replace OtherVNI where possible. This
1344     // complicates value mapping since OtherVNI maps to two different values
1345     // before and after this def.
1346     // Used when clobbering undefined or dead lanes.
1347     CR_Replace,
1348
1349     // Unresolved conflict. Visit later when all values have been mapped.
1350     CR_Unresolved,
1351
1352     // Unresolvable conflict. Abort the join.
1353     CR_Impossible
1354   };
1355
1356   // Per-value info for LI. The lane bit masks are all relative to the final
1357   // joined register, so they can be compared directly between SrcReg and
1358   // DstReg.
1359   struct Val {
1360     ConflictResolution Resolution;
1361
1362     // Lanes written by this def, 0 for unanalyzed values.
1363     unsigned WriteLanes;
1364
1365     // Lanes with defined values in this register. Other lanes are undef and
1366     // safe to clobber.
1367     unsigned ValidLanes;
1368
1369     // Value in LI being redefined by this def.
1370     VNInfo *RedefVNI;
1371
1372     // Value in the other live range that overlaps this def, if any.
1373     VNInfo *OtherVNI;
1374
1375     // Is this value an IMPLICIT_DEF that can be erased?
1376     //
1377     // IMPLICIT_DEF values should only exist at the end of a basic block that
1378     // is a predecessor to a phi-value. These IMPLICIT_DEF instructions can be
1379     // safely erased if they are overlapping a live value in the other live
1380     // interval.
1381     //
1382     // Weird control flow graphs and incomplete PHI handling in
1383     // ProcessImplicitDefs can very rarely create IMPLICIT_DEF values with
1384     // longer live ranges. Such IMPLICIT_DEF values should be treated like
1385     // normal values.
1386     bool ErasableImplicitDef;
1387
1388     // True when the live range of this value will be pruned because of an
1389     // overlapping CR_Replace value in the other live range.
1390     bool Pruned;
1391
1392     // True once Pruned above has been computed.
1393     bool PrunedComputed;
1394
1395     Val() : Resolution(CR_Keep), WriteLanes(0), ValidLanes(0),
1396             RedefVNI(nullptr), OtherVNI(nullptr), ErasableImplicitDef(false),
1397             Pruned(false), PrunedComputed(false) {}
1398
1399     bool isAnalyzed() const { return WriteLanes != 0; }
1400   };
1401
1402   // One entry per value number in LI.
1403   SmallVector<Val, 8> Vals;
1404
1405   unsigned computeWriteLanes(const MachineInstr *DefMI, bool &Redef);
1406   VNInfo *stripCopies(VNInfo *VNI);
1407   ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other);
1408   void computeAssignment(unsigned ValNo, JoinVals &Other);
1409   bool taintExtent(unsigned, unsigned, JoinVals&,
1410                    SmallVectorImpl<std::pair<SlotIndex, unsigned> >&);
1411   bool usesLanes(MachineInstr *MI, unsigned, unsigned, unsigned);
1412   bool isPrunedValue(unsigned ValNo, JoinVals &Other);
1413
1414 public:
1415   JoinVals(LiveInterval &li, unsigned subIdx,
1416            SmallVectorImpl<VNInfo*> &newVNInfo,
1417            const CoalescerPair &cp,
1418            LiveIntervals *lis,
1419            const TargetRegisterInfo *tri)
1420     : LI(li), SubIdx(subIdx), NewVNInfo(newVNInfo), CP(cp), LIS(lis),
1421       Indexes(LIS->getSlotIndexes()), TRI(tri),
1422       Assignments(LI.getNumValNums(), -1), Vals(LI.getNumValNums())
1423   {}
1424
1425   /// Analyze defs in LI and compute a value mapping in NewVNInfo.
1426   /// Returns false if any conflicts were impossible to resolve.
1427   bool mapValues(JoinVals &Other);
1428
1429   /// Try to resolve conflicts that require all values to be mapped.
1430   /// Returns false if any conflicts were impossible to resolve.
1431   bool resolveConflicts(JoinVals &Other);
1432
1433   /// Prune the live range of values in Other.LI where they would conflict with
1434   /// CR_Replace values in LI. Collect end points for restoring the live range
1435   /// after joining.
1436   void pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints);
1437
1438   /// Erase any machine instructions that have been coalesced away.
1439   /// Add erased instructions to ErasedInstrs.
1440   /// Add foreign virtual registers to ShrinkRegs if their live range ended at
1441   /// the erased instrs.
1442   void eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs,
1443                    SmallVectorImpl<unsigned> &ShrinkRegs);
1444
1445   /// Get the value assignments suitable for passing to LiveInterval::join.
1446   const int *getAssignments() const { return Assignments.data(); }
1447 };
1448 } // end anonymous namespace
1449
1450 /// Compute the bitmask of lanes actually written by DefMI.
1451 /// Set Redef if there are any partial register definitions that depend on the
1452 /// previous value of the register.
1453 unsigned JoinVals::computeWriteLanes(const MachineInstr *DefMI, bool &Redef) {
1454   unsigned L = 0;
1455   for (ConstMIOperands MO(DefMI); MO.isValid(); ++MO) {
1456     if (!MO->isReg() || MO->getReg() != LI.reg || !MO->isDef())
1457       continue;
1458     L |= TRI->getSubRegIndexLaneMask(
1459            TRI->composeSubRegIndices(SubIdx, MO->getSubReg()));
1460     if (MO->readsReg())
1461       Redef = true;
1462   }
1463   return L;
1464 }
1465
1466 /// Find the ultimate value that VNI was copied from.
1467 VNInfo *JoinVals::stripCopies(VNInfo *VNI) {
1468   while (!VNI->isPHIDef()) {
1469     MachineInstr *MI = Indexes->getInstructionFromIndex(VNI->def);
1470     assert(MI && "No defining instruction");
1471     if (!MI->isFullCopy())
1472       break;
1473     unsigned Reg = MI->getOperand(1).getReg();
1474     if (!TargetRegisterInfo::isVirtualRegister(Reg))
1475       break;
1476     LiveQueryResult LRQ = LIS->getInterval(Reg).Query(VNI->def);
1477     if (!LRQ.valueIn())
1478       break;
1479     VNI = LRQ.valueIn();
1480   }
1481   return VNI;
1482 }
1483
1484 /// Analyze ValNo in this live range, and set all fields of Vals[ValNo].
1485 /// Return a conflict resolution when possible, but leave the hard cases as
1486 /// CR_Unresolved.
1487 /// Recursively calls computeAssignment() on this and Other, guaranteeing that
1488 /// both OtherVNI and RedefVNI have been analyzed and mapped before returning.
1489 /// The recursion always goes upwards in the dominator tree, making loops
1490 /// impossible.
1491 JoinVals::ConflictResolution
1492 JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) {
1493   Val &V = Vals[ValNo];
1494   assert(!V.isAnalyzed() && "Value has already been analyzed!");
1495   VNInfo *VNI = LI.getValNumInfo(ValNo);
1496   if (VNI->isUnused()) {
1497     V.WriteLanes = ~0u;
1498     return CR_Keep;
1499   }
1500
1501   // Get the instruction defining this value, compute the lanes written.
1502   const MachineInstr *DefMI = nullptr;
1503   if (VNI->isPHIDef()) {
1504     // Conservatively assume that all lanes in a PHI are valid.
1505     V.ValidLanes = V.WriteLanes = TRI->getSubRegIndexLaneMask(SubIdx);
1506   } else {
1507     DefMI = Indexes->getInstructionFromIndex(VNI->def);
1508     bool Redef = false;
1509     V.ValidLanes = V.WriteLanes = computeWriteLanes(DefMI, Redef);
1510
1511     // If this is a read-modify-write instruction, there may be more valid
1512     // lanes than the ones written by this instruction.
1513     // This only covers partial redef operands. DefMI may have normal use
1514     // operands reading the register. They don't contribute valid lanes.
1515     //
1516     // This adds ssub1 to the set of valid lanes in %src:
1517     //
1518     //   %src:ssub1<def> = FOO
1519     //
1520     // This leaves only ssub1 valid, making any other lanes undef:
1521     //
1522     //   %src:ssub1<def,read-undef> = FOO %src:ssub2
1523     //
1524     // The <read-undef> flag on the def operand means that old lane values are
1525     // not important.
1526     if (Redef) {
1527       V.RedefVNI = LI.Query(VNI->def).valueIn();
1528       assert(V.RedefVNI && "Instruction is reading nonexistent value");
1529       computeAssignment(V.RedefVNI->id, Other);
1530       V.ValidLanes |= Vals[V.RedefVNI->id].ValidLanes;
1531     }
1532
1533     // An IMPLICIT_DEF writes undef values.
1534     if (DefMI->isImplicitDef()) {
1535       // We normally expect IMPLICIT_DEF values to be live only until the end
1536       // of their block. If the value is really live longer and gets pruned in
1537       // another block, this flag is cleared again.
1538       V.ErasableImplicitDef = true;
1539       V.ValidLanes &= ~V.WriteLanes;
1540     }
1541   }
1542
1543   // Find the value in Other that overlaps VNI->def, if any.
1544   LiveQueryResult OtherLRQ = Other.LI.Query(VNI->def);
1545
1546   // It is possible that both values are defined by the same instruction, or
1547   // the values are PHIs defined in the same block. When that happens, the two
1548   // values should be merged into one, but not into any preceding value.
1549   // The first value defined or visited gets CR_Keep, the other gets CR_Merge.
1550   if (VNInfo *OtherVNI = OtherLRQ.valueDefined()) {
1551     assert(SlotIndex::isSameInstr(VNI->def, OtherVNI->def) && "Broken LRQ");
1552
1553     // One value stays, the other is merged. Keep the earlier one, or the first
1554     // one we see.
1555     if (OtherVNI->def < VNI->def)
1556       Other.computeAssignment(OtherVNI->id, *this);
1557     else if (VNI->def < OtherVNI->def && OtherLRQ.valueIn()) {
1558       // This is an early-clobber def overlapping a live-in value in the other
1559       // register. Not mergeable.
1560       V.OtherVNI = OtherLRQ.valueIn();
1561       return CR_Impossible;
1562     }
1563     V.OtherVNI = OtherVNI;
1564     Val &OtherV = Other.Vals[OtherVNI->id];
1565     // Keep this value, check for conflicts when analyzing OtherVNI.
1566     if (!OtherV.isAnalyzed())
1567       return CR_Keep;
1568     // Both sides have been analyzed now.
1569     // Allow overlapping PHI values. Any real interference would show up in a
1570     // predecessor, the PHI itself can't introduce any conflicts.
1571     if (VNI->isPHIDef())
1572       return CR_Merge;
1573     if (V.ValidLanes & OtherV.ValidLanes)
1574       // Overlapping lanes can't be resolved.
1575       return CR_Impossible;
1576     else
1577       return CR_Merge;
1578   }
1579
1580   // No simultaneous def. Is Other live at the def?
1581   V.OtherVNI = OtherLRQ.valueIn();
1582   if (!V.OtherVNI)
1583     // No overlap, no conflict.
1584     return CR_Keep;
1585
1586   assert(!SlotIndex::isSameInstr(VNI->def, V.OtherVNI->def) && "Broken LRQ");
1587
1588   // We have overlapping values, or possibly a kill of Other.
1589   // Recursively compute assignments up the dominator tree.
1590   Other.computeAssignment(V.OtherVNI->id, *this);
1591   Val &OtherV = Other.Vals[V.OtherVNI->id];
1592
1593   // Check if OtherV is an IMPLICIT_DEF that extends beyond its basic block.
1594   // This shouldn't normally happen, but ProcessImplicitDefs can leave such
1595   // IMPLICIT_DEF instructions behind, and there is nothing wrong with it
1596   // technically.
1597   //
1598   // WHen it happens, treat that IMPLICIT_DEF as a normal value, and don't try
1599   // to erase the IMPLICIT_DEF instruction.
1600   if (OtherV.ErasableImplicitDef && DefMI &&
1601       DefMI->getParent() != Indexes->getMBBFromIndex(V.OtherVNI->def)) {
1602     DEBUG(dbgs() << "IMPLICIT_DEF defined at " << V.OtherVNI->def
1603                  << " extends into BB#" << DefMI->getParent()->getNumber()
1604                  << ", keeping it.\n");
1605     OtherV.ErasableImplicitDef = false;
1606   }
1607
1608   // Allow overlapping PHI values. Any real interference would show up in a
1609   // predecessor, the PHI itself can't introduce any conflicts.
1610   if (VNI->isPHIDef())
1611     return CR_Replace;
1612
1613   // Check for simple erasable conflicts.
1614   if (DefMI->isImplicitDef())
1615     return CR_Erase;
1616
1617   // Include the non-conflict where DefMI is a coalescable copy that kills
1618   // OtherVNI. We still want the copy erased and value numbers merged.
1619   if (CP.isCoalescable(DefMI)) {
1620     // Some of the lanes copied from OtherVNI may be undef, making them undef
1621     // here too.
1622     V.ValidLanes &= ~V.WriteLanes | OtherV.ValidLanes;
1623     return CR_Erase;
1624   }
1625
1626   // This may not be a real conflict if DefMI simply kills Other and defines
1627   // VNI.
1628   if (OtherLRQ.isKill() && OtherLRQ.endPoint() <= VNI->def)
1629     return CR_Keep;
1630
1631   // Handle the case where VNI and OtherVNI can be proven to be identical:
1632   //
1633   //   %other = COPY %ext
1634   //   %this  = COPY %ext <-- Erase this copy
1635   //
1636   if (DefMI->isFullCopy() && !CP.isPartial() &&
1637       stripCopies(VNI) == stripCopies(V.OtherVNI))
1638     return CR_Erase;
1639
1640   // If the lanes written by this instruction were all undef in OtherVNI, it is
1641   // still safe to join the live ranges. This can't be done with a simple value
1642   // mapping, though - OtherVNI will map to multiple values:
1643   //
1644   //   1 %dst:ssub0 = FOO                <-- OtherVNI
1645   //   2 %src = BAR                      <-- VNI
1646   //   3 %dst:ssub1 = COPY %src<kill>    <-- Eliminate this copy.
1647   //   4 BAZ %dst<kill>
1648   //   5 QUUX %src<kill>
1649   //
1650   // Here OtherVNI will map to itself in [1;2), but to VNI in [2;5). CR_Replace
1651   // handles this complex value mapping.
1652   if ((V.WriteLanes & OtherV.ValidLanes) == 0)
1653     return CR_Replace;
1654
1655   // If the other live range is killed by DefMI and the live ranges are still
1656   // overlapping, it must be because we're looking at an early clobber def:
1657   //
1658   //   %dst<def,early-clobber> = ASM %src<kill>
1659   //
1660   // In this case, it is illegal to merge the two live ranges since the early
1661   // clobber def would clobber %src before it was read.
1662   if (OtherLRQ.isKill()) {
1663     // This case where the def doesn't overlap the kill is handled above.
1664     assert(VNI->def.isEarlyClobber() &&
1665            "Only early clobber defs can overlap a kill");
1666     return CR_Impossible;
1667   }
1668
1669   // VNI is clobbering live lanes in OtherVNI, but there is still the
1670   // possibility that no instructions actually read the clobbered lanes.
1671   // If we're clobbering all the lanes in OtherVNI, at least one must be read.
1672   // Otherwise Other.LI wouldn't be live here.
1673   if ((TRI->getSubRegIndexLaneMask(Other.SubIdx) & ~V.WriteLanes) == 0)
1674     return CR_Impossible;
1675
1676   // We need to verify that no instructions are reading the clobbered lanes. To
1677   // save compile time, we'll only check that locally. Don't allow the tainted
1678   // value to escape the basic block.
1679   MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1680   if (OtherLRQ.endPoint() >= Indexes->getMBBEndIdx(MBB))
1681     return CR_Impossible;
1682
1683   // There are still some things that could go wrong besides clobbered lanes
1684   // being read, for example OtherVNI may be only partially redefined in MBB,
1685   // and some clobbered lanes could escape the block. Save this analysis for
1686   // resolveConflicts() when all values have been mapped. We need to know
1687   // RedefVNI and WriteLanes for any later defs in MBB, and we can't compute
1688   // that now - the recursive analyzeValue() calls must go upwards in the
1689   // dominator tree.
1690   return CR_Unresolved;
1691 }
1692
1693 /// Compute the value assignment for ValNo in LI.
1694 /// This may be called recursively by analyzeValue(), but never for a ValNo on
1695 /// the stack.
1696 void JoinVals::computeAssignment(unsigned ValNo, JoinVals &Other) {
1697   Val &V = Vals[ValNo];
1698   if (V.isAnalyzed()) {
1699     // Recursion should always move up the dominator tree, so ValNo is not
1700     // supposed to reappear before it has been assigned.
1701     assert(Assignments[ValNo] != -1 && "Bad recursion?");
1702     return;
1703   }
1704   switch ((V.Resolution = analyzeValue(ValNo, Other))) {
1705   case CR_Erase:
1706   case CR_Merge:
1707     // Merge this ValNo into OtherVNI.
1708     assert(V.OtherVNI && "OtherVNI not assigned, can't merge.");
1709     assert(Other.Vals[V.OtherVNI->id].isAnalyzed() && "Missing recursion");
1710     Assignments[ValNo] = Other.Assignments[V.OtherVNI->id];
1711     DEBUG(dbgs() << "\t\tmerge " << PrintReg(LI.reg) << ':' << ValNo << '@'
1712                  << LI.getValNumInfo(ValNo)->def << " into "
1713                  << PrintReg(Other.LI.reg) << ':' << V.OtherVNI->id << '@'
1714                  << V.OtherVNI->def << " --> @"
1715                  << NewVNInfo[Assignments[ValNo]]->def << '\n');
1716     break;
1717   case CR_Replace:
1718   case CR_Unresolved:
1719     // The other value is going to be pruned if this join is successful.
1720     assert(V.OtherVNI && "OtherVNI not assigned, can't prune");
1721     Other.Vals[V.OtherVNI->id].Pruned = true;
1722     // Fall through.
1723   default:
1724     // This value number needs to go in the final joined live range.
1725     Assignments[ValNo] = NewVNInfo.size();
1726     NewVNInfo.push_back(LI.getValNumInfo(ValNo));
1727     break;
1728   }
1729 }
1730
1731 bool JoinVals::mapValues(JoinVals &Other) {
1732   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1733     computeAssignment(i, Other);
1734     if (Vals[i].Resolution == CR_Impossible) {
1735       DEBUG(dbgs() << "\t\tinterference at " << PrintReg(LI.reg) << ':' << i
1736                    << '@' << LI.getValNumInfo(i)->def << '\n');
1737       return false;
1738     }
1739   }
1740   return true;
1741 }
1742
1743 /// Assuming ValNo is going to clobber some valid lanes in Other.LI, compute
1744 /// the extent of the tainted lanes in the block.
1745 ///
1746 /// Multiple values in Other.LI can be affected since partial redefinitions can
1747 /// preserve previously tainted lanes.
1748 ///
1749 ///   1 %dst = VLOAD           <-- Define all lanes in %dst
1750 ///   2 %src = FOO             <-- ValNo to be joined with %dst:ssub0
1751 ///   3 %dst:ssub1 = BAR       <-- Partial redef doesn't clear taint in ssub0
1752 ///   4 %dst:ssub0 = COPY %src <-- Conflict resolved, ssub0 wasn't read
1753 ///
1754 /// For each ValNo in Other that is affected, add an (EndIndex, TaintedLanes)
1755 /// entry to TaintedVals.
1756 ///
1757 /// Returns false if the tainted lanes extend beyond the basic block.
1758 bool JoinVals::
1759 taintExtent(unsigned ValNo, unsigned TaintedLanes, JoinVals &Other,
1760             SmallVectorImpl<std::pair<SlotIndex, unsigned> > &TaintExtent) {
1761   VNInfo *VNI = LI.getValNumInfo(ValNo);
1762   MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1763   SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB);
1764
1765   // Scan Other.LI from VNI.def to MBBEnd.
1766   LiveInterval::iterator OtherI = Other.LI.find(VNI->def);
1767   assert(OtherI != Other.LI.end() && "No conflict?");
1768   do {
1769     // OtherI is pointing to a tainted value. Abort the join if the tainted
1770     // lanes escape the block.
1771     SlotIndex End = OtherI->end;
1772     if (End >= MBBEnd) {
1773       DEBUG(dbgs() << "\t\ttaints global " << PrintReg(Other.LI.reg) << ':'
1774                    << OtherI->valno->id << '@' << OtherI->start << '\n');
1775       return false;
1776     }
1777     DEBUG(dbgs() << "\t\ttaints local " << PrintReg(Other.LI.reg) << ':'
1778                  << OtherI->valno->id << '@' << OtherI->start
1779                  << " to " << End << '\n');
1780     // A dead def is not a problem.
1781     if (End.isDead())
1782       break;
1783     TaintExtent.push_back(std::make_pair(End, TaintedLanes));
1784
1785     // Check for another def in the MBB.
1786     if (++OtherI == Other.LI.end() || OtherI->start >= MBBEnd)
1787       break;
1788
1789     // Lanes written by the new def are no longer tainted.
1790     const Val &OV = Other.Vals[OtherI->valno->id];
1791     TaintedLanes &= ~OV.WriteLanes;
1792     if (!OV.RedefVNI)
1793       break;
1794   } while (TaintedLanes);
1795   return true;
1796 }
1797
1798 /// Return true if MI uses any of the given Lanes from Reg.
1799 /// This does not include partial redefinitions of Reg.
1800 bool JoinVals::usesLanes(MachineInstr *MI, unsigned Reg, unsigned SubIdx,
1801                          unsigned Lanes) {
1802   if (MI->isDebugValue())
1803     return false;
1804   for (ConstMIOperands MO(MI); MO.isValid(); ++MO) {
1805     if (!MO->isReg() || MO->isDef() || MO->getReg() != Reg)
1806       continue;
1807     if (!MO->readsReg())
1808       continue;
1809     if (Lanes & TRI->getSubRegIndexLaneMask(
1810                   TRI->composeSubRegIndices(SubIdx, MO->getSubReg())))
1811       return true;
1812   }
1813   return false;
1814 }
1815
1816 bool JoinVals::resolveConflicts(JoinVals &Other) {
1817   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1818     Val &V = Vals[i];
1819     assert (V.Resolution != CR_Impossible && "Unresolvable conflict");
1820     if (V.Resolution != CR_Unresolved)
1821       continue;
1822     DEBUG(dbgs() << "\t\tconflict at " << PrintReg(LI.reg) << ':' << i
1823                  << '@' << LI.getValNumInfo(i)->def << '\n');
1824     ++NumLaneConflicts;
1825     assert(V.OtherVNI && "Inconsistent conflict resolution.");
1826     VNInfo *VNI = LI.getValNumInfo(i);
1827     const Val &OtherV = Other.Vals[V.OtherVNI->id];
1828
1829     // VNI is known to clobber some lanes in OtherVNI. If we go ahead with the
1830     // join, those lanes will be tainted with a wrong value. Get the extent of
1831     // the tainted lanes.
1832     unsigned TaintedLanes = V.WriteLanes & OtherV.ValidLanes;
1833     SmallVector<std::pair<SlotIndex, unsigned>, 8> TaintExtent;
1834     if (!taintExtent(i, TaintedLanes, Other, TaintExtent))
1835       // Tainted lanes would extend beyond the basic block.
1836       return false;
1837
1838     assert(!TaintExtent.empty() && "There should be at least one conflict.");
1839
1840     // Now look at the instructions from VNI->def to TaintExtent (inclusive).
1841     MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1842     MachineBasicBlock::iterator MI = MBB->begin();
1843     if (!VNI->isPHIDef()) {
1844       MI = Indexes->getInstructionFromIndex(VNI->def);
1845       // No need to check the instruction defining VNI for reads.
1846       ++MI;
1847     }
1848     assert(!SlotIndex::isSameInstr(VNI->def, TaintExtent.front().first) &&
1849            "Interference ends on VNI->def. Should have been handled earlier");
1850     MachineInstr *LastMI =
1851       Indexes->getInstructionFromIndex(TaintExtent.front().first);
1852     assert(LastMI && "Range must end at a proper instruction");
1853     unsigned TaintNum = 0;
1854     for(;;) {
1855       assert(MI != MBB->end() && "Bad LastMI");
1856       if (usesLanes(MI, Other.LI.reg, Other.SubIdx, TaintedLanes)) {
1857         DEBUG(dbgs() << "\t\ttainted lanes used by: " << *MI);
1858         return false;
1859       }
1860       // LastMI is the last instruction to use the current value.
1861       if (&*MI == LastMI) {
1862         if (++TaintNum == TaintExtent.size())
1863           break;
1864         LastMI = Indexes->getInstructionFromIndex(TaintExtent[TaintNum].first);
1865         assert(LastMI && "Range must end at a proper instruction");
1866         TaintedLanes = TaintExtent[TaintNum].second;
1867       }
1868       ++MI;
1869     }
1870
1871     // The tainted lanes are unused.
1872     V.Resolution = CR_Replace;
1873     ++NumLaneResolves;
1874   }
1875   return true;
1876 }
1877
1878 // Determine if ValNo is a copy of a value number in LI or Other.LI that will
1879 // be pruned:
1880 //
1881 //   %dst = COPY %src
1882 //   %src = COPY %dst  <-- This value to be pruned.
1883 //   %dst = COPY %src  <-- This value is a copy of a pruned value.
1884 //
1885 bool JoinVals::isPrunedValue(unsigned ValNo, JoinVals &Other) {
1886   Val &V = Vals[ValNo];
1887   if (V.Pruned || V.PrunedComputed)
1888     return V.Pruned;
1889
1890   if (V.Resolution != CR_Erase && V.Resolution != CR_Merge)
1891     return V.Pruned;
1892
1893   // Follow copies up the dominator tree and check if any intermediate value
1894   // has been pruned.
1895   V.PrunedComputed = true;
1896   V.Pruned = Other.isPrunedValue(V.OtherVNI->id, *this);
1897   return V.Pruned;
1898 }
1899
1900 void JoinVals::pruneValues(JoinVals &Other,
1901                            SmallVectorImpl<SlotIndex> &EndPoints) {
1902   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1903     SlotIndex Def = LI.getValNumInfo(i)->def;
1904     switch (Vals[i].Resolution) {
1905     case CR_Keep:
1906       break;
1907     case CR_Replace: {
1908       // This value takes precedence over the value in Other.LI.
1909       LIS->pruneValue(&Other.LI, Def, &EndPoints);
1910       // Check if we're replacing an IMPLICIT_DEF value. The IMPLICIT_DEF
1911       // instructions are only inserted to provide a live-out value for PHI
1912       // predecessors, so the instruction should simply go away once its value
1913       // has been replaced.
1914       Val &OtherV = Other.Vals[Vals[i].OtherVNI->id];
1915       bool EraseImpDef = OtherV.ErasableImplicitDef &&
1916                          OtherV.Resolution == CR_Keep;
1917       if (!Def.isBlock()) {
1918         // Remove <def,read-undef> flags. This def is now a partial redef.
1919         // Also remove <def,dead> flags since the joined live range will
1920         // continue past this instruction.
1921         for (MIOperands MO(Indexes->getInstructionFromIndex(Def));
1922              MO.isValid(); ++MO)
1923           if (MO->isReg() && MO->isDef() && MO->getReg() == LI.reg) {
1924             MO->setIsUndef(EraseImpDef);
1925             MO->setIsDead(false);
1926           }
1927         // This value will reach instructions below, but we need to make sure
1928         // the live range also reaches the instruction at Def.
1929         if (!EraseImpDef)
1930           EndPoints.push_back(Def);
1931       }
1932       DEBUG(dbgs() << "\t\tpruned " << PrintReg(Other.LI.reg) << " at " << Def
1933                    << ": " << Other.LI << '\n');
1934       break;
1935     }
1936     case CR_Erase:
1937     case CR_Merge:
1938       if (isPrunedValue(i, Other)) {
1939         // This value is ultimately a copy of a pruned value in LI or Other.LI.
1940         // We can no longer trust the value mapping computed by
1941         // computeAssignment(), the value that was originally copied could have
1942         // been replaced.
1943         LIS->pruneValue(&LI, Def, &EndPoints);
1944         DEBUG(dbgs() << "\t\tpruned all of " << PrintReg(LI.reg) << " at "
1945                      << Def << ": " << LI << '\n');
1946       }
1947       break;
1948     case CR_Unresolved:
1949     case CR_Impossible:
1950       llvm_unreachable("Unresolved conflicts");
1951     }
1952   }
1953 }
1954
1955 void JoinVals::eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs,
1956                            SmallVectorImpl<unsigned> &ShrinkRegs) {
1957   for (unsigned i = 0, e = LI.getNumValNums(); i != e; ++i) {
1958     // Get the def location before markUnused() below invalidates it.
1959     SlotIndex Def = LI.getValNumInfo(i)->def;
1960     switch (Vals[i].Resolution) {
1961     case CR_Keep:
1962       // If an IMPLICIT_DEF value is pruned, it doesn't serve a purpose any
1963       // longer. The IMPLICIT_DEF instructions are only inserted by
1964       // PHIElimination to guarantee that all PHI predecessors have a value.
1965       if (!Vals[i].ErasableImplicitDef || !Vals[i].Pruned)
1966         break;
1967       // Remove value number i from LI. Note that this VNInfo is still present
1968       // in NewVNInfo, so it will appear as an unused value number in the final
1969       // joined interval.
1970       LI.getValNumInfo(i)->markUnused();
1971       LI.removeValNo(LI.getValNumInfo(i));
1972       DEBUG(dbgs() << "\t\tremoved " << i << '@' << Def << ": " << LI << '\n');
1973       // FALL THROUGH.
1974
1975     case CR_Erase: {
1976       MachineInstr *MI = Indexes->getInstructionFromIndex(Def);
1977       assert(MI && "No instruction to erase");
1978       if (MI->isCopy()) {
1979         unsigned Reg = MI->getOperand(1).getReg();
1980         if (TargetRegisterInfo::isVirtualRegister(Reg) &&
1981             Reg != CP.getSrcReg() && Reg != CP.getDstReg())
1982           ShrinkRegs.push_back(Reg);
1983       }
1984       ErasedInstrs.insert(MI);
1985       DEBUG(dbgs() << "\t\terased:\t" << Def << '\t' << *MI);
1986       LIS->RemoveMachineInstrFromMaps(MI);
1987       MI->eraseFromParent();
1988       break;
1989     }
1990     default:
1991       break;
1992     }
1993   }
1994 }
1995
1996 bool RegisterCoalescer::joinVirtRegs(CoalescerPair &CP) {
1997   SmallVector<VNInfo*, 16> NewVNInfo;
1998   LiveInterval &RHS = LIS->getInterval(CP.getSrcReg());
1999   LiveInterval &LHS = LIS->getInterval(CP.getDstReg());
2000   JoinVals RHSVals(RHS, CP.getSrcIdx(), NewVNInfo, CP, LIS, TRI);
2001   JoinVals LHSVals(LHS, CP.getDstIdx(), NewVNInfo, CP, LIS, TRI);
2002
2003   DEBUG(dbgs() << "\t\tRHS = " << RHS
2004                << "\n\t\tLHS = " << LHS
2005                << '\n');
2006
2007   // First compute NewVNInfo and the simple value mappings.
2008   // Detect impossible conflicts early.
2009   if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals))
2010     return false;
2011
2012   // Some conflicts can only be resolved after all values have been mapped.
2013   if (!LHSVals.resolveConflicts(RHSVals) || !RHSVals.resolveConflicts(LHSVals))
2014     return false;
2015
2016   // All clear, the live ranges can be merged.
2017
2018   // The merging algorithm in LiveInterval::join() can't handle conflicting
2019   // value mappings, so we need to remove any live ranges that overlap a
2020   // CR_Replace resolution. Collect a set of end points that can be used to
2021   // restore the live range after joining.
2022   SmallVector<SlotIndex, 8> EndPoints;
2023   LHSVals.pruneValues(RHSVals, EndPoints);
2024   RHSVals.pruneValues(LHSVals, EndPoints);
2025
2026   // Erase COPY and IMPLICIT_DEF instructions. This may cause some external
2027   // registers to require trimming.
2028   SmallVector<unsigned, 8> ShrinkRegs;
2029   LHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs);
2030   RHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs);
2031   while (!ShrinkRegs.empty())
2032     LIS->shrinkToUses(&LIS->getInterval(ShrinkRegs.pop_back_val()));
2033
2034   // Join RHS into LHS.
2035   LHS.join(RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo);
2036
2037   // Kill flags are going to be wrong if the live ranges were overlapping.
2038   // Eventually, we should simply clear all kill flags when computing live
2039   // ranges. They are reinserted after register allocation.
2040   MRI->clearKillFlags(LHS.reg);
2041   MRI->clearKillFlags(RHS.reg);
2042
2043   if (EndPoints.empty())
2044     return true;
2045
2046   // Recompute the parts of the live range we had to remove because of
2047   // CR_Replace conflicts.
2048   DEBUG(dbgs() << "\t\trestoring liveness to " << EndPoints.size()
2049                << " points: " << LHS << '\n');
2050   LIS->extendToIndices(LHS, EndPoints);
2051   return true;
2052 }
2053
2054 /// joinIntervals - Attempt to join these two intervals.  On failure, this
2055 /// returns false.
2056 bool RegisterCoalescer::joinIntervals(CoalescerPair &CP) {
2057   return CP.isPhys() ? joinReservedPhysReg(CP) : joinVirtRegs(CP);
2058 }
2059
2060 namespace {
2061 // Information concerning MBB coalescing priority.
2062 struct MBBPriorityInfo {
2063   MachineBasicBlock *MBB;
2064   unsigned Depth;
2065   bool IsSplit;
2066
2067   MBBPriorityInfo(MachineBasicBlock *mbb, unsigned depth, bool issplit)
2068     : MBB(mbb), Depth(depth), IsSplit(issplit) {}
2069 };
2070 }
2071
2072 // C-style comparator that sorts first based on the loop depth of the basic
2073 // block (the unsigned), and then on the MBB number.
2074 //
2075 // EnableGlobalCopies assumes that the primary sort key is loop depth.
2076 static int compareMBBPriority(const MBBPriorityInfo *LHS,
2077                               const MBBPriorityInfo *RHS) {
2078   // Deeper loops first
2079   if (LHS->Depth != RHS->Depth)
2080     return LHS->Depth > RHS->Depth ? -1 : 1;
2081
2082   // Try to unsplit critical edges next.
2083   if (LHS->IsSplit != RHS->IsSplit)
2084     return LHS->IsSplit ? -1 : 1;
2085
2086   // Prefer blocks that are more connected in the CFG. This takes care of
2087   // the most difficult copies first while intervals are short.
2088   unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size();
2089   unsigned cr = RHS->MBB->pred_size() + RHS->MBB->succ_size();
2090   if (cl != cr)
2091     return cl > cr ? -1 : 1;
2092
2093   // As a last resort, sort by block number.
2094   return LHS->MBB->getNumber() < RHS->MBB->getNumber() ? -1 : 1;
2095 }
2096
2097 /// \returns true if the given copy uses or defines a local live range.
2098 static bool isLocalCopy(MachineInstr *Copy, const LiveIntervals *LIS) {
2099   if (!Copy->isCopy())
2100     return false;
2101
2102   if (Copy->getOperand(1).isUndef())
2103     return false;
2104
2105   unsigned SrcReg = Copy->getOperand(1).getReg();
2106   unsigned DstReg = Copy->getOperand(0).getReg();
2107   if (TargetRegisterInfo::isPhysicalRegister(SrcReg)
2108       || TargetRegisterInfo::isPhysicalRegister(DstReg))
2109     return false;
2110
2111   return LIS->intervalIsInOneMBB(LIS->getInterval(SrcReg))
2112     || LIS->intervalIsInOneMBB(LIS->getInterval(DstReg));
2113 }
2114
2115 // Try joining WorkList copies starting from index From.
2116 // Null out any successful joins.
2117 bool RegisterCoalescer::
2118 copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList) {
2119   bool Progress = false;
2120   for (unsigned i = 0, e = CurrList.size(); i != e; ++i) {
2121     if (!CurrList[i])
2122       continue;
2123     // Skip instruction pointers that have already been erased, for example by
2124     // dead code elimination.
2125     if (ErasedInstrs.erase(CurrList[i])) {
2126       CurrList[i] = nullptr;
2127       continue;
2128     }
2129     bool Again = false;
2130     bool Success = joinCopy(CurrList[i], Again);
2131     Progress |= Success;
2132     if (Success || !Again)
2133       CurrList[i] = nullptr;
2134   }
2135   return Progress;
2136 }
2137
2138 void
2139 RegisterCoalescer::copyCoalesceInMBB(MachineBasicBlock *MBB) {
2140   DEBUG(dbgs() << MBB->getName() << ":\n");
2141
2142   // Collect all copy-like instructions in MBB. Don't start coalescing anything
2143   // yet, it might invalidate the iterator.
2144   const unsigned PrevSize = WorkList.size();
2145   if (JoinGlobalCopies) {
2146     // Coalesce copies bottom-up to coalesce local defs before local uses. They
2147     // are not inherently easier to resolve, but slightly preferable until we
2148     // have local live range splitting. In particular this is required by
2149     // cmp+jmp macro fusion.
2150     for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2151          MII != E; ++MII) {
2152       if (!MII->isCopyLike())
2153         continue;
2154       if (isLocalCopy(&(*MII), LIS))
2155         LocalWorkList.push_back(&(*MII));
2156       else
2157         WorkList.push_back(&(*MII));
2158     }
2159   }
2160   else {
2161      for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2162           MII != E; ++MII)
2163        if (MII->isCopyLike())
2164          WorkList.push_back(MII);
2165   }
2166   // Try coalescing the collected copies immediately, and remove the nulls.
2167   // This prevents the WorkList from getting too large since most copies are
2168   // joinable on the first attempt.
2169   MutableArrayRef<MachineInstr*>
2170     CurrList(WorkList.begin() + PrevSize, WorkList.end());
2171   if (copyCoalesceWorkList(CurrList))
2172     WorkList.erase(std::remove(WorkList.begin() + PrevSize, WorkList.end(),
2173                                (MachineInstr*)nullptr), WorkList.end());
2174 }
2175
2176 void RegisterCoalescer::coalesceLocals() {
2177   copyCoalesceWorkList(LocalWorkList);
2178   for (unsigned j = 0, je = LocalWorkList.size(); j != je; ++j) {
2179     if (LocalWorkList[j])
2180       WorkList.push_back(LocalWorkList[j]);
2181   }
2182   LocalWorkList.clear();
2183 }
2184
2185 void RegisterCoalescer::joinAllIntervals() {
2186   DEBUG(dbgs() << "********** JOINING INTERVALS ***********\n");
2187   assert(WorkList.empty() && LocalWorkList.empty() && "Old data still around.");
2188
2189   std::vector<MBBPriorityInfo> MBBs;
2190   MBBs.reserve(MF->size());
2191   for (MachineFunction::iterator I = MF->begin(), E = MF->end();I != E;++I){
2192     MachineBasicBlock *MBB = I;
2193     MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
2194                                    JoinSplitEdges && isSplitEdge(MBB)));
2195   }
2196   array_pod_sort(MBBs.begin(), MBBs.end(), compareMBBPriority);
2197
2198   // Coalesce intervals in MBB priority order.
2199   unsigned CurrDepth = UINT_MAX;
2200   for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
2201     // Try coalescing the collected local copies for deeper loops.
2202     if (JoinGlobalCopies && MBBs[i].Depth < CurrDepth) {
2203       coalesceLocals();
2204       CurrDepth = MBBs[i].Depth;
2205     }
2206     copyCoalesceInMBB(MBBs[i].MBB);
2207   }
2208   coalesceLocals();
2209
2210   // Joining intervals can allow other intervals to be joined.  Iteratively join
2211   // until we make no progress.
2212   while (copyCoalesceWorkList(WorkList))
2213     /* empty */ ;
2214 }
2215
2216 void RegisterCoalescer::releaseMemory() {
2217   ErasedInstrs.clear();
2218   WorkList.clear();
2219   DeadDefs.clear();
2220   InflateRegs.clear();
2221 }
2222
2223 bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) {
2224   MF = &fn;
2225   MRI = &fn.getRegInfo();
2226   TM = &fn.getTarget();
2227   TRI = TM->getSubtargetImpl()->getRegisterInfo();
2228   TII = TM->getSubtargetImpl()->getInstrInfo();
2229   LIS = &getAnalysis<LiveIntervals>();
2230   AA = &getAnalysis<AliasAnalysis>();
2231   Loops = &getAnalysis<MachineLoopInfo>();
2232
2233   const TargetSubtargetInfo &ST = TM->getSubtarget<TargetSubtargetInfo>();
2234   if (EnableGlobalCopies == cl::BOU_UNSET)
2235     JoinGlobalCopies = ST.useMachineScheduler();
2236   else
2237     JoinGlobalCopies = (EnableGlobalCopies == cl::BOU_TRUE);
2238
2239   // The MachineScheduler does not currently require JoinSplitEdges. This will
2240   // either be enabled unconditionally or replaced by a more general live range
2241   // splitting optimization.
2242   JoinSplitEdges = EnableJoinSplits;
2243
2244   DEBUG(dbgs() << "********** SIMPLE REGISTER COALESCING **********\n"
2245                << "********** Function: " << MF->getName() << '\n');
2246
2247   if (VerifyCoalescing)
2248     MF->verify(this, "Before register coalescing");
2249
2250   RegClassInfo.runOnMachineFunction(fn);
2251
2252   // Join (coalesce) intervals if requested.
2253   if (EnableJoining)
2254     joinAllIntervals();
2255
2256   // After deleting a lot of copies, register classes may be less constrained.
2257   // Removing sub-register operands may allow GR32_ABCD -> GR32 and DPR_VFP2 ->
2258   // DPR inflation.
2259   array_pod_sort(InflateRegs.begin(), InflateRegs.end());
2260   InflateRegs.erase(std::unique(InflateRegs.begin(), InflateRegs.end()),
2261                     InflateRegs.end());
2262   DEBUG(dbgs() << "Trying to inflate " << InflateRegs.size() << " regs.\n");
2263   for (unsigned i = 0, e = InflateRegs.size(); i != e; ++i) {
2264     unsigned Reg = InflateRegs[i];
2265     if (MRI->reg_nodbg_empty(Reg))
2266       continue;
2267     if (MRI->recomputeRegClass(Reg, *TM)) {
2268       DEBUG(dbgs() << PrintReg(Reg) << " inflated to "
2269                    << MRI->getRegClass(Reg)->getName() << '\n');
2270       ++NumInflated;
2271     }
2272   }
2273
2274   DEBUG(dump());
2275   if (VerifyCoalescing)
2276     MF->verify(this, "After register coalescing");
2277   return true;
2278 }
2279
2280 /// print - Implement the dump method.
2281 void RegisterCoalescer::print(raw_ostream &O, const Module* m) const {
2282    LIS->print(O, m);
2283 }