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