blob: 672a7d4e63b6a3546fd1b20fbb3a1502a50ecdce [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"
Lang Hamesa937f222009-12-14 06:49:42 +000038#include "llvm/CodeGen/CalcSpillWeights.h"
Evan Chengb1290a62008-10-02 18:29:27 +000039#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Lang Hames27601ef2008-11-16 12:12:54 +000040#include "llvm/CodeGen/LiveStackAnalysis.h"
Lang Hameseb6c8f52010-09-18 09:07:10 +000041#include "llvm/CodeGen/RegAllocPBQP.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000042#include "llvm/CodeGen/MachineFunctionPass.h"
Evan Chengb1290a62008-10-02 18:29:27 +000043#include "llvm/CodeGen/MachineLoopInfo.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000044#include "llvm/CodeGen/MachineRegisterInfo.h"
Lang Hameseb6c8f52010-09-18 09:07:10 +000045#include "llvm/CodeGen/PBQP/HeuristicSolver.h"
46#include "llvm/CodeGen/PBQP/Graph.h"
47#include "llvm/CodeGen/PBQP/Heuristics/Briggs.h"
Misha Brukman2a835f92009-01-08 15:50:22 +000048#include "llvm/CodeGen/RegAllocRegistry.h"
49#include "llvm/CodeGen/RegisterCoalescer.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 Hameseb6c8f52010-09-18 09:07:10 +000059namespace llvm {
60
Evan Chengb1290a62008-10-02 18:29:27 +000061static RegisterRegAlloc
Duncan Sands1aecd152010-02-18 14:10:41 +000062registerPBQPRepAlloc("pbqp", "PBQP register allocator",
Lang Hames030c4bf2010-01-26 04:49:58 +000063 llvm::createPBQPRegisterAllocator);
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>
Lang Hameseb6c8f52010-09-18 09:07:10 +000071pbqpBuilder("pbqp-builder",
72 cl::desc("Use new builder system."),
73 cl::init(false), cl::Hidden);
74
75
76static cl::opt<bool>
Lang Hames12f35c52010-07-18 00:57:59 +000077pbqpPreSplitting("pbqp-pre-splitting",
78 cl::desc("Pre-splite before PBQP register allocation."),
79 cl::init(false), cl::Hidden);
80
Lang Hameseb6c8f52010-09-18 09:07:10 +000081char RegAllocPBQP::ID = 0;
Evan Chengb1290a62008-10-02 18:29:27 +000082
Lang Hameseb6c8f52010-09-18 09:07:10 +000083unsigned PBQPRAProblem::getVRegForNode(PBQP::Graph::ConstNodeItr node) const {
84 Node2VReg::const_iterator vregItr = node2VReg.find(node);
85 assert(vregItr != node2VReg.end() && "No vreg for node.");
86 return vregItr->second;
87}
Evan Chengb1290a62008-10-02 18:29:27 +000088
Lang Hameseb6c8f52010-09-18 09:07:10 +000089PBQP::Graph::NodeItr PBQPRAProblem::getNodeForVReg(unsigned vreg) const {
90 VReg2Node::const_iterator nodeItr = vreg2Node.find(vreg);
91 assert(nodeItr != vreg2Node.end() && "No node for vreg.");
92 return nodeItr->second;
93
94}
Daniel Dunbara279bc32009-09-20 02:20:51 +000095
Lang Hameseb6c8f52010-09-18 09:07:10 +000096const PBQPRAProblem::AllowedSet&
97 PBQPRAProblem::getAllowedSet(unsigned vreg) const {
98 AllowedSetMap::const_iterator allowedSetItr = allowedSets.find(vreg);
99 assert(allowedSetItr != allowedSets.end() && "No pregs for vreg.");
100 const AllowedSet &allowedSet = allowedSetItr->second;
101 return allowedSet;
102}
Evan Chengb1290a62008-10-02 18:29:27 +0000103
Lang Hameseb6c8f52010-09-18 09:07:10 +0000104unsigned PBQPRAProblem::getPRegForOption(unsigned vreg, unsigned option) const {
105 assert(isPRegOption(vreg, option) && "Not a preg option.");
106
107 const AllowedSet& allowedSet = getAllowedSet(vreg);
108 assert(option <= allowedSet.size() && "Option outside allowed set.");
109 return allowedSet[option - 1];
110}
111
Lang Hamese9c93562010-09-21 13:19:36 +0000112std::auto_ptr<PBQPRAProblem> PBQPBuilder::build(MachineFunction *mf,
113 const LiveIntervals *lis,
114 const MachineLoopInfo *loopInfo,
115 const RegSet &vregs) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000116
117 typedef std::vector<const LiveInterval*> LIVector;
118
119 MachineRegisterInfo *mri = &mf->getRegInfo();
120 const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo();
121
122 std::auto_ptr<PBQPRAProblem> p(new PBQPRAProblem());
123 PBQP::Graph &g = p->getGraph();
124 RegSet pregs;
125
126 // Collect the set of preg intervals, record that they're used in the MF.
127 for (LiveIntervals::const_iterator itr = lis->begin(), end = lis->end();
128 itr != end; ++itr) {
129 if (TargetRegisterInfo::isPhysicalRegister(itr->first)) {
130 pregs.insert(itr->first);
131 mri->setPhysRegUsed(itr->first);
Evan Chengb1290a62008-10-02 18:29:27 +0000132 }
Lang Hameseb6c8f52010-09-18 09:07:10 +0000133 }
Evan Chengb1290a62008-10-02 18:29:27 +0000134
Lang Hameseb6c8f52010-09-18 09:07:10 +0000135 BitVector reservedRegs = tri->getReservedRegs(*mf);
Evan Chengb1290a62008-10-02 18:29:27 +0000136
Lang Hameseb6c8f52010-09-18 09:07:10 +0000137 // Iterate over vregs.
138 for (RegSet::const_iterator vregItr = vregs.begin(), vregEnd = vregs.end();
139 vregItr != vregEnd; ++vregItr) {
140 unsigned vreg = *vregItr;
141 const TargetRegisterClass *trc = mri->getRegClass(vreg);
142 const LiveInterval *vregLI = &lis->getInterval(vreg);
Evan Chengb1290a62008-10-02 18:29:27 +0000143
Lang Hameseb6c8f52010-09-18 09:07:10 +0000144 // Compute an initial allowed set for the current vreg.
145 typedef std::vector<unsigned> VRAllowed;
146 VRAllowed vrAllowed;
147 for (TargetRegisterClass::iterator aoItr = trc->allocation_order_begin(*mf),
148 aoEnd = trc->allocation_order_end(*mf);
149 aoItr != aoEnd; ++aoItr) {
150 unsigned preg = *aoItr;
151 if (!reservedRegs.test(preg)) {
152 vrAllowed.push_back(preg);
Lang Hamesd0f6f012010-07-17 06:31:41 +0000153 }
Lang Hameseb6c8f52010-09-18 09:07:10 +0000154 }
Lang Hamesd0f6f012010-07-17 06:31:41 +0000155
Lang Hameseb6c8f52010-09-18 09:07:10 +0000156 // Remove any physical registers which overlap.
157 for (RegSet::const_iterator pregItr = pregs.begin(),
158 pregEnd = pregs.end();
159 pregItr != pregEnd; ++pregItr) {
160 unsigned preg = *pregItr;
161 const LiveInterval *pregLI = &lis->getInterval(preg);
Lang Hames27601ef2008-11-16 12:12:54 +0000162
Lang Hameseb6c8f52010-09-18 09:07:10 +0000163 if (pregLI->empty())
164 continue;
Evan Chengb1290a62008-10-02 18:29:27 +0000165
Lang Hameseb6c8f52010-09-18 09:07:10 +0000166 if (!vregLI->overlaps(*pregLI))
167 continue;
Lang Hames030c4bf2010-01-26 04:49:58 +0000168
Lang Hameseb6c8f52010-09-18 09:07:10 +0000169 // Remove the register from the allowed set.
170 VRAllowed::iterator eraseItr =
171 std::find(vrAllowed.begin(), vrAllowed.end(), preg);
Evan Chengb1290a62008-10-02 18:29:27 +0000172
Lang Hameseb6c8f52010-09-18 09:07:10 +0000173 if (eraseItr != vrAllowed.end()) {
174 vrAllowed.erase(eraseItr);
175 }
Evan Chengb1290a62008-10-02 18:29:27 +0000176
Lang Hameseb6c8f52010-09-18 09:07:10 +0000177 // Also remove any aliases.
178 const unsigned *aliasItr = tri->getAliasSet(preg);
179 if (aliasItr != 0) {
180 for (; *aliasItr != 0; ++aliasItr) {
181 VRAllowed::iterator eraseItr =
182 std::find(vrAllowed.begin(), vrAllowed.end(), *aliasItr);
Evan Chengb1290a62008-10-02 18:29:27 +0000183
Lang Hameseb6c8f52010-09-18 09:07:10 +0000184 if (eraseItr != vrAllowed.end()) {
185 vrAllowed.erase(eraseItr);
186 }
187 }
188 }
189 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000190
Lang Hameseb6c8f52010-09-18 09:07:10 +0000191 // Construct the node.
192 PBQP::Graph::NodeItr node =
193 g.addNode(PBQP::Vector(vrAllowed.size() + 1, 0));
Evan Chengb1290a62008-10-02 18:29:27 +0000194
Lang Hameseb6c8f52010-09-18 09:07:10 +0000195 // Record the mapping and allowed set in the problem.
196 p->recordVReg(vreg, node, vrAllowed.begin(), vrAllowed.end());
Evan Chengb1290a62008-10-02 18:29:27 +0000197
Lang Hameseb6c8f52010-09-18 09:07:10 +0000198 PBQP::PBQPNum spillCost = (vregLI->weight != 0.0) ?
199 vregLI->weight : std::numeric_limits<PBQP::PBQPNum>::min();
Evan Chengb1290a62008-10-02 18:29:27 +0000200
Lang Hameseb6c8f52010-09-18 09:07:10 +0000201 addSpillCosts(g.getNodeCosts(node), spillCost);
202 }
Evan Chengb1290a62008-10-02 18:29:27 +0000203
Lang Hames481630d2010-09-18 09:49:08 +0000204 for (RegSet::const_iterator vr1Itr = vregs.begin(), vrEnd = vregs.end();
Lang Hameseb6c8f52010-09-18 09:07:10 +0000205 vr1Itr != vrEnd; ++vr1Itr) {
206 unsigned vr1 = *vr1Itr;
207 const LiveInterval &l1 = lis->getInterval(vr1);
208 const PBQPRAProblem::AllowedSet &vr1Allowed = p->getAllowedSet(vr1);
Evan Chengb1290a62008-10-02 18:29:27 +0000209
Benjamin Kramer9e8d1f92010-09-18 14:41:26 +0000210 for (RegSet::const_iterator vr2Itr = llvm::next(vr1Itr);
Lang Hameseb6c8f52010-09-18 09:07:10 +0000211 vr2Itr != vrEnd; ++vr2Itr) {
212 unsigned vr2 = *vr2Itr;
213 const LiveInterval &l2 = lis->getInterval(vr2);
214 const PBQPRAProblem::AllowedSet &vr2Allowed = p->getAllowedSet(vr2);
Evan Chengb1290a62008-10-02 18:29:27 +0000215
Lang Hameseb6c8f52010-09-18 09:07:10 +0000216 assert(!l2.empty() && "Empty interval in vreg set?");
217 if (l1.overlaps(l2)) {
218 PBQP::Graph::EdgeItr edge =
219 g.addEdge(p->getNodeForVReg(vr1), p->getNodeForVReg(vr2),
220 PBQP::Matrix(vr1Allowed.size()+1, vr2Allowed.size()+1, 0));
Lang Hames27601ef2008-11-16 12:12:54 +0000221
Lang Hameseb6c8f52010-09-18 09:07:10 +0000222 addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
223 }
224 }
225 }
Evan Chengb1290a62008-10-02 18:29:27 +0000226
Lang Hameseb6c8f52010-09-18 09:07:10 +0000227 return p;
228}
Lang Hames27601ef2008-11-16 12:12:54 +0000229
Lang Hameseb6c8f52010-09-18 09:07:10 +0000230void PBQPBuilder::addSpillCosts(PBQP::Vector &costVec,
231 PBQP::PBQPNum spillCost) {
232 costVec[0] = spillCost;
233}
Evan Chengb1290a62008-10-02 18:29:27 +0000234
Lang Hamese9c93562010-09-21 13:19:36 +0000235void PBQPBuilder::addInterferenceCosts(
236 PBQP::Matrix &costMat,
237 const PBQPRAProblem::AllowedSet &vr1Allowed,
238 const PBQPRAProblem::AllowedSet &vr2Allowed,
239 const TargetRegisterInfo *tri) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000240 assert(costMat.getRows() == vr1Allowed.size() + 1 && "Matrix height mismatch.");
241 assert(costMat.getCols() == vr2Allowed.size() + 1 && "Matrix width mismatch.");
242
243 for (unsigned i = 0; i < vr1Allowed.size(); ++i) {
244 unsigned preg1 = vr1Allowed[i];
245
246 for (unsigned j = 0; j < vr2Allowed.size(); ++j) {
247 unsigned preg2 = vr2Allowed[j];
248
249 if (tri->regsOverlap(preg1, preg2)) {
250 costMat[i + 1][j + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity();
251 }
252 }
253 }
Evan Chengb1290a62008-10-02 18:29:27 +0000254}
255
Lang Hamese9c93562010-09-21 13:19:36 +0000256std::auto_ptr<PBQPRAProblem> PBQPBuilderWithCoalescing::build(
257 MachineFunction *mf,
258 const LiveIntervals *lis,
259 const MachineLoopInfo *loopInfo,
260 const RegSet &vregs) {
261
262 std::auto_ptr<PBQPRAProblem> p = PBQPBuilder::build(mf, lis, loopInfo, vregs);
263 PBQP::Graph &g = p->getGraph();
264
265 const TargetMachine &tm = mf->getTarget();
266 CoalescerPair cp(*tm.getInstrInfo(), *tm.getRegisterInfo());
267
268 // Scan the machine function and add a coalescing cost whenever CoalescerPair
269 // gives the Ok.
270 for (MachineFunction::const_iterator mbbItr = mf->begin(),
271 mbbEnd = mf->end();
272 mbbItr != mbbEnd; ++mbbItr) {
273 const MachineBasicBlock *mbb = &*mbbItr;
274
275 for (MachineBasicBlock::const_iterator miItr = mbb->begin(),
276 miEnd = mbb->end();
277 miItr != miEnd; ++miItr) {
278 const MachineInstr *mi = &*miItr;
279
280 if (!mi->isCopy() && !mi->isSubregToReg())
281 continue; // Not coalescable.
282
283 if (!cp.setRegisters(mi))
284 continue; // Not coalescable.
285
286 if (cp.getSrcReg() == cp.getDstReg())
287 continue; // Already coalesced.
288
289 if (cp.isCoalescable(mi)) {
290
291 unsigned dst = cp.getDstReg(),
292 src = cp.getSrcReg();
293
294
295
296 PBQP::PBQPNum cBenefit = std::pow(10.0f, loopInfo->getLoopDepth(mbb));
297
298 if (cp.isPhys()) {
299 if (!lis->isAllocatable(dst))
300 continue;
301
302 const PBQPRAProblem::AllowedSet &allowed = p->getAllowedSet(src);
303 unsigned pregOpt = 0;
304 while (pregOpt < allowed.size() && allowed[pregOpt] != dst)
305 ++pregOpt;
306 if (pregOpt < allowed.size()) {
307 ++pregOpt; // +1 to account for spill option.
308 PBQP::Graph::NodeItr node = p->getNodeForVReg(src);
309 addPhysRegCoalesce(g.getNodeCosts(node), pregOpt, cBenefit);
310 }
311 } else {
312 const PBQPRAProblem::AllowedSet *allowed1 = &p->getAllowedSet(dst);
313 const PBQPRAProblem::AllowedSet *allowed2 = &p->getAllowedSet(src);
314 PBQP::Graph::NodeItr node1 = p->getNodeForVReg(dst);
315 PBQP::Graph::NodeItr node2 = p->getNodeForVReg(src);
316 PBQP::Graph::EdgeItr edge = g.findEdge(node1, node2);
317 if (edge == g.edgesEnd()) {
318 edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
319 allowed2->size() + 1,
320 0));
321 } else {
322 if (g.getEdgeNode1(edge) == node2) {
323 std::swap(node1, node2);
324 std::swap(allowed1, allowed2);
325 }
326 }
327
328 addVirtRegCoalesce(g.getEdgeCosts(edge), *allowed1, *allowed2,
329 cBenefit);
330 }
331 }
332 }
333 }
334
335 return p;
336}
337
338
339void PBQPBuilderWithCoalescing::addPhysRegCoalesce(PBQP::Vector &costVec,
340 unsigned pregOption,
341 PBQP::PBQPNum benefit) {
342 costVec[pregOption] += -benefit;
343}
344
345void PBQPBuilderWithCoalescing::addVirtRegCoalesce(
346 PBQP::Matrix &costMat,
347 const PBQPRAProblem::AllowedSet &vr1Allowed,
348 const PBQPRAProblem::AllowedSet &vr2Allowed,
349 PBQP::PBQPNum benefit) {
350
351 assert(costMat.getRows() == vr1Allowed.size() + 1 && "Size mismatch.");
352 assert(costMat.getCols() == vr2Allowed.size() + 1 && "Size mismatch.");
353
354 for (unsigned i = 0; i < vr1Allowed.size(); ++i) {
355 unsigned preg1 = vr1Allowed[i];
356 for (unsigned j = 0; j < vr2Allowed.size(); ++j) {
357 unsigned preg2 = vr2Allowed[j];
358
359 if (preg1 == preg2) {
360 costMat[i + 1][j + 1] += -benefit;
361 }
362 }
363 }
364}
Evan Chengb1290a62008-10-02 18:29:27 +0000365
Lang Hameseb6c8f52010-09-18 09:07:10 +0000366
367void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
368 au.addRequired<SlotIndexes>();
369 au.addPreserved<SlotIndexes>();
370 au.addRequired<LiveIntervals>();
371 //au.addRequiredID(SplitCriticalEdgesID);
372 au.addRequired<RegisterCoalescer>();
373 au.addRequired<CalculateSpillWeights>();
374 au.addRequired<LiveStacks>();
375 au.addPreserved<LiveStacks>();
376 au.addRequired<MachineLoopInfo>();
377 au.addPreserved<MachineLoopInfo>();
378 if (pbqpPreSplitting)
379 au.addRequired<LoopSplitter>();
380 au.addRequired<VirtRegMap>();
381 au.addRequired<RenderMachineFunction>();
382 MachineFunctionPass::getAnalysisUsage(au);
383}
384
Lang Hames27601ef2008-11-16 12:12:54 +0000385template <typename RegContainer>
Lang Hameseb6c8f52010-09-18 09:07:10 +0000386PBQP::Vector RegAllocPBQP::buildCostVector(unsigned vReg,
Lang Hames6699fb22009-08-06 23:32:48 +0000387 const RegContainer &allowed,
388 const CoalesceMap &coalesces,
389 PBQP::PBQPNum spillCost) const {
Evan Chengb1290a62008-10-02 18:29:27 +0000390
Lang Hames27601ef2008-11-16 12:12:54 +0000391 typedef typename RegContainer::const_iterator AllowedItr;
392
Evan Chengb1290a62008-10-02 18:29:27 +0000393 // Allocate vector. Additional element (0th) used for spill option
Lang Hames6699fb22009-08-06 23:32:48 +0000394 PBQP::Vector v(allowed.size() + 1, 0);
Evan Chengb1290a62008-10-02 18:29:27 +0000395
Lang Hames6699fb22009-08-06 23:32:48 +0000396 v[0] = spillCost;
Evan Chengb1290a62008-10-02 18:29:27 +0000397
Lang Hames27601ef2008-11-16 12:12:54 +0000398 // Iterate over the allowed registers inserting coalesce benefits if there
399 // are any.
400 unsigned ai = 0;
401 for (AllowedItr itr = allowed.begin(), end = allowed.end();
402 itr != end; ++itr, ++ai) {
403
404 unsigned pReg = *itr;
405
406 CoalesceMap::const_iterator cmItr =
407 coalesces.find(RegPair(vReg, pReg));
408
409 // No coalesce - on to the next preg.
410 if (cmItr == coalesces.end())
411 continue;
Misha Brukman2a835f92009-01-08 15:50:22 +0000412
413 // We have a coalesce - insert the benefit.
Lang Hames6699fb22009-08-06 23:32:48 +0000414 v[ai + 1] = -cmItr->second;
Lang Hames27601ef2008-11-16 12:12:54 +0000415 }
416
Evan Chengb1290a62008-10-02 18:29:27 +0000417 return v;
418}
419
Lang Hames27601ef2008-11-16 12:12:54 +0000420template <typename RegContainer>
Lang Hameseb6c8f52010-09-18 09:07:10 +0000421PBQP::Matrix* RegAllocPBQP::buildInterferenceMatrix(
Lang Hames27601ef2008-11-16 12:12:54 +0000422 const RegContainer &allowed1, const RegContainer &allowed2) const {
Evan Chengb1290a62008-10-02 18:29:27 +0000423
Lang Hames27601ef2008-11-16 12:12:54 +0000424 typedef typename RegContainer::const_iterator RegContainerIterator;
Evan Chengb1290a62008-10-02 18:29:27 +0000425
426 // Construct a PBQP matrix representing the cost of allocation options. The
427 // rows and columns correspond to the allocation options for the two live
428 // intervals. Elements will be infinite where corresponding registers alias,
429 // since we cannot allocate aliasing registers to interfering live intervals.
430 // All other elements (non-aliasing combinations) will have zero cost. Note
431 // that the spill option (element 0,0) has zero cost, since we can allocate
432 // both intervals to memory safely (the cost for each individual allocation
433 // to memory is accounted for by the cost vectors for each live interval).
Lang Hames6699fb22009-08-06 23:32:48 +0000434 PBQP::Matrix *m =
435 new PBQP::Matrix(allowed1.size() + 1, allowed2.size() + 1, 0);
Misha Brukman2a835f92009-01-08 15:50:22 +0000436
Evan Chengb1290a62008-10-02 18:29:27 +0000437 // Assume this is a zero matrix until proven otherwise. Zero matrices occur
438 // between interfering live ranges with non-overlapping register sets (e.g.
439 // non-overlapping reg classes, or disjoint sets of allowed regs within the
440 // same class). The term "overlapping" is used advisedly: sets which do not
441 // intersect, but contain registers which alias, will have non-zero matrices.
442 // We optimize zero matrices away to improve solver speed.
443 bool isZeroMatrix = true;
444
445
446 // Row index. Starts at 1, since the 0th row is for the spill option, which
447 // is always zero.
Misha Brukman2a835f92009-01-08 15:50:22 +0000448 unsigned ri = 1;
Evan Chengb1290a62008-10-02 18:29:27 +0000449
Misha Brukman2a835f92009-01-08 15:50:22 +0000450 // Iterate over allowed sets, insert infinities where required.
Lang Hames27601ef2008-11-16 12:12:54 +0000451 for (RegContainerIterator a1Itr = allowed1.begin(), a1End = allowed1.end();
Evan Chengb1290a62008-10-02 18:29:27 +0000452 a1Itr != a1End; ++a1Itr) {
453
454 // Column index, starts at 1 as for row index.
455 unsigned ci = 1;
456 unsigned reg1 = *a1Itr;
457
Lang Hames27601ef2008-11-16 12:12:54 +0000458 for (RegContainerIterator a2Itr = allowed2.begin(), a2End = allowed2.end();
Evan Chengb1290a62008-10-02 18:29:27 +0000459 a2Itr != a2End; ++a2Itr) {
460
461 unsigned reg2 = *a2Itr;
462
463 // If the row/column regs are identical or alias insert an infinity.
Lang Hames3f2f3f52009-09-03 02:52:02 +0000464 if (tri->regsOverlap(reg1, reg2)) {
Lang Hames6699fb22009-08-06 23:32:48 +0000465 (*m)[ri][ci] = std::numeric_limits<PBQP::PBQPNum>::infinity();
Evan Chengb1290a62008-10-02 18:29:27 +0000466 isZeroMatrix = false;
467 }
468
469 ++ci;
470 }
471
472 ++ri;
473 }
474
475 // If this turns out to be a zero matrix...
476 if (isZeroMatrix) {
477 // free it and return null.
478 delete m;
479 return 0;
480 }
481
482 // ...otherwise return the cost matrix.
483 return m;
484}
485
Lang Hames27601ef2008-11-16 12:12:54 +0000486template <typename RegContainer>
Lang Hameseb6c8f52010-09-18 09:07:10 +0000487PBQP::Matrix* RegAllocPBQP::buildCoalescingMatrix(
Lang Hames27601ef2008-11-16 12:12:54 +0000488 const RegContainer &allowed1, const RegContainer &allowed2,
Lang Hames6699fb22009-08-06 23:32:48 +0000489 PBQP::PBQPNum cBenefit) const {
Evan Chengb1290a62008-10-02 18:29:27 +0000490
Lang Hames27601ef2008-11-16 12:12:54 +0000491 typedef typename RegContainer::const_iterator RegContainerIterator;
492
493 // Construct a PBQP Matrix representing the benefits of coalescing. As with
494 // interference matrices the rows and columns represent allowed registers
495 // for the LiveIntervals which are (potentially) to be coalesced. The amount
496 // -cBenefit will be placed in any element representing the same register
497 // for both intervals.
Lang Hames6699fb22009-08-06 23:32:48 +0000498 PBQP::Matrix *m =
499 new PBQP::Matrix(allowed1.size() + 1, allowed2.size() + 1, 0);
Lang Hames27601ef2008-11-16 12:12:54 +0000500
501 // Reset costs to zero.
502 m->reset(0);
503
504 // Assume the matrix is zero till proven otherwise. Zero matrices will be
505 // optimized away as in the interference case.
506 bool isZeroMatrix = true;
507
508 // Row index. Starts at 1, since the 0th row is for the spill option, which
509 // is always zero.
510 unsigned ri = 1;
511
512 // Iterate over the allowed sets, insert coalescing benefits where
513 // appropriate.
514 for (RegContainerIterator a1Itr = allowed1.begin(), a1End = allowed1.end();
515 a1Itr != a1End; ++a1Itr) {
516
517 // Column index, starts at 1 as for row index.
518 unsigned ci = 1;
519 unsigned reg1 = *a1Itr;
520
521 for (RegContainerIterator a2Itr = allowed2.begin(), a2End = allowed2.end();
522 a2Itr != a2End; ++a2Itr) {
523
524 // If the row and column represent the same register insert a beneficial
525 // cost to preference this allocation - it would allow us to eliminate a
Misha Brukman2a835f92009-01-08 15:50:22 +0000526 // move instruction.
Lang Hames27601ef2008-11-16 12:12:54 +0000527 if (reg1 == *a2Itr) {
528 (*m)[ri][ci] = -cBenefit;
529 isZeroMatrix = false;
530 }
531
532 ++ci;
533 }
534
535 ++ri;
536 }
537
538 // If this turns out to be a zero matrix...
539 if (isZeroMatrix) {
540 // ...free it and return null.
541 delete m;
542 return 0;
543 }
544
545 return m;
546}
547
Lang Hameseb6c8f52010-09-18 09:07:10 +0000548RegAllocPBQP::CoalesceMap RegAllocPBQP::findCoalesces() {
Lang Hames27601ef2008-11-16 12:12:54 +0000549
550 typedef MachineFunction::const_iterator MFIterator;
551 typedef MachineBasicBlock::const_iterator MBBIterator;
552 typedef LiveInterval::const_vni_iterator VNIIterator;
Misha Brukman2a835f92009-01-08 15:50:22 +0000553
Lang Hames27601ef2008-11-16 12:12:54 +0000554 CoalesceMap coalescesFound;
555
556 // To find coalesces we need to iterate over the function looking for
557 // copy instructions.
558 for (MFIterator bbItr = mf->begin(), bbEnd = mf->end();
Evan Chengb1290a62008-10-02 18:29:27 +0000559 bbItr != bbEnd; ++bbItr) {
560
561 const MachineBasicBlock *mbb = &*bbItr;
Evan Chengb1290a62008-10-02 18:29:27 +0000562
Lang Hames27601ef2008-11-16 12:12:54 +0000563 for (MBBIterator iItr = mbb->begin(), iEnd = mbb->end();
564 iItr != iEnd; ++iItr) {
Evan Chengb1290a62008-10-02 18:29:27 +0000565
566 const MachineInstr *instr = &*iItr;
567
Lang Hames27601ef2008-11-16 12:12:54 +0000568 // If this isn't a copy then continue to the next instruction.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000569 if (!instr->isCopy())
Lang Hames27601ef2008-11-16 12:12:54 +0000570 continue;
Evan Chengb1290a62008-10-02 18:29:27 +0000571
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000572 unsigned srcReg = instr->getOperand(1).getReg();
573 unsigned dstReg = instr->getOperand(0).getReg();
574
Lang Hames27601ef2008-11-16 12:12:54 +0000575 // If the registers are already the same our job is nice and easy.
576 if (dstReg == srcReg)
577 continue;
Evan Chengb1290a62008-10-02 18:29:27 +0000578
Lang Hames27601ef2008-11-16 12:12:54 +0000579 bool srcRegIsPhysical = TargetRegisterInfo::isPhysicalRegister(srcReg),
580 dstRegIsPhysical = TargetRegisterInfo::isPhysicalRegister(dstReg);
581
582 // If both registers are physical then we can't coalesce.
583 if (srcRegIsPhysical && dstRegIsPhysical)
584 continue;
Misha Brukman2a835f92009-01-08 15:50:22 +0000585
Rafael Espindolacbeb3db2010-07-12 01:45:38 +0000586 // If it's a copy that includes two virtual register but the source and
587 // destination classes differ then we can't coalesce.
588 if (!srcRegIsPhysical && !dstRegIsPhysical &&
589 mri->getRegClass(srcReg) != mri->getRegClass(dstReg))
Lang Hames27601ef2008-11-16 12:12:54 +0000590 continue;
591
Rafael Espindolacbeb3db2010-07-12 01:45:38 +0000592 // If one is physical and one is virtual, check that the physical is
593 // allocatable in the class of the virtual.
594 if (srcRegIsPhysical && !dstRegIsPhysical) {
595 const TargetRegisterClass *dstRegClass = mri->getRegClass(dstReg);
Lang Hames0b23dc02010-02-09 00:50:27 +0000596 if (std::find(dstRegClass->allocation_order_begin(*mf),
597 dstRegClass->allocation_order_end(*mf), srcReg) ==
598 dstRegClass->allocation_order_end(*mf))
Evan Chengb1290a62008-10-02 18:29:27 +0000599 continue;
Evan Chengb1290a62008-10-02 18:29:27 +0000600 }
Rafael Espindolacbeb3db2010-07-12 01:45:38 +0000601 if (!srcRegIsPhysical && dstRegIsPhysical) {
602 const TargetRegisterClass *srcRegClass = mri->getRegClass(srcReg);
Lang Hames0b23dc02010-02-09 00:50:27 +0000603 if (std::find(srcRegClass->allocation_order_begin(*mf),
604 srcRegClass->allocation_order_end(*mf), dstReg) ==
605 srcRegClass->allocation_order_end(*mf))
Lang Hames27601ef2008-11-16 12:12:54 +0000606 continue;
607 }
608
609 // If we've made it here we have a copy with compatible register classes.
Misha Brukman2a835f92009-01-08 15:50:22 +0000610 // We can probably coalesce, but we need to consider overlap.
Lang Hames27601ef2008-11-16 12:12:54 +0000611 const LiveInterval *srcLI = &lis->getInterval(srcReg),
612 *dstLI = &lis->getInterval(dstReg);
613
614 if (srcLI->overlaps(*dstLI)) {
615 // Even in the case of an overlap we might still be able to coalesce,
616 // but we need to make sure that no definition of either range occurs
617 // while the other range is live.
618
619 // Otherwise start by assuming we're ok.
620 bool badDef = false;
621
622 // Test all defs of the source range.
Misha Brukman2a835f92009-01-08 15:50:22 +0000623 for (VNIIterator
Lang Hames27601ef2008-11-16 12:12:54 +0000624 vniItr = srcLI->vni_begin(), vniEnd = srcLI->vni_end();
625 vniItr != vniEnd; ++vniItr) {
626
Lang Hames0b23dc02010-02-09 00:50:27 +0000627 // If we find a poorly defined def we err on the side of caution.
628 if (!(*vniItr)->def.isValid()) {
629 badDef = true;
630 break;
631 }
632
Lang Hames27601ef2008-11-16 12:12:54 +0000633 // If we find a def that kills the coalescing opportunity then
634 // record it and break from the loop.
635 if (dstLI->liveAt((*vniItr)->def)) {
636 badDef = true;
637 break;
638 }
639 }
640
641 // If we have a bad def give up, continue to the next instruction.
642 if (badDef)
643 continue;
Misha Brukman2a835f92009-01-08 15:50:22 +0000644
Lang Hames27601ef2008-11-16 12:12:54 +0000645 // Otherwise test definitions of the destination range.
646 for (VNIIterator
647 vniItr = dstLI->vni_begin(), vniEnd = dstLI->vni_end();
648 vniItr != vniEnd; ++vniItr) {
Misha Brukman2a835f92009-01-08 15:50:22 +0000649
Lang Hames27601ef2008-11-16 12:12:54 +0000650 // We want to make sure we skip the copy instruction itself.
Lang Hames52c1afc2009-08-10 23:43:28 +0000651 if ((*vniItr)->getCopy() == instr)
Lang Hames27601ef2008-11-16 12:12:54 +0000652 continue;
653
Lang Hames0b23dc02010-02-09 00:50:27 +0000654 if (!(*vniItr)->def.isValid()) {
655 badDef = true;
656 break;
657 }
658
Lang Hames27601ef2008-11-16 12:12:54 +0000659 if (srcLI->liveAt((*vniItr)->def)) {
660 badDef = true;
661 break;
662 }
663 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000664
Lang Hames27601ef2008-11-16 12:12:54 +0000665 // As before a bad def we give up and continue to the next instr.
666 if (badDef)
667 continue;
668 }
669
670 // If we make it to here then either the ranges didn't overlap, or they
671 // did, but none of their definitions would prevent us from coalescing.
672 // We're good to go with the coalesce.
673
Chris Lattner87565c12010-05-15 17:10:24 +0000674 float cBenefit = std::pow(10.0f, (float)loopInfo->getLoopDepth(mbb)) / 5.0;
Misha Brukman2a835f92009-01-08 15:50:22 +0000675
Lang Hames27601ef2008-11-16 12:12:54 +0000676 coalescesFound[RegPair(srcReg, dstReg)] = cBenefit;
677 coalescesFound[RegPair(dstReg, srcReg)] = cBenefit;
Evan Chengb1290a62008-10-02 18:29:27 +0000678 }
679
680 }
681
Lang Hames27601ef2008-11-16 12:12:54 +0000682 return coalescesFound;
683}
684
Lang Hameseb6c8f52010-09-18 09:07:10 +0000685void RegAllocPBQP::findVRegIntervalsToAlloc() {
Lang Hames27601ef2008-11-16 12:12:54 +0000686
687 // Iterate over all live ranges.
688 for (LiveIntervals::iterator itr = lis->begin(), end = lis->end();
689 itr != end; ++itr) {
690
691 // Ignore physical ones.
692 if (TargetRegisterInfo::isPhysicalRegister(itr->first))
693 continue;
694
695 LiveInterval *li = itr->second;
696
697 // If this live interval is non-empty we will use pbqp to allocate it.
698 // Empty intervals we allocate in a simple post-processing stage in
699 // finalizeAlloc.
700 if (!li->empty()) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000701 vregsToAlloc.insert(li->reg);
Lang Hames27601ef2008-11-16 12:12:54 +0000702 }
703 else {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000704 emptyIntervalVRegs.insert(li->reg);
Lang Hames27601ef2008-11-16 12:12:54 +0000705 }
706 }
Evan Chengb1290a62008-10-02 18:29:27 +0000707}
708
Lang Hameseb6c8f52010-09-18 09:07:10 +0000709PBQP::Graph RegAllocPBQP::constructPBQPProblem() {
Evan Chengb1290a62008-10-02 18:29:27 +0000710
711 typedef std::vector<const LiveInterval*> LIVector;
Lang Hames27601ef2008-11-16 12:12:54 +0000712 typedef std::vector<unsigned> RegVector;
Evan Chengb1290a62008-10-02 18:29:27 +0000713
Lang Hames27601ef2008-11-16 12:12:54 +0000714 // This will store the physical intervals for easy reference.
715 LIVector physIntervals;
Evan Chengb1290a62008-10-02 18:29:27 +0000716
717 // Start by clearing the old node <-> live interval mappings & allowed sets
718 li2Node.clear();
719 node2LI.clear();
720 allowedSets.clear();
721
Lang Hames27601ef2008-11-16 12:12:54 +0000722 // Populate physIntervals, update preg use:
723 for (LiveIntervals::iterator itr = lis->begin(), end = lis->end();
Evan Chengb1290a62008-10-02 18:29:27 +0000724 itr != end; ++itr) {
725
Evan Chengb1290a62008-10-02 18:29:27 +0000726 if (TargetRegisterInfo::isPhysicalRegister(itr->first)) {
727 physIntervals.push_back(itr->second);
728 mri->setPhysRegUsed(itr->second->reg);
729 }
Evan Chengb1290a62008-10-02 18:29:27 +0000730 }
731
Lang Hames27601ef2008-11-16 12:12:54 +0000732 // Iterate over vreg intervals, construct live interval <-> node number
733 // mappings.
Lang Hameseb6c8f52010-09-18 09:07:10 +0000734 for (RegSet::const_iterator itr = vregsToAlloc.begin(),
735 end = vregsToAlloc.end();
Lang Hames27601ef2008-11-16 12:12:54 +0000736 itr != end; ++itr) {
Lang Hameseb6c8f52010-09-18 09:07:10 +0000737 const LiveInterval *li = &lis->getInterval(*itr);
Lang Hames27601ef2008-11-16 12:12:54 +0000738
739 li2Node[li] = node2LI.size();
740 node2LI.push_back(li);
741 }
742
743 // Get the set of potential coalesces.
Lang Hames8481e3b2009-08-19 01:36:14 +0000744 CoalesceMap coalesces;
745
746 if (pbqpCoalescing) {
747 coalesces = findCoalesces();
748 }
Evan Chengb1290a62008-10-02 18:29:27 +0000749
750 // Construct a PBQP solver for this problem
Lang Hames030c4bf2010-01-26 04:49:58 +0000751 PBQP::Graph problem;
Lang Hameseb6c8f52010-09-18 09:07:10 +0000752 problemNodes.resize(vregsToAlloc.size());
Evan Chengb1290a62008-10-02 18:29:27 +0000753
754 // Resize allowedSets container appropriately.
Lang Hameseb6c8f52010-09-18 09:07:10 +0000755 allowedSets.resize(vregsToAlloc.size());
Evan Chengb1290a62008-10-02 18:29:27 +0000756
Jim Grosbach269354e2010-09-01 21:23:03 +0000757 BitVector ReservedRegs = tri->getReservedRegs(*mf);
758
Evan Chengb1290a62008-10-02 18:29:27 +0000759 // Iterate over virtual register intervals to compute allowed sets...
760 for (unsigned node = 0; node < node2LI.size(); ++node) {
761
762 // Grab pointers to the interval and its register class.
763 const LiveInterval *li = node2LI[node];
764 const TargetRegisterClass *liRC = mri->getRegClass(li->reg);
Misha Brukman2a835f92009-01-08 15:50:22 +0000765
Evan Chengb1290a62008-10-02 18:29:27 +0000766 // Start by assuming all allocable registers in the class are allowed...
Jim Grosbach269354e2010-09-01 21:23:03 +0000767 RegVector liAllowed;
768 TargetRegisterClass::iterator aob = liRC->allocation_order_begin(*mf);
769 TargetRegisterClass::iterator aoe = liRC->allocation_order_end(*mf);
770 for (TargetRegisterClass::iterator it = aob; it != aoe; ++it)
771 if (!ReservedRegs.test(*it))
772 liAllowed.push_back(*it);
Evan Chengb1290a62008-10-02 18:29:27 +0000773
Lang Hames27601ef2008-11-16 12:12:54 +0000774 // Eliminate the physical registers which overlap with this range, along
775 // with all their aliases.
776 for (LIVector::iterator pItr = physIntervals.begin(),
777 pEnd = physIntervals.end(); pItr != pEnd; ++pItr) {
Evan Chengb1290a62008-10-02 18:29:27 +0000778
Lang Hames27601ef2008-11-16 12:12:54 +0000779 if (!li->overlaps(**pItr))
780 continue;
Evan Chengb1290a62008-10-02 18:29:27 +0000781
Lang Hames27601ef2008-11-16 12:12:54 +0000782 unsigned pReg = (*pItr)->reg;
Evan Chengb1290a62008-10-02 18:29:27 +0000783
Lang Hames27601ef2008-11-16 12:12:54 +0000784 // If we get here then the live intervals overlap, but we're still ok
785 // if they're coalescable.
Lang Hameseb6c8f52010-09-18 09:07:10 +0000786 if (coalesces.find(RegPair(li->reg, pReg)) != coalesces.end()) {
787 DEBUG(dbgs() << "CoalescingOverride: (" << li->reg << ", " << pReg << ")\n");
Lang Hames27601ef2008-11-16 12:12:54 +0000788 continue;
Lang Hameseb6c8f52010-09-18 09:07:10 +0000789 }
Evan Chengb1290a62008-10-02 18:29:27 +0000790
Lang Hames27601ef2008-11-16 12:12:54 +0000791 // If we get here then we have a genuine exclusion.
Evan Chengb1290a62008-10-02 18:29:27 +0000792
Lang Hames27601ef2008-11-16 12:12:54 +0000793 // Remove the overlapping reg...
794 RegVector::iterator eraseItr =
795 std::find(liAllowed.begin(), liAllowed.end(), pReg);
Misha Brukman2a835f92009-01-08 15:50:22 +0000796
Lang Hames27601ef2008-11-16 12:12:54 +0000797 if (eraseItr != liAllowed.end())
798 liAllowed.erase(eraseItr);
Evan Chengb1290a62008-10-02 18:29:27 +0000799
Lang Hames27601ef2008-11-16 12:12:54 +0000800 const unsigned *aliasItr = tri->getAliasSet(pReg);
801
802 if (aliasItr != 0) {
803 // ...and its aliases.
804 for (; *aliasItr != 0; ++aliasItr) {
805 RegVector::iterator eraseItr =
806 std::find(liAllowed.begin(), liAllowed.end(), *aliasItr);
Misha Brukman2a835f92009-01-08 15:50:22 +0000807
Lang Hames27601ef2008-11-16 12:12:54 +0000808 if (eraseItr != liAllowed.end()) {
809 liAllowed.erase(eraseItr);
Evan Chengb1290a62008-10-02 18:29:27 +0000810 }
Evan Chengb1290a62008-10-02 18:29:27 +0000811 }
Evan Chengb1290a62008-10-02 18:29:27 +0000812 }
Evan Chengb1290a62008-10-02 18:29:27 +0000813 }
814
815 // Copy the allowed set into a member vector for use when constructing cost
816 // vectors & matrices, and mapping PBQP solutions back to assignments.
817 allowedSets[node] = AllowedSet(liAllowed.begin(), liAllowed.end());
818
819 // Set the spill cost to the interval weight, or epsilon if the
820 // interval weight is zero
Lang Hames6699fb22009-08-06 23:32:48 +0000821 PBQP::PBQPNum spillCost = (li->weight != 0.0) ?
822 li->weight : std::numeric_limits<PBQP::PBQPNum>::min();
Evan Chengb1290a62008-10-02 18:29:27 +0000823
824 // Build a cost vector for this interval.
Lang Hames6699fb22009-08-06 23:32:48 +0000825 problemNodes[node] =
826 problem.addNode(
827 buildCostVector(li->reg, allowedSets[node], coalesces, spillCost));
Evan Chengb1290a62008-10-02 18:29:27 +0000828
829 }
830
Lang Hames27601ef2008-11-16 12:12:54 +0000831
Evan Chengb1290a62008-10-02 18:29:27 +0000832 // Now add the cost matrices...
833 for (unsigned node1 = 0; node1 < node2LI.size(); ++node1) {
Evan Chengb1290a62008-10-02 18:29:27 +0000834 const LiveInterval *li = node2LI[node1];
835
Evan Chengb1290a62008-10-02 18:29:27 +0000836 // Test for live range overlaps and insert interference matrices.
837 for (unsigned node2 = node1 + 1; node2 < node2LI.size(); ++node2) {
838 const LiveInterval *li2 = node2LI[node2];
839
Lang Hames27601ef2008-11-16 12:12:54 +0000840 CoalesceMap::const_iterator cmItr =
841 coalesces.find(RegPair(li->reg, li2->reg));
Evan Chengb1290a62008-10-02 18:29:27 +0000842
Lang Hames6699fb22009-08-06 23:32:48 +0000843 PBQP::Matrix *m = 0;
Evan Chengb1290a62008-10-02 18:29:27 +0000844
Lang Hames27601ef2008-11-16 12:12:54 +0000845 if (cmItr != coalesces.end()) {
846 m = buildCoalescingMatrix(allowedSets[node1], allowedSets[node2],
847 cmItr->second);
848 }
849 else if (li->overlaps(*li2)) {
850 m = buildInterferenceMatrix(allowedSets[node1], allowedSets[node2]);
851 }
Misha Brukman2a835f92009-01-08 15:50:22 +0000852
Lang Hames27601ef2008-11-16 12:12:54 +0000853 if (m != 0) {
Lang Hames6699fb22009-08-06 23:32:48 +0000854 problem.addEdge(problemNodes[node1],
855 problemNodes[node2],
856 *m);
857
Lang Hames27601ef2008-11-16 12:12:54 +0000858 delete m;
Evan Chengb1290a62008-10-02 18:29:27 +0000859 }
860 }
861 }
862
Lang Hames6699fb22009-08-06 23:32:48 +0000863 assert(problem.getNumNodes() == allowedSets.size());
Lang Hames6699fb22009-08-06 23:32:48 +0000864/*
865 std::cerr << "Allocating for " << problem.getNumNodes() << " nodes, "
866 << problem.getNumEdges() << " edges.\n";
867
868 problem.printDot(std::cerr);
869*/
Evan Chengb1290a62008-10-02 18:29:27 +0000870 // We're done, PBQP problem constructed - return it.
Lang Hames6699fb22009-08-06 23:32:48 +0000871 return problem;
Evan Chengb1290a62008-10-02 18:29:27 +0000872}
873
Lang Hameseb6c8f52010-09-18 09:07:10 +0000874void RegAllocPBQP::addStackInterval(const LiveInterval *spilled,
Evan Chengc781a242009-05-03 18:32:42 +0000875 MachineRegisterInfo* mri) {
Lang Hames27601ef2008-11-16 12:12:54 +0000876 int stackSlot = vrm->getStackSlot(spilled->reg);
Misha Brukman2a835f92009-01-08 15:50:22 +0000877
878 if (stackSlot == VirtRegMap::NO_STACK_SLOT)
Lang Hames27601ef2008-11-16 12:12:54 +0000879 return;
880
Evan Chengc781a242009-05-03 18:32:42 +0000881 const TargetRegisterClass *RC = mri->getRegClass(spilled->reg);
882 LiveInterval &stackInterval = lss->getOrCreateInterval(stackSlot, RC);
Lang Hames27601ef2008-11-16 12:12:54 +0000883
884 VNInfo *vni;
885 if (stackInterval.getNumValNums() != 0)
886 vni = stackInterval.getValNumInfo(0);
887 else
Lang Hames86511252009-09-04 20:41:11 +0000888 vni = stackInterval.getNextValue(
Lang Hames233a60e2009-11-03 23:52:08 +0000889 SlotIndex(), 0, false, lss->getVNInfoAllocator());
Lang Hames27601ef2008-11-16 12:12:54 +0000890
891 LiveInterval &rhsInterval = lis->getInterval(spilled->reg);
892 stackInterval.MergeRangesInAsValue(rhsInterval, vni);
893}
894
Lang Hameseb6c8f52010-09-18 09:07:10 +0000895bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQP::Solution &solution) {
Lang Hamese98b4b02009-11-15 04:39:51 +0000896
Evan Chengb1290a62008-10-02 18:29:27 +0000897 // Set to true if we have any spills
898 bool anotherRoundNeeded = false;
899
900 // Clear the existing allocation.
901 vrm->clearAllVirt();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000902
Evan Chengb1290a62008-10-02 18:29:27 +0000903 // Iterate over the nodes mapping the PBQP solution to a register assignment.
904 for (unsigned node = 0; node < node2LI.size(); ++node) {
Lang Hames27601ef2008-11-16 12:12:54 +0000905 unsigned virtReg = node2LI[node]->reg,
Lang Hames030c4bf2010-01-26 04:49:58 +0000906 allocSelection = solution.getSelection(problemNodes[node]);
Lang Hames6699fb22009-08-06 23:32:48 +0000907
Evan Chengb1290a62008-10-02 18:29:27 +0000908
909 // If the PBQP solution is non-zero it's a physical register...
910 if (allocSelection != 0) {
911 // Get the physical reg, subtracting 1 to account for the spill option.
912 unsigned physReg = allowedSets[node][allocSelection - 1];
913
David Greene30931542010-01-05 01:25:43 +0000914 DEBUG(dbgs() << "VREG " << virtReg << " -> "
Lang Hameseb6c8f52010-09-18 09:07:10 +0000915 << tri->getName(physReg) << " (Option: " << allocSelection << ")\n");
Lang Hames27601ef2008-11-16 12:12:54 +0000916
917 assert(physReg != 0);
918
Evan Chengb1290a62008-10-02 18:29:27 +0000919 // Add to the virt reg map and update the used phys regs.
Lang Hames27601ef2008-11-16 12:12:54 +0000920 vrm->assignVirt2Phys(virtReg, physReg);
Evan Chengb1290a62008-10-02 18:29:27 +0000921 }
922 // ...Otherwise it's a spill.
923 else {
924
925 // Make sure we ignore this virtual reg on the next round
926 // of allocation
Lang Hameseb6c8f52010-09-18 09:07:10 +0000927 vregsToAlloc.erase(virtReg);
Evan Chengb1290a62008-10-02 18:29:27 +0000928
Evan Chengb1290a62008-10-02 18:29:27 +0000929 // Insert spill ranges for this live range
Lang Hames27601ef2008-11-16 12:12:54 +0000930 const LiveInterval *spillInterval = node2LI[node];
931 double oldSpillWeight = spillInterval->weight;
Evan Chengb1290a62008-10-02 18:29:27 +0000932 SmallVector<LiveInterval*, 8> spillIs;
Lang Hames33198392010-09-02 08:27:00 +0000933 rmf->rememberUseDefs(spillInterval);
Evan Chengb1290a62008-10-02 18:29:27 +0000934 std::vector<LiveInterval*> newSpills =
Evan Chengc781a242009-05-03 18:32:42 +0000935 lis->addIntervalsForSpills(*spillInterval, spillIs, loopInfo, *vrm);
936 addStackInterval(spillInterval, mri);
Lang Hames33198392010-09-02 08:27:00 +0000937 rmf->rememberSpills(spillInterval, newSpills);
Lang Hames27601ef2008-11-16 12:12:54 +0000938
Daniel Dunbarbc84ad92009-08-20 20:01:34 +0000939 (void) oldSpillWeight;
Lang Hameseb6c8f52010-09-18 09:07:10 +0000940 DEBUG(dbgs() << "VREG " << virtReg << " -> SPILLED (Option: 0, Cost: "
Lang Hames233fd9c2009-08-18 23:34:50 +0000941 << oldSpillWeight << ", New vregs: ");
Lang Hames27601ef2008-11-16 12:12:54 +0000942
943 // Copy any newly inserted live intervals into the list of regs to
944 // allocate.
945 for (std::vector<LiveInterval*>::const_iterator
946 itr = newSpills.begin(), end = newSpills.end();
947 itr != end; ++itr) {
948
949 assert(!(*itr)->empty() && "Empty spill range.");
950
David Greene30931542010-01-05 01:25:43 +0000951 DEBUG(dbgs() << (*itr)->reg << " ");
Lang Hames27601ef2008-11-16 12:12:54 +0000952
Lang Hameseb6c8f52010-09-18 09:07:10 +0000953 vregsToAlloc.insert((*itr)->reg);
Lang Hames27601ef2008-11-16 12:12:54 +0000954 }
955
David Greene30931542010-01-05 01:25:43 +0000956 DEBUG(dbgs() << ")\n");
Evan Chengb1290a62008-10-02 18:29:27 +0000957
958 // We need another round if spill intervals were added.
959 anotherRoundNeeded |= !newSpills.empty();
960 }
961 }
962
963 return !anotherRoundNeeded;
964}
965
Lang Hameseb6c8f52010-09-18 09:07:10 +0000966bool RegAllocPBQP::mapPBQPToRegAlloc2(const PBQPRAProblem &problem,
967 const PBQP::Solution &solution) {
968 // Set to true if we have any spills
969 bool anotherRoundNeeded = false;
970
971 // Clear the existing allocation.
972 vrm->clearAllVirt();
973
974 const PBQP::Graph &g = problem.getGraph();
975 // Iterate over the nodes mapping the PBQP solution to a register
976 // assignment.
977 for (PBQP::Graph::ConstNodeItr node = g.nodesBegin(),
978 nodeEnd = g.nodesEnd();
979 node != nodeEnd; ++node) {
980 unsigned vreg = problem.getVRegForNode(node);
981 unsigned alloc = solution.getSelection(node);
982
983 if (problem.isPRegOption(vreg, alloc)) {
984 unsigned preg = problem.getPRegForOption(vreg, alloc);
985 DEBUG(dbgs() << "VREG " << vreg << " -> " << tri->getName(preg) << "\n");
986 assert(preg != 0 && "Invalid preg selected.");
987 vrm->assignVirt2Phys(vreg, preg);
988 } else if (problem.isSpillOption(vreg, alloc)) {
989 vregsToAlloc.erase(vreg);
990 const LiveInterval* spillInterval = &lis->getInterval(vreg);
991 double oldWeight = spillInterval->weight;
992 SmallVector<LiveInterval*, 8> spillIs;
993 rmf->rememberUseDefs(spillInterval);
994 std::vector<LiveInterval*> newSpills =
995 lis->addIntervalsForSpills(*spillInterval, spillIs, loopInfo, *vrm);
996 addStackInterval(spillInterval, mri);
997 rmf->rememberSpills(spillInterval, newSpills);
998
999 (void) oldWeight;
1000 DEBUG(dbgs() << "VREG " << vreg << " -> SPILLED (Cost: "
1001 << oldWeight << ", New vregs: ");
1002
1003 // Copy any newly inserted live intervals into the list of regs to
1004 // allocate.
1005 for (std::vector<LiveInterval*>::const_iterator
1006 itr = newSpills.begin(), end = newSpills.end();
1007 itr != end; ++itr) {
1008 assert(!(*itr)->empty() && "Empty spill range.");
1009 DEBUG(dbgs() << (*itr)->reg << " ");
1010 vregsToAlloc.insert((*itr)->reg);
1011 }
1012
1013 DEBUG(dbgs() << ")\n");
1014
1015 // We need another round if spill intervals were added.
1016 anotherRoundNeeded |= !newSpills.empty();
1017 } else {
1018 assert(false && "Unknown allocation option.");
1019 }
1020 }
1021
1022 return !anotherRoundNeeded;
1023}
1024
1025
1026void RegAllocPBQP::finalizeAlloc() const {
Lang Hames27601ef2008-11-16 12:12:54 +00001027 typedef LiveIntervals::iterator LIIterator;
1028 typedef LiveInterval::Ranges::const_iterator LRIterator;
1029
1030 // First allocate registers for the empty intervals.
Lang Hameseb6c8f52010-09-18 09:07:10 +00001031 for (RegSet::const_iterator
1032 itr = emptyIntervalVRegs.begin(), end = emptyIntervalVRegs.end();
Lang Hames27601ef2008-11-16 12:12:54 +00001033 itr != end; ++itr) {
Lang Hameseb6c8f52010-09-18 09:07:10 +00001034 LiveInterval *li = &lis->getInterval(*itr);
Lang Hames27601ef2008-11-16 12:12:54 +00001035
Evan Cheng90f95f82009-06-14 20:22:55 +00001036 unsigned physReg = vrm->getRegAllocPref(li->reg);
Lang Hames6699fb22009-08-06 23:32:48 +00001037
Lang Hames27601ef2008-11-16 12:12:54 +00001038 if (physReg == 0) {
1039 const TargetRegisterClass *liRC = mri->getRegClass(li->reg);
Misha Brukman2a835f92009-01-08 15:50:22 +00001040 physReg = *liRC->allocation_order_begin(*mf);
Lang Hames27601ef2008-11-16 12:12:54 +00001041 }
Misha Brukman2a835f92009-01-08 15:50:22 +00001042
1043 vrm->assignVirt2Phys(li->reg, physReg);
Lang Hames27601ef2008-11-16 12:12:54 +00001044 }
Misha Brukman2a835f92009-01-08 15:50:22 +00001045
Lang Hames27601ef2008-11-16 12:12:54 +00001046 // Finally iterate over the basic blocks to compute and set the live-in sets.
1047 SmallVector<MachineBasicBlock*, 8> liveInMBBs;
1048 MachineBasicBlock *entryMBB = &*mf->begin();
1049
1050 for (LIIterator liItr = lis->begin(), liEnd = lis->end();
1051 liItr != liEnd; ++liItr) {
1052
1053 const LiveInterval *li = liItr->second;
1054 unsigned reg = 0;
Misha Brukman2a835f92009-01-08 15:50:22 +00001055
Lang Hames27601ef2008-11-16 12:12:54 +00001056 // Get the physical register for this interval
1057 if (TargetRegisterInfo::isPhysicalRegister(li->reg)) {
1058 reg = li->reg;
1059 }
1060 else if (vrm->isAssignedReg(li->reg)) {
1061 reg = vrm->getPhys(li->reg);
1062 }
1063 else {
1064 // Ranges which are assigned a stack slot only are ignored.
1065 continue;
1066 }
1067
Lang Hamesb0e519f2009-05-17 23:50:36 +00001068 if (reg == 0) {
Lang Hames6699fb22009-08-06 23:32:48 +00001069 // Filter out zero regs - they're for intervals that were spilled.
Lang Hamesb0e519f2009-05-17 23:50:36 +00001070 continue;
1071 }
1072
Lang Hames27601ef2008-11-16 12:12:54 +00001073 // Iterate over the ranges of the current interval...
1074 for (LRIterator lrItr = li->begin(), lrEnd = li->end();
1075 lrItr != lrEnd; ++lrItr) {
Misha Brukman2a835f92009-01-08 15:50:22 +00001076
Lang Hames27601ef2008-11-16 12:12:54 +00001077 // Find the set of basic blocks which this range is live into...
1078 if (lis->findLiveInMBBs(lrItr->start, lrItr->end, liveInMBBs)) {
1079 // And add the physreg for this interval to their live-in sets.
1080 for (unsigned i = 0; i < liveInMBBs.size(); ++i) {
1081 if (liveInMBBs[i] != entryMBB) {
1082 if (!liveInMBBs[i]->isLiveIn(reg)) {
1083 liveInMBBs[i]->addLiveIn(reg);
1084 }
1085 }
1086 }
1087 liveInMBBs.clear();
1088 }
1089 }
1090 }
Misha Brukman2a835f92009-01-08 15:50:22 +00001091
Lang Hames27601ef2008-11-16 12:12:54 +00001092}
1093
Lang Hameseb6c8f52010-09-18 09:07:10 +00001094bool RegAllocPBQP::runOnMachineFunction(MachineFunction &MF) {
Lang Hames27601ef2008-11-16 12:12:54 +00001095
Evan Chengb1290a62008-10-02 18:29:27 +00001096 mf = &MF;
1097 tm = &mf->getTarget();
1098 tri = tm->getRegisterInfo();
Lang Hames27601ef2008-11-16 12:12:54 +00001099 tii = tm->getInstrInfo();
Lang Hames233a60e2009-11-03 23:52:08 +00001100 mri = &mf->getRegInfo();
Evan Chengb1290a62008-10-02 18:29:27 +00001101
Lang Hames27601ef2008-11-16 12:12:54 +00001102 lis = &getAnalysis<LiveIntervals>();
1103 lss = &getAnalysis<LiveStacks>();
Evan Chengb1290a62008-10-02 18:29:27 +00001104 loopInfo = &getAnalysis<MachineLoopInfo>();
Lang Hames33198392010-09-02 08:27:00 +00001105 rmf = &getAnalysis<RenderMachineFunction>();
Evan Chengb1290a62008-10-02 18:29:27 +00001106
Owen Anderson49c8aa02009-03-13 05:55:11 +00001107 vrm = &getAnalysis<VirtRegMap>();
Evan Chengb1290a62008-10-02 18:29:27 +00001108
Lang Hames54cc2ef2010-07-19 15:22:28 +00001109
Lang Hames030c4bf2010-01-26 04:49:58 +00001110 DEBUG(dbgs() << "PBQP Register Allocating for " << mf->getFunction()->getName() << "\n");
Lang Hames27601ef2008-11-16 12:12:54 +00001111
Evan Chengb1290a62008-10-02 18:29:27 +00001112 // Allocator main loop:
Misha Brukman2a835f92009-01-08 15:50:22 +00001113 //
Evan Chengb1290a62008-10-02 18:29:27 +00001114 // * Map current regalloc problem to a PBQP problem
1115 // * Solve the PBQP problem
1116 // * Map the solution back to a register allocation
1117 // * Spill if necessary
Misha Brukman2a835f92009-01-08 15:50:22 +00001118 //
Evan Chengb1290a62008-10-02 18:29:27 +00001119 // This process is continued till no more spills are generated.
1120
Lang Hames27601ef2008-11-16 12:12:54 +00001121 // Find the vreg intervals in need of allocation.
1122 findVRegIntervalsToAlloc();
Misha Brukman2a835f92009-01-08 15:50:22 +00001123
Lang Hames27601ef2008-11-16 12:12:54 +00001124 // If there are non-empty intervals allocate them using pbqp.
Lang Hameseb6c8f52010-09-18 09:07:10 +00001125 if (!vregsToAlloc.empty()) {
Evan Chengb1290a62008-10-02 18:29:27 +00001126
Lang Hames27601ef2008-11-16 12:12:54 +00001127 bool pbqpAllocComplete = false;
1128 unsigned round = 0;
1129
Lang Hameseb6c8f52010-09-18 09:07:10 +00001130 if (!pbqpBuilder) {
1131 while (!pbqpAllocComplete) {
1132 DEBUG(dbgs() << " PBQP Regalloc round " << round << ":\n");
Lang Hames27601ef2008-11-16 12:12:54 +00001133
Lang Hameseb6c8f52010-09-18 09:07:10 +00001134 PBQP::Graph problem = constructPBQPProblem();
1135 PBQP::Solution solution =
1136 PBQP::HeuristicSolver<PBQP::Heuristics::Briggs>::solve(problem);
Lang Hames233fd9c2009-08-18 23:34:50 +00001137
Lang Hameseb6c8f52010-09-18 09:07:10 +00001138 pbqpAllocComplete = mapPBQPToRegAlloc(solution);
Lang Hames27601ef2008-11-16 12:12:54 +00001139
Lang Hameseb6c8f52010-09-18 09:07:10 +00001140 ++round;
1141 }
1142 } else {
1143 while (!pbqpAllocComplete) {
1144 DEBUG(dbgs() << " PBQP Regalloc round " << round << ":\n");
1145
1146 std::auto_ptr<PBQPRAProblem> problem =
Lang Hamese9c93562010-09-21 13:19:36 +00001147 builder->build(mf, lis, loopInfo, vregsToAlloc);
Lang Hameseb6c8f52010-09-18 09:07:10 +00001148 PBQP::Solution solution =
Lang Hamese9c93562010-09-21 13:19:36 +00001149 PBQP::HeuristicSolver<PBQP::Heuristics::Briggs>::solve(
1150 problem->getGraph());
Lang Hameseb6c8f52010-09-18 09:07:10 +00001151
1152 pbqpAllocComplete = mapPBQPToRegAlloc2(*problem, solution);
1153
1154 ++round;
1155 }
Lang Hames27601ef2008-11-16 12:12:54 +00001156 }
Evan Chengb1290a62008-10-02 18:29:27 +00001157 }
1158
Lang Hames27601ef2008-11-16 12:12:54 +00001159 // Finalise allocation, allocate empty ranges.
1160 finalizeAlloc();
Evan Chengb1290a62008-10-02 18:29:27 +00001161
Lang Hamesc4bcc772010-07-20 07:41:44 +00001162 rmf->renderMachineFunction("After PBQP register allocation.", vrm);
1163
Lang Hameseb6c8f52010-09-18 09:07:10 +00001164 vregsToAlloc.clear();
1165 emptyIntervalVRegs.clear();
Lang Hames27601ef2008-11-16 12:12:54 +00001166 li2Node.clear();
1167 node2LI.clear();
1168 allowedSets.clear();
Lang Hames030c4bf2010-01-26 04:49:58 +00001169 problemNodes.clear();
Lang Hames27601ef2008-11-16 12:12:54 +00001170
David Greene30931542010-01-05 01:25:43 +00001171 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *vrm << "\n");
Lang Hames27601ef2008-11-16 12:12:54 +00001172
Lang Hames87e3bca2009-05-06 02:36:21 +00001173 // Run rewriter
1174 std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
1175
1176 rewriter->runOnMachineFunction(*mf, *vrm, lis);
Lang Hames27601ef2008-11-16 12:12:54 +00001177
Misha Brukman2a835f92009-01-08 15:50:22 +00001178 return true;
Evan Chengb1290a62008-10-02 18:29:27 +00001179}
1180
Lang Hameseb6c8f52010-09-18 09:07:10 +00001181FunctionPass* createPBQPRegisterAllocator() {
Lang Hamese9c93562010-09-21 13:19:36 +00001182 if (pbqpCoalescing) {
1183 return new RegAllocPBQP(
1184 std::auto_ptr<PBQPBuilder>(new PBQPBuilderWithCoalescing()));
1185 } // else
1186 return new RegAllocPBQP(
1187 std::auto_ptr<PBQPBuilder>(new PBQPBuilder()));
Evan Chengb1290a62008-10-02 18:29:27 +00001188}
1189
Lang Hameseb6c8f52010-09-18 09:07:10 +00001190}
Evan Chengb1290a62008-10-02 18:29:27 +00001191
1192#undef DEBUG_TYPE