blob: d0e635512902cfc8a9c738ed03653bbd847b1e04 [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
46#include <vector>
47#include <queue>
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000048#include <cstdlib>
Andrew Tricke16eecc2010-10-26 18:34:01 +000049
Andrew Trick14e8d712010-10-22 23:09:15 +000050using namespace llvm;
51
52static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
53 createBasicRegisterAllocator);
54
Andrew Trick071d1c02010-11-09 21:04:34 +000055// Temporary verification option until we can put verification inside
56// MachineVerifier.
57static cl::opt<bool>
58VerifyRegAlloc("verify-regalloc",
59 cl::desc("Verify live intervals before renaming"));
60
Benjamin Kramerc62feda2010-11-25 16:42:51 +000061namespace {
62
Andrew Trick071d1c02010-11-09 21:04:34 +000063class PhysicalRegisterDescription : public AbstractRegisterDescription {
Andrew Trick18c57a82010-11-30 23:18:47 +000064 const TargetRegisterInfo *TRI;
Andrew Trick071d1c02010-11-09 21:04:34 +000065public:
Andrew Trick18c57a82010-11-30 23:18:47 +000066 PhysicalRegisterDescription(const TargetRegisterInfo *T): TRI(T) {}
67 virtual const char *getName(unsigned Reg) const { return TRI->getName(Reg); }
Andrew Trick071d1c02010-11-09 21:04:34 +000068};
69
Andrew Trick14e8d712010-10-22 23:09:15 +000070/// RABasic provides a minimal implementation of the basic register allocation
71/// algorithm. It prioritizes live virtual registers by spill weight and spills
72/// whenever a register is unavailable. This is not practical in production but
73/// provides a useful baseline both for measuring other allocators and comparing
74/// the speed of the basic algorithm against other styles of allocators.
75class RABasic : public MachineFunctionPass, public RegAllocBase
76{
77 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000078 MachineFunction *MF;
79 const TargetMachine *TM;
80 MachineRegisterInfo *MRI;
81
82 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000083
84 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000085 LiveStacks *LS;
86 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000087
88 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000089 std::auto_ptr<Spiller> SpillerInstance;
Andrew Trick14e8d712010-10-22 23:09:15 +000090
91public:
92 RABasic();
93
94 /// Return the pass name.
95 virtual const char* getPassName() const {
96 return "Basic Register Allocator";
97 }
98
99 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000100 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +0000101
102 virtual void releaseMemory();
103
Andrew Trick18c57a82010-11-30 23:18:47 +0000104 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000105
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 +0000233namespace llvm {
234/// This class defines a queue of live virtual registers prioritized by spill
235/// weight. The heaviest vreg is popped first.
236///
237/// Currently, this is trivial wrapper that gives us an opaque type in the
238/// header, but we may later give it a virtual interface for register allocators
239/// to override the priority queue comparator.
240class LiveVirtRegQueue {
241 typedef std::priority_queue
Andrew Trick18c57a82010-11-30 23:18:47 +0000242 <LiveInterval*, std::vector<LiveInterval*>, LessSpillWeightPriority>
243 PriorityQ;
244 PriorityQ PQ;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000245
Andrew Tricke16eecc2010-10-26 18:34:01 +0000246public:
247 // Is the queue empty?
Andrew Trick18c57a82010-11-30 23:18:47 +0000248 bool empty() { return PQ.empty(); }
Andrew Trick13bdbb02010-11-20 02:43:55 +0000249
Andrew Tricke16eecc2010-10-26 18:34:01 +0000250 // Get the highest priority lvr (top + pop)
251 LiveInterval *get() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000252 LiveInterval *VirtReg = PQ.top();
253 PQ.pop();
254 return VirtReg;
Andrew Tricke16eecc2010-10-26 18:34:01 +0000255 }
256 // Add this lvr to the queue
Andrew Trick18c57a82010-11-30 23:18:47 +0000257 void push(LiveInterval *VirtReg) {
258 PQ.push(VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000259 }
260};
261} // end namespace llvm
262
263// Visit all the live virtual registers. If they are already assigned to a
264// physical register, unify them with the corresponding LiveIntervalUnion,
265// otherwise push them on the priority queue for later assignment.
Andrew Trick18c57a82010-11-30 23:18:47 +0000266void RegAllocBase::seedLiveVirtRegs(LiveVirtRegQueue &VirtRegQ) {
267 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
268 unsigned RegNum = I->first;
269 LiveInterval &VirtReg = *I->second;
270 if (TargetRegisterInfo::isPhysicalRegister(RegNum)) {
271 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000272 }
273 else {
Andrew Trick18c57a82010-11-30 23:18:47 +0000274 VirtRegQ.push(&VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000275 }
276 }
277}
278
Andrew Trick18c57a82010-11-30 23:18:47 +0000279// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000280// selectOrSplit implementation.
281void RegAllocBase::allocatePhysRegs() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000282
283 // Push each vreg onto a queue or "precolor" by adding it to a physreg union.
284 LiveVirtRegQueue VirtRegQ;
285 seedLiveVirtRegs(VirtRegQ);
286
287 // Continue assigning vregs one at a time to available physical registers.
288 while (!VirtRegQ.empty()) {
289 // Pop the highest priority vreg.
290 LiveInterval *VirtReg = VirtRegQ.get();
291
292 // selectOrSplit requests the allocator to return an available physical
293 // register if possible and populate a list of new live intervals that
294 // result from splitting.
295 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
296 VirtRegVec SplitVRegs;
297 unsigned AvailablePhysReg = selectOrSplit(*VirtReg, SplitVRegs);
298
299 if (AvailablePhysReg) {
300 DEBUG(dbgs() << "allocating: " << TRI->getName(AvailablePhysReg) <<
301 " " << *VirtReg << '\n');
302 assert(!VRM->hasPhys(VirtReg->reg) && "duplicate vreg in union");
303 VRM->assignVirt2Phys(VirtReg->reg, AvailablePhysReg);
304 PhysReg2LiveUnion[AvailablePhysReg].unify(*VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000305 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000306 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
307 I != E; ++I) {
308 LiveInterval* SplitVirtReg = *I;
309 if (SplitVirtReg->empty()) continue;
310 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
311 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000312 "expect split value in virtual register");
Andrew Trick18c57a82010-11-30 23:18:47 +0000313 VirtRegQ.push(SplitVirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000314 }
315 }
316}
317
Andrew Trick18c57a82010-11-30 23:18:47 +0000318// Check if this live virtual register interferes with a physical register. If
319// not, then check for interference on each register that aliases with the
320// physical register. Return the interfering register.
321unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
322 unsigned PhysReg) {
323 if (query(VirtReg, PhysReg).checkInterference())
324 return PhysReg;
325 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI) {
326 if (query(VirtReg, *AliasI).checkInterference())
327 return *AliasI;
Andrew Trick14e8d712010-10-22 23:09:15 +0000328 }
Andrew Tricke141a492010-11-08 18:02:08 +0000329 return 0;
330}
331
Andrew Trick18c57a82010-11-30 23:18:47 +0000332// Helper for spillInteferences() that spills all interfering vregs currently
333// assigned to this physical register.
334void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
335 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
336 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
337 assert(Q.seenAllInterferences() && "need collectInterferences()");
338 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000339
Andrew Trick18c57a82010-11-30 23:18:47 +0000340 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
341 E = PendingSpills.end(); I != E; ++I) {
342 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000343 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000344 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000345
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000346 // Deallocate the interfering vreg by removing it from the union.
347 // A LiveInterval instance may not be in a union during modification!
Andrew Trick18c57a82010-11-30 23:18:47 +0000348 PhysReg2LiveUnion[PhysReg].extract(SpilledVReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000349
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000350 // Clear the vreg assignment.
Andrew Trick18c57a82010-11-30 23:18:47 +0000351 VRM->clearVirt(SpilledVReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000352
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000353 // Spill the extracted interval.
Andrew Trick18c57a82010-11-30 23:18:47 +0000354 spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000355 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000356 // After extracting segments, the query's results are invalid. But keep the
357 // contents valid until we're done accessing pendingSpills.
358 Q.clear();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000359}
360
Andrew Trick18c57a82010-11-30 23:18:47 +0000361// Spill or split all live virtual registers currently unified under PhysReg
362// that interfere with VirtReg. The newly spilled or split live intervals are
363// returned by appending them to SplitVRegs.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000364bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000365RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
366 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000367 // Record each interference and determine if all are spillable before mutating
368 // either the union or live intervals.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000369
Andrew Trick8a83d542010-11-11 17:46:29 +0000370 // Collect interferences assigned to the requested physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000371 LiveIntervalUnion::Query &QPreg = query(VirtReg, PhysReg);
372 unsigned NumInterferences = QPreg.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000373 if (QPreg.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000374 return false;
Andrew Tricke141a492010-11-08 18:02:08 +0000375 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000376 // Collect interferences assigned to any alias of the physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000377 for (const unsigned *asI = TRI->getAliasSet(PhysReg); *asI; ++asI) {
378 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
379 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000380 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000381 return false;
382 }
383 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000384 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
385 " interferences with " << VirtReg << "\n");
386 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000387
Andrew Trick18c57a82010-11-30 23:18:47 +0000388 // Spill each interfering vreg allocated to PhysReg or an alias.
389 spillReg(VirtReg, PhysReg, SplitVRegs);
390 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI)
391 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000392 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000393}
394
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000395// Add newly allocated physical registers to the MBB live in sets.
396void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
397 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
398 MBBVec liveInMBBs;
399 MachineBasicBlock &entryMBB = *MF->begin();
400
401 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
402 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
403 if (LiveUnion.empty())
404 continue;
405 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
406 ++SI) {
407
408 // Find the set of basic blocks which this range is live into...
409 liveInMBBs.clear();
410 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
411
412 // And add the physreg for this interval to their live-in sets.
413 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
414 I != E; ++I) {
415 MachineBasicBlock *MBB = *I;
416 if (MBB == &entryMBB) continue;
417 if (MBB->isLiveIn(PhysReg)) continue;
418 MBB->addLiveIn(PhysReg);
419 }
420 }
421 }
422}
423
424
Andrew Trick14e8d712010-10-22 23:09:15 +0000425//===----------------------------------------------------------------------===//
426// RABasic Implementation
427//===----------------------------------------------------------------------===//
428
429// Driver for the register assignment and splitting heuristics.
430// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000431//
Andrew Trick18c57a82010-11-30 23:18:47 +0000432// This is a minimal implementation of register assignment and splitting that
433// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000434//
435// selectOrSplit can only be called once per live virtual register. We then do a
436// single interference test for each register the correct class until we find an
437// available register. So, the number of interference tests in the worst case is
438// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000439// minimal, there is no value in caching them outside the scope of
440// selectOrSplit().
441unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
442 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000443 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000444 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000445
Andrew Trick13bdbb02010-11-20 02:43:55 +0000446 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000447 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
448 DEBUG(dbgs() << "RegClass: " << TRC->getName() << ' ');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000449
Andrew Trick18c57a82010-11-30 23:18:47 +0000450 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
451 E = TRC->allocation_order_end(*MF);
452 I != E; ++I) {
453
454 unsigned PhysReg = *I;
455 if (ReservedRegs.test(PhysReg)) continue;
456
457 // Check interference and as a side effect, intialize queries for this
458 // VirtReg and its aliases.
459 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000460 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000461 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000462 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000463 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000464 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000465 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000466
Andrew Trick18c57a82010-11-30 23:18:47 +0000467 // The current VirtReg must either spillable, or one of its interferences
468 // must have less spill weight.
469 if (interferingVirtReg->weight < VirtReg.weight ) {
470 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000471 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000472 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000473 // Try to spill another interfering reg with less spill weight.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000474 //
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000475 // FIXME: RAGreedy will sort this list by spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000476 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
477 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000478
Andrew Trick18c57a82010-11-30 23:18:47 +0000479 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000480
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000481 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
482 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000483 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000484 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000485 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000486 // No other spill candidates were found, so spill the current VirtReg.
487 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000488 SmallVector<LiveInterval*, 1> pendingSpills;
Andrew Trick18c57a82010-11-30 23:18:47 +0000489
490 spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000491
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000492 // The live virtual register requesting allocation was spilled, so tell
493 // the caller not to allocate anything during this round.
494 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000495}
Andrew Trick14e8d712010-10-22 23:09:15 +0000496
Andrew Trick14e8d712010-10-22 23:09:15 +0000497bool RABasic::runOnMachineFunction(MachineFunction &mf) {
498 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
499 << "********** Function: "
500 << ((Value*)mf.getFunction())->getName() << '\n');
501
Andrew Trick18c57a82010-11-30 23:18:47 +0000502 MF = &mf;
503 TM = &mf.getTarget();
504 MRI = &mf.getRegInfo();
Andrew Trick14e8d712010-10-22 23:09:15 +0000505
Andrew Trick18c57a82010-11-30 23:18:47 +0000506 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000507
Andrew Trick18c57a82010-11-30 23:18:47 +0000508 const TargetRegisterInfo *TRI = TM->getRegisterInfo();
Andrew Trick8a83d542010-11-11 17:46:29 +0000509 RegAllocBase::init(*TRI, getAnalysis<VirtRegMap>(),
Andrew Trick14e8d712010-10-22 23:09:15 +0000510 getAnalysis<LiveIntervals>());
511
Andrew Trick18c57a82010-11-30 23:18:47 +0000512 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000513
Andrew Trick18c57a82010-11-30 23:18:47 +0000514 SpillerInstance.reset(createSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000515
Andrew Tricke16eecc2010-10-26 18:34:01 +0000516 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000517
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000518 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000519
Andrew Trick14e8d712010-10-22 23:09:15 +0000520 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000521 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000522
523 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000524 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000525
Andrew Trick071d1c02010-11-09 21:04:34 +0000526 // FIXME: Verification currently must run before VirtRegRewriter. We should
527 // make the rewriter a separate pass and override verifyAnalysis instead. When
528 // that happens, verification naturally falls under VerifyMachineCode.
529#ifndef NDEBUG
530 if (VerifyRegAlloc) {
531 // Verify accuracy of LiveIntervals. The standard machine code verifier
532 // ensures that each LiveIntervals covers all uses of the virtual reg.
533
Andrew Trick18c57a82010-11-30 23:18:47 +0000534 // FIXME: MachineVerifier is badly broken when using the standard
535 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
536 // inline spiller, some tests fail to verify because the coalescer does not
537 // always generate verifiable code.
538 MF->verify(this);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000539
Andrew Trick071d1c02010-11-09 21:04:34 +0000540 // Verify that LiveIntervals are partitioned into unions and disjoint within
541 // the unions.
542 verify();
543 }
544#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000545
Andrew Trick14e8d712010-10-22 23:09:15 +0000546 // Run rewriter
547 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
Andrew Trick18c57a82010-11-30 23:18:47 +0000548 rewriter->runOnMachineFunction(*MF, *VRM, LIS);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000549
550 // The pass output is in VirtRegMap. Release all the transient data.
551 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000552
Andrew Trick14e8d712010-10-22 23:09:15 +0000553 return true;
554}
555
Andrew Trick13bdbb02010-11-20 02:43:55 +0000556FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000557{
558 return new RABasic();
559}