blob: 045c8db9dadb69f0eaf0d4b661274236b7bd44b2 [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"
Andrew Tricke16eecc2010-10-26 18:34:01 +000016#include "LiveIntervalUnion.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000017#include "RegAllocBase.h"
18#include "RenderMachineFunction.h"
19#include "Spiller.h"
Andrew Tricke141a492010-11-08 18:02:08 +000020#include "VirtRegMap.h"
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000021#include "llvm/ADT/OwningPtr.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000022#include "llvm/ADT/Statistic.h"
Andrew Trick8a83d542010-11-11 17:46:29 +000023#include "llvm/Analysis/AliasAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000024#include "llvm/Function.h"
25#include "llvm/PassAnalysisSupport.h"
26#include "llvm/CodeGen/CalcSpillWeights.h"
Andrew Tricke141a492010-11-08 18:02:08 +000027#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000028#include "llvm/CodeGen/LiveStackAnalysis.h"
29#include "llvm/CodeGen/MachineFunctionPass.h"
30#include "llvm/CodeGen/MachineInstr.h"
31#include "llvm/CodeGen/MachineLoopInfo.h"
32#include "llvm/CodeGen/MachineRegisterInfo.h"
33#include "llvm/CodeGen/Passes.h"
34#include "llvm/CodeGen/RegAllocRegistry.h"
35#include "llvm/CodeGen/RegisterCoalescer.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetOptions.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000038#include "llvm/Target/TargetRegisterInfo.h"
Andrew Trick071d1c02010-11-09 21:04:34 +000039#ifndef NDEBUG
40#include "llvm/ADT/SparseBitVector.h"
41#endif
Andrew Tricke141a492010-11-08 18:02:08 +000042#include "llvm/Support/Debug.h"
43#include "llvm/Support/ErrorHandling.h"
44#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000045#include "llvm/Support/Timer.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000046
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000047#include <cstdlib>
Andrew Tricke16eecc2010-10-26 18:34:01 +000048
Andrew Trick14e8d712010-10-22 23:09:15 +000049using namespace llvm;
50
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000051STATISTIC(NumAssigned , "Number of registers assigned");
52STATISTIC(NumUnassigned , "Number of registers unassigned");
53STATISTIC(NumNewQueued , "Number of new live ranges queued");
54
Andrew Trick14e8d712010-10-22 23:09:15 +000055static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
56 createBasicRegisterAllocator);
57
Andrew Trick071d1c02010-11-09 21:04:34 +000058// Temporary verification option until we can put verification inside
59// MachineVerifier.
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000060static cl::opt<bool, true>
61VerifyRegAlloc("verify-regalloc", cl::location(RegAllocBase::VerifyEnabled),
62 cl::desc("Verify during register allocation"));
Andrew Trick071d1c02010-11-09 21:04:34 +000063
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000064const char *RegAllocBase::TimerGroupName = "Register Allocation";
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000065bool RegAllocBase::VerifyEnabled = false;
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000066
Benjamin Kramerc62feda2010-11-25 16:42:51 +000067namespace {
Andrew Trick14e8d712010-10-22 23:09:15 +000068/// RABasic provides a minimal implementation of the basic register allocation
69/// algorithm. It prioritizes live virtual registers by spill weight and spills
70/// whenever a register is unavailable. This is not practical in production but
71/// provides a useful baseline both for measuring other allocators and comparing
72/// the speed of the basic algorithm against other styles of allocators.
73class RABasic : public MachineFunctionPass, public RegAllocBase
74{
75 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000076 MachineFunction *MF;
Andrew Trick18c57a82010-11-30 23:18:47 +000077 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000078
79 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000080 LiveStacks *LS;
81 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000082
83 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000084 std::auto_ptr<Spiller> SpillerInstance;
Andrew Trick14e8d712010-10-22 23:09:15 +000085
86public:
87 RABasic();
88
89 /// Return the pass name.
90 virtual const char* getPassName() const {
91 return "Basic Register Allocator";
92 }
93
94 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000095 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000096
97 virtual void releaseMemory();
98
Andrew Trick18c57a82010-11-30 23:18:47 +000099 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000100
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000101 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
102
Andrew Trick18c57a82010-11-30 23:18:47 +0000103 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
104 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000105
106 /// Perform register allocation.
107 virtual bool runOnMachineFunction(MachineFunction &mf);
108
109 static char ID;
110};
111
112char RABasic::ID = 0;
113
114} // end anonymous namespace
115
Andrew Trick14e8d712010-10-22 23:09:15 +0000116RABasic::RABasic(): MachineFunctionPass(ID) {
117 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
118 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
119 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
120 initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
121 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
122 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000123 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000124 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
125 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
126 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
127}
128
Andrew Trick18c57a82010-11-30 23:18:47 +0000129void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
130 AU.setPreservesCFG();
131 AU.addRequired<AliasAnalysis>();
132 AU.addPreserved<AliasAnalysis>();
133 AU.addRequired<LiveIntervals>();
134 AU.addPreserved<SlotIndexes>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000135 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000136 AU.addRequiredID(StrongPHIEliminationID);
137 AU.addRequiredTransitive<RegisterCoalescer>();
138 AU.addRequired<CalculateSpillWeights>();
139 AU.addRequired<LiveStacks>();
140 AU.addPreserved<LiveStacks>();
141 AU.addRequiredID(MachineDominatorsID);
142 AU.addPreservedID(MachineDominatorsID);
143 AU.addRequired<MachineLoopInfo>();
144 AU.addPreserved<MachineLoopInfo>();
145 AU.addRequired<VirtRegMap>();
146 AU.addPreserved<VirtRegMap>();
147 DEBUG(AU.addRequired<RenderMachineFunction>());
148 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000149}
150
151void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000152 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000153 RegAllocBase::releaseMemory();
154}
155
Andrew Trick071d1c02010-11-09 21:04:34 +0000156#ifndef NDEBUG
157// Verify each LiveIntervalUnion.
158void RegAllocBase::verify() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000159 LiveVirtRegBitSet VisitedVRegs;
160 OwningArrayPtr<LiveVirtRegBitSet>
161 unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]);
162
Andrew Trick071d1c02010-11-09 21:04:34 +0000163 // Verify disjoint unions.
Andrew Trick18c57a82010-11-30 23:18:47 +0000164 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
Jakob Stoklund Olesen4a84cce2010-12-14 18:53:47 +0000165 DEBUG(PhysReg2LiveUnion[PhysReg].print(dbgs(), TRI));
Andrew Trick18c57a82010-11-30 23:18:47 +0000166 LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg];
167 PhysReg2LiveUnion[PhysReg].verify(VRegs);
Andrew Trick071d1c02010-11-09 21:04:34 +0000168 // Union + intersection test could be done efficiently in one pass, but
169 // don't add a method to SparseBitVector unless we really need it.
Andrew Trick18c57a82010-11-30 23:18:47 +0000170 assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions");
171 VisitedVRegs |= VRegs;
Andrew Trick071d1c02010-11-09 21:04:34 +0000172 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000173
Andrew Trick071d1c02010-11-09 21:04:34 +0000174 // Verify vreg coverage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000175 for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end();
Andrew Trick071d1c02010-11-09 21:04:34 +0000176 liItr != liEnd; ++liItr) {
177 unsigned reg = liItr->first;
Andrew Trick071d1c02010-11-09 21:04:34 +0000178 if (TargetRegisterInfo::isPhysicalRegister(reg)) continue;
Andrew Trick18c57a82010-11-30 23:18:47 +0000179 if (!VRM->hasPhys(reg)) continue; // spilled?
180 unsigned PhysReg = VRM->getPhys(reg);
181 if (!unionVRegs[PhysReg].test(reg)) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000182 dbgs() << "LiveVirtReg " << reg << " not in union " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000183 TRI->getName(PhysReg) << "\n";
Andrew Trick071d1c02010-11-09 21:04:34 +0000184 llvm_unreachable("unallocated live vreg");
185 }
186 }
187 // FIXME: I'm not sure how to verify spilled intervals.
188}
189#endif //!NDEBUG
190
Andrew Trick14e8d712010-10-22 23:09:15 +0000191//===----------------------------------------------------------------------===//
192// RegAllocBase Implementation
193//===----------------------------------------------------------------------===//
194
195// Instantiate a LiveIntervalUnion for each physical register.
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000196void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
197 unsigned NRegs) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000198 NumRegs = NRegs;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000199 Array =
200 static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
201 for (unsigned r = 0; r != NRegs; ++r)
202 new(Array + r) LiveIntervalUnion(r, allocator);
Andrew Trick14e8d712010-10-22 23:09:15 +0000203}
204
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000205void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000206 NamedRegionTimer T("Initialize", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000207 TRI = &vrm.getTargetRegInfo();
208 MRI = &vrm.getRegInfo();
Andrew Trick18c57a82010-11-30 23:18:47 +0000209 VRM = &vrm;
210 LIS = &lis;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000211 PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs());
Andrew Tricke141a492010-11-08 18:02:08 +0000212 // Cache an interferece query for each physical reg
Andrew Trick18c57a82010-11-30 23:18:47 +0000213 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
Andrew Trick14e8d712010-10-22 23:09:15 +0000214}
215
Andrew Trick18c57a82010-11-30 23:18:47 +0000216void RegAllocBase::LiveUnionArray::clear() {
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000217 if (!Array)
218 return;
219 for (unsigned r = 0; r != NumRegs; ++r)
220 Array[r].~LiveIntervalUnion();
221 free(Array);
Andrew Trick18c57a82010-11-30 23:18:47 +0000222 NumRegs = 0;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000223 Array = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000224}
225
226void RegAllocBase::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000227 PhysReg2LiveUnion.clear();
Andrew Trick14e8d712010-10-22 23:09:15 +0000228}
229
Andrew Tricke16eecc2010-10-26 18:34:01 +0000230// Visit all the live virtual registers. If they are already assigned to a
231// physical register, unify them with the corresponding LiveIntervalUnion,
232// otherwise push them on the priority queue for later assignment.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000233void RegAllocBase::
234seedLiveVirtRegs(std::priority_queue<std::pair<float, unsigned> > &VirtRegQ) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000235 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
236 unsigned RegNum = I->first;
237 LiveInterval &VirtReg = *I->second;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000238 if (TargetRegisterInfo::isPhysicalRegister(RegNum))
Andrew Trick18c57a82010-11-30 23:18:47 +0000239 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000240 else
241 VirtRegQ.push(std::make_pair(getPriority(&VirtReg), RegNum));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000242 }
243}
244
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000245void RegAllocBase::assign(LiveInterval &VirtReg, unsigned PhysReg) {
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000246 DEBUG(dbgs() << "assigning " << PrintReg(VirtReg.reg, TRI)
247 << " to " << PrintReg(PhysReg, TRI) << '\n');
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000248 assert(!VRM->hasPhys(VirtReg.reg) && "Duplicate VirtReg assignment");
249 VRM->assignVirt2Phys(VirtReg.reg, PhysReg);
250 PhysReg2LiveUnion[PhysReg].unify(VirtReg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000251 ++NumAssigned;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000252}
253
254void RegAllocBase::unassign(LiveInterval &VirtReg, unsigned PhysReg) {
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000255 DEBUG(dbgs() << "unassigning " << PrintReg(VirtReg.reg, TRI)
256 << " from " << PrintReg(PhysReg, TRI) << '\n');
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000257 assert(VRM->getPhys(VirtReg.reg) == PhysReg && "Inconsistent unassign");
258 PhysReg2LiveUnion[PhysReg].extract(VirtReg);
259 VRM->clearVirt(VirtReg.reg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000260 ++NumUnassigned;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000261}
262
Andrew Trick18c57a82010-11-30 23:18:47 +0000263// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000264// selectOrSplit implementation.
265void RegAllocBase::allocatePhysRegs() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000266
267 // Push each vreg onto a queue or "precolor" by adding it to a physreg union.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000268 std::priority_queue<std::pair<float, unsigned> > VirtRegQ;
Andrew Trick18c57a82010-11-30 23:18:47 +0000269 seedLiveVirtRegs(VirtRegQ);
270
271 // Continue assigning vregs one at a time to available physical registers.
272 while (!VirtRegQ.empty()) {
273 // Pop the highest priority vreg.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000274 LiveInterval &VirtReg = LIS->getInterval(VirtRegQ.top().second);
275 VirtRegQ.pop();
Andrew Trick18c57a82010-11-30 23:18:47 +0000276
277 // selectOrSplit requests the allocator to return an available physical
278 // register if possible and populate a list of new live intervals that
279 // result from splitting.
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000280 DEBUG(dbgs() << "\nselectOrSplit " << MRI->getRegClass(VirtReg.reg)->getName()
281 << ':' << VirtReg << '\n');
Andrew Trick18c57a82010-11-30 23:18:47 +0000282 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
283 VirtRegVec SplitVRegs;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000284 unsigned AvailablePhysReg = selectOrSplit(VirtReg, SplitVRegs);
Andrew Trick18c57a82010-11-30 23:18:47 +0000285
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000286 if (AvailablePhysReg)
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000287 assign(VirtReg, AvailablePhysReg);
Jakob Stoklund Olesenfebb0bd2011-02-18 00:32:47 +0000288
Andrew Trick18c57a82010-11-30 23:18:47 +0000289 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
290 I != E; ++I) {
291 LiveInterval* SplitVirtReg = *I;
292 if (SplitVirtReg->empty()) continue;
293 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
294 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000295 "expect split value in virtual register");
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000296 VirtRegQ.push(std::make_pair(getPriority(SplitVirtReg),
297 SplitVirtReg->reg));
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000298 ++NumNewQueued;
Andrew Tricke16eecc2010-10-26 18:34:01 +0000299 }
300 }
301}
302
Andrew Trick18c57a82010-11-30 23:18:47 +0000303// Check if this live virtual register interferes with a physical register. If
304// not, then check for interference on each register that aliases with the
305// physical register. Return the interfering register.
306unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
307 unsigned PhysReg) {
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000308 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000309 if (query(VirtReg, *AliasI).checkInterference())
310 return *AliasI;
Andrew Tricke141a492010-11-08 18:02:08 +0000311 return 0;
312}
313
Andrew Trick18c57a82010-11-30 23:18:47 +0000314// Helper for spillInteferences() that spills all interfering vregs currently
315// assigned to this physical register.
316void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
317 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
318 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
319 assert(Q.seenAllInterferences() && "need collectInterferences()");
320 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000321
Andrew Trick18c57a82010-11-30 23:18:47 +0000322 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
323 E = PendingSpills.end(); I != E; ++I) {
324 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000325 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000326 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000327
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000328 // Deallocate the interfering vreg by removing it from the union.
329 // A LiveInterval instance may not be in a union during modification!
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000330 unassign(SpilledVReg, PhysReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000331
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000332 // Spill the extracted interval.
Andrew Trick18c57a82010-11-30 23:18:47 +0000333 spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000334 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000335 // After extracting segments, the query's results are invalid. But keep the
336 // contents valid until we're done accessing pendingSpills.
337 Q.clear();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000338}
339
Andrew Trick18c57a82010-11-30 23:18:47 +0000340// Spill or split all live virtual registers currently unified under PhysReg
341// that interfere with VirtReg. The newly spilled or split live intervals are
342// returned by appending them to SplitVRegs.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000343bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000344RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
345 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000346 // Record each interference and determine if all are spillable before mutating
347 // either the union or live intervals.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000348 unsigned NumInterferences = 0;
Andrew Trick8a83d542010-11-11 17:46:29 +0000349 // Collect interferences assigned to any alias of the physical register.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000350 for (const unsigned *asI = TRI->getOverlaps(PhysReg); *asI; ++asI) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000351 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
352 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000353 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000354 return false;
355 }
356 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000357 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
358 " interferences with " << VirtReg << "\n");
359 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000360
Andrew Trick18c57a82010-11-30 23:18:47 +0000361 // Spill each interfering vreg allocated to PhysReg or an alias.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000362 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000363 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000364 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000365}
366
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000367// Add newly allocated physical registers to the MBB live in sets.
368void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000369 NamedRegionTimer T("MBB Live Ins", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000370 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
371 MBBVec liveInMBBs;
372 MachineBasicBlock &entryMBB = *MF->begin();
373
374 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
375 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
376 if (LiveUnion.empty())
377 continue;
378 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
379 ++SI) {
380
381 // Find the set of basic blocks which this range is live into...
382 liveInMBBs.clear();
383 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
384
385 // And add the physreg for this interval to their live-in sets.
386 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
387 I != E; ++I) {
388 MachineBasicBlock *MBB = *I;
389 if (MBB == &entryMBB) continue;
390 if (MBB->isLiveIn(PhysReg)) continue;
391 MBB->addLiveIn(PhysReg);
392 }
393 }
394 }
395}
396
397
Andrew Trick14e8d712010-10-22 23:09:15 +0000398//===----------------------------------------------------------------------===//
399// RABasic Implementation
400//===----------------------------------------------------------------------===//
401
402// Driver for the register assignment and splitting heuristics.
403// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000404//
Andrew Trick18c57a82010-11-30 23:18:47 +0000405// This is a minimal implementation of register assignment and splitting that
406// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000407//
408// selectOrSplit can only be called once per live virtual register. We then do a
409// single interference test for each register the correct class until we find an
410// available register. So, the number of interference tests in the worst case is
411// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000412// minimal, there is no value in caching them outside the scope of
413// selectOrSplit().
414unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
415 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000416 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000417 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000418
Andrew Trick13bdbb02010-11-20 02:43:55 +0000419 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000420 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000421
Andrew Trick18c57a82010-11-30 23:18:47 +0000422 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
423 E = TRC->allocation_order_end(*MF);
424 I != E; ++I) {
425
426 unsigned PhysReg = *I;
427 if (ReservedRegs.test(PhysReg)) continue;
428
429 // Check interference and as a side effect, intialize queries for this
430 // VirtReg and its aliases.
431 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000432 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000433 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000434 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000435 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000436 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000437 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000438
Andrew Trickb853e6c2010-12-09 18:15:21 +0000439 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000440 // must have less spill weight.
441 if (interferingVirtReg->weight < VirtReg.weight ) {
442 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000443 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000444 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000445 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000446 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
447 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000448
Andrew Trick18c57a82010-11-30 23:18:47 +0000449 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000450
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000451 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
452 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000453 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000454 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000455 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000456 // No other spill candidates were found, so spill the current VirtReg.
457 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000458 SmallVector<LiveInterval*, 1> pendingSpills;
Andrew Trick18c57a82010-11-30 23:18:47 +0000459
460 spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000461
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000462 // The live virtual register requesting allocation was spilled, so tell
463 // the caller not to allocate anything during this round.
464 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000465}
Andrew Trick14e8d712010-10-22 23:09:15 +0000466
Andrew Trick14e8d712010-10-22 23:09:15 +0000467bool RABasic::runOnMachineFunction(MachineFunction &mf) {
468 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
469 << "********** Function: "
470 << ((Value*)mf.getFunction())->getName() << '\n');
471
Andrew Trick18c57a82010-11-30 23:18:47 +0000472 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000473 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000474
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000475 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Andrew Trick14e8d712010-10-22 23:09:15 +0000476
Andrew Trick18c57a82010-11-30 23:18:47 +0000477 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000478
Andrew Trick18c57a82010-11-30 23:18:47 +0000479 SpillerInstance.reset(createSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000480
Andrew Tricke16eecc2010-10-26 18:34:01 +0000481 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000482
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000483 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000484
Andrew Trick14e8d712010-10-22 23:09:15 +0000485 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000486 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000487
488 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000489 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000490
Andrew Trick071d1c02010-11-09 21:04:34 +0000491 // FIXME: Verification currently must run before VirtRegRewriter. We should
492 // make the rewriter a separate pass and override verifyAnalysis instead. When
493 // that happens, verification naturally falls under VerifyMachineCode.
494#ifndef NDEBUG
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +0000495 if (VerifyEnabled) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000496 // Verify accuracy of LiveIntervals. The standard machine code verifier
497 // ensures that each LiveIntervals covers all uses of the virtual reg.
498
Andrew Trick18c57a82010-11-30 23:18:47 +0000499 // FIXME: MachineVerifier is badly broken when using the standard
500 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
501 // inline spiller, some tests fail to verify because the coalescer does not
502 // always generate verifiable code.
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000503 MF->verify(this, "In RABasic::verify");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000504
Andrew Trick071d1c02010-11-09 21:04:34 +0000505 // Verify that LiveIntervals are partitioned into unions and disjoint within
506 // the unions.
507 verify();
508 }
509#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000510
Andrew Trick14e8d712010-10-22 23:09:15 +0000511 // Run rewriter
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +0000512 VRM->rewrite(LIS->getSlotIndexes());
Andrew Tricke16eecc2010-10-26 18:34:01 +0000513
514 // The pass output is in VirtRegMap. Release all the transient data.
515 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000516
Andrew Trick14e8d712010-10-22 23:09:15 +0000517 return true;
518}
519
Andrew Trick13bdbb02010-11-20 02:43:55 +0000520FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000521{
522 return new RABasic();
523}