blob: 753688b200967075ccac969265f172cf8005805b [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"
Andrew Trick14e8d712010-10-22 23:09:15 +000021#include "VirtRegRewriter.h"
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000022#include "llvm/ADT/OwningPtr.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"
Andrew Tricke16eecc2010-10-26 18:34:01 +000045
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000046#include <cstdlib>
Andrew Tricke16eecc2010-10-26 18:34:01 +000047
Andrew Trick14e8d712010-10-22 23:09:15 +000048using namespace llvm;
49
50static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
51 createBasicRegisterAllocator);
52
Andrew Trick071d1c02010-11-09 21:04:34 +000053// Temporary verification option until we can put verification inside
54// MachineVerifier.
55static cl::opt<bool>
56VerifyRegAlloc("verify-regalloc",
57 cl::desc("Verify live intervals before renaming"));
58
Benjamin Kramerc62feda2010-11-25 16:42:51 +000059namespace {
60
Andrew Trick071d1c02010-11-09 21:04:34 +000061class PhysicalRegisterDescription : public AbstractRegisterDescription {
Andrew Trick18c57a82010-11-30 23:18:47 +000062 const TargetRegisterInfo *TRI;
Andrew Trick071d1c02010-11-09 21:04:34 +000063public:
Andrew Trick18c57a82010-11-30 23:18:47 +000064 PhysicalRegisterDescription(const TargetRegisterInfo *T): TRI(T) {}
65 virtual const char *getName(unsigned Reg) const { return TRI->getName(Reg); }
Andrew Trick071d1c02010-11-09 21:04:34 +000066};
67
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;
77 const TargetMachine *TM;
78 MachineRegisterInfo *MRI;
79
80 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000081
82 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000083 LiveStacks *LS;
84 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000085
86 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000087 std::auto_ptr<Spiller> SpillerInstance;
Andrew Trick14e8d712010-10-22 23:09:15 +000088
89public:
90 RABasic();
91
92 /// Return the pass name.
93 virtual const char* getPassName() const {
94 return "Basic Register Allocator";
95 }
96
97 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000098 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000099
100 virtual void releaseMemory();
101
Andrew Trick18c57a82010-11-30 23:18:47 +0000102 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000103
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000104 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
105
Andrew Trick18c57a82010-11-30 23:18:47 +0000106 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
107 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000108
109 /// Perform register allocation.
110 virtual bool runOnMachineFunction(MachineFunction &mf);
111
112 static char ID;
113};
114
115char RABasic::ID = 0;
116
117} // end anonymous namespace
118
Andrew Trick14e8d712010-10-22 23:09:15 +0000119RABasic::RABasic(): MachineFunctionPass(ID) {
120 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
121 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
122 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
123 initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
124 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
125 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000126 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000127 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
128 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
129 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
130}
131
Andrew Trick18c57a82010-11-30 23:18:47 +0000132void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
133 AU.setPreservesCFG();
134 AU.addRequired<AliasAnalysis>();
135 AU.addPreserved<AliasAnalysis>();
136 AU.addRequired<LiveIntervals>();
137 AU.addPreserved<SlotIndexes>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000138 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000139 AU.addRequiredID(StrongPHIEliminationID);
140 AU.addRequiredTransitive<RegisterCoalescer>();
141 AU.addRequired<CalculateSpillWeights>();
142 AU.addRequired<LiveStacks>();
143 AU.addPreserved<LiveStacks>();
144 AU.addRequiredID(MachineDominatorsID);
145 AU.addPreservedID(MachineDominatorsID);
146 AU.addRequired<MachineLoopInfo>();
147 AU.addPreserved<MachineLoopInfo>();
148 AU.addRequired<VirtRegMap>();
149 AU.addPreserved<VirtRegMap>();
150 DEBUG(AU.addRequired<RenderMachineFunction>());
151 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000152}
153
154void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000155 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000156 RegAllocBase::releaseMemory();
157}
158
Andrew Trick071d1c02010-11-09 21:04:34 +0000159#ifndef NDEBUG
160// Verify each LiveIntervalUnion.
161void RegAllocBase::verify() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000162 LiveVirtRegBitSet VisitedVRegs;
163 OwningArrayPtr<LiveVirtRegBitSet>
164 unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]);
165
Andrew Trick071d1c02010-11-09 21:04:34 +0000166 // Verify disjoint unions.
Andrew Trick18c57a82010-11-30 23:18:47 +0000167 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
168 DEBUG(PhysicalRegisterDescription PRD(TRI);
169 PhysReg2LiveUnion[PhysReg].dump(&PRD));
170 LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg];
171 PhysReg2LiveUnion[PhysReg].verify(VRegs);
Andrew Trick071d1c02010-11-09 21:04:34 +0000172 // Union + intersection test could be done efficiently in one pass, but
173 // don't add a method to SparseBitVector unless we really need it.
Andrew Trick18c57a82010-11-30 23:18:47 +0000174 assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions");
175 VisitedVRegs |= VRegs;
Andrew Trick071d1c02010-11-09 21:04:34 +0000176 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000177
Andrew Trick071d1c02010-11-09 21:04:34 +0000178 // Verify vreg coverage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000179 for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end();
Andrew Trick071d1c02010-11-09 21:04:34 +0000180 liItr != liEnd; ++liItr) {
181 unsigned reg = liItr->first;
Andrew Trick071d1c02010-11-09 21:04:34 +0000182 if (TargetRegisterInfo::isPhysicalRegister(reg)) continue;
Andrew Trick18c57a82010-11-30 23:18:47 +0000183 if (!VRM->hasPhys(reg)) continue; // spilled?
184 unsigned PhysReg = VRM->getPhys(reg);
185 if (!unionVRegs[PhysReg].test(reg)) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000186 dbgs() << "LiveVirtReg " << reg << " not in union " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000187 TRI->getName(PhysReg) << "\n";
Andrew Trick071d1c02010-11-09 21:04:34 +0000188 llvm_unreachable("unallocated live vreg");
189 }
190 }
191 // FIXME: I'm not sure how to verify spilled intervals.
192}
193#endif //!NDEBUG
194
Andrew Trick14e8d712010-10-22 23:09:15 +0000195//===----------------------------------------------------------------------===//
196// RegAllocBase Implementation
197//===----------------------------------------------------------------------===//
198
199// Instantiate a LiveIntervalUnion for each physical register.
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000200void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
201 unsigned NRegs) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000202 NumRegs = NRegs;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000203 Array =
204 static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
205 for (unsigned r = 0; r != NRegs; ++r)
206 new(Array + r) LiveIntervalUnion(r, allocator);
Andrew Trick14e8d712010-10-22 23:09:15 +0000207}
208
209void RegAllocBase::init(const TargetRegisterInfo &tri, VirtRegMap &vrm,
210 LiveIntervals &lis) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000211 TRI = &tri;
212 VRM = &vrm;
213 LIS = &lis;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000214 PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs());
Andrew Tricke141a492010-11-08 18:02:08 +0000215 // Cache an interferece query for each physical reg
Andrew Trick18c57a82010-11-30 23:18:47 +0000216 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
Andrew Trick14e8d712010-10-22 23:09:15 +0000217}
218
Andrew Trick18c57a82010-11-30 23:18:47 +0000219void RegAllocBase::LiveUnionArray::clear() {
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000220 if (!Array)
221 return;
222 for (unsigned r = 0; r != NumRegs; ++r)
223 Array[r].~LiveIntervalUnion();
224 free(Array);
Andrew Trick18c57a82010-11-30 23:18:47 +0000225 NumRegs = 0;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000226 Array = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000227}
228
229void RegAllocBase::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000230 PhysReg2LiveUnion.clear();
Andrew Trick14e8d712010-10-22 23:09:15 +0000231}
232
Andrew Tricke16eecc2010-10-26 18:34:01 +0000233// Visit all the live virtual registers. If they are already assigned to a
234// physical register, unify them with the corresponding LiveIntervalUnion,
235// otherwise push them on the priority queue for later assignment.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000236void RegAllocBase::
237seedLiveVirtRegs(std::priority_queue<std::pair<float, unsigned> > &VirtRegQ) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000238 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
239 unsigned RegNum = I->first;
240 LiveInterval &VirtReg = *I->second;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000241 if (TargetRegisterInfo::isPhysicalRegister(RegNum))
Andrew Trick18c57a82010-11-30 23:18:47 +0000242 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000243 else
244 VirtRegQ.push(std::make_pair(getPriority(&VirtReg), RegNum));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000245 }
246}
247
Andrew Trick18c57a82010-11-30 23:18:47 +0000248// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000249// selectOrSplit implementation.
250void RegAllocBase::allocatePhysRegs() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000251
252 // Push each vreg onto a queue or "precolor" by adding it to a physreg union.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000253 std::priority_queue<std::pair<float, unsigned> > VirtRegQ;
Andrew Trick18c57a82010-11-30 23:18:47 +0000254 seedLiveVirtRegs(VirtRegQ);
255
256 // Continue assigning vregs one at a time to available physical registers.
257 while (!VirtRegQ.empty()) {
258 // Pop the highest priority vreg.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000259 LiveInterval &VirtReg = LIS->getInterval(VirtRegQ.top().second);
260 VirtRegQ.pop();
Andrew Trick18c57a82010-11-30 23:18:47 +0000261
262 // selectOrSplit requests the allocator to return an available physical
263 // register if possible and populate a list of new live intervals that
264 // result from splitting.
265 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
266 VirtRegVec SplitVRegs;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000267 unsigned AvailablePhysReg = selectOrSplit(VirtReg, SplitVRegs);
Andrew Trick18c57a82010-11-30 23:18:47 +0000268
269 if (AvailablePhysReg) {
270 DEBUG(dbgs() << "allocating: " << TRI->getName(AvailablePhysReg) <<
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000271 " " << VirtReg << '\n');
272 assert(!VRM->hasPhys(VirtReg.reg) && "duplicate vreg in union");
273 VRM->assignVirt2Phys(VirtReg.reg, AvailablePhysReg);
274 PhysReg2LiveUnion[AvailablePhysReg].unify(VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000275 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000276 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
277 I != E; ++I) {
278 LiveInterval* SplitVirtReg = *I;
279 if (SplitVirtReg->empty()) continue;
280 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
281 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000282 "expect split value in virtual register");
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000283 VirtRegQ.push(std::make_pair(getPriority(SplitVirtReg),
284 SplitVirtReg->reg));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000285 }
286 }
287}
288
Andrew Trick18c57a82010-11-30 23:18:47 +0000289// Check if this live virtual register interferes with a physical register. If
290// not, then check for interference on each register that aliases with the
291// physical register. Return the interfering register.
292unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
293 unsigned PhysReg) {
294 if (query(VirtReg, PhysReg).checkInterference())
295 return PhysReg;
296 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI) {
297 if (query(VirtReg, *AliasI).checkInterference())
298 return *AliasI;
Andrew Trick14e8d712010-10-22 23:09:15 +0000299 }
Andrew Tricke141a492010-11-08 18:02:08 +0000300 return 0;
301}
302
Andrew Trick18c57a82010-11-30 23:18:47 +0000303// Helper for spillInteferences() that spills all interfering vregs currently
304// assigned to this physical register.
305void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
306 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
307 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
308 assert(Q.seenAllInterferences() && "need collectInterferences()");
309 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000310
Andrew Trick18c57a82010-11-30 23:18:47 +0000311 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
312 E = PendingSpills.end(); I != E; ++I) {
313 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000314 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000315 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000316
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000317 // Deallocate the interfering vreg by removing it from the union.
318 // A LiveInterval instance may not be in a union during modification!
Andrew Trick18c57a82010-11-30 23:18:47 +0000319 PhysReg2LiveUnion[PhysReg].extract(SpilledVReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000320
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000321 // Clear the vreg assignment.
Andrew Trick18c57a82010-11-30 23:18:47 +0000322 VRM->clearVirt(SpilledVReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000323
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000324 // Spill the extracted interval.
Andrew Trick18c57a82010-11-30 23:18:47 +0000325 spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000326 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000327 // After extracting segments, the query's results are invalid. But keep the
328 // contents valid until we're done accessing pendingSpills.
329 Q.clear();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000330}
331
Andrew Trick18c57a82010-11-30 23:18:47 +0000332// Spill or split all live virtual registers currently unified under PhysReg
333// that interfere with VirtReg. The newly spilled or split live intervals are
334// returned by appending them to SplitVRegs.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000335bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000336RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
337 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000338 // Record each interference and determine if all are spillable before mutating
339 // either the union or live intervals.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000340
Andrew Trick8a83d542010-11-11 17:46:29 +0000341 // Collect interferences assigned to the requested physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000342 LiveIntervalUnion::Query &QPreg = query(VirtReg, PhysReg);
343 unsigned NumInterferences = QPreg.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000344 if (QPreg.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000345 return false;
Andrew Tricke141a492010-11-08 18:02:08 +0000346 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000347 // Collect interferences assigned to any alias of the physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000348 for (const unsigned *asI = TRI->getAliasSet(PhysReg); *asI; ++asI) {
349 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
350 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000351 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000352 return false;
353 }
354 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000355 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
356 " interferences with " << VirtReg << "\n");
357 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000358
Andrew Trick18c57a82010-11-30 23:18:47 +0000359 // Spill each interfering vreg allocated to PhysReg or an alias.
360 spillReg(VirtReg, PhysReg, SplitVRegs);
361 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI)
362 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000363 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000364}
365
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000366// Add newly allocated physical registers to the MBB live in sets.
367void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
368 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
369 MBBVec liveInMBBs;
370 MachineBasicBlock &entryMBB = *MF->begin();
371
372 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
373 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
374 if (LiveUnion.empty())
375 continue;
376 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
377 ++SI) {
378
379 // Find the set of basic blocks which this range is live into...
380 liveInMBBs.clear();
381 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
382
383 // And add the physreg for this interval to their live-in sets.
384 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
385 I != E; ++I) {
386 MachineBasicBlock *MBB = *I;
387 if (MBB == &entryMBB) continue;
388 if (MBB->isLiveIn(PhysReg)) continue;
389 MBB->addLiveIn(PhysReg);
390 }
391 }
392 }
393}
394
395
Andrew Trick14e8d712010-10-22 23:09:15 +0000396//===----------------------------------------------------------------------===//
397// RABasic Implementation
398//===----------------------------------------------------------------------===//
399
400// Driver for the register assignment and splitting heuristics.
401// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000402//
Andrew Trick18c57a82010-11-30 23:18:47 +0000403// This is a minimal implementation of register assignment and splitting that
404// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000405//
406// selectOrSplit can only be called once per live virtual register. We then do a
407// single interference test for each register the correct class until we find an
408// available register. So, the number of interference tests in the worst case is
409// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000410// minimal, there is no value in caching them outside the scope of
411// selectOrSplit().
412unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
413 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000414 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000415 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000416
Andrew Trick13bdbb02010-11-20 02:43:55 +0000417 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000418 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
419 DEBUG(dbgs() << "RegClass: " << TRC->getName() << ' ');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000420
Andrew Trick18c57a82010-11-30 23:18:47 +0000421 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
422 E = TRC->allocation_order_end(*MF);
423 I != E; ++I) {
424
425 unsigned PhysReg = *I;
426 if (ReservedRegs.test(PhysReg)) continue;
427
428 // Check interference and as a side effect, intialize queries for this
429 // VirtReg and its aliases.
430 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000431 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000432 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000433 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000434 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000435 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000436 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000437
Andrew Trickb853e6c2010-12-09 18:15:21 +0000438 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000439 // must have less spill weight.
440 if (interferingVirtReg->weight < VirtReg.weight ) {
441 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000442 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000443 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000444 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000445 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
446 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000447
Andrew Trick18c57a82010-11-30 23:18:47 +0000448 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000449
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000450 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
451 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000452 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000453 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000454 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000455 // No other spill candidates were found, so spill the current VirtReg.
456 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000457 SmallVector<LiveInterval*, 1> pendingSpills;
Andrew Trick18c57a82010-11-30 23:18:47 +0000458
459 spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000460
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000461 // The live virtual register requesting allocation was spilled, so tell
462 // the caller not to allocate anything during this round.
463 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000464}
Andrew Trick14e8d712010-10-22 23:09:15 +0000465
Andrew Trick14e8d712010-10-22 23:09:15 +0000466bool RABasic::runOnMachineFunction(MachineFunction &mf) {
467 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
468 << "********** Function: "
469 << ((Value*)mf.getFunction())->getName() << '\n');
470
Andrew Trick18c57a82010-11-30 23:18:47 +0000471 MF = &mf;
472 TM = &mf.getTarget();
473 MRI = &mf.getRegInfo();
Andrew Trick14e8d712010-10-22 23:09:15 +0000474
Andrew Trick18c57a82010-11-30 23:18:47 +0000475 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000476
Andrew Trick18c57a82010-11-30 23:18:47 +0000477 const TargetRegisterInfo *TRI = TM->getRegisterInfo();
Andrew Trick8a83d542010-11-11 17:46:29 +0000478 RegAllocBase::init(*TRI, getAnalysis<VirtRegMap>(),
Andrew Trick14e8d712010-10-22 23:09:15 +0000479 getAnalysis<LiveIntervals>());
480
Andrew Trick18c57a82010-11-30 23:18:47 +0000481 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000482
Andrew Trick18c57a82010-11-30 23:18:47 +0000483 SpillerInstance.reset(createSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000484
Andrew Tricke16eecc2010-10-26 18:34:01 +0000485 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000486
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000487 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000488
Andrew Trick14e8d712010-10-22 23:09:15 +0000489 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000490 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000491
492 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000493 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000494
Andrew Trick071d1c02010-11-09 21:04:34 +0000495 // FIXME: Verification currently must run before VirtRegRewriter. We should
496 // make the rewriter a separate pass and override verifyAnalysis instead. When
497 // that happens, verification naturally falls under VerifyMachineCode.
498#ifndef NDEBUG
499 if (VerifyRegAlloc) {
500 // Verify accuracy of LiveIntervals. The standard machine code verifier
501 // ensures that each LiveIntervals covers all uses of the virtual reg.
502
Andrew Trick18c57a82010-11-30 23:18:47 +0000503 // FIXME: MachineVerifier is badly broken when using the standard
504 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
505 // inline spiller, some tests fail to verify because the coalescer does not
506 // always generate verifiable code.
507 MF->verify(this);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000508
Andrew Trick071d1c02010-11-09 21:04:34 +0000509 // Verify that LiveIntervals are partitioned into unions and disjoint within
510 // the unions.
511 verify();
512 }
513#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000514
Andrew Trick14e8d712010-10-22 23:09:15 +0000515 // Run rewriter
516 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
Andrew Trick18c57a82010-11-30 23:18:47 +0000517 rewriter->runOnMachineFunction(*MF, *VRM, LIS);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000518
519 // The pass output is in VirtRegMap. Release all the transient data.
520 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000521
Andrew Trick14e8d712010-10-22 23:09:15 +0000522 return true;
523}
524
Andrew Trick13bdbb02010-11-20 02:43:55 +0000525FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000526{
527 return new RABasic();
528}