It's a bool, so treat it like one. Fixes a MSVC warning.
[oota-llvm.git] / lib / CodeGen / PreAllocSplitting.cpp
1 //===-- PreAllocSplitting.cpp - Pre-allocation Interval Spltting Pass. ----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the machine instruction level pre-register allocation
11 // live interval splitting pass. It finds live interval barriers, i.e.
12 // instructions which will kill all physical registers in certain register
13 // classes, and split all live intervals which cross the barrier.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #define DEBUG_TYPE "pre-alloc-split"
18 #include "VirtRegMap.h"
19 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
20 #include "llvm/CodeGen/LiveStackAnalysis.h"
21 #include "llvm/CodeGen/MachineDominators.h"
22 #include "llvm/CodeGen/MachineFrameInfo.h"
23 #include "llvm/CodeGen/MachineFunctionPass.h"
24 #include "llvm/CodeGen/MachineLoopInfo.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/CodeGen/Passes.h"
27 #include "llvm/CodeGen/RegisterCoalescer.h"
28 #include "llvm/Target/TargetInstrInfo.h"
29 #include "llvm/Target/TargetMachine.h"
30 #include "llvm/Target/TargetOptions.h"
31 #include "llvm/Target/TargetRegisterInfo.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/ADT/DenseMap.h"
36 #include "llvm/ADT/DepthFirstIterator.h"
37 #include "llvm/ADT/SmallPtrSet.h"
38 #include "llvm/ADT/Statistic.h"
39 using namespace llvm;
40
41 static cl::opt<int> PreSplitLimit("pre-split-limit", cl::init(-1), cl::Hidden);
42 static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1), cl::Hidden);
43 static cl::opt<int> RestoreFoldLimit("restore-fold-limit", cl::init(-1), cl::Hidden);
44
45 STATISTIC(NumSplits, "Number of intervals split");
46 STATISTIC(NumRemats, "Number of intervals split by rematerialization");
47 STATISTIC(NumFolds, "Number of intervals split with spill folding");
48 STATISTIC(NumRestoreFolds, "Number of intervals split with restore folding");
49 STATISTIC(NumRenumbers, "Number of intervals renumbered into new registers");
50 STATISTIC(NumDeadSpills, "Number of dead spills removed");
51
52 namespace {
53   class VISIBILITY_HIDDEN PreAllocSplitting : public MachineFunctionPass {
54     MachineFunction       *CurrMF;
55     const TargetMachine   *TM;
56     const TargetInstrInfo *TII;
57     const TargetRegisterInfo* TRI;
58     MachineFrameInfo      *MFI;
59     MachineRegisterInfo   *MRI;
60     LiveIntervals         *LIs;
61     LiveStacks            *LSs;
62     VirtRegMap            *VRM;
63
64     // Barrier - Current barrier being processed.
65     MachineInstr          *Barrier;
66
67     // BarrierMBB - Basic block where the barrier resides in.
68     MachineBasicBlock     *BarrierMBB;
69
70     // Barrier - Current barrier index.
71     MachineInstrIndex     BarrierIdx;
72
73     // CurrLI - Current live interval being split.
74     LiveInterval          *CurrLI;
75
76     // CurrSLI - Current stack slot live interval.
77     LiveInterval          *CurrSLI;
78
79     // CurrSValNo - Current val# for the stack slot live interval.
80     VNInfo                *CurrSValNo;
81
82     // IntervalSSMap - A map from live interval to spill slots.
83     DenseMap<unsigned, int> IntervalSSMap;
84
85     // Def2SpillMap - A map from a def instruction index to spill index.
86     DenseMap<MachineInstrIndex, MachineInstrIndex> Def2SpillMap;
87
88   public:
89     static char ID;
90     PreAllocSplitting() : MachineFunctionPass(&ID) {}
91
92     virtual bool runOnMachineFunction(MachineFunction &MF);
93
94     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
95       AU.setPreservesCFG();
96       AU.addRequired<LiveIntervals>();
97       AU.addPreserved<LiveIntervals>();
98       AU.addRequired<LiveStacks>();
99       AU.addPreserved<LiveStacks>();
100       AU.addPreserved<RegisterCoalescer>();
101       if (StrongPHIElim)
102         AU.addPreservedID(StrongPHIEliminationID);
103       else
104         AU.addPreservedID(PHIEliminationID);
105       AU.addRequired<MachineDominatorTree>();
106       AU.addRequired<MachineLoopInfo>();
107       AU.addRequired<VirtRegMap>();
108       AU.addPreserved<MachineDominatorTree>();
109       AU.addPreserved<MachineLoopInfo>();
110       AU.addPreserved<VirtRegMap>();
111       MachineFunctionPass::getAnalysisUsage(AU);
112     }
113     
114     virtual void releaseMemory() {
115       IntervalSSMap.clear();
116       Def2SpillMap.clear();
117     }
118
119     virtual const char *getPassName() const {
120       return "Pre-Register Allocaton Live Interval Splitting";
121     }
122
123     /// print - Implement the dump method.
124     virtual void print(raw_ostream &O, const Module* M = 0) const {
125       LIs->print(O, M);
126     }
127
128
129   private:
130     MachineBasicBlock::iterator
131       findNextEmptySlot(MachineBasicBlock*, MachineInstr*,
132                         MachineInstrIndex&);
133
134     MachineBasicBlock::iterator
135       findSpillPoint(MachineBasicBlock*, MachineInstr*, MachineInstr*,
136                      SmallPtrSet<MachineInstr*, 4>&, MachineInstrIndex&);
137
138     MachineBasicBlock::iterator
139       findRestorePoint(MachineBasicBlock*, MachineInstr*, MachineInstrIndex,
140                      SmallPtrSet<MachineInstr*, 4>&, MachineInstrIndex&);
141
142     int CreateSpillStackSlot(unsigned, const TargetRegisterClass *);
143
144     bool IsAvailableInStack(MachineBasicBlock*, unsigned,
145                             MachineInstrIndex, MachineInstrIndex,
146                             MachineInstrIndex&, int&) const;
147
148     void UpdateSpillSlotInterval(VNInfo*, MachineInstrIndex, MachineInstrIndex);
149
150     bool SplitRegLiveInterval(LiveInterval*);
151
152     bool SplitRegLiveIntervals(const TargetRegisterClass **,
153                                SmallPtrSet<LiveInterval*, 8>&);
154     
155     bool createsNewJoin(LiveRange* LR, MachineBasicBlock* DefMBB,
156                         MachineBasicBlock* BarrierMBB);
157     bool Rematerialize(unsigned vreg, VNInfo* ValNo,
158                        MachineInstr* DefMI,
159                        MachineBasicBlock::iterator RestorePt,
160                        MachineInstrIndex RestoreIdx,
161                        SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
162     MachineInstr* FoldSpill(unsigned vreg, const TargetRegisterClass* RC,
163                             MachineInstr* DefMI,
164                             MachineInstr* Barrier,
165                             MachineBasicBlock* MBB,
166                             int& SS,
167                             SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
168     MachineInstr* FoldRestore(unsigned vreg, 
169                               const TargetRegisterClass* RC,
170                               MachineInstr* Barrier,
171                               MachineBasicBlock* MBB,
172                               int SS,
173                               SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
174     void RenumberValno(VNInfo* VN);
175     void ReconstructLiveInterval(LiveInterval* LI);
176     bool removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split);
177     unsigned getNumberOfNonSpills(SmallPtrSet<MachineInstr*, 4>& MIs,
178                                unsigned Reg, int FrameIndex, bool& TwoAddr);
179     VNInfo* PerformPHIConstruction(MachineBasicBlock::iterator Use,
180                                    MachineBasicBlock* MBB, LiveInterval* LI,
181                                    SmallPtrSet<MachineInstr*, 4>& Visited,
182             DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
183             DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
184                                       DenseMap<MachineInstr*, VNInfo*>& NewVNs,
185                                 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
186                                 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
187                                         bool IsTopLevel, bool IsIntraBlock);
188     VNInfo* PerformPHIConstructionFallBack(MachineBasicBlock::iterator Use,
189                                    MachineBasicBlock* MBB, LiveInterval* LI,
190                                    SmallPtrSet<MachineInstr*, 4>& Visited,
191             DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
192             DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
193                                       DenseMap<MachineInstr*, VNInfo*>& NewVNs,
194                                 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
195                                 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
196                                         bool IsTopLevel, bool IsIntraBlock);
197 };
198 } // end anonymous namespace
199
200 char PreAllocSplitting::ID = 0;
201
202 static RegisterPass<PreAllocSplitting>
203 X("pre-alloc-splitting", "Pre-Register Allocation Live Interval Splitting");
204
205 const PassInfo *const llvm::PreAllocSplittingID = &X;
206
207
208 /// findNextEmptySlot - Find a gap after the given machine instruction in the
209 /// instruction index map. If there isn't one, return end().
210 MachineBasicBlock::iterator
211 PreAllocSplitting::findNextEmptySlot(MachineBasicBlock *MBB, MachineInstr *MI,
212                                      MachineInstrIndex &SpotIndex) {
213   MachineBasicBlock::iterator MII = MI;
214   if (++MII != MBB->end()) {
215     MachineInstrIndex Index =
216       LIs->findGapBeforeInstr(LIs->getInstructionIndex(MII));
217     if (Index != MachineInstrIndex()) {
218       SpotIndex = Index;
219       return MII;
220     }
221   }
222   return MBB->end();
223 }
224
225 /// findSpillPoint - Find a gap as far away from the given MI that's suitable
226 /// for spilling the current live interval. The index must be before any
227 /// defs and uses of the live interval register in the mbb. Return begin() if
228 /// none is found.
229 MachineBasicBlock::iterator
230 PreAllocSplitting::findSpillPoint(MachineBasicBlock *MBB, MachineInstr *MI,
231                                   MachineInstr *DefMI,
232                                   SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
233                                   MachineInstrIndex &SpillIndex) {
234   MachineBasicBlock::iterator Pt = MBB->begin();
235
236   MachineBasicBlock::iterator MII = MI;
237   MachineBasicBlock::iterator EndPt = DefMI
238     ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
239     
240   while (MII != EndPt && !RefsInMBB.count(MII) &&
241          MII->getOpcode() != TRI->getCallFrameSetupOpcode())
242     --MII;
243   if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
244     
245   while (MII != EndPt && !RefsInMBB.count(MII)) {
246     MachineInstrIndex Index = LIs->getInstructionIndex(MII);
247     
248     // We can't insert the spill between the barrier (a call), and its
249     // corresponding call frame setup.
250     if (MII->getOpcode() == TRI->getCallFrameDestroyOpcode()) {
251       while (MII->getOpcode() != TRI->getCallFrameSetupOpcode()) {
252         --MII;
253         if (MII == EndPt) {
254           return Pt;
255         }
256       }
257       continue;
258     } else if (LIs->hasGapBeforeInstr(Index)) {
259       Pt = MII;
260       SpillIndex = LIs->findGapBeforeInstr(Index, true);
261     }
262     
263     if (RefsInMBB.count(MII))
264       return Pt;
265     
266     
267     --MII;
268   }
269
270   return Pt;
271 }
272
273 /// findRestorePoint - Find a gap in the instruction index map that's suitable
274 /// for restoring the current live interval value. The index must be before any
275 /// uses of the live interval register in the mbb. Return end() if none is
276 /// found.
277 MachineBasicBlock::iterator
278 PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
279                                     MachineInstrIndex LastIdx,
280                                     SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
281                                     MachineInstrIndex &RestoreIndex) {
282   // FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
283   // begin index accordingly.
284   MachineBasicBlock::iterator Pt = MBB->end();
285   MachineBasicBlock::iterator EndPt = MBB->getFirstTerminator();
286
287   // We start at the call, so walk forward until we find the call frame teardown
288   // since we can't insert restores before that.  Bail if we encounter a use
289   // during this time.
290   MachineBasicBlock::iterator MII = MI;
291   if (MII == EndPt) return Pt;
292   
293   while (MII != EndPt && !RefsInMBB.count(MII) &&
294          MII->getOpcode() != TRI->getCallFrameDestroyOpcode())
295     ++MII;
296   if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
297   ++MII;
298   
299   // FIXME: Limit the number of instructions to examine to reduce
300   // compile time?
301   while (MII != EndPt) {
302     MachineInstrIndex Index = LIs->getInstructionIndex(MII);
303     if (Index > LastIdx)
304       break;
305     MachineInstrIndex Gap = LIs->findGapBeforeInstr(Index);
306       
307     // We can't insert a restore between the barrier (a call) and its 
308     // corresponding call frame teardown.
309     if (MII->getOpcode() == TRI->getCallFrameSetupOpcode()) {
310       do {
311         if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
312         ++MII;
313       } while (MII->getOpcode() != TRI->getCallFrameDestroyOpcode());
314     } else if (Gap != MachineInstrIndex()) {
315       Pt = MII;
316       RestoreIndex = Gap;
317     }
318     
319     if (RefsInMBB.count(MII))
320       return Pt;
321     
322     ++MII;
323   }
324
325   return Pt;
326 }
327
328 /// CreateSpillStackSlot - Create a stack slot for the live interval being
329 /// split. If the live interval was previously split, just reuse the same
330 /// slot.
331 int PreAllocSplitting::CreateSpillStackSlot(unsigned Reg,
332                                             const TargetRegisterClass *RC) {
333   int SS;
334   DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
335   if (I != IntervalSSMap.end()) {
336     SS = I->second;
337   } else {
338     SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
339     IntervalSSMap[Reg] = SS;
340   }
341
342   // Create live interval for stack slot.
343   CurrSLI = &LSs->getOrCreateInterval(SS, RC);
344   if (CurrSLI->hasAtLeastOneValue())
345     CurrSValNo = CurrSLI->getValNumInfo(0);
346   else
347     CurrSValNo = CurrSLI->getNextValue(MachineInstrIndex(), 0, false,
348                                        LSs->getVNInfoAllocator());
349   return SS;
350 }
351
352 /// IsAvailableInStack - Return true if register is available in a split stack
353 /// slot at the specified index.
354 bool
355 PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
356                                     unsigned Reg, MachineInstrIndex DefIndex,
357                                     MachineInstrIndex RestoreIndex,
358                                     MachineInstrIndex &SpillIndex,
359                                     int& SS) const {
360   if (!DefMBB)
361     return false;
362
363   DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
364   if (I == IntervalSSMap.end())
365     return false;
366   DenseMap<MachineInstrIndex, MachineInstrIndex>::iterator
367     II = Def2SpillMap.find(DefIndex);
368   if (II == Def2SpillMap.end())
369     return false;
370
371   // If last spill of def is in the same mbb as barrier mbb (where restore will
372   // be), make sure it's not below the intended restore index.
373   // FIXME: Undo the previous spill?
374   assert(LIs->getMBBFromIndex(II->second) == DefMBB);
375   if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
376     return false;
377
378   SS = I->second;
379   SpillIndex = II->second;
380   return true;
381 }
382
383 /// UpdateSpillSlotInterval - Given the specified val# of the register live
384 /// interval being split, and the spill and restore indicies, update the live
385 /// interval of the spill stack slot.
386 void
387 PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, MachineInstrIndex SpillIndex,
388                                            MachineInstrIndex RestoreIndex) {
389   assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
390          "Expect restore in the barrier mbb");
391
392   MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
393   if (MBB == BarrierMBB) {
394     // Intra-block spill + restore. We are done.
395     LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
396     CurrSLI->addRange(SLR);
397     return;
398   }
399
400   SmallPtrSet<MachineBasicBlock*, 4> Processed;
401   MachineInstrIndex EndIdx = LIs->getMBBEndIdx(MBB);
402   LiveRange SLR(SpillIndex, LIs->getNextSlot(EndIdx), CurrSValNo);
403   CurrSLI->addRange(SLR);
404   Processed.insert(MBB);
405
406   // Start from the spill mbb, figure out the extend of the spill slot's
407   // live interval.
408   SmallVector<MachineBasicBlock*, 4> WorkList;
409   const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
410   if (LR->end > EndIdx)
411     // If live range extend beyond end of mbb, add successors to work list.
412     for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
413            SE = MBB->succ_end(); SI != SE; ++SI)
414       WorkList.push_back(*SI);
415
416   while (!WorkList.empty()) {
417     MachineBasicBlock *MBB = WorkList.back();
418     WorkList.pop_back();
419     if (Processed.count(MBB))
420       continue;
421     MachineInstrIndex Idx = LIs->getMBBStartIdx(MBB);
422     LR = CurrLI->getLiveRangeContaining(Idx);
423     if (LR && LR->valno == ValNo) {
424       EndIdx = LIs->getMBBEndIdx(MBB);
425       if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
426         // Spill slot live interval stops at the restore.
427         LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
428         CurrSLI->addRange(SLR);
429       } else if (LR->end > EndIdx) {
430         // Live range extends beyond end of mbb, process successors.
431         LiveRange SLR(Idx, LIs->getNextIndex(EndIdx), CurrSValNo);
432         CurrSLI->addRange(SLR);
433         for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
434                SE = MBB->succ_end(); SI != SE; ++SI)
435           WorkList.push_back(*SI);
436       } else {
437         LiveRange SLR(Idx, LR->end, CurrSValNo);
438         CurrSLI->addRange(SLR);
439       }
440       Processed.insert(MBB);
441     }
442   }
443 }
444
445 /// PerformPHIConstruction - From properly set up use and def lists, use a PHI
446 /// construction algorithm to compute the ranges and valnos for an interval.
447 VNInfo*
448 PreAllocSplitting::PerformPHIConstruction(MachineBasicBlock::iterator UseI,
449                                        MachineBasicBlock* MBB, LiveInterval* LI,
450                                        SmallPtrSet<MachineInstr*, 4>& Visited,
451              DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
452              DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
453                                        DenseMap<MachineInstr*, VNInfo*>& NewVNs,
454                                  DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
455                                  DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
456                                            bool IsTopLevel, bool IsIntraBlock) {
457   // Return memoized result if it's available.
458   if (IsTopLevel && Visited.count(UseI) && NewVNs.count(UseI))
459     return NewVNs[UseI];
460   else if (!IsTopLevel && IsIntraBlock && NewVNs.count(UseI))
461     return NewVNs[UseI];
462   else if (!IsIntraBlock && LiveOut.count(MBB))
463     return LiveOut[MBB];
464   
465   // Check if our block contains any uses or defs.
466   bool ContainsDefs = Defs.count(MBB);
467   bool ContainsUses = Uses.count(MBB);
468   
469   VNInfo* RetVNI = 0;
470   
471   // Enumerate the cases of use/def contaning blocks.
472   if (!ContainsDefs && !ContainsUses) {
473     return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
474                                           NewVNs, LiveOut, Phis,
475                                           IsTopLevel, IsIntraBlock);
476   } else if (ContainsDefs && !ContainsUses) {
477     SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
478
479     // Search for the def in this block.  If we don't find it before the
480     // instruction we care about, go to the fallback case.  Note that that
481     // should never happen: this cannot be intrablock, so use should
482     // always be an end() iterator.
483     assert(UseI == MBB->end() && "No use marked in intrablock");
484     
485     MachineBasicBlock::iterator Walker = UseI;
486     --Walker;
487     while (Walker != MBB->begin()) {
488       if (BlockDefs.count(Walker))
489         break;
490       --Walker;
491     }
492     
493     // Once we've found it, extend its VNInfo to our instruction.
494     MachineInstrIndex DefIndex = LIs->getInstructionIndex(Walker);
495     DefIndex = LiveIntervals::getDefIndex(DefIndex);
496     MachineInstrIndex EndIndex = LIs->getMBBEndIdx(MBB);
497     
498     RetVNI = NewVNs[Walker];
499     LI->addRange(LiveRange(DefIndex, LIs->getNextSlot(EndIndex), RetVNI));
500   } else if (!ContainsDefs && ContainsUses) {
501     SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
502     
503     // Search for the use in this block that precedes the instruction we care 
504     // about, going to the fallback case if we don't find it.    
505     if (UseI == MBB->begin())
506       return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
507                                             Uses, NewVNs, LiveOut, Phis,
508                                             IsTopLevel, IsIntraBlock);
509     
510     MachineBasicBlock::iterator Walker = UseI;
511     --Walker;
512     bool found = false;
513     while (Walker != MBB->begin()) {
514       if (BlockUses.count(Walker)) {
515         found = true;
516         break;
517       }
518       --Walker;
519     }
520         
521     // Must check begin() too.
522     if (!found) {
523       if (BlockUses.count(Walker))
524         found = true;
525       else
526         return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
527                                               Uses, NewVNs, LiveOut, Phis,
528                                               IsTopLevel, IsIntraBlock);
529     }
530
531     MachineInstrIndex UseIndex = LIs->getInstructionIndex(Walker);
532     UseIndex = LiveIntervals::getUseIndex(UseIndex);
533     MachineInstrIndex EndIndex;
534     if (IsIntraBlock) {
535       EndIndex = LIs->getInstructionIndex(UseI);
536       EndIndex = LiveIntervals::getUseIndex(EndIndex);
537     } else
538       EndIndex = LIs->getMBBEndIdx(MBB);
539
540     // Now, recursively phi construct the VNInfo for the use we found,
541     // and then extend it to include the instruction we care about
542     RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
543                                     NewVNs, LiveOut, Phis, false, true);
544     
545     LI->addRange(LiveRange(UseIndex, LIs->getNextSlot(EndIndex), RetVNI));
546     
547     // FIXME: Need to set kills properly for inter-block stuff.
548     if (RetVNI->isKill(UseIndex)) RetVNI->removeKill(UseIndex);
549     if (IsIntraBlock)
550       RetVNI->addKill(EndIndex);
551   } else if (ContainsDefs && ContainsUses) {
552     SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
553     SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
554     
555     // This case is basically a merging of the two preceding case, with the
556     // special note that checking for defs must take precedence over checking
557     // for uses, because of two-address instructions.
558     
559     if (UseI == MBB->begin())
560       return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
561                                             NewVNs, LiveOut, Phis,
562                                             IsTopLevel, IsIntraBlock);
563     
564     MachineBasicBlock::iterator Walker = UseI;
565     --Walker;
566     bool foundDef = false;
567     bool foundUse = false;
568     while (Walker != MBB->begin()) {
569       if (BlockDefs.count(Walker)) {
570         foundDef = true;
571         break;
572       } else if (BlockUses.count(Walker)) {
573         foundUse = true;
574         break;
575       }
576       --Walker;
577     }
578         
579     // Must check begin() too.
580     if (!foundDef && !foundUse) {
581       if (BlockDefs.count(Walker))
582         foundDef = true;
583       else if (BlockUses.count(Walker))
584         foundUse = true;
585       else
586         return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
587                                               Uses, NewVNs, LiveOut, Phis,
588                                               IsTopLevel, IsIntraBlock);
589     }
590
591     MachineInstrIndex StartIndex = LIs->getInstructionIndex(Walker);
592     StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
593                             LiveIntervals::getUseIndex(StartIndex);
594     MachineInstrIndex EndIndex;
595     if (IsIntraBlock) {
596       EndIndex = LIs->getInstructionIndex(UseI);
597       EndIndex = LiveIntervals::getUseIndex(EndIndex);
598     } else
599       EndIndex = LIs->getMBBEndIdx(MBB);
600
601     if (foundDef)
602       RetVNI = NewVNs[Walker];
603     else
604       RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
605                                       NewVNs, LiveOut, Phis, false, true);
606
607     LI->addRange(LiveRange(StartIndex, LIs->getNextSlot(EndIndex), RetVNI));
608     
609     if (foundUse && RetVNI->isKill(StartIndex))
610       RetVNI->removeKill(StartIndex);
611     if (IsIntraBlock) {
612       RetVNI->addKill(EndIndex);
613     }
614   }
615   
616   // Memoize results so we don't have to recompute them.
617   if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
618   else {
619     if (!NewVNs.count(UseI))
620       NewVNs[UseI] = RetVNI;
621     Visited.insert(UseI);
622   }
623
624   return RetVNI;
625 }
626
627 /// PerformPHIConstructionFallBack - PerformPHIConstruction fall back path.
628 ///
629 VNInfo*
630 PreAllocSplitting::PerformPHIConstructionFallBack(MachineBasicBlock::iterator UseI,
631                                        MachineBasicBlock* MBB, LiveInterval* LI,
632                                        SmallPtrSet<MachineInstr*, 4>& Visited,
633              DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
634              DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
635                                        DenseMap<MachineInstr*, VNInfo*>& NewVNs,
636                                  DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
637                                  DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
638                                            bool IsTopLevel, bool IsIntraBlock) {
639   // NOTE: Because this is the fallback case from other cases, we do NOT
640   // assume that we are not intrablock here.
641   if (Phis.count(MBB)) return Phis[MBB]; 
642
643   MachineInstrIndex StartIndex = LIs->getMBBStartIdx(MBB);
644   VNInfo *RetVNI = Phis[MBB] =
645     LI->getNextValue(MachineInstrIndex(), /*FIXME*/ 0, false,
646                      LIs->getVNInfoAllocator());
647
648   if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
649     
650   // If there are no uses or defs between our starting point and the
651   // beginning of the block, then recursive perform phi construction
652   // on our predecessors.
653   DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
654   for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
655          PE = MBB->pred_end(); PI != PE; ++PI) {
656     VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), *PI, LI, 
657                                               Visited, Defs, Uses, NewVNs,
658                                               LiveOut, Phis, false, false);
659     if (Incoming != 0)
660       IncomingVNs[*PI] = Incoming;
661   }
662     
663   if (MBB->pred_size() == 1 && !RetVNI->hasPHIKill()) {
664     VNInfo* OldVN = RetVNI;
665     VNInfo* NewVN = IncomingVNs.begin()->second;
666     VNInfo* MergedVN = LI->MergeValueNumberInto(OldVN, NewVN);
667     if (MergedVN == OldVN) std::swap(OldVN, NewVN);
668     
669     for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator LOI = LiveOut.begin(),
670          LOE = LiveOut.end(); LOI != LOE; ++LOI)
671       if (LOI->second == OldVN)
672         LOI->second = MergedVN;
673     for (DenseMap<MachineInstr*, VNInfo*>::iterator NVI = NewVNs.begin(),
674          NVE = NewVNs.end(); NVI != NVE; ++NVI)
675       if (NVI->second == OldVN)
676         NVI->second = MergedVN;
677     for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator PI = Phis.begin(),
678          PE = Phis.end(); PI != PE; ++PI)
679       if (PI->second == OldVN)
680         PI->second = MergedVN;
681     RetVNI = MergedVN;
682   } else {
683     // Otherwise, merge the incoming VNInfos with a phi join.  Create a new
684     // VNInfo to represent the joined value.
685     for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
686            IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
687       I->second->setHasPHIKill(true);
688       MachineInstrIndex KillIndex = LIs->getMBBEndIdx(I->first);
689       if (!I->second->isKill(KillIndex))
690         I->second->addKill(KillIndex);
691     }
692   }
693       
694   MachineInstrIndex EndIndex;
695   if (IsIntraBlock) {
696     EndIndex = LIs->getInstructionIndex(UseI);
697     EndIndex = LiveIntervals::getUseIndex(EndIndex);
698   } else
699     EndIndex = LIs->getMBBEndIdx(MBB);
700   LI->addRange(LiveRange(StartIndex, LIs->getNextSlot(EndIndex), RetVNI));
701   if (IsIntraBlock)
702     RetVNI->addKill(EndIndex);
703
704   // Memoize results so we don't have to recompute them.
705   if (!IsIntraBlock)
706     LiveOut[MBB] = RetVNI;
707   else {
708     if (!NewVNs.count(UseI))
709       NewVNs[UseI] = RetVNI;
710     Visited.insert(UseI);
711   }
712
713   return RetVNI;
714 }
715
716 /// ReconstructLiveInterval - Recompute a live interval from scratch.
717 void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
718   BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
719   
720   // Clear the old ranges and valnos;
721   LI->clear();
722   
723   // Cache the uses and defs of the register
724   typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
725   RegMap Defs, Uses;
726   
727   // Keep track of the new VNs we're creating.
728   DenseMap<MachineInstr*, VNInfo*> NewVNs;
729   SmallPtrSet<VNInfo*, 2> PhiVNs;
730   
731   // Cache defs, and create a new VNInfo for each def.
732   for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
733        DE = MRI->def_end(); DI != DE; ++DI) {
734     Defs[(*DI).getParent()].insert(&*DI);
735     
736     MachineInstrIndex DefIdx = LIs->getInstructionIndex(&*DI);
737     DefIdx = LiveIntervals::getDefIndex(DefIdx);
738     
739     assert(DI->getOpcode() != TargetInstrInfo::PHI &&
740            "Following NewVN isPHIDef flag incorrect. Fix me!");
741     VNInfo* NewVN = LI->getNextValue(DefIdx, 0, true, Alloc);
742     
743     // If the def is a move, set the copy field.
744     unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
745     if (TII->isMoveInstr(*DI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
746       if (DstReg == LI->reg)
747         NewVN->setCopy(&*DI);
748     
749     NewVNs[&*DI] = NewVN;
750   }
751   
752   // Cache uses as a separate pass from actually processing them.
753   for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
754        UE = MRI->use_end(); UI != UE; ++UI)
755     Uses[(*UI).getParent()].insert(&*UI);
756     
757   // Now, actually process every use and use a phi construction algorithm
758   // to walk from it to its reaching definitions, building VNInfos along
759   // the way.
760   DenseMap<MachineBasicBlock*, VNInfo*> LiveOut;
761   DenseMap<MachineBasicBlock*, VNInfo*> Phis;
762   SmallPtrSet<MachineInstr*, 4> Visited;
763   for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
764        UE = MRI->use_end(); UI != UE; ++UI) {
765     PerformPHIConstruction(&*UI, UI->getParent(), LI, Visited, Defs,
766                            Uses, NewVNs, LiveOut, Phis, true, true); 
767   }
768   
769   // Add ranges for dead defs
770   for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
771        DE = MRI->def_end(); DI != DE; ++DI) {
772     MachineInstrIndex DefIdx = LIs->getInstructionIndex(&*DI);
773     DefIdx = LiveIntervals::getDefIndex(DefIdx);
774     
775     if (LI->liveAt(DefIdx)) continue;
776     
777     VNInfo* DeadVN = NewVNs[&*DI];
778     LI->addRange(LiveRange(DefIdx, LIs->getNextSlot(DefIdx), DeadVN));
779     DeadVN->addKill(DefIdx);
780   }
781 }
782
783 /// RenumberValno - Split the given valno out into a new vreg, allowing it to
784 /// be allocated to a different register.  This function creates a new vreg,
785 /// copies the valno and its live ranges over to the new vreg's interval,
786 /// removes them from the old interval, and rewrites all uses and defs of
787 /// the original reg to the new vreg within those ranges.
788 void PreAllocSplitting::RenumberValno(VNInfo* VN) {
789   SmallVector<VNInfo*, 4> Stack;
790   SmallVector<VNInfo*, 4> VNsToCopy;
791   Stack.push_back(VN);
792
793   // Walk through and copy the valno we care about, and any other valnos
794   // that are two-address redefinitions of the one we care about.  These
795   // will need to be rewritten as well.  We also check for safety of the 
796   // renumbering here, by making sure that none of the valno involved has
797   // phi kills.
798   while (!Stack.empty()) {
799     VNInfo* OldVN = Stack.back();
800     Stack.pop_back();
801     
802     // Bail out if we ever encounter a valno that has a PHI kill.  We can't
803     // renumber these.
804     if (OldVN->hasPHIKill()) return;
805     
806     VNsToCopy.push_back(OldVN);
807     
808     // Locate two-address redefinitions
809     for (VNInfo::KillSet::iterator KI = OldVN->kills.begin(),
810          KE = OldVN->kills.end(); KI != KE; ++KI) {
811       assert(!KI->isPHIIndex() &&
812              "VN previously reported having no PHI kills.");
813       MachineInstr* MI = LIs->getInstructionFromIndex(*KI);
814       unsigned DefIdx = MI->findRegisterDefOperandIdx(CurrLI->reg);
815       if (DefIdx == ~0U) continue;
816       if (MI->isRegTiedToUseOperand(DefIdx)) {
817         VNInfo* NextVN =
818           CurrLI->findDefinedVNInfoForRegInt(
819             LiveIntervals::getDefIndex(*KI));
820         if (NextVN == OldVN) continue;
821         Stack.push_back(NextVN);
822       }
823     }
824   }
825   
826   // Create the new vreg
827   unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
828   
829   // Create the new live interval
830   LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
831   
832   for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE = 
833        VNsToCopy.end(); OI != OE; ++OI) {
834     VNInfo* OldVN = *OI;
835     
836     // Copy the valno over
837     VNInfo* NewVN = NewLI.createValueCopy(OldVN, LIs->getVNInfoAllocator());
838     NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
839
840     // Remove the valno from the old interval
841     CurrLI->removeValNo(OldVN);
842   }
843   
844   // Rewrite defs and uses.  This is done in two stages to avoid invalidating
845   // the reg_iterator.
846   SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
847   
848   for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
849          E = MRI->reg_end(); I != E; ++I) {
850     MachineOperand& MO = I.getOperand();
851     MachineInstrIndex InstrIdx = LIs->getInstructionIndex(&*I);
852     
853     if ((MO.isUse() && NewLI.liveAt(LiveIntervals::getUseIndex(InstrIdx))) ||
854         (MO.isDef() && NewLI.liveAt(LiveIntervals::getDefIndex(InstrIdx))))
855       OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
856   }
857   
858   for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
859        OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
860     MachineInstr* Inst = I->first;
861     unsigned OpIdx = I->second;
862     MachineOperand& MO = Inst->getOperand(OpIdx);
863     MO.setReg(NewVReg);
864   }
865   
866   // Grow the VirtRegMap, since we've created a new vreg.
867   VRM->grow();
868   
869   // The renumbered vreg shares a stack slot with the old register.
870   if (IntervalSSMap.count(CurrLI->reg))
871     IntervalSSMap[NewVReg] = IntervalSSMap[CurrLI->reg];
872   
873   NumRenumbers++;
874 }
875
876 bool PreAllocSplitting::Rematerialize(unsigned VReg, VNInfo* ValNo,
877                                       MachineInstr* DefMI,
878                                       MachineBasicBlock::iterator RestorePt,
879                                       MachineInstrIndex RestoreIdx,
880                                     SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
881   MachineBasicBlock& MBB = *RestorePt->getParent();
882   
883   MachineBasicBlock::iterator KillPt = BarrierMBB->end();
884   MachineInstrIndex KillIdx;
885   if (!ValNo->isDefAccurate() || DefMI->getParent() == BarrierMBB)
886     KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, KillIdx);
887   else
888     KillPt = findNextEmptySlot(DefMI->getParent(), DefMI, KillIdx);
889   
890   if (KillPt == DefMI->getParent()->end())
891     return false;
892   
893   TII->reMaterialize(MBB, RestorePt, VReg, 0, DefMI);
894   LIs->InsertMachineInstrInMaps(prior(RestorePt), RestoreIdx);
895   
896   ReconstructLiveInterval(CurrLI);
897   MachineInstrIndex RematIdx = LIs->getInstructionIndex(prior(RestorePt));
898   RematIdx = LiveIntervals::getDefIndex(RematIdx);
899   RenumberValno(CurrLI->findDefinedVNInfoForRegInt(RematIdx));
900   
901   ++NumSplits;
902   ++NumRemats;
903   return true;  
904 }
905
906 MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg, 
907                                            const TargetRegisterClass* RC,
908                                            MachineInstr* DefMI,
909                                            MachineInstr* Barrier,
910                                            MachineBasicBlock* MBB,
911                                            int& SS,
912                                     SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
913   MachineBasicBlock::iterator Pt = MBB->begin();
914
915   // Go top down if RefsInMBB is empty.
916   if (RefsInMBB.empty())
917     return 0;
918   
919   MachineBasicBlock::iterator FoldPt = Barrier;
920   while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
921          !RefsInMBB.count(FoldPt))
922     --FoldPt;
923   
924   int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg, false);
925   if (OpIdx == -1)
926     return 0;
927   
928   SmallVector<unsigned, 1> Ops;
929   Ops.push_back(OpIdx);
930   
931   if (!TII->canFoldMemoryOperand(FoldPt, Ops))
932     return 0;
933   
934   DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
935   if (I != IntervalSSMap.end()) {
936     SS = I->second;
937   } else {
938     SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());    
939   }
940   
941   MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
942                                              FoldPt, Ops, SS);
943   
944   if (FMI) {
945     LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
946     FMI = MBB->insert(MBB->erase(FoldPt), FMI);
947     ++NumFolds;
948     
949     IntervalSSMap[vreg] = SS;
950     CurrSLI = &LSs->getOrCreateInterval(SS, RC);
951     if (CurrSLI->hasAtLeastOneValue())
952       CurrSValNo = CurrSLI->getValNumInfo(0);
953     else
954       CurrSValNo = CurrSLI->getNextValue(MachineInstrIndex(), 0, false,
955                                          LSs->getVNInfoAllocator());
956   }
957   
958   return FMI;
959 }
960
961 MachineInstr* PreAllocSplitting::FoldRestore(unsigned vreg, 
962                                              const TargetRegisterClass* RC,
963                                              MachineInstr* Barrier,
964                                              MachineBasicBlock* MBB,
965                                              int SS,
966                                      SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
967   if ((int)RestoreFoldLimit != -1 && RestoreFoldLimit == (int)NumRestoreFolds)
968     return 0;
969                                        
970   // Go top down if RefsInMBB is empty.
971   if (RefsInMBB.empty())
972     return 0;
973   
974   // Can't fold a restore between a call stack setup and teardown.
975   MachineBasicBlock::iterator FoldPt = Barrier;
976   
977   // Advance from barrier to call frame teardown.
978   while (FoldPt != MBB->getFirstTerminator() &&
979          FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
980     if (RefsInMBB.count(FoldPt))
981       return 0;
982     
983     ++FoldPt;
984   }
985   
986   if (FoldPt == MBB->getFirstTerminator())
987     return 0;
988   else
989     ++FoldPt;
990   
991   // Now find the restore point.
992   while (FoldPt != MBB->getFirstTerminator() && !RefsInMBB.count(FoldPt)) {
993     if (FoldPt->getOpcode() == TRI->getCallFrameSetupOpcode()) {
994       while (FoldPt != MBB->getFirstTerminator() &&
995              FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
996         if (RefsInMBB.count(FoldPt))
997           return 0;
998         
999         ++FoldPt;
1000       }
1001       
1002       if (FoldPt == MBB->getFirstTerminator())
1003         return 0;
1004     } 
1005     
1006     ++FoldPt;
1007   }
1008   
1009   if (FoldPt == MBB->getFirstTerminator())
1010     return 0;
1011   
1012   int OpIdx = FoldPt->findRegisterUseOperandIdx(vreg, true);
1013   if (OpIdx == -1)
1014     return 0;
1015   
1016   SmallVector<unsigned, 1> Ops;
1017   Ops.push_back(OpIdx);
1018   
1019   if (!TII->canFoldMemoryOperand(FoldPt, Ops))
1020     return 0;
1021   
1022   MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
1023                                              FoldPt, Ops, SS);
1024   
1025   if (FMI) {
1026     LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
1027     FMI = MBB->insert(MBB->erase(FoldPt), FMI);
1028     ++NumRestoreFolds;
1029   }
1030   
1031   return FMI;
1032 }
1033
1034 /// SplitRegLiveInterval - Split (spill and restore) the given live interval
1035 /// so it would not cross the barrier that's being processed. Shrink wrap
1036 /// (minimize) the live interval to the last uses.
1037 bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
1038   CurrLI = LI;
1039
1040   // Find live range where current interval cross the barrier.
1041   LiveInterval::iterator LR =
1042     CurrLI->FindLiveRangeContaining(LIs->getUseIndex(BarrierIdx));
1043   VNInfo *ValNo = LR->valno;
1044
1045   assert(!ValNo->isUnused() && "Val# is defined by a dead def?");
1046
1047   MachineInstr *DefMI = ValNo->isDefAccurate()
1048     ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
1049
1050   // If this would create a new join point, do not split.
1051   if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent()))
1052     return false;
1053
1054   // Find all references in the barrier mbb.
1055   SmallPtrSet<MachineInstr*, 4> RefsInMBB;
1056   for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1057          E = MRI->reg_end(); I != E; ++I) {
1058     MachineInstr *RefMI = &*I;
1059     if (RefMI->getParent() == BarrierMBB)
1060       RefsInMBB.insert(RefMI);
1061   }
1062
1063   // Find a point to restore the value after the barrier.
1064   MachineInstrIndex RestoreIndex;
1065   MachineBasicBlock::iterator RestorePt =
1066     findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB, RestoreIndex);
1067   if (RestorePt == BarrierMBB->end())
1068     return false;
1069
1070   if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
1071     if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt,
1072                       RestoreIndex, RefsInMBB))
1073     return true;
1074
1075   // Add a spill either before the barrier or after the definition.
1076   MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
1077   const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
1078   MachineInstrIndex SpillIndex;
1079   MachineInstr *SpillMI = NULL;
1080   int SS = -1;
1081   if (!ValNo->isDefAccurate()) {
1082     // If we don't know where the def is we must split just before the barrier.
1083     if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1084                             BarrierMBB, SS, RefsInMBB))) {
1085       SpillIndex = LIs->getInstructionIndex(SpillMI);
1086     } else {
1087       MachineBasicBlock::iterator SpillPt = 
1088         findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, SpillIndex);
1089       if (SpillPt == BarrierMBB->begin())
1090         return false; // No gap to insert spill.
1091       // Add spill.
1092     
1093       SS = CreateSpillStackSlot(CurrLI->reg, RC);
1094       TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC);
1095       SpillMI = prior(SpillPt);
1096       LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1097     }
1098   } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
1099                                  RestoreIndex, SpillIndex, SS)) {
1100     // If it's already split, just restore the value. There is no need to spill
1101     // the def again.
1102     if (!DefMI)
1103       return false; // Def is dead. Do nothing.
1104     
1105     if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
1106                             BarrierMBB, SS, RefsInMBB))) {
1107       SpillIndex = LIs->getInstructionIndex(SpillMI);
1108     } else {
1109       // Check if it's possible to insert a spill after the def MI.
1110       MachineBasicBlock::iterator SpillPt;
1111       if (DefMBB == BarrierMBB) {
1112         // Add spill after the def and the last use before the barrier.
1113         SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
1114                                  RefsInMBB, SpillIndex);
1115         if (SpillPt == DefMBB->begin())
1116           return false; // No gap to insert spill.
1117       } else {
1118         SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex);
1119         if (SpillPt == DefMBB->end())
1120           return false; // No gap to insert spill.
1121       }
1122       // Add spill. The store instruction kills the register if def is before
1123       // the barrier in the barrier block.
1124       SS = CreateSpillStackSlot(CurrLI->reg, RC);
1125       TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg,
1126                                DefMBB == BarrierMBB, SS, RC);
1127       SpillMI = prior(SpillPt);
1128       LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1129     }
1130   }
1131
1132   // Remember def instruction index to spill index mapping.
1133   if (DefMI && SpillMI)
1134     Def2SpillMap[ValNo->def] = SpillIndex;
1135
1136   // Add restore.
1137   bool FoldedRestore = false;
1138   if (MachineInstr* LMI = FoldRestore(CurrLI->reg, RC, Barrier,
1139                                       BarrierMBB, SS, RefsInMBB)) {
1140     RestorePt = LMI;
1141     RestoreIndex = LIs->getInstructionIndex(RestorePt);
1142     FoldedRestore = true;
1143   } else {
1144     TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC);
1145     MachineInstr *LoadMI = prior(RestorePt);
1146     LIs->InsertMachineInstrInMaps(LoadMI, RestoreIndex);
1147   }
1148
1149   // Update spill stack slot live interval.
1150   UpdateSpillSlotInterval(ValNo, LIs->getNextSlot(LIs->getUseIndex(SpillIndex)),
1151                           LIs->getDefIndex(RestoreIndex));
1152
1153   ReconstructLiveInterval(CurrLI);
1154   
1155   if (!FoldedRestore) {
1156     MachineInstrIndex RestoreIdx = LIs->getInstructionIndex(prior(RestorePt));
1157     RestoreIdx = LiveIntervals::getDefIndex(RestoreIdx);
1158     RenumberValno(CurrLI->findDefinedVNInfoForRegInt(RestoreIdx));
1159   }
1160   
1161   ++NumSplits;
1162   return true;
1163 }
1164
1165 /// SplitRegLiveIntervals - Split all register live intervals that cross the
1166 /// barrier that's being processed.
1167 bool
1168 PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs,
1169                                          SmallPtrSet<LiveInterval*, 8>& Split) {
1170   // First find all the virtual registers whose live intervals are intercepted
1171   // by the current barrier.
1172   SmallVector<LiveInterval*, 8> Intervals;
1173   for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
1174     // FIXME: If it's not safe to move any instruction that defines the barrier
1175     // register class, then it means there are some special dependencies which
1176     // codegen is not modelling. Ignore these barriers for now.
1177     if (!TII->isSafeToMoveRegClassDefs(*RC))
1178       continue;
1179     std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
1180     for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1181       unsigned Reg = VRs[i];
1182       if (!LIs->hasInterval(Reg))
1183         continue;
1184       LiveInterval *LI = &LIs->getInterval(Reg);
1185       if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1186         // Virtual register live interval is intercepted by the barrier. We
1187         // should split and shrink wrap its interval if possible.
1188         Intervals.push_back(LI);
1189     }
1190   }
1191
1192   // Process the affected live intervals.
1193   bool Change = false;
1194   while (!Intervals.empty()) {
1195     if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1196       break;
1197     else if (NumSplits == 4)
1198       Change |= Change;
1199     LiveInterval *LI = Intervals.back();
1200     Intervals.pop_back();
1201     bool result = SplitRegLiveInterval(LI);
1202     if (result) Split.insert(LI);
1203     Change |= result;
1204   }
1205
1206   return Change;
1207 }
1208
1209 unsigned PreAllocSplitting::getNumberOfNonSpills(
1210                                   SmallPtrSet<MachineInstr*, 4>& MIs,
1211                                   unsigned Reg, int FrameIndex,
1212                                   bool& FeedsTwoAddr) {
1213   unsigned NonSpills = 0;
1214   for (SmallPtrSet<MachineInstr*, 4>::iterator UI = MIs.begin(), UE = MIs.end();
1215        UI != UE; ++UI) {
1216     int StoreFrameIndex;
1217     unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1218     if (StoreVReg != Reg || StoreFrameIndex != FrameIndex)
1219       NonSpills++;
1220     
1221     int DefIdx = (*UI)->findRegisterDefOperandIdx(Reg);
1222     if (DefIdx != -1 && (*UI)->isRegTiedToUseOperand(DefIdx))
1223       FeedsTwoAddr = true;
1224   }
1225   
1226   return NonSpills;
1227 }
1228
1229 /// removeDeadSpills - After doing splitting, filter through all intervals we've
1230 /// split, and see if any of the spills are unnecessary.  If so, remove them.
1231 bool PreAllocSplitting::removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split) {
1232   bool changed = false;
1233   
1234   // Walk over all of the live intervals that were touched by the splitter,
1235   // and see if we can do any DCE and/or folding.
1236   for (SmallPtrSet<LiveInterval*, 8>::iterator LI = split.begin(),
1237        LE = split.end(); LI != LE; ++LI) {
1238     DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> > VNUseCount;
1239     
1240     // First, collect all the uses of the vreg, and sort them by their
1241     // reaching definition (VNInfo).
1242     for (MachineRegisterInfo::use_iterator UI = MRI->use_begin((*LI)->reg),
1243          UE = MRI->use_end(); UI != UE; ++UI) {
1244       MachineInstrIndex index = LIs->getInstructionIndex(&*UI);
1245       index = LiveIntervals::getUseIndex(index);
1246       
1247       const LiveRange* LR = (*LI)->getLiveRangeContaining(index);
1248       VNUseCount[LR->valno].insert(&*UI);
1249     }
1250     
1251     // Now, take the definitions (VNInfo's) one at a time and try to DCE 
1252     // and/or fold them away.
1253     for (LiveInterval::vni_iterator VI = (*LI)->vni_begin(),
1254          VE = (*LI)->vni_end(); VI != VE; ++VI) {
1255       
1256       if (DeadSplitLimit != -1 && (int)NumDeadSpills == DeadSplitLimit) 
1257         return changed;
1258       
1259       VNInfo* CurrVN = *VI;
1260       
1261       // We don't currently try to handle definitions with PHI kills, because
1262       // it would involve processing more than one VNInfo at once.
1263       if (CurrVN->hasPHIKill()) continue;
1264       
1265       // We also don't try to handle the results of PHI joins, since there's
1266       // no defining instruction to analyze.
1267       if (!CurrVN->isDefAccurate() || CurrVN->isUnused()) continue;
1268     
1269       // We're only interested in eliminating cruft introduced by the splitter,
1270       // is of the form load-use or load-use-store.  First, check that the
1271       // definition is a load, and remember what stack slot we loaded it from.
1272       MachineInstr* DefMI = LIs->getInstructionFromIndex(CurrVN->def);
1273       int FrameIndex;
1274       if (!TII->isLoadFromStackSlot(DefMI, FrameIndex)) continue;
1275       
1276       // If the definition has no uses at all, just DCE it.
1277       if (VNUseCount[CurrVN].size() == 0) {
1278         LIs->RemoveMachineInstrFromMaps(DefMI);
1279         (*LI)->removeValNo(CurrVN);
1280         DefMI->eraseFromParent();
1281         VNUseCount.erase(CurrVN);
1282         NumDeadSpills++;
1283         changed = true;
1284         continue;
1285       }
1286       
1287       // Second, get the number of non-store uses of the definition, as well as
1288       // a flag indicating whether it feeds into a later two-address definition.
1289       bool FeedsTwoAddr = false;
1290       unsigned NonSpillCount = getNumberOfNonSpills(VNUseCount[CurrVN],
1291                                                     (*LI)->reg, FrameIndex,
1292                                                     FeedsTwoAddr);
1293       
1294       // If there's one non-store use and it doesn't feed a two-addr, then
1295       // this is a load-use-store case that we can try to fold.
1296       if (NonSpillCount == 1 && !FeedsTwoAddr) {
1297         // Start by finding the non-store use MachineInstr.
1298         SmallPtrSet<MachineInstr*, 4>::iterator UI = VNUseCount[CurrVN].begin();
1299         int StoreFrameIndex;
1300         unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1301         while (UI != VNUseCount[CurrVN].end() &&
1302                (StoreVReg == (*LI)->reg && StoreFrameIndex == FrameIndex)) {
1303           ++UI;
1304           if (UI != VNUseCount[CurrVN].end())
1305             StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1306         }
1307         if (UI == VNUseCount[CurrVN].end()) continue;
1308         
1309         MachineInstr* use = *UI;
1310         
1311         // Attempt to fold it away!
1312         int OpIdx = use->findRegisterUseOperandIdx((*LI)->reg, false);
1313         if (OpIdx == -1) continue;
1314         SmallVector<unsigned, 1> Ops;
1315         Ops.push_back(OpIdx);
1316         if (!TII->canFoldMemoryOperand(use, Ops)) continue;
1317
1318         MachineInstr* NewMI =
1319                           TII->foldMemoryOperand(*use->getParent()->getParent(),  
1320                                                  use, Ops, FrameIndex);
1321
1322         if (!NewMI) continue;
1323
1324         // Update relevant analyses.
1325         LIs->RemoveMachineInstrFromMaps(DefMI);
1326         LIs->ReplaceMachineInstrInMaps(use, NewMI);
1327         (*LI)->removeValNo(CurrVN);
1328
1329         DefMI->eraseFromParent();
1330         MachineBasicBlock* MBB = use->getParent();
1331         NewMI = MBB->insert(MBB->erase(use), NewMI);
1332         VNUseCount[CurrVN].erase(use);
1333         
1334         // Remove deleted instructions.  Note that we need to remove them from 
1335         // the VNInfo->use map as well, just to be safe.
1336         for (SmallPtrSet<MachineInstr*, 4>::iterator II = 
1337              VNUseCount[CurrVN].begin(), IE = VNUseCount[CurrVN].end();
1338              II != IE; ++II) {
1339           for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
1340                VNI = VNUseCount.begin(), VNE = VNUseCount.end(); VNI != VNE; 
1341                ++VNI)
1342             if (VNI->first != CurrVN)
1343               VNI->second.erase(*II);
1344           LIs->RemoveMachineInstrFromMaps(*II);
1345           (*II)->eraseFromParent();
1346         }
1347         
1348         VNUseCount.erase(CurrVN);
1349
1350         for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
1351              VI = VNUseCount.begin(), VE = VNUseCount.end(); VI != VE; ++VI)
1352           if (VI->second.erase(use))
1353             VI->second.insert(NewMI);
1354
1355         NumDeadSpills++;
1356         changed = true;
1357         continue;
1358       }
1359       
1360       // If there's more than one non-store instruction, we can't profitably
1361       // fold it, so bail.
1362       if (NonSpillCount) continue;
1363         
1364       // Otherwise, this is a load-store case, so DCE them.
1365       for (SmallPtrSet<MachineInstr*, 4>::iterator UI = 
1366            VNUseCount[CurrVN].begin(), UE = VNUseCount[CurrVN].end();
1367            UI != UI; ++UI) {
1368         LIs->RemoveMachineInstrFromMaps(*UI);
1369         (*UI)->eraseFromParent();
1370       }
1371         
1372       VNUseCount.erase(CurrVN);
1373         
1374       LIs->RemoveMachineInstrFromMaps(DefMI);
1375       (*LI)->removeValNo(CurrVN);
1376       DefMI->eraseFromParent();
1377       NumDeadSpills++;
1378       changed = true;
1379     }
1380   }
1381   
1382   return changed;
1383 }
1384
1385 bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1386                                        MachineBasicBlock* DefMBB,
1387                                        MachineBasicBlock* BarrierMBB) {
1388   if (DefMBB == BarrierMBB)
1389     return false;
1390   
1391   if (LR->valno->hasPHIKill())
1392     return false;
1393   
1394   MachineInstrIndex MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
1395   if (LR->end < MBBEnd)
1396     return false;
1397   
1398   MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1399   if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1400     return true;
1401   
1402   MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1403   SmallPtrSet<MachineBasicBlock*, 4> Visited;
1404   typedef std::pair<MachineBasicBlock*,
1405                     MachineBasicBlock::succ_iterator> ItPair;
1406   SmallVector<ItPair, 4> Stack;
1407   Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1408   
1409   while (!Stack.empty()) {
1410     ItPair P = Stack.back();
1411     Stack.pop_back();
1412     
1413     MachineBasicBlock* PredMBB = P.first;
1414     MachineBasicBlock::succ_iterator S = P.second;
1415     
1416     if (S == PredMBB->succ_end())
1417       continue;
1418     else if (Visited.count(*S)) {
1419       Stack.push_back(std::make_pair(PredMBB, ++S));
1420       continue;
1421     } else
1422       Stack.push_back(std::make_pair(PredMBB, S+1));
1423     
1424     MachineBasicBlock* MBB = *S;
1425     Visited.insert(MBB);
1426     
1427     if (MBB == BarrierMBB)
1428       return true;
1429     
1430     MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1431     MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1432     MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1433     while (MDTN) {
1434       if (MDTN == DefMDTN)
1435         return true;
1436       else if (MDTN == BarrierMDTN)
1437         break;
1438       MDTN = MDTN->getIDom();
1439     }
1440     
1441     MBBEnd = LIs->getMBBEndIdx(MBB);
1442     if (LR->end > MBBEnd)
1443       Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1444   }
1445   
1446   return false;
1447
1448   
1449
1450 bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
1451   CurrMF = &MF;
1452   TM     = &MF.getTarget();
1453   TRI    = TM->getRegisterInfo();
1454   TII    = TM->getInstrInfo();
1455   MFI    = MF.getFrameInfo();
1456   MRI    = &MF.getRegInfo();
1457   LIs    = &getAnalysis<LiveIntervals>();
1458   LSs    = &getAnalysis<LiveStacks>();
1459   VRM    = &getAnalysis<VirtRegMap>();
1460
1461   bool MadeChange = false;
1462
1463   // Make sure blocks are numbered in order.
1464   MF.RenumberBlocks();
1465
1466   MachineBasicBlock *Entry = MF.begin();
1467   SmallPtrSet<MachineBasicBlock*,16> Visited;
1468
1469   SmallPtrSet<LiveInterval*, 8> Split;
1470
1471   for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1472          DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1473        DFI != E; ++DFI) {
1474     BarrierMBB = *DFI;
1475     for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1476            E = BarrierMBB->end(); I != E; ++I) {
1477       Barrier = &*I;
1478       const TargetRegisterClass **BarrierRCs =
1479         Barrier->getDesc().getRegClassBarriers();
1480       if (!BarrierRCs)
1481         continue;
1482       BarrierIdx = LIs->getInstructionIndex(Barrier);
1483       MadeChange |= SplitRegLiveIntervals(BarrierRCs, Split);
1484     }
1485   }
1486
1487   MadeChange |= removeDeadSpills(Split);
1488
1489   return MadeChange;
1490 }