blob: a0c1ec52ab22f970d35a26c10710cd2f47924bd8 [file] [log] [blame]
Andrew Trick14e8d712010-10-22 23:09:15 +00001//===-- 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 Olesencfafc542011-04-05 21:40:37 +000016#include "LiveDebugVariables.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000017#include "LiveIntervalUnion.h"
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +000018#include "LiveRangeEdit.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000019#include "RegAllocBase.h"
20#include "RenderMachineFunction.h"
21#include "Spiller.h"
Andrew Tricke141a492010-11-08 18:02:08 +000022#include "VirtRegMap.h"
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000023#include "llvm/ADT/OwningPtr.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000024#include "llvm/ADT/Statistic.h"
Andrew Trick8a83d542010-11-11 17:46:29 +000025#include "llvm/Analysis/AliasAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000026#include "llvm/Function.h"
27#include "llvm/PassAnalysisSupport.h"
28#include "llvm/CodeGen/CalcSpillWeights.h"
Andrew Tricke141a492010-11-08 18:02:08 +000029#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000030#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 Tricke16eecc2010-10-26 18:34:01 +000040#include "llvm/Target/TargetRegisterInfo.h"
Andrew Trick071d1c02010-11-09 21:04:34 +000041#ifndef NDEBUG
42#include "llvm/ADT/SparseBitVector.h"
43#endif
Andrew Tricke141a492010-11-08 18:02:08 +000044#include "llvm/Support/Debug.h"
45#include "llvm/Support/ErrorHandling.h"
46#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000047#include "llvm/Support/Timer.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000048
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000049#include <cstdlib>
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000050#include <queue>
Andrew Tricke16eecc2010-10-26 18:34:01 +000051
Andrew Trick14e8d712010-10-22 23:09:15 +000052using namespace llvm;
53
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000054STATISTIC(NumAssigned , "Number of registers assigned");
55STATISTIC(NumUnassigned , "Number of registers unassigned");
56STATISTIC(NumNewQueued , "Number of new live ranges queued");
57
Andrew Trick14e8d712010-10-22 23:09:15 +000058static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
59 createBasicRegisterAllocator);
60
Andrew Trick071d1c02010-11-09 21:04:34 +000061// Temporary verification option until we can put verification inside
62// MachineVerifier.
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000063static cl::opt<bool, true>
64VerifyRegAlloc("verify-regalloc", cl::location(RegAllocBase::VerifyEnabled),
65 cl::desc("Verify during register allocation"));
Andrew Trick071d1c02010-11-09 21:04:34 +000066
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000067const char *RegAllocBase::TimerGroupName = "Register Allocation";
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000068bool RegAllocBase::VerifyEnabled = false;
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000069
Benjamin Kramerc62feda2010-11-25 16:42:51 +000070namespace {
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000071 struct CompSpillWeight {
72 bool operator()(LiveInterval *A, LiveInterval *B) const {
73 return A->weight < B->weight;
74 }
75 };
76}
77
78namespace {
Andrew Trick14e8d712010-10-22 23:09:15 +000079/// 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.
84class RABasic : public MachineFunctionPass, public RegAllocBase
85{
86 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000087 MachineFunction *MF;
Andrew Trick18c57a82010-11-30 23:18:47 +000088 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000089
90 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000091 LiveStacks *LS;
92 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000093
94 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000095 std::auto_ptr<Spiller> SpillerInstance;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000096 std::priority_queue<LiveInterval*, std::vector<LiveInterval*>,
97 CompSpillWeight> Queue;
Andrew Trick14e8d712010-10-22 23:09:15 +000098public:
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 Trick18c57a82010-11-30 23:18:47 +0000107 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +0000108
109 virtual void releaseMemory();
110
Andrew Trick18c57a82010-11-30 23:18:47 +0000111 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000112
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000113 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
114
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000115 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 Trick18c57a82010-11-30 23:18:47 +0000127 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
128 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000129
130 /// Perform register allocation.
131 virtual bool runOnMachineFunction(MachineFunction &mf);
132
133 static char ID;
134};
135
136char RABasic::ID = 0;
137
138} // end anonymous namespace
139
Andrew Trick14e8d712010-10-22 23:09:15 +0000140RABasic::RABasic(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000141 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000142 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 Olesen964bc252010-11-03 20:39:26 +0000148 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000149 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
150 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
151 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
152}
153
Andrew Trick18c57a82010-11-30 23:18:47 +0000154void 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 Olesencfafc542011-04-05 21:40:37 +0000160 AU.addRequired<LiveDebugVariables>();
161 AU.addPreserved<LiveDebugVariables>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000162 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000163 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 Trick14e8d712010-10-22 23:09:15 +0000176}
177
178void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000179 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000180 RegAllocBase::releaseMemory();
181}
182
Andrew Trick071d1c02010-11-09 21:04:34 +0000183#ifndef NDEBUG
184// Verify each LiveIntervalUnion.
185void RegAllocBase::verify() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000186 LiveVirtRegBitSet VisitedVRegs;
187 OwningArrayPtr<LiveVirtRegBitSet>
188 unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]);
189
Andrew Trick071d1c02010-11-09 21:04:34 +0000190 // Verify disjoint unions.
Andrew Trick18c57a82010-11-30 23:18:47 +0000191 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
Jakob Stoklund Olesen4a84cce2010-12-14 18:53:47 +0000192 DEBUG(PhysReg2LiveUnion[PhysReg].print(dbgs(), TRI));
Andrew Trick18c57a82010-11-30 23:18:47 +0000193 LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg];
194 PhysReg2LiveUnion[PhysReg].verify(VRegs);
Andrew Trick071d1c02010-11-09 21:04:34 +0000195 // 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 Trick18c57a82010-11-30 23:18:47 +0000197 assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions");
198 VisitedVRegs |= VRegs;
Andrew Trick071d1c02010-11-09 21:04:34 +0000199 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000200
Andrew Trick071d1c02010-11-09 21:04:34 +0000201 // Verify vreg coverage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000202 for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end();
Andrew Trick071d1c02010-11-09 21:04:34 +0000203 liItr != liEnd; ++liItr) {
204 unsigned reg = liItr->first;
Andrew Trick071d1c02010-11-09 21:04:34 +0000205 if (TargetRegisterInfo::isPhysicalRegister(reg)) continue;
Andrew Trick18c57a82010-11-30 23:18:47 +0000206 if (!VRM->hasPhys(reg)) continue; // spilled?
207 unsigned PhysReg = VRM->getPhys(reg);
208 if (!unionVRegs[PhysReg].test(reg)) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000209 dbgs() << "LiveVirtReg " << reg << " not in union " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000210 TRI->getName(PhysReg) << "\n";
Andrew Trick071d1c02010-11-09 21:04:34 +0000211 llvm_unreachable("unallocated live vreg");
212 }
213 }
214 // FIXME: I'm not sure how to verify spilled intervals.
215}
216#endif //!NDEBUG
217
Andrew Trick14e8d712010-10-22 23:09:15 +0000218//===----------------------------------------------------------------------===//
219// RegAllocBase Implementation
220//===----------------------------------------------------------------------===//
221
222// Instantiate a LiveIntervalUnion for each physical register.
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000223void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
224 unsigned NRegs) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000225 NumRegs = NRegs;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000226 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 Trick14e8d712010-10-22 23:09:15 +0000230}
231
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000232void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000233 NamedRegionTimer T("Initialize", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000234 TRI = &vrm.getTargetRegInfo();
235 MRI = &vrm.getRegInfo();
Andrew Trick18c57a82010-11-30 23:18:47 +0000236 VRM = &vrm;
237 LIS = &lis;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000238 PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs());
Andrew Tricke141a492010-11-08 18:02:08 +0000239 // Cache an interferece query for each physical reg
Andrew Trick18c57a82010-11-30 23:18:47 +0000240 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
Andrew Trick14e8d712010-10-22 23:09:15 +0000241}
242
Andrew Trick18c57a82010-11-30 23:18:47 +0000243void RegAllocBase::LiveUnionArray::clear() {
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000244 if (!Array)
245 return;
246 for (unsigned r = 0; r != NumRegs; ++r)
247 Array[r].~LiveIntervalUnion();
248 free(Array);
Andrew Trick18c57a82010-11-30 23:18:47 +0000249 NumRegs = 0;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000250 Array = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000251}
252
253void RegAllocBase::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000254 PhysReg2LiveUnion.clear();
Andrew Trick14e8d712010-10-22 23:09:15 +0000255}
256
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000257// 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.
260void RegAllocBase::seedLiveRegs() {
Jakob Stoklund Olesenbd1926d2011-04-11 15:00:42 +0000261 NamedRegionTimer T("Seed Live Regs", TimerGroupName, TimePassesIsEnabled);
Andrew Trick18c57a82010-11-30 23:18:47 +0000262 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
263 unsigned RegNum = I->first;
264 LiveInterval &VirtReg = *I->second;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000265 if (TargetRegisterInfo::isPhysicalRegister(RegNum))
Andrew Trick18c57a82010-11-30 23:18:47 +0000266 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000267 else
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000268 enqueue(&VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000269 }
270}
271
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000272void RegAllocBase::assign(LiveInterval &VirtReg, unsigned PhysReg) {
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000273 DEBUG(dbgs() << "assigning " << PrintReg(VirtReg.reg, TRI)
274 << " to " << PrintReg(PhysReg, TRI) << '\n');
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000275 assert(!VRM->hasPhys(VirtReg.reg) && "Duplicate VirtReg assignment");
276 VRM->assignVirt2Phys(VirtReg.reg, PhysReg);
277 PhysReg2LiveUnion[PhysReg].unify(VirtReg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000278 ++NumAssigned;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000279}
280
281void RegAllocBase::unassign(LiveInterval &VirtReg, unsigned PhysReg) {
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000282 DEBUG(dbgs() << "unassigning " << PrintReg(VirtReg.reg, TRI)
283 << " from " << PrintReg(PhysReg, TRI) << '\n');
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000284 assert(VRM->getPhys(VirtReg.reg) == PhysReg && "Inconsistent unassign");
285 PhysReg2LiveUnion[PhysReg].extract(VirtReg);
286 VRM->clearVirt(VirtReg.reg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000287 ++NumUnassigned;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000288}
289
Andrew Trick18c57a82010-11-30 23:18:47 +0000290// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000291// selectOrSplit implementation.
292void RegAllocBase::allocatePhysRegs() {
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000293 seedLiveRegs();
Andrew Trick18c57a82010-11-30 23:18:47 +0000294
295 // Continue assigning vregs one at a time to available physical registers.
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000296 while (LiveInterval *VirtReg = dequeue()) {
Jakob Stoklund Olesen0b501512011-03-23 04:32:51 +0000297 assert(!VRM->hasPhys(VirtReg->reg) && "Register already assigned");
298
Jakob Stoklund Olesen10a43322011-03-12 04:17:20 +0000299 // 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 Olesen29267332011-03-16 22:56:11 +0000306 // Invalidate all interference queries, live ranges could have changed.
307 ++UserTag;
308
Andrew Trick18c57a82010-11-30 23:18:47 +0000309 // 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 Olesen98d96482011-02-22 23:01:52 +0000312 DEBUG(dbgs() << "\nselectOrSplit "
313 << MRI->getRegClass(VirtReg->reg)->getName()
314 << ':' << *VirtReg << '\n');
Andrew Trick18c57a82010-11-30 23:18:47 +0000315 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
316 VirtRegVec SplitVRegs;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000317 unsigned AvailablePhysReg = selectOrSplit(*VirtReg, SplitVRegs);
Andrew Trick18c57a82010-11-30 23:18:47 +0000318
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000319 if (AvailablePhysReg)
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000320 assign(*VirtReg, AvailablePhysReg);
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000321
Andrew Trick18c57a82010-11-30 23:18:47 +0000322 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
323 I != E; ++I) {
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000324 LiveInterval *SplitVirtReg = *I;
Jakob Stoklund Olesen0b501512011-03-23 04:32:51 +0000325 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 Trick18c57a82010-11-30 23:18:47 +0000331 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
332 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000333 "expect split value in virtual register");
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000334 enqueue(SplitVirtReg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000335 ++NumNewQueued;
Andrew Tricke16eecc2010-10-26 18:34:01 +0000336 }
337 }
338}
339
Andrew Trick18c57a82010-11-30 23:18:47 +0000340// 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.
343unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
344 unsigned PhysReg) {
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000345 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000346 if (query(VirtReg, *AliasI).checkInterference())
347 return *AliasI;
Andrew Tricke141a492010-11-08 18:02:08 +0000348 return 0;
349}
350
Andrew Trick18c57a82010-11-30 23:18:47 +0000351// Helper for spillInteferences() that spills all interfering vregs currently
352// assigned to this physical register.
353void 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 Trickf4baeaf2010-11-10 19:18:47 +0000358
Andrew Trick18c57a82010-11-30 23:18:47 +0000359 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
360 E = PendingSpills.end(); I != E; ++I) {
361 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000362 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000363 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000364
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000365 // Deallocate the interfering vreg by removing it from the union.
366 // A LiveInterval instance may not be in a union during modification!
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000367 unassign(SpilledVReg, PhysReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000368
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000369 // Spill the extracted interval.
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +0000370 LiveRangeEdit LRE(SpilledVReg, SplitVRegs, 0, &PendingSpills);
371 spiller().spill(LRE);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000372 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000373 // 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 Trickf4baeaf2010-11-10 19:18:47 +0000376}
377
Andrew Trick18c57a82010-11-30 23:18:47 +0000378// 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 Trickf4baeaf2010-11-10 19:18:47 +0000381bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000382RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
383 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000384 // Record each interference and determine if all are spillable before mutating
385 // either the union or live intervals.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000386 unsigned NumInterferences = 0;
Andrew Trick8a83d542010-11-11 17:46:29 +0000387 // Collect interferences assigned to any alias of the physical register.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000388 for (const unsigned *asI = TRI->getOverlaps(PhysReg); *asI; ++asI) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000389 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
390 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000391 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000392 return false;
393 }
394 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000395 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
396 " interferences with " << VirtReg << "\n");
397 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000398
Andrew Trick18c57a82010-11-30 23:18:47 +0000399 // Spill each interfering vreg allocated to PhysReg or an alias.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000400 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000401 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000402 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000403}
404
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000405// Add newly allocated physical registers to the MBB live in sets.
406void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000407 NamedRegionTimer T("MBB Live Ins", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000408 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
409 MBBVec liveInMBBs;
410 MachineBasicBlock &entryMBB = *MF->begin();
411
412 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
413 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
414 if (LiveUnion.empty())
415 continue;
416 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
417 ++SI) {
418
419 // Find the set of basic blocks which this range is live into...
420 liveInMBBs.clear();
421 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
422
423 // And add the physreg for this interval to their live-in sets.
424 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
425 I != E; ++I) {
426 MachineBasicBlock *MBB = *I;
427 if (MBB == &entryMBB) continue;
428 if (MBB->isLiveIn(PhysReg)) continue;
429 MBB->addLiveIn(PhysReg);
430 }
431 }
432 }
433}
434
435
Andrew Trick14e8d712010-10-22 23:09:15 +0000436//===----------------------------------------------------------------------===//
437// RABasic Implementation
438//===----------------------------------------------------------------------===//
439
440// Driver for the register assignment and splitting heuristics.
441// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000442//
Andrew Trick18c57a82010-11-30 23:18:47 +0000443// This is a minimal implementation of register assignment and splitting that
444// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000445//
446// selectOrSplit can only be called once per live virtual register. We then do a
447// single interference test for each register the correct class until we find an
448// available register. So, the number of interference tests in the worst case is
449// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000450// minimal, there is no value in caching them outside the scope of
451// selectOrSplit().
452unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
453 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000454 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000455 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000456
Andrew Trick13bdbb02010-11-20 02:43:55 +0000457 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000458 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000459
Andrew Trick18c57a82010-11-30 23:18:47 +0000460 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
461 E = TRC->allocation_order_end(*MF);
462 I != E; ++I) {
463
464 unsigned PhysReg = *I;
465 if (ReservedRegs.test(PhysReg)) continue;
466
467 // Check interference and as a side effect, intialize queries for this
468 // VirtReg and its aliases.
469 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000470 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000471 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000472 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000473 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000474 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000475 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000476
Andrew Trickb853e6c2010-12-09 18:15:21 +0000477 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000478 // must have less spill weight.
479 if (interferingVirtReg->weight < VirtReg.weight ) {
480 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000481 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000482 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000483 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000484 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
485 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000486
Andrew Trick18c57a82010-11-30 23:18:47 +0000487 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000488
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000489 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
490 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000491 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000492 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000493 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000494 // No other spill candidates were found, so spill the current VirtReg.
495 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +0000496 LiveRangeEdit LRE(VirtReg, SplitVRegs);
497 spiller().spill(LRE);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000498
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000499 // The live virtual register requesting allocation was spilled, so tell
500 // the caller not to allocate anything during this round.
501 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000502}
Andrew Trick14e8d712010-10-22 23:09:15 +0000503
Andrew Trick14e8d712010-10-22 23:09:15 +0000504bool RABasic::runOnMachineFunction(MachineFunction &mf) {
505 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
506 << "********** Function: "
507 << ((Value*)mf.getFunction())->getName() << '\n');
508
Andrew Trick18c57a82010-11-30 23:18:47 +0000509 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000510 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000511
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000512 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Andrew Trick14e8d712010-10-22 23:09:15 +0000513
Andrew Trick18c57a82010-11-30 23:18:47 +0000514 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000515
Jakob Stoklund Olesen84275962011-03-31 23:02:17 +0000516 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000517
Andrew Tricke16eecc2010-10-26 18:34:01 +0000518 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000519
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000520 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000521
Andrew Trick14e8d712010-10-22 23:09:15 +0000522 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000523 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000524
525 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000526 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000527
Andrew Trick071d1c02010-11-09 21:04:34 +0000528 // FIXME: Verification currently must run before VirtRegRewriter. We should
529 // make the rewriter a separate pass and override verifyAnalysis instead. When
530 // that happens, verification naturally falls under VerifyMachineCode.
531#ifndef NDEBUG
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +0000532 if (VerifyEnabled) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000533 // Verify accuracy of LiveIntervals. The standard machine code verifier
534 // ensures that each LiveIntervals covers all uses of the virtual reg.
535
Andrew Trick18c57a82010-11-30 23:18:47 +0000536 // FIXME: MachineVerifier is badly broken when using the standard
537 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
538 // inline spiller, some tests fail to verify because the coalescer does not
539 // always generate verifiable code.
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000540 MF->verify(this, "In RABasic::verify");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000541
Andrew Trick071d1c02010-11-09 21:04:34 +0000542 // Verify that LiveIntervals are partitioned into unions and disjoint within
543 // the unions.
544 verify();
545 }
546#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000547
Andrew Trick14e8d712010-10-22 23:09:15 +0000548 // Run rewriter
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +0000549 VRM->rewrite(LIS->getSlotIndexes());
Andrew Tricke16eecc2010-10-26 18:34:01 +0000550
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000551 // Write out new DBG_VALUE instructions.
552 getAnalysis<LiveDebugVariables>().emitDebugValues(VRM);
553
Andrew Tricke16eecc2010-10-26 18:34:01 +0000554 // The pass output is in VirtRegMap. Release all the transient data.
555 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000556
Andrew Trick14e8d712010-10-22 23:09:15 +0000557 return true;
558}
559
Andrew Trick13bdbb02010-11-20 02:43:55 +0000560FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000561{
562 return new RABasic();
563}