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