blob: 72230d4b0c5cd52f911c3d76afba84b04d4f8d92 [file] [log] [blame]
Evan Chengb1290a62008-10-02 18:29:27 +00001//===------ RegAllocPBQP.cpp ---- PBQP Register Allocator -------*- C++ -*-===//
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//===----------------------------------------------------------------------===//
Misha Brukman2a835f92009-01-08 15:50:22 +00009//
Evan Chengb1290a62008-10-02 18:29:27 +000010// This file contains a Partitioned Boolean Quadratic Programming (PBQP) based
11// register allocator for LLVM. This allocator works by constructing a PBQP
12// problem representing the register allocation problem under consideration,
13// solving this using a PBQP solver, and mapping the solution back to a
14// register assignment. If any variables are selected for spilling then spill
Misha Brukman2a835f92009-01-08 15:50:22 +000015// code is inserted and the process repeated.
Evan Chengb1290a62008-10-02 18:29:27 +000016//
17// The PBQP solver (pbqp.c) provided for this allocator uses a heuristic tuned
18// for register allocation. For more information on PBQP for register
Misha Brukmance07e992009-01-08 16:40:25 +000019// allocation, see the following papers:
Evan Chengb1290a62008-10-02 18:29:27 +000020//
21// (1) Hames, L. and Scholz, B. 2006. Nearly optimal register allocation with
22// PBQP. In Proceedings of the 7th Joint Modular Languages Conference
23// (JMLC'06). LNCS, vol. 4228. Springer, New York, NY, USA. 346-361.
24//
25// (2) Scholz, B., Eckstein, E. 2002. Register allocation for irregular
26// architectures. In Proceedings of the Joint Conference on Languages,
27// Compilers and Tools for Embedded Systems (LCTES'02), ACM Press, New York,
28// NY, USA, 139-148.
Misha Brukman2a835f92009-01-08 15:50:22 +000029//
Evan Chengb1290a62008-10-02 18:29:27 +000030//===----------------------------------------------------------------------===//
31
Evan Chengb1290a62008-10-02 18:29:27 +000032#define DEBUG_TYPE "regalloc"
33
Lang Hames54cc2ef2010-07-19 15:22:28 +000034#include "RenderMachineFunction.h"
Lang Hames12f35c52010-07-18 00:57:59 +000035#include "Splitter.h"
Evan Chengb1290a62008-10-02 18:29:27 +000036#include "VirtRegMap.h"
Lang Hames87e3bca2009-05-06 02:36:21 +000037#include "VirtRegRewriter.h"
Rafael Espindolafdf16ca2011-06-26 21:41:06 +000038#include "RegisterCoalescer.h"
Lang Hamesa937f222009-12-14 06:49:42 +000039#include "llvm/CodeGen/CalcSpillWeights.h"
Evan Chengb1290a62008-10-02 18:29:27 +000040#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Lang Hames27601ef2008-11-16 12:12:54 +000041#include "llvm/CodeGen/LiveStackAnalysis.h"
Lang Hameseb6c8f52010-09-18 09:07:10 +000042#include "llvm/CodeGen/RegAllocPBQP.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000043#include "llvm/CodeGen/MachineFunctionPass.h"
Evan Chengb1290a62008-10-02 18:29:27 +000044#include "llvm/CodeGen/MachineLoopInfo.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000045#include "llvm/CodeGen/MachineRegisterInfo.h"
Lang Hameseb6c8f52010-09-18 09:07:10 +000046#include "llvm/CodeGen/PBQP/HeuristicSolver.h"
47#include "llvm/CodeGen/PBQP/Graph.h"
48#include "llvm/CodeGen/PBQP/Heuristics/Briggs.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000049#include "llvm/CodeGen/RegAllocRegistry.h"
Evan Chengb1290a62008-10-02 18:29:27 +000050#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000051#include "llvm/Support/raw_ostream.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000052#include "llvm/Target/TargetInstrInfo.h"
53#include "llvm/Target/TargetMachine.h"
54#include <limits>
Misha Brukman2a835f92009-01-08 15:50:22 +000055#include <memory>
Evan Chengb1290a62008-10-02 18:29:27 +000056#include <set>
57#include <vector>
Evan Chengb1290a62008-10-02 18:29:27 +000058
Lang Hamesf70e7cc2010-09-23 04:28:54 +000059using namespace llvm;
Lang Hameseb6c8f52010-09-18 09:07:10 +000060
Evan Chengb1290a62008-10-02 18:29:27 +000061static RegisterRegAlloc
Duncan Sands1aecd152010-02-18 14:10:41 +000062registerPBQPRepAlloc("pbqp", "PBQP register allocator",
Lang Hamesf70e7cc2010-09-23 04:28:54 +000063 createDefaultPBQPRegisterAllocator);
Evan Chengb1290a62008-10-02 18:29:27 +000064
Lang Hames8481e3b2009-08-19 01:36:14 +000065static cl::opt<bool>
66pbqpCoalescing("pbqp-coalescing",
Lang Hames030c4bf2010-01-26 04:49:58 +000067 cl::desc("Attempt coalescing during PBQP register allocation."),
68 cl::init(false), cl::Hidden);
Lang Hames8481e3b2009-08-19 01:36:14 +000069
Lang Hames12f35c52010-07-18 00:57:59 +000070static cl::opt<bool>
71pbqpPreSplitting("pbqp-pre-splitting",
Lang Hamesf70e7cc2010-09-23 04:28:54 +000072 cl::desc("Pre-split before PBQP register allocation."),
Lang Hames12f35c52010-07-18 00:57:59 +000073 cl::init(false), cl::Hidden);
74
Lang Hamesf70e7cc2010-09-23 04:28:54 +000075namespace {
76
77///
78/// PBQP based allocators solve the register allocation problem by mapping
79/// register allocation problems to Partitioned Boolean Quadratic
80/// Programming problems.
81class RegAllocPBQP : public MachineFunctionPass {
82public:
83
84 static char ID;
85
86 /// Construct a PBQP register allocator.
Lang Hames8d857662011-06-17 07:09:01 +000087 RegAllocPBQP(std::auto_ptr<PBQPBuilder> b, char *cPassID=0)
88 : MachineFunctionPass(ID), builder(b), customPassID(cPassID) {
Owen Anderson081c34b2010-10-19 17:21:58 +000089 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
90 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +000091 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Owen Anderson081c34b2010-10-19 17:21:58 +000092 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
93 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
94 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
95 initializeLoopSplitterPass(*PassRegistry::getPassRegistry());
96 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
97 initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry());
98 }
Lang Hamesf70e7cc2010-09-23 04:28:54 +000099
100 /// Return the pass name.
101 virtual const char* getPassName() const {
102 return "PBQP Register Allocator";
103 }
104
105 /// PBQP analysis usage.
106 virtual void getAnalysisUsage(AnalysisUsage &au) const;
107
108 /// Perform register allocation
109 virtual bool runOnMachineFunction(MachineFunction &MF);
110
111private:
112
113 typedef std::map<const LiveInterval*, unsigned> LI2NodeMap;
114 typedef std::vector<const LiveInterval*> Node2LIMap;
115 typedef std::vector<unsigned> AllowedSet;
116 typedef std::vector<AllowedSet> AllowedSetMap;
117 typedef std::pair<unsigned, unsigned> RegPair;
118 typedef std::map<RegPair, PBQP::PBQPNum> CoalesceMap;
119 typedef std::vector<PBQP::Graph::NodeItr> NodeVector;
120 typedef std::set<unsigned> RegSet;
121
122
123 std::auto_ptr<PBQPBuilder> builder;
124
Lang Hames8d857662011-06-17 07:09:01 +0000125 char *customPassID;
126
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000127 MachineFunction *mf;
128 const TargetMachine *tm;
129 const TargetRegisterInfo *tri;
130 const TargetInstrInfo *tii;
131 const MachineLoopInfo *loopInfo;
132 MachineRegisterInfo *mri;
133 RenderMachineFunction *rmf;
134
135 LiveIntervals *lis;
136 LiveStacks *lss;
137 VirtRegMap *vrm;
138
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000139 RegSet vregsToAlloc, emptyIntervalVRegs;
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000140
141 /// \brief Finds the initial set of vreg intervals to allocate.
142 void findVRegIntervalsToAlloc();
143
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000144 /// \brief Adds a stack interval if the given live interval has been
145 /// spilled. Used to support stack slot coloring.
146 void addStackInterval(const LiveInterval *spilled,MachineRegisterInfo* mri);
147
148 /// \brief Given a solved PBQP problem maps this solution back to a register
149 /// assignment.
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000150 bool mapPBQPToRegAlloc(const PBQPRAProblem &problem,
151 const PBQP::Solution &solution);
152
153 /// \brief Postprocessing before final spilling. Sets basic block "live in"
154 /// variables.
155 void finalizeAlloc() const;
156
157};
158
Lang Hameseb6c8f52010-09-18 09:07:10 +0000159char RegAllocPBQP::ID = 0;
Evan Chengb1290a62008-10-02 18:29:27 +0000160
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000161} // End anonymous namespace.
162
Lang Hameseb6c8f52010-09-18 09:07:10 +0000163unsigned PBQPRAProblem::getVRegForNode(PBQP::Graph::ConstNodeItr node) const {
164 Node2VReg::const_iterator vregItr = node2VReg.find(node);
165 assert(vregItr != node2VReg.end() && "No vreg for node.");
166 return vregItr->second;
167}
Evan Chengb1290a62008-10-02 18:29:27 +0000168
Lang Hameseb6c8f52010-09-18 09:07:10 +0000169PBQP::Graph::NodeItr PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
170 VReg2Node::const_iterator nodeItr = vreg2Node.find(vreg);
171 assert(nodeItr != vreg2Node.end() && "No node for vreg.");
172 return nodeItr->second;
173
174}
Daniel Dunbara279bc32009-09-20 02:20:51 +0000175
Lang Hameseb6c8f52010-09-18 09:07:10 +0000176const PBQPRAProblem::AllowedSet&
177 PBQPRAProblem::getAllowedSet(unsigned vreg) const {
178 AllowedSetMap::const_iterator allowedSetItr = allowedSets.find(vreg);
179 assert(allowedSetItr != allowedSets.end() && "No pregs for vreg.");
180 const AllowedSet &allowedSet = allowedSetItr->second;
181 return allowedSet;
182}
Evan Chengb1290a62008-10-02 18:29:27 +0000183
Lang Hameseb6c8f52010-09-18 09:07:10 +0000184unsigned PBQPRAProblem::getPRegForOption(unsigned vreg, unsigned option) const {
185 assert(isPRegOption(vreg, option) && "Not a preg option.");
186
187 const AllowedSet& allowedSet = getAllowedSet(vreg);
188 assert(option <= allowedSet.size() && "Option outside allowed set.");
189 return allowedSet[option - 1];
190}
191
Lang Hamese9c93562010-09-21 13:19:36 +0000192std::auto_ptr<PBQPRAProblem> PBQPBuilder::build(MachineFunction *mf,
193 const LiveIntervals *lis,
194 const MachineLoopInfo *loopInfo,
195 const RegSet &vregs) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000196
197 typedef std::vector<const LiveInterval*> LIVector;
198
199 MachineRegisterInfo *mri = &mf->getRegInfo();
200 const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo();
201
202 std::auto_ptr<PBQPRAProblem> p(new PBQPRAProblem());
203 PBQP::Graph &g = p->getGraph();
204 RegSet pregs;
205
206 // Collect the set of preg intervals, record that they're used in the MF.
207 for (LiveIntervals::const_iterator itr = lis->begin(), end = lis->end();
208 itr != end; ++itr) {
209 if (TargetRegisterInfo::isPhysicalRegister(itr->first)) {
210 pregs.insert(itr->first);
211 mri->setPhysRegUsed(itr->first);
Evan Chengb1290a62008-10-02 18:29:27 +0000212 }
Lang Hameseb6c8f52010-09-18 09:07:10 +0000213 }
Evan Chengb1290a62008-10-02 18:29:27 +0000214
Lang Hameseb6c8f52010-09-18 09:07:10 +0000215 BitVector reservedRegs = tri->getReservedRegs(*mf);
Evan Chengb1290a62008-10-02 18:29:27 +0000216
Lang Hameseb6c8f52010-09-18 09:07:10 +0000217 // Iterate over vregs.
218 for (RegSet::const_iterator vregItr = vregs.begin(), vregEnd = vregs.end();
219 vregItr != vregEnd; ++vregItr) {
220 unsigned vreg = *vregItr;
221 const TargetRegisterClass *trc = mri->getRegClass(vreg);
222 const LiveInterval *vregLI = &lis->getInterval(vreg);
Evan Chengb1290a62008-10-02 18:29:27 +0000223
Lang Hameseb6c8f52010-09-18 09:07:10 +0000224 // Compute an initial allowed set for the current vreg.
225 typedef std::vector<unsigned> VRAllowed;
226 VRAllowed vrAllowed;
Jakob Stoklund Olesen714c0eb2011-06-16 20:37:45 +0000227 ArrayRef<unsigned> rawOrder = trc->getRawAllocationOrder(*mf);
228 for (unsigned i = 0; i != rawOrder.size(); ++i) {
229 unsigned preg = rawOrder[i];
Lang Hameseb6c8f52010-09-18 09:07:10 +0000230 if (!reservedRegs.test(preg)) {
231 vrAllowed.push_back(preg);
Lang Hamesd0f6f012010-07-17 06:31:41 +0000232 }
Lang Hameseb6c8f52010-09-18 09:07:10 +0000233 }
Lang Hamesd0f6f012010-07-17 06:31:41 +0000234
Lang Hameseb6c8f52010-09-18 09:07:10 +0000235 // Remove any physical registers which overlap.
236 for (RegSet::const_iterator pregItr = pregs.begin(),
237 pregEnd = pregs.end();
238 pregItr != pregEnd; ++pregItr) {
239 unsigned preg = *pregItr;
240 const LiveInterval *pregLI = &lis->getInterval(preg);
Lang Hames27601ef2008-11-16 12:12:54 +0000241
Lang Hames5e77f4b2010-11-12 05:47:21 +0000242 if (pregLI->empty()) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000243 continue;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000244 }
Evan Chengb1290a62008-10-02 18:29:27 +0000245
Lang Hames5e77f4b2010-11-12 05:47:21 +0000246 if (!vregLI->overlaps(*pregLI)) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000247 continue;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000248 }
Lang Hames030c4bf2010-01-26 04:49:58 +0000249
Lang Hameseb6c8f52010-09-18 09:07:10 +0000250 // Remove the register from the allowed set.
251 VRAllowed::iterator eraseItr =
252 std::find(vrAllowed.begin(), vrAllowed.end(), preg);
Evan Chengb1290a62008-10-02 18:29:27 +0000253
Lang Hameseb6c8f52010-09-18 09:07:10 +0000254 if (eraseItr != vrAllowed.end()) {
255 vrAllowed.erase(eraseItr);
256 }
Evan Chengb1290a62008-10-02 18:29:27 +0000257
Lang Hameseb6c8f52010-09-18 09:07:10 +0000258 // Also remove any aliases.
259 const unsigned *aliasItr = tri->getAliasSet(preg);
260 if (aliasItr != 0) {
261 for (; *aliasItr != 0; ++aliasItr) {
262 VRAllowed::iterator eraseItr =
263 std::find(vrAllowed.begin(), vrAllowed.end(), *aliasItr);
Evan Chengb1290a62008-10-02 18:29:27 +0000264
Lang Hameseb6c8f52010-09-18 09:07:10 +0000265 if (eraseItr != vrAllowed.end()) {
266 vrAllowed.erase(eraseItr);
267 }
268 }
269 }
270 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000271
Lang Hameseb6c8f52010-09-18 09:07:10 +0000272 // Construct the node.
273 PBQP::Graph::NodeItr node =
274 g.addNode(PBQP::Vector(vrAllowed.size() + 1, 0));
Evan Chengb1290a62008-10-02 18:29:27 +0000275
Lang Hameseb6c8f52010-09-18 09:07:10 +0000276 // Record the mapping and allowed set in the problem.
277 p->recordVReg(vreg, node, vrAllowed.begin(), vrAllowed.end());
Evan Chengb1290a62008-10-02 18:29:27 +0000278
Lang Hameseb6c8f52010-09-18 09:07:10 +0000279 PBQP::PBQPNum spillCost = (vregLI->weight != 0.0) ?
280 vregLI->weight : std::numeric_limits<PBQP::PBQPNum>::min();
Evan Chengb1290a62008-10-02 18:29:27 +0000281
Lang Hameseb6c8f52010-09-18 09:07:10 +0000282 addSpillCosts(g.getNodeCosts(node), spillCost);
283 }
Evan Chengb1290a62008-10-02 18:29:27 +0000284
Lang Hames481630d2010-09-18 09:49:08 +0000285 for (RegSet::const_iterator vr1Itr = vregs.begin(), vrEnd = vregs.end();
Lang Hameseb6c8f52010-09-18 09:07:10 +0000286 vr1Itr != vrEnd; ++vr1Itr) {
287 unsigned vr1 = *vr1Itr;
288 const LiveInterval &l1 = lis->getInterval(vr1);
289 const PBQPRAProblem::AllowedSet &vr1Allowed = p->getAllowedSet(vr1);
Evan Chengb1290a62008-10-02 18:29:27 +0000290
Benjamin Kramer9e8d1f92010-09-18 14:41:26 +0000291 for (RegSet::const_iterator vr2Itr = llvm::next(vr1Itr);
Lang Hameseb6c8f52010-09-18 09:07:10 +0000292 vr2Itr != vrEnd; ++vr2Itr) {
293 unsigned vr2 = *vr2Itr;
294 const LiveInterval &l2 = lis->getInterval(vr2);
295 const PBQPRAProblem::AllowedSet &vr2Allowed = p->getAllowedSet(vr2);
Evan Chengb1290a62008-10-02 18:29:27 +0000296
Lang Hameseb6c8f52010-09-18 09:07:10 +0000297 assert(!l2.empty() && "Empty interval in vreg set?");
298 if (l1.overlaps(l2)) {
299 PBQP::Graph::EdgeItr edge =
300 g.addEdge(p->getNodeForVReg(vr1), p->getNodeForVReg(vr2),
301 PBQP::Matrix(vr1Allowed.size()+1, vr2Allowed.size()+1, 0));
Lang Hames27601ef2008-11-16 12:12:54 +0000302
Lang Hameseb6c8f52010-09-18 09:07:10 +0000303 addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
304 }
305 }
306 }
Evan Chengb1290a62008-10-02 18:29:27 +0000307
Lang Hameseb6c8f52010-09-18 09:07:10 +0000308 return p;
309}
Lang Hames27601ef2008-11-16 12:12:54 +0000310
Lang Hameseb6c8f52010-09-18 09:07:10 +0000311void PBQPBuilder::addSpillCosts(PBQP::Vector &costVec,
312 PBQP::PBQPNum spillCost) {
313 costVec[0] = spillCost;
314}
Evan Chengb1290a62008-10-02 18:29:27 +0000315
Lang Hamese9c93562010-09-21 13:19:36 +0000316void PBQPBuilder::addInterferenceCosts(
317 PBQP::Matrix &costMat,
318 const PBQPRAProblem::AllowedSet &vr1Allowed,
319 const PBQPRAProblem::AllowedSet &vr2Allowed,
320 const TargetRegisterInfo *tri) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000321 assert(costMat.getRows() == vr1Allowed.size() + 1 && "Matrix height mismatch.");
322 assert(costMat.getCols() == vr2Allowed.size() + 1 && "Matrix width mismatch.");
323
Lang Hames5e77f4b2010-11-12 05:47:21 +0000324 for (unsigned i = 0; i != vr1Allowed.size(); ++i) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000325 unsigned preg1 = vr1Allowed[i];
326
Lang Hames5e77f4b2010-11-12 05:47:21 +0000327 for (unsigned j = 0; j != vr2Allowed.size(); ++j) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000328 unsigned preg2 = vr2Allowed[j];
329
330 if (tri->regsOverlap(preg1, preg2)) {
331 costMat[i + 1][j + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity();
332 }
333 }
334 }
Evan Chengb1290a62008-10-02 18:29:27 +0000335}
336
Lang Hamese9c93562010-09-21 13:19:36 +0000337std::auto_ptr<PBQPRAProblem> PBQPBuilderWithCoalescing::build(
338 MachineFunction *mf,
339 const LiveIntervals *lis,
340 const MachineLoopInfo *loopInfo,
341 const RegSet &vregs) {
342
343 std::auto_ptr<PBQPRAProblem> p = PBQPBuilder::build(mf, lis, loopInfo, vregs);
344 PBQP::Graph &g = p->getGraph();
345
346 const TargetMachine &tm = mf->getTarget();
347 CoalescerPair cp(*tm.getInstrInfo(), *tm.getRegisterInfo());
348
349 // Scan the machine function and add a coalescing cost whenever CoalescerPair
350 // gives the Ok.
351 for (MachineFunction::const_iterator mbbItr = mf->begin(),
352 mbbEnd = mf->end();
353 mbbItr != mbbEnd; ++mbbItr) {
354 const MachineBasicBlock *mbb = &*mbbItr;
355
356 for (MachineBasicBlock::const_iterator miItr = mbb->begin(),
357 miEnd = mbb->end();
358 miItr != miEnd; ++miItr) {
359 const MachineInstr *mi = &*miItr;
360
Lang Hames5e77f4b2010-11-12 05:47:21 +0000361 if (!cp.setRegisters(mi)) {
Lang Hamese9c93562010-09-21 13:19:36 +0000362 continue; // Not coalescable.
Lang Hames5e77f4b2010-11-12 05:47:21 +0000363 }
Lang Hamese9c93562010-09-21 13:19:36 +0000364
Lang Hames5e77f4b2010-11-12 05:47:21 +0000365 if (cp.getSrcReg() == cp.getDstReg()) {
Lang Hamese9c93562010-09-21 13:19:36 +0000366 continue; // Already coalesced.
Lang Hames5e77f4b2010-11-12 05:47:21 +0000367 }
Lang Hamese9c93562010-09-21 13:19:36 +0000368
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000369 unsigned dst = cp.getDstReg(),
370 src = cp.getSrcReg();
Lang Hamese9c93562010-09-21 13:19:36 +0000371
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000372 const float copyFactor = 0.5; // Cost of copy relative to load. Current
373 // value plucked randomly out of the air.
374
375 PBQP::PBQPNum cBenefit =
376 copyFactor * LiveIntervals::getSpillWeight(false, true,
377 loopInfo->getLoopDepth(mbb));
Lang Hamese9c93562010-09-21 13:19:36 +0000378
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000379 if (cp.isPhys()) {
Lang Hames5e77f4b2010-11-12 05:47:21 +0000380 if (!lis->isAllocatable(dst)) {
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000381 continue;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000382 }
Lang Hamese9c93562010-09-21 13:19:36 +0000383
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000384 const PBQPRAProblem::AllowedSet &allowed = p->getAllowedSet(src);
385 unsigned pregOpt = 0;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000386 while (pregOpt < allowed.size() && allowed[pregOpt] != dst) {
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000387 ++pregOpt;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000388 }
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000389 if (pregOpt < allowed.size()) {
390 ++pregOpt; // +1 to account for spill option.
391 PBQP::Graph::NodeItr node = p->getNodeForVReg(src);
392 addPhysRegCoalesce(g.getNodeCosts(node), pregOpt, cBenefit);
Lang Hamese9c93562010-09-21 13:19:36 +0000393 }
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000394 } else {
395 const PBQPRAProblem::AllowedSet *allowed1 = &p->getAllowedSet(dst);
396 const PBQPRAProblem::AllowedSet *allowed2 = &p->getAllowedSet(src);
397 PBQP::Graph::NodeItr node1 = p->getNodeForVReg(dst);
398 PBQP::Graph::NodeItr node2 = p->getNodeForVReg(src);
399 PBQP::Graph::EdgeItr edge = g.findEdge(node1, node2);
400 if (edge == g.edgesEnd()) {
401 edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
402 allowed2->size() + 1,
403 0));
404 } else {
405 if (g.getEdgeNode1(edge) == node2) {
406 std::swap(node1, node2);
407 std::swap(allowed1, allowed2);
408 }
409 }
410
411 addVirtRegCoalesce(g.getEdgeCosts(edge), *allowed1, *allowed2,
412 cBenefit);
Lang Hamese9c93562010-09-21 13:19:36 +0000413 }
414 }
415 }
416
417 return p;
418}
419
Lang Hamese9c93562010-09-21 13:19:36 +0000420void PBQPBuilderWithCoalescing::addPhysRegCoalesce(PBQP::Vector &costVec,
421 unsigned pregOption,
422 PBQP::PBQPNum benefit) {
423 costVec[pregOption] += -benefit;
424}
425
426void PBQPBuilderWithCoalescing::addVirtRegCoalesce(
427 PBQP::Matrix &costMat,
428 const PBQPRAProblem::AllowedSet &vr1Allowed,
429 const PBQPRAProblem::AllowedSet &vr2Allowed,
430 PBQP::PBQPNum benefit) {
431
432 assert(costMat.getRows() == vr1Allowed.size() + 1 && "Size mismatch.");
433 assert(costMat.getCols() == vr2Allowed.size() + 1 && "Size mismatch.");
434
Lang Hames5e77f4b2010-11-12 05:47:21 +0000435 for (unsigned i = 0; i != vr1Allowed.size(); ++i) {
Lang Hamese9c93562010-09-21 13:19:36 +0000436 unsigned preg1 = vr1Allowed[i];
Lang Hames5e77f4b2010-11-12 05:47:21 +0000437 for (unsigned j = 0; j != vr2Allowed.size(); ++j) {
Lang Hamese9c93562010-09-21 13:19:36 +0000438 unsigned preg2 = vr2Allowed[j];
439
440 if (preg1 == preg2) {
441 costMat[i + 1][j + 1] += -benefit;
442 }
443 }
444 }
445}
Evan Chengb1290a62008-10-02 18:29:27 +0000446
Lang Hameseb6c8f52010-09-18 09:07:10 +0000447
448void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
449 au.addRequired<SlotIndexes>();
450 au.addPreserved<SlotIndexes>();
451 au.addRequired<LiveIntervals>();
452 //au.addRequiredID(SplitCriticalEdgesID);
453 au.addRequired<RegisterCoalescer>();
Lang Hames8d857662011-06-17 07:09:01 +0000454 if (customPassID)
455 au.addRequiredID(*customPassID);
Lang Hameseb6c8f52010-09-18 09:07:10 +0000456 au.addRequired<CalculateSpillWeights>();
457 au.addRequired<LiveStacks>();
458 au.addPreserved<LiveStacks>();
459 au.addRequired<MachineLoopInfo>();
460 au.addPreserved<MachineLoopInfo>();
461 if (pbqpPreSplitting)
462 au.addRequired<LoopSplitter>();
463 au.addRequired<VirtRegMap>();
464 au.addRequired<RenderMachineFunction>();
465 MachineFunctionPass::getAnalysisUsage(au);
466}
467
Lang Hameseb6c8f52010-09-18 09:07:10 +0000468void RegAllocPBQP::findVRegIntervalsToAlloc() {
Lang Hames27601ef2008-11-16 12:12:54 +0000469
470 // Iterate over all live ranges.
471 for (LiveIntervals::iterator itr = lis->begin(), end = lis->end();
472 itr != end; ++itr) {
473
474 // Ignore physical ones.
475 if (TargetRegisterInfo::isPhysicalRegister(itr->first))
476 continue;
477
478 LiveInterval *li = itr->second;
479
480 // If this live interval is non-empty we will use pbqp to allocate it.
481 // Empty intervals we allocate in a simple post-processing stage in
482 // finalizeAlloc.
483 if (!li->empty()) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000484 vregsToAlloc.insert(li->reg);
Lang Hames5e77f4b2010-11-12 05:47:21 +0000485 } else {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000486 emptyIntervalVRegs.insert(li->reg);
Lang Hames27601ef2008-11-16 12:12:54 +0000487 }
488 }
Evan Chengb1290a62008-10-02 18:29:27 +0000489}
490
Lang Hameseb6c8f52010-09-18 09:07:10 +0000491void RegAllocPBQP::addStackInterval(const LiveInterval *spilled,
Evan Chengc781a242009-05-03 18:32:42 +0000492 MachineRegisterInfo* mri) {
Lang Hames27601ef2008-11-16 12:12:54 +0000493 int stackSlot = vrm->getStackSlot(spilled->reg);
Misha Brukman2a835f92009-01-08 15:50:22 +0000494
Lang Hames5e77f4b2010-11-12 05:47:21 +0000495 if (stackSlot == VirtRegMap::NO_STACK_SLOT) {
Lang Hames27601ef2008-11-16 12:12:54 +0000496 return;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000497 }
Lang Hames27601ef2008-11-16 12:12:54 +0000498
Evan Chengc781a242009-05-03 18:32:42 +0000499 const TargetRegisterClass *RC = mri->getRegClass(spilled->reg);
500 LiveInterval &stackInterval = lss->getOrCreateInterval(stackSlot, RC);
Lang Hames27601ef2008-11-16 12:12:54 +0000501
502 VNInfo *vni;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000503 if (stackInterval.getNumValNums() != 0) {
Lang Hames27601ef2008-11-16 12:12:54 +0000504 vni = stackInterval.getValNumInfo(0);
Lang Hames5e77f4b2010-11-12 05:47:21 +0000505 } else {
Lang Hames86511252009-09-04 20:41:11 +0000506 vni = stackInterval.getNextValue(
Lang Hames6e2968c2010-09-25 12:04:16 +0000507 SlotIndex(), 0, lss->getVNInfoAllocator());
Lang Hames5e77f4b2010-11-12 05:47:21 +0000508 }
Lang Hames27601ef2008-11-16 12:12:54 +0000509
510 LiveInterval &rhsInterval = lis->getInterval(spilled->reg);
511 stackInterval.MergeRangesInAsValue(rhsInterval, vni);
512}
513
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000514bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQPRAProblem &problem,
515 const PBQP::Solution &solution) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000516 // Set to true if we have any spills
517 bool anotherRoundNeeded = false;
518
519 // Clear the existing allocation.
520 vrm->clearAllVirt();
521
522 const PBQP::Graph &g = problem.getGraph();
523 // Iterate over the nodes mapping the PBQP solution to a register
524 // assignment.
525 for (PBQP::Graph::ConstNodeItr node = g.nodesBegin(),
526 nodeEnd = g.nodesEnd();
527 node != nodeEnd; ++node) {
528 unsigned vreg = problem.getVRegForNode(node);
529 unsigned alloc = solution.getSelection(node);
530
531 if (problem.isPRegOption(vreg, alloc)) {
532 unsigned preg = problem.getPRegForOption(vreg, alloc);
533 DEBUG(dbgs() << "VREG " << vreg << " -> " << tri->getName(preg) << "\n");
534 assert(preg != 0 && "Invalid preg selected.");
535 vrm->assignVirt2Phys(vreg, preg);
536 } else if (problem.isSpillOption(vreg, alloc)) {
537 vregsToAlloc.erase(vreg);
538 const LiveInterval* spillInterval = &lis->getInterval(vreg);
539 double oldWeight = spillInterval->weight;
Lang Hameseb6c8f52010-09-18 09:07:10 +0000540 rmf->rememberUseDefs(spillInterval);
541 std::vector<LiveInterval*> newSpills =
Jakob Stoklund Olesen38f6bd02011-03-10 01:21:58 +0000542 lis->addIntervalsForSpills(*spillInterval, 0, loopInfo, *vrm);
Lang Hameseb6c8f52010-09-18 09:07:10 +0000543 addStackInterval(spillInterval, mri);
544 rmf->rememberSpills(spillInterval, newSpills);
545
546 (void) oldWeight;
547 DEBUG(dbgs() << "VREG " << vreg << " -> SPILLED (Cost: "
548 << oldWeight << ", New vregs: ");
549
550 // Copy any newly inserted live intervals into the list of regs to
551 // allocate.
552 for (std::vector<LiveInterval*>::const_iterator
553 itr = newSpills.begin(), end = newSpills.end();
554 itr != end; ++itr) {
555 assert(!(*itr)->empty() && "Empty spill range.");
556 DEBUG(dbgs() << (*itr)->reg << " ");
557 vregsToAlloc.insert((*itr)->reg);
558 }
559
560 DEBUG(dbgs() << ")\n");
561
562 // We need another round if spill intervals were added.
563 anotherRoundNeeded |= !newSpills.empty();
564 } else {
565 assert(false && "Unknown allocation option.");
566 }
567 }
568
569 return !anotherRoundNeeded;
570}
571
572
573void RegAllocPBQP::finalizeAlloc() const {
Lang Hames27601ef2008-11-16 12:12:54 +0000574 typedef LiveIntervals::iterator LIIterator;
575 typedef LiveInterval::Ranges::const_iterator LRIterator;
576
577 // First allocate registers for the empty intervals.
Lang Hameseb6c8f52010-09-18 09:07:10 +0000578 for (RegSet::const_iterator
579 itr = emptyIntervalVRegs.begin(), end = emptyIntervalVRegs.end();
Lang Hames27601ef2008-11-16 12:12:54 +0000580 itr != end; ++itr) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000581 LiveInterval *li = &lis->getInterval(*itr);
Lang Hames27601ef2008-11-16 12:12:54 +0000582
Evan Cheng90f95f82009-06-14 20:22:55 +0000583 unsigned physReg = vrm->getRegAllocPref(li->reg);
Lang Hames6699fb22009-08-06 23:32:48 +0000584
Lang Hames27601ef2008-11-16 12:12:54 +0000585 if (physReg == 0) {
586 const TargetRegisterClass *liRC = mri->getRegClass(li->reg);
Jakob Stoklund Olesen714c0eb2011-06-16 20:37:45 +0000587 physReg = liRC->getRawAllocationOrder(*mf).front();
Lang Hames27601ef2008-11-16 12:12:54 +0000588 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000589
590 vrm->assignVirt2Phys(li->reg, physReg);
Lang Hames27601ef2008-11-16 12:12:54 +0000591 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000592
Lang Hames27601ef2008-11-16 12:12:54 +0000593 // Finally iterate over the basic blocks to compute and set the live-in sets.
594 SmallVector<MachineBasicBlock*, 8> liveInMBBs;
595 MachineBasicBlock *entryMBB = &*mf->begin();
596
597 for (LIIterator liItr = lis->begin(), liEnd = lis->end();
598 liItr != liEnd; ++liItr) {
599
600 const LiveInterval *li = liItr->second;
601 unsigned reg = 0;
Misha Brukman2a835f92009-01-08 15:50:22 +0000602
Lang Hames27601ef2008-11-16 12:12:54 +0000603 // Get the physical register for this interval
604 if (TargetRegisterInfo::isPhysicalRegister(li->reg)) {
605 reg = li->reg;
Lang Hames5e77f4b2010-11-12 05:47:21 +0000606 } else if (vrm->isAssignedReg(li->reg)) {
Lang Hames27601ef2008-11-16 12:12:54 +0000607 reg = vrm->getPhys(li->reg);
Lang Hames5e77f4b2010-11-12 05:47:21 +0000608 } else {
Lang Hames27601ef2008-11-16 12:12:54 +0000609 // Ranges which are assigned a stack slot only are ignored.
610 continue;
611 }
612
Lang Hamesb0e519f2009-05-17 23:50:36 +0000613 if (reg == 0) {
Lang Hames6699fb22009-08-06 23:32:48 +0000614 // Filter out zero regs - they're for intervals that were spilled.
Lang Hamesb0e519f2009-05-17 23:50:36 +0000615 continue;
616 }
617
Lang Hames27601ef2008-11-16 12:12:54 +0000618 // Iterate over the ranges of the current interval...
619 for (LRIterator lrItr = li->begin(), lrEnd = li->end();
620 lrItr != lrEnd; ++lrItr) {
Misha Brukman2a835f92009-01-08 15:50:22 +0000621
Lang Hames27601ef2008-11-16 12:12:54 +0000622 // Find the set of basic blocks which this range is live into...
623 if (lis->findLiveInMBBs(lrItr->start, lrItr->end, liveInMBBs)) {
624 // And add the physreg for this interval to their live-in sets.
Lang Hames5e77f4b2010-11-12 05:47:21 +0000625 for (unsigned i = 0; i != liveInMBBs.size(); ++i) {
Lang Hames27601ef2008-11-16 12:12:54 +0000626 if (liveInMBBs[i] != entryMBB) {
627 if (!liveInMBBs[i]->isLiveIn(reg)) {
628 liveInMBBs[i]->addLiveIn(reg);
629 }
630 }
631 }
632 liveInMBBs.clear();
633 }
634 }
635 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000636
Lang Hames27601ef2008-11-16 12:12:54 +0000637}
638
Lang Hameseb6c8f52010-09-18 09:07:10 +0000639bool RegAllocPBQP::runOnMachineFunction(MachineFunction &MF) {
Lang Hames27601ef2008-11-16 12:12:54 +0000640
Evan Chengb1290a62008-10-02 18:29:27 +0000641 mf = &MF;
642 tm = &mf->getTarget();
643 tri = tm->getRegisterInfo();
Lang Hames27601ef2008-11-16 12:12:54 +0000644 tii = tm->getInstrInfo();
Lang Hames233a60e2009-11-03 23:52:08 +0000645 mri = &mf->getRegInfo();
Evan Chengb1290a62008-10-02 18:29:27 +0000646
Lang Hames27601ef2008-11-16 12:12:54 +0000647 lis = &getAnalysis<LiveIntervals>();
648 lss = &getAnalysis<LiveStacks>();
Evan Chengb1290a62008-10-02 18:29:27 +0000649 loopInfo = &getAnalysis<MachineLoopInfo>();
Lang Hames33198392010-09-02 08:27:00 +0000650 rmf = &getAnalysis<RenderMachineFunction>();
Evan Chengb1290a62008-10-02 18:29:27 +0000651
Owen Anderson49c8aa02009-03-13 05:55:11 +0000652 vrm = &getAnalysis<VirtRegMap>();
Evan Chengb1290a62008-10-02 18:29:27 +0000653
Lang Hames54cc2ef2010-07-19 15:22:28 +0000654
Lang Hames030c4bf2010-01-26 04:49:58 +0000655 DEBUG(dbgs() << "PBQP Register Allocating for " << mf->getFunction()->getName() << "\n");
Lang Hames27601ef2008-11-16 12:12:54 +0000656
Evan Chengb1290a62008-10-02 18:29:27 +0000657 // Allocator main loop:
Misha Brukman2a835f92009-01-08 15:50:22 +0000658 //
Evan Chengb1290a62008-10-02 18:29:27 +0000659 // * Map current regalloc problem to a PBQP problem
660 // * Solve the PBQP problem
661 // * Map the solution back to a register allocation
662 // * Spill if necessary
Misha Brukman2a835f92009-01-08 15:50:22 +0000663 //
Evan Chengb1290a62008-10-02 18:29:27 +0000664 // This process is continued till no more spills are generated.
665
Lang Hames27601ef2008-11-16 12:12:54 +0000666 // Find the vreg intervals in need of allocation.
667 findVRegIntervalsToAlloc();
Misha Brukman2a835f92009-01-08 15:50:22 +0000668
Lang Hames27601ef2008-11-16 12:12:54 +0000669 // If there are non-empty intervals allocate them using pbqp.
Lang Hameseb6c8f52010-09-18 09:07:10 +0000670 if (!vregsToAlloc.empty()) {
Evan Chengb1290a62008-10-02 18:29:27 +0000671
Lang Hames27601ef2008-11-16 12:12:54 +0000672 bool pbqpAllocComplete = false;
673 unsigned round = 0;
674
Lang Hamesab62b7e2010-10-04 12:13:07 +0000675 while (!pbqpAllocComplete) {
676 DEBUG(dbgs() << " PBQP Regalloc round " << round << ":\n");
Lang Hames27601ef2008-11-16 12:12:54 +0000677
Lang Hamesab62b7e2010-10-04 12:13:07 +0000678 std::auto_ptr<PBQPRAProblem> problem =
679 builder->build(mf, lis, loopInfo, vregsToAlloc);
680 PBQP::Solution solution =
681 PBQP::HeuristicSolver<PBQP::Heuristics::Briggs>::solve(
682 problem->getGraph());
Lang Hames233fd9c2009-08-18 23:34:50 +0000683
Lang Hamesab62b7e2010-10-04 12:13:07 +0000684 pbqpAllocComplete = mapPBQPToRegAlloc(*problem, solution);
Lang Hames27601ef2008-11-16 12:12:54 +0000685
Lang Hamesab62b7e2010-10-04 12:13:07 +0000686 ++round;
Lang Hames27601ef2008-11-16 12:12:54 +0000687 }
Evan Chengb1290a62008-10-02 18:29:27 +0000688 }
689
Lang Hames27601ef2008-11-16 12:12:54 +0000690 // Finalise allocation, allocate empty ranges.
691 finalizeAlloc();
Evan Chengb1290a62008-10-02 18:29:27 +0000692
Lang Hamesc4bcc772010-07-20 07:41:44 +0000693 rmf->renderMachineFunction("After PBQP register allocation.", vrm);
694
Lang Hameseb6c8f52010-09-18 09:07:10 +0000695 vregsToAlloc.clear();
696 emptyIntervalVRegs.clear();
Lang Hames27601ef2008-11-16 12:12:54 +0000697
David Greene30931542010-01-05 01:25:43 +0000698 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *vrm << "\n");
Lang Hames27601ef2008-11-16 12:12:54 +0000699
Lang Hames87e3bca2009-05-06 02:36:21 +0000700 // Run rewriter
701 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
702
703 rewriter->runOnMachineFunction(*mf, *vrm, lis);
Lang Hames27601ef2008-11-16 12:12:54 +0000704
Misha Brukman2a835f92009-01-08 15:50:22 +0000705 return true;
Evan Chengb1290a62008-10-02 18:29:27 +0000706}
707
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000708FunctionPass* llvm::createPBQPRegisterAllocator(
Lang Hames8d857662011-06-17 07:09:01 +0000709 std::auto_ptr<PBQPBuilder> builder,
710 char *customPassID) {
711 return new RegAllocPBQP(builder, customPassID);
Evan Chengb1290a62008-10-02 18:29:27 +0000712}
713
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000714FunctionPass* llvm::createDefaultPBQPRegisterAllocator() {
715 if (pbqpCoalescing) {
716 return createPBQPRegisterAllocator(
717 std::auto_ptr<PBQPBuilder>(new PBQPBuilderWithCoalescing()));
718 } // else
719 return createPBQPRegisterAllocator(
720 std::auto_ptr<PBQPBuilder>(new PBQPBuilder()));
Lang Hameseb6c8f52010-09-18 09:07:10 +0000721}
Evan Chengb1290a62008-10-02 18:29:27 +0000722
723#undef DEBUG_TYPE