Re-apply 55467 with fix. If copy is being replaced by remat'ed def, transfer the...
[oota-llvm.git] / lib / CodeGen / SimpleRegisterCoalescing.cpp
1 //===-- SimpleRegisterCoalescing.cpp - Register Coalescing ----------------===//
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 a simple register coalescing pass that attempts to
11 // aggressively coalesce every register copy that it can.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "regcoalescing"
16 #include "SimpleRegisterCoalescing.h"
17 #include "VirtRegMap.h"
18 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
19 #include "llvm/Value.h"
20 #include "llvm/CodeGen/MachineFrameInfo.h"
21 #include "llvm/CodeGen/MachineInstr.h"
22 #include "llvm/CodeGen/MachineLoopInfo.h"
23 #include "llvm/CodeGen/MachineRegisterInfo.h"
24 #include "llvm/CodeGen/Passes.h"
25 #include "llvm/CodeGen/RegisterCoalescer.h"
26 #include "llvm/Target/TargetInstrInfo.h"
27 #include "llvm/Target/TargetMachine.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/Debug.h"
30 #include "llvm/ADT/SmallSet.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/ADT/STLExtras.h"
33 #include <algorithm>
34 #include <cmath>
35 using namespace llvm;
36
37 STATISTIC(numJoins    , "Number of interval joins performed");
38 STATISTIC(numSubJoins , "Number of subclass joins performed");
39 STATISTIC(numCommutes , "Number of instruction commuting performed");
40 STATISTIC(numExtends  , "Number of copies extended");
41 STATISTIC(NumReMats   , "Number of instructions re-materialized");
42 STATISTIC(numPeep     , "Number of identity moves eliminated after coalescing");
43 STATISTIC(numAborts   , "Number of times interval joining aborted");
44
45 char SimpleRegisterCoalescing::ID = 0;
46 static cl::opt<bool>
47 EnableJoining("join-liveintervals",
48               cl::desc("Coalesce copies (default=true)"),
49               cl::init(true));
50
51 static cl::opt<bool>
52 NewHeuristic("new-coalescer-heuristic",
53              cl::desc("Use new coalescer heuristic"),
54              cl::init(false), cl::Hidden);
55
56 static cl::opt<bool>
57 CrossClassJoin("join-subclass-copies",
58                cl::desc("Coalesce copies to sub- register class"),
59                cl::init(false), cl::Hidden);
60
61 static RegisterPass<SimpleRegisterCoalescing> 
62 X("simple-register-coalescing", "Simple Register Coalescing");
63
64 // Declare that we implement the RegisterCoalescer interface
65 static RegisterAnalysisGroup<RegisterCoalescer, true/*The Default*/> V(X);
66
67 const PassInfo *const llvm::SimpleRegisterCoalescingID = &X;
68
69 void SimpleRegisterCoalescing::getAnalysisUsage(AnalysisUsage &AU) const {
70   AU.addPreserved<LiveIntervals>();
71   AU.addPreserved<MachineLoopInfo>();
72   AU.addPreservedID(MachineDominatorsID);
73   AU.addPreservedID(PHIEliminationID);
74   AU.addPreservedID(TwoAddressInstructionPassID);
75   AU.addRequired<LiveIntervals>();
76   AU.addRequired<MachineLoopInfo>();
77   MachineFunctionPass::getAnalysisUsage(AU);
78 }
79
80 /// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy with IntA
81 /// being the source and IntB being the dest, thus this defines a value number
82 /// in IntB.  If the source value number (in IntA) is defined by a copy from B,
83 /// see if we can merge these two pieces of B into a single value number,
84 /// eliminating a copy.  For example:
85 ///
86 ///  A3 = B0
87 ///    ...
88 ///  B1 = A3      <- this copy
89 ///
90 /// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
91 /// value number to be replaced with B0 (which simplifies the B liveinterval).
92 ///
93 /// This returns true if an interval was modified.
94 ///
95 bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
96                                                     LiveInterval &IntB,
97                                                     MachineInstr *CopyMI) {
98   unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
99
100   // BValNo is a value number in B that is defined by a copy from A.  'B3' in
101   // the example above.
102   LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
103   if (BLR == IntB.end()) // Should never happen!
104     return false;
105   VNInfo *BValNo = BLR->valno;
106   
107   // Get the location that B is defined at.  Two options: either this value has
108   // an unknown definition point or it is defined at CopyIdx.  If unknown, we 
109   // can't process it.
110   if (!BValNo->copy) return false;
111   assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
112   
113   // AValNo is the value number in A that defines the copy, A3 in the example.
114   LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
115   if (ALR == IntA.end()) // Should never happen!
116     return false;
117   VNInfo *AValNo = ALR->valno;
118   
119   // If AValNo is defined as a copy from IntB, we can potentially process this.  
120   // Get the instruction that defines this value number.
121   unsigned SrcReg = li_->getVNInfoSourceReg(AValNo);
122   if (!SrcReg) return false;  // Not defined by a copy.
123     
124   // If the value number is not defined by a copy instruction, ignore it.
125
126   // If the source register comes from an interval other than IntB, we can't
127   // handle this.
128   if (SrcReg != IntB.reg) return false;
129   
130   // Get the LiveRange in IntB that this value number starts with.
131   LiveInterval::iterator ValLR = IntB.FindLiveRangeContaining(AValNo->def-1);
132   if (ValLR == IntB.end()) // Should never happen!
133     return false;
134   
135   // Make sure that the end of the live range is inside the same block as
136   // CopyMI.
137   MachineInstr *ValLREndInst = li_->getInstructionFromIndex(ValLR->end-1);
138   if (!ValLREndInst || 
139       ValLREndInst->getParent() != CopyMI->getParent()) return false;
140
141   // Okay, we now know that ValLR ends in the same block that the CopyMI
142   // live-range starts.  If there are no intervening live ranges between them in
143   // IntB, we can merge them.
144   if (ValLR+1 != BLR) return false;
145
146   // If a live interval is a physical register, conservatively check if any
147   // of its sub-registers is overlapping the live interval of the virtual
148   // register. If so, do not coalesce.
149   if (TargetRegisterInfo::isPhysicalRegister(IntB.reg) &&
150       *tri_->getSubRegisters(IntB.reg)) {
151     for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR)
152       if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) {
153         DOUT << "Interfere with sub-register ";
154         DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
155         return false;
156       }
157   }
158   
159   DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
160   
161   unsigned FillerStart = ValLR->end, FillerEnd = BLR->start;
162   // We are about to delete CopyMI, so need to remove it as the 'instruction
163   // that defines this value #'. Update the the valnum with the new defining
164   // instruction #.
165   BValNo->def  = FillerStart;
166   BValNo->copy = NULL;
167   
168   // Okay, we can merge them.  We need to insert a new liverange:
169   // [ValLR.end, BLR.begin) of either value number, then we merge the
170   // two value numbers.
171   IntB.addRange(LiveRange(FillerStart, FillerEnd, BValNo));
172
173   // If the IntB live range is assigned to a physical register, and if that
174   // physreg has aliases, 
175   if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
176     // Update the liveintervals of sub-registers.
177     for (const unsigned *AS = tri_->getSubRegisters(IntB.reg); *AS; ++AS) {
178       LiveInterval &AliasLI = li_->getInterval(*AS);
179       AliasLI.addRange(LiveRange(FillerStart, FillerEnd,
180               AliasLI.getNextValue(FillerStart, 0, li_->getVNInfoAllocator())));
181     }
182   }
183
184   // Okay, merge "B1" into the same value number as "B0".
185   if (BValNo != ValLR->valno)
186     IntB.MergeValueNumberInto(BValNo, ValLR->valno);
187   DOUT << "   result = "; IntB.print(DOUT, tri_);
188   DOUT << "\n";
189
190   // If the source instruction was killing the source register before the
191   // merge, unset the isKill marker given the live range has been extended.
192   int UIdx = ValLREndInst->findRegisterUseOperandIdx(IntB.reg, true);
193   if (UIdx != -1)
194     ValLREndInst->getOperand(UIdx).setIsKill(false);
195
196   ++numExtends;
197   return true;
198 }
199
200 /// HasOtherReachingDefs - Return true if there are definitions of IntB
201 /// other than BValNo val# that can reach uses of AValno val# of IntA.
202 bool SimpleRegisterCoalescing::HasOtherReachingDefs(LiveInterval &IntA,
203                                                     LiveInterval &IntB,
204                                                     VNInfo *AValNo,
205                                                     VNInfo *BValNo) {
206   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
207        AI != AE; ++AI) {
208     if (AI->valno != AValNo) continue;
209     LiveInterval::Ranges::iterator BI =
210       std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
211     if (BI != IntB.ranges.begin())
212       --BI;
213     for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
214       if (BI->valno == BValNo)
215         continue;
216       if (BI->start <= AI->start && BI->end > AI->start)
217         return true;
218       if (BI->start > AI->start && BI->start < AI->end)
219         return true;
220     }
221   }
222   return false;
223 }
224
225 /// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy with IntA
226 /// being the source and IntB being the dest, thus this defines a value number
227 /// in IntB.  If the source value number (in IntA) is defined by a commutable
228 /// instruction and its other operand is coalesced to the copy dest register,
229 /// see if we can transform the copy into a noop by commuting the definition. For
230 /// example,
231 ///
232 ///  A3 = op A2 B0<kill>
233 ///    ...
234 ///  B1 = A3      <- this copy
235 ///    ...
236 ///     = op A3   <- more uses
237 ///
238 /// ==>
239 ///
240 ///  B2 = op B0 A2<kill>
241 ///    ...
242 ///  B1 = B2      <- now an identify copy
243 ///    ...
244 ///     = op B2   <- more uses
245 ///
246 /// This returns true if an interval was modified.
247 ///
248 bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
249                                                         LiveInterval &IntB,
250                                                         MachineInstr *CopyMI) {
251   unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
252
253   // FIXME: For now, only eliminate the copy by commuting its def when the
254   // source register is a virtual register. We want to guard against cases
255   // where the copy is a back edge copy and commuting the def lengthen the
256   // live interval of the source register to the entire loop.
257   if (TargetRegisterInfo::isPhysicalRegister(IntA.reg))
258     return false;
259
260   // BValNo is a value number in B that is defined by a copy from A. 'B3' in
261   // the example above.
262   LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
263   if (BLR == IntB.end()) // Should never happen!
264     return false;
265   VNInfo *BValNo = BLR->valno;
266   
267   // Get the location that B is defined at.  Two options: either this value has
268   // an unknown definition point or it is defined at CopyIdx.  If unknown, we 
269   // can't process it.
270   if (!BValNo->copy) return false;
271   assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
272   
273   // AValNo is the value number in A that defines the copy, A3 in the example.
274   LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
275   if (ALR == IntA.end()) // Should never happen!
276     return false;
277   VNInfo *AValNo = ALR->valno;
278   // If other defs can reach uses of this def, then it's not safe to perform
279   // the optimization.
280   if (AValNo->def == ~0U || AValNo->def == ~1U || AValNo->hasPHIKill)
281     return false;
282   MachineInstr *DefMI = li_->getInstructionFromIndex(AValNo->def);
283   const TargetInstrDesc &TID = DefMI->getDesc();
284   unsigned NewDstIdx;
285   if (!TID.isCommutable() ||
286       !tii_->CommuteChangesDestination(DefMI, NewDstIdx))
287     return false;
288
289   MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
290   unsigned NewReg = NewDstMO.getReg();
291   if (NewReg != IntB.reg || !NewDstMO.isKill())
292     return false;
293
294   // Make sure there are no other definitions of IntB that would reach the
295   // uses which the new definition can reach.
296   if (HasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
297     return false;
298
299   // If some of the uses of IntA.reg is already coalesced away, return false.
300   // It's not possible to determine whether it's safe to perform the coalescing.
301   for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
302          UE = mri_->use_end(); UI != UE; ++UI) {
303     MachineInstr *UseMI = &*UI;
304     unsigned UseIdx = li_->getInstructionIndex(UseMI);
305     LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
306     if (ULR == IntA.end())
307       continue;
308     if (ULR->valno == AValNo && JoinedCopies.count(UseMI))
309       return false;
310   }
311
312   // At this point we have decided that it is legal to do this
313   // transformation.  Start by commuting the instruction.
314   MachineBasicBlock *MBB = DefMI->getParent();
315   MachineInstr *NewMI = tii_->commuteInstruction(DefMI);
316   if (!NewMI)
317     return false;
318   if (NewMI != DefMI) {
319     li_->ReplaceMachineInstrInMaps(DefMI, NewMI);
320     MBB->insert(DefMI, NewMI);
321     MBB->erase(DefMI);
322   }
323   unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
324   NewMI->getOperand(OpIdx).setIsKill();
325
326   bool BHasPHIKill = BValNo->hasPHIKill;
327   SmallVector<VNInfo*, 4> BDeadValNos;
328   SmallVector<unsigned, 4> BKills;
329   std::map<unsigned, unsigned> BExtend;
330
331   // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
332   // A = or A, B
333   // ...
334   // B = A
335   // ...
336   // C = A<kill>
337   // ...
338   //   = B
339   //
340   // then do not add kills of A to the newly created B interval.
341   bool Extended = BLR->end > ALR->end && ALR->end != ALR->start;
342   if (Extended)
343     BExtend[ALR->end] = BLR->end;
344
345   // Update uses of IntA of the specific Val# with IntB.
346   for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
347          UE = mri_->use_end(); UI != UE;) {
348     MachineOperand &UseMO = UI.getOperand();
349     MachineInstr *UseMI = &*UI;
350     ++UI;
351     if (JoinedCopies.count(UseMI))
352       continue;
353     unsigned UseIdx = li_->getInstructionIndex(UseMI);
354     LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
355     if (ULR == IntA.end() || ULR->valno != AValNo)
356       continue;
357     UseMO.setReg(NewReg);
358     if (UseMI == CopyMI)
359       continue;
360     if (UseMO.isKill()) {
361       if (Extended)
362         UseMO.setIsKill(false);
363       else
364         BKills.push_back(li_->getUseIndex(UseIdx)+1);
365     }
366     unsigned SrcReg, DstReg;
367     if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg))
368       continue;
369     if (DstReg == IntB.reg) {
370       // This copy will become a noop. If it's defining a new val#,
371       // remove that val# as well. However this live range is being
372       // extended to the end of the existing live range defined by the copy.
373       unsigned DefIdx = li_->getDefIndex(UseIdx);
374       const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
375       BHasPHIKill |= DLR->valno->hasPHIKill;
376       assert(DLR->valno->def == DefIdx);
377       BDeadValNos.push_back(DLR->valno);
378       BExtend[DLR->start] = DLR->end;
379       JoinedCopies.insert(UseMI);
380       // If this is a kill but it's going to be removed, the last use
381       // of the same val# is the new kill.
382       if (UseMO.isKill())
383         BKills.pop_back();
384     }
385   }
386
387   // We need to insert a new liverange: [ALR.start, LastUse). It may be we can
388   // simply extend BLR if CopyMI doesn't end the range.
389   DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
390
391   // Remove val#'s defined by copies that will be coalesced away.
392   for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i)
393     IntB.removeValNo(BDeadValNos[i]);
394
395   // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
396   // is updated. Kills are also updated.
397   VNInfo *ValNo = BValNo;
398   ValNo->def = AValNo->def;
399   ValNo->copy = NULL;
400   for (unsigned j = 0, ee = ValNo->kills.size(); j != ee; ++j) {
401     unsigned Kill = ValNo->kills[j];
402     if (Kill != BLR->end)
403       BKills.push_back(Kill);
404   }
405   ValNo->kills.clear();
406   for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
407        AI != AE; ++AI) {
408     if (AI->valno != AValNo) continue;
409     unsigned End = AI->end;
410     std::map<unsigned, unsigned>::iterator EI = BExtend.find(End);
411     if (EI != BExtend.end())
412       End = EI->second;
413     IntB.addRange(LiveRange(AI->start, End, ValNo));
414   }
415   IntB.addKills(ValNo, BKills);
416   ValNo->hasPHIKill = BHasPHIKill;
417
418   DOUT << "   result = "; IntB.print(DOUT, tri_);
419   DOUT << "\n";
420
421   DOUT << "\nShortening: "; IntA.print(DOUT, tri_);
422   IntA.removeValNo(AValNo);
423   DOUT << "   result = "; IntA.print(DOUT, tri_);
424   DOUT << "\n";
425
426   ++numCommutes;
427   return true;
428 }
429
430 /// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
431 /// computation, replace the copy by rematerialize the definition.
432 bool SimpleRegisterCoalescing::ReMaterializeTrivialDef(LiveInterval &SrcInt,
433                                                        unsigned DstReg,
434                                                        MachineInstr *CopyMI) {
435   unsigned CopyIdx = li_->getUseIndex(li_->getInstructionIndex(CopyMI));
436   LiveInterval::iterator SrcLR = SrcInt.FindLiveRangeContaining(CopyIdx);
437   if (SrcLR == SrcInt.end()) // Should never happen!
438     return false;
439   VNInfo *ValNo = SrcLR->valno;
440   // If other defs can reach uses of this def, then it's not safe to perform
441   // the optimization.
442   if (ValNo->def == ~0U || ValNo->def == ~1U || ValNo->hasPHIKill)
443     return false;
444   MachineInstr *DefMI = li_->getInstructionFromIndex(ValNo->def);
445   const TargetInstrDesc &TID = DefMI->getDesc();
446   if (!TID.isAsCheapAsAMove())
447     return false;
448   bool SawStore = false;
449   if (!DefMI->isSafeToMove(tii_, SawStore))
450     return false;
451
452   unsigned DefIdx = li_->getDefIndex(CopyIdx);
453   const LiveRange *DLR= li_->getInterval(DstReg).getLiveRangeContaining(DefIdx);
454   DLR->valno->copy = NULL;
455
456   MachineBasicBlock::iterator MII = CopyMI;
457   MachineBasicBlock *MBB = CopyMI->getParent();
458   tii_->reMaterialize(*MBB, MII, DstReg, DefMI);
459   MachineInstr *NewMI = prior(MII);
460   // CopyMI may have implicit instructions, transfer them over to the newly
461   // rematerialized instruction. And update implicit def interval valnos.
462   for (unsigned i = CopyMI->getDesc().getNumOperands(),
463          e = CopyMI->getNumOperands(); i != e; ++i) {
464     MachineOperand &MO = CopyMI->getOperand(i);
465     if (MO.isReg() && MO.isImplicit())
466       NewMI->addOperand(MO);
467     if (MO.isDef()) {
468       unsigned Reg = MO.getReg();
469       DLR = li_->getInterval(Reg).getLiveRangeContaining(DefIdx);
470       if (DLR && DLR->valno->copy == CopyMI)
471         DLR->valno->copy = NULL;
472     }
473   }
474
475   li_->ReplaceMachineInstrInMaps(CopyMI, NewMI);
476   CopyMI->eraseFromParent();
477   ReMatCopies.insert(CopyMI);
478   ++NumReMats;
479   return true;
480 }
481
482 /// isBackEdgeCopy - Returns true if CopyMI is a back edge copy.
483 ///
484 bool SimpleRegisterCoalescing::isBackEdgeCopy(MachineInstr *CopyMI,
485                                               unsigned DstReg) const {
486   MachineBasicBlock *MBB = CopyMI->getParent();
487   const MachineLoop *L = loopInfo->getLoopFor(MBB);
488   if (!L)
489     return false;
490   if (MBB != L->getLoopLatch())
491     return false;
492
493   LiveInterval &LI = li_->getInterval(DstReg);
494   unsigned DefIdx = li_->getInstructionIndex(CopyMI);
495   LiveInterval::const_iterator DstLR =
496     LI.FindLiveRangeContaining(li_->getDefIndex(DefIdx));
497   if (DstLR == LI.end())
498     return false;
499   unsigned KillIdx = li_->getMBBEndIdx(MBB) + 1;
500   if (DstLR->valno->kills.size() == 1 &&
501       DstLR->valno->kills[0] == KillIdx && DstLR->valno->hasPHIKill)
502     return true;
503   return false;
504 }
505
506 /// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
507 /// update the subregister number if it is not zero. If DstReg is a
508 /// physical register and the existing subregister number of the def / use
509 /// being updated is not zero, make sure to set it to the correct physical
510 /// subregister.
511 void
512 SimpleRegisterCoalescing::UpdateRegDefsUses(unsigned SrcReg, unsigned DstReg,
513                                             unsigned SubIdx) {
514   bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
515   if (DstIsPhys && SubIdx) {
516     // Figure out the real physical register we are updating with.
517     DstReg = tri_->getSubReg(DstReg, SubIdx);
518     SubIdx = 0;
519   }
520
521   for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
522          E = mri_->reg_end(); I != E; ) {
523     MachineOperand &O = I.getOperand();
524     MachineInstr *UseMI = &*I;
525     ++I;
526     unsigned OldSubIdx = O.getSubReg();
527     if (DstIsPhys) {
528       unsigned UseDstReg = DstReg;
529       if (OldSubIdx)
530           UseDstReg = tri_->getSubReg(DstReg, OldSubIdx);
531
532       unsigned CopySrcReg, CopyDstReg;
533       if (tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg) &&
534           CopySrcReg != CopyDstReg &&
535           CopySrcReg == SrcReg && CopyDstReg != UseDstReg) {
536         // If the use is a copy and it won't be coalesced away, and its source
537         // is defined by a trivial computation, try to rematerialize it instead.
538         if (ReMaterializeTrivialDef(li_->getInterval(SrcReg), CopyDstReg,UseMI))
539           continue;
540       }
541
542       O.setReg(UseDstReg);
543       O.setSubReg(0);
544     } else {
545       // Sub-register indexes goes from small to large. e.g.
546       // RAX: 1 -> AL, 2 -> AX, 3 -> EAX
547       // EAX: 1 -> AL, 2 -> AX
548       // So RAX's sub-register 2 is AX, RAX's sub-regsiter 3 is EAX, whose
549       // sub-register 2 is also AX.
550       if (SubIdx && OldSubIdx && SubIdx != OldSubIdx)
551         assert(OldSubIdx < SubIdx && "Conflicting sub-register index!");
552       else if (SubIdx)
553         O.setSubReg(SubIdx);
554       // Remove would-be duplicated kill marker.
555       if (O.isKill() && UseMI->killsRegister(DstReg))
556         O.setIsKill(false);
557       O.setReg(DstReg);
558     }
559   }
560 }
561
562 /// RemoveDeadImpDef - Remove implicit_def instructions which are "re-defining"
563 /// registers due to insert_subreg coalescing. e.g.
564 /// r1024 = op
565 /// r1025 = implicit_def
566 /// r1025 = insert_subreg r1025, r1024
567 ///       = op r1025
568 /// =>
569 /// r1025 = op
570 /// r1025 = implicit_def
571 /// r1025 = insert_subreg r1025, r1025
572 ///       = op r1025
573 void
574 SimpleRegisterCoalescing::RemoveDeadImpDef(unsigned Reg, LiveInterval &LI) {
575   for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
576          E = mri_->reg_end(); I != E; ) {
577     MachineOperand &O = I.getOperand();
578     MachineInstr *DefMI = &*I;
579     ++I;
580     if (!O.isDef())
581       continue;
582     if (DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF)
583       continue;
584     if (!LI.liveBeforeAndAt(li_->getInstructionIndex(DefMI)))
585       continue;
586     li_->RemoveMachineInstrFromMaps(DefMI);
587     DefMI->eraseFromParent();
588   }
589 }
590
591 /// RemoveUnnecessaryKills - Remove kill markers that are no longer accurate
592 /// due to live range lengthening as the result of coalescing.
593 void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
594                                                       LiveInterval &LI) {
595   for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
596          UE = mri_->use_end(); UI != UE; ++UI) {
597     MachineOperand &UseMO = UI.getOperand();
598     if (UseMO.isKill()) {
599       MachineInstr *UseMI = UseMO.getParent();
600       unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
601       if (JoinedCopies.count(UseMI))
602         continue;
603       const LiveRange *UI = LI.getLiveRangeContaining(UseIdx);
604       if (!UI || !LI.isKill(UI->valno, UseIdx+1))
605         UseMO.setIsKill(false);
606     }
607   }
608 }
609
610 /// removeRange - Wrapper for LiveInterval::removeRange. This removes a range
611 /// from a physical register live interval as well as from the live intervals
612 /// of its sub-registers.
613 static void removeRange(LiveInterval &li, unsigned Start, unsigned End,
614                         LiveIntervals *li_, const TargetRegisterInfo *tri_) {
615   li.removeRange(Start, End, true);
616   if (TargetRegisterInfo::isPhysicalRegister(li.reg)) {
617     for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
618       if (!li_->hasInterval(*SR))
619         continue;
620       LiveInterval &sli = li_->getInterval(*SR);
621       unsigned RemoveEnd = Start;
622       while (RemoveEnd != End) {
623         LiveInterval::iterator LR = sli.FindLiveRangeContaining(Start);
624         if (LR == sli.end())
625           break;
626         RemoveEnd = (LR->end < End) ? LR->end : End;
627         sli.removeRange(Start, RemoveEnd, true);
628         Start = RemoveEnd;
629       }
630     }
631   }
632 }
633
634 /// removeIntervalIfEmpty - Check if the live interval of a physical register
635 /// is empty, if so remove it and also remove the empty intervals of its
636 /// sub-registers. Return true if live interval is removed.
637 static bool removeIntervalIfEmpty(LiveInterval &li, LiveIntervals *li_,
638                                   const TargetRegisterInfo *tri_) {
639   if (li.empty()) {
640     if (TargetRegisterInfo::isPhysicalRegister(li.reg))
641       for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
642         if (!li_->hasInterval(*SR))
643           continue;
644         LiveInterval &sli = li_->getInterval(*SR);
645         if (sli.empty())
646           li_->removeInterval(*SR);
647       }
648     li_->removeInterval(li.reg);
649     return true;
650   }
651   return false;
652 }
653
654 /// ShortenDeadCopyLiveRange - Shorten a live range defined by a dead copy.
655 /// Return true if live interval is removed.
656 bool SimpleRegisterCoalescing::ShortenDeadCopyLiveRange(LiveInterval &li,
657                                                         MachineInstr *CopyMI) {
658   unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
659   LiveInterval::iterator MLR =
660     li.FindLiveRangeContaining(li_->getDefIndex(CopyIdx));
661   if (MLR == li.end())
662     return false;  // Already removed by ShortenDeadCopySrcLiveRange.
663   unsigned RemoveStart = MLR->start;
664   unsigned RemoveEnd = MLR->end;
665   // Remove the liverange that's defined by this.
666   if (RemoveEnd == li_->getDefIndex(CopyIdx)+1) {
667     removeRange(li, RemoveStart, RemoveEnd, li_, tri_);
668     return removeIntervalIfEmpty(li, li_, tri_);
669   }
670   return false;
671 }
672
673 /// PropagateDeadness - Propagate the dead marker to the instruction which
674 /// defines the val#.
675 static void PropagateDeadness(LiveInterval &li, MachineInstr *CopyMI,
676                               unsigned &LRStart, LiveIntervals *li_,
677                               const TargetRegisterInfo* tri_) {
678   MachineInstr *DefMI =
679     li_->getInstructionFromIndex(li_->getDefIndex(LRStart));
680   if (DefMI && DefMI != CopyMI) {
681     int DeadIdx = DefMI->findRegisterDefOperandIdx(li.reg, false, tri_);
682     if (DeadIdx != -1) {
683       DefMI->getOperand(DeadIdx).setIsDead();
684       // A dead def should have a single cycle interval.
685       ++LRStart;
686     }
687   }
688 }
689
690 /// isSameOrFallThroughBB - Return true if MBB == SuccMBB or MBB simply
691 /// fallthoughs to SuccMBB.
692 static bool isSameOrFallThroughBB(MachineBasicBlock *MBB,
693                                   MachineBasicBlock *SuccMBB,
694                                   const TargetInstrInfo *tii_) {
695   if (MBB == SuccMBB)
696     return true;
697   MachineBasicBlock *TBB = 0, *FBB = 0;
698   SmallVector<MachineOperand, 4> Cond;
699   return !tii_->AnalyzeBranch(*MBB, TBB, FBB, Cond) && !TBB && !FBB &&
700     MBB->isSuccessor(SuccMBB);
701 }
702
703 /// ShortenDeadCopySrcLiveRange - Shorten a live range as it's artificially
704 /// extended by a dead copy. Mark the last use (if any) of the val# as kill as
705 /// ends the live range there. If there isn't another use, then this live range
706 /// is dead. Return true if live interval is removed.
707 bool
708 SimpleRegisterCoalescing::ShortenDeadCopySrcLiveRange(LiveInterval &li,
709                                                       MachineInstr *CopyMI) {
710   unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
711   if (CopyIdx == 0) {
712     // FIXME: special case: function live in. It can be a general case if the
713     // first instruction index starts at > 0 value.
714     assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
715     // Live-in to the function but dead. Remove it from entry live-in set.
716     if (mf_->begin()->isLiveIn(li.reg))
717       mf_->begin()->removeLiveIn(li.reg);
718     const LiveRange *LR = li.getLiveRangeContaining(CopyIdx);
719     removeRange(li, LR->start, LR->end, li_, tri_);
720     return removeIntervalIfEmpty(li, li_, tri_);
721   }
722
723   LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx-1);
724   if (LR == li.end())
725     // Livein but defined by a phi.
726     return false;
727
728   unsigned RemoveStart = LR->start;
729   unsigned RemoveEnd = li_->getDefIndex(CopyIdx)+1;
730   if (LR->end > RemoveEnd)
731     // More uses past this copy? Nothing to do.
732     return false;
733
734   MachineBasicBlock *CopyMBB = CopyMI->getParent();
735   unsigned MBBStart = li_->getMBBStartIdx(CopyMBB);
736   unsigned LastUseIdx;
737   MachineOperand *LastUse = lastRegisterUse(LR->start, CopyIdx-1, li.reg,
738                                             LastUseIdx);
739   if (LastUse) {
740     MachineInstr *LastUseMI = LastUse->getParent();
741     if (!isSameOrFallThroughBB(LastUseMI->getParent(), CopyMBB, tii_)) {
742       // r1024 = op
743       // ...
744       // BB1:
745       //       = r1024
746       //
747       // BB2:
748       // r1025<dead> = r1024<kill>
749       if (MBBStart < LR->end)
750         removeRange(li, MBBStart, LR->end, li_, tri_);
751       return false;
752     }
753
754     // There are uses before the copy, just shorten the live range to the end
755     // of last use.
756     LastUse->setIsKill();
757     removeRange(li, li_->getDefIndex(LastUseIdx), LR->end, li_, tri_);
758     unsigned SrcReg, DstReg;
759     if (tii_->isMoveInstr(*LastUseMI, SrcReg, DstReg) &&
760         DstReg == li.reg) {
761       // Last use is itself an identity code.
762       int DeadIdx = LastUseMI->findRegisterDefOperandIdx(li.reg, false, tri_);
763       LastUseMI->getOperand(DeadIdx).setIsDead();
764     }
765     return false;
766   }
767
768   // Is it livein?
769   if (LR->start <= MBBStart && LR->end > MBBStart) {
770     if (LR->start == 0) {
771       assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
772       // Live-in to the function but dead. Remove it from entry live-in set.
773       mf_->begin()->removeLiveIn(li.reg);
774     }
775     // FIXME: Shorten intervals in BBs that reaches this BB.
776   }
777
778   if (LR->valno->def == RemoveStart)
779     // If the def MI defines the val#, propagate the dead marker.
780     PropagateDeadness(li, CopyMI, RemoveStart, li_, tri_);
781
782   removeRange(li, RemoveStart, LR->end, li_, tri_);
783   return removeIntervalIfEmpty(li, li_, tri_);
784 }
785
786 /// CanCoalesceWithImpDef - Returns true if the specified copy instruction
787 /// from an implicit def to another register can be coalesced away.
788 bool SimpleRegisterCoalescing::CanCoalesceWithImpDef(MachineInstr *CopyMI,
789                                                      LiveInterval &li,
790                                                      LiveInterval &ImpLi) const{
791   if (!CopyMI->killsRegister(ImpLi.reg))
792     return false;
793   unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
794   LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx);
795   if (LR == li.end())
796     return false;
797   if (LR->valno->hasPHIKill)
798     return false;
799   if (LR->valno->def != CopyIdx)
800     return false;
801   // Make sure all of val# uses are copies.
802   for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(li.reg),
803          UE = mri_->use_end(); UI != UE;) {
804     MachineInstr *UseMI = &*UI;
805     ++UI;
806     if (JoinedCopies.count(UseMI))
807       continue;
808     unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
809     LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
810     if (ULR == li.end() || ULR->valno != LR->valno)
811       continue;
812     // If the use is not a use, then it's not safe to coalesce the move.
813     unsigned SrcReg, DstReg;
814     if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg)) {
815       if (UseMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG &&
816           UseMI->getOperand(1).getReg() == li.reg)
817         continue;
818       return false;
819     }
820   }
821   return true;
822 }
823
824
825 /// RemoveCopiesFromValNo - The specified value# is defined by an implicit
826 /// def and it is being removed. Turn all copies from this value# into
827 /// identity copies so they will be removed.
828 void SimpleRegisterCoalescing::RemoveCopiesFromValNo(LiveInterval &li,
829                                                      VNInfo *VNI) {
830   SmallVector<MachineInstr*, 4> ImpDefs;
831   MachineOperand *LastUse = NULL;
832   unsigned LastUseIdx = li_->getUseIndex(VNI->def);
833   for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg),
834          RE = mri_->reg_end(); RI != RE;) {
835     MachineOperand *MO = &RI.getOperand();
836     MachineInstr *MI = &*RI;
837     ++RI;
838     if (MO->isDef()) {
839       if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
840         ImpDefs.push_back(MI);
841       }
842       continue;
843     }
844     if (JoinedCopies.count(MI))
845       continue;
846     unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(MI));
847     LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
848     if (ULR == li.end() || ULR->valno != VNI)
849       continue;
850     // If the use is a copy, turn it into an identity copy.
851     unsigned SrcReg, DstReg;
852     if (tii_->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == li.reg) {
853       // Each use MI may have multiple uses of this register. Change them all.
854       for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
855         MachineOperand &MO = MI->getOperand(i);
856         if (MO.isReg() && MO.getReg() == li.reg)
857           MO.setReg(DstReg);
858       }
859       JoinedCopies.insert(MI);
860     } else if (UseIdx > LastUseIdx) {
861       LastUseIdx = UseIdx;
862       LastUse = MO;
863     }
864   }
865   if (LastUse)
866     LastUse->setIsKill();
867   else {
868     // Remove dead implicit_def's.
869     while (!ImpDefs.empty()) {
870       MachineInstr *ImpDef = ImpDefs.back();
871       ImpDefs.pop_back();
872       li_->RemoveMachineInstrFromMaps(ImpDef);
873       ImpDef->eraseFromParent();
874     }
875   }
876 }
877
878 static unsigned getMatchingSuperReg(unsigned Reg, unsigned SubIdx, 
879                                     const TargetRegisterClass *RC,
880                                     const TargetRegisterInfo* TRI) {
881   for (const unsigned *SRs = TRI->getSuperRegisters(Reg);
882        unsigned SR = *SRs; ++SRs)
883     if (Reg == TRI->getSubReg(SR, SubIdx) && RC->contains(SR))
884       return SR;
885   return 0;
886 }
887
888 /// isProfitableToCoalesceToSubRC - Given that register class of DstReg is
889 /// a subset of the register class of SrcReg, return true if it's profitable
890 /// to coalesce the two registers.
891 bool
892 SimpleRegisterCoalescing::isProfitableToCoalesceToSubRC(unsigned SrcReg,
893                                                         unsigned DstReg,
894                                                         MachineBasicBlock *MBB){
895   if (!CrossClassJoin)
896     return false;
897
898   // First let's make sure all uses are in the same MBB.
899   for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(SrcReg),
900          RE = mri_->reg_end(); RI != RE; ++RI) {
901     MachineInstr &MI = *RI;
902     if (MI.getParent() != MBB)
903       return false;
904   }
905   for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(DstReg),
906          RE = mri_->reg_end(); RI != RE; ++RI) {
907     MachineInstr &MI = *RI;
908     if (MI.getParent() != MBB)
909       return false;
910   }
911
912   // Then make sure the intervals are *short*.
913   LiveInterval &SrcInt = li_->getInterval(SrcReg);
914   LiveInterval &DstInt = li_->getInterval(DstReg);
915   unsigned SrcSize = li_->getApproximateInstructionCount(SrcInt);
916   unsigned DstSize = li_->getApproximateInstructionCount(DstInt);
917   const TargetRegisterClass *RC = mri_->getRegClass(DstReg);
918   unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
919   return (SrcSize + DstSize) <= Threshold;
920 }
921
922
923 /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
924 /// which are the src/dst of the copy instruction CopyMI.  This returns true
925 /// if the copy was successfully coalesced away. If it is not currently
926 /// possible to coalesce this interval, but it may be possible if other
927 /// things get coalesced, then it returns true by reference in 'Again'.
928 bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
929   MachineInstr *CopyMI = TheCopy.MI;
930
931   Again = false;
932   if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
933     return false; // Already done.
934
935   DOUT << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI;
936
937   unsigned SrcReg;
938   unsigned DstReg;
939   bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG;
940   bool isInsSubReg = CopyMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG;
941   unsigned SubIdx = 0;
942   if (isExtSubReg) {
943     DstReg = CopyMI->getOperand(0).getReg();
944     SrcReg = CopyMI->getOperand(1).getReg();
945   } else if (isInsSubReg) {
946     if (CopyMI->getOperand(2).getSubReg()) {
947       DOUT << "\tSource of insert_subreg is already coalesced "
948            << "to another register.\n";
949       return false;  // Not coalescable.
950     }
951     DstReg = CopyMI->getOperand(0).getReg();
952     SrcReg = CopyMI->getOperand(2).getReg();
953   } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg)) {
954     assert(0 && "Unrecognized copy instruction!");
955     return false;
956   }
957
958   // If they are already joined we continue.
959   if (SrcReg == DstReg) {
960     DOUT << "\tCopy already coalesced.\n";
961     return false;  // Not coalescable.
962   }
963   
964   bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
965   bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
966
967   // If they are both physical registers, we cannot join them.
968   if (SrcIsPhys && DstIsPhys) {
969     DOUT << "\tCan not coalesce physregs.\n";
970     return false;  // Not coalescable.
971   }
972   
973   // We only join virtual registers with allocatable physical registers.
974   if (SrcIsPhys && !allocatableRegs_[SrcReg]) {
975     DOUT << "\tSrc reg is unallocatable physreg.\n";
976     return false;  // Not coalescable.
977   }
978   if (DstIsPhys && !allocatableRegs_[DstReg]) {
979     DOUT << "\tDst reg is unallocatable physreg.\n";
980     return false;  // Not coalescable.
981   }
982
983   // Should be non-null only when coalescing to a sub-register class.
984   const TargetRegisterClass *SubRC = NULL;
985   MachineBasicBlock *CopyMBB = CopyMI->getParent();
986   unsigned RealDstReg = 0;
987   unsigned RealSrcReg = 0;
988   if (isExtSubReg || isInsSubReg) {
989     SubIdx = CopyMI->getOperand(isExtSubReg ? 2 : 3).getImm();
990     if (SrcIsPhys && isExtSubReg) {
991       // r1024 = EXTRACT_SUBREG EAX, 0 then r1024 is really going to be
992       // coalesced with AX.
993       unsigned DstSubIdx = CopyMI->getOperand(0).getSubReg();
994       if (DstSubIdx) {
995         // r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been
996         // coalesced to a larger register so the subreg indices cancel out.
997         if (DstSubIdx != SubIdx) {
998           DOUT << "\t Sub-register indices mismatch.\n";
999           return false; // Not coalescable.
1000         }
1001       } else
1002         SrcReg = tri_->getSubReg(SrcReg, SubIdx);
1003       SubIdx = 0;
1004     } else if (DstIsPhys && isInsSubReg) {
1005       // EAX = INSERT_SUBREG EAX, r1024, 0
1006       unsigned SrcSubIdx = CopyMI->getOperand(2).getSubReg();
1007       if (SrcSubIdx) {
1008         // EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been
1009         // coalesced to a larger register so the subreg indices cancel out.
1010         if (SrcSubIdx != SubIdx) {
1011           DOUT << "\t Sub-register indices mismatch.\n";
1012           return false; // Not coalescable.
1013         }
1014       } else
1015         DstReg = tri_->getSubReg(DstReg, SubIdx);
1016       SubIdx = 0;
1017     } else if ((DstIsPhys && isExtSubReg) || (SrcIsPhys && isInsSubReg)) {
1018       // If this is a extract_subreg where dst is a physical register, e.g.
1019       // cl = EXTRACT_SUBREG reg1024, 1
1020       // then create and update the actual physical register allocated to RHS.
1021       // Ditto for
1022       // reg1024 = INSERT_SUBREG r1024, cl, 1
1023       if (CopyMI->getOperand(1).getSubReg()) {
1024         DOUT << "\tSrc of extract_ / insert_subreg already coalesced with reg"
1025              << " of a super-class.\n";
1026         return false; // Not coalescable.
1027       }
1028       const TargetRegisterClass *RC =
1029         mri_->getRegClass(isExtSubReg ? SrcReg : DstReg);
1030       if (isExtSubReg) {
1031         RealDstReg = getMatchingSuperReg(DstReg, SubIdx, RC, tri_);
1032         assert(RealDstReg && "Invalid extra_subreg instruction!");
1033       } else {
1034         RealSrcReg = getMatchingSuperReg(SrcReg, SubIdx, RC, tri_);
1035         assert(RealSrcReg && "Invalid extra_subreg instruction!");
1036       }
1037
1038       // For this type of EXTRACT_SUBREG, conservatively
1039       // check if the live interval of the source register interfere with the
1040       // actual super physical register we are trying to coalesce with.
1041       unsigned PhysReg = isExtSubReg ? RealDstReg : RealSrcReg;
1042       LiveInterval &RHS = li_->getInterval(isExtSubReg ? SrcReg : DstReg);
1043       if (li_->hasInterval(PhysReg) &&
1044           RHS.overlaps(li_->getInterval(PhysReg))) {
1045         DOUT << "Interfere with register ";
1046         DEBUG(li_->getInterval(PhysReg).print(DOUT, tri_));
1047         return false; // Not coalescable
1048       }
1049       for (const unsigned* SR = tri_->getSubRegisters(PhysReg); *SR; ++SR)
1050         if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1051           DOUT << "Interfere with sub-register ";
1052           DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1053           return false; // Not coalescable
1054         }
1055       SubIdx = 0;
1056     } else {
1057       unsigned OldSubIdx = isExtSubReg ? CopyMI->getOperand(0).getSubReg()
1058         : CopyMI->getOperand(2).getSubReg();
1059       if (OldSubIdx) {
1060         if (OldSubIdx == SubIdx &&
1061             !differingRegisterClasses(SrcReg, DstReg, SubRC))
1062           // r1024<2> = EXTRACT_SUBREG r1025, 2. Then r1024 has already been
1063           // coalesced to a larger register so the subreg indices cancel out.
1064           // Also check if the other larger register is of the same register
1065           // class as the would be resulting register.
1066           SubIdx = 0;
1067         else {
1068           DOUT << "\t Sub-register indices mismatch.\n";
1069           return false; // Not coalescable.
1070         }
1071       }
1072       if (SubIdx) {
1073         unsigned LargeReg = isExtSubReg ? SrcReg : DstReg;
1074         unsigned SmallReg = isExtSubReg ? DstReg : SrcReg;
1075         unsigned LargeRegSize = 
1076           li_->getApproximateInstructionCount(li_->getInterval(LargeReg));
1077         unsigned SmallRegSize = 
1078           li_->getApproximateInstructionCount(li_->getInterval(SmallReg));
1079         const TargetRegisterClass *RC = mri_->getRegClass(SmallReg);
1080         unsigned Threshold = allocatableRCRegs_[RC].count();
1081         // Be conservative. If both sides are virtual registers, do not coalesce
1082         // if this will cause a high use density interval to target a smaller
1083         // set of registers.
1084         if (SmallRegSize > Threshold || LargeRegSize > Threshold) {
1085           if ((float)std::distance(mri_->use_begin(SmallReg),
1086                                    mri_->use_end()) / SmallRegSize <
1087               (float)std::distance(mri_->use_begin(LargeReg),
1088                                    mri_->use_end()) / LargeRegSize) {
1089             Again = true;  // May be possible to coalesce later.
1090             return false;
1091           }
1092         }
1093       }
1094     }
1095   } else if (differingRegisterClasses(SrcReg, DstReg, SubRC)) {
1096     // FIXME: What if the resul of a EXTRACT_SUBREG is then coalesced
1097     // with another? If it's the resulting destination register, then
1098     // the subidx must be propagated to uses (but only those defined
1099     // by the EXTRACT_SUBREG). If it's being coalesced into another
1100     // register, it should be safe because register is assumed to have
1101     // the register class of the super-register.
1102
1103     if (!SubRC || !isProfitableToCoalesceToSubRC(SrcReg, DstReg, CopyMBB)) {
1104       // If they are not of the same register class, we cannot join them.
1105       DOUT << "\tSrc/Dest are different register classes.\n";
1106       // Allow the coalescer to try again in case either side gets coalesced to
1107       // a physical register that's compatible with the other side. e.g.
1108       // r1024 = MOV32to32_ r1025
1109       // but later r1024 is assigned EAX then r1025 may be coalesced with EAX.
1110       Again = true;  // May be possible to coalesce later.
1111       return false;
1112     }
1113   }
1114   
1115   LiveInterval &SrcInt = li_->getInterval(SrcReg);
1116   LiveInterval &DstInt = li_->getInterval(DstReg);
1117   assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg &&
1118          "Register mapping is horribly broken!");
1119
1120   DOUT << "\t\tInspecting "; SrcInt.print(DOUT, tri_);
1121   DOUT << " and "; DstInt.print(DOUT, tri_);
1122   DOUT << ": ";
1123
1124   // Check if it is necessary to propagate "isDead" property.
1125   if (!isExtSubReg && !isInsSubReg) {
1126     MachineOperand *mopd = CopyMI->findRegisterDefOperand(DstReg, false);
1127     bool isDead = mopd->isDead();
1128
1129     // We need to be careful about coalescing a source physical register with a
1130     // virtual register. Once the coalescing is done, it cannot be broken and
1131     // these are not spillable! If the destination interval uses are far away,
1132     // think twice about coalescing them!
1133     if (!isDead && (SrcIsPhys || DstIsPhys)) {
1134       LiveInterval &JoinVInt = SrcIsPhys ? DstInt : SrcInt;
1135       unsigned JoinVReg = SrcIsPhys ? DstReg : SrcReg;
1136       unsigned JoinPReg = SrcIsPhys ? SrcReg : DstReg;
1137       const TargetRegisterClass *RC = mri_->getRegClass(JoinVReg);
1138       unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
1139       if (TheCopy.isBackEdge)
1140         Threshold *= 2; // Favors back edge copies.
1141
1142       // If the virtual register live interval is long but it has low use desity,
1143       // do not join them, instead mark the physical register as its allocation
1144       // preference.
1145       unsigned Length = li_->getApproximateInstructionCount(JoinVInt);
1146       if (Length > Threshold &&
1147           (((float)std::distance(mri_->use_begin(JoinVReg),
1148                               mri_->use_end()) / Length) < (1.0 / Threshold))) {
1149         JoinVInt.preference = JoinPReg;
1150         ++numAborts;
1151         DOUT << "\tMay tie down a physical register, abort!\n";
1152         Again = true;  // May be possible to coalesce later.
1153         return false;
1154       }
1155     }
1156   }
1157
1158   // Okay, attempt to join these two intervals.  On failure, this returns false.
1159   // Otherwise, if one of the intervals being joined is a physreg, this method
1160   // always canonicalizes DstInt to be it.  The output "SrcInt" will not have
1161   // been modified, so we can use this information below to update aliases.
1162   bool Swapped = false;
1163   // If SrcInt is implicitly defined, it's safe to coalesce.
1164   bool isEmpty = SrcInt.empty();
1165   if (isEmpty && !CanCoalesceWithImpDef(CopyMI, DstInt, SrcInt)) {
1166     // Only coalesce an empty interval (defined by implicit_def) with
1167     // another interval which has a valno defined by the CopyMI and the CopyMI
1168     // is a kill of the implicit def.
1169     DOUT << "Not profitable!\n";
1170     return false;
1171   }
1172
1173   if (!isEmpty && !JoinIntervals(DstInt, SrcInt, Swapped)) {
1174     // Coalescing failed.
1175
1176     // If definition of source is defined by trivial computation, try
1177     // rematerializing it.
1178     if (!isExtSubReg && !isInsSubReg &&
1179         ReMaterializeTrivialDef(SrcInt, DstInt.reg, CopyMI))
1180       return true;
1181     
1182     // If we can eliminate the copy without merging the live ranges, do so now.
1183     if (!isExtSubReg && !isInsSubReg &&
1184         (AdjustCopiesBackFrom(SrcInt, DstInt, CopyMI) ||
1185          RemoveCopyByCommutingDef(SrcInt, DstInt, CopyMI))) {
1186       JoinedCopies.insert(CopyMI);
1187       return true;
1188     }
1189     
1190     // Otherwise, we are unable to join the intervals.
1191     DOUT << "Interference!\n";
1192     Again = true;  // May be possible to coalesce later.
1193     return false;
1194   }
1195
1196   LiveInterval *ResSrcInt = &SrcInt;
1197   LiveInterval *ResDstInt = &DstInt;
1198   if (Swapped) {
1199     std::swap(SrcReg, DstReg);
1200     std::swap(ResSrcInt, ResDstInt);
1201   }
1202   assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
1203          "LiveInterval::join didn't work right!");
1204                                
1205   // If we're about to merge live ranges into a physical register live range,
1206   // we have to update any aliased register's live ranges to indicate that they
1207   // have clobbered values for this range.
1208   if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
1209     // If this is a extract_subreg where dst is a physical register, e.g.
1210     // cl = EXTRACT_SUBREG reg1024, 1
1211     // then create and update the actual physical register allocated to RHS.
1212     if (RealDstReg || RealSrcReg) {
1213       LiveInterval &RealInt =
1214         li_->getOrCreateInterval(RealDstReg ? RealDstReg : RealSrcReg);
1215       SmallSet<const VNInfo*, 4> CopiedValNos;
1216       for (LiveInterval::Ranges::const_iterator I = ResSrcInt->ranges.begin(),
1217              E = ResSrcInt->ranges.end(); I != E; ++I) {
1218         const LiveRange *DstLR = ResDstInt->getLiveRangeContaining(I->start);
1219         assert(DstLR  && "Invalid joined interval!");
1220         const VNInfo *DstValNo = DstLR->valno;
1221         if (CopiedValNos.insert(DstValNo)) {
1222           VNInfo *ValNo = RealInt.getNextValue(DstValNo->def, DstValNo->copy,
1223                                                li_->getVNInfoAllocator());
1224           ValNo->hasPHIKill = DstValNo->hasPHIKill;
1225           RealInt.addKills(ValNo, DstValNo->kills);
1226           RealInt.MergeValueInAsValue(*ResDstInt, DstValNo, ValNo);
1227         }
1228       }
1229       
1230       DstReg = RealDstReg ? RealDstReg : RealSrcReg;
1231     }
1232
1233     // Update the liveintervals of sub-registers.
1234     for (const unsigned *AS = tri_->getSubRegisters(DstReg); *AS; ++AS)
1235       li_->getOrCreateInterval(*AS).MergeInClobberRanges(*ResSrcInt,
1236                                                  li_->getVNInfoAllocator());
1237   }
1238
1239   // If this is a EXTRACT_SUBREG, make sure the result of coalescing is the
1240   // larger super-register.
1241   if ((isExtSubReg || isInsSubReg) && !SrcIsPhys && !DstIsPhys) {
1242     if ((isExtSubReg && !Swapped) || (isInsSubReg && Swapped)) {
1243       ResSrcInt->Copy(*ResDstInt, li_->getVNInfoAllocator());
1244       std::swap(SrcReg, DstReg);
1245       std::swap(ResSrcInt, ResDstInt);
1246     }
1247   }
1248
1249   // Coalescing to a virtual register that is of a sub-register class of the
1250   // other. Make sure the resulting register is set to the right register class.
1251   if (SubRC) {
1252     mri_->setRegClass(DstReg, SubRC);
1253     ++numSubJoins;
1254   }
1255
1256   if (NewHeuristic) {
1257     // Add all copies that define val# in the source interval into the queue.
1258     for (LiveInterval::const_vni_iterator i = ResSrcInt->vni_begin(),
1259            e = ResSrcInt->vni_end(); i != e; ++i) {
1260       const VNInfo *vni = *i;
1261       if (!vni->def || vni->def == ~1U || vni->def == ~0U)
1262         continue;
1263       MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
1264       unsigned NewSrcReg, NewDstReg;
1265       if (CopyMI &&
1266           JoinedCopies.count(CopyMI) == 0 &&
1267           tii_->isMoveInstr(*CopyMI, NewSrcReg, NewDstReg)) {
1268         unsigned LoopDepth = loopInfo->getLoopDepth(CopyMBB);
1269         JoinQueue->push(CopyRec(CopyMI, LoopDepth,
1270                                 isBackEdgeCopy(CopyMI, DstReg)));
1271       }
1272     }
1273   }
1274
1275   // Remember to delete the copy instruction.
1276   JoinedCopies.insert(CopyMI);
1277
1278   // Some live range has been lengthened due to colaescing, eliminate the
1279   // unnecessary kills.
1280   RemoveUnnecessaryKills(SrcReg, *ResDstInt);
1281   if (TargetRegisterInfo::isVirtualRegister(DstReg))
1282     RemoveUnnecessaryKills(DstReg, *ResDstInt);
1283
1284   if (isInsSubReg)
1285     // Avoid:
1286     // r1024 = op
1287     // r1024 = implicit_def
1288     // ...
1289     //       = r1024
1290     RemoveDeadImpDef(DstReg, *ResDstInt);
1291   UpdateRegDefsUses(SrcReg, DstReg, SubIdx);
1292
1293   // SrcReg is guarateed to be the register whose live interval that is
1294   // being merged.
1295   li_->removeInterval(SrcReg);
1296
1297   if (isEmpty) {
1298     // Now the copy is being coalesced away, the val# previously defined
1299     // by the copy is being defined by an IMPLICIT_DEF which defines a zero
1300     // length interval. Remove the val#.
1301     unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
1302     const LiveRange *LR = ResDstInt->getLiveRangeContaining(CopyIdx);
1303     VNInfo *ImpVal = LR->valno;
1304     assert(ImpVal->def == CopyIdx);
1305     unsigned NextDef = LR->end;
1306     RemoveCopiesFromValNo(*ResDstInt, ImpVal);
1307     ResDstInt->removeValNo(ImpVal);
1308     LR = ResDstInt->FindLiveRangeContaining(NextDef);
1309     if (LR != ResDstInt->end() && LR->valno->def == NextDef) {
1310       // Special case: vr1024 = implicit_def
1311       //               vr1024 = insert_subreg vr1024, vr1025, c
1312       // The insert_subreg becomes a "copy" that defines a val# which can itself
1313       // be coalesced away.
1314       MachineInstr *DefMI = li_->getInstructionFromIndex(NextDef);
1315       if (DefMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
1316         LR->valno->copy = DefMI;
1317     }
1318   }
1319
1320   DOUT << "\n\t\tJoined.  Result = "; ResDstInt->print(DOUT, tri_);
1321   DOUT << "\n";
1322
1323   ++numJoins;
1324   return true;
1325 }
1326
1327 /// ComputeUltimateVN - Assuming we are going to join two live intervals,
1328 /// compute what the resultant value numbers for each value in the input two
1329 /// ranges will be.  This is complicated by copies between the two which can
1330 /// and will commonly cause multiple value numbers to be merged into one.
1331 ///
1332 /// VN is the value number that we're trying to resolve.  InstDefiningValue
1333 /// keeps track of the new InstDefiningValue assignment for the result
1334 /// LiveInterval.  ThisFromOther/OtherFromThis are sets that keep track of
1335 /// whether a value in this or other is a copy from the opposite set.
1336 /// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
1337 /// already been assigned.
1338 ///
1339 /// ThisFromOther[x] - If x is defined as a copy from the other interval, this
1340 /// contains the value number the copy is from.
1341 ///
1342 static unsigned ComputeUltimateVN(VNInfo *VNI,
1343                                   SmallVector<VNInfo*, 16> &NewVNInfo,
1344                                   DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
1345                                   DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
1346                                   SmallVector<int, 16> &ThisValNoAssignments,
1347                                   SmallVector<int, 16> &OtherValNoAssignments) {
1348   unsigned VN = VNI->id;
1349
1350   // If the VN has already been computed, just return it.
1351   if (ThisValNoAssignments[VN] >= 0)
1352     return ThisValNoAssignments[VN];
1353 //  assert(ThisValNoAssignments[VN] != -2 && "Cyclic case?");
1354
1355   // If this val is not a copy from the other val, then it must be a new value
1356   // number in the destination.
1357   DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
1358   if (I == ThisFromOther.end()) {
1359     NewVNInfo.push_back(VNI);
1360     return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
1361   }
1362   VNInfo *OtherValNo = I->second;
1363
1364   // Otherwise, this *is* a copy from the RHS.  If the other side has already
1365   // been computed, return it.
1366   if (OtherValNoAssignments[OtherValNo->id] >= 0)
1367     return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
1368   
1369   // Mark this value number as currently being computed, then ask what the
1370   // ultimate value # of the other value is.
1371   ThisValNoAssignments[VN] = -2;
1372   unsigned UltimateVN =
1373     ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
1374                       OtherValNoAssignments, ThisValNoAssignments);
1375   return ThisValNoAssignments[VN] = UltimateVN;
1376 }
1377
1378 static bool InVector(VNInfo *Val, const SmallVector<VNInfo*, 8> &V) {
1379   return std::find(V.begin(), V.end(), Val) != V.end();
1380 }
1381
1382 /// RangeIsDefinedByCopyFromReg - Return true if the specified live range of
1383 /// the specified live interval is defined by a copy from the specified
1384 /// register.
1385 bool SimpleRegisterCoalescing::RangeIsDefinedByCopyFromReg(LiveInterval &li,
1386                                                            LiveRange *LR,
1387                                                            unsigned Reg) {
1388   unsigned SrcReg = li_->getVNInfoSourceReg(LR->valno);
1389   if (SrcReg == Reg)
1390     return true;
1391   if (LR->valno->def == ~0U &&
1392       TargetRegisterInfo::isPhysicalRegister(li.reg) &&
1393       *tri_->getSuperRegisters(li.reg)) {
1394     // It's a sub-register live interval, we may not have precise information.
1395     // Re-compute it.
1396     MachineInstr *DefMI = li_->getInstructionFromIndex(LR->start);
1397     unsigned SrcReg, DstReg;
1398     if (DefMI && tii_->isMoveInstr(*DefMI, SrcReg, DstReg) &&
1399         DstReg == li.reg && SrcReg == Reg) {
1400       // Cache computed info.
1401       LR->valno->def  = LR->start;
1402       LR->valno->copy = DefMI;
1403       return true;
1404     }
1405   }
1406   return false;
1407 }
1408
1409 /// SimpleJoin - Attempt to joint the specified interval into this one. The
1410 /// caller of this method must guarantee that the RHS only contains a single
1411 /// value number and that the RHS is not defined by a copy from this
1412 /// interval.  This returns false if the intervals are not joinable, or it
1413 /// joins them and returns true.
1414 bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS){
1415   assert(RHS.containsOneValue());
1416   
1417   // Some number (potentially more than one) value numbers in the current
1418   // interval may be defined as copies from the RHS.  Scan the overlapping
1419   // portions of the LHS and RHS, keeping track of this and looking for
1420   // overlapping live ranges that are NOT defined as copies.  If these exist, we
1421   // cannot coalesce.
1422   
1423   LiveInterval::iterator LHSIt = LHS.begin(), LHSEnd = LHS.end();
1424   LiveInterval::iterator RHSIt = RHS.begin(), RHSEnd = RHS.end();
1425   
1426   if (LHSIt->start < RHSIt->start) {
1427     LHSIt = std::upper_bound(LHSIt, LHSEnd, RHSIt->start);
1428     if (LHSIt != LHS.begin()) --LHSIt;
1429   } else if (RHSIt->start < LHSIt->start) {
1430     RHSIt = std::upper_bound(RHSIt, RHSEnd, LHSIt->start);
1431     if (RHSIt != RHS.begin()) --RHSIt;
1432   }
1433   
1434   SmallVector<VNInfo*, 8> EliminatedLHSVals;
1435   
1436   while (1) {
1437     // Determine if these live intervals overlap.
1438     bool Overlaps = false;
1439     if (LHSIt->start <= RHSIt->start)
1440       Overlaps = LHSIt->end > RHSIt->start;
1441     else
1442       Overlaps = RHSIt->end > LHSIt->start;
1443     
1444     // If the live intervals overlap, there are two interesting cases: if the
1445     // LHS interval is defined by a copy from the RHS, it's ok and we record
1446     // that the LHS value # is the same as the RHS.  If it's not, then we cannot
1447     // coalesce these live ranges and we bail out.
1448     if (Overlaps) {
1449       // If we haven't already recorded that this value # is safe, check it.
1450       if (!InVector(LHSIt->valno, EliminatedLHSVals)) {
1451         // Copy from the RHS?
1452         if (!RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg))
1453           return false;    // Nope, bail out.
1454
1455         if (LHSIt->contains(RHSIt->valno->def))
1456           // Here is an interesting situation:
1457           // BB1:
1458           //   vr1025 = copy vr1024
1459           //   ..
1460           // BB2:
1461           //   vr1024 = op 
1462           //          = vr1025
1463           // Even though vr1025 is copied from vr1024, it's not safe to
1464           // coalesced them since live range of vr1025 intersects the
1465           // def of vr1024. This happens because vr1025 is assigned the
1466           // value of the previous iteration of vr1024.
1467           return false;
1468         EliminatedLHSVals.push_back(LHSIt->valno);
1469       }
1470       
1471       // We know this entire LHS live range is okay, so skip it now.
1472       if (++LHSIt == LHSEnd) break;
1473       continue;
1474     }
1475     
1476     if (LHSIt->end < RHSIt->end) {
1477       if (++LHSIt == LHSEnd) break;
1478     } else {
1479       // One interesting case to check here.  It's possible that we have
1480       // something like "X3 = Y" which defines a new value number in the LHS,
1481       // and is the last use of this liverange of the RHS.  In this case, we
1482       // want to notice this copy (so that it gets coalesced away) even though
1483       // the live ranges don't actually overlap.
1484       if (LHSIt->start == RHSIt->end) {
1485         if (InVector(LHSIt->valno, EliminatedLHSVals)) {
1486           // We already know that this value number is going to be merged in
1487           // if coalescing succeeds.  Just skip the liverange.
1488           if (++LHSIt == LHSEnd) break;
1489         } else {
1490           // Otherwise, if this is a copy from the RHS, mark it as being merged
1491           // in.
1492           if (RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg)) {
1493             if (LHSIt->contains(RHSIt->valno->def))
1494               // Here is an interesting situation:
1495               // BB1:
1496               //   vr1025 = copy vr1024
1497               //   ..
1498               // BB2:
1499               //   vr1024 = op 
1500               //          = vr1025
1501               // Even though vr1025 is copied from vr1024, it's not safe to
1502               // coalesced them since live range of vr1025 intersects the
1503               // def of vr1024. This happens because vr1025 is assigned the
1504               // value of the previous iteration of vr1024.
1505               return false;
1506             EliminatedLHSVals.push_back(LHSIt->valno);
1507
1508             // We know this entire LHS live range is okay, so skip it now.
1509             if (++LHSIt == LHSEnd) break;
1510           }
1511         }
1512       }
1513       
1514       if (++RHSIt == RHSEnd) break;
1515     }
1516   }
1517   
1518   // If we got here, we know that the coalescing will be successful and that
1519   // the value numbers in EliminatedLHSVals will all be merged together.  Since
1520   // the most common case is that EliminatedLHSVals has a single number, we
1521   // optimize for it: if there is more than one value, we merge them all into
1522   // the lowest numbered one, then handle the interval as if we were merging
1523   // with one value number.
1524   VNInfo *LHSValNo;
1525   if (EliminatedLHSVals.size() > 1) {
1526     // Loop through all the equal value numbers merging them into the smallest
1527     // one.
1528     VNInfo *Smallest = EliminatedLHSVals[0];
1529     for (unsigned i = 1, e = EliminatedLHSVals.size(); i != e; ++i) {
1530       if (EliminatedLHSVals[i]->id < Smallest->id) {
1531         // Merge the current notion of the smallest into the smaller one.
1532         LHS.MergeValueNumberInto(Smallest, EliminatedLHSVals[i]);
1533         Smallest = EliminatedLHSVals[i];
1534       } else {
1535         // Merge into the smallest.
1536         LHS.MergeValueNumberInto(EliminatedLHSVals[i], Smallest);
1537       }
1538     }
1539     LHSValNo = Smallest;
1540   } else if (EliminatedLHSVals.empty()) {
1541     if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1542         *tri_->getSuperRegisters(LHS.reg))
1543       // Imprecise sub-register information. Can't handle it.
1544       return false;
1545     assert(0 && "No copies from the RHS?");
1546   } else {
1547     LHSValNo = EliminatedLHSVals[0];
1548   }
1549   
1550   // Okay, now that there is a single LHS value number that we're merging the
1551   // RHS into, update the value number info for the LHS to indicate that the
1552   // value number is defined where the RHS value number was.
1553   const VNInfo *VNI = RHS.getValNumInfo(0);
1554   LHSValNo->def  = VNI->def;
1555   LHSValNo->copy = VNI->copy;
1556   
1557   // Okay, the final step is to loop over the RHS live intervals, adding them to
1558   // the LHS.
1559   LHSValNo->hasPHIKill |= VNI->hasPHIKill;
1560   LHS.addKills(LHSValNo, VNI->kills);
1561   LHS.MergeRangesInAsValue(RHS, LHSValNo);
1562   LHS.weight += RHS.weight;
1563   if (RHS.preference && !LHS.preference)
1564     LHS.preference = RHS.preference;
1565   
1566   return true;
1567 }
1568
1569 /// JoinIntervals - Attempt to join these two intervals.  On failure, this
1570 /// returns false.  Otherwise, if one of the intervals being joined is a
1571 /// physreg, this method always canonicalizes LHS to be it.  The output
1572 /// "RHS" will not have been modified, so we can use this information
1573 /// below to update aliases.
1574 bool SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS,
1575                                              LiveInterval &RHS, bool &Swapped) {
1576   // Compute the final value assignment, assuming that the live ranges can be
1577   // coalesced.
1578   SmallVector<int, 16> LHSValNoAssignments;
1579   SmallVector<int, 16> RHSValNoAssignments;
1580   DenseMap<VNInfo*, VNInfo*> LHSValsDefinedFromRHS;
1581   DenseMap<VNInfo*, VNInfo*> RHSValsDefinedFromLHS;
1582   SmallVector<VNInfo*, 16> NewVNInfo;
1583                           
1584   // If a live interval is a physical register, conservatively check if any
1585   // of its sub-registers is overlapping the live interval of the virtual
1586   // register. If so, do not coalesce.
1587   if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1588       *tri_->getSubRegisters(LHS.reg)) {
1589     for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR)
1590       if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1591         DOUT << "Interfere with sub-register ";
1592         DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1593         return false;
1594       }
1595   } else if (TargetRegisterInfo::isPhysicalRegister(RHS.reg) &&
1596              *tri_->getSubRegisters(RHS.reg)) {
1597     for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR)
1598       if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) {
1599         DOUT << "Interfere with sub-register ";
1600         DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1601         return false;
1602       }
1603   }
1604                           
1605   // Compute ultimate value numbers for the LHS and RHS values.
1606   if (RHS.containsOneValue()) {
1607     // Copies from a liveinterval with a single value are simple to handle and
1608     // very common, handle the special case here.  This is important, because
1609     // often RHS is small and LHS is large (e.g. a physreg).
1610     
1611     // Find out if the RHS is defined as a copy from some value in the LHS.
1612     int RHSVal0DefinedFromLHS = -1;
1613     int RHSValID = -1;
1614     VNInfo *RHSValNoInfo = NULL;
1615     VNInfo *RHSValNoInfo0 = RHS.getValNumInfo(0);
1616     unsigned RHSSrcReg = li_->getVNInfoSourceReg(RHSValNoInfo0);
1617     if ((RHSSrcReg == 0 || RHSSrcReg != LHS.reg)) {
1618       // If RHS is not defined as a copy from the LHS, we can use simpler and
1619       // faster checks to see if the live ranges are coalescable.  This joiner
1620       // can't swap the LHS/RHS intervals though.
1621       if (!TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
1622         return SimpleJoin(LHS, RHS);
1623       } else {
1624         RHSValNoInfo = RHSValNoInfo0;
1625       }
1626     } else {
1627       // It was defined as a copy from the LHS, find out what value # it is.
1628       RHSValNoInfo = LHS.getLiveRangeContaining(RHSValNoInfo0->def-1)->valno;
1629       RHSValID = RHSValNoInfo->id;
1630       RHSVal0DefinedFromLHS = RHSValID;
1631     }
1632     
1633     LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1634     RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
1635     NewVNInfo.resize(LHS.getNumValNums(), NULL);
1636     
1637     // Okay, *all* of the values in LHS that are defined as a copy from RHS
1638     // should now get updated.
1639     for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1640          i != e; ++i) {
1641       VNInfo *VNI = *i;
1642       unsigned VN = VNI->id;
1643       if (unsigned LHSSrcReg = li_->getVNInfoSourceReg(VNI)) {
1644         if (LHSSrcReg != RHS.reg) {
1645           // If this is not a copy from the RHS, its value number will be
1646           // unmodified by the coalescing.
1647           NewVNInfo[VN] = VNI;
1648           LHSValNoAssignments[VN] = VN;
1649         } else if (RHSValID == -1) {
1650           // Otherwise, it is a copy from the RHS, and we don't already have a
1651           // value# for it.  Keep the current value number, but remember it.
1652           LHSValNoAssignments[VN] = RHSValID = VN;
1653           NewVNInfo[VN] = RHSValNoInfo;
1654           LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
1655         } else {
1656           // Otherwise, use the specified value #.
1657           LHSValNoAssignments[VN] = RHSValID;
1658           if (VN == (unsigned)RHSValID) {  // Else this val# is dead.
1659             NewVNInfo[VN] = RHSValNoInfo;
1660             LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
1661           }
1662         }
1663       } else {
1664         NewVNInfo[VN] = VNI;
1665         LHSValNoAssignments[VN] = VN;
1666       }
1667     }
1668     
1669     assert(RHSValID != -1 && "Didn't find value #?");
1670     RHSValNoAssignments[0] = RHSValID;
1671     if (RHSVal0DefinedFromLHS != -1) {
1672       // This path doesn't go through ComputeUltimateVN so just set
1673       // it to anything.
1674       RHSValsDefinedFromLHS[RHSValNoInfo0] = (VNInfo*)1;
1675     }
1676   } else {
1677     // Loop over the value numbers of the LHS, seeing if any are defined from
1678     // the RHS.
1679     for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1680          i != e; ++i) {
1681       VNInfo *VNI = *i;
1682       if (VNI->def == ~1U || VNI->copy == 0)  // Src not defined by a copy?
1683         continue;
1684       
1685       // DstReg is known to be a register in the LHS interval.  If the src is
1686       // from the RHS interval, we can use its value #.
1687       if (li_->getVNInfoSourceReg(VNI) != RHS.reg)
1688         continue;
1689       
1690       // Figure out the value # from the RHS.
1691       LHSValsDefinedFromRHS[VNI]=RHS.getLiveRangeContaining(VNI->def-1)->valno;
1692     }
1693     
1694     // Loop over the value numbers of the RHS, seeing if any are defined from
1695     // the LHS.
1696     for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1697          i != e; ++i) {
1698       VNInfo *VNI = *i;
1699       if (VNI->def == ~1U || VNI->copy == 0)  // Src not defined by a copy?
1700         continue;
1701       
1702       // DstReg is known to be a register in the RHS interval.  If the src is
1703       // from the LHS interval, we can use its value #.
1704       if (li_->getVNInfoSourceReg(VNI) != LHS.reg)
1705         continue;
1706       
1707       // Figure out the value # from the LHS.
1708       RHSValsDefinedFromLHS[VNI]=LHS.getLiveRangeContaining(VNI->def-1)->valno;
1709     }
1710     
1711     LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1712     RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
1713     NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
1714     
1715     for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1716          i != e; ++i) {
1717       VNInfo *VNI = *i;
1718       unsigned VN = VNI->id;
1719       if (LHSValNoAssignments[VN] >= 0 || VNI->def == ~1U) 
1720         continue;
1721       ComputeUltimateVN(VNI, NewVNInfo,
1722                         LHSValsDefinedFromRHS, RHSValsDefinedFromLHS,
1723                         LHSValNoAssignments, RHSValNoAssignments);
1724     }
1725     for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1726          i != e; ++i) {
1727       VNInfo *VNI = *i;
1728       unsigned VN = VNI->id;
1729       if (RHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
1730         continue;
1731       // If this value number isn't a copy from the LHS, it's a new number.
1732       if (RHSValsDefinedFromLHS.find(VNI) == RHSValsDefinedFromLHS.end()) {
1733         NewVNInfo.push_back(VNI);
1734         RHSValNoAssignments[VN] = NewVNInfo.size()-1;
1735         continue;
1736       }
1737       
1738       ComputeUltimateVN(VNI, NewVNInfo,
1739                         RHSValsDefinedFromLHS, LHSValsDefinedFromRHS,
1740                         RHSValNoAssignments, LHSValNoAssignments);
1741     }
1742   }
1743   
1744   // Armed with the mappings of LHS/RHS values to ultimate values, walk the
1745   // interval lists to see if these intervals are coalescable.
1746   LiveInterval::const_iterator I = LHS.begin();
1747   LiveInterval::const_iterator IE = LHS.end();
1748   LiveInterval::const_iterator J = RHS.begin();
1749   LiveInterval::const_iterator JE = RHS.end();
1750   
1751   // Skip ahead until the first place of potential sharing.
1752   if (I->start < J->start) {
1753     I = std::upper_bound(I, IE, J->start);
1754     if (I != LHS.begin()) --I;
1755   } else if (J->start < I->start) {
1756     J = std::upper_bound(J, JE, I->start);
1757     if (J != RHS.begin()) --J;
1758   }
1759   
1760   while (1) {
1761     // Determine if these two live ranges overlap.
1762     bool Overlaps;
1763     if (I->start < J->start) {
1764       Overlaps = I->end > J->start;
1765     } else {
1766       Overlaps = J->end > I->start;
1767     }
1768
1769     // If so, check value # info to determine if they are really different.
1770     if (Overlaps) {
1771       // If the live range overlap will map to the same value number in the
1772       // result liverange, we can still coalesce them.  If not, we can't.
1773       if (LHSValNoAssignments[I->valno->id] !=
1774           RHSValNoAssignments[J->valno->id])
1775         return false;
1776     }
1777     
1778     if (I->end < J->end) {
1779       ++I;
1780       if (I == IE) break;
1781     } else {
1782       ++J;
1783       if (J == JE) break;
1784     }
1785   }
1786
1787   // Update kill info. Some live ranges are extended due to copy coalescing.
1788   for (DenseMap<VNInfo*, VNInfo*>::iterator I = LHSValsDefinedFromRHS.begin(),
1789          E = LHSValsDefinedFromRHS.end(); I != E; ++I) {
1790     VNInfo *VNI = I->first;
1791     unsigned LHSValID = LHSValNoAssignments[VNI->id];
1792     LiveInterval::removeKill(NewVNInfo[LHSValID], VNI->def);
1793     NewVNInfo[LHSValID]->hasPHIKill |= VNI->hasPHIKill;
1794     RHS.addKills(NewVNInfo[LHSValID], VNI->kills);
1795   }
1796
1797   // Update kill info. Some live ranges are extended due to copy coalescing.
1798   for (DenseMap<VNInfo*, VNInfo*>::iterator I = RHSValsDefinedFromLHS.begin(),
1799          E = RHSValsDefinedFromLHS.end(); I != E; ++I) {
1800     VNInfo *VNI = I->first;
1801     unsigned RHSValID = RHSValNoAssignments[VNI->id];
1802     LiveInterval::removeKill(NewVNInfo[RHSValID], VNI->def);
1803     NewVNInfo[RHSValID]->hasPHIKill |= VNI->hasPHIKill;
1804     LHS.addKills(NewVNInfo[RHSValID], VNI->kills);
1805   }
1806
1807   // If we get here, we know that we can coalesce the live ranges.  Ask the
1808   // intervals to coalesce themselves now.
1809   if ((RHS.ranges.size() > LHS.ranges.size() &&
1810       TargetRegisterInfo::isVirtualRegister(LHS.reg)) ||
1811       TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
1812     RHS.join(LHS, &RHSValNoAssignments[0], &LHSValNoAssignments[0], NewVNInfo);
1813     Swapped = true;
1814   } else {
1815     LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo);
1816     Swapped = false;
1817   }
1818   return true;
1819 }
1820
1821 namespace {
1822   // DepthMBBCompare - Comparison predicate that sort first based on the loop
1823   // depth of the basic block (the unsigned), and then on the MBB number.
1824   struct DepthMBBCompare {
1825     typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
1826     bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
1827       if (LHS.first > RHS.first) return true;   // Deeper loops first
1828       return LHS.first == RHS.first &&
1829         LHS.second->getNumber() < RHS.second->getNumber();
1830     }
1831   };
1832 }
1833
1834 /// getRepIntervalSize - Returns the size of the interval that represents the
1835 /// specified register.
1836 template<class SF>
1837 unsigned JoinPriorityQueue<SF>::getRepIntervalSize(unsigned Reg) {
1838   return Rc->getRepIntervalSize(Reg);
1839 }
1840
1841 /// CopyRecSort::operator - Join priority queue sorting function.
1842 ///
1843 bool CopyRecSort::operator()(CopyRec left, CopyRec right) const {
1844   // Inner loops first.
1845   if (left.LoopDepth > right.LoopDepth)
1846     return false;
1847   else if (left.LoopDepth == right.LoopDepth)
1848     if (left.isBackEdge && !right.isBackEdge)
1849       return false;
1850   return true;
1851 }
1852
1853 void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
1854                                                std::vector<CopyRec> &TryAgain) {
1855   DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
1856
1857   std::vector<CopyRec> VirtCopies;
1858   std::vector<CopyRec> PhysCopies;
1859   std::vector<CopyRec> ImpDefCopies;
1860   unsigned LoopDepth = loopInfo->getLoopDepth(MBB);
1861   for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
1862        MII != E;) {
1863     MachineInstr *Inst = MII++;
1864     
1865     // If this isn't a copy nor a extract_subreg, we can't join intervals.
1866     unsigned SrcReg, DstReg;
1867     if (Inst->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
1868       DstReg = Inst->getOperand(0).getReg();
1869       SrcReg = Inst->getOperand(1).getReg();
1870     } else if (Inst->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
1871       DstReg = Inst->getOperand(0).getReg();
1872       SrcReg = Inst->getOperand(2).getReg();
1873     } else if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg))
1874       continue;
1875
1876     bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
1877     bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
1878     if (NewHeuristic) {
1879       JoinQueue->push(CopyRec(Inst, LoopDepth, isBackEdgeCopy(Inst, DstReg)));
1880     } else {
1881       if (li_->hasInterval(SrcReg) && li_->getInterval(SrcReg).empty())
1882         ImpDefCopies.push_back(CopyRec(Inst, 0, false));
1883       else if (SrcIsPhys || DstIsPhys)
1884         PhysCopies.push_back(CopyRec(Inst, 0, false));
1885       else
1886         VirtCopies.push_back(CopyRec(Inst, 0, false));
1887     }
1888   }
1889
1890   if (NewHeuristic)
1891     return;
1892
1893   // Try coalescing implicit copies first, followed by copies to / from
1894   // physical registers, then finally copies from virtual registers to
1895   // virtual registers.
1896   for (unsigned i = 0, e = ImpDefCopies.size(); i != e; ++i) {
1897     CopyRec &TheCopy = ImpDefCopies[i];
1898     bool Again = false;
1899     if (!JoinCopy(TheCopy, Again))
1900       if (Again)
1901         TryAgain.push_back(TheCopy);
1902   }
1903   for (unsigned i = 0, e = PhysCopies.size(); i != e; ++i) {
1904     CopyRec &TheCopy = PhysCopies[i];
1905     bool Again = false;
1906     if (!JoinCopy(TheCopy, Again))
1907       if (Again)
1908         TryAgain.push_back(TheCopy);
1909   }
1910   for (unsigned i = 0, e = VirtCopies.size(); i != e; ++i) {
1911     CopyRec &TheCopy = VirtCopies[i];
1912     bool Again = false;
1913     if (!JoinCopy(TheCopy, Again))
1914       if (Again)
1915         TryAgain.push_back(TheCopy);
1916   }
1917 }
1918
1919 void SimpleRegisterCoalescing::joinIntervals() {
1920   DOUT << "********** JOINING INTERVALS ***********\n";
1921
1922   if (NewHeuristic)
1923     JoinQueue = new JoinPriorityQueue<CopyRecSort>(this);
1924
1925   std::vector<CopyRec> TryAgainList;
1926   if (loopInfo->empty()) {
1927     // If there are no loops in the function, join intervals in function order.
1928     for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
1929          I != E; ++I)
1930       CopyCoalesceInMBB(I, TryAgainList);
1931   } else {
1932     // Otherwise, join intervals in inner loops before other intervals.
1933     // Unfortunately we can't just iterate over loop hierarchy here because
1934     // there may be more MBB's than BB's.  Collect MBB's for sorting.
1935
1936     // Join intervals in the function prolog first. We want to join physical
1937     // registers with virtual registers before the intervals got too long.
1938     std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
1939     for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();I != E;++I){
1940       MachineBasicBlock *MBB = I;
1941       MBBs.push_back(std::make_pair(loopInfo->getLoopDepth(MBB), I));
1942     }
1943
1944     // Sort by loop depth.
1945     std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
1946
1947     // Finally, join intervals in loop nest order.
1948     for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
1949       CopyCoalesceInMBB(MBBs[i].second, TryAgainList);
1950   }
1951   
1952   // Joining intervals can allow other intervals to be joined.  Iteratively join
1953   // until we make no progress.
1954   if (NewHeuristic) {
1955     SmallVector<CopyRec, 16> TryAgain;
1956     bool ProgressMade = true;
1957     while (ProgressMade) {
1958       ProgressMade = false;
1959       while (!JoinQueue->empty()) {
1960         CopyRec R = JoinQueue->pop();
1961         bool Again = false;
1962         bool Success = JoinCopy(R, Again);
1963         if (Success)
1964           ProgressMade = true;
1965         else if (Again)
1966           TryAgain.push_back(R);
1967       }
1968
1969       if (ProgressMade) {
1970         while (!TryAgain.empty()) {
1971           JoinQueue->push(TryAgain.back());
1972           TryAgain.pop_back();
1973         }
1974       }
1975     }
1976   } else {
1977     bool ProgressMade = true;
1978     while (ProgressMade) {
1979       ProgressMade = false;
1980
1981       for (unsigned i = 0, e = TryAgainList.size(); i != e; ++i) {
1982         CopyRec &TheCopy = TryAgainList[i];
1983         if (TheCopy.MI) {
1984           bool Again = false;
1985           bool Success = JoinCopy(TheCopy, Again);
1986           if (Success || !Again) {
1987             TheCopy.MI = 0;   // Mark this one as done.
1988             ProgressMade = true;
1989           }
1990         }
1991       }
1992     }
1993   }
1994
1995   if (NewHeuristic)
1996     delete JoinQueue;  
1997 }
1998
1999 /// Return true if the two specified registers belong to different register
2000 /// classes.  The registers may be either phys or virt regs. In the
2001 /// case where both registers are virtual registers, it would also returns
2002 /// true by reference the RegB register class in SubRC if it is a subset of
2003 /// RegA's register class.
2004 bool
2005 SimpleRegisterCoalescing::differingRegisterClasses(unsigned RegA, unsigned RegB,
2006                                       const TargetRegisterClass *&SubRC) const {
2007
2008   // Get the register classes for the first reg.
2009   if (TargetRegisterInfo::isPhysicalRegister(RegA)) {
2010     assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
2011            "Shouldn't consider two physregs!");
2012     return !mri_->getRegClass(RegB)->contains(RegA);
2013   }
2014
2015   // Compare against the regclass for the second reg.
2016   const TargetRegisterClass *RegClassA = mri_->getRegClass(RegA);
2017   if (TargetRegisterInfo::isVirtualRegister(RegB)) {
2018     const TargetRegisterClass *RegClassB = mri_->getRegClass(RegB);
2019     if (RegClassA == RegClassB)
2020       return false;
2021     SubRC = (RegClassA->hasSubClass(RegClassB)) ? RegClassB : NULL;
2022     return true;
2023   }
2024   return !RegClassA->contains(RegB);
2025 }
2026
2027 /// lastRegisterUse - Returns the last use of the specific register between
2028 /// cycles Start and End or NULL if there are no uses.
2029 MachineOperand *
2030 SimpleRegisterCoalescing::lastRegisterUse(unsigned Start, unsigned End,
2031                                           unsigned Reg, unsigned &UseIdx) const{
2032   UseIdx = 0;
2033   if (TargetRegisterInfo::isVirtualRegister(Reg)) {
2034     MachineOperand *LastUse = NULL;
2035     for (MachineRegisterInfo::use_iterator I = mri_->use_begin(Reg),
2036            E = mri_->use_end(); I != E; ++I) {
2037       MachineOperand &Use = I.getOperand();
2038       MachineInstr *UseMI = Use.getParent();
2039       unsigned SrcReg, DstReg;
2040       if (tii_->isMoveInstr(*UseMI, SrcReg, DstReg) && SrcReg == DstReg)
2041         // Ignore identity copies.
2042         continue;
2043       unsigned Idx = li_->getInstructionIndex(UseMI);
2044       if (Idx >= Start && Idx < End && Idx >= UseIdx) {
2045         LastUse = &Use;
2046         UseIdx = Idx;
2047       }
2048     }
2049     return LastUse;
2050   }
2051
2052   int e = (End-1) / InstrSlots::NUM * InstrSlots::NUM;
2053   int s = Start;
2054   while (e >= s) {
2055     // Skip deleted instructions
2056     MachineInstr *MI = li_->getInstructionFromIndex(e);
2057     while ((e - InstrSlots::NUM) >= s && !MI) {
2058       e -= InstrSlots::NUM;
2059       MI = li_->getInstructionFromIndex(e);
2060     }
2061     if (e < s || MI == NULL)
2062       return NULL;
2063
2064     // Ignore identity copies.
2065     unsigned SrcReg, DstReg;
2066     if (!(tii_->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg))
2067       for (unsigned i = 0, NumOps = MI->getNumOperands(); i != NumOps; ++i) {
2068         MachineOperand &Use = MI->getOperand(i);
2069         if (Use.isRegister() && Use.isUse() && Use.getReg() &&
2070             tri_->regsOverlap(Use.getReg(), Reg)) {
2071           UseIdx = e;
2072           return &Use;
2073         }
2074       }
2075
2076     e -= InstrSlots::NUM;
2077   }
2078
2079   return NULL;
2080 }
2081
2082
2083 void SimpleRegisterCoalescing::printRegName(unsigned reg) const {
2084   if (TargetRegisterInfo::isPhysicalRegister(reg))
2085     cerr << tri_->getName(reg);
2086   else
2087     cerr << "%reg" << reg;
2088 }
2089
2090 void SimpleRegisterCoalescing::releaseMemory() {
2091   JoinedCopies.clear();
2092   ReMatCopies.clear();
2093 }
2094
2095 static bool isZeroLengthInterval(LiveInterval *li) {
2096   for (LiveInterval::Ranges::const_iterator
2097          i = li->ranges.begin(), e = li->ranges.end(); i != e; ++i)
2098     if (i->end - i->start > LiveIntervals::InstrSlots::NUM)
2099       return false;
2100   return true;
2101 }
2102
2103 /// TurnCopyIntoImpDef - If source of the specified copy is an implicit def,
2104 /// turn the copy into an implicit def.
2105 bool
2106 SimpleRegisterCoalescing::TurnCopyIntoImpDef(MachineBasicBlock::iterator &I,
2107                                              MachineBasicBlock *MBB,
2108                                              unsigned DstReg, unsigned SrcReg) {
2109   MachineInstr *CopyMI = &*I;
2110   unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
2111   if (!li_->hasInterval(SrcReg))
2112     return false;
2113   LiveInterval &SrcInt = li_->getInterval(SrcReg);
2114   if (!SrcInt.empty())
2115     return false;
2116   if (!li_->hasInterval(DstReg))
2117     return false;
2118   LiveInterval &DstInt = li_->getInterval(DstReg);
2119   const LiveRange *DstLR = DstInt.getLiveRangeContaining(CopyIdx);
2120   DstInt.removeValNo(DstLR->valno);
2121   CopyMI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
2122   for (int i = CopyMI->getNumOperands() - 1, e = 0; i > e; --i)
2123     CopyMI->RemoveOperand(i);
2124   bool NoUse = mri_->use_empty(SrcReg);
2125   if (NoUse) {
2126     for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
2127            E = mri_->reg_end(); I != E; ) {
2128       assert(I.getOperand().isDef());
2129       MachineInstr *DefMI = &*I;
2130       ++I;
2131       // The implicit_def source has no other uses, delete it.
2132       assert(DefMI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF);
2133       li_->RemoveMachineInstrFromMaps(DefMI);
2134       DefMI->eraseFromParent();
2135     }
2136   }
2137   ++I;
2138   return true;
2139 }
2140
2141
2142 bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
2143   mf_ = &fn;
2144   mri_ = &fn.getRegInfo();
2145   tm_ = &fn.getTarget();
2146   tri_ = tm_->getRegisterInfo();
2147   tii_ = tm_->getInstrInfo();
2148   li_ = &getAnalysis<LiveIntervals>();
2149   loopInfo = &getAnalysis<MachineLoopInfo>();
2150
2151   DOUT << "********** SIMPLE REGISTER COALESCING **********\n"
2152        << "********** Function: "
2153        << ((Value*)mf_->getFunction())->getName() << '\n';
2154
2155   allocatableRegs_ = tri_->getAllocatableSet(fn);
2156   for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(),
2157          E = tri_->regclass_end(); I != E; ++I)
2158     allocatableRCRegs_.insert(std::make_pair(*I,
2159                                              tri_->getAllocatableSet(fn, *I)));
2160
2161   // Join (coalesce) intervals if requested.
2162   if (EnableJoining) {
2163     joinIntervals();
2164     DOUT << "********** INTERVALS POST JOINING **********\n";
2165     for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){
2166       I->second->print(DOUT, tri_);
2167       DOUT << "\n";
2168     }
2169   }
2170
2171   // Perform a final pass over the instructions and compute spill weights
2172   // and remove identity moves.
2173   for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
2174        mbbi != mbbe; ++mbbi) {
2175     MachineBasicBlock* mbb = mbbi;
2176     unsigned loopDepth = loopInfo->getLoopDepth(mbb);
2177
2178     for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
2179          mii != mie; ) {
2180       MachineInstr *MI = mii;
2181       unsigned SrcReg, DstReg;
2182       if (JoinedCopies.count(MI)) {
2183         // Delete all coalesced copies.
2184         if (!tii_->isMoveInstr(*MI, SrcReg, DstReg)) {
2185           assert((MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
2186                   MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) &&
2187                  "Unrecognized copy instruction");
2188           DstReg = MI->getOperand(0).getReg();
2189         }
2190         if (MI->registerDefIsDead(DstReg)) {
2191           LiveInterval &li = li_->getInterval(DstReg);
2192           if (!ShortenDeadCopySrcLiveRange(li, MI))
2193             ShortenDeadCopyLiveRange(li, MI);
2194         }
2195         li_->RemoveMachineInstrFromMaps(MI);
2196         mii = mbbi->erase(mii);
2197         ++numPeep;
2198         continue;
2199       }
2200
2201       // If the move will be an identity move delete it
2202       bool isMove = tii_->isMoveInstr(*mii, SrcReg, DstReg);
2203       if (isMove && SrcReg == DstReg) {
2204         if (li_->hasInterval(SrcReg)) {
2205           LiveInterval &RegInt = li_->getInterval(SrcReg);
2206           // If def of this move instruction is dead, remove its live range
2207           // from the dstination register's live interval.
2208           if (mii->registerDefIsDead(DstReg)) {
2209             if (!ShortenDeadCopySrcLiveRange(RegInt, mii))
2210               ShortenDeadCopyLiveRange(RegInt, mii);
2211           }
2212         }
2213         li_->RemoveMachineInstrFromMaps(mii);
2214         mii = mbbi->erase(mii);
2215         ++numPeep;
2216       } else if (!isMove || !TurnCopyIntoImpDef(mii, mbb, DstReg, SrcReg)) {
2217         SmallSet<unsigned, 4> UniqueUses;
2218         for (unsigned i = 0, e = mii->getNumOperands(); i != e; ++i) {
2219           const MachineOperand &mop = mii->getOperand(i);
2220           if (mop.isRegister() && mop.getReg() &&
2221               TargetRegisterInfo::isVirtualRegister(mop.getReg())) {
2222             unsigned reg = mop.getReg();
2223             // Multiple uses of reg by the same instruction. It should not
2224             // contribute to spill weight again.
2225             if (UniqueUses.count(reg) != 0)
2226               continue;
2227             LiveInterval &RegInt = li_->getInterval(reg);
2228             RegInt.weight +=
2229               li_->getSpillWeight(mop.isDef(), mop.isUse(), loopDepth);
2230             UniqueUses.insert(reg);
2231           }
2232         }
2233         ++mii;
2234       }
2235     }
2236   }
2237
2238   for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I) {
2239     LiveInterval &LI = *I->second;
2240     if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
2241       // If the live interval length is essentially zero, i.e. in every live
2242       // range the use follows def immediately, it doesn't make sense to spill
2243       // it and hope it will be easier to allocate for this li.
2244       if (isZeroLengthInterval(&LI))
2245         LI.weight = HUGE_VALF;
2246       else {
2247         bool isLoad = false;
2248         if (li_->isReMaterializable(LI, isLoad)) {
2249           // If all of the definitions of the interval are re-materializable,
2250           // it is a preferred candidate for spilling. If non of the defs are
2251           // loads, then it's potentially very cheap to re-materialize.
2252           // FIXME: this gets much more complicated once we support non-trivial
2253           // re-materialization.
2254           if (isLoad)
2255             LI.weight *= 0.9F;
2256           else
2257             LI.weight *= 0.5F;
2258         }
2259       }
2260
2261       // Slightly prefer live interval that has been assigned a preferred reg.
2262       if (LI.preference)
2263         LI.weight *= 1.01F;
2264
2265       // Divide the weight of the interval by its size.  This encourages 
2266       // spilling of intervals that are large and have few uses, and
2267       // discourages spilling of small intervals with many uses.
2268       LI.weight /= li_->getApproximateInstructionCount(LI) * InstrSlots::NUM;
2269     }
2270   }
2271
2272   DEBUG(dump());
2273   return true;
2274 }
2275
2276 /// print - Implement the dump method.
2277 void SimpleRegisterCoalescing::print(std::ostream &O, const Module* m) const {
2278    li_->print(O, m);
2279 }
2280
2281 RegisterCoalescer* llvm::createSimpleRegisterCoalescer() {
2282   return new SimpleRegisterCoalescing();
2283 }
2284
2285 // Make sure that anything that uses RegisterCoalescer pulls in this file...
2286 DEFINING_FILE_FOR(SimpleRegisterCoalescing)