blob: a67a6169beed735cb43bb40f0b5863b74ede3606 [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;
Andrew Trick14e8d712010-10-22 23:09:15 +000075public:
76 RABasic();
77
78 /// Return the pass name.
79 virtual const char* getPassName() const {
80 return "Basic Register Allocator";
81 }
82
83 /// RABasic analysis usage.
Andrew Trick18c57a82010-11-30 23:18:47 +000084 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Andrew Trick14e8d712010-10-22 23:09:15 +000085
86 virtual void releaseMemory();
87
Andrew Trick18c57a82010-11-30 23:18:47 +000088 virtual Spiller &spiller() { return *SpillerInstance; }
Andrew Trickf4baeaf2010-11-10 19:18:47 +000089
Jakob Stoklund Olesend0bec3e2010-12-08 22:22:41 +000090 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
91
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000092 virtual void enqueue(LiveInterval *LI) {
93 Queue.push(LI);
94 }
95
96 virtual LiveInterval *dequeue() {
97 if (Queue.empty())
98 return 0;
99 LiveInterval *LI = Queue.top();
100 Queue.pop();
101 return LI;
102 }
103
Andrew Trick18c57a82010-11-30 23:18:47 +0000104 virtual unsigned selectOrSplit(LiveInterval &VirtReg,
105 SmallVectorImpl<LiveInterval*> &SplitVRegs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000106
107 /// Perform register allocation.
108 virtual bool runOnMachineFunction(MachineFunction &mf);
109
110 static char ID;
111};
112
113char RABasic::ID = 0;
114
115} // end anonymous namespace
116
Andrew Trick14e8d712010-10-22 23:09:15 +0000117RABasic::RABasic(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000118 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000119 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
120 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
121 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +0000122 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000123 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
124 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen964bc252010-11-03 20:39:26 +0000125 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
Andrew Trick14e8d712010-10-22 23:09:15 +0000126 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
127 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
128 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
129}
130
Andrew Trick18c57a82010-11-30 23:18:47 +0000131void RABasic::getAnalysisUsage(AnalysisUsage &AU) const {
132 AU.setPreservesCFG();
133 AU.addRequired<AliasAnalysis>();
134 AU.addPreserved<AliasAnalysis>();
135 AU.addRequired<LiveIntervals>();
136 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000137 AU.addRequired<LiveDebugVariables>();
138 AU.addPreserved<LiveDebugVariables>();
Andrew Trick14e8d712010-10-22 23:09:15 +0000139 if (StrongPHIElim)
Andrew Trick18c57a82010-11-30 23:18:47 +0000140 AU.addRequiredID(StrongPHIEliminationID);
Jakob Stoklund Olesen27215672011-08-09 00:29:53 +0000141 AU.addRequiredTransitiveID(RegisterCoalescerPassID);
Andrew Trick18c57a82010-11-30 23:18:47 +0000142 AU.addRequired<CalculateSpillWeights>();
143 AU.addRequired<LiveStacks>();
144 AU.addPreserved<LiveStacks>();
145 AU.addRequiredID(MachineDominatorsID);
146 AU.addPreservedID(MachineDominatorsID);
147 AU.addRequired<MachineLoopInfo>();
148 AU.addPreserved<MachineLoopInfo>();
149 AU.addRequired<VirtRegMap>();
150 AU.addPreserved<VirtRegMap>();
151 DEBUG(AU.addRequired<RenderMachineFunction>());
152 MachineFunctionPass::getAnalysisUsage(AU);
Andrew Trick14e8d712010-10-22 23:09:15 +0000153}
154
155void RABasic::releaseMemory() {
Andrew Trick18c57a82010-11-30 23:18:47 +0000156 SpillerInstance.reset(0);
Andrew Trick14e8d712010-10-22 23:09:15 +0000157 RegAllocBase::releaseMemory();
158}
159
Andrew Trick14e8d712010-10-22 23:09:15 +0000160// Driver for the register assignment and splitting heuristics.
161// Manages iteration over the LiveIntervalUnions.
Andrew Trick13bdbb02010-11-20 02:43:55 +0000162//
Andrew Trick18c57a82010-11-30 23:18:47 +0000163// This is a minimal implementation of register assignment and splitting that
164// spills whenever we run out of registers.
Andrew Trick14e8d712010-10-22 23:09:15 +0000165//
166// selectOrSplit can only be called once per live virtual register. We then do a
167// single interference test for each register the correct class until we find an
168// available register. So, the number of interference tests in the worst case is
169// |vregs| * |machineregs|. And since the number of interference tests is
Andrew Trick18c57a82010-11-30 23:18:47 +0000170// minimal, there is no value in caching them outside the scope of
171// selectOrSplit().
172unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
173 SmallVectorImpl<LiveInterval*> &SplitVRegs) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000174 // Populate a list of physical register spill candidates.
Andrew Trick18c57a82010-11-30 23:18:47 +0000175 SmallVector<unsigned, 8> PhysRegSpillCands;
Andrew Tricke141a492010-11-08 18:02:08 +0000176
Andrew Trick13bdbb02010-11-20 02:43:55 +0000177 // Check for an available register in this class.
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +0000178 ArrayRef<unsigned> Order =
179 RegClassInfo.getOrder(MRI->getRegClass(VirtReg.reg));
180 for (ArrayRef<unsigned>::iterator I = Order.begin(), E = Order.end(); I != E;
181 ++I) {
Andrew Trick18c57a82010-11-30 23:18:47 +0000182 unsigned PhysReg = *I;
Andrew Trick18c57a82010-11-30 23:18:47 +0000183
184 // Check interference and as a side effect, intialize queries for this
185 // VirtReg and its aliases.
186 unsigned interfReg = checkPhysRegInterference(VirtReg, PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000187 if (interfReg == 0) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000188 // Found an available register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000189 return PhysReg;
Andrew Trick14e8d712010-10-22 23:09:15 +0000190 }
Jakob Stoklund Olesen98985f92011-08-11 21:00:42 +0000191 Queries[interfReg].collectInterferingVRegs(1);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000192 LiveInterval *interferingVirtReg =
Jakob Stoklund Olesen98985f92011-08-11 21:00:42 +0000193 Queries[interfReg].interferingVRegs().front();
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000194
Andrew Trickb853e6c2010-12-09 18:15:21 +0000195 // The current VirtReg must either be spillable, or one of its interferences
Andrew Trick18c57a82010-11-30 23:18:47 +0000196 // must have less spill weight.
197 if (interferingVirtReg->weight < VirtReg.weight ) {
198 PhysRegSpillCands.push_back(PhysReg);
Andrew Tricke141a492010-11-08 18:02:08 +0000199 }
Andrew Trick14e8d712010-10-22 23:09:15 +0000200 }
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000201 // Try to spill another interfering reg with less spill weight.
Andrew Trick18c57a82010-11-30 23:18:47 +0000202 for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
203 PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000204
Andrew Trick18c57a82010-11-30 23:18:47 +0000205 if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
Andrew Trick13bdbb02010-11-20 02:43:55 +0000206
Jakob Stoklund Olesen2b38c512010-12-07 18:51:27 +0000207 assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
208 "Interference after spill.");
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000209 // Tell the caller to allocate to this newly freed physical register.
Andrew Trick18c57a82010-11-30 23:18:47 +0000210 return *PhysRegI;
Andrew Tricke141a492010-11-08 18:02:08 +0000211 }
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +0000212
Andrew Trick18c57a82010-11-30 23:18:47 +0000213 // No other spill candidates were found, so spill the current VirtReg.
214 DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +0000215 if (!VirtReg.isSpillable())
216 return ~0u;
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +0000217 LiveRangeEdit LRE(VirtReg, SplitVRegs);
218 spiller().spill(LRE);
Andrew Trick13bdbb02010-11-20 02:43:55 +0000219
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000220 // The live virtual register requesting allocation was spilled, so tell
221 // the caller not to allocate anything during this round.
222 return 0;
Andrew Tricke141a492010-11-08 18:02:08 +0000223}
Andrew Trick14e8d712010-10-22 23:09:15 +0000224
Andrew Trick14e8d712010-10-22 23:09:15 +0000225bool RABasic::runOnMachineFunction(MachineFunction &mf) {
226 DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
227 << "********** Function: "
228 << ((Value*)mf.getFunction())->getName() << '\n');
229
Andrew Trick18c57a82010-11-30 23:18:47 +0000230 MF = &mf;
Andrew Trick18c57a82010-11-30 23:18:47 +0000231 DEBUG(RMF = &getAnalysis<RenderMachineFunction>());
Andrew Trick8a83d542010-11-11 17:46:29 +0000232
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +0000233 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesen84275962011-03-31 23:02:17 +0000234 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Andrew Trick13bdbb02010-11-20 02:43:55 +0000235
Andrew Tricke16eecc2010-10-26 18:34:01 +0000236 allocatePhysRegs();
Andrew Trick14e8d712010-10-22 23:09:15 +0000237
Jakob Stoklund Olesen1b19dc12010-12-08 01:06:06 +0000238 addMBBLiveIns(MF);
Andrew Trick316df4b2010-11-20 02:57:05 +0000239
Andrew Trick14e8d712010-10-22 23:09:15 +0000240 // Diagnostic output before rewriting
Andrew Trick18c57a82010-11-30 23:18:47 +0000241 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
Andrew Trick14e8d712010-10-22 23:09:15 +0000242
243 // optional HTML output
Andrew Trick18c57a82010-11-30 23:18:47 +0000244 DEBUG(RMF->renderMachineFunction("After basic register allocation.", VRM));
Andrew Trick14e8d712010-10-22 23:09:15 +0000245
Andrew Trick071d1c02010-11-09 21:04:34 +0000246 // FIXME: Verification currently must run before VirtRegRewriter. We should
247 // make the rewriter a separate pass and override verifyAnalysis instead. When
248 // that happens, verification naturally falls under VerifyMachineCode.
249#ifndef NDEBUG
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +0000250 if (VerifyEnabled) {
Andrew Trick071d1c02010-11-09 21:04:34 +0000251 // Verify accuracy of LiveIntervals. The standard machine code verifier
252 // ensures that each LiveIntervals covers all uses of the virtual reg.
253
Andrew Trick18c57a82010-11-30 23:18:47 +0000254 // FIXME: MachineVerifier is badly broken when using the standard
255 // spiller. Always use -spiller=inline with -verify-regalloc. Even with the
256 // inline spiller, some tests fail to verify because the coalescer does not
257 // always generate verifiable code.
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000258 MF->verify(this, "In RABasic::verify");
Andrew Trick13bdbb02010-11-20 02:43:55 +0000259
Andrew Trick071d1c02010-11-09 21:04:34 +0000260 // Verify that LiveIntervals are partitioned into unions and disjoint within
261 // the unions.
262 verify();
263 }
264#endif // !NDEBUG
Andrew Trick13bdbb02010-11-20 02:43:55 +0000265
Andrew Trick14e8d712010-10-22 23:09:15 +0000266 // Run rewriter
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +0000267 VRM->rewrite(LIS->getSlotIndexes());
Andrew Tricke16eecc2010-10-26 18:34:01 +0000268
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000269 // Write out new DBG_VALUE instructions.
270 getAnalysis<LiveDebugVariables>().emitDebugValues(VRM);
271
Andrew Tricke16eecc2010-10-26 18:34:01 +0000272 // The pass output is in VirtRegMap. Release all the transient data.
273 releaseMemory();
Andrew Trick13bdbb02010-11-20 02:43:55 +0000274
Andrew Trick14e8d712010-10-22 23:09:15 +0000275 return true;
276}
277
Andrew Trick13bdbb02010-11-20 02:43:55 +0000278FunctionPass* llvm::createBasicRegisterAllocator()
Andrew Trick14e8d712010-10-22 23:09:15 +0000279{
280 return new RABasic();
281}