blob: a5e5f1f308ed345d967f1a49563e62da4df58412 [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"
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
51static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
52 createBasicRegisterAllocator);
53
Andrew Trick071d1c02010-11-09 21:04:34 +000054// Temporary verification option until we can put verification inside
55// MachineVerifier.
56static cl::opt<bool>
57VerifyRegAlloc("verify-regalloc",
58 cl::desc("Verify live intervals before renaming"));
59
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000060const char *RegAllocBase::TimerGroupName = "Register Allocation";
61
Benjamin Kramerc62feda2010-11-25 16:42:51 +000062namespace {
Andrew Trick14e8d712010-10-22 23:09:15 +000063/// RABasic provides a minimal implementation of the basic register allocation
64/// algorithm. It prioritizes live virtual registers by spill weight and spills
65/// whenever a register is unavailable. This is not practical in production but
66/// provides a useful baseline both for measuring other allocators and comparing
67/// the speed of the basic algorithm against other styles of allocators.
68class RABasic : public MachineFunctionPass, public RegAllocBase
69{
70 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000071 MachineFunction *MF;
Andrew Trick18c57a82010-11-30 23:18:47 +000072 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000073
74 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000075 LiveStacks *LS;
76 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000077
78 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000079 std::auto_ptr<Spiller> SpillerInstance;
Andrew Trick14e8d712010-10-22 23:09:15 +000080
81public:
82 RABasic();
83
84 /// Return the pass name.
85 virtual const char* getPassName() const {
86 return "Basic Register Allocator";
87 }
88
89 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000090 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000091
92 virtual void releaseMemory();
93
Andrew Trick18c57a82010-11-30 23:18:47 +000094 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +000095
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +000096 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
97
Andrew Trick18c57a82010-11-30 23:18:47 +000098 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
99 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000100
101 /// Perform register allocation.
102 virtual bool runOnMachineFunction(MachineFunction &mf);
103
104 static char ID;
105};
106
107char RABasic::ID = 0;
108
109} // end anonymous namespace
110
Andrew Trick14e8d712010-10-22 23:09:15 +0000111RABasic::RABasic(): MachineFunctionPass(ID) {
112 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
113 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
114 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
115 initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
116 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
117 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000118 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000119 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
120 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
121 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
122}
123
Andrew Trick18c57a82010-11-30 23:18:47 +0000124void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
125 AU.setPreservesCFG();
126 AU.addRequired<AliasAnalysis>();
127 AU.addPreserved<AliasAnalysis>();
128 AU.addRequired<LiveIntervals>();
129 AU.addPreserved<SlotIndexes>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000130 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000131 AU.addRequiredID(StrongPHIEliminationID);
132 AU.addRequiredTransitive<RegisterCoalescer>();
133 AU.addRequired<CalculateSpillWeights>();
134 AU.addRequired<LiveStacks>();
135 AU.addPreserved<LiveStacks>();
136 AU.addRequiredID(MachineDominatorsID);
137 AU.addPreservedID(MachineDominatorsID);
138 AU.addRequired<MachineLoopInfo>();
139 AU.addPreserved<MachineLoopInfo>();
140 AU.addRequired<VirtRegMap>();
141 AU.addPreserved<VirtRegMap>();
142 DEBUG(AU.addRequired<RenderMachineFunction>());
143 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000144}
145
146void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000147 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000148 RegAllocBase::releaseMemory();
149}
150
Andrew Trick071d1c02010-11-09 21:04:34 +0000151#ifndef NDEBUG
152// Verify each LiveIntervalUnion.
153void RegAllocBase::verify() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000154 LiveVirtRegBitSet VisitedVRegs;
155 OwningArrayPtr<LiveVirtRegBitSet>
156 unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]);
157
Andrew Trick071d1c02010-11-09 21:04:34 +0000158 // Verify disjoint unions.
Andrew Trick18c57a82010-11-30 23:18:47 +0000159 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
Jakob Stoklund Olesen4a84cce2010-12-14 18:53:47 +0000160 DEBUG(PhysReg2LiveUnion[PhysReg].print(dbgs(), TRI));
Andrew Trick18c57a82010-11-30 23:18:47 +0000161 LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg];
162 PhysReg2LiveUnion[PhysReg].verify(VRegs);
Andrew Trick071d1c02010-11-09 21:04:34 +0000163 // Union + intersection test could be done efficiently in one pass, but
164 // don't add a method to SparseBitVector unless we really need it.
Andrew Trick18c57a82010-11-30 23:18:47 +0000165 assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions");
166 VisitedVRegs |= VRegs;
Andrew Trick071d1c02010-11-09 21:04:34 +0000167 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000168
Andrew Trick071d1c02010-11-09 21:04:34 +0000169 // Verify vreg coverage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000170 for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end();
Andrew Trick071d1c02010-11-09 21:04:34 +0000171 liItr != liEnd; ++liItr) {
172 unsigned reg = liItr->first;
Andrew Trick071d1c02010-11-09 21:04:34 +0000173 if (TargetRegisterInfo::isPhysicalRegister(reg)) continue;
Andrew Trick18c57a82010-11-30 23:18:47 +0000174 if (!VRM->hasPhys(reg)) continue; // spilled?
175 unsigned PhysReg = VRM->getPhys(reg);
176 if (!unionVRegs[PhysReg].test(reg)) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000177 dbgs() << "LiveVirtReg " << reg << " not in union " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000178 TRI->getName(PhysReg) << "\n";
Andrew Trick071d1c02010-11-09 21:04:34 +0000179 llvm_unreachable("unallocated live vreg");
180 }
181 }
182 // FIXME: I'm not sure how to verify spilled intervals.
183}
184#endif //!NDEBUG
185
Andrew Trick14e8d712010-10-22 23:09:15 +0000186//===----------------------------------------------------------------------===//
187// RegAllocBase Implementation
188//===----------------------------------------------------------------------===//
189
190// Instantiate a LiveIntervalUnion for each physical register.
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000191void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
192 unsigned NRegs) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000193 NumRegs = NRegs;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000194 Array =
195 static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
196 for (unsigned r = 0; r != NRegs; ++r)
197 new(Array + r) LiveIntervalUnion(r, allocator);
Andrew Trick14e8d712010-10-22 23:09:15 +0000198}
199
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000200void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000201 NamedRegionTimer T("Initialize", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000202 TRI = &vrm.getTargetRegInfo();
203 MRI = &vrm.getRegInfo();
Andrew Trick18c57a82010-11-30 23:18:47 +0000204 VRM = &vrm;
205 LIS = &lis;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000206 PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs());
Andrew Tricke141a492010-11-08 18:02:08 +0000207 // Cache an interferece query for each physical reg
Andrew Trick18c57a82010-11-30 23:18:47 +0000208 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
Andrew Trick14e8d712010-10-22 23:09:15 +0000209}
210
Andrew Trick18c57a82010-11-30 23:18:47 +0000211void RegAllocBase::LiveUnionArray::clear() {
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000212 if (!Array)
213 return;
214 for (unsigned r = 0; r != NumRegs; ++r)
215 Array[r].~LiveIntervalUnion();
216 free(Array);
Andrew Trick18c57a82010-11-30 23:18:47 +0000217 NumRegs = 0;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000218 Array = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000219}
220
221void RegAllocBase::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000222 PhysReg2LiveUnion.clear();
Andrew Trick14e8d712010-10-22 23:09:15 +0000223}
224
Andrew Tricke16eecc2010-10-26 18:34:01 +0000225// Visit all the live virtual registers. If they are already assigned to a
226// physical register, unify them with the corresponding LiveIntervalUnion,
227// otherwise push them on the priority queue for later assignment.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000228void RegAllocBase::
229seedLiveVirtRegs(std::priority_queue<std::pair<float, unsigned> > &VirtRegQ) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000230 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
231 unsigned RegNum = I->first;
232 LiveInterval &VirtReg = *I->second;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000233 if (TargetRegisterInfo::isPhysicalRegister(RegNum))
Andrew Trick18c57a82010-11-30 23:18:47 +0000234 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000235 else
236 VirtRegQ.push(std::make_pair(getPriority(&VirtReg), RegNum));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000237 }
238}
239
Andrew Trick18c57a82010-11-30 23:18:47 +0000240// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000241// selectOrSplit implementation.
242void RegAllocBase::allocatePhysRegs() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000243
244 // Push each vreg onto a queue or "precolor" by adding it to a physreg union.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000245 std::priority_queue<std::pair<float, unsigned> > VirtRegQ;
Andrew Trick18c57a82010-11-30 23:18:47 +0000246 seedLiveVirtRegs(VirtRegQ);
247
248 // Continue assigning vregs one at a time to available physical registers.
249 while (!VirtRegQ.empty()) {
250 // Pop the highest priority vreg.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000251 LiveInterval &VirtReg = LIS->getInterval(VirtRegQ.top().second);
252 VirtRegQ.pop();
Andrew Trick18c57a82010-11-30 23:18:47 +0000253
254 // selectOrSplit requests the allocator to return an available physical
255 // register if possible and populate a list of new live intervals that
256 // result from splitting.
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000257 DEBUG(dbgs() << "\nselectOrSplit " << MRI->getRegClass(VirtReg.reg)->getName()
258 << ':' << VirtReg << '\n');
Andrew Trick18c57a82010-11-30 23:18:47 +0000259 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
260 VirtRegVec SplitVRegs;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000261 unsigned AvailablePhysReg = selectOrSplit(VirtReg, SplitVRegs);
Andrew Trick18c57a82010-11-30 23:18:47 +0000262
263 if (AvailablePhysReg) {
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000264 DEBUG(dbgs() << "allocating: " << TRI->getName(AvailablePhysReg)
265 << " for " << VirtReg << '\n');
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000266 assert(!VRM->hasPhys(VirtReg.reg) && "duplicate vreg in union");
267 VRM->assignVirt2Phys(VirtReg.reg, AvailablePhysReg);
268 PhysReg2LiveUnion[AvailablePhysReg].unify(VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000269 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000270 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
271 I != E; ++I) {
272 LiveInterval* SplitVirtReg = *I;
273 if (SplitVirtReg->empty()) continue;
274 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
275 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000276 "expect split value in virtual register");
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000277 VirtRegQ.push(std::make_pair(getPriority(SplitVirtReg),
278 SplitVirtReg->reg));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000279 }
280 }
281}
282
Andrew Trick18c57a82010-11-30 23:18:47 +0000283// Check if this live virtual register interferes with a physical register. If
284// not, then check for interference on each register that aliases with the
285// physical register. Return the interfering register.
286unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
287 unsigned PhysReg) {
288 if (query(VirtReg, PhysReg).checkInterference())
289 return PhysReg;
290 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI) {
291 if (query(VirtReg, *AliasI).checkInterference())
292 return *AliasI;
Andrew Trick14e8d712010-10-22 23:09:15 +0000293 }
Andrew Tricke141a492010-11-08 18:02:08 +0000294 return 0;
295}
296
Andrew Trick18c57a82010-11-30 23:18:47 +0000297// Helper for spillInteferences() that spills all interfering vregs currently
298// assigned to this physical register.
299void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
300 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
301 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
302 assert(Q.seenAllInterferences() && "need collectInterferences()");
303 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000304
Andrew Trick18c57a82010-11-30 23:18:47 +0000305 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
306 E = PendingSpills.end(); I != E; ++I) {
307 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000308 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000309 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000310
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000311 // Deallocate the interfering vreg by removing it from the union.
312 // A LiveInterval instance may not be in a union during modification!
Andrew Trick18c57a82010-11-30 23:18:47 +0000313 PhysReg2LiveUnion[PhysReg].extract(SpilledVReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000314
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000315 // Clear the vreg assignment.
Andrew Trick18c57a82010-11-30 23:18:47 +0000316 VRM->clearVirt(SpilledVReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000317
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000318 // Spill the extracted interval.
Andrew Trick18c57a82010-11-30 23:18:47 +0000319 spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000320 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000321 // After extracting segments, the query's results are invalid. But keep the
322 // contents valid until we're done accessing pendingSpills.
323 Q.clear();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000324}
325
Andrew Trick18c57a82010-11-30 23:18:47 +0000326// Spill or split all live virtual registers currently unified under PhysReg
327// that interfere with VirtReg. The newly spilled or split live intervals are
328// returned by appending them to SplitVRegs.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000329bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000330RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
331 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000332 // Record each interference and determine if all are spillable before mutating
333 // either the union or live intervals.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000334
Andrew Trick8a83d542010-11-11 17:46:29 +0000335 // Collect interferences assigned to the requested physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000336 LiveIntervalUnion::Query &QPreg = query(VirtReg, PhysReg);
337 unsigned NumInterferences = QPreg.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000338 if (QPreg.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000339 return false;
Andrew Tricke141a492010-11-08 18:02:08 +0000340 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000341 // Collect interferences assigned to any alias of the physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000342 for (const unsigned *asI = TRI->getAliasSet(PhysReg); *asI; ++asI) {
343 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
344 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000345 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000346 return false;
347 }
348 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000349 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
350 " interferences with " << VirtReg << "\n");
351 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000352
Andrew Trick18c57a82010-11-30 23:18:47 +0000353 // Spill each interfering vreg allocated to PhysReg or an alias.
354 spillReg(VirtReg, PhysReg, SplitVRegs);
355 for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI)
356 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000357 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000358}
359
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000360// Add newly allocated physical registers to the MBB live in sets.
361void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000362 NamedRegionTimer T("MBB Live Ins", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000363 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
364 MBBVec liveInMBBs;
365 MachineBasicBlock &entryMBB = *MF->begin();
366
367 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
368 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
369 if (LiveUnion.empty())
370 continue;
371 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
372 ++SI) {
373
374 // Find the set of basic blocks which this range is live into...
375 liveInMBBs.clear();
376 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
377
378 // And add the physreg for this interval to their live-in sets.
379 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
380 I != E; ++I) {
381 MachineBasicBlock *MBB = *I;
382 if (MBB == &entryMBB) continue;
383 if (MBB->isLiveIn(PhysReg)) continue;
384 MBB->addLiveIn(PhysReg);
385 }
386 }
387 }
388}
389
390
Andrew Trick14e8d712010-10-22 23:09:15 +0000391//===----------------------------------------------------------------------===//
392// RABasic Implementation
393//===----------------------------------------------------------------------===//
394
395// Driver for the register assignment and splitting heuristics.
396// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000397//
Andrew Trick18c57a82010-11-30 23:18:47 +0000398// This is a minimal implementation of register assignment and splitting that
399// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000400//
401// selectOrSplit can only be called once per live virtual register. We then do a
402// single interference test for each register the correct class until we find an
403// available register. So, the number of interference tests in the worst case is
404// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000405// minimal, there is no value in caching them outside the scope of
406// selectOrSplit().
407unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
408 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000409 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000410 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000411
Andrew Trick13bdbb02010-11-20 02:43:55 +0000412 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000413 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000414
Andrew Trick18c57a82010-11-30 23:18:47 +0000415 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
416 E = TRC->allocation_order_end(*MF);
417 I != E; ++I) {
418
419 unsigned PhysReg = *I;
420 if (ReservedRegs.test(PhysReg)) continue;
421
422 // Check interference and as a side effect, intialize queries for this
423 // VirtReg and its aliases.
424 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000425 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000426 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000427 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000428 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000429 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000430 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000431
Andrew Trickb853e6c2010-12-09 18:15:21 +0000432 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000433 // must have less spill weight.
434 if (interferingVirtReg->weight < VirtReg.weight ) {
435 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000436 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000437 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000438 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000439 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
440 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000441
Andrew Trick18c57a82010-11-30 23:18:47 +0000442 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000443
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000444 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
445 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000446 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000447 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000448 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000449 // No other spill candidates were found, so spill the current VirtReg.
450 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000451 SmallVector<LiveInterval*, 1> pendingSpills;
Andrew Trick18c57a82010-11-30 23:18:47 +0000452
453 spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000454
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000455 // The live virtual register requesting allocation was spilled, so tell
456 // the caller not to allocate anything during this round.
457 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000458}
Andrew Trick14e8d712010-10-22 23:09:15 +0000459
Andrew Trick14e8d712010-10-22 23:09:15 +0000460bool RABasic::runOnMachineFunction(MachineFunction &mf) {
461 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
462 << "********** Function: "
463 << ((Value*)mf.getFunction())->getName() << '\n');
464
Andrew Trick18c57a82010-11-30 23:18:47 +0000465 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000466 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000467
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000468 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Andrew Trick14e8d712010-10-22 23:09:15 +0000469
Andrew Trick18c57a82010-11-30 23:18:47 +0000470 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000471
Andrew Trick18c57a82010-11-30 23:18:47 +0000472 SpillerInstance.reset(createSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000473
Andrew Tricke16eecc2010-10-26 18:34:01 +0000474 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000475
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000476 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000477
Andrew Trick14e8d712010-10-22 23:09:15 +0000478 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000479 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000480
481 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000482 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000483
Andrew Trick071d1c02010-11-09 21:04:34 +0000484 // FIXME: Verification currently must run before VirtRegRewriter. We should
485 // make the rewriter a separate pass and override verifyAnalysis instead. When
486 // that happens, verification naturally falls under VerifyMachineCode.
487#ifndef NDEBUG
488 if (VerifyRegAlloc) {
489 // Verify accuracy of LiveIntervals. The standard machine code verifier
490 // ensures that each LiveIntervals covers all uses of the virtual reg.
491
Andrew Trick18c57a82010-11-30 23:18:47 +0000492 // FIXME: MachineVerifier is badly broken when using the standard
493 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
494 // inline spiller, some tests fail to verify because the coalescer does not
495 // always generate verifiable code.
496 MF->verify(this);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000497
Andrew Trick071d1c02010-11-09 21:04:34 +0000498 // Verify that LiveIntervals are partitioned into unions and disjoint within
499 // the unions.
500 verify();
501 }
502#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000503
Andrew Trick14e8d712010-10-22 23:09:15 +0000504 // Run rewriter
505 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
Andrew Trick18c57a82010-11-30 23:18:47 +0000506 rewriter->runOnMachineFunction(*MF, *VRM, LIS);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000507
508 // The pass output is in VirtRegMap. Release all the transient data.
509 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000510
Andrew Trick14e8d712010-10-22 23:09:15 +0000511 return true;
512}
513
Andrew Trick13bdbb02010-11-20 02:43:55 +0000514FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000515{
516 return new RABasic();
517}