Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 1 | //===-- RegAllocBasic.cpp - basic register allocator ----------------------===// |
| 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 defines the RABasic function pass, which provides a minimal |
| 11 | // implementation of the basic register allocator. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "regalloc" |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 16 | #include "LiveIntervalUnion.h" |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 17 | #include "RegAllocBase.h" |
| 18 | #include "RenderMachineFunction.h" |
| 19 | #include "Spiller.h" |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 20 | #include "VirtRegMap.h" |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 21 | #include "VirtRegRewriter.h" |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/OwningPtr.h" |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/AliasAnalysis.h" |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 24 | #include "llvm/Function.h" |
| 25 | #include "llvm/PassAnalysisSupport.h" |
| 26 | #include "llvm/CodeGen/CalcSpillWeights.h" |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
| 29 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 30 | #include "llvm/CodeGen/MachineInstr.h" |
| 31 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 32 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 33 | #include "llvm/CodeGen/Passes.h" |
| 34 | #include "llvm/CodeGen/RegAllocRegistry.h" |
| 35 | #include "llvm/CodeGen/RegisterCoalescer.h" |
| 36 | #include "llvm/Target/TargetMachine.h" |
| 37 | #include "llvm/Target/TargetOptions.h" |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetRegisterInfo.h" |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 39 | #ifndef NDEBUG |
| 40 | #include "llvm/ADT/SparseBitVector.h" |
| 41 | #endif |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Debug.h" |
| 43 | #include "llvm/Support/ErrorHandling.h" |
| 44 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 45 | #include "llvm/Support/Timer.h" |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 46 | |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 47 | #include <cstdlib> |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 48 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 49 | using namespace llvm; |
| 50 | |
| 51 | static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator", |
| 52 | createBasicRegisterAllocator); |
| 53 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 54 | // Temporary verification option until we can put verification inside |
| 55 | // MachineVerifier. |
Jakob Stoklund Olesen | af24964 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 56 | static cl::opt<bool, true> |
| 57 | VerifyRegAlloc("verify-regalloc", cl::location(RegAllocBase::VerifyEnabled), |
| 58 | cl::desc("Verify during register allocation")); |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 59 | |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 60 | const char *RegAllocBase::TimerGroupName = "Register Allocation"; |
Jakob Stoklund Olesen | af24964 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 61 | bool RegAllocBase::VerifyEnabled = false; |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 62 | |
Benjamin Kramer | c62feda | 2010-11-25 16:42:51 +0000 | [diff] [blame] | 63 | namespace { |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 64 | /// RABasic provides a minimal implementation of the basic register allocation |
| 65 | /// algorithm. It prioritizes live virtual registers by spill weight and spills |
| 66 | /// whenever a register is unavailable. This is not practical in production but |
| 67 | /// provides a useful baseline both for measuring other allocators and comparing |
| 68 | /// the speed of the basic algorithm against other styles of allocators. |
| 69 | class RABasic : public MachineFunctionPass, public RegAllocBase |
| 70 | { |
| 71 | // context |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 72 | MachineFunction *MF; |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 73 | BitVector ReservedRegs; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 74 | |
| 75 | // analyses |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 76 | LiveStacks *LS; |
| 77 | RenderMachineFunction *RMF; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 78 | |
| 79 | // state |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 80 | std::auto_ptr<Spiller> SpillerInstance; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 81 | |
| 82 | public: |
| 83 | RABasic(); |
| 84 | |
| 85 | /// Return the pass name. |
| 86 | virtual const char* getPassName() const { |
| 87 | return "Basic Register Allocator"; |
| 88 | } |
| 89 | |
| 90 | /// RABasic analysis usage. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 91 | virtual void getAnalysisUsage(AnalysisUsage &AU) const; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 92 | |
| 93 | virtual void releaseMemory(); |
| 94 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 95 | virtual Spiller &spiller() { return *SpillerInstance; } |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 96 | |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 97 | virtual float getPriority(LiveInterval *LI) { return LI->weight; } |
| 98 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 99 | virtual unsigned selectOrSplit(LiveInterval &VirtReg, |
| 100 | SmallVectorImpl<LiveInterval*> &SplitVRegs); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 101 | |
| 102 | /// Perform register allocation. |
| 103 | virtual bool runOnMachineFunction(MachineFunction &mf); |
| 104 | |
| 105 | static char ID; |
| 106 | }; |
| 107 | |
| 108 | char RABasic::ID = 0; |
| 109 | |
| 110 | } // end anonymous namespace |
| 111 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 112 | RABasic::RABasic(): MachineFunctionPass(ID) { |
| 113 | initializeLiveIntervalsPass(*PassRegistry::getPassRegistry()); |
| 114 | initializeSlotIndexesPass(*PassRegistry::getPassRegistry()); |
| 115 | initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry()); |
| 116 | initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry()); |
| 117 | initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry()); |
| 118 | initializeLiveStacksPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | 964bc25 | 2010-11-03 20:39:26 +0000 | [diff] [blame] | 119 | initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry()); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 120 | initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry()); |
| 121 | initializeVirtRegMapPass(*PassRegistry::getPassRegistry()); |
| 122 | initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry()); |
| 123 | } |
| 124 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 125 | void RABasic::getAnalysisUsage(AnalysisUsage &AU) const { |
| 126 | AU.setPreservesCFG(); |
| 127 | AU.addRequired<AliasAnalysis>(); |
| 128 | AU.addPreserved<AliasAnalysis>(); |
| 129 | AU.addRequired<LiveIntervals>(); |
| 130 | AU.addPreserved<SlotIndexes>(); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 131 | if (StrongPHIElim) |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 132 | AU.addRequiredID(StrongPHIEliminationID); |
| 133 | AU.addRequiredTransitive<RegisterCoalescer>(); |
| 134 | AU.addRequired<CalculateSpillWeights>(); |
| 135 | AU.addRequired<LiveStacks>(); |
| 136 | AU.addPreserved<LiveStacks>(); |
| 137 | AU.addRequiredID(MachineDominatorsID); |
| 138 | AU.addPreservedID(MachineDominatorsID); |
| 139 | AU.addRequired<MachineLoopInfo>(); |
| 140 | AU.addPreserved<MachineLoopInfo>(); |
| 141 | AU.addRequired<VirtRegMap>(); |
| 142 | AU.addPreserved<VirtRegMap>(); |
| 143 | DEBUG(AU.addRequired<RenderMachineFunction>()); |
| 144 | MachineFunctionPass::getAnalysisUsage(AU); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | void RABasic::releaseMemory() { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 148 | SpillerInstance.reset(0); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 149 | RegAllocBase::releaseMemory(); |
| 150 | } |
| 151 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 152 | #ifndef NDEBUG |
| 153 | // Verify each LiveIntervalUnion. |
| 154 | void RegAllocBase::verify() { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 155 | LiveVirtRegBitSet VisitedVRegs; |
| 156 | OwningArrayPtr<LiveVirtRegBitSet> |
| 157 | unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]); |
| 158 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 159 | // Verify disjoint unions. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 160 | for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) { |
Jakob Stoklund Olesen | 4a84cce | 2010-12-14 18:53:47 +0000 | [diff] [blame] | 161 | DEBUG(PhysReg2LiveUnion[PhysReg].print(dbgs(), TRI)); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 162 | LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg]; |
| 163 | PhysReg2LiveUnion[PhysReg].verify(VRegs); |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 164 | // Union + intersection test could be done efficiently in one pass, but |
| 165 | // don't add a method to SparseBitVector unless we really need it. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 166 | assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions"); |
| 167 | VisitedVRegs |= VRegs; |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 168 | } |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 169 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 170 | // Verify vreg coverage. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 171 | for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end(); |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 172 | liItr != liEnd; ++liItr) { |
| 173 | unsigned reg = liItr->first; |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 174 | if (TargetRegisterInfo::isPhysicalRegister(reg)) continue; |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 175 | if (!VRM->hasPhys(reg)) continue; // spilled? |
| 176 | unsigned PhysReg = VRM->getPhys(reg); |
| 177 | if (!unionVRegs[PhysReg].test(reg)) { |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 178 | dbgs() << "LiveVirtReg " << reg << " not in union " << |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 179 | TRI->getName(PhysReg) << "\n"; |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 180 | llvm_unreachable("unallocated live vreg"); |
| 181 | } |
| 182 | } |
| 183 | // FIXME: I'm not sure how to verify spilled intervals. |
| 184 | } |
| 185 | #endif //!NDEBUG |
| 186 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 187 | //===----------------------------------------------------------------------===// |
| 188 | // RegAllocBase Implementation |
| 189 | //===----------------------------------------------------------------------===// |
| 190 | |
| 191 | // Instantiate a LiveIntervalUnion for each physical register. |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 192 | void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator, |
| 193 | unsigned NRegs) { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 194 | NumRegs = NRegs; |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 195 | Array = |
| 196 | static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs)); |
| 197 | for (unsigned r = 0; r != NRegs; ++r) |
| 198 | new(Array + r) LiveIntervalUnion(r, allocator); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 201 | void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) { |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 202 | NamedRegionTimer T("Initialize", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 203 | TRI = &vrm.getTargetRegInfo(); |
| 204 | MRI = &vrm.getRegInfo(); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 205 | VRM = &vrm; |
| 206 | LIS = &lis; |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 207 | PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs()); |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 208 | // Cache an interferece query for each physical reg |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 209 | Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 212 | void RegAllocBase::LiveUnionArray::clear() { |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 213 | if (!Array) |
| 214 | return; |
| 215 | for (unsigned r = 0; r != NumRegs; ++r) |
| 216 | Array[r].~LiveIntervalUnion(); |
| 217 | free(Array); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 218 | NumRegs = 0; |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 219 | Array = 0; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | void RegAllocBase::releaseMemory() { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 223 | PhysReg2LiveUnion.clear(); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 226 | // Visit all the live virtual registers. If they are already assigned to a |
| 227 | // physical register, unify them with the corresponding LiveIntervalUnion, |
| 228 | // otherwise push them on the priority queue for later assignment. |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 229 | void RegAllocBase:: |
| 230 | seedLiveVirtRegs(std::priority_queue<std::pair<float, unsigned> > &VirtRegQ) { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 231 | for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) { |
| 232 | unsigned RegNum = I->first; |
| 233 | LiveInterval &VirtReg = *I->second; |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 234 | if (TargetRegisterInfo::isPhysicalRegister(RegNum)) |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 235 | PhysReg2LiveUnion[RegNum].unify(VirtReg); |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 236 | else |
| 237 | VirtRegQ.push(std::make_pair(getPriority(&VirtReg), RegNum)); |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
| 240 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 241 | // Top-level driver to manage the queue of unassigned VirtRegs and call the |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 242 | // selectOrSplit implementation. |
| 243 | void RegAllocBase::allocatePhysRegs() { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 244 | |
| 245 | // Push each vreg onto a queue or "precolor" by adding it to a physreg union. |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 246 | std::priority_queue<std::pair<float, unsigned> > VirtRegQ; |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 247 | seedLiveVirtRegs(VirtRegQ); |
| 248 | |
| 249 | // Continue assigning vregs one at a time to available physical registers. |
| 250 | while (!VirtRegQ.empty()) { |
| 251 | // Pop the highest priority vreg. |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 252 | LiveInterval &VirtReg = LIS->getInterval(VirtRegQ.top().second); |
| 253 | VirtRegQ.pop(); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 254 | |
| 255 | // selectOrSplit requests the allocator to return an available physical |
| 256 | // register if possible and populate a list of new live intervals that |
| 257 | // result from splitting. |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 258 | DEBUG(dbgs() << "\nselectOrSplit " << MRI->getRegClass(VirtReg.reg)->getName() |
| 259 | << ':' << VirtReg << '\n'); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 260 | typedef SmallVector<LiveInterval*, 4> VirtRegVec; |
| 261 | VirtRegVec SplitVRegs; |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 262 | unsigned AvailablePhysReg = selectOrSplit(VirtReg, SplitVRegs); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 263 | |
| 264 | if (AvailablePhysReg) { |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 265 | DEBUG(dbgs() << "allocating: " << TRI->getName(AvailablePhysReg) |
| 266 | << " for " << VirtReg << '\n'); |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 267 | assert(!VRM->hasPhys(VirtReg.reg) && "duplicate vreg in union"); |
| 268 | VRM->assignVirt2Phys(VirtReg.reg, AvailablePhysReg); |
| 269 | PhysReg2LiveUnion[AvailablePhysReg].unify(VirtReg); |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 270 | } |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 271 | for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end(); |
| 272 | I != E; ++I) { |
| 273 | LiveInterval* SplitVirtReg = *I; |
| 274 | if (SplitVirtReg->empty()) continue; |
| 275 | DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n"); |
| 276 | assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) && |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 277 | "expect split value in virtual register"); |
Jakob Stoklund Olesen | d0bec3e | 2010-12-08 22:22:41 +0000 | [diff] [blame] | 278 | VirtRegQ.push(std::make_pair(getPriority(SplitVirtReg), |
| 279 | SplitVirtReg->reg)); |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 284 | // Check if this live virtual register interferes with a physical register. If |
| 285 | // not, then check for interference on each register that aliases with the |
| 286 | // physical register. Return the interfering register. |
| 287 | unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg, |
| 288 | unsigned PhysReg) { |
Jakob Stoklund Olesen | 16999da | 2010-12-14 23:10:48 +0000 | [diff] [blame] | 289 | for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 290 | if (query(VirtReg, *AliasI).checkInterference()) |
| 291 | return *AliasI; |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 292 | return 0; |
| 293 | } |
| 294 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 295 | // Helper for spillInteferences() that spills all interfering vregs currently |
| 296 | // assigned to this physical register. |
| 297 | void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg, |
| 298 | SmallVectorImpl<LiveInterval*> &SplitVRegs) { |
| 299 | LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg); |
| 300 | assert(Q.seenAllInterferences() && "need collectInterferences()"); |
| 301 | const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs(); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 302 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 303 | for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(), |
| 304 | E = PendingSpills.end(); I != E; ++I) { |
| 305 | LiveInterval &SpilledVReg = **I; |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 306 | DEBUG(dbgs() << "extracting from " << |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 307 | TRI->getName(PhysReg) << " " << SpilledVReg << '\n'); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 308 | |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 309 | // Deallocate the interfering vreg by removing it from the union. |
| 310 | // A LiveInterval instance may not be in a union during modification! |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 311 | PhysReg2LiveUnion[PhysReg].extract(SpilledVReg); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 312 | |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 313 | // Clear the vreg assignment. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 314 | VRM->clearVirt(SpilledVReg.reg); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 315 | |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 316 | // Spill the extracted interval. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 317 | spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 318 | } |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 319 | // After extracting segments, the query's results are invalid. But keep the |
| 320 | // contents valid until we're done accessing pendingSpills. |
| 321 | Q.clear(); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 324 | // Spill or split all live virtual registers currently unified under PhysReg |
| 325 | // that interfere with VirtReg. The newly spilled or split live intervals are |
| 326 | // returned by appending them to SplitVRegs. |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 327 | bool |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 328 | RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg, |
| 329 | SmallVectorImpl<LiveInterval*> &SplitVRegs) { |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 330 | // Record each interference and determine if all are spillable before mutating |
| 331 | // either the union or live intervals. |
Jakob Stoklund Olesen | 16999da | 2010-12-14 23:10:48 +0000 | [diff] [blame] | 332 | unsigned NumInterferences = 0; |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 333 | // Collect interferences assigned to any alias of the physical register. |
Jakob Stoklund Olesen | 16999da | 2010-12-14 23:10:48 +0000 | [diff] [blame] | 334 | for (const unsigned *asI = TRI->getOverlaps(PhysReg); *asI; ++asI) { |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 335 | LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI); |
| 336 | NumInterferences += QAlias.collectInterferingVRegs(); |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 337 | if (QAlias.seenUnspillableVReg()) { |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 338 | return false; |
| 339 | } |
| 340 | } |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 341 | DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) << |
| 342 | " interferences with " << VirtReg << "\n"); |
| 343 | assert(NumInterferences > 0 && "expect interference"); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 344 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 345 | // Spill each interfering vreg allocated to PhysReg or an alias. |
Jakob Stoklund Olesen | 16999da | 2010-12-14 23:10:48 +0000 | [diff] [blame] | 346 | for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 347 | spillReg(VirtReg, *AliasI, SplitVRegs); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 348 | return true; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Jakob Stoklund Olesen | 1b19dc1 | 2010-12-08 01:06:06 +0000 | [diff] [blame] | 351 | // Add newly allocated physical registers to the MBB live in sets. |
| 352 | void RegAllocBase::addMBBLiveIns(MachineFunction *MF) { |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 353 | NamedRegionTimer T("MBB Live Ins", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 1b19dc1 | 2010-12-08 01:06:06 +0000 | [diff] [blame] | 354 | typedef SmallVector<MachineBasicBlock*, 8> MBBVec; |
| 355 | MBBVec liveInMBBs; |
| 356 | MachineBasicBlock &entryMBB = *MF->begin(); |
| 357 | |
| 358 | for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) { |
| 359 | LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg]; |
| 360 | if (LiveUnion.empty()) |
| 361 | continue; |
| 362 | for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid(); |
| 363 | ++SI) { |
| 364 | |
| 365 | // Find the set of basic blocks which this range is live into... |
| 366 | liveInMBBs.clear(); |
| 367 | if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue; |
| 368 | |
| 369 | // And add the physreg for this interval to their live-in sets. |
| 370 | for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end(); |
| 371 | I != E; ++I) { |
| 372 | MachineBasicBlock *MBB = *I; |
| 373 | if (MBB == &entryMBB) continue; |
| 374 | if (MBB->isLiveIn(PhysReg)) continue; |
| 375 | MBB->addLiveIn(PhysReg); |
| 376 | } |
| 377 | } |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 382 | //===----------------------------------------------------------------------===// |
| 383 | // RABasic Implementation |
| 384 | //===----------------------------------------------------------------------===// |
| 385 | |
| 386 | // Driver for the register assignment and splitting heuristics. |
| 387 | // Manages iteration over the LiveIntervalUnions. |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 388 | // |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 389 | // This is a minimal implementation of register assignment and splitting that |
| 390 | // spills whenever we run out of registers. |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 391 | // |
| 392 | // selectOrSplit can only be called once per live virtual register. We then do a |
| 393 | // single interference test for each register the correct class until we find an |
| 394 | // available register. So, the number of interference tests in the worst case is |
| 395 | // |vregs| * |machineregs|. And since the number of interference tests is |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 396 | // minimal, there is no value in caching them outside the scope of |
| 397 | // selectOrSplit(). |
| 398 | unsigned RABasic::selectOrSplit(LiveInterval &VirtReg, |
| 399 | SmallVectorImpl<LiveInterval*> &SplitVRegs) { |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 400 | // Populate a list of physical register spill candidates. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 401 | SmallVector<unsigned, 8> PhysRegSpillCands; |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 402 | |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 403 | // Check for an available register in this class. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 404 | const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 405 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 406 | for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF), |
| 407 | E = TRC->allocation_order_end(*MF); |
| 408 | I != E; ++I) { |
| 409 | |
| 410 | unsigned PhysReg = *I; |
| 411 | if (ReservedRegs.test(PhysReg)) continue; |
| 412 | |
| 413 | // Check interference and as a side effect, intialize queries for this |
| 414 | // VirtReg and its aliases. |
| 415 | unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg); |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 416 | if (interfReg == 0) { |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 417 | // Found an available register. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 418 | return PhysReg; |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 419 | } |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 420 | LiveInterval *interferingVirtReg = |
Jakob Stoklund Olesen | 953af2c | 2010-12-07 23:18:47 +0000 | [diff] [blame] | 421 | Queries[interfReg].firstInterference().liveUnionPos().value(); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 422 | |
Andrew Trick | b853e6c | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 423 | // The current VirtReg must either be spillable, or one of its interferences |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 424 | // must have less spill weight. |
| 425 | if (interferingVirtReg->weight < VirtReg.weight ) { |
| 426 | PhysRegSpillCands.push_back(PhysReg); |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 427 | } |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 428 | } |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 429 | // Try to spill another interfering reg with less spill weight. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 430 | for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(), |
| 431 | PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) { |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 432 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 433 | if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue; |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 434 | |
Jakob Stoklund Olesen | 2b38c51 | 2010-12-07 18:51:27 +0000 | [diff] [blame] | 435 | assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 && |
| 436 | "Interference after spill."); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 437 | // Tell the caller to allocate to this newly freed physical register. |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 438 | return *PhysRegI; |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 439 | } |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 440 | // No other spill candidates were found, so spill the current VirtReg. |
| 441 | DEBUG(dbgs() << "spilling: " << VirtReg << '\n'); |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 442 | SmallVector<LiveInterval*, 1> pendingSpills; |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 443 | |
| 444 | spiller().spill(&VirtReg, SplitVRegs, pendingSpills); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 445 | |
Andrew Trick | f4baeaf | 2010-11-10 19:18:47 +0000 | [diff] [blame] | 446 | // The live virtual register requesting allocation was spilled, so tell |
| 447 | // the caller not to allocate anything during this round. |
| 448 | return 0; |
Andrew Trick | e141a49 | 2010-11-08 18:02:08 +0000 | [diff] [blame] | 449 | } |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 450 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 451 | bool RABasic::runOnMachineFunction(MachineFunction &mf) { |
| 452 | DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n" |
| 453 | << "********** Function: " |
| 454 | << ((Value*)mf.getFunction())->getName() << '\n'); |
| 455 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 456 | MF = &mf; |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 457 | DEBUG(RMF = &getAnalysis<RenderMachineFunction>()); |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 458 | |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 459 | RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>()); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 460 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 461 | ReservedRegs = TRI->getReservedRegs(*MF); |
Andrew Trick | 8a83d54 | 2010-11-11 17:46:29 +0000 | [diff] [blame] | 462 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 463 | SpillerInstance.reset(createSpiller(*this, *MF, *VRM)); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 464 | |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 465 | allocatePhysRegs(); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 466 | |
Jakob Stoklund Olesen | 1b19dc1 | 2010-12-08 01:06:06 +0000 | [diff] [blame] | 467 | addMBBLiveIns(MF); |
Andrew Trick | 316df4b | 2010-11-20 02:57:05 +0000 | [diff] [blame] | 468 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 469 | // Diagnostic output before rewriting |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 470 | DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n"); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 471 | |
| 472 | // optional HTML output |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 473 | DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM)); |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 474 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 475 | // FIXME: Verification currently must run before VirtRegRewriter. We should |
| 476 | // make the rewriter a separate pass and override verifyAnalysis instead. When |
| 477 | // that happens, verification naturally falls under VerifyMachineCode. |
| 478 | #ifndef NDEBUG |
Jakob Stoklund Olesen | af24964 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 479 | if (VerifyEnabled) { |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 480 | // Verify accuracy of LiveIntervals. The standard machine code verifier |
| 481 | // ensures that each LiveIntervals covers all uses of the virtual reg. |
| 482 | |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 483 | // FIXME: MachineVerifier is badly broken when using the standard |
| 484 | // spiller. Always use -spiller=inline with -verify-regalloc. Even with the |
| 485 | // inline spiller, some tests fail to verify because the coalescer does not |
| 486 | // always generate verifiable code. |
| 487 | MF->verify(this); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 488 | |
Andrew Trick | 071d1c0 | 2010-11-09 21:04:34 +0000 | [diff] [blame] | 489 | // Verify that LiveIntervals are partitioned into unions and disjoint within |
| 490 | // the unions. |
| 491 | verify(); |
| 492 | } |
| 493 | #endif // !NDEBUG |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 494 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 495 | // Run rewriter |
| 496 | std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter()); |
Andrew Trick | 18c57a8 | 2010-11-30 23:18:47 +0000 | [diff] [blame] | 497 | rewriter->runOnMachineFunction(*MF, *VRM, LIS); |
Andrew Trick | e16eecc | 2010-10-26 18:34:01 +0000 | [diff] [blame] | 498 | |
| 499 | // The pass output is in VirtRegMap. Release all the transient data. |
| 500 | releaseMemory(); |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 501 | |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 502 | return true; |
| 503 | } |
| 504 | |
Andrew Trick | 13bdbb0 | 2010-11-20 02:43:55 +0000 | [diff] [blame] | 505 | FunctionPass* llvm::createBasicRegisterAllocator() |
Andrew Trick | 14e8d71 | 2010-10-22 23:09:15 +0000 | [diff] [blame] | 506 | { |
| 507 | return new RABasic(); |
| 508 | } |