blob: 85a3d7f12026913365259ffaa7096c8089d4a0b1 [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.
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000056static cl::opt<bool, true>
57VerifyRegAlloc("verify-regalloc", cl::location(RegAllocBase::VerifyEnabled),
58 cl::desc("Verify during register allocation"));
Andrew Trick071d1c02010-11-09 21:04:34 +000059
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000060const char *RegAllocBase::TimerGroupName = "Register Allocation";
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +000061bool RegAllocBase::VerifyEnabled = false;
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000062
Benjamin Kramerc62feda2010-11-25 16:42:51 +000063namespace {
Andrew Trick14e8d712010-10-22 23:09:15 +000064/// RABasic provides a minimal implementation of the basic register allocation
65/// algorithm. It prioritizes live virtual registers by spill weight and spills
66/// whenever a register is unavailable. This is not practical in production but
67/// provides a useful baseline both for measuring other allocators and comparing
68/// the speed of the basic algorithm against other styles of allocators.
69class RABasic : public MachineFunctionPass, public RegAllocBase
70{
71 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000072 MachineFunction *MF;
Andrew Trick18c57a82010-11-30 23:18:47 +000073 BitVector ReservedRegs;
Andrew Trick14e8d712010-10-22 23:09:15 +000074
75 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000076 LiveStacks *LS;
77 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000078
79 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000080 std::auto_ptr<Spiller> SpillerInstance;
Andrew Trick14e8d712010-10-22 23:09:15 +000081
82public:
83 RABasic();
84
85 /// Return the pass name.
86 virtual const char* getPassName() const {
87 return "Basic Register Allocator";
88 }
89
90 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000091 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000092
93 virtual void releaseMemory();
94
Andrew Trick18c57a82010-11-30 23:18:47 +000095 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +000096
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +000097 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
98
Andrew Trick18c57a82010-11-30 23:18:47 +000099 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
100 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000101
102 /// Perform register allocation.
103 virtual bool runOnMachineFunction(MachineFunction &mf);
104
105 static char ID;
106};
107
108char RABasic::ID = 0;
109
110} // end anonymous namespace
111
Andrew Trick14e8d712010-10-22 23:09:15 +0000112RABasic::RABasic(): MachineFunctionPass(ID) {
113 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
114 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
115 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
116 initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
117 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
118 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000119 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000120 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
121 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
122 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
123}
124
Andrew Trick18c57a82010-11-30 23:18:47 +0000125void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
126 AU.setPreservesCFG();
127 AU.addRequired<AliasAnalysis>();
128 AU.addPreserved<AliasAnalysis>();
129 AU.addRequired<LiveIntervals>();
130 AU.addPreserved<SlotIndexes>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000131 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000132 AU.addRequiredID(StrongPHIEliminationID);
133 AU.addRequiredTransitive<RegisterCoalescer>();
134 AU.addRequired<CalculateSpillWeights>();
135 AU.addRequired<LiveStacks>();
136 AU.addPreserved<LiveStacks>();
137 AU.addRequiredID(MachineDominatorsID);
138 AU.addPreservedID(MachineDominatorsID);
139 AU.addRequired<MachineLoopInfo>();
140 AU.addPreserved<MachineLoopInfo>();
141 AU.addRequired<VirtRegMap>();
142 AU.addPreserved<VirtRegMap>();
143 DEBUG(AU.addRequired<RenderMachineFunction>());
144 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000145}
146
147void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000148 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000149 RegAllocBase::releaseMemory();
150}
151
Andrew Trick071d1c02010-11-09 21:04:34 +0000152#ifndef NDEBUG
153// Verify each LiveIntervalUnion.
154void RegAllocBase::verify() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000155 LiveVirtRegBitSet VisitedVRegs;
156 OwningArrayPtr<LiveVirtRegBitSet>
157 unionVRegs(new LiveVirtRegBitSet[PhysReg2LiveUnion.numRegs()]);
158
Andrew Trick071d1c02010-11-09 21:04:34 +0000159 // Verify disjoint unions.
Andrew Trick18c57a82010-11-30 23:18:47 +0000160 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
Jakob Stoklund Olesen4a84cce2010-12-14 18:53:47 +0000161 DEBUG(PhysReg2LiveUnion[PhysReg].print(dbgs(), TRI));
Andrew Trick18c57a82010-11-30 23:18:47 +0000162 LiveVirtRegBitSet &VRegs = unionVRegs[PhysReg];
163 PhysReg2LiveUnion[PhysReg].verify(VRegs);
Andrew Trick071d1c02010-11-09 21:04:34 +0000164 // Union + intersection test could be done efficiently in one pass, but
165 // don't add a method to SparseBitVector unless we really need it.
Andrew Trick18c57a82010-11-30 23:18:47 +0000166 assert(!VisitedVRegs.intersects(VRegs) && "vreg in multiple unions");
167 VisitedVRegs |= VRegs;
Andrew Trick071d1c02010-11-09 21:04:34 +0000168 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000169
Andrew Trick071d1c02010-11-09 21:04:34 +0000170 // Verify vreg coverage.
Andrew Trick18c57a82010-11-30 23:18:47 +0000171 for (LiveIntervals::iterator liItr = LIS->begin(), liEnd = LIS->end();
Andrew Trick071d1c02010-11-09 21:04:34 +0000172 liItr != liEnd; ++liItr) {
173 unsigned reg = liItr->first;
Andrew Trick071d1c02010-11-09 21:04:34 +0000174 if (TargetRegisterInfo::isPhysicalRegister(reg)) continue;
Andrew Trick18c57a82010-11-30 23:18:47 +0000175 if (!VRM->hasPhys(reg)) continue; // spilled?
176 unsigned PhysReg = VRM->getPhys(reg);
177 if (!unionVRegs[PhysReg].test(reg)) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000178 dbgs() << "LiveVirtReg " << reg << " not in union " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000179 TRI->getName(PhysReg) << "\n";
Andrew Trick071d1c02010-11-09 21:04:34 +0000180 llvm_unreachable("unallocated live vreg");
181 }
182 }
183 // FIXME: I'm not sure how to verify spilled intervals.
184}
185#endif //!NDEBUG
186
Andrew Trick14e8d712010-10-22 23:09:15 +0000187//===----------------------------------------------------------------------===//
188// RegAllocBase Implementation
189//===----------------------------------------------------------------------===//
190
191// Instantiate a LiveIntervalUnion for each physical register.
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000192void RegAllocBase::LiveUnionArray::init(LiveIntervalUnion::Allocator &allocator,
193 unsigned NRegs) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000194 NumRegs = NRegs;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000195 Array =
196 static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs));
197 for (unsigned r = 0; r != NRegs; ++r)
198 new(Array + r) LiveIntervalUnion(r, allocator);
Andrew Trick14e8d712010-10-22 23:09:15 +0000199}
200
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000201void RegAllocBase::init(VirtRegMap &vrm, LiveIntervals &lis) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000202 NamedRegionTimer T("Initialize", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000203 TRI = &vrm.getTargetRegInfo();
204 MRI = &vrm.getRegInfo();
Andrew Trick18c57a82010-11-30 23:18:47 +0000205 VRM = &vrm;
206 LIS = &lis;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000207 PhysReg2LiveUnion.init(UnionAllocator, TRI->getNumRegs());
Andrew Tricke141a492010-11-08 18:02:08 +0000208 // Cache an interferece query for each physical reg
Andrew Trick18c57a82010-11-30 23:18:47 +0000209 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
Andrew Trick14e8d712010-10-22 23:09:15 +0000210}
211
Andrew Trick18c57a82010-11-30 23:18:47 +0000212void RegAllocBase::LiveUnionArray::clear() {
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000213 if (!Array)
214 return;
215 for (unsigned r = 0; r != NumRegs; ++r)
216 Array[r].~LiveIntervalUnion();
217 free(Array);
Andrew Trick18c57a82010-11-30 23:18:47 +0000218 NumRegs = 0;
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000219 Array = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000220}
221
222void RegAllocBase::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000223 PhysReg2LiveUnion.clear();
Andrew Trick14e8d712010-10-22 23:09:15 +0000224}
225
Andrew Tricke16eecc2010-10-26 18:34:01 +0000226// Visit all the live virtual registers. If they are already assigned to a
227// physical register, unify them with the corresponding LiveIntervalUnion,
228// otherwise push them on the priority queue for later assignment.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000229void RegAllocBase::
230seedLiveVirtRegs(std::priority_queue<std::pair<float, unsigned> > &VirtRegQ) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000231 for (LiveIntervals::iterator I = LIS->begin(), E = LIS->end(); I != E; ++I) {
232 unsigned RegNum = I->first;
233 LiveInterval &VirtReg = *I->second;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000234 if (TargetRegisterInfo::isPhysicalRegister(RegNum))
Andrew Trick18c57a82010-11-30 23:18:47 +0000235 PhysReg2LiveUnion[RegNum].unify(VirtReg);
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000236 else
237 VirtRegQ.push(std::make_pair(getPriority(&VirtReg), RegNum));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000238 }
239}
240
Andrew Trick18c57a82010-11-30 23:18:47 +0000241// Top-level driver to manage the queue of unassigned VirtRegs and call the
Andrew Tricke16eecc2010-10-26 18:34:01 +0000242// selectOrSplit implementation.
243void RegAllocBase::allocatePhysRegs() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000244
245 // Push each vreg onto a queue or "precolor" by adding it to a physreg union.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000246 std::priority_queue<std::pair<float, unsigned> > VirtRegQ;
Andrew Trick18c57a82010-11-30 23:18:47 +0000247 seedLiveVirtRegs(VirtRegQ);
248
249 // Continue assigning vregs one at a time to available physical registers.
250 while (!VirtRegQ.empty()) {
251 // Pop the highest priority vreg.
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000252 LiveInterval &VirtReg = LIS->getInterval(VirtRegQ.top().second);
253 VirtRegQ.pop();
Andrew Trick18c57a82010-11-30 23:18:47 +0000254
255 // selectOrSplit requests the allocator to return an available physical
256 // register if possible and populate a list of new live intervals that
257 // result from splitting.
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000258 DEBUG(dbgs() << "\nselectOrSplit " << MRI->getRegClass(VirtReg.reg)->getName()
259 << ':' << VirtReg << '\n');
Andrew Trick18c57a82010-11-30 23:18:47 +0000260 typedef SmallVector<LiveInterval*, 4> VirtRegVec;
261 VirtRegVec SplitVRegs;
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000262 unsigned AvailablePhysReg = selectOrSplit(VirtReg, SplitVRegs);
Andrew Trick18c57a82010-11-30 23:18:47 +0000263
264 if (AvailablePhysReg) {
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000265 DEBUG(dbgs() << "allocating: " << TRI->getName(AvailablePhysReg)
266 << " for " << VirtReg << '\n');
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000267 assert(!VRM->hasPhys(VirtReg.reg) && "duplicate vreg in union");
268 VRM->assignVirt2Phys(VirtReg.reg, AvailablePhysReg);
269 PhysReg2LiveUnion[AvailablePhysReg].unify(VirtReg);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000270 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000271 for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
272 I != E; ++I) {
273 LiveInterval* SplitVirtReg = *I;
274 if (SplitVirtReg->empty()) continue;
275 DEBUG(dbgs() << "queuing new interval: " << *SplitVirtReg << "\n");
276 assert(TargetRegisterInfo::isVirtualRegister(SplitVirtReg->reg) &&
Andrew Tricke141a492010-11-08 18:02:08 +0000277 "expect split value in virtual register");
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +0000278 VirtRegQ.push(std::make_pair(getPriority(SplitVirtReg),
279 SplitVirtReg->reg));
Andrew Tricke16eecc2010-10-26 18:34:01 +0000280 }
281 }
282}
283
Andrew Trick18c57a82010-11-30 23:18:47 +0000284// Check if this live virtual register interferes with a physical register. If
285// not, then check for interference on each register that aliases with the
286// physical register. Return the interfering register.
287unsigned RegAllocBase::checkPhysRegInterference(LiveInterval &VirtReg,
288 unsigned PhysReg) {
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000289 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000290 if (query(VirtReg, *AliasI).checkInterference())
291 return *AliasI;
Andrew Tricke141a492010-11-08 18:02:08 +0000292 return 0;
293}
294
Andrew Trick18c57a82010-11-30 23:18:47 +0000295// Helper for spillInteferences() that spills all interfering vregs currently
296// assigned to this physical register.
297void RegAllocBase::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
298 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
299 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
300 assert(Q.seenAllInterferences() && "need collectInterferences()");
301 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000302
Andrew Trick18c57a82010-11-30 23:18:47 +0000303 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
304 E = PendingSpills.end(); I != E; ++I) {
305 LiveInterval &SpilledVReg = **I;
Andrew Trick8a83d542010-11-11 17:46:29 +0000306 DEBUG(dbgs() << "extracting from " <<
Andrew Trick18c57a82010-11-30 23:18:47 +0000307 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
Andrew Trick13bdbb02010-11-20 02:43:55 +0000308
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000309 // Deallocate the interfering vreg by removing it from the union.
310 // A LiveInterval instance may not be in a union during modification!
Andrew Trick18c57a82010-11-30 23:18:47 +0000311 PhysReg2LiveUnion[PhysReg].extract(SpilledVReg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000312
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000313 // Clear the vreg assignment.
Andrew Trick18c57a82010-11-30 23:18:47 +0000314 VRM->clearVirt(SpilledVReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000315
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000316 // Spill the extracted interval.
Andrew Trick18c57a82010-11-30 23:18:47 +0000317 spiller().spill(&SpilledVReg, SplitVRegs, PendingSpills);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000318 }
Andrew Trick8a83d542010-11-11 17:46:29 +0000319 // After extracting segments, the query's results are invalid. But keep the
320 // contents valid until we're done accessing pendingSpills.
321 Q.clear();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000322}
323
Andrew Trick18c57a82010-11-30 23:18:47 +0000324// Spill or split all live virtual registers currently unified under PhysReg
325// that interfere with VirtReg. The newly spilled or split live intervals are
326// returned by appending them to SplitVRegs.
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000327bool
Andrew Trick18c57a82010-11-30 23:18:47 +0000328RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
329 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000330 // Record each interference and determine if all are spillable before mutating
331 // either the union or live intervals.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000332 unsigned NumInterferences = 0;
Andrew Trick8a83d542010-11-11 17:46:29 +0000333 // Collect interferences assigned to any alias of the physical register.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000334 for (const unsigned *asI = TRI->getOverlaps(PhysReg); *asI; ++asI) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000335 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
336 NumInterferences += QAlias.collectInterferingVRegs();
Andrew Trick8a83d542010-11-11 17:46:29 +0000337 if (QAlias.seenUnspillableVReg()) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000338 return false;
339 }
340 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000341 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
342 " interferences with " << VirtReg << "\n");
343 assert(NumInterferences > 0 && "expect interference");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000344
Andrew Trick18c57a82010-11-30 23:18:47 +0000345 // Spill each interfering vreg allocated to PhysReg or an alias.
Jakob Stoklund Olesen16999da2010-12-14 23:10:48 +0000346 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
Andrew Trick18c57a82010-11-30 23:18:47 +0000347 spillReg(VirtReg, *AliasI, SplitVRegs);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000348 return true;
Andrew Trick14e8d712010-10-22 23:09:15 +0000349}
350
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000351// Add newly allocated physical registers to the MBB live in sets.
352void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000353 NamedRegionTimer T("MBB Live Ins", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000354 typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
355 MBBVec liveInMBBs;
356 MachineBasicBlock &entryMBB = *MF->begin();
357
358 for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
359 LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
360 if (LiveUnion.empty())
361 continue;
362 for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
363 ++SI) {
364
365 // Find the set of basic blocks which this range is live into...
366 liveInMBBs.clear();
367 if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
368
369 // And add the physreg for this interval to their live-in sets.
370 for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
371 I != E; ++I) {
372 MachineBasicBlock *MBB = *I;
373 if (MBB == &entryMBB) continue;
374 if (MBB->isLiveIn(PhysReg)) continue;
375 MBB->addLiveIn(PhysReg);
376 }
377 }
378 }
379}
380
381
Andrew Trick14e8d712010-10-22 23:09:15 +0000382//===----------------------------------------------------------------------===//
383// RABasic Implementation
384//===----------------------------------------------------------------------===//
385
386// Driver for the register assignment and splitting heuristics.
387// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000388//
Andrew Trick18c57a82010-11-30 23:18:47 +0000389// This is a minimal implementation of register assignment and splitting that
390// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000391//
392// selectOrSplit can only be called once per live virtual register. We then do a
393// single interference test for each register the correct class until we find an
394// available register. So, the number of interference tests in the worst case is
395// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000396// minimal, there is no value in caching them outside the scope of
397// selectOrSplit().
398unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
399 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000400 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000401 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000402
Andrew Trick13bdbb02010-11-20 02:43:55 +0000403 // Check for an available register in this class.
Andrew Trick18c57a82010-11-30 23:18:47 +0000404 const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000405
Andrew Trick18c57a82010-11-30 23:18:47 +0000406 for (TargetRegisterClass::iterator I = TRC->allocation_order_begin(*MF),
407 E = TRC->allocation_order_end(*MF);
408 I != E; ++I) {
409
410 unsigned PhysReg = *I;
411 if (ReservedRegs.test(PhysReg)) continue;
412
413 // Check interference and as a side effect, intialize queries for this
414 // VirtReg and its aliases.
415 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000416 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000417 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000418 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000419 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000420 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +0000421 Queries[interfReg].firstInterference().liveUnionPos().value();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000422
Andrew Trickb853e6c2010-12-09 18:15:21 +0000423 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000424 // must have less spill weight.
425 if (interferingVirtReg->weight < VirtReg.weight ) {
426 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000427 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000428 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000429 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000430 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
431 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000432
Andrew Trick18c57a82010-11-30 23:18:47 +0000433 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000434
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000435 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
436 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000437 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000438 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000439 }
Andrew Trick18c57a82010-11-30 23:18:47 +0000440 // No other spill candidates were found, so spill the current VirtReg.
441 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000442 SmallVector<LiveInterval*, 1> pendingSpills;
Andrew Trick18c57a82010-11-30 23:18:47 +0000443
444 spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000445
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000446 // The live virtual register requesting allocation was spilled, so tell
447 // the caller not to allocate anything during this round.
448 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000449}
Andrew Trick14e8d712010-10-22 23:09:15 +0000450
Andrew Trick14e8d712010-10-22 23:09:15 +0000451bool RABasic::runOnMachineFunction(MachineFunction &mf) {
452 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
453 << "********** Function: "
454 << ((Value*)mf.getFunction())->getName() << '\n');
455
Andrew Trick18c57a82010-11-30 23:18:47 +0000456 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000457 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000458
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000459 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Andrew Trick14e8d712010-10-22 23:09:15 +0000460
Andrew Trick18c57a82010-11-30 23:18:47 +0000461 ReservedRegs = TRI->getReservedRegs(*MF);
Andrew Trick8a83d542010-11-11 17:46:29 +0000462
Andrew Trick18c57a82010-11-30 23:18:47 +0000463 SpillerInstance.reset(createSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000464
Andrew Tricke16eecc2010-10-26 18:34:01 +0000465 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000466
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000467 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000468
Andrew Trick14e8d712010-10-22 23:09:15 +0000469 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000470 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000471
472 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000473 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000474
Andrew Trick071d1c02010-11-09 21:04:34 +0000475 // FIXME: Verification currently must run before VirtRegRewriter. We should
476 // make the rewriter a separate pass and override verifyAnalysis instead. When
477 // that happens, verification naturally falls under VerifyMachineCode.
478#ifndef NDEBUG
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +0000479 if (VerifyEnabled) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000480 // Verify accuracy of LiveIntervals. The standard machine code verifier
481 // ensures that each LiveIntervals covers all uses of the virtual reg.
482
Andrew Trick18c57a82010-11-30 23:18:47 +0000483 // FIXME: MachineVerifier is badly broken when using the standard
484 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
485 // inline spiller, some tests fail to verify because the coalescer does not
486 // always generate verifiable code.
487 MF->verify(this);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000488
Andrew Trick071d1c02010-11-09 21:04:34 +0000489 // Verify that LiveIntervals are partitioned into unions and disjoint within
490 // the unions.
491 verify();
492 }
493#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000494
Andrew Trick14e8d712010-10-22 23:09:15 +0000495 // Run rewriter
496 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
Andrew Trick18c57a82010-11-30 23:18:47 +0000497 rewriter->runOnMachineFunction(*MF, *VRM, LIS);
Andrew Tricke16eecc2010-10-26 18:34:01 +0000498
499 // The pass output is in VirtRegMap. Release all the transient data.
500 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000501
Andrew Trick14e8d712010-10-22 23:09:15 +0000502 return true;
503}
504
Andrew Trick13bdbb02010-11-20 02:43:55 +0000505FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000506{
507 return new RABasic();
508}