Update PBQP's analysis usage to reflect the requirements of the inline spiller.
[oota-llvm.git] / lib / CodeGen / RegAllocPBQP.cpp
1 //===------ RegAllocPBQP.cpp ---- PBQP Register Allocator -------*- C++ -*-===//
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 contains a Partitioned Boolean Quadratic Programming (PBQP) based
11 // register allocator for LLVM. This allocator works by constructing a PBQP
12 // problem representing the register allocation problem under consideration,
13 // solving this using a PBQP solver, and mapping the solution back to a
14 // register assignment. If any variables are selected for spilling then spill
15 // code is inserted and the process repeated.
16 //
17 // The PBQP solver (pbqp.c) provided for this allocator uses a heuristic tuned
18 // for register allocation. For more information on PBQP for register
19 // allocation, see the following papers:
20 //
21 //   (1) Hames, L. and Scholz, B. 2006. Nearly optimal register allocation with
22 //   PBQP. In Proceedings of the 7th Joint Modular Languages Conference
23 //   (JMLC'06). LNCS, vol. 4228. Springer, New York, NY, USA. 346-361.
24 //
25 //   (2) Scholz, B., Eckstein, E. 2002. Register allocation for irregular
26 //   architectures. In Proceedings of the Joint Conference on Languages,
27 //   Compilers and Tools for Embedded Systems (LCTES'02), ACM Press, New York,
28 //   NY, USA, 139-148.
29 //
30 //===----------------------------------------------------------------------===//
31
32 #define DEBUG_TYPE "regalloc"
33
34 #include "LiveRangeEdit.h"
35 #include "RenderMachineFunction.h"
36 #include "Spiller.h"
37 #include "Splitter.h"
38 #include "VirtRegMap.h"
39 #include "RegisterCoalescer.h"
40 #include "llvm/Analysis/AliasAnalysis.h"
41 #include "llvm/CodeGen/CalcSpillWeights.h"
42 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
43 #include "llvm/CodeGen/LiveStackAnalysis.h"
44 #include "llvm/CodeGen/RegAllocPBQP.h"
45 #include "llvm/CodeGen/MachineDominators.h"
46 #include "llvm/CodeGen/MachineFunctionPass.h"
47 #include "llvm/CodeGen/MachineLoopInfo.h"
48 #include "llvm/CodeGen/MachineRegisterInfo.h"
49 #include "llvm/CodeGen/PBQP/HeuristicSolver.h"
50 #include "llvm/CodeGen/PBQP/Graph.h"
51 #include "llvm/CodeGen/PBQP/Heuristics/Briggs.h"
52 #include "llvm/CodeGen/RegAllocRegistry.h"
53 #include "llvm/Support/Debug.h"
54 #include "llvm/Support/raw_ostream.h"
55 #include "llvm/Target/TargetInstrInfo.h"
56 #include "llvm/Target/TargetMachine.h"
57 #include <limits>
58 #include <memory>
59 #include <set>
60 #include <vector>
61
62 using namespace llvm;
63
64 static RegisterRegAlloc
65 registerPBQPRepAlloc("pbqp", "PBQP register allocator",
66                        createDefaultPBQPRegisterAllocator);
67
68 static cl::opt<bool>
69 pbqpCoalescing("pbqp-coalescing",
70                 cl::desc("Attempt coalescing during PBQP register allocation."),
71                 cl::init(false), cl::Hidden);
72
73 static cl::opt<bool>
74 pbqpPreSplitting("pbqp-pre-splitting",
75                  cl::desc("Pre-split before PBQP register allocation."),
76                  cl::init(false), cl::Hidden);
77
78 namespace {
79
80 ///
81 /// PBQP based allocators solve the register allocation problem by mapping
82 /// register allocation problems to Partitioned Boolean Quadratic
83 /// Programming problems.
84 class RegAllocPBQP : public MachineFunctionPass {
85 public:
86
87   static char ID;
88
89   /// Construct a PBQP register allocator.
90   RegAllocPBQP(std::auto_ptr<PBQPBuilder> b, char *cPassID=0)
91       : MachineFunctionPass(ID), builder(b), customPassID(cPassID) {
92     initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
93     initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
94     initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
95     initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
96     initializeLiveStacksPass(*PassRegistry::getPassRegistry());
97     initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
98     initializeLoopSplitterPass(*PassRegistry::getPassRegistry());
99     initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
100     initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
101   }
102
103   /// Return the pass name.
104   virtual const char* getPassName() const {
105     return "PBQP Register Allocator";
106   }
107
108   /// PBQP analysis usage.
109   virtual void getAnalysisUsage(AnalysisUsage &au) const;
110
111   /// Perform register allocation
112   virtual bool runOnMachineFunction(MachineFunction &MF);
113
114 private:
115
116   typedef std::map<const LiveInterval*, unsigned> LI2NodeMap;
117   typedef std::vector<const LiveInterval*> Node2LIMap;
118   typedef std::vector<unsigned> AllowedSet;
119   typedef std::vector<AllowedSet> AllowedSetMap;
120   typedef std::pair<unsigned, unsigned> RegPair;
121   typedef std::map<RegPair, PBQP::PBQPNum> CoalesceMap;
122   typedef std::vector<PBQP::Graph::NodeItr> NodeVector;
123   typedef std::set<unsigned> RegSet;
124
125
126   std::auto_ptr<PBQPBuilder> builder;
127
128   char *customPassID;
129
130   MachineFunction *mf;
131   const TargetMachine *tm;
132   const TargetRegisterInfo *tri;
133   const TargetInstrInfo *tii;
134   const MachineLoopInfo *loopInfo;
135   MachineRegisterInfo *mri;
136   RenderMachineFunction *rmf;
137
138   std::auto_ptr<Spiller> spiller;
139   LiveIntervals *lis;
140   LiveStacks *lss;
141   VirtRegMap *vrm;
142
143   RegSet vregsToAlloc, emptyIntervalVRegs;
144
145   /// \brief Finds the initial set of vreg intervals to allocate.
146   void findVRegIntervalsToAlloc();
147
148   /// \brief Given a solved PBQP problem maps this solution back to a register
149   /// assignment.
150   bool mapPBQPToRegAlloc(const PBQPRAProblem &problem,
151                          const PBQP::Solution &solution);
152
153   /// \brief Postprocessing before final spilling. Sets basic block "live in"
154   /// variables.
155   void finalizeAlloc() const;
156
157 };
158
159 char RegAllocPBQP::ID = 0;
160
161 } // End anonymous namespace.
162
163 unsigned PBQPRAProblem::getVRegForNode(PBQP::Graph::ConstNodeItr node) const {
164   Node2VReg::const_iterator vregItr = node2VReg.find(node);
165   assert(vregItr != node2VReg.end() && "No vreg for node.");
166   return vregItr->second;
167 }
168
169 PBQP::Graph::NodeItr PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
170   VReg2Node::const_iterator nodeItr = vreg2Node.find(vreg);
171   assert(nodeItr != vreg2Node.end() && "No node for vreg.");
172   return nodeItr->second;
173   
174 }
175
176 const PBQPRAProblem::AllowedSet&
177   PBQPRAProblem::getAllowedSet(unsigned vreg) const {
178   AllowedSetMap::const_iterator allowedSetItr = allowedSets.find(vreg);
179   assert(allowedSetItr != allowedSets.end() && "No pregs for vreg.");
180   const AllowedSet &allowedSet = allowedSetItr->second;
181   return allowedSet;
182 }
183
184 unsigned PBQPRAProblem::getPRegForOption(unsigned vreg, unsigned option) const {
185   assert(isPRegOption(vreg, option) && "Not a preg option.");
186
187   const AllowedSet& allowedSet = getAllowedSet(vreg);
188   assert(option <= allowedSet.size() && "Option outside allowed set.");
189   return allowedSet[option - 1];
190 }
191
192 std::auto_ptr<PBQPRAProblem> PBQPBuilder::build(MachineFunction *mf,
193                                                 const LiveIntervals *lis,
194                                                 const MachineLoopInfo *loopInfo,
195                                                 const RegSet &vregs) {
196
197   typedef std::vector<const LiveInterval*> LIVector;
198
199   MachineRegisterInfo *mri = &mf->getRegInfo();
200   const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo();  
201
202   std::auto_ptr<PBQPRAProblem> p(new PBQPRAProblem());
203   PBQP::Graph &g = p->getGraph();
204   RegSet pregs;
205
206   // Collect the set of preg intervals, record that they're used in the MF.
207   for (LiveIntervals::const_iterator itr = lis->begin(), end = lis->end();
208        itr != end; ++itr) {
209     if (TargetRegisterInfo::isPhysicalRegister(itr->first)) {
210       pregs.insert(itr->first);
211       mri->setPhysRegUsed(itr->first);
212     }
213   }
214
215   BitVector reservedRegs = tri->getReservedRegs(*mf);
216
217   // Iterate over vregs. 
218   for (RegSet::const_iterator vregItr = vregs.begin(), vregEnd = vregs.end();
219        vregItr != vregEnd; ++vregItr) {
220     unsigned vreg = *vregItr;
221     const TargetRegisterClass *trc = mri->getRegClass(vreg);
222     const LiveInterval *vregLI = &lis->getInterval(vreg);
223
224     // Compute an initial allowed set for the current vreg.
225     typedef std::vector<unsigned> VRAllowed;
226     VRAllowed vrAllowed;
227     ArrayRef<unsigned> rawOrder = trc->getRawAllocationOrder(*mf);
228     for (unsigned i = 0; i != rawOrder.size(); ++i) {
229       unsigned preg = rawOrder[i];
230       if (!reservedRegs.test(preg)) {
231         vrAllowed.push_back(preg);
232       }
233     }
234
235     // Remove any physical registers which overlap.
236     for (RegSet::const_iterator pregItr = pregs.begin(),
237                                 pregEnd = pregs.end();
238          pregItr != pregEnd; ++pregItr) {
239       unsigned preg = *pregItr;
240       const LiveInterval *pregLI = &lis->getInterval(preg);
241
242       if (pregLI->empty()) {
243         continue;
244       }
245
246       if (!vregLI->overlaps(*pregLI)) {
247         continue;
248       }
249
250       // Remove the register from the allowed set.
251       VRAllowed::iterator eraseItr =
252         std::find(vrAllowed.begin(), vrAllowed.end(), preg);
253
254       if (eraseItr != vrAllowed.end()) {
255         vrAllowed.erase(eraseItr);
256       }
257
258       // Also remove any aliases.
259       const unsigned *aliasItr = tri->getAliasSet(preg);
260       if (aliasItr != 0) {
261         for (; *aliasItr != 0; ++aliasItr) {
262           VRAllowed::iterator eraseItr =
263             std::find(vrAllowed.begin(), vrAllowed.end(), *aliasItr);
264
265           if (eraseItr != vrAllowed.end()) {
266             vrAllowed.erase(eraseItr);
267           }
268         }
269       }
270     }
271
272     // Construct the node.
273     PBQP::Graph::NodeItr node = 
274       g.addNode(PBQP::Vector(vrAllowed.size() + 1, 0));
275
276     // Record the mapping and allowed set in the problem.
277     p->recordVReg(vreg, node, vrAllowed.begin(), vrAllowed.end());
278
279     PBQP::PBQPNum spillCost = (vregLI->weight != 0.0) ?
280         vregLI->weight : std::numeric_limits<PBQP::PBQPNum>::min();
281
282     addSpillCosts(g.getNodeCosts(node), spillCost);
283   }
284
285   for (RegSet::const_iterator vr1Itr = vregs.begin(), vrEnd = vregs.end();
286          vr1Itr != vrEnd; ++vr1Itr) {
287     unsigned vr1 = *vr1Itr;
288     const LiveInterval &l1 = lis->getInterval(vr1);
289     const PBQPRAProblem::AllowedSet &vr1Allowed = p->getAllowedSet(vr1);
290
291     for (RegSet::const_iterator vr2Itr = llvm::next(vr1Itr);
292          vr2Itr != vrEnd; ++vr2Itr) {
293       unsigned vr2 = *vr2Itr;
294       const LiveInterval &l2 = lis->getInterval(vr2);
295       const PBQPRAProblem::AllowedSet &vr2Allowed = p->getAllowedSet(vr2);
296
297       assert(!l2.empty() && "Empty interval in vreg set?");
298       if (l1.overlaps(l2)) {
299         PBQP::Graph::EdgeItr edge =
300           g.addEdge(p->getNodeForVReg(vr1), p->getNodeForVReg(vr2),
301                     PBQP::Matrix(vr1Allowed.size()+1, vr2Allowed.size()+1, 0));
302
303         addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
304       }
305     }
306   }
307
308   return p;
309 }
310
311 void PBQPBuilder::addSpillCosts(PBQP::Vector &costVec,
312                                 PBQP::PBQPNum spillCost) {
313   costVec[0] = spillCost;
314 }
315
316 void PBQPBuilder::addInterferenceCosts(
317                                     PBQP::Matrix &costMat,
318                                     const PBQPRAProblem::AllowedSet &vr1Allowed,
319                                     const PBQPRAProblem::AllowedSet &vr2Allowed,
320                                     const TargetRegisterInfo *tri) {
321   assert(costMat.getRows() == vr1Allowed.size() + 1 && "Matrix height mismatch.");
322   assert(costMat.getCols() == vr2Allowed.size() + 1 && "Matrix width mismatch.");
323
324   for (unsigned i = 0; i != vr1Allowed.size(); ++i) {
325     unsigned preg1 = vr1Allowed[i];
326
327     for (unsigned j = 0; j != vr2Allowed.size(); ++j) {
328       unsigned preg2 = vr2Allowed[j];
329
330       if (tri->regsOverlap(preg1, preg2)) {
331         costMat[i + 1][j + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity();
332       }
333     }
334   }
335 }
336
337 std::auto_ptr<PBQPRAProblem> PBQPBuilderWithCoalescing::build(
338                                                 MachineFunction *mf,
339                                                 const LiveIntervals *lis,
340                                                 const MachineLoopInfo *loopInfo,
341                                                 const RegSet &vregs) {
342
343   std::auto_ptr<PBQPRAProblem> p = PBQPBuilder::build(mf, lis, loopInfo, vregs);
344   PBQP::Graph &g = p->getGraph();
345
346   const TargetMachine &tm = mf->getTarget();
347   CoalescerPair cp(*tm.getInstrInfo(), *tm.getRegisterInfo());
348
349   // Scan the machine function and add a coalescing cost whenever CoalescerPair
350   // gives the Ok.
351   for (MachineFunction::const_iterator mbbItr = mf->begin(),
352                                        mbbEnd = mf->end();
353        mbbItr != mbbEnd; ++mbbItr) {
354     const MachineBasicBlock *mbb = &*mbbItr;
355
356     for (MachineBasicBlock::const_iterator miItr = mbb->begin(),
357                                            miEnd = mbb->end();
358          miItr != miEnd; ++miItr) {
359       const MachineInstr *mi = &*miItr;
360
361       if (!cp.setRegisters(mi)) {
362         continue; // Not coalescable.
363       }
364
365       if (cp.getSrcReg() == cp.getDstReg()) {
366         continue; // Already coalesced.
367       }
368
369       unsigned dst = cp.getDstReg(),
370                src = cp.getSrcReg();
371
372       const float copyFactor = 0.5; // Cost of copy relative to load. Current
373       // value plucked randomly out of the air.
374                                       
375       PBQP::PBQPNum cBenefit =
376         copyFactor * LiveIntervals::getSpillWeight(false, true,
377                                                    loopInfo->getLoopDepth(mbb));
378
379       if (cp.isPhys()) {
380         if (!lis->isAllocatable(dst)) {
381           continue;
382         }
383
384         const PBQPRAProblem::AllowedSet &allowed = p->getAllowedSet(src);
385         unsigned pregOpt = 0;  
386         while (pregOpt < allowed.size() && allowed[pregOpt] != dst) {
387           ++pregOpt;
388         }
389         if (pregOpt < allowed.size()) {
390           ++pregOpt; // +1 to account for spill option.
391           PBQP::Graph::NodeItr node = p->getNodeForVReg(src);
392           addPhysRegCoalesce(g.getNodeCosts(node), pregOpt, cBenefit);
393         }
394       } else {
395         const PBQPRAProblem::AllowedSet *allowed1 = &p->getAllowedSet(dst);
396         const PBQPRAProblem::AllowedSet *allowed2 = &p->getAllowedSet(src);
397         PBQP::Graph::NodeItr node1 = p->getNodeForVReg(dst);
398         PBQP::Graph::NodeItr node2 = p->getNodeForVReg(src);
399         PBQP::Graph::EdgeItr edge = g.findEdge(node1, node2);
400         if (edge == g.edgesEnd()) {
401           edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
402                                                       allowed2->size() + 1,
403                                                       0));
404         } else {
405           if (g.getEdgeNode1(edge) == node2) {
406             std::swap(node1, node2);
407             std::swap(allowed1, allowed2);
408           }
409         }
410             
411         addVirtRegCoalesce(g.getEdgeCosts(edge), *allowed1, *allowed2,
412                            cBenefit);
413       }
414     }
415   }
416
417   return p;
418 }
419
420 void PBQPBuilderWithCoalescing::addPhysRegCoalesce(PBQP::Vector &costVec,
421                                                    unsigned pregOption,
422                                                    PBQP::PBQPNum benefit) {
423   costVec[pregOption] += -benefit;
424 }
425
426 void PBQPBuilderWithCoalescing::addVirtRegCoalesce(
427                                     PBQP::Matrix &costMat,
428                                     const PBQPRAProblem::AllowedSet &vr1Allowed,
429                                     const PBQPRAProblem::AllowedSet &vr2Allowed,
430                                     PBQP::PBQPNum benefit) {
431
432   assert(costMat.getRows() == vr1Allowed.size() + 1 && "Size mismatch.");
433   assert(costMat.getCols() == vr2Allowed.size() + 1 && "Size mismatch.");
434
435   for (unsigned i = 0; i != vr1Allowed.size(); ++i) {
436     unsigned preg1 = vr1Allowed[i];
437     for (unsigned j = 0; j != vr2Allowed.size(); ++j) {
438       unsigned preg2 = vr2Allowed[j];
439
440       if (preg1 == preg2) {
441         costMat[i + 1][j + 1] += -benefit;
442       } 
443     }
444   }
445 }
446
447
448 void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
449   au.setPreservesCFG();
450   au.addRequired<AliasAnalysis>();
451   au.addPreserved<AliasAnalysis>();
452   au.addRequired<SlotIndexes>();
453   au.addPreserved<SlotIndexes>();
454   au.addRequired<LiveIntervals>();
455   //au.addRequiredID(SplitCriticalEdgesID);
456   au.addRequiredID(RegisterCoalescerPassID);
457   if (customPassID)
458     au.addRequiredID(*customPassID);
459   au.addRequired<CalculateSpillWeights>();
460   au.addRequired<LiveStacks>();
461   au.addPreserved<LiveStacks>();
462   au.addRequired<MachineDominatorTree>();
463   au.addPreserved<MachineDominatorTree>();
464   au.addRequired<MachineLoopInfo>();
465   au.addPreserved<MachineLoopInfo>();
466   if (pbqpPreSplitting)
467     au.addRequired<LoopSplitter>();
468   au.addRequired<VirtRegMap>();
469   au.addRequired<RenderMachineFunction>();
470   MachineFunctionPass::getAnalysisUsage(au);
471 }
472
473 void RegAllocPBQP::findVRegIntervalsToAlloc() {
474
475   // Iterate over all live ranges.
476   for (LiveIntervals::iterator itr = lis->begin(), end = lis->end();
477        itr != end; ++itr) {
478
479     // Ignore physical ones.
480     if (TargetRegisterInfo::isPhysicalRegister(itr->first))
481       continue;
482
483     LiveInterval *li = itr->second;
484
485     // If this live interval is non-empty we will use pbqp to allocate it.
486     // Empty intervals we allocate in a simple post-processing stage in
487     // finalizeAlloc.
488     if (!li->empty()) {
489       vregsToAlloc.insert(li->reg);
490     } else {
491       emptyIntervalVRegs.insert(li->reg);
492     }
493   }
494 }
495
496 bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQPRAProblem &problem,
497                                      const PBQP::Solution &solution) {
498   // Set to true if we have any spills
499   bool anotherRoundNeeded = false;
500
501   // Clear the existing allocation.
502   vrm->clearAllVirt();
503
504   const PBQP::Graph &g = problem.getGraph();
505   // Iterate over the nodes mapping the PBQP solution to a register
506   // assignment.
507   for (PBQP::Graph::ConstNodeItr node = g.nodesBegin(),
508                                  nodeEnd = g.nodesEnd();
509        node != nodeEnd; ++node) {
510     unsigned vreg = problem.getVRegForNode(node);
511     unsigned alloc = solution.getSelection(node);
512
513     if (problem.isPRegOption(vreg, alloc)) {
514       unsigned preg = problem.getPRegForOption(vreg, alloc);    
515       DEBUG(dbgs() << "VREG " << vreg << " -> " << tri->getName(preg) << "\n");
516       assert(preg != 0 && "Invalid preg selected.");
517       vrm->assignVirt2Phys(vreg, preg);      
518     } else if (problem.isSpillOption(vreg, alloc)) {
519       vregsToAlloc.erase(vreg);
520       SmallVector<LiveInterval*, 8> newSpills;
521       LiveRangeEdit LRE(lis->getInterval(vreg), newSpills);
522       spiller->spill(LRE);
523
524       DEBUG(dbgs() << "VREG " << vreg << " -> SPILLED (Cost: "
525                    << LRE.getParent().weight << ", New vregs: ");
526
527       // Copy any newly inserted live intervals into the list of regs to
528       // allocate.
529       for (LiveRangeEdit::iterator itr = LRE.begin(), end = LRE.end();
530            itr != end; ++itr) {
531         assert(!(*itr)->empty() && "Empty spill range.");
532         DEBUG(dbgs() << (*itr)->reg << " ");
533         vregsToAlloc.insert((*itr)->reg);
534       }
535
536       DEBUG(dbgs() << ")\n");
537
538       // We need another round if spill intervals were added.
539       anotherRoundNeeded |= !LRE.empty();
540     } else {
541       assert(false && "Unknown allocation option.");
542     }
543   }
544
545   return !anotherRoundNeeded;
546 }
547
548
549 void RegAllocPBQP::finalizeAlloc() const {
550   typedef LiveIntervals::iterator LIIterator;
551   typedef LiveInterval::Ranges::const_iterator LRIterator;
552
553   // First allocate registers for the empty intervals.
554   for (RegSet::const_iterator
555          itr = emptyIntervalVRegs.begin(), end = emptyIntervalVRegs.end();
556          itr != end; ++itr) {
557     LiveInterval *li = &lis->getInterval(*itr);
558
559     unsigned physReg = vrm->getRegAllocPref(li->reg);
560
561     if (physReg == 0) {
562       const TargetRegisterClass *liRC = mri->getRegClass(li->reg);
563       physReg = liRC->getRawAllocationOrder(*mf).front();
564     }
565
566     vrm->assignVirt2Phys(li->reg, physReg);
567   }
568
569   // Finally iterate over the basic blocks to compute and set the live-in sets.
570   SmallVector<MachineBasicBlock*, 8> liveInMBBs;
571   MachineBasicBlock *entryMBB = &*mf->begin();
572
573   for (LIIterator liItr = lis->begin(), liEnd = lis->end();
574        liItr != liEnd; ++liItr) {
575
576     const LiveInterval *li = liItr->second;
577     unsigned reg = 0;
578
579     // Get the physical register for this interval
580     if (TargetRegisterInfo::isPhysicalRegister(li->reg)) {
581       reg = li->reg;
582     } else if (vrm->isAssignedReg(li->reg)) {
583       reg = vrm->getPhys(li->reg);
584     } else {
585       // Ranges which are assigned a stack slot only are ignored.
586       continue;
587     }
588
589     if (reg == 0) {
590       // Filter out zero regs - they're for intervals that were spilled.
591       continue;
592     }
593
594     // Iterate over the ranges of the current interval...
595     for (LRIterator lrItr = li->begin(), lrEnd = li->end();
596          lrItr != lrEnd; ++lrItr) {
597
598       // Find the set of basic blocks which this range is live into...
599       if (lis->findLiveInMBBs(lrItr->start, lrItr->end,  liveInMBBs)) {
600         // And add the physreg for this interval to their live-in sets.
601         for (unsigned i = 0; i != liveInMBBs.size(); ++i) {
602           if (liveInMBBs[i] != entryMBB) {
603             if (!liveInMBBs[i]->isLiveIn(reg)) {
604               liveInMBBs[i]->addLiveIn(reg);
605             }
606           }
607         }
608         liveInMBBs.clear();
609       }
610     }
611   }
612
613 }
614
615 bool RegAllocPBQP::runOnMachineFunction(MachineFunction &MF) {
616
617   mf = &MF;
618   tm = &mf->getTarget();
619   tri = tm->getRegisterInfo();
620   tii = tm->getInstrInfo();
621   mri = &mf->getRegInfo(); 
622
623   lis = &getAnalysis<LiveIntervals>();
624   lss = &getAnalysis<LiveStacks>();
625   loopInfo = &getAnalysis<MachineLoopInfo>();
626   rmf = &getAnalysis<RenderMachineFunction>();
627
628   vrm = &getAnalysis<VirtRegMap>();
629   spiller.reset(createInlineSpiller(*this, MF, *vrm));
630
631
632   DEBUG(dbgs() << "PBQP Register Allocating for " << mf->getFunction()->getName() << "\n");
633
634   // Allocator main loop:
635   //
636   // * Map current regalloc problem to a PBQP problem
637   // * Solve the PBQP problem
638   // * Map the solution back to a register allocation
639   // * Spill if necessary
640   //
641   // This process is continued till no more spills are generated.
642
643   // Find the vreg intervals in need of allocation.
644   findVRegIntervalsToAlloc();
645
646   // If there are non-empty intervals allocate them using pbqp.
647   if (!vregsToAlloc.empty()) {
648
649     bool pbqpAllocComplete = false;
650     unsigned round = 0;
651
652     while (!pbqpAllocComplete) {
653       DEBUG(dbgs() << "  PBQP Regalloc round " << round << ":\n");
654
655       std::auto_ptr<PBQPRAProblem> problem =
656         builder->build(mf, lis, loopInfo, vregsToAlloc);
657       PBQP::Solution solution =
658         PBQP::HeuristicSolver<PBQP::Heuristics::Briggs>::solve(
659           problem->getGraph());
660
661       pbqpAllocComplete = mapPBQPToRegAlloc(*problem, solution);
662
663       ++round;
664     }
665   }
666
667   // Finalise allocation, allocate empty ranges.
668   finalizeAlloc();
669
670   rmf->renderMachineFunction("After PBQP register allocation.", vrm);
671
672   vregsToAlloc.clear();
673   emptyIntervalVRegs.clear();
674
675   DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *vrm << "\n");
676
677   // Run rewriter
678   vrm->rewrite(lis->getSlotIndexes());
679
680   return true;
681 }
682
683 FunctionPass* llvm::createPBQPRegisterAllocator(
684                                            std::auto_ptr<PBQPBuilder> builder,
685                                            char *customPassID) {
686   return new RegAllocPBQP(builder, customPassID);
687 }
688
689 FunctionPass* llvm::createDefaultPBQPRegisterAllocator() {
690   if (pbqpCoalescing) {
691     return createPBQPRegisterAllocator(
692              std::auto_ptr<PBQPBuilder>(new PBQPBuilderWithCoalescing()));
693   } // else
694   return createPBQPRegisterAllocator(
695            std::auto_ptr<PBQPBuilder>(new PBQPBuilder()));
696 }
697
698 #undef DEBUG_TYPE