blob: 101b30bf3b6572946a4d9df62a7668625d2cd4fa [file] [log] [blame]
Evan Chengb25f4632008-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 Brukmanda467482009-01-08 15:50:22 +00009//
Evan Chengb25f4632008-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 Brukmanda467482009-01-08 15:50:22 +000015// code is inserted and the process repeated.
Evan Chengb25f4632008-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 Brukman572f2642009-01-08 16:40:25 +000019// allocation, see the following papers:
Evan Chengb25f4632008-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 Brukmanda467482009-01-08 15:50:22 +000029//
Evan Chengb25f4632008-10-02 18:29:27 +000030//===----------------------------------------------------------------------===//
31
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/CodeGen/RegAllocPBQP.h"
Rafael Espindolafef3c642011-06-26 21:41:06 +000033#include "RegisterCoalescer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "Spiller.h"
Lang Hamesb13b6a02011-12-06 01:45:57 +000035#include "llvm/Analysis/AliasAnalysis.h"
Lang Hamesd17e2962009-12-14 06:49:42 +000036#include "llvm/CodeGen/CalcSpillWeights.h"
Evan Chengb25f4632008-10-02 18:29:27 +000037#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000038#include "llvm/CodeGen/LiveRangeEdit.h"
Lang Hames49ab8bc2008-11-16 12:12:54 +000039#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000040#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Lang Hamesb13b6a02011-12-06 01:45:57 +000041#include "llvm/CodeGen/MachineDominators.h"
Misha Brukmanda467482009-01-08 15:50:22 +000042#include "llvm/CodeGen/MachineFunctionPass.h"
Lang Hames7d99d792013-07-01 20:47:47 +000043#include "llvm/CodeGen/MachineLoopInfo.h"
Misha Brukmanda467482009-01-08 15:50:22 +000044#include "llvm/CodeGen/MachineRegisterInfo.h"
45#include "llvm/CodeGen/RegAllocRegistry.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000046#include "llvm/CodeGen/VirtRegMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Module.h"
Evan Chengb25f4632008-10-02 18:29:27 +000048#include "llvm/Support/Debug.h"
Benjamin Kramerd59664f2014-04-29 23:26:49 +000049#include "llvm/Support/FileSystem.h"
Matthias Braunc07cbc82015-12-04 01:31:59 +000050#include "llvm/Support/Printable.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000051#include "llvm/Support/raw_ostream.h"
Misha Brukmanda467482009-01-08 15:50:22 +000052#include "llvm/Target/TargetInstrInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000053#include "llvm/Target/TargetSubtargetInfo.h"
Misha Brukmanda467482009-01-08 15:50:22 +000054#include <limits>
Misha Brukmanda467482009-01-08 15:50:22 +000055#include <memory>
Lang Hamesad0962a2014-10-18 17:26:07 +000056#include <queue>
Evan Chengb25f4632008-10-02 18:29:27 +000057#include <set>
Lang Hames95e021f2012-03-26 23:07:23 +000058#include <sstream>
Evan Chengb25f4632008-10-02 18:29:27 +000059#include <vector>
Evan Chengb25f4632008-10-02 18:29:27 +000060
Lang Hamesfd1bc422010-09-23 04:28:54 +000061using namespace llvm;
Lang Hamescb1e1012010-09-18 09:07:10 +000062
Chandler Carruth1b9dde02014-04-22 02:02:50 +000063#define DEBUG_TYPE "regalloc"
64
Evan Chengb25f4632008-10-02 18:29:27 +000065static RegisterRegAlloc
Lang Hames8f31f442014-10-09 18:20:51 +000066RegisterPBQPRepAlloc("pbqp", "PBQP register allocator",
Lang Hamesfd1bc422010-09-23 04:28:54 +000067 createDefaultPBQPRegisterAllocator);
Evan Chengb25f4632008-10-02 18:29:27 +000068
Lang Hames11732ad2009-08-19 01:36:14 +000069static cl::opt<bool>
Lang Hames8f31f442014-10-09 18:20:51 +000070PBQPCoalescing("pbqp-coalescing",
Lang Hames090c7e82010-01-26 04:49:58 +000071 cl::desc("Attempt coalescing during PBQP register allocation."),
72 cl::init(false), cl::Hidden);
Lang Hames11732ad2009-08-19 01:36:14 +000073
Lang Hames95e021f2012-03-26 23:07:23 +000074#ifndef NDEBUG
75static cl::opt<bool>
Lang Hames8f31f442014-10-09 18:20:51 +000076PBQPDumpGraphs("pbqp-dump-graphs",
Lang Hames95e021f2012-03-26 23:07:23 +000077 cl::desc("Dump graphs for each function/round in the compilation unit."),
78 cl::init(false), cl::Hidden);
79#endif
80
Lang Hamesfd1bc422010-09-23 04:28:54 +000081namespace {
82
83///
84/// PBQP based allocators solve the register allocation problem by mapping
85/// register allocation problems to Partitioned Boolean Quadratic
86/// Programming problems.
87class RegAllocPBQP : public MachineFunctionPass {
88public:
89
90 static char ID;
91
92 /// Construct a PBQP register allocator.
Lang Hames8f31f442014-10-09 18:20:51 +000093 RegAllocPBQP(char *cPassID = nullptr)
94 : MachineFunctionPass(ID), customPassID(cPassID) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000095 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
96 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
Owen Anderson6c18d1a2010-10-19 17:21:58 +000097 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
Owen Anderson6c18d1a2010-10-19 17:21:58 +000098 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Owen Anderson6c18d1a2010-10-19 17:21:58 +000099 }
Lang Hamesfd1bc422010-09-23 04:28:54 +0000100
101 /// Return the pass name.
Mehdi Amini117296c2016-10-01 02:56:57 +0000102 StringRef getPassName() const override { return "PBQP Register Allocator"; }
Lang Hamesfd1bc422010-09-23 04:28:54 +0000103
104 /// PBQP analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000105 void getAnalysisUsage(AnalysisUsage &au) const override;
Lang Hamesfd1bc422010-09-23 04:28:54 +0000106
107 /// Perform register allocation
Craig Topper4584cd52014-03-07 09:26:03 +0000108 bool runOnMachineFunction(MachineFunction &MF) override;
Lang Hamesfd1bc422010-09-23 04:28:54 +0000109
Matthias Braun90799ce2016-08-23 21:19:49 +0000110 MachineFunctionProperties getRequiredProperties() const override {
111 return MachineFunctionProperties().set(
112 MachineFunctionProperties::Property::NoPHIs);
113 }
114
Lang Hamesfd1bc422010-09-23 04:28:54 +0000115private:
116
117 typedef std::map<const LiveInterval*, unsigned> LI2NodeMap;
118 typedef std::vector<const LiveInterval*> Node2LIMap;
119 typedef std::vector<unsigned> AllowedSet;
120 typedef std::vector<AllowedSet> AllowedSetMap;
121 typedef std::pair<unsigned, unsigned> RegPair;
122 typedef std::map<RegPair, PBQP::PBQPNum> CoalesceMap;
Lang Hamesfd1bc422010-09-23 04:28:54 +0000123 typedef std::set<unsigned> RegSet;
124
Lang Hames934625e2011-06-17 07:09:01 +0000125 char *customPassID;
126
Lang Hames8f31f442014-10-09 18:20:51 +0000127 RegSet VRegsToAlloc, EmptyIntervalVRegs;
Lang Hamesfd1bc422010-09-23 04:28:54 +0000128
Wei Mi9a16d652016-04-13 03:08:27 +0000129 /// Inst which is a def of an original reg and whose defs are already all
130 /// dead after remat is saved in DeadRemats. The deletion of such inst is
131 /// postponed till all the allocations are done, so its remat expr is
132 /// always available for the remat of all the siblings of the original reg.
133 SmallPtrSet<MachineInstr *, 32> DeadRemats;
134
Lang Hamesfd1bc422010-09-23 04:28:54 +0000135 /// \brief Finds the initial set of vreg intervals to allocate.
Lang Hames8f31f442014-10-09 18:20:51 +0000136 void findVRegIntervalsToAlloc(const MachineFunction &MF, LiveIntervals &LIS);
137
138 /// \brief Constructs an initial graph.
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000139 void initializeGraph(PBQPRAGraph &G, VirtRegMap &VRM, Spiller &VRegSpiller);
140
141 /// \brief Spill the given VReg.
142 void spillVReg(unsigned VReg, SmallVectorImpl<unsigned> &NewIntervals,
143 MachineFunction &MF, LiveIntervals &LIS, VirtRegMap &VRM,
144 Spiller &VRegSpiller);
Lang Hamesfd1bc422010-09-23 04:28:54 +0000145
Lang Hamesfd1bc422010-09-23 04:28:54 +0000146 /// \brief Given a solved PBQP problem maps this solution back to a register
147 /// assignment.
Lang Hames8f31f442014-10-09 18:20:51 +0000148 bool mapPBQPToRegAlloc(const PBQPRAGraph &G,
149 const PBQP::Solution &Solution,
150 VirtRegMap &VRM,
151 Spiller &VRegSpiller);
Lang Hamesfd1bc422010-09-23 04:28:54 +0000152
153 /// \brief Postprocessing before final spilling. Sets basic block "live in"
154 /// variables.
Lang Hames8f31f442014-10-09 18:20:51 +0000155 void finalizeAlloc(MachineFunction &MF, LiveIntervals &LIS,
156 VirtRegMap &VRM) const;
Lang Hamesfd1bc422010-09-23 04:28:54 +0000157
Wei Mi9a16d652016-04-13 03:08:27 +0000158 void postOptimization(Spiller &VRegSpiller, LiveIntervals &LIS);
Lang Hamesfd1bc422010-09-23 04:28:54 +0000159};
160
Lang Hamescb1e1012010-09-18 09:07:10 +0000161char RegAllocPBQP::ID = 0;
Evan Chengb25f4632008-10-02 18:29:27 +0000162
Lang Hames8f31f442014-10-09 18:20:51 +0000163/// @brief Set spill costs for each node in the PBQP reg-alloc graph.
164class SpillCosts : public PBQPRAConstraint {
165public:
166 void apply(PBQPRAGraph &G) override {
167 LiveIntervals &LIS = G.getMetadata().LIS;
168
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +0000169 // A minimum spill costs, so that register constraints can can be set
170 // without normalization in the [0.0:MinSpillCost( interval.
171 const PBQP::PBQPNum MinSpillCost = 10.0;
172
Lang Hames8f31f442014-10-09 18:20:51 +0000173 for (auto NId : G.nodeIds()) {
174 PBQP::PBQPNum SpillCost =
175 LIS.getInterval(G.getNodeMetadata(NId).getVReg()).weight;
176 if (SpillCost == 0.0)
177 SpillCost = std::numeric_limits<PBQP::PBQPNum>::min();
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +0000178 else
179 SpillCost += MinSpillCost;
Lang Hames8f31f442014-10-09 18:20:51 +0000180 PBQPRAGraph::RawVector NodeCosts(G.getNodeCosts(NId));
181 NodeCosts[PBQP::RegAlloc::getSpillOptionIdx()] = SpillCost;
182 G.setNodeCosts(NId, std::move(NodeCosts));
183 }
184 }
185};
186
187/// @brief Add interference edges between overlapping vregs.
188class Interference : public PBQPRAConstraint {
Lang Hamesad0962a2014-10-18 17:26:07 +0000189private:
190
Lang Hames5fe30ca2014-10-27 17:44:25 +0000191 typedef const PBQP::RegAlloc::AllowedRegVector* AllowedRegVecPtr;
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000192 typedef std::pair<AllowedRegVecPtr, AllowedRegVecPtr> IKey;
193 typedef DenseMap<IKey, PBQPRAGraph::MatrixPtr> IMatrixCache;
194 typedef DenseSet<IKey> DisjointAllowedRegsCache;
Arnaud A. de Grandmaisond8ed0d32015-03-05 09:12:59 +0000195 typedef std::pair<PBQP::GraphBase::NodeId, PBQP::GraphBase::NodeId> IEdgeKey;
196 typedef DenseSet<IEdgeKey> IEdgeCache;
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000197
198 bool haveDisjointAllowedRegs(const PBQPRAGraph &G, PBQPRAGraph::NodeId NId,
199 PBQPRAGraph::NodeId MId,
200 const DisjointAllowedRegsCache &D) const {
201 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs();
202 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs();
203
204 if (NRegs == MRegs)
205 return false;
206
207 if (NRegs < MRegs)
208 return D.count(IKey(NRegs, MRegs)) > 0;
Arnaud A. de Grandmaisona57ca812015-03-01 21:22:50 +0000209
210 return D.count(IKey(MRegs, NRegs)) > 0;
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000211 }
212
213 void setDisjointAllowedRegs(const PBQPRAGraph &G, PBQPRAGraph::NodeId NId,
214 PBQPRAGraph::NodeId MId,
215 DisjointAllowedRegsCache &D) {
216 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs();
217 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs();
218
219 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself");
220
221 if (NRegs < MRegs)
222 D.insert(IKey(NRegs, MRegs));
223 else
224 D.insert(IKey(MRegs, NRegs));
225 }
Lang Hames5fe30ca2014-10-27 17:44:25 +0000226
Lang Hamesad0962a2014-10-18 17:26:07 +0000227 // Holds (Interval, CurrentSegmentID, and NodeId). The first two are required
228 // for the fast interference graph construction algorithm. The last is there
229 // to save us from looking up node ids via the VRegToNode map in the graph
230 // metadata.
231 typedef std::tuple<LiveInterval*, size_t, PBQP::GraphBase::NodeId>
232 IntervalInfo;
233
234 static SlotIndex getStartPoint(const IntervalInfo &I) {
235 return std::get<0>(I)->segments[std::get<1>(I)].start;
236 }
237
238 static SlotIndex getEndPoint(const IntervalInfo &I) {
239 return std::get<0>(I)->segments[std::get<1>(I)].end;
240 }
241
242 static PBQP::GraphBase::NodeId getNodeId(const IntervalInfo &I) {
243 return std::get<2>(I);
244 }
245
246 static bool lowestStartPoint(const IntervalInfo &I1,
247 const IntervalInfo &I2) {
248 // Condition reversed because priority queue has the *highest* element at
249 // the front, rather than the lowest.
250 return getStartPoint(I1) > getStartPoint(I2);
251 }
252
253 static bool lowestEndPoint(const IntervalInfo &I1,
254 const IntervalInfo &I2) {
255 SlotIndex E1 = getEndPoint(I1);
256 SlotIndex E2 = getEndPoint(I2);
257
258 if (E1 < E2)
259 return true;
260
261 if (E1 > E2)
262 return false;
263
264 // If two intervals end at the same point, we need a way to break the tie or
265 // the set will assume they're actually equal and refuse to insert a
266 // "duplicate". Just compare the vregs - fast and guaranteed unique.
267 return std::get<0>(I1)->reg < std::get<0>(I2)->reg;
268 }
269
270 static bool isAtLastSegment(const IntervalInfo &I) {
271 return std::get<1>(I) == std::get<0>(I)->size() - 1;
272 }
273
274 static IntervalInfo nextSegment(const IntervalInfo &I) {
275 return std::make_tuple(std::get<0>(I), std::get<1>(I) + 1, std::get<2>(I));
276 }
277
Lang Hames8f31f442014-10-09 18:20:51 +0000278public:
279
280 void apply(PBQPRAGraph &G) override {
Lang Hamesad0962a2014-10-18 17:26:07 +0000281 // The following is loosely based on the linear scan algorithm introduced in
282 // "Linear Scan Register Allocation" by Poletto and Sarkar. This version
283 // isn't linear, because the size of the active set isn't bound by the
284 // number of registers, but rather the size of the largest clique in the
285 // graph. Still, we expect this to be better than N^2.
Lang Hames8f31f442014-10-09 18:20:51 +0000286 LiveIntervals &LIS = G.getMetadata().LIS;
Lang Hames5fe30ca2014-10-27 17:44:25 +0000287
288 // Interferenc matrices are incredibly regular - they're only a function of
289 // the allowed sets, so we cache them to avoid the overhead of constructing
290 // and uniquing them.
291 IMatrixCache C;
Lang Hames8f31f442014-10-09 18:20:51 +0000292
Arnaud A. de Grandmaisond8ed0d32015-03-05 09:12:59 +0000293 // Finding an edge is expensive in the worst case (O(max_clique(G))). So
294 // cache locally edges we have already seen.
295 IEdgeCache EC;
296
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000297 // Cache known disjoint allowed registers pairs
298 DisjointAllowedRegsCache D;
299
Lang Hamesad0962a2014-10-18 17:26:07 +0000300 typedef std::set<IntervalInfo, decltype(&lowestEndPoint)> IntervalSet;
301 typedef std::priority_queue<IntervalInfo, std::vector<IntervalInfo>,
302 decltype(&lowestStartPoint)> IntervalQueue;
303 IntervalSet Active(lowestEndPoint);
304 IntervalQueue Inactive(lowestStartPoint);
Lang Hames8f31f442014-10-09 18:20:51 +0000305
Lang Hamesad0962a2014-10-18 17:26:07 +0000306 // Start by building the inactive set.
307 for (auto NId : G.nodeIds()) {
308 unsigned VReg = G.getNodeMetadata(NId).getVReg();
309 LiveInterval &LI = LIS.getInterval(VReg);
310 assert(!LI.empty() && "PBQP graph contains node for empty interval");
311 Inactive.push(std::make_tuple(&LI, 0, NId));
312 }
Lang Hames8f31f442014-10-09 18:20:51 +0000313
Lang Hamesad0962a2014-10-18 17:26:07 +0000314 while (!Inactive.empty()) {
315 // Tentatively grab the "next" interval - this choice may be overriden
316 // below.
317 IntervalInfo Cur = Inactive.top();
318
319 // Retire any active intervals that end before Cur starts.
320 IntervalSet::iterator RetireItr = Active.begin();
321 while (RetireItr != Active.end() &&
322 (getEndPoint(*RetireItr) <= getStartPoint(Cur))) {
323 // If this interval has subsequent segments, add the next one to the
324 // inactive list.
325 if (!isAtLastSegment(*RetireItr))
326 Inactive.push(nextSegment(*RetireItr));
327
328 ++RetireItr;
Lang Hames8f31f442014-10-09 18:20:51 +0000329 }
Lang Hamesad0962a2014-10-18 17:26:07 +0000330 Active.erase(Active.begin(), RetireItr);
331
332 // One of the newly retired segments may actually start before the
333 // Cur segment, so re-grab the front of the inactive list.
334 Cur = Inactive.top();
335 Inactive.pop();
336
337 // At this point we know that Cur overlaps all active intervals. Add the
338 // interference edges.
339 PBQP::GraphBase::NodeId NId = getNodeId(Cur);
340 for (const auto &A : Active) {
341 PBQP::GraphBase::NodeId MId = getNodeId(A);
342
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000343 // Do not add an edge when the nodes' allowed registers do not
344 // intersect: there is obviously no interference.
345 if (haveDisjointAllowedRegs(G, NId, MId, D))
346 continue;
347
Lang Hamesad0962a2014-10-18 17:26:07 +0000348 // Check that we haven't already added this edge
Arnaud A. de Grandmaisond8ed0d32015-03-05 09:12:59 +0000349 IEdgeKey EK(std::min(NId, MId), std::max(NId, MId));
350 if (EC.count(EK))
Lang Hamesad0962a2014-10-18 17:26:07 +0000351 continue;
352
353 // This is a new edge - add it to the graph.
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000354 if (!createInterferenceEdge(G, NId, MId, C))
355 setDisjointAllowedRegs(G, NId, MId, D);
Arnaud A. de Grandmaisond8ed0d32015-03-05 09:12:59 +0000356 else
357 EC.insert(EK);
Lang Hamesad0962a2014-10-18 17:26:07 +0000358 }
359
360 // Finally, add Cur to the Active set.
361 Active.insert(Cur);
Lang Hames8f31f442014-10-09 18:20:51 +0000362 }
363 }
364
365private:
366
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000367 // Create an Interference edge and add it to the graph, unless it is
368 // a null matrix, meaning the nodes' allowed registers do not have any
369 // interference. This case occurs frequently between integer and floating
370 // point registers for example.
371 // return true iff both nodes interferes.
372 bool createInterferenceEdge(PBQPRAGraph &G,
373 PBQPRAGraph::NodeId NId, PBQPRAGraph::NodeId MId,
374 IMatrixCache &C) {
Lang Hames5fe30ca2014-10-27 17:44:25 +0000375
376 const TargetRegisterInfo &TRI =
Eric Christopher7592b0c2015-01-27 08:27:06 +0000377 *G.getMetadata().MF.getSubtarget().getRegisterInfo();
Lang Hames5fe30ca2014-10-27 17:44:25 +0000378 const auto &NRegs = G.getNodeMetadata(NId).getAllowedRegs();
379 const auto &MRegs = G.getNodeMetadata(MId).getAllowedRegs();
380
381 // Try looking the edge costs up in the IMatrixCache first.
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000382 IKey K(&NRegs, &MRegs);
Lang Hames5fe30ca2014-10-27 17:44:25 +0000383 IMatrixCache::iterator I = C.find(K);
384 if (I != C.end()) {
385 G.addEdgeBypassingCostAllocator(NId, MId, I->second);
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000386 return true;
Lang Hames5fe30ca2014-10-27 17:44:25 +0000387 }
388
389 PBQPRAGraph::RawMatrix M(NRegs.size() + 1, MRegs.size() + 1, 0);
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000390 bool NodesInterfere = false;
Lang Hames5fe30ca2014-10-27 17:44:25 +0000391 for (unsigned I = 0; I != NRegs.size(); ++I) {
392 unsigned PRegN = NRegs[I];
393 for (unsigned J = 0; J != MRegs.size(); ++J) {
394 unsigned PRegM = MRegs[J];
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000395 if (TRI.regsOverlap(PRegN, PRegM)) {
Lang Hames8f31f442014-10-09 18:20:51 +0000396 M[I + 1][J + 1] = std::numeric_limits<PBQP::PBQPNum>::infinity();
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000397 NodesInterfere = true;
398 }
Lang Hames8f31f442014-10-09 18:20:51 +0000399 }
400 }
401
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000402 if (!NodesInterfere)
403 return false;
404
Lang Hames5fe30ca2014-10-27 17:44:25 +0000405 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M));
406 C[K] = G.getEdgeCostsPtr(EId);
Arnaud A. de Grandmaison21fa0982015-03-01 20:39:34 +0000407
408 return true;
Lang Hames8f31f442014-10-09 18:20:51 +0000409 }
410};
411
412
413class Coalescing : public PBQPRAConstraint {
414public:
415 void apply(PBQPRAGraph &G) override {
416 MachineFunction &MF = G.getMetadata().MF;
417 MachineBlockFrequencyInfo &MBFI = G.getMetadata().MBFI;
Eric Christopher7592b0c2015-01-27 08:27:06 +0000418 CoalescerPair CP(*MF.getSubtarget().getRegisterInfo());
Lang Hames8f31f442014-10-09 18:20:51 +0000419
420 // Scan the machine function and add a coalescing cost whenever CoalescerPair
421 // gives the Ok.
422 for (const auto &MBB : MF) {
423 for (const auto &MI : MBB) {
424
425 // Skip not-coalescable or already coalesced copies.
426 if (!CP.setRegisters(&MI) || CP.getSrcReg() == CP.getDstReg())
427 continue;
428
429 unsigned DstReg = CP.getDstReg();
430 unsigned SrcReg = CP.getSrcReg();
431
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +0000432 const float Scale = 1.0f / MBFI.getEntryFreq();
433 PBQP::PBQPNum CBenefit = MBFI.getBlockFreq(&MBB).getFrequency() * Scale;
Lang Hames8f31f442014-10-09 18:20:51 +0000434
435 if (CP.isPhys()) {
436 if (!MF.getRegInfo().isAllocatable(DstReg))
437 continue;
438
439 PBQPRAGraph::NodeId NId = G.getMetadata().getNodeIdForVReg(SrcReg);
440
Lang Hames5fe30ca2014-10-27 17:44:25 +0000441 const PBQPRAGraph::NodeMetadata::AllowedRegVector &Allowed =
442 G.getNodeMetadata(NId).getAllowedRegs();
Lang Hames8f31f442014-10-09 18:20:51 +0000443
444 unsigned PRegOpt = 0;
445 while (PRegOpt < Allowed.size() && Allowed[PRegOpt] != DstReg)
446 ++PRegOpt;
447
448 if (PRegOpt < Allowed.size()) {
449 PBQPRAGraph::RawVector NewCosts(G.getNodeCosts(NId));
Arnaud A. de Grandmaisond3648d02014-10-21 16:24:15 +0000450 NewCosts[PRegOpt + 1] -= CBenefit;
Lang Hames8f31f442014-10-09 18:20:51 +0000451 G.setNodeCosts(NId, std::move(NewCosts));
452 }
453 } else {
454 PBQPRAGraph::NodeId N1Id = G.getMetadata().getNodeIdForVReg(DstReg);
455 PBQPRAGraph::NodeId N2Id = G.getMetadata().getNodeIdForVReg(SrcReg);
Lang Hames5fe30ca2014-10-27 17:44:25 +0000456 const PBQPRAGraph::NodeMetadata::AllowedRegVector *Allowed1 =
457 &G.getNodeMetadata(N1Id).getAllowedRegs();
458 const PBQPRAGraph::NodeMetadata::AllowedRegVector *Allowed2 =
459 &G.getNodeMetadata(N2Id).getAllowedRegs();
Lang Hames8f31f442014-10-09 18:20:51 +0000460
461 PBQPRAGraph::EdgeId EId = G.findEdge(N1Id, N2Id);
462 if (EId == G.invalidEdgeId()) {
463 PBQPRAGraph::RawMatrix Costs(Allowed1->size() + 1,
464 Allowed2->size() + 1, 0);
465 addVirtRegCoalesce(Costs, *Allowed1, *Allowed2, CBenefit);
466 G.addEdge(N1Id, N2Id, std::move(Costs));
467 } else {
468 if (G.getEdgeNode1Id(EId) == N2Id) {
469 std::swap(N1Id, N2Id);
470 std::swap(Allowed1, Allowed2);
471 }
472 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId));
473 addVirtRegCoalesce(Costs, *Allowed1, *Allowed2, CBenefit);
Arnaud A. de Grandmaisonde790262015-02-11 08:25:36 +0000474 G.updateEdgeCosts(EId, std::move(Costs));
Lang Hames8f31f442014-10-09 18:20:51 +0000475 }
476 }
477 }
478 }
479 }
480
481private:
482
483 void addVirtRegCoalesce(
Lang Hames5fe30ca2014-10-27 17:44:25 +0000484 PBQPRAGraph::RawMatrix &CostMat,
485 const PBQPRAGraph::NodeMetadata::AllowedRegVector &Allowed1,
486 const PBQPRAGraph::NodeMetadata::AllowedRegVector &Allowed2,
487 PBQP::PBQPNum Benefit) {
Lang Hames8f31f442014-10-09 18:20:51 +0000488 assert(CostMat.getRows() == Allowed1.size() + 1 && "Size mismatch.");
489 assert(CostMat.getCols() == Allowed2.size() + 1 && "Size mismatch.");
490 for (unsigned I = 0; I != Allowed1.size(); ++I) {
491 unsigned PReg1 = Allowed1[I];
492 for (unsigned J = 0; J != Allowed2.size(); ++J) {
493 unsigned PReg2 = Allowed2[J];
494 if (PReg1 == PReg2)
Arnaud A. de Grandmaisond3648d02014-10-21 16:24:15 +0000495 CostMat[I + 1][J + 1] -= Benefit;
Lang Hames8f31f442014-10-09 18:20:51 +0000496 }
497 }
498 }
499
500};
501
Lang Hamesfd1bc422010-09-23 04:28:54 +0000502} // End anonymous namespace.
503
Lang Hames8f31f442014-10-09 18:20:51 +0000504// Out-of-line destructor/anchor for PBQPRAConstraint.
505PBQPRAConstraint::~PBQPRAConstraint() {}
506void PBQPRAConstraint::anchor() {}
507void PBQPRAConstraintList::anchor() {}
Lang Hamescb1e1012010-09-18 09:07:10 +0000508
509void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
Lang Hamesb13b6a02011-12-06 01:45:57 +0000510 au.setPreservesCFG();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000511 au.addRequired<AAResultsWrapperPass>();
512 au.addPreserved<AAResultsWrapperPass>();
Lang Hamescb1e1012010-09-18 09:07:10 +0000513 au.addRequired<SlotIndexes>();
514 au.addPreserved<SlotIndexes>();
515 au.addRequired<LiveIntervals>();
Lang Hames8ce99f22012-10-04 04:50:53 +0000516 au.addPreserved<LiveIntervals>();
Lang Hamescb1e1012010-09-18 09:07:10 +0000517 //au.addRequiredID(SplitCriticalEdgesID);
Lang Hames934625e2011-06-17 07:09:01 +0000518 if (customPassID)
519 au.addRequiredID(*customPassID);
Lang Hamescb1e1012010-09-18 09:07:10 +0000520 au.addRequired<LiveStacks>();
521 au.addPreserved<LiveStacks>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000522 au.addRequired<MachineBlockFrequencyInfo>();
523 au.addPreserved<MachineBlockFrequencyInfo>();
Lang Hames7d99d792013-07-01 20:47:47 +0000524 au.addRequired<MachineLoopInfo>();
525 au.addPreserved<MachineLoopInfo>();
Lang Hamesb13b6a02011-12-06 01:45:57 +0000526 au.addRequired<MachineDominatorTree>();
527 au.addPreserved<MachineDominatorTree>();
Lang Hamescb1e1012010-09-18 09:07:10 +0000528 au.addRequired<VirtRegMap>();
Lang Hames8ce99f22012-10-04 04:50:53 +0000529 au.addPreserved<VirtRegMap>();
Lang Hamescb1e1012010-09-18 09:07:10 +0000530 MachineFunctionPass::getAnalysisUsage(au);
531}
532
Lang Hames8f31f442014-10-09 18:20:51 +0000533void RegAllocPBQP::findVRegIntervalsToAlloc(const MachineFunction &MF,
534 LiveIntervals &LIS) {
535 const MachineRegisterInfo &MRI = MF.getRegInfo();
Lang Hames49ab8bc2008-11-16 12:12:54 +0000536
537 // Iterate over all live ranges.
Lang Hames8f31f442014-10-09 18:20:51 +0000538 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) {
539 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
540 if (MRI.reg_nodbg_empty(Reg))
Lang Hames49ab8bc2008-11-16 12:12:54 +0000541 continue;
Lang Hames8f31f442014-10-09 18:20:51 +0000542 LiveInterval &LI = LIS.getInterval(Reg);
Lang Hames49ab8bc2008-11-16 12:12:54 +0000543
544 // If this live interval is non-empty we will use pbqp to allocate it.
545 // Empty intervals we allocate in a simple post-processing stage in
546 // finalizeAlloc.
Lang Hames8f31f442014-10-09 18:20:51 +0000547 if (!LI.empty()) {
548 VRegsToAlloc.insert(LI.reg);
Lang Hamesc702ba62010-11-12 05:47:21 +0000549 } else {
Lang Hames8f31f442014-10-09 18:20:51 +0000550 EmptyIntervalVRegs.insert(LI.reg);
Lang Hames49ab8bc2008-11-16 12:12:54 +0000551 }
552 }
Evan Chengb25f4632008-10-02 18:29:27 +0000553}
554
Arnaud A. de Grandmaisona11cab32014-11-04 20:51:29 +0000555static bool isACalleeSavedRegister(unsigned reg, const TargetRegisterInfo &TRI,
556 const MachineFunction &MF) {
557 const MCPhysReg *CSR = TRI.getCalleeSavedRegs(&MF);
558 for (unsigned i = 0; CSR[i] != 0; ++i)
559 if (TRI.regsOverlap(reg, CSR[i]))
560 return true;
561 return false;
562}
563
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000564void RegAllocPBQP::initializeGraph(PBQPRAGraph &G, VirtRegMap &VRM,
565 Spiller &VRegSpiller) {
Lang Hames8f31f442014-10-09 18:20:51 +0000566 MachineFunction &MF = G.getMetadata().MF;
567
568 LiveIntervals &LIS = G.getMetadata().LIS;
569 const MachineRegisterInfo &MRI = G.getMetadata().MF.getRegInfo();
570 const TargetRegisterInfo &TRI =
Eric Christopher7592b0c2015-01-27 08:27:06 +0000571 *G.getMetadata().MF.getSubtarget().getRegisterInfo();
Lang Hames8f31f442014-10-09 18:20:51 +0000572
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000573 std::vector<unsigned> Worklist(VRegsToAlloc.begin(), VRegsToAlloc.end());
574
575 while (!Worklist.empty()) {
576 unsigned VReg = Worklist.back();
577 Worklist.pop_back();
578
Lang Hames8f31f442014-10-09 18:20:51 +0000579 const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
580 LiveInterval &VRegLI = LIS.getInterval(VReg);
581
582 // Record any overlaps with regmask operands.
583 BitVector RegMaskOverlaps;
584 LIS.checkRegMaskInterference(VRegLI, RegMaskOverlaps);
585
586 // Compute an initial allowed set for the current vreg.
587 std::vector<unsigned> VRegAllowed;
588 ArrayRef<MCPhysReg> RawPRegOrder = TRC->getRawAllocationOrder(MF);
589 for (unsigned I = 0; I != RawPRegOrder.size(); ++I) {
590 unsigned PReg = RawPRegOrder[I];
591 if (MRI.isReserved(PReg))
592 continue;
593
594 // vregLI crosses a regmask operand that clobbers preg.
595 if (!RegMaskOverlaps.empty() && !RegMaskOverlaps.test(PReg))
596 continue;
597
598 // vregLI overlaps fixed regunit interference.
599 bool Interference = false;
600 for (MCRegUnitIterator Units(PReg, &TRI); Units.isValid(); ++Units) {
601 if (VRegLI.overlaps(LIS.getRegUnit(*Units))) {
602 Interference = true;
603 break;
604 }
605 }
606 if (Interference)
607 continue;
608
609 // preg is usable for this virtual register.
610 VRegAllowed.push_back(PReg);
611 }
612
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000613 // Check for vregs that have no allowed registers. These should be
614 // pre-spilled and the new vregs added to the worklist.
615 if (VRegAllowed.empty()) {
616 SmallVector<unsigned, 8> NewVRegs;
617 spillVReg(VReg, NewVRegs, MF, LIS, VRM, VRegSpiller);
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000618 Worklist.insert(Worklist.end(), NewVRegs.begin(), NewVRegs.end());
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000619 continue;
620 }
621
Lang Hames8f31f442014-10-09 18:20:51 +0000622 PBQPRAGraph::RawVector NodeCosts(VRegAllowed.size() + 1, 0);
Arnaud A. de Grandmaisona11cab32014-11-04 20:51:29 +0000623
624 // Tweak cost of callee saved registers, as using then force spilling and
625 // restoring them. This would only happen in the prologue / epilogue though.
626 for (unsigned i = 0; i != VRegAllowed.size(); ++i)
627 if (isACalleeSavedRegister(VRegAllowed[i], TRI, MF))
628 NodeCosts[1 + i] += 1.0;
629
Lang Hames8f31f442014-10-09 18:20:51 +0000630 PBQPRAGraph::NodeId NId = G.addNode(std::move(NodeCosts));
631 G.getNodeMetadata(NId).setVReg(VReg);
Lang Hames5fe30ca2014-10-27 17:44:25 +0000632 G.getNodeMetadata(NId).setAllowedRegs(
633 G.getMetadata().getAllowedRegs(std::move(VRegAllowed)));
Lang Hames8f31f442014-10-09 18:20:51 +0000634 G.getMetadata().setNodeIdForVReg(VReg, NId);
635 }
636}
637
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000638void RegAllocPBQP::spillVReg(unsigned VReg,
639 SmallVectorImpl<unsigned> &NewIntervals,
640 MachineFunction &MF, LiveIntervals &LIS,
641 VirtRegMap &VRM, Spiller &VRegSpiller) {
642
643 VRegsToAlloc.erase(VReg);
Wei Mi9a16d652016-04-13 03:08:27 +0000644 LiveRangeEdit LRE(&LIS.getInterval(VReg), NewIntervals, MF, LIS, &VRM,
645 nullptr, &DeadRemats);
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000646 VRegSpiller.spill(LRE);
647
648 const TargetRegisterInfo &TRI = *MF.getSubtarget().getRegisterInfo();
649 (void)TRI;
650 DEBUG(dbgs() << "VREG " << PrintReg(VReg, &TRI) << " -> SPILLED (Cost: "
651 << LRE.getParent().weight << ", New vregs: ");
652
653 // Copy any newly inserted live intervals into the list of regs to
654 // allocate.
655 for (LiveRangeEdit::iterator I = LRE.begin(), E = LRE.end();
656 I != E; ++I) {
657 const LiveInterval &LI = LIS.getInterval(*I);
658 assert(!LI.empty() && "Empty spill range.");
659 DEBUG(dbgs() << PrintReg(LI.reg, &TRI) << " ");
660 VRegsToAlloc.insert(LI.reg);
661 }
662
663 DEBUG(dbgs() << ")\n");
664}
665
Lang Hames8f31f442014-10-09 18:20:51 +0000666bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQPRAGraph &G,
667 const PBQP::Solution &Solution,
668 VirtRegMap &VRM,
669 Spiller &VRegSpiller) {
670 MachineFunction &MF = G.getMetadata().MF;
671 LiveIntervals &LIS = G.getMetadata().LIS;
Eric Christopher7592b0c2015-01-27 08:27:06 +0000672 const TargetRegisterInfo &TRI = *MF.getSubtarget().getRegisterInfo();
Lang Hames8f31f442014-10-09 18:20:51 +0000673 (void)TRI;
674
Lang Hamescb1e1012010-09-18 09:07:10 +0000675 // Set to true if we have any spills
Lang Hames8f31f442014-10-09 18:20:51 +0000676 bool AnotherRoundNeeded = false;
Lang Hamescb1e1012010-09-18 09:07:10 +0000677
678 // Clear the existing allocation.
Lang Hames8f31f442014-10-09 18:20:51 +0000679 VRM.clearAllVirt();
Lang Hamescb1e1012010-09-18 09:07:10 +0000680
Lang Hamescb1e1012010-09-18 09:07:10 +0000681 // Iterate over the nodes mapping the PBQP solution to a register
682 // assignment.
Lang Hames8f31f442014-10-09 18:20:51 +0000683 for (auto NId : G.nodeIds()) {
684 unsigned VReg = G.getNodeMetadata(NId).getVReg();
685 unsigned AllocOption = Solution.getSelection(NId);
Lang Hamescb1e1012010-09-18 09:07:10 +0000686
Lang Hames8f31f442014-10-09 18:20:51 +0000687 if (AllocOption != PBQP::RegAlloc::getSpillOptionIdx()) {
Lang Hames5fe30ca2014-10-27 17:44:25 +0000688 unsigned PReg = G.getNodeMetadata(NId).getAllowedRegs()[AllocOption - 1];
Lang Hames8f31f442014-10-09 18:20:51 +0000689 DEBUG(dbgs() << "VREG " << PrintReg(VReg, &TRI) << " -> "
690 << TRI.getName(PReg) << "\n");
691 assert(PReg != 0 && "Invalid preg selected.");
692 VRM.assignVirt2Phys(VReg, PReg);
693 } else {
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000694 // Spill VReg. If this introduces new intervals we'll need another round
695 // of allocation.
696 SmallVector<unsigned, 8> NewVRegs;
697 spillVReg(VReg, NewVRegs, MF, LIS, VRM, VRegSpiller);
698 AnotherRoundNeeded |= !NewVRegs.empty();
Lang Hamescb1e1012010-09-18 09:07:10 +0000699 }
700 }
701
Lang Hames8f31f442014-10-09 18:20:51 +0000702 return !AnotherRoundNeeded;
Lang Hamescb1e1012010-09-18 09:07:10 +0000703}
704
Lang Hames8f31f442014-10-09 18:20:51 +0000705void RegAllocPBQP::finalizeAlloc(MachineFunction &MF,
706 LiveIntervals &LIS,
707 VirtRegMap &VRM) const {
708 MachineRegisterInfo &MRI = MF.getRegInfo();
709
Lang Hames49ab8bc2008-11-16 12:12:54 +0000710 // First allocate registers for the empty intervals.
Lang Hamescb1e1012010-09-18 09:07:10 +0000711 for (RegSet::const_iterator
Lang Hames8f31f442014-10-09 18:20:51 +0000712 I = EmptyIntervalVRegs.begin(), E = EmptyIntervalVRegs.end();
713 I != E; ++I) {
714 LiveInterval &LI = LIS.getInterval(*I);
Lang Hames49ab8bc2008-11-16 12:12:54 +0000715
Lang Hames8f31f442014-10-09 18:20:51 +0000716 unsigned PReg = MRI.getSimpleHint(LI.reg);
Lang Hames88fae6f2009-08-06 23:32:48 +0000717
Lang Hames8f31f442014-10-09 18:20:51 +0000718 if (PReg == 0) {
719 const TargetRegisterClass &RC = *MRI.getRegClass(LI.reg);
720 PReg = RC.getRawAllocationOrder(MF).front();
Lang Hames49ab8bc2008-11-16 12:12:54 +0000721 }
Misha Brukmanda467482009-01-08 15:50:22 +0000722
Lang Hames8f31f442014-10-09 18:20:51 +0000723 VRM.assignVirt2Phys(LI.reg, PReg);
Lang Hames49ab8bc2008-11-16 12:12:54 +0000724 }
Lang Hames49ab8bc2008-11-16 12:12:54 +0000725}
726
Wei Mi9a16d652016-04-13 03:08:27 +0000727void RegAllocPBQP::postOptimization(Spiller &VRegSpiller, LiveIntervals &LIS) {
728 VRegSpiller.postOptimization();
729 /// Remove dead defs because of rematerialization.
730 for (auto DeadInst : DeadRemats) {
731 LIS.RemoveMachineInstrFromMaps(*DeadInst);
732 DeadInst->eraseFromParent();
733 }
734 DeadRemats.clear();
735}
736
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +0000737static inline float normalizePBQPSpillWeight(float UseDefFreq, unsigned Size,
738 unsigned NumInstr) {
739 // All intervals have a spill weight that is mostly proportional to the number
740 // of uses, with uses in loops having a bigger weight.
741 return NumInstr * normalizeSpillWeight(UseDefFreq, Size, 1);
742}
743
Lang Hamescb1e1012010-09-18 09:07:10 +0000744bool RegAllocPBQP::runOnMachineFunction(MachineFunction &MF) {
Lang Hames8f31f442014-10-09 18:20:51 +0000745 LiveIntervals &LIS = getAnalysis<LiveIntervals>();
746 MachineBlockFrequencyInfo &MBFI =
747 getAnalysis<MachineBlockFrequencyInfo>();
Lang Hames49ab8bc2008-11-16 12:12:54 +0000748
Lang Hames8f31f442014-10-09 18:20:51 +0000749 VirtRegMap &VRM = getAnalysis<VirtRegMap>();
Evan Chengb25f4632008-10-02 18:29:27 +0000750
Robert Lougher11a44b72015-08-10 11:59:44 +0000751 calculateSpillWeightsAndHints(LIS, MF, &VRM, getAnalysis<MachineLoopInfo>(),
752 MBFI, normalizePBQPSpillWeight);
753
Lang Hames8f31f442014-10-09 18:20:51 +0000754 std::unique_ptr<Spiller> VRegSpiller(createInlineSpiller(*this, MF, VRM));
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +0000755
Lang Hames8f31f442014-10-09 18:20:51 +0000756 MF.getRegInfo().freezeReservedRegs(MF);
Evan Chengb25f4632008-10-02 18:29:27 +0000757
Lang Hames8f31f442014-10-09 18:20:51 +0000758 DEBUG(dbgs() << "PBQP Register Allocating for " << MF.getName() << "\n");
Lang Hames49ab8bc2008-11-16 12:12:54 +0000759
Evan Chengb25f4632008-10-02 18:29:27 +0000760 // Allocator main loop:
Misha Brukmanda467482009-01-08 15:50:22 +0000761 //
Evan Chengb25f4632008-10-02 18:29:27 +0000762 // * Map current regalloc problem to a PBQP problem
763 // * Solve the PBQP problem
764 // * Map the solution back to a register allocation
765 // * Spill if necessary
Misha Brukmanda467482009-01-08 15:50:22 +0000766 //
Evan Chengb25f4632008-10-02 18:29:27 +0000767 // This process is continued till no more spills are generated.
768
Lang Hames49ab8bc2008-11-16 12:12:54 +0000769 // Find the vreg intervals in need of allocation.
Lang Hames8f31f442014-10-09 18:20:51 +0000770 findVRegIntervalsToAlloc(MF, LIS);
Misha Brukmanda467482009-01-08 15:50:22 +0000771
Craig Toppera538d832012-08-22 06:07:19 +0000772#ifndef NDEBUG
Lang Hames8f31f442014-10-09 18:20:51 +0000773 const Function &F = *MF.getFunction();
774 std::string FullyQualifiedName =
775 F.getParent()->getModuleIdentifier() + "." + F.getName().str();
Craig Toppera538d832012-08-22 06:07:19 +0000776#endif
Lang Hames95e021f2012-03-26 23:07:23 +0000777
Lang Hames49ab8bc2008-11-16 12:12:54 +0000778 // If there are non-empty intervals allocate them using pbqp.
Lang Hames8f31f442014-10-09 18:20:51 +0000779 if (!VRegsToAlloc.empty()) {
Evan Chengb25f4632008-10-02 18:29:27 +0000780
Eric Christopher7592b0c2015-01-27 08:27:06 +0000781 const TargetSubtargetInfo &Subtarget = MF.getSubtarget();
Lang Hames8f31f442014-10-09 18:20:51 +0000782 std::unique_ptr<PBQPRAConstraintList> ConstraintsRoot =
783 llvm::make_unique<PBQPRAConstraintList>();
784 ConstraintsRoot->addConstraint(llvm::make_unique<SpillCosts>());
785 ConstraintsRoot->addConstraint(llvm::make_unique<Interference>());
786 if (PBQPCoalescing)
787 ConstraintsRoot->addConstraint(llvm::make_unique<Coalescing>());
788 ConstraintsRoot->addConstraint(Subtarget.getCustomPBQPConstraints());
Lang Hames49ab8bc2008-11-16 12:12:54 +0000789
Lang Hames8f31f442014-10-09 18:20:51 +0000790 bool PBQPAllocComplete = false;
791 unsigned Round = 0;
Lang Hames49ab8bc2008-11-16 12:12:54 +0000792
Lang Hames8f31f442014-10-09 18:20:51 +0000793 while (!PBQPAllocComplete) {
794 DEBUG(dbgs() << " PBQP Regalloc round " << Round << ":\n");
795
796 PBQPRAGraph G(PBQPRAGraph::GraphMetadata(MF, LIS, MBFI));
Lang Hamesd48bf3f2015-02-03 06:14:06 +0000797 initializeGraph(G, VRM, *VRegSpiller);
Lang Hames8f31f442014-10-09 18:20:51 +0000798 ConstraintsRoot->apply(G);
Lang Hames95e021f2012-03-26 23:07:23 +0000799
800#ifndef NDEBUG
Lang Hames8f31f442014-10-09 18:20:51 +0000801 if (PBQPDumpGraphs) {
802 std::ostringstream RS;
803 RS << Round;
804 std::string GraphFileName = FullyQualifiedName + "." + RS.str() +
805 ".pbqpgraph";
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000806 std::error_code EC;
Lang Hames8f31f442014-10-09 18:20:51 +0000807 raw_fd_ostream OS(GraphFileName, EC, sys::fs::F_Text);
808 DEBUG(dbgs() << "Dumping graph for round " << Round << " to \""
809 << GraphFileName << "\"\n");
Arnaud A. de Grandmaison10797c52015-02-03 23:40:24 +0000810 G.dump(OS);
Lang Hames95e021f2012-03-26 23:07:23 +0000811 }
812#endif
813
Lang Hames8f31f442014-10-09 18:20:51 +0000814 PBQP::Solution Solution = PBQP::RegAlloc::solve(G);
815 PBQPAllocComplete = mapPBQPToRegAlloc(G, Solution, VRM, *VRegSpiller);
816 ++Round;
Lang Hames49ab8bc2008-11-16 12:12:54 +0000817 }
Evan Chengb25f4632008-10-02 18:29:27 +0000818 }
819
Lang Hames49ab8bc2008-11-16 12:12:54 +0000820 // Finalise allocation, allocate empty ranges.
Lang Hames8f31f442014-10-09 18:20:51 +0000821 finalizeAlloc(MF, LIS, VRM);
Wei Mi9a16d652016-04-13 03:08:27 +0000822 postOptimization(*VRegSpiller, LIS);
Lang Hames8f31f442014-10-09 18:20:51 +0000823 VRegsToAlloc.clear();
824 EmptyIntervalVRegs.clear();
Lang Hames49ab8bc2008-11-16 12:12:54 +0000825
Lang Hames8f31f442014-10-09 18:20:51 +0000826 DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << VRM << "\n");
Lang Hames49ab8bc2008-11-16 12:12:54 +0000827
Misha Brukmanda467482009-01-08 15:50:22 +0000828 return true;
Evan Chengb25f4632008-10-02 18:29:27 +0000829}
830
Matthias Braunc07cbc82015-12-04 01:31:59 +0000831/// Create Printable object for node and register info.
832static Printable PrintNodeInfo(PBQP::RegAlloc::PBQPRAGraph::NodeId NId,
833 const PBQP::RegAlloc::PBQPRAGraph &G) {
834 return Printable([NId, &G](raw_ostream &OS) {
Arnaud A. de Grandmaison10797c52015-02-03 23:40:24 +0000835 const MachineRegisterInfo &MRI = G.getMetadata().MF.getRegInfo();
836 const TargetRegisterInfo *TRI = MRI.getTargetRegisterInfo();
837 unsigned VReg = G.getNodeMetadata(NId).getVReg();
838 const char *RegClassName = TRI->getRegClassName(MRI.getRegClass(VReg));
839 OS << NId << " (" << RegClassName << ':' << PrintReg(VReg, TRI) << ')';
Matthias Braunc07cbc82015-12-04 01:31:59 +0000840 });
Arnaud A. de Grandmaison10797c52015-02-03 23:40:24 +0000841}
Arnaud A. de Grandmaison10797c52015-02-03 23:40:24 +0000842
843void PBQP::RegAlloc::PBQPRAGraph::dump(raw_ostream &OS) const {
844 for (auto NId : nodeIds()) {
845 const Vector &Costs = getNodeCosts(NId);
846 assert(Costs.getLength() != 0 && "Empty vector in graph.");
847 OS << PrintNodeInfo(NId, *this) << ": " << Costs << '\n';
848 }
849 OS << '\n';
850
851 for (auto EId : edgeIds()) {
852 NodeId N1Id = getEdgeNode1Id(EId);
853 NodeId N2Id = getEdgeNode2Id(EId);
854 assert(N1Id != N2Id && "PBQP graphs should not have self-edges.");
855 const Matrix &M = getEdgeCosts(EId);
856 assert(M.getRows() != 0 && "No rows in matrix.");
857 assert(M.getCols() != 0 && "No cols in matrix.");
858 OS << PrintNodeInfo(N1Id, *this) << ' ' << M.getRows() << " rows / ";
859 OS << PrintNodeInfo(N2Id, *this) << ' ' << M.getCols() << " cols:\n";
860 OS << M << '\n';
861 }
862}
863
Yaron Kereneb2a2542016-01-29 20:50:44 +0000864LLVM_DUMP_METHOD void PBQP::RegAlloc::PBQPRAGraph::dump() const { dump(dbgs()); }
Arnaud A. de Grandmaison10797c52015-02-03 23:40:24 +0000865
866void PBQP::RegAlloc::PBQPRAGraph::printDot(raw_ostream &OS) const {
867 OS << "graph {\n";
868 for (auto NId : nodeIds()) {
869 OS << " node" << NId << " [ label=\""
870 << PrintNodeInfo(NId, *this) << "\\n"
871 << getNodeCosts(NId) << "\" ]\n";
872 }
873
874 OS << " edge [ len=" << nodeIds().size() << " ]\n";
875 for (auto EId : edgeIds()) {
876 OS << " node" << getEdgeNode1Id(EId)
877 << " -- node" << getEdgeNode2Id(EId)
878 << " [ label=\"";
879 const Matrix &EdgeCosts = getEdgeCosts(EId);
880 for (unsigned i = 0; i < EdgeCosts.getRows(); ++i) {
881 OS << EdgeCosts.getRowAsVector(i) << "\\n";
882 }
883 OS << "\" ]\n";
884 }
885 OS << "}\n";
886}
887
Lang Hames8f31f442014-10-09 18:20:51 +0000888FunctionPass *llvm::createPBQPRegisterAllocator(char *customPassID) {
889 return new RegAllocPBQP(customPassID);
Evan Chengb25f4632008-10-02 18:29:27 +0000890}
891
Lang Hamesfd1bc422010-09-23 04:28:54 +0000892FunctionPass* llvm::createDefaultPBQPRegisterAllocator() {
Lang Hames8f31f442014-10-09 18:20:51 +0000893 return createPBQPRegisterAllocator();
Lang Hamescb1e1012010-09-18 09:07:10 +0000894}
Evan Chengb25f4632008-10-02 18:29:27 +0000895
896#undef DEBUG_TYPE