RegAlloc superpass: includes phi elimination, coalescing, and scheduling.
[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 #define DEBUG_TYPE "regalloc"
17 #include "RegisterCoalescer.h"
18 #include "LiveDebugVariables.h"
19 #include "RegisterClassInfo.h"
20 #include "VirtRegMap.h"
21
22 #include "llvm/Pass.h"
23 #include "llvm/Value.h"
24 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
25 #include "llvm/CodeGen/MachineInstr.h"
26 #include "llvm/CodeGen/MachineRegisterInfo.h"
27 #include "llvm/Target/TargetInstrInfo.h"
28 #include "llvm/Target/TargetRegisterInfo.h"
29 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
30 #include "llvm/Analysis/AliasAnalysis.h"
31 #include "llvm/CodeGen/MachineFrameInfo.h"
32 #include "llvm/CodeGen/MachineInstr.h"
33 #include "llvm/CodeGen/MachineLoopInfo.h"
34 #include "llvm/CodeGen/MachineRegisterInfo.h"
35 #include "llvm/CodeGen/Passes.h"
36 #include "llvm/Target/TargetInstrInfo.h"
37 #include "llvm/Target/TargetMachine.h"
38 #include "llvm/Target/TargetOptions.h"
39 #include "llvm/Support/CommandLine.h"
40 #include "llvm/Support/Debug.h"
41 #include "llvm/Support/ErrorHandling.h"
42 #include "llvm/Support/raw_ostream.h"
43 #include "llvm/ADT/OwningPtr.h"
44 #include "llvm/ADT/SmallSet.h"
45 #include "llvm/ADT/Statistic.h"
46 #include "llvm/ADT/STLExtras.h"
47 #include <algorithm>
48 #include <cmath>
49 using namespace llvm;
50
51 STATISTIC(numJoins    , "Number of interval joins performed");
52 STATISTIC(numCrossRCs , "Number of cross class joins performed");
53 STATISTIC(numCommutes , "Number of instruction commuting performed");
54 STATISTIC(numExtends  , "Number of copies extended");
55 STATISTIC(NumReMats   , "Number of instructions re-materialized");
56 STATISTIC(numPeep     , "Number of identity moves eliminated after coalescing");
57 STATISTIC(numAborts   , "Number of times interval joining aborted");
58 STATISTIC(NumInflated , "Number of register classes inflated");
59
60 static cl::opt<bool>
61 EnableJoining("join-liveintervals",
62               cl::desc("Coalesce copies (default=true)"),
63               cl::init(true));
64
65 static cl::opt<bool>
66 DisableCrossClassJoin("disable-cross-class-join",
67                cl::desc("Avoid coalescing cross register class copies"),
68                cl::init(false), cl::Hidden);
69
70 static cl::opt<bool>
71 EnablePhysicalJoin("join-physregs",
72                    cl::desc("Join physical register copies"),
73                    cl::init(false), cl::Hidden);
74
75 static cl::opt<bool>
76 VerifyCoalescing("verify-coalescing",
77          cl::desc("Verify machine instrs before and after register coalescing"),
78          cl::Hidden);
79
80 namespace {
81   class RegisterCoalescer : public MachineFunctionPass {
82     MachineFunction* MF;
83     MachineRegisterInfo* MRI;
84     const TargetMachine* TM;
85     const TargetRegisterInfo* TRI;
86     const TargetInstrInfo* TII;
87     LiveIntervals *LIS;
88     LiveDebugVariables *LDV;
89     const MachineLoopInfo* Loops;
90     AliasAnalysis *AA;
91     RegisterClassInfo RegClassInfo;
92
93     /// JoinedCopies - Keep track of copies eliminated due to coalescing.
94     ///
95     SmallPtrSet<MachineInstr*, 32> JoinedCopies;
96
97     /// ReMatCopies - Keep track of copies eliminated due to remat.
98     ///
99     SmallPtrSet<MachineInstr*, 32> ReMatCopies;
100
101     /// ReMatDefs - Keep track of definition instructions which have
102     /// been remat'ed.
103     SmallPtrSet<MachineInstr*, 8> ReMatDefs;
104
105     /// joinIntervals - join compatible live intervals
106     void joinIntervals();
107
108     /// CopyCoalesceInMBB - Coalesce copies in the specified MBB, putting
109     /// copies that cannot yet be coalesced into the "TryAgain" list.
110     void CopyCoalesceInMBB(MachineBasicBlock *MBB,
111                            std::vector<MachineInstr*> &TryAgain);
112
113     /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
114     /// which are the src/dst of the copy instruction CopyMI.  This returns
115     /// true if the copy was successfully coalesced away. If it is not
116     /// currently possible to coalesce this interval, but it may be possible if
117     /// other things get coalesced, then it returns true by reference in
118     /// 'Again'.
119     bool JoinCopy(MachineInstr *TheCopy, bool &Again);
120
121     /// JoinIntervals - Attempt to join these two intervals.  On failure, this
122     /// returns false.  The output "SrcInt" will not have been modified, so we
123     /// can use this information below to update aliases.
124     bool JoinIntervals(CoalescerPair &CP);
125
126     /// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy. If
127     /// the source value number is defined by a copy from the destination reg
128     /// see if we can merge these two destination reg valno# into a single
129     /// value number, eliminating a copy.
130     bool AdjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
131
132     /// HasOtherReachingDefs - Return true if there are definitions of IntB
133     /// other than BValNo val# that can reach uses of AValno val# of IntA.
134     bool HasOtherReachingDefs(LiveInterval &IntA, LiveInterval &IntB,
135                               VNInfo *AValNo, VNInfo *BValNo);
136
137     /// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy.
138     /// If the source value number is defined by a commutable instruction and
139     /// its other operand is coalesced to the copy dest register, see if we
140     /// can transform the copy into a noop by commuting the definition.
141     bool RemoveCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
142
143     /// ReMaterializeTrivialDef - If the source of a copy is defined by a
144     /// trivial computation, replace the copy by rematerialize the definition.
145     /// If PreserveSrcInt is true, make sure SrcInt is valid after the call.
146     bool ReMaterializeTrivialDef(LiveInterval &SrcInt, bool PreserveSrcInt,
147                                  unsigned DstReg, MachineInstr *CopyMI);
148
149     /// shouldJoinPhys - Return true if a physreg copy should be joined.
150     bool shouldJoinPhys(CoalescerPair &CP);
151
152     /// isWinToJoinCrossClass - Return true if it's profitable to coalesce
153     /// two virtual registers from different register classes.
154     bool isWinToJoinCrossClass(unsigned SrcReg,
155                                unsigned DstReg,
156                                const TargetRegisterClass *SrcRC,
157                                const TargetRegisterClass *DstRC,
158                                const TargetRegisterClass *NewRC);
159
160     /// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
161     /// update the subregister number if it is not zero. If DstReg is a
162     /// physical register and the existing subregister number of the def / use
163     /// being updated is not zero, make sure to set it to the correct physical
164     /// subregister.
165     void UpdateRegDefsUses(const CoalescerPair &CP);
166
167     /// RemoveDeadDef - If a def of a live interval is now determined dead,
168     /// remove the val# it defines. If the live interval becomes empty, remove
169     /// it as well.
170     bool RemoveDeadDef(LiveInterval &li, MachineInstr *DefMI);
171
172     /// markAsJoined - Remember that CopyMI has already been joined.
173     void markAsJoined(MachineInstr *CopyMI);
174
175     /// eliminateUndefCopy - Handle copies of undef values.
176     bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
177
178   public:
179     static char ID; // Class identification, replacement for typeinfo
180     RegisterCoalescer() : MachineFunctionPass(ID) {
181       initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
182     }
183
184     virtual void getAnalysisUsage(AnalysisUsage &AU) const;
185
186     virtual void releaseMemory();
187
188     /// runOnMachineFunction - pass entry point
189     virtual bool runOnMachineFunction(MachineFunction&);
190
191     /// print - Implement the dump method.
192     virtual void print(raw_ostream &O, const Module* = 0) const;
193   };
194 } /// end anonymous namespace
195
196 char &llvm::RegisterCoalescerID = RegisterCoalescer::ID;
197
198 INITIALIZE_PASS_BEGIN(RegisterCoalescer, "simple-register-coalescing",
199                       "Simple Register Coalescing", false, false)
200 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
201 INITIALIZE_PASS_DEPENDENCY(LiveDebugVariables)
202 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
203 INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
204 INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
205 INITIALIZE_PASS_END(RegisterCoalescer, "simple-register-coalescing",
206                     "Simple Register Coalescing", false, false)
207
208 char RegisterCoalescer::ID = 0;
209
210 static unsigned compose(const TargetRegisterInfo &tri, unsigned a, unsigned b) {
211   if (!a) return b;
212   if (!b) return a;
213   return tri.composeSubRegIndices(a, b);
214 }
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 = compose(tri, 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 bool CoalescerPair::setRegisters(const MachineInstr *MI) {
236   SrcReg = DstReg = SubIdx = 0;
237   NewRC = 0;
238   Flipped = CrossClass = false;
239
240   unsigned Src, Dst, SrcSub, DstSub;
241   if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
242     return false;
243   Partial = SrcSub || DstSub;
244
245   // If one register is a physreg, it must be Dst.
246   if (TargetRegisterInfo::isPhysicalRegister(Src)) {
247     if (TargetRegisterInfo::isPhysicalRegister(Dst))
248       return false;
249     std::swap(Src, Dst);
250     std::swap(SrcSub, DstSub);
251     Flipped = true;
252   }
253
254   const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
255
256   if (TargetRegisterInfo::isPhysicalRegister(Dst)) {
257     // Eliminate DstSub on a physreg.
258     if (DstSub) {
259       Dst = TRI.getSubReg(Dst, DstSub);
260       if (!Dst) return false;
261       DstSub = 0;
262     }
263
264     // Eliminate SrcSub by picking a corresponding Dst superregister.
265     if (SrcSub) {
266       Dst = TRI.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src));
267       if (!Dst) return false;
268       SrcSub = 0;
269     } else if (!MRI.getRegClass(Src)->contains(Dst)) {
270       return false;
271     }
272   } else {
273     // Both registers are virtual.
274
275     // Both registers have subreg indices.
276     if (SrcSub && DstSub) {
277       // For now we only handle the case of identical indices in commensurate
278       // registers: Dreg:ssub_1 + Dreg:ssub_1 -> Dreg
279       // FIXME: Handle Qreg:ssub_3 + Dreg:ssub_1 as QReg:dsub_1 + Dreg.
280       if (SrcSub != DstSub)
281         return false;
282       const TargetRegisterClass *SrcRC = MRI.getRegClass(Src);
283       const TargetRegisterClass *DstRC = MRI.getRegClass(Dst);
284       if (!TRI.getCommonSubClass(DstRC, SrcRC))
285         return false;
286       SrcSub = DstSub = 0;
287     }
288
289     // There can be no SrcSub.
290     if (SrcSub) {
291       std::swap(Src, Dst);
292       DstSub = SrcSub;
293       SrcSub = 0;
294       assert(!Flipped && "Unexpected flip");
295       Flipped = true;
296     }
297
298     // Find the new register class.
299     const TargetRegisterClass *SrcRC = MRI.getRegClass(Src);
300     const TargetRegisterClass *DstRC = MRI.getRegClass(Dst);
301     if (DstSub)
302       NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub);
303     else
304       NewRC = TRI.getCommonSubClass(DstRC, SrcRC);
305     if (!NewRC)
306       return false;
307     CrossClass = NewRC != DstRC || NewRC != SrcRC;
308   }
309   // Check our invariants
310   assert(TargetRegisterInfo::isVirtualRegister(Src) && "Src must be virtual");
311   assert(!(TargetRegisterInfo::isPhysicalRegister(Dst) && DstSub) &&
312          "Cannot have a physical SubIdx");
313   SrcReg = Src;
314   DstReg = Dst;
315   SubIdx = DstSub;
316   return true;
317 }
318
319 bool CoalescerPair::flip() {
320   if (SubIdx || TargetRegisterInfo::isPhysicalRegister(DstReg))
321     return false;
322   std::swap(SrcReg, DstReg);
323   Flipped = !Flipped;
324   return true;
325 }
326
327 bool CoalescerPair::isCoalescable(const MachineInstr *MI) const {
328   if (!MI)
329     return false;
330   unsigned Src, Dst, SrcSub, DstSub;
331   if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
332     return false;
333
334   // Find the virtual register that is SrcReg.
335   if (Dst == SrcReg) {
336     std::swap(Src, Dst);
337     std::swap(SrcSub, DstSub);
338   } else if (Src != SrcReg) {
339     return false;
340   }
341
342   // Now check that Dst matches DstReg.
343   if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
344     if (!TargetRegisterInfo::isPhysicalRegister(Dst))
345       return false;
346     assert(!SubIdx && "Inconsistent CoalescerPair state.");
347     // DstSub could be set for a physreg from INSERT_SUBREG.
348     if (DstSub)
349       Dst = TRI.getSubReg(Dst, DstSub);
350     // Full copy of Src.
351     if (!SrcSub)
352       return DstReg == Dst;
353     // This is a partial register copy. Check that the parts match.
354     return TRI.getSubReg(DstReg, SrcSub) == Dst;
355   } else {
356     // DstReg is virtual.
357     if (DstReg != Dst)
358       return false;
359     // Registers match, do the subregisters line up?
360     return compose(TRI, SubIdx, SrcSub) == DstSub;
361   }
362 }
363
364 void RegisterCoalescer::getAnalysisUsage(AnalysisUsage &AU) const {
365   AU.setPreservesCFG();
366   AU.addRequired<AliasAnalysis>();
367   AU.addRequired<LiveIntervals>();
368   AU.addPreserved<LiveIntervals>();
369   AU.addRequired<LiveDebugVariables>();
370   AU.addPreserved<LiveDebugVariables>();
371   AU.addPreserved<SlotIndexes>();
372   AU.addRequired<MachineLoopInfo>();
373   AU.addPreserved<MachineLoopInfo>();
374   AU.addPreservedID(MachineDominatorsID);
375   MachineFunctionPass::getAnalysisUsage(AU);
376 }
377
378 void RegisterCoalescer::markAsJoined(MachineInstr *CopyMI) {
379   /// Joined copies are not deleted immediately, but kept in JoinedCopies.
380   JoinedCopies.insert(CopyMI);
381
382   /// Mark all register operands of CopyMI as <undef> so they won't affect dead
383   /// code elimination.
384   for (MachineInstr::mop_iterator I = CopyMI->operands_begin(),
385        E = CopyMI->operands_end(); I != E; ++I)
386     if (I->isReg())
387       I->setIsUndef(true);
388 }
389
390 /// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy with IntA
391 /// being the source and IntB being the dest, thus this defines a value number
392 /// in IntB.  If the source value number (in IntA) is defined by a copy from B,
393 /// see if we can merge these two pieces of B into a single value number,
394 /// eliminating a copy.  For example:
395 ///
396 ///  A3 = B0
397 ///    ...
398 ///  B1 = A3      <- this copy
399 ///
400 /// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
401 /// value number to be replaced with B0 (which simplifies the B liveinterval).
402 ///
403 /// This returns true if an interval was modified.
404 ///
405 bool RegisterCoalescer::AdjustCopiesBackFrom(const CoalescerPair &CP,
406                                                     MachineInstr *CopyMI) {
407   // Bail if there is no dst interval - can happen when merging physical subreg
408   // operations.
409   if (!LIS->hasInterval(CP.getDstReg()))
410     return false;
411
412   LiveInterval &IntA =
413     LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg());
414   LiveInterval &IntB =
415     LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg());
416   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot();
417
418   // BValNo is a value number in B that is defined by a copy from A.  'B3' in
419   // the example above.
420   LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
421   if (BLR == IntB.end()) return false;
422   VNInfo *BValNo = BLR->valno;
423
424   // Get the location that B is defined at.  Two options: either this value has
425   // an unknown definition point or it is defined at CopyIdx.  If unknown, we
426   // can't process it.
427   if (BValNo->def != CopyIdx) return false;
428
429   // AValNo is the value number in A that defines the copy, A3 in the example.
430   SlotIndex CopyUseIdx = CopyIdx.getRegSlot(true);
431   LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyUseIdx);
432   // The live range might not exist after fun with physreg coalescing.
433   if (ALR == IntA.end()) return false;
434   VNInfo *AValNo = ALR->valno;
435
436   // If AValNo is defined as a copy from IntB, we can potentially process this.
437   // Get the instruction that defines this value number.
438   MachineInstr *ACopyMI = LIS->getInstructionFromIndex(AValNo->def);
439   if (!CP.isCoalescable(ACopyMI))
440     return false;
441
442   // Get the LiveRange in IntB that this value number starts with.
443   LiveInterval::iterator ValLR =
444     IntB.FindLiveRangeContaining(AValNo->def.getPrevSlot());
445   if (ValLR == IntB.end())
446     return false;
447
448   // Make sure that the end of the live range is inside the same block as
449   // CopyMI.
450   MachineInstr *ValLREndInst =
451     LIS->getInstructionFromIndex(ValLR->end.getPrevSlot());
452   if (!ValLREndInst || ValLREndInst->getParent() != CopyMI->getParent())
453     return false;
454
455   // Okay, we now know that ValLR ends in the same block that the CopyMI
456   // live-range starts.  If there are no intervening live ranges between them in
457   // IntB, we can merge them.
458   if (ValLR+1 != BLR) return false;
459
460   // If a live interval is a physical register, conservatively check if any
461   // of its aliases is overlapping the live interval of the virtual register.
462   // If so, do not coalesce.
463   if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
464     for (const unsigned *AS = TRI->getAliasSet(IntB.reg); *AS; ++AS)
465       if (LIS->hasInterval(*AS) && IntA.overlaps(LIS->getInterval(*AS))) {
466         DEBUG({
467             dbgs() << "\t\tInterfere with alias ";
468             LIS->getInterval(*AS).print(dbgs(), TRI);
469           });
470         return false;
471       }
472   }
473
474   DEBUG({
475       dbgs() << "Extending: ";
476       IntB.print(dbgs(), TRI);
477     });
478
479   SlotIndex FillerStart = ValLR->end, FillerEnd = BLR->start;
480   // We are about to delete CopyMI, so need to remove it as the 'instruction
481   // that defines this value #'. Update the valnum with the new defining
482   // instruction #.
483   BValNo->def = FillerStart;
484
485   // Okay, we can merge them.  We need to insert a new liverange:
486   // [ValLR.end, BLR.begin) of either value number, then we merge the
487   // two value numbers.
488   IntB.addRange(LiveRange(FillerStart, FillerEnd, BValNo));
489
490   // If the IntB live range is assigned to a physical register, and if that
491   // physreg has sub-registers, update their live intervals as well.
492   if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
493     for (const unsigned *SR = TRI->getSubRegisters(IntB.reg); *SR; ++SR) {
494       if (!LIS->hasInterval(*SR))
495         continue;
496       LiveInterval &SRLI = LIS->getInterval(*SR);
497       SRLI.addRange(LiveRange(FillerStart, FillerEnd,
498                               SRLI.getNextValue(FillerStart,
499                                                 LIS->getVNInfoAllocator())));
500     }
501   }
502
503   // Okay, merge "B1" into the same value number as "B0".
504   if (BValNo != ValLR->valno) {
505     // If B1 is killed by a PHI, then the merged live range must also be killed
506     // by the same PHI, as B0 and B1 can not overlap.
507     bool HasPHIKill = BValNo->hasPHIKill();
508     IntB.MergeValueNumberInto(BValNo, ValLR->valno);
509     if (HasPHIKill)
510       ValLR->valno->setHasPHIKill(true);
511   }
512   DEBUG({
513       dbgs() << "   result = ";
514       IntB.print(dbgs(), TRI);
515       dbgs() << "\n";
516     });
517
518   // If the source instruction was killing the source register before the
519   // merge, unset the isKill marker given the live range has been extended.
520   int UIdx = ValLREndInst->findRegisterUseOperandIdx(IntB.reg, true);
521   if (UIdx != -1) {
522     ValLREndInst->getOperand(UIdx).setIsKill(false);
523   }
524
525   // Rewrite the copy. If the copy instruction was killing the destination
526   // register before the merge, find the last use and trim the live range. That
527   // will also add the isKill marker.
528   CopyMI->substituteRegister(IntA.reg, IntB.reg, CP.getSubIdx(),
529                              *TRI);
530   if (ALR->end == CopyIdx)
531     LIS->shrinkToUses(&IntA);
532
533   ++numExtends;
534   return true;
535 }
536
537 /// HasOtherReachingDefs - Return true if there are definitions of IntB
538 /// other than BValNo val# that can reach uses of AValno val# of IntA.
539 bool RegisterCoalescer::HasOtherReachingDefs(LiveInterval &IntA,
540                                                     LiveInterval &IntB,
541                                                     VNInfo *AValNo,
542                                                     VNInfo *BValNo) {
543   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
544        AI != AE; ++AI) {
545     if (AI->valno != AValNo) continue;
546     LiveInterval::Ranges::iterator BI =
547       std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
548     if (BI != IntB.ranges.begin())
549       --BI;
550     for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
551       if (BI->valno == BValNo)
552         continue;
553       if (BI->start <= AI->start && BI->end > AI->start)
554         return true;
555       if (BI->start > AI->start && BI->start < AI->end)
556         return true;
557     }
558   }
559   return false;
560 }
561
562 /// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy with
563 /// IntA being the source and IntB being the dest, thus this defines a value
564 /// number in IntB.  If the source value number (in IntA) is defined by a
565 /// commutable instruction and its other operand is coalesced to the copy dest
566 /// register, see if we can transform the copy into a noop by commuting the
567 /// definition. For example,
568 ///
569 ///  A3 = op A2 B0<kill>
570 ///    ...
571 ///  B1 = A3      <- this copy
572 ///    ...
573 ///     = op A3   <- more uses
574 ///
575 /// ==>
576 ///
577 ///  B2 = op B0 A2<kill>
578 ///    ...
579 ///  B1 = B2      <- now an identify copy
580 ///    ...
581 ///     = op B2   <- more uses
582 ///
583 /// This returns true if an interval was modified.
584 ///
585 bool RegisterCoalescer::RemoveCopyByCommutingDef(const CoalescerPair &CP,
586                                                         MachineInstr *CopyMI) {
587   // FIXME: For now, only eliminate the copy by commuting its def when the
588   // source register is a virtual register. We want to guard against cases
589   // where the copy is a back edge copy and commuting the def lengthen the
590   // live interval of the source register to the entire loop.
591   if (CP.isPhys() && CP.isFlipped())
592     return false;
593
594   // Bail if there is no dst interval.
595   if (!LIS->hasInterval(CP.getDstReg()))
596     return false;
597
598   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot();
599
600   LiveInterval &IntA =
601     LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg());
602   LiveInterval &IntB =
603     LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg());
604
605   // BValNo is a value number in B that is defined by a copy from A. 'B3' in
606   // the example above.
607   VNInfo *BValNo = IntB.getVNInfoAt(CopyIdx);
608   if (!BValNo || BValNo->def != CopyIdx)
609     return false;
610
611   assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
612
613   // AValNo is the value number in A that defines the copy, A3 in the example.
614   VNInfo *AValNo = IntA.getVNInfoAt(CopyIdx.getRegSlot(true));
615   assert(AValNo && "COPY source not live");
616
617   // If other defs can reach uses of this def, then it's not safe to perform
618   // the optimization.
619   if (AValNo->isPHIDef() || AValNo->isUnused() || AValNo->hasPHIKill())
620     return false;
621   MachineInstr *DefMI = LIS->getInstructionFromIndex(AValNo->def);
622   if (!DefMI)
623     return false;
624   if (!DefMI->isCommutable())
625     return false;
626   // If DefMI is a two-address instruction then commuting it will change the
627   // destination register.
628   int DefIdx = DefMI->findRegisterDefOperandIdx(IntA.reg);
629   assert(DefIdx != -1);
630   unsigned UseOpIdx;
631   if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx))
632     return false;
633   unsigned Op1, Op2, NewDstIdx;
634   if (!TII->findCommutedOpIndices(DefMI, Op1, Op2))
635     return false;
636   if (Op1 == UseOpIdx)
637     NewDstIdx = Op2;
638   else if (Op2 == UseOpIdx)
639     NewDstIdx = Op1;
640   else
641     return false;
642
643   MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
644   unsigned NewReg = NewDstMO.getReg();
645   if (NewReg != IntB.reg || !NewDstMO.isKill())
646     return false;
647
648   // Make sure there are no other definitions of IntB that would reach the
649   // uses which the new definition can reach.
650   if (HasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
651     return false;
652
653   // Abort if the aliases of IntB.reg have values that are not simply the
654   // clobbers from the superreg.
655   if (TargetRegisterInfo::isPhysicalRegister(IntB.reg))
656     for (const unsigned *AS = TRI->getAliasSet(IntB.reg); *AS; ++AS)
657       if (LIS->hasInterval(*AS) &&
658           HasOtherReachingDefs(IntA, LIS->getInterval(*AS), AValNo, 0))
659         return false;
660
661   // If some of the uses of IntA.reg is already coalesced away, return false.
662   // It's not possible to determine whether it's safe to perform the coalescing.
663   for (MachineRegisterInfo::use_nodbg_iterator UI =
664          MRI->use_nodbg_begin(IntA.reg),
665        UE = MRI->use_nodbg_end(); UI != UE; ++UI) {
666     MachineInstr *UseMI = &*UI;
667     SlotIndex UseIdx = LIS->getInstructionIndex(UseMI);
668     LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
669     if (ULR == IntA.end())
670       continue;
671     if (ULR->valno == AValNo && JoinedCopies.count(UseMI))
672       return false;
673   }
674
675   DEBUG(dbgs() << "\tRemoveCopyByCommutingDef: " << AValNo->def << '\t'
676                << *DefMI);
677
678   // At this point we have decided that it is legal to do this
679   // transformation.  Start by commuting the instruction.
680   MachineBasicBlock *MBB = DefMI->getParent();
681   MachineInstr *NewMI = TII->commuteInstruction(DefMI);
682   if (!NewMI)
683     return false;
684   if (TargetRegisterInfo::isVirtualRegister(IntA.reg) &&
685       TargetRegisterInfo::isVirtualRegister(IntB.reg) &&
686       !MRI->constrainRegClass(IntB.reg, MRI->getRegClass(IntA.reg)))
687     return false;
688   if (NewMI != DefMI) {
689     LIS->ReplaceMachineInstrInMaps(DefMI, NewMI);
690     MachineBasicBlock::iterator Pos = DefMI;
691     MBB->insert(Pos, NewMI);
692     MBB->erase(DefMI);
693   }
694   unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
695   NewMI->getOperand(OpIdx).setIsKill();
696
697   // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
698   // A = or A, B
699   // ...
700   // B = A
701   // ...
702   // C = A<kill>
703   // ...
704   //   = B
705
706   // Update uses of IntA of the specific Val# with IntB.
707   for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(IntA.reg),
708          UE = MRI->use_end(); UI != UE;) {
709     MachineOperand &UseMO = UI.getOperand();
710     MachineInstr *UseMI = &*UI;
711     ++UI;
712     if (JoinedCopies.count(UseMI))
713       continue;
714     if (UseMI->isDebugValue()) {
715       // FIXME These don't have an instruction index.  Not clear we have enough
716       // info to decide whether to do this replacement or not.  For now do it.
717       UseMO.setReg(NewReg);
718       continue;
719     }
720     SlotIndex UseIdx = LIS->getInstructionIndex(UseMI).getRegSlot(true);
721     LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
722     if (ULR == IntA.end() || ULR->valno != AValNo)
723       continue;
724     if (TargetRegisterInfo::isPhysicalRegister(NewReg))
725       UseMO.substPhysReg(NewReg, *TRI);
726     else
727       UseMO.setReg(NewReg);
728     if (UseMI == CopyMI)
729       continue;
730     if (!UseMI->isCopy())
731       continue;
732     if (UseMI->getOperand(0).getReg() != IntB.reg ||
733         UseMI->getOperand(0).getSubReg())
734       continue;
735
736     // This copy will become a noop. If it's defining a new val#, merge it into
737     // BValNo.
738     SlotIndex DefIdx = UseIdx.getRegSlot();
739     VNInfo *DVNI = IntB.getVNInfoAt(DefIdx);
740     if (!DVNI)
741       continue;
742     DEBUG(dbgs() << "\t\tnoop: " << DefIdx << '\t' << *UseMI);
743     assert(DVNI->def == DefIdx);
744     BValNo = IntB.MergeValueNumberInto(BValNo, DVNI);
745     markAsJoined(UseMI);
746   }
747
748   // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
749   // is updated.
750   VNInfo *ValNo = BValNo;
751   ValNo->def = AValNo->def;
752   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
753        AI != AE; ++AI) {
754     if (AI->valno != AValNo) continue;
755     IntB.addRange(LiveRange(AI->start, AI->end, ValNo));
756   }
757   DEBUG(dbgs() << "\t\textended: " << IntB << '\n');
758
759   IntA.removeValNo(AValNo);
760   DEBUG(dbgs() << "\t\ttrimmed:  " << IntA << '\n');
761   ++numCommutes;
762   return true;
763 }
764
765 /// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
766 /// computation, replace the copy by rematerialize the definition.
767 bool RegisterCoalescer::ReMaterializeTrivialDef(LiveInterval &SrcInt,
768                                                        bool preserveSrcInt,
769                                                        unsigned DstReg,
770                                                        MachineInstr *CopyMI) {
771   SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot(true);
772   LiveInterval::iterator SrcLR = SrcInt.FindLiveRangeContaining(CopyIdx);
773   assert(SrcLR != SrcInt.end() && "Live range not found!");
774   VNInfo *ValNo = SrcLR->valno;
775   if (ValNo->isPHIDef() || ValNo->isUnused())
776     return false;
777   MachineInstr *DefMI = LIS->getInstructionFromIndex(ValNo->def);
778   if (!DefMI)
779     return false;
780   assert(DefMI && "Defining instruction disappeared");
781   if (!DefMI->isAsCheapAsAMove())
782     return false;
783   if (!TII->isTriviallyReMaterializable(DefMI, AA))
784     return false;
785   bool SawStore = false;
786   if (!DefMI->isSafeToMove(TII, AA, SawStore))
787     return false;
788   const MCInstrDesc &MCID = DefMI->getDesc();
789   if (MCID.getNumDefs() != 1)
790     return false;
791   if (!DefMI->isImplicitDef()) {
792     // Make sure the copy destination register class fits the instruction
793     // definition register class. The mismatch can happen as a result of earlier
794     // extract_subreg, insert_subreg, subreg_to_reg coalescing.
795     const TargetRegisterClass *RC = TII->getRegClass(MCID, 0, TRI);
796     if (TargetRegisterInfo::isVirtualRegister(DstReg)) {
797       if (MRI->getRegClass(DstReg) != RC)
798         return false;
799     } else if (!RC->contains(DstReg))
800       return false;
801   }
802
803   MachineBasicBlock *MBB = CopyMI->getParent();
804   MachineBasicBlock::iterator MII =
805     llvm::next(MachineBasicBlock::iterator(CopyMI));
806   TII->reMaterialize(*MBB, MII, DstReg, 0, DefMI, *TRI);
807   MachineInstr *NewMI = prior(MII);
808
809   // NewMI may have dead implicit defs (E.g. EFLAGS for MOV<bits>r0 on X86).
810   // We need to remember these so we can add intervals once we insert
811   // NewMI into SlotIndexes.
812   SmallVector<unsigned, 4> NewMIImplDefs;
813   for (unsigned i = NewMI->getDesc().getNumOperands(),
814          e = NewMI->getNumOperands(); i != e; ++i) {
815     MachineOperand &MO = NewMI->getOperand(i);
816     if (MO.isReg()) {
817       assert(MO.isDef() && MO.isImplicit() && MO.isDead());
818       NewMIImplDefs.push_back(MO.getReg());
819     }
820   }
821
822   // CopyMI may have implicit operands, transfer them over to the newly
823   // rematerialized instruction. And update implicit def interval valnos.
824   for (unsigned i = CopyMI->getDesc().getNumOperands(),
825          e = CopyMI->getNumOperands(); i != e; ++i) {
826     MachineOperand &MO = CopyMI->getOperand(i);
827     if (MO.isReg() && MO.isImplicit())
828       NewMI->addOperand(MO);
829   }
830
831   LIS->ReplaceMachineInstrInMaps(CopyMI, NewMI);
832
833   SlotIndex NewMIIdx = LIS->getInstructionIndex(NewMI);
834   for (unsigned i = 0, e = NewMIImplDefs.size(); i != e; ++i) {
835     unsigned reg = NewMIImplDefs[i];
836     LiveInterval &li = LIS->getInterval(reg);
837     VNInfo *DeadDefVN = li.getNextValue(NewMIIdx.getRegSlot(),
838                                         LIS->getVNInfoAllocator());
839     LiveRange lr(NewMIIdx.getRegSlot(), NewMIIdx.getDeadSlot(), DeadDefVN);
840     li.addRange(lr);
841   }
842
843   NewMI->copyImplicitOps(CopyMI);
844   CopyMI->eraseFromParent();
845   ReMatCopies.insert(CopyMI);
846   ReMatDefs.insert(DefMI);
847   DEBUG(dbgs() << "Remat: " << *NewMI);
848   ++NumReMats;
849
850   // The source interval can become smaller because we removed a use.
851   if (preserveSrcInt)
852     LIS->shrinkToUses(&SrcInt);
853
854   return true;
855 }
856
857 /// eliminateUndefCopy - ProcessImpicitDefs may leave some copies of <undef>
858 /// values, it only removes local variables. When we have a copy like:
859 ///
860 ///   %vreg1 = COPY %vreg2<undef>
861 ///
862 /// We delete the copy and remove the corresponding value number from %vreg1.
863 /// Any uses of that value number are marked as <undef>.
864 bool RegisterCoalescer::eliminateUndefCopy(MachineInstr *CopyMI,
865                                            const CoalescerPair &CP) {
866   SlotIndex Idx = LIS->getInstructionIndex(CopyMI);
867   LiveInterval *SrcInt = &LIS->getInterval(CP.getSrcReg());
868   if (SrcInt->liveAt(Idx))
869     return false;
870   LiveInterval *DstInt = &LIS->getInterval(CP.getDstReg());
871   if (DstInt->liveAt(Idx))
872     return false;
873
874   // No intervals are live-in to CopyMI - it is undef.
875   if (CP.isFlipped())
876     DstInt = SrcInt;
877   SrcInt = 0;
878
879   VNInfo *DeadVNI = DstInt->getVNInfoAt(Idx.getRegSlot());
880   assert(DeadVNI && "No value defined in DstInt");
881   DstInt->removeValNo(DeadVNI);
882
883   // Find new undef uses.
884   for (MachineRegisterInfo::reg_nodbg_iterator
885          I = MRI->reg_nodbg_begin(DstInt->reg), E = MRI->reg_nodbg_end();
886        I != E; ++I) {
887     MachineOperand &MO = I.getOperand();
888     if (MO.isDef() || MO.isUndef())
889       continue;
890     MachineInstr *MI = MO.getParent();
891     SlotIndex Idx = LIS->getInstructionIndex(MI);
892     if (DstInt->liveAt(Idx))
893       continue;
894     MO.setIsUndef(true);
895     DEBUG(dbgs() << "\tnew undef: " << Idx << '\t' << *MI);
896   }
897   return true;
898 }
899
900 /// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
901 /// update the subregister number if it is not zero. If DstReg is a
902 /// physical register and the existing subregister number of the def / use
903 /// being updated is not zero, make sure to set it to the correct physical
904 /// subregister.
905 void
906 RegisterCoalescer::UpdateRegDefsUses(const CoalescerPair &CP) {
907   bool DstIsPhys = CP.isPhys();
908   unsigned SrcReg = CP.getSrcReg();
909   unsigned DstReg = CP.getDstReg();
910   unsigned SubIdx = CP.getSubIdx();
911
912   // Update LiveDebugVariables.
913   LDV->renameRegister(SrcReg, DstReg, SubIdx);
914
915   for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(SrcReg);
916        MachineInstr *UseMI = I.skipInstruction();) {
917     // A PhysReg copy that won't be coalesced can perhaps be rematerialized
918     // instead.
919     if (DstIsPhys) {
920       if (UseMI->isFullCopy() &&
921           UseMI->getOperand(1).getReg() == SrcReg &&
922           UseMI->getOperand(0).getReg() != SrcReg &&
923           UseMI->getOperand(0).getReg() != DstReg &&
924           !JoinedCopies.count(UseMI) &&
925           ReMaterializeTrivialDef(LIS->getInterval(SrcReg), false,
926                                   UseMI->getOperand(0).getReg(), UseMI))
927         continue;
928     }
929
930     SmallVector<unsigned,8> Ops;
931     bool Reads, Writes;
932     tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops);
933     bool Kills = false, Deads = false;
934
935     // Replace SrcReg with DstReg in all UseMI operands.
936     for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
937       MachineOperand &MO = UseMI->getOperand(Ops[i]);
938       Kills |= MO.isKill();
939       Deads |= MO.isDead();
940
941       // Make sure we don't create read-modify-write defs accidentally.  We
942       // assume here that a SrcReg def cannot be joined into a live DstReg.  If
943       // RegisterCoalescer starts tracking partially live registers, we will
944       // need to check the actual LiveInterval to determine if DstReg is live
945       // here.
946       if (SubIdx && !Reads)
947         MO.setIsUndef();
948
949       if (DstIsPhys)
950         MO.substPhysReg(DstReg, *TRI);
951       else
952         MO.substVirtReg(DstReg, SubIdx, *TRI);
953     }
954
955     // This instruction is a copy that will be removed.
956     if (JoinedCopies.count(UseMI))
957       continue;
958
959     if (SubIdx) {
960       // If UseMI was a simple SrcReg def, make sure we didn't turn it into a
961       // read-modify-write of DstReg.
962       if (Deads)
963         UseMI->addRegisterDead(DstReg, TRI);
964       else if (!Reads && Writes)
965         UseMI->addRegisterDefined(DstReg, TRI);
966
967       // Kill flags apply to the whole physical register.
968       if (DstIsPhys && Kills)
969         UseMI->addRegisterKilled(DstReg, TRI);
970     }
971
972     DEBUG({
973         dbgs() << "\t\tupdated: ";
974         if (!UseMI->isDebugValue())
975           dbgs() << LIS->getInstructionIndex(UseMI) << "\t";
976         dbgs() << *UseMI;
977       });
978   }
979 }
980
981 /// removeIntervalIfEmpty - Check if the live interval of a physical register
982 /// is empty, if so remove it and also remove the empty intervals of its
983 /// sub-registers. Return true if live interval is removed.
984 static bool removeIntervalIfEmpty(LiveInterval &li, LiveIntervals *LIS,
985                                   const TargetRegisterInfo *TRI) {
986   if (li.empty()) {
987     if (TargetRegisterInfo::isPhysicalRegister(li.reg))
988       for (const unsigned* SR = TRI->getSubRegisters(li.reg); *SR; ++SR) {
989         if (!LIS->hasInterval(*SR))
990           continue;
991         LiveInterval &sli = LIS->getInterval(*SR);
992         if (sli.empty())
993           LIS->removeInterval(*SR);
994       }
995     LIS->removeInterval(li.reg);
996     return true;
997   }
998   return false;
999 }
1000
1001 /// RemoveDeadDef - If a def of a live interval is now determined dead, remove
1002 /// the val# it defines. If the live interval becomes empty, remove it as well.
1003 bool RegisterCoalescer::RemoveDeadDef(LiveInterval &li,
1004                                              MachineInstr *DefMI) {
1005   SlotIndex DefIdx = LIS->getInstructionIndex(DefMI).getRegSlot();
1006   LiveInterval::iterator MLR = li.FindLiveRangeContaining(DefIdx);
1007   if (DefIdx != MLR->valno->def)
1008     return false;
1009   li.removeValNo(MLR->valno);
1010   return removeIntervalIfEmpty(li, LIS, TRI);
1011 }
1012
1013 /// shouldJoinPhys - Return true if a copy involving a physreg should be joined.
1014 /// We need to be careful about coalescing a source physical register with a
1015 /// virtual register. Once the coalescing is done, it cannot be broken and these
1016 /// are not spillable! If the destination interval uses are far away, think
1017 /// twice about coalescing them!
1018 bool RegisterCoalescer::shouldJoinPhys(CoalescerPair &CP) {
1019   bool Allocatable = LIS->isAllocatable(CP.getDstReg());
1020   LiveInterval &JoinVInt = LIS->getInterval(CP.getSrcReg());
1021
1022   /// Always join simple intervals that are defined by a single copy from a
1023   /// reserved register. This doesn't increase register pressure, so it is
1024   /// always beneficial.
1025   if (!Allocatable && CP.isFlipped() && JoinVInt.containsOneValue())
1026     return true;
1027
1028   if (!EnablePhysicalJoin) {
1029     DEBUG(dbgs() << "\tPhysreg joins disabled.\n");
1030     return false;
1031   }
1032
1033   // Only coalesce to allocatable physreg, we don't want to risk modifying
1034   // reserved registers.
1035   if (!Allocatable) {
1036     DEBUG(dbgs() << "\tRegister is an unallocatable physreg.\n");
1037     return false;  // Not coalescable.
1038   }
1039
1040   // Don't join with physregs that have a ridiculous number of live
1041   // ranges. The data structure performance is really bad when that
1042   // happens.
1043   if (LIS->hasInterval(CP.getDstReg()) &&
1044       LIS->getInterval(CP.getDstReg()).ranges.size() > 1000) {
1045     ++numAborts;
1046     DEBUG(dbgs()
1047           << "\tPhysical register live interval too complicated, abort!\n");
1048     return false;
1049   }
1050
1051   // FIXME: Why are we skipping this test for partial copies?
1052   //        CodeGen/X86/phys_subreg_coalesce-3.ll needs it.
1053   if (!CP.isPartial()) {
1054     const TargetRegisterClass *RC = MRI->getRegClass(CP.getSrcReg());
1055     unsigned Threshold = RegClassInfo.getNumAllocatableRegs(RC) * 2;
1056     unsigned Length = LIS->getApproximateInstructionCount(JoinVInt);
1057     if (Length > Threshold) {
1058       ++numAborts;
1059       DEBUG(dbgs() << "\tMay tie down a physical register, abort!\n");
1060       return false;
1061     }
1062   }
1063   return true;
1064 }
1065
1066 /// isWinToJoinCrossClass - Return true if it's profitable to coalesce
1067 /// two virtual registers from different register classes.
1068 bool
1069 RegisterCoalescer::isWinToJoinCrossClass(unsigned SrcReg,
1070                                              unsigned DstReg,
1071                                              const TargetRegisterClass *SrcRC,
1072                                              const TargetRegisterClass *DstRC,
1073                                              const TargetRegisterClass *NewRC) {
1074   unsigned NewRCCount = RegClassInfo.getNumAllocatableRegs(NewRC);
1075   // This heuristics is good enough in practice, but it's obviously not *right*.
1076   // 4 is a magic number that works well enough for x86, ARM, etc. It filter
1077   // out all but the most restrictive register classes.
1078   if (NewRCCount > 4 ||
1079       // Early exit if the function is fairly small, coalesce aggressively if
1080       // that's the case. For really special register classes with 3 or
1081       // fewer registers, be a bit more careful.
1082       (LIS->getFuncInstructionCount() / NewRCCount) < 8)
1083     return true;
1084   LiveInterval &SrcInt = LIS->getInterval(SrcReg);
1085   LiveInterval &DstInt = LIS->getInterval(DstReg);
1086   unsigned SrcSize = LIS->getApproximateInstructionCount(SrcInt);
1087   unsigned DstSize = LIS->getApproximateInstructionCount(DstInt);
1088
1089   // Coalesce aggressively if the intervals are small compared to the number of
1090   // registers in the new class. The number 4 is fairly arbitrary, chosen to be
1091   // less aggressive than the 8 used for the whole function size.
1092   const unsigned ThresSize = 4 * NewRCCount;
1093   if (SrcSize <= ThresSize && DstSize <= ThresSize)
1094     return true;
1095
1096   // Estimate *register use density*. If it doubles or more, abort.
1097   unsigned SrcUses = std::distance(MRI->use_nodbg_begin(SrcReg),
1098                                    MRI->use_nodbg_end());
1099   unsigned DstUses = std::distance(MRI->use_nodbg_begin(DstReg),
1100                                    MRI->use_nodbg_end());
1101   unsigned NewUses = SrcUses + DstUses;
1102   unsigned NewSize = SrcSize + DstSize;
1103   if (SrcRC != NewRC && SrcSize > ThresSize) {
1104     unsigned SrcRCCount = RegClassInfo.getNumAllocatableRegs(SrcRC);
1105     if (NewUses*SrcSize*SrcRCCount > 2*SrcUses*NewSize*NewRCCount)
1106       return false;
1107   }
1108   if (DstRC != NewRC && DstSize > ThresSize) {
1109     unsigned DstRCCount = RegClassInfo.getNumAllocatableRegs(DstRC);
1110     if (NewUses*DstSize*DstRCCount > 2*DstUses*NewSize*NewRCCount)
1111       return false;
1112   }
1113   return true;
1114 }
1115
1116
1117 /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
1118 /// which are the src/dst of the copy instruction CopyMI.  This returns true
1119 /// if the copy was successfully coalesced away. If it is not currently
1120 /// possible to coalesce this interval, but it may be possible if other
1121 /// things get coalesced, then it returns true by reference in 'Again'.
1122 bool RegisterCoalescer::JoinCopy(MachineInstr *CopyMI, bool &Again) {
1123
1124   Again = false;
1125   if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
1126     return false; // Already done.
1127
1128   DEBUG(dbgs() << LIS->getInstructionIndex(CopyMI) << '\t' << *CopyMI);
1129
1130   CoalescerPair CP(*TII, *TRI);
1131   if (!CP.setRegisters(CopyMI)) {
1132     DEBUG(dbgs() << "\tNot coalescable.\n");
1133     return false;
1134   }
1135
1136   // If they are already joined we continue.
1137   if (CP.getSrcReg() == CP.getDstReg()) {
1138     markAsJoined(CopyMI);
1139     DEBUG(dbgs() << "\tCopy already coalesced.\n");
1140     return false;  // Not coalescable.
1141   }
1142
1143   // Eliminate undefs.
1144   if (!CP.isPhys() && eliminateUndefCopy(CopyMI, CP)) {
1145     markAsJoined(CopyMI);
1146     DEBUG(dbgs() << "\tEliminated copy of <undef> value.\n");
1147     return false;  // Not coalescable.
1148   }
1149
1150   DEBUG(dbgs() << "\tConsidering merging " << PrintReg(CP.getSrcReg(), TRI)
1151                << " with " << PrintReg(CP.getDstReg(), TRI, CP.getSubIdx())
1152                << "\n");
1153
1154   // Enforce policies.
1155   if (CP.isPhys()) {
1156     if (!shouldJoinPhys(CP)) {
1157       // Before giving up coalescing, if definition of source is defined by
1158       // trivial computation, try rematerializing it.
1159       if (!CP.isFlipped() &&
1160           ReMaterializeTrivialDef(LIS->getInterval(CP.getSrcReg()), true,
1161                                   CP.getDstReg(), CopyMI))
1162         return true;
1163       return false;
1164     }
1165   } else {
1166     // Avoid constraining virtual register regclass too much.
1167     if (CP.isCrossClass()) {
1168       DEBUG(dbgs() << "\tCross-class to " << CP.getNewRC()->getName() << ".\n");
1169       if (DisableCrossClassJoin) {
1170         DEBUG(dbgs() << "\tCross-class joins disabled.\n");
1171         return false;
1172       }
1173       if (!isWinToJoinCrossClass(CP.getSrcReg(), CP.getDstReg(),
1174                                  MRI->getRegClass(CP.getSrcReg()),
1175                                  MRI->getRegClass(CP.getDstReg()),
1176                                  CP.getNewRC())) {
1177         DEBUG(dbgs() << "\tAvoid coalescing to constrained register class.\n");
1178         Again = true;  // May be possible to coalesce later.
1179         return false;
1180       }
1181     }
1182
1183     // When possible, let DstReg be the larger interval.
1184     if (!CP.getSubIdx() && LIS->getInterval(CP.getSrcReg()).ranges.size() >
1185                            LIS->getInterval(CP.getDstReg()).ranges.size())
1186       CP.flip();
1187   }
1188
1189   // Okay, attempt to join these two intervals.  On failure, this returns false.
1190   // Otherwise, if one of the intervals being joined is a physreg, this method
1191   // always canonicalizes DstInt to be it.  The output "SrcInt" will not have
1192   // been modified, so we can use this information below to update aliases.
1193   if (!JoinIntervals(CP)) {
1194     // Coalescing failed.
1195
1196     // If definition of source is defined by trivial computation, try
1197     // rematerializing it.
1198     if (!CP.isFlipped() &&
1199         ReMaterializeTrivialDef(LIS->getInterval(CP.getSrcReg()), true,
1200                                 CP.getDstReg(), CopyMI))
1201       return true;
1202
1203     // If we can eliminate the copy without merging the live ranges, do so now.
1204     if (!CP.isPartial()) {
1205       if (AdjustCopiesBackFrom(CP, CopyMI) ||
1206           RemoveCopyByCommutingDef(CP, CopyMI)) {
1207         markAsJoined(CopyMI);
1208         DEBUG(dbgs() << "\tTrivial!\n");
1209         return true;
1210       }
1211     }
1212
1213     // Otherwise, we are unable to join the intervals.
1214     DEBUG(dbgs() << "\tInterference!\n");
1215     Again = true;  // May be possible to coalesce later.
1216     return false;
1217   }
1218
1219   // Coalescing to a virtual register that is of a sub-register class of the
1220   // other. Make sure the resulting register is set to the right register class.
1221   if (CP.isCrossClass()) {
1222     ++numCrossRCs;
1223     MRI->setRegClass(CP.getDstReg(), CP.getNewRC());
1224   }
1225
1226   // Remember to delete the copy instruction.
1227   markAsJoined(CopyMI);
1228
1229   UpdateRegDefsUses(CP);
1230
1231   // If we have extended the live range of a physical register, make sure we
1232   // update live-in lists as well.
1233   if (CP.isPhys()) {
1234     SmallVector<MachineBasicBlock*, 16> BlockSeq;
1235     // JoinIntervals invalidates the VNInfos in SrcInt, but we only need the
1236     // ranges for this, and they are preserved.
1237     LiveInterval &SrcInt = LIS->getInterval(CP.getSrcReg());
1238     for (LiveInterval::const_iterator I = SrcInt.begin(), E = SrcInt.end();
1239          I != E; ++I ) {
1240       LIS->findLiveInMBBs(I->start, I->end, BlockSeq);
1241       for (unsigned idx = 0, size = BlockSeq.size(); idx != size; ++idx) {
1242         MachineBasicBlock &block = *BlockSeq[idx];
1243         if (!block.isLiveIn(CP.getDstReg()))
1244           block.addLiveIn(CP.getDstReg());
1245       }
1246       BlockSeq.clear();
1247     }
1248   }
1249
1250   // SrcReg is guaranteed to be the register whose live interval that is
1251   // being merged.
1252   LIS->removeInterval(CP.getSrcReg());
1253
1254   // Update regalloc hint.
1255   TRI->UpdateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF);
1256
1257   DEBUG({
1258     LiveInterval &DstInt = LIS->getInterval(CP.getDstReg());
1259     dbgs() << "\tJoined. Result = ";
1260     DstInt.print(dbgs(), TRI);
1261     dbgs() << "\n";
1262   });
1263
1264   ++numJoins;
1265   return true;
1266 }
1267
1268 /// ComputeUltimateVN - Assuming we are going to join two live intervals,
1269 /// compute what the resultant value numbers for each value in the input two
1270 /// ranges will be.  This is complicated by copies between the two which can
1271 /// and will commonly cause multiple value numbers to be merged into one.
1272 ///
1273 /// VN is the value number that we're trying to resolve.  InstDefiningValue
1274 /// keeps track of the new InstDefiningValue assignment for the result
1275 /// LiveInterval.  ThisFromOther/OtherFromThis are sets that keep track of
1276 /// whether a value in this or other is a copy from the opposite set.
1277 /// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
1278 /// already been assigned.
1279 ///
1280 /// ThisFromOther[x] - If x is defined as a copy from the other interval, this
1281 /// contains the value number the copy is from.
1282 ///
1283 static unsigned ComputeUltimateVN(VNInfo *VNI,
1284                                   SmallVector<VNInfo*, 16> &NewVNInfo,
1285                                   DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
1286                                   DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
1287                                   SmallVector<int, 16> &ThisValNoAssignments,
1288                                   SmallVector<int, 16> &OtherValNoAssignments) {
1289   unsigned VN = VNI->id;
1290
1291   // If the VN has already been computed, just return it.
1292   if (ThisValNoAssignments[VN] >= 0)
1293     return ThisValNoAssignments[VN];
1294   assert(ThisValNoAssignments[VN] != -2 && "Cyclic value numbers");
1295
1296   // If this val is not a copy from the other val, then it must be a new value
1297   // number in the destination.
1298   DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
1299   if (I == ThisFromOther.end()) {
1300     NewVNInfo.push_back(VNI);
1301     return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
1302   }
1303   VNInfo *OtherValNo = I->second;
1304
1305   // Otherwise, this *is* a copy from the RHS.  If the other side has already
1306   // been computed, return it.
1307   if (OtherValNoAssignments[OtherValNo->id] >= 0)
1308     return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
1309
1310   // Mark this value number as currently being computed, then ask what the
1311   // ultimate value # of the other value is.
1312   ThisValNoAssignments[VN] = -2;
1313   unsigned UltimateVN =
1314     ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
1315                       OtherValNoAssignments, ThisValNoAssignments);
1316   return ThisValNoAssignments[VN] = UltimateVN;
1317 }
1318
1319
1320 // Find out if we have something like
1321 // A = X
1322 // B = X
1323 // if so, we can pretend this is actually
1324 // A = X
1325 // B = A
1326 // which allows us to coalesce A and B.
1327 // VNI is the definition of B. LR is the life range of A that includes
1328 // the slot just before B. If we return true, we add "B = X" to DupCopies.
1329 // This implies that A dominates B.
1330 static bool RegistersDefinedFromSameValue(LiveIntervals &li,
1331                                           const TargetRegisterInfo &tri,
1332                                           CoalescerPair &CP,
1333                                           VNInfo *VNI,
1334                                           LiveRange *LR,
1335                                      SmallVector<MachineInstr*, 8> &DupCopies) {
1336   // FIXME: This is very conservative. For example, we don't handle
1337   // physical registers.
1338
1339   MachineInstr *MI = li.getInstructionFromIndex(VNI->def);
1340
1341   if (!MI || !MI->isFullCopy() || CP.isPartial() || CP.isPhys())
1342     return false;
1343
1344   unsigned Dst = MI->getOperand(0).getReg();
1345   unsigned Src = MI->getOperand(1).getReg();
1346
1347   if (!TargetRegisterInfo::isVirtualRegister(Src) ||
1348       !TargetRegisterInfo::isVirtualRegister(Dst))
1349     return false;
1350
1351   unsigned A = CP.getDstReg();
1352   unsigned B = CP.getSrcReg();
1353
1354   if (B == Dst)
1355     std::swap(A, B);
1356   assert(Dst == A);
1357
1358   VNInfo *Other = LR->valno;
1359   const MachineInstr *OtherMI = li.getInstructionFromIndex(Other->def);
1360
1361   if (!OtherMI || !OtherMI->isFullCopy())
1362     return false;
1363
1364   unsigned OtherDst = OtherMI->getOperand(0).getReg();
1365   unsigned OtherSrc = OtherMI->getOperand(1).getReg();
1366
1367   if (!TargetRegisterInfo::isVirtualRegister(OtherSrc) ||
1368       !TargetRegisterInfo::isVirtualRegister(OtherDst))
1369     return false;
1370
1371   assert(OtherDst == B);
1372
1373   if (Src != OtherSrc)
1374     return false;
1375
1376   // If the copies use two different value numbers of X, we cannot merge
1377   // A and B.
1378   LiveInterval &SrcInt = li.getInterval(Src);
1379   // getVNInfoBefore returns NULL for undef copies. In this case, the
1380   // optimization is still safe.
1381   if (SrcInt.getVNInfoBefore(Other->def) != SrcInt.getVNInfoBefore(VNI->def))
1382     return false;
1383
1384   DupCopies.push_back(MI);
1385
1386   return true;
1387 }
1388
1389 /// JoinIntervals - Attempt to join these two intervals.  On failure, this
1390 /// returns false.
1391 bool RegisterCoalescer::JoinIntervals(CoalescerPair &CP) {
1392   LiveInterval &RHS = LIS->getInterval(CP.getSrcReg());
1393   DEBUG({ dbgs() << "\t\tRHS = "; RHS.print(dbgs(), TRI); dbgs() << "\n"; });
1394
1395   // If a live interval is a physical register, check for interference with any
1396   // aliases. The interference check implemented here is a bit more conservative
1397   // than the full interfeence check below. We allow overlapping live ranges
1398   // only when one is a copy of the other.
1399   if (CP.isPhys()) {
1400     // Optimization for reserved registers like ESP.
1401     // We can only merge with a reserved physreg if RHS has a single value that
1402     // is a copy of CP.DstReg().  The live range of the reserved register will
1403     // look like a set of dead defs - we don't properly track the live range of
1404     // reserved registers.
1405     if (RegClassInfo.isReserved(CP.getDstReg())) {
1406       assert(CP.isFlipped() && RHS.containsOneValue() &&
1407              "Invalid join with reserved register");
1408       // Deny any overlapping intervals.  This depends on all the reserved
1409       // register live ranges to look like dead defs.
1410       for (const unsigned *AS = TRI->getOverlaps(CP.getDstReg()); *AS; ++AS) {
1411         if (!LIS->hasInterval(*AS)) {
1412           // Make sure at least DstReg itself exists before attempting a join.
1413           if (*AS == CP.getDstReg())
1414             LIS->getOrCreateInterval(CP.getDstReg());
1415           continue;
1416         }
1417         if (RHS.overlaps(LIS->getInterval(*AS))) {
1418           DEBUG(dbgs() << "\t\tInterference: " << PrintReg(*AS, TRI) << '\n');
1419           return false;
1420         }
1421       }
1422       // Skip any value computations, we are not adding new values to the
1423       // reserved register.  Also skip merging the live ranges, the reserved
1424       // register live range doesn't need to be accurate as long as all the
1425       // defs are there.
1426       return true;
1427     }
1428
1429     for (const unsigned *AS = TRI->getAliasSet(CP.getDstReg()); *AS; ++AS){
1430       if (!LIS->hasInterval(*AS))
1431         continue;
1432       const LiveInterval &LHS = LIS->getInterval(*AS);
1433       LiveInterval::const_iterator LI = LHS.begin();
1434       for (LiveInterval::const_iterator RI = RHS.begin(), RE = RHS.end();
1435            RI != RE; ++RI) {
1436         LI = std::lower_bound(LI, LHS.end(), RI->start);
1437         // Does LHS have an overlapping live range starting before RI?
1438         if ((LI != LHS.begin() && LI[-1].end > RI->start) &&
1439             (RI->start != RI->valno->def ||
1440              !CP.isCoalescable(LIS->getInstructionFromIndex(RI->start)))) {
1441           DEBUG({
1442             dbgs() << "\t\tInterference from alias: ";
1443             LHS.print(dbgs(), TRI);
1444             dbgs() << "\n\t\tOverlap at " << RI->start << " and no copy.\n";
1445           });
1446           return false;
1447         }
1448
1449         // Check that LHS ranges beginning in this range are copies.
1450         for (; LI != LHS.end() && LI->start < RI->end; ++LI) {
1451           if (LI->start != LI->valno->def ||
1452               !CP.isCoalescable(LIS->getInstructionFromIndex(LI->start))) {
1453             DEBUG({
1454               dbgs() << "\t\tInterference from alias: ";
1455               LHS.print(dbgs(), TRI);
1456               dbgs() << "\n\t\tDef at " << LI->start << " is not a copy.\n";
1457             });
1458             return false;
1459           }
1460         }
1461       }
1462     }
1463   }
1464
1465   // Compute the final value assignment, assuming that the live ranges can be
1466   // coalesced.
1467   SmallVector<int, 16> LHSValNoAssignments;
1468   SmallVector<int, 16> RHSValNoAssignments;
1469   DenseMap<VNInfo*, VNInfo*> LHSValsDefinedFromRHS;
1470   DenseMap<VNInfo*, VNInfo*> RHSValsDefinedFromLHS;
1471   SmallVector<VNInfo*, 16> NewVNInfo;
1472
1473   SmallVector<MachineInstr*, 8> DupCopies;
1474
1475   LiveInterval &LHS = LIS->getOrCreateInterval(CP.getDstReg());
1476   DEBUG({ dbgs() << "\t\tLHS = "; LHS.print(dbgs(), TRI); dbgs() << "\n"; });
1477
1478   // Loop over the value numbers of the LHS, seeing if any are defined from
1479   // the RHS.
1480   for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1481        i != e; ++i) {
1482     VNInfo *VNI = *i;
1483     if (VNI->isUnused() || VNI->isPHIDef())
1484       continue;
1485     MachineInstr *MI = LIS->getInstructionFromIndex(VNI->def);
1486     assert(MI && "Missing def");
1487     if (!MI->isCopyLike())  // Src not defined by a copy?
1488       continue;
1489
1490     // Figure out the value # from the RHS.
1491     LiveRange *lr = RHS.getLiveRangeContaining(VNI->def.getPrevSlot());
1492     // The copy could be to an aliased physreg.
1493     if (!lr) continue;
1494
1495     // DstReg is known to be a register in the LHS interval.  If the src is
1496     // from the RHS interval, we can use its value #.
1497     if (!CP.isCoalescable(MI) &&
1498         !RegistersDefinedFromSameValue(*LIS, *TRI, CP, VNI, lr, DupCopies))
1499       continue;
1500
1501     LHSValsDefinedFromRHS[VNI] = lr->valno;
1502   }
1503
1504   // Loop over the value numbers of the RHS, seeing if any are defined from
1505   // the LHS.
1506   for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1507        i != e; ++i) {
1508     VNInfo *VNI = *i;
1509     if (VNI->isUnused() || VNI->isPHIDef())
1510       continue;
1511     MachineInstr *MI = LIS->getInstructionFromIndex(VNI->def);
1512     assert(MI && "Missing def");
1513     if (!MI->isCopyLike())  // Src not defined by a copy?
1514       continue;
1515
1516     // Figure out the value # from the LHS.
1517     LiveRange *lr = LHS.getLiveRangeContaining(VNI->def.getPrevSlot());
1518     // The copy could be to an aliased physreg.
1519     if (!lr) continue;
1520
1521     // DstReg is known to be a register in the RHS interval.  If the src is
1522     // from the LHS interval, we can use its value #.
1523     if (!CP.isCoalescable(MI) &&
1524         !RegistersDefinedFromSameValue(*LIS, *TRI, CP, VNI, lr, DupCopies))
1525         continue;
1526
1527     RHSValsDefinedFromLHS[VNI] = lr->valno;
1528   }
1529
1530   LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1531   RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
1532   NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
1533
1534   for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1535        i != e; ++i) {
1536     VNInfo *VNI = *i;
1537     unsigned VN = VNI->id;
1538     if (LHSValNoAssignments[VN] >= 0 || VNI->isUnused())
1539       continue;
1540     ComputeUltimateVN(VNI, NewVNInfo,
1541                       LHSValsDefinedFromRHS, RHSValsDefinedFromLHS,
1542                       LHSValNoAssignments, RHSValNoAssignments);
1543   }
1544   for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1545        i != e; ++i) {
1546     VNInfo *VNI = *i;
1547     unsigned VN = VNI->id;
1548     if (RHSValNoAssignments[VN] >= 0 || VNI->isUnused())
1549       continue;
1550     // If this value number isn't a copy from the LHS, it's a new number.
1551     if (RHSValsDefinedFromLHS.find(VNI) == RHSValsDefinedFromLHS.end()) {
1552       NewVNInfo.push_back(VNI);
1553       RHSValNoAssignments[VN] = NewVNInfo.size()-1;
1554       continue;
1555     }
1556
1557     ComputeUltimateVN(VNI, NewVNInfo,
1558                       RHSValsDefinedFromLHS, LHSValsDefinedFromRHS,
1559                       RHSValNoAssignments, LHSValNoAssignments);
1560   }
1561
1562   // Armed with the mappings of LHS/RHS values to ultimate values, walk the
1563   // interval lists to see if these intervals are coalescable.
1564   LiveInterval::const_iterator I = LHS.begin();
1565   LiveInterval::const_iterator IE = LHS.end();
1566   LiveInterval::const_iterator J = RHS.begin();
1567   LiveInterval::const_iterator JE = RHS.end();
1568
1569   // Skip ahead until the first place of potential sharing.
1570   if (I != IE && J != JE) {
1571     if (I->start < J->start) {
1572       I = std::upper_bound(I, IE, J->start);
1573       if (I != LHS.begin()) --I;
1574     } else if (J->start < I->start) {
1575       J = std::upper_bound(J, JE, I->start);
1576       if (J != RHS.begin()) --J;
1577     }
1578   }
1579
1580   while (I != IE && J != JE) {
1581     // Determine if these two live ranges overlap.
1582     bool Overlaps;
1583     if (I->start < J->start) {
1584       Overlaps = I->end > J->start;
1585     } else {
1586       Overlaps = J->end > I->start;
1587     }
1588
1589     // If so, check value # info to determine if they are really different.
1590     if (Overlaps) {
1591       // If the live range overlap will map to the same value number in the
1592       // result liverange, we can still coalesce them.  If not, we can't.
1593       if (LHSValNoAssignments[I->valno->id] !=
1594           RHSValNoAssignments[J->valno->id])
1595         return false;
1596     }
1597
1598     if (I->end < J->end)
1599       ++I;
1600     else
1601       ++J;
1602   }
1603
1604   // Update kill info. Some live ranges are extended due to copy coalescing.
1605   for (DenseMap<VNInfo*, VNInfo*>::iterator I = LHSValsDefinedFromRHS.begin(),
1606          E = LHSValsDefinedFromRHS.end(); I != E; ++I) {
1607     VNInfo *VNI = I->first;
1608     unsigned LHSValID = LHSValNoAssignments[VNI->id];
1609     if (VNI->hasPHIKill())
1610       NewVNInfo[LHSValID]->setHasPHIKill(true);
1611   }
1612
1613   // Update kill info. Some live ranges are extended due to copy coalescing.
1614   for (DenseMap<VNInfo*, VNInfo*>::iterator I = RHSValsDefinedFromLHS.begin(),
1615          E = RHSValsDefinedFromLHS.end(); I != E; ++I) {
1616     VNInfo *VNI = I->first;
1617     unsigned RHSValID = RHSValNoAssignments[VNI->id];
1618     if (VNI->hasPHIKill())
1619       NewVNInfo[RHSValID]->setHasPHIKill(true);
1620   }
1621
1622   if (LHSValNoAssignments.empty())
1623     LHSValNoAssignments.push_back(-1);
1624   if (RHSValNoAssignments.empty())
1625     RHSValNoAssignments.push_back(-1);
1626
1627   SmallVector<unsigned, 8> SourceRegisters;
1628   for (SmallVector<MachineInstr*, 8>::iterator I = DupCopies.begin(),
1629          E = DupCopies.end(); I != E; ++I) {
1630     MachineInstr *MI = *I;
1631
1632     // We have pretended that the assignment to B in
1633     // A = X
1634     // B = X
1635     // was actually a copy from A. Now that we decided to coalesce A and B,
1636     // transform the code into
1637     // A = X
1638     // X = X
1639     // and mark the X as coalesced to keep the illusion.
1640     unsigned Src = MI->getOperand(1).getReg();
1641     SourceRegisters.push_back(Src);
1642     MI->getOperand(0).substVirtReg(Src, 0, *TRI);
1643
1644     markAsJoined(MI);
1645   }
1646
1647   // If B = X was the last use of X in a liverange, we have to shrink it now
1648   // that B = X is gone.
1649   for (SmallVector<unsigned, 8>::iterator I = SourceRegisters.begin(),
1650          E = SourceRegisters.end(); I != E; ++I) {
1651     LIS->shrinkToUses(&LIS->getInterval(*I));
1652   }
1653
1654   // If we get here, we know that we can coalesce the live ranges.  Ask the
1655   // intervals to coalesce themselves now.
1656   LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo,
1657            MRI);
1658   return true;
1659 }
1660
1661 namespace {
1662   // DepthMBBCompare - Comparison predicate that sort first based on the loop
1663   // depth of the basic block (the unsigned), and then on the MBB number.
1664   struct DepthMBBCompare {
1665     typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
1666     bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
1667       // Deeper loops first
1668       if (LHS.first != RHS.first)
1669         return LHS.first > RHS.first;
1670
1671       // Prefer blocks that are more connected in the CFG. This takes care of
1672       // the most difficult copies first while intervals are short.
1673       unsigned cl = LHS.second->pred_size() + LHS.second->succ_size();
1674       unsigned cr = RHS.second->pred_size() + RHS.second->succ_size();
1675       if (cl != cr)
1676         return cl > cr;
1677
1678       // As a last resort, sort by block number.
1679       return LHS.second->getNumber() < RHS.second->getNumber();
1680     }
1681   };
1682 }
1683
1684 void RegisterCoalescer::CopyCoalesceInMBB(MachineBasicBlock *MBB,
1685                                             std::vector<MachineInstr*> &TryAgain) {
1686   DEBUG(dbgs() << MBB->getName() << ":\n");
1687
1688   SmallVector<MachineInstr*, 8> VirtCopies;
1689   SmallVector<MachineInstr*, 8> PhysCopies;
1690   SmallVector<MachineInstr*, 8> ImpDefCopies;
1691   for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
1692        MII != E;) {
1693     MachineInstr *Inst = MII++;
1694
1695     // If this isn't a copy nor a extract_subreg, we can't join intervals.
1696     unsigned SrcReg, DstReg;
1697     if (Inst->isCopy()) {
1698       DstReg = Inst->getOperand(0).getReg();
1699       SrcReg = Inst->getOperand(1).getReg();
1700     } else if (Inst->isSubregToReg()) {
1701       DstReg = Inst->getOperand(0).getReg();
1702       SrcReg = Inst->getOperand(2).getReg();
1703     } else
1704       continue;
1705
1706     bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
1707     bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
1708     if (LIS->hasInterval(SrcReg) && LIS->getInterval(SrcReg).empty())
1709       ImpDefCopies.push_back(Inst);
1710     else if (SrcIsPhys || DstIsPhys)
1711       PhysCopies.push_back(Inst);
1712     else
1713       VirtCopies.push_back(Inst);
1714   }
1715
1716   // Try coalescing implicit copies and insert_subreg <undef> first,
1717   // followed by copies to / from physical registers, then finally copies
1718   // from virtual registers to virtual registers.
1719   for (unsigned i = 0, e = ImpDefCopies.size(); i != e; ++i) {
1720     MachineInstr *TheCopy = ImpDefCopies[i];
1721     bool Again = false;
1722     if (!JoinCopy(TheCopy, Again))
1723       if (Again)
1724         TryAgain.push_back(TheCopy);
1725   }
1726   for (unsigned i = 0, e = PhysCopies.size(); i != e; ++i) {
1727     MachineInstr *TheCopy = PhysCopies[i];
1728     bool Again = false;
1729     if (!JoinCopy(TheCopy, Again))
1730       if (Again)
1731         TryAgain.push_back(TheCopy);
1732   }
1733   for (unsigned i = 0, e = VirtCopies.size(); i != e; ++i) {
1734     MachineInstr *TheCopy = VirtCopies[i];
1735     bool Again = false;
1736     if (!JoinCopy(TheCopy, Again))
1737       if (Again)
1738         TryAgain.push_back(TheCopy);
1739   }
1740 }
1741
1742 void RegisterCoalescer::joinIntervals() {
1743   DEBUG(dbgs() << "********** JOINING INTERVALS ***********\n");
1744
1745   std::vector<MachineInstr*> TryAgainList;
1746   if (Loops->empty()) {
1747     // If there are no loops in the function, join intervals in function order.
1748     for (MachineFunction::iterator I = MF->begin(), E = MF->end();
1749          I != E; ++I)
1750       CopyCoalesceInMBB(I, TryAgainList);
1751   } else {
1752     // Otherwise, join intervals in inner loops before other intervals.
1753     // Unfortunately we can't just iterate over loop hierarchy here because
1754     // there may be more MBB's than BB's.  Collect MBB's for sorting.
1755
1756     // Join intervals in the function prolog first. We want to join physical
1757     // registers with virtual registers before the intervals got too long.
1758     std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
1759     for (MachineFunction::iterator I = MF->begin(), E = MF->end();I != E;++I){
1760       MachineBasicBlock *MBB = I;
1761       MBBs.push_back(std::make_pair(Loops->getLoopDepth(MBB), I));
1762     }
1763
1764     // Sort by loop depth.
1765     std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
1766
1767     // Finally, join intervals in loop nest order.
1768     for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
1769       CopyCoalesceInMBB(MBBs[i].second, TryAgainList);
1770   }
1771
1772   // Joining intervals can allow other intervals to be joined.  Iteratively join
1773   // until we make no progress.
1774   bool ProgressMade = true;
1775   while (ProgressMade) {
1776     ProgressMade = false;
1777
1778     for (unsigned i = 0, e = TryAgainList.size(); i != e; ++i) {
1779       MachineInstr *&TheCopy = TryAgainList[i];
1780       if (!TheCopy)
1781         continue;
1782
1783       bool Again = false;
1784       bool Success = JoinCopy(TheCopy, Again);
1785       if (Success || !Again) {
1786         TheCopy= 0;   // Mark this one as done.
1787         ProgressMade = true;
1788       }
1789     }
1790   }
1791 }
1792
1793 void RegisterCoalescer::releaseMemory() {
1794   JoinedCopies.clear();
1795   ReMatCopies.clear();
1796   ReMatDefs.clear();
1797 }
1798
1799 bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) {
1800   MF = &fn;
1801   MRI = &fn.getRegInfo();
1802   TM = &fn.getTarget();
1803   TRI = TM->getRegisterInfo();
1804   TII = TM->getInstrInfo();
1805   LIS = &getAnalysis<LiveIntervals>();
1806   LDV = &getAnalysis<LiveDebugVariables>();
1807   AA = &getAnalysis<AliasAnalysis>();
1808   Loops = &getAnalysis<MachineLoopInfo>();
1809
1810   DEBUG(dbgs() << "********** SIMPLE REGISTER COALESCING **********\n"
1811                << "********** Function: "
1812                << ((Value*)MF->getFunction())->getName() << '\n');
1813
1814   if (VerifyCoalescing)
1815     MF->verify(this, "Before register coalescing");
1816
1817   RegClassInfo.runOnMachineFunction(fn);
1818
1819   // Join (coalesce) intervals if requested.
1820   if (EnableJoining) {
1821     joinIntervals();
1822     DEBUG({
1823         dbgs() << "********** INTERVALS POST JOINING **********\n";
1824         for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end();
1825              I != E; ++I){
1826           I->second->print(dbgs(), TRI);
1827           dbgs() << "\n";
1828         }
1829       });
1830   }
1831
1832   // Perform a final pass over the instructions and compute spill weights
1833   // and remove identity moves.
1834   SmallVector<unsigned, 4> DeadDefs, InflateRegs;
1835   for (MachineFunction::iterator mbbi = MF->begin(), mbbe = MF->end();
1836        mbbi != mbbe; ++mbbi) {
1837     MachineBasicBlock* mbb = mbbi;
1838     for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
1839          mii != mie; ) {
1840       MachineInstr *MI = mii;
1841       if (JoinedCopies.count(MI)) {
1842         // Delete all coalesced copies.
1843         bool DoDelete = true;
1844         assert(MI->isCopyLike() && "Unrecognized copy instruction");
1845         unsigned SrcReg = MI->getOperand(MI->isSubregToReg() ? 2 : 1).getReg();
1846         unsigned DstReg = MI->getOperand(0).getReg();
1847
1848         // Collect candidates for register class inflation.
1849         if (TargetRegisterInfo::isVirtualRegister(SrcReg) &&
1850             RegClassInfo.isProperSubClass(MRI->getRegClass(SrcReg)))
1851           InflateRegs.push_back(SrcReg);
1852         if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
1853             RegClassInfo.isProperSubClass(MRI->getRegClass(DstReg)))
1854           InflateRegs.push_back(DstReg);
1855
1856         if (TargetRegisterInfo::isPhysicalRegister(SrcReg) &&
1857             MI->getNumOperands() > 2)
1858           // Do not delete extract_subreg, insert_subreg of physical
1859           // registers unless the definition is dead. e.g.
1860           // %DO<def> = INSERT_SUBREG %D0<undef>, %S0<kill>, 1
1861           // or else the scavenger may complain. LowerSubregs will
1862           // delete them later.
1863           DoDelete = false;
1864
1865         if (MI->allDefsAreDead()) {
1866           if (TargetRegisterInfo::isVirtualRegister(SrcReg) &&
1867               LIS->hasInterval(SrcReg))
1868             LIS->shrinkToUses(&LIS->getInterval(SrcReg));
1869           DoDelete = true;
1870         }
1871         if (!DoDelete) {
1872           // We need the instruction to adjust liveness, so make it a KILL.
1873           if (MI->isSubregToReg()) {
1874             MI->RemoveOperand(3);
1875             MI->RemoveOperand(1);
1876           }
1877           MI->setDesc(TII->get(TargetOpcode::KILL));
1878           mii = llvm::next(mii);
1879         } else {
1880           LIS->RemoveMachineInstrFromMaps(MI);
1881           mii = mbbi->erase(mii);
1882           ++numPeep;
1883         }
1884         continue;
1885       }
1886
1887       // Now check if this is a remat'ed def instruction which is now dead.
1888       if (ReMatDefs.count(MI)) {
1889         bool isDead = true;
1890         for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1891           const MachineOperand &MO = MI->getOperand(i);
1892           if (!MO.isReg())
1893             continue;
1894           unsigned Reg = MO.getReg();
1895           if (!Reg)
1896             continue;
1897           DeadDefs.push_back(Reg);
1898           if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1899             // Remat may also enable register class inflation.
1900             if (RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)))
1901               InflateRegs.push_back(Reg);
1902           }
1903           if (MO.isDead())
1904             continue;
1905           if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
1906               !MRI->use_nodbg_empty(Reg)) {
1907             isDead = false;
1908             break;
1909           }
1910         }
1911         if (isDead) {
1912           while (!DeadDefs.empty()) {
1913             unsigned DeadDef = DeadDefs.back();
1914             DeadDefs.pop_back();
1915             RemoveDeadDef(LIS->getInterval(DeadDef), MI);
1916           }
1917           LIS->RemoveMachineInstrFromMaps(mii);
1918           mii = mbbi->erase(mii);
1919           continue;
1920         } else
1921           DeadDefs.clear();
1922       }
1923
1924       ++mii;
1925
1926       // Check for now unnecessary kill flags.
1927       if (LIS->isNotInMIMap(MI)) continue;
1928       SlotIndex DefIdx = LIS->getInstructionIndex(MI).getRegSlot();
1929       for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1930         MachineOperand &MO = MI->getOperand(i);
1931         if (!MO.isReg() || !MO.isKill()) continue;
1932         unsigned reg = MO.getReg();
1933         if (!reg || !LIS->hasInterval(reg)) continue;
1934         if (!LIS->getInterval(reg).killedAt(DefIdx)) {
1935           MO.setIsKill(false);
1936           continue;
1937         }
1938         // When leaving a kill flag on a physreg, check if any subregs should
1939         // remain alive.
1940         if (!TargetRegisterInfo::isPhysicalRegister(reg))
1941           continue;
1942         for (const unsigned *SR = TRI->getSubRegisters(reg);
1943              unsigned S = *SR; ++SR)
1944           if (LIS->hasInterval(S) && LIS->getInterval(S).liveAt(DefIdx))
1945             MI->addRegisterDefined(S, TRI);
1946       }
1947     }
1948   }
1949
1950   // After deleting a lot of copies, register classes may be less constrained.
1951   // Removing sub-register opreands may alow GR32_ABCD -> GR32 and DPR_VFP2 ->
1952   // DPR inflation.
1953   array_pod_sort(InflateRegs.begin(), InflateRegs.end());
1954   InflateRegs.erase(std::unique(InflateRegs.begin(), InflateRegs.end()),
1955                     InflateRegs.end());
1956   DEBUG(dbgs() << "Trying to inflate " << InflateRegs.size() << " regs.\n");
1957   for (unsigned i = 0, e = InflateRegs.size(); i != e; ++i) {
1958     unsigned Reg = InflateRegs[i];
1959     if (MRI->reg_nodbg_empty(Reg))
1960       continue;
1961     if (MRI->recomputeRegClass(Reg, *TM)) {
1962       DEBUG(dbgs() << PrintReg(Reg) << " inflated to "
1963                    << MRI->getRegClass(Reg)->getName() << '\n');
1964       ++NumInflated;
1965     }
1966   }
1967
1968   DEBUG(dump());
1969   DEBUG(LDV->dump());
1970   if (VerifyCoalescing)
1971     MF->verify(this, "After register coalescing");
1972   return true;
1973 }
1974
1975 /// print - Implement the dump method.
1976 void RegisterCoalescer::print(raw_ostream &O, const Module* m) const {
1977    LIS->print(O, m);
1978 }