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