blob: 18d6f473299fa972a9eefa17f0f51dc000d9c4a1 [file] [log] [blame]
Jakob Stoklund Olesenccc95812012-01-11 22:28:30 +00001//===-- RegAllocBasic.cpp - Basic Register Allocator ----------------------===//
Andrew Trick14e8d712010-10-22 23:09:15 +00002//
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"
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +000016#include "RegAllocBase.h"
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +000017#include "LiveDebugVariables.h"
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +000018#include "LiveRangeEdit.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000019#include "RenderMachineFunction.h"
20#include "Spiller.h"
Andrew Tricke141a492010-11-08 18:02:08 +000021#include "VirtRegMap.h"
Andrew Trick8a83d542010-11-11 17:46:29 +000022#include "llvm/Analysis/AliasAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000023#include "llvm/Function.h"
24#include "llvm/PassAnalysisSupport.h"
25#include "llvm/CodeGen/CalcSpillWeights.h"
Andrew Tricke141a492010-11-08 18:02:08 +000026#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000027#include "llvm/CodeGen/LiveStackAnalysis.h"
28#include "llvm/CodeGen/MachineFunctionPass.h"
29#include "llvm/CodeGen/MachineInstr.h"
30#include "llvm/CodeGen/MachineLoopInfo.h"
31#include "llvm/CodeGen/MachineRegisterInfo.h"
32#include "llvm/CodeGen/Passes.h"
33#include "llvm/CodeGen/RegAllocRegistry.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000034#include "llvm/Target/TargetMachine.h"
35#include "llvm/Target/TargetOptions.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000036#include "llvm/Target/TargetRegisterInfo.h"
Andrew Tricke141a492010-11-08 18:02:08 +000037#include "llvm/Support/Debug.h"
Andrew Tricke141a492010-11-08 18:02:08 +000038#include "llvm/Support/raw_ostream.h"
Andrew Tricke16eecc2010-10-26 18:34:01 +000039
Jakob Stoklund Olesen953af2c2010-12-07 23:18:47 +000040#include <cstdlib>
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000041#include <queue>
Andrew Tricke16eecc2010-10-26 18:34:01 +000042
Andrew Trick14e8d712010-10-22 23:09:15 +000043using namespace llvm;
44
45static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
46 createBasicRegisterAllocator);
47
Benjamin Kramerc62feda2010-11-25 16:42:51 +000048namespace {
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000049 struct CompSpillWeight {
50 bool operator()(LiveInterval *A, LiveInterval *B) const {
51 return A->weight < B->weight;
52 }
53 };
54}
55
56namespace {
Andrew Trick14e8d712010-10-22 23:09:15 +000057/// RABasic provides a minimal implementation of the basic register allocation
58/// algorithm. It prioritizes live virtual registers by spill weight and spills
59/// whenever a register is unavailable. This is not practical in production but
60/// provides a useful baseline both for measuring other allocators and comparing
61/// the speed of the basic algorithm against other styles of allocators.
62class RABasic : public MachineFunctionPass, public RegAllocBase
63{
64 // context
Andrew Trick18c57a82010-11-30 23:18:47 +000065 MachineFunction *MF;
Andrew Trick14e8d712010-10-22 23:09:15 +000066
67 // analyses
Andrew Trick18c57a82010-11-30 23:18:47 +000068 LiveStacks *LS;
69 RenderMachineFunction *RMF;
Andrew Trick14e8d712010-10-22 23:09:15 +000070
71 // state
Andrew Trick18c57a82010-11-30 23:18:47 +000072 std::auto_ptr<Spiller> SpillerInstance;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000073 std::priority_queue<LiveInterval*, std::vector<LiveInterval*>,
74 CompSpillWeight> Queue;
Jakob Stoklund Olesena94e6352012-02-08 18:54:35 +000075
76 // Scratch space. Allocated here to avoid repeated malloc calls in
77 // selectOrSplit().
78 BitVector UsableRegs;
79
Andrew Trick14e8d712010-10-22 23:09:15 +000080public:
81 RABasic();
82
83 /// Return the pass name.
84 virtual const char* getPassName() const {
85 return "Basic Register Allocator";
86 }
87
88 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000089 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000090
91 virtual void releaseMemory();
92
Andrew Trick18c57a82010-11-30 23:18:47 +000093 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +000094
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +000095 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
96
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000097 virtual void enqueue(LiveInterval *LI) {
98 Queue.push(LI);
99 }
100
101 virtual LiveInterval *dequeue() {
102 if (Queue.empty())
103 return 0;
104 LiveInterval *LI = Queue.top();
105 Queue.pop();
106 return LI;
107 }
108
Andrew Trick18c57a82010-11-30 23:18:47 +0000109 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
110 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000111
112 /// Perform register allocation.
113 virtual bool runOnMachineFunction(MachineFunction &mf);
114
Jakob Stoklund Olesena8bd9a62012-01-11 22:52:14 +0000115 // Helper for spilling all live virtual registers currently unified under preg
116 // that interfere with the most recently queried lvr. Return true if spilling
117 // was successful, and append any new spilled/split intervals to splitLVRs.
118 bool spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
119 SmallVectorImpl<LiveInterval*> &SplitVRegs);
120
121 void spillReg(LiveInterval &VirtReg, unsigned PhysReg,
122 SmallVectorImpl<LiveInterval*> &SplitVRegs);
123
Andrew Trick14e8d712010-10-22 23:09:15 +0000124 static char ID;
125};
126
127char RABasic::ID = 0;
128
129} // end anonymous namespace
130
Andrew Trick14e8d712010-10-22 23:09:15 +0000131RABasic::RABasic(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000132 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000133 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
134 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +0000135 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Trick42b7a712012-01-17 06:55:03 +0000136 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000137 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
138 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000139 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000140 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
141 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
142 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
143}
144
Andrew Trick18c57a82010-11-30 23:18:47 +0000145void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
146 AU.setPreservesCFG();
147 AU.addRequired<AliasAnalysis>();
148 AU.addPreserved<AliasAnalysis>();
149 AU.addRequired<LiveIntervals>();
150 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000151 AU.addRequired<LiveDebugVariables>();
152 AU.addPreserved<LiveDebugVariables>();
Andrew Trick18c57a82010-11-30 23:18:47 +0000153 AU.addRequired<CalculateSpillWeights>();
154 AU.addRequired<LiveStacks>();
155 AU.addPreserved<LiveStacks>();
156 AU.addRequiredID(MachineDominatorsID);
157 AU.addPreservedID(MachineDominatorsID);
158 AU.addRequired<MachineLoopInfo>();
159 AU.addPreserved<MachineLoopInfo>();
160 AU.addRequired<VirtRegMap>();
161 AU.addPreserved<VirtRegMap>();
162 DEBUG(AU.addRequired<RenderMachineFunction>());
163 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000164}
165
166void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000167 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000168 RegAllocBase::releaseMemory();
169}
170
Jakob Stoklund Olesena8bd9a62012-01-11 22:52:14 +0000171// Helper for spillInterferences() that spills all interfering vregs currently
172// assigned to this physical register.
173void RABasic::spillReg(LiveInterval& VirtReg, unsigned PhysReg,
174 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
175 LiveIntervalUnion::Query &Q = query(VirtReg, PhysReg);
176 assert(Q.seenAllInterferences() && "need collectInterferences()");
177 const SmallVectorImpl<LiveInterval*> &PendingSpills = Q.interferingVRegs();
178
179 for (SmallVectorImpl<LiveInterval*>::const_iterator I = PendingSpills.begin(),
180 E = PendingSpills.end(); I != E; ++I) {
181 LiveInterval &SpilledVReg = **I;
182 DEBUG(dbgs() << "extracting from " <<
183 TRI->getName(PhysReg) << " " << SpilledVReg << '\n');
184
185 // Deallocate the interfering vreg by removing it from the union.
186 // A LiveInterval instance may not be in a union during modification!
187 unassign(SpilledVReg, PhysReg);
188
189 // Spill the extracted interval.
190 LiveRangeEdit LRE(SpilledVReg, SplitVRegs, 0, &PendingSpills);
191 spiller().spill(LRE);
192 }
193 // After extracting segments, the query's results are invalid. But keep the
194 // contents valid until we're done accessing pendingSpills.
195 Q.clear();
196}
197
198// Spill or split all live virtual registers currently unified under PhysReg
199// that interfere with VirtReg. The newly spilled or split live intervals are
200// returned by appending them to SplitVRegs.
201bool RABasic::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
202 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
203 // Record each interference and determine if all are spillable before mutating
204 // either the union or live intervals.
205 unsigned NumInterferences = 0;
206 // Collect interferences assigned to any alias of the physical register.
207 for (const unsigned *asI = TRI->getOverlaps(PhysReg); *asI; ++asI) {
208 LiveIntervalUnion::Query &QAlias = query(VirtReg, *asI);
209 NumInterferences += QAlias.collectInterferingVRegs();
210 if (QAlias.seenUnspillableVReg()) {
211 return false;
212 }
213 }
214 DEBUG(dbgs() << "spilling " << TRI->getName(PhysReg) <<
215 " interferences with " << VirtReg << "\n");
216 assert(NumInterferences > 0 && "expect interference");
217
218 // Spill each interfering vreg allocated to PhysReg or an alias.
219 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI)
220 spillReg(VirtReg, *AliasI, SplitVRegs);
221 return true;
222}
223
Andrew Trick14e8d712010-10-22 23:09:15 +0000224// Driver for the register assignment and splitting heuristics.
225// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000226//
Andrew Trick18c57a82010-11-30 23:18:47 +0000227// This is a minimal implementation of register assignment and splitting that
228// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000229//
230// selectOrSplit can only be called once per live virtual register. We then do a
231// single interference test for each register the correct class until we find an
232// available register. So, the number of interference tests in the worst case is
233// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000234// minimal, there is no value in caching them outside the scope of
235// selectOrSplit().
236unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
237 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Jakob Stoklund Olesena94e6352012-02-08 18:54:35 +0000238 // Check for register mask interference. When live ranges cross calls, the
239 // set of usable registers is reduced to the callee-saved ones.
240 bool CrossRegMasks = LIS->checkRegMaskInterference(VirtReg, UsableRegs);
241
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000242 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000243 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000244
Andrew Trick13bdbb02010-11-20 02:43:55 +0000245 // Check for an available register in this class.
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +0000246 ArrayRef<unsigned> Order =
247 RegClassInfo.getOrder(MRI->getRegClass(VirtReg.reg));
248 for (ArrayRef<unsigned>::iterator I = Order.begin(), E = Order.end(); I != E;
249 ++I) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000250 unsigned PhysReg = *I;
Andrew Trick18c57a82010-11-30 23:18:47 +0000251
Jakob Stoklund Olesena94e6352012-02-08 18:54:35 +0000252 // If PhysReg is clobbered by a register mask, it isn't useful for
253 // allocation or spilling.
254 if (CrossRegMasks && !UsableRegs.test(PhysReg))
255 continue;
256
Andrew Trick18c57a82010-11-30 23:18:47 +0000257 // Check interference and as a side effect, intialize queries for this
258 // VirtReg and its aliases.
259 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000260 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000261 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000262 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000263 }
Jakob Stoklund Olesen93841112012-01-11 23:19:08 +0000264 LiveIntervalUnion::Query &IntfQ = query(VirtReg, interfReg);
265 IntfQ.collectInterferingVRegs(1);
266 LiveInterval *interferingVirtReg = IntfQ.interferingVRegs().front();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000267
Andrew Trickb853e6c2010-12-09 18:15:21 +0000268 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000269 // must have less spill weight.
270 if (interferingVirtReg->weight < VirtReg.weight ) {
271 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000272 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000273 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000274 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000275 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
276 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000277
Andrew Trick18c57a82010-11-30 23:18:47 +0000278 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000279
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000280 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
281 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000282 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000283 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000284 }
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +0000285
Andrew Trick18c57a82010-11-30 23:18:47 +0000286 // No other spill candidates were found, so spill the current VirtReg.
287 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +0000288 if (!VirtReg.isSpillable())
289 return ~0u;
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +0000290 LiveRangeEdit LRE(VirtReg, SplitVRegs);
291 spiller().spill(LRE);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000292
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000293 // The live virtual register requesting allocation was spilled, so tell
294 // the caller not to allocate anything during this round.
295 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000296}
Andrew Trick14e8d712010-10-22 23:09:15 +0000297
Andrew Trick14e8d712010-10-22 23:09:15 +0000298bool RABasic::runOnMachineFunction(MachineFunction &mf) {
299 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
300 << "********** Function: "
301 << ((Value*)mf.getFunction())->getName() << '\n');
302
Andrew Trick18c57a82010-11-30 23:18:47 +0000303 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000304 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000305
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000306 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesen84275962011-03-31 23:02:17 +0000307 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000308
Andrew Tricke16eecc2010-10-26 18:34:01 +0000309 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000310
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000311 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000312
Andrew Trick14e8d712010-10-22 23:09:15 +0000313 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000314 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000315
316 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000317 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000318
Andrew Trick071d1c02010-11-09 21:04:34 +0000319 // FIXME: Verification currently must run before VirtRegRewriter. We should
320 // make the rewriter a separate pass and override verifyAnalysis instead. When
321 // that happens, verification naturally falls under VerifyMachineCode.
322#ifndef NDEBUG
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +0000323 if (VerifyEnabled) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000324 // Verify accuracy of LiveIntervals. The standard machine code verifier
325 // ensures that each LiveIntervals covers all uses of the virtual reg.
326
Andrew Trick18c57a82010-11-30 23:18:47 +0000327 // FIXME: MachineVerifier is badly broken when using the standard
328 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
329 // inline spiller, some tests fail to verify because the coalescer does not
330 // always generate verifiable code.
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000331 MF->verify(this, "In RABasic::verify");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000332
Andrew Trick071d1c02010-11-09 21:04:34 +0000333 // Verify that LiveIntervals are partitioned into unions and disjoint within
334 // the unions.
335 verify();
336 }
337#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000338
Andrew Trick14e8d712010-10-22 23:09:15 +0000339 // Run rewriter
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +0000340 VRM->rewrite(LIS->getSlotIndexes());
Andrew Tricke16eecc2010-10-26 18:34:01 +0000341
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000342 // Write out new DBG_VALUE instructions.
343 getAnalysis<LiveDebugVariables>().emitDebugValues(VRM);
344
Andrew Tricke16eecc2010-10-26 18:34:01 +0000345 // The pass output is in VirtRegMap. Release all the transient data.
346 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000347
Andrew Trick14e8d712010-10-22 23:09:15 +0000348 return true;
349}
350
Andrew Trick13bdbb02010-11-20 02:43:55 +0000351FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000352{
353 return new RABasic();
354}