blob: c5ce455b0ae5f636642fed1b80ca4747706d4a4b [file] [log] [blame]
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001//===-- RegAllocLinearScan.cpp - Linear Scan register allocator -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a linear scan register allocator.
11//
12//===----------------------------------------------------------------------===//
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000013
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000014#define DEBUG_TYPE "regalloc"
Chris Lattnerb9805782005-08-23 22:27:31 +000015#include "VirtRegMap.h"
Lang Hames87e3bca2009-05-06 02:36:21 +000016#include "VirtRegRewriter.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000017#include "llvm/Function.h"
Evan Cheng3f32d652008-06-04 09:18:41 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
19#include "llvm/CodeGen/LiveStackAnalysis.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000020#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000024#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000025#include "llvm/CodeGen/RegAllocRegistry.h"
David Greene2c17c4d2007-09-06 16:18:45 +000026#include "llvm/CodeGen/RegisterCoalescer.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000028#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000029#include "llvm/Target/TargetOptions.h"
Evan Chengc92da382007-11-03 07:20:12 +000030#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000031#include "llvm/ADT/EquivalenceClasses.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000032#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/ADT/Statistic.h"
34#include "llvm/ADT/STLExtras.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000035#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000036#include "llvm/Support/Compiler.h"
Alkis Evlogimenos843b1602004-02-15 10:24:21 +000037#include <algorithm>
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +000038#include <set>
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +000039#include <queue>
Duraid Madina30059612005-12-28 04:55:42 +000040#include <memory>
Jeff Cohen97af7512006-12-02 02:22:01 +000041#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000042using namespace llvm;
43
Chris Lattnercd3245a2006-12-19 22:41:21 +000044STATISTIC(NumIters , "Number of iterations performed");
45STATISTIC(NumBacktracks, "Number of times we had to backtrack");
Evan Chengc92da382007-11-03 07:20:12 +000046STATISTIC(NumCoalesce, "Number of copies coalesced");
Evan Cheng206d1852009-04-20 08:01:12 +000047STATISTIC(NumDowngrade, "Number of registers downgraded");
Chris Lattnercd3245a2006-12-19 22:41:21 +000048
Evan Cheng3e172252008-06-20 21:45:16 +000049static cl::opt<bool>
50NewHeuristic("new-spilling-heuristic",
51 cl::desc("Use new spilling heuristic"),
52 cl::init(false), cl::Hidden);
53
Evan Chengf5cd4f02008-10-23 20:43:13 +000054static cl::opt<bool>
55PreSplitIntervals("pre-alloc-split",
56 cl::desc("Pre-register allocation live interval splitting"),
57 cl::init(false), cl::Hidden);
58
Chris Lattnercd3245a2006-12-19 22:41:21 +000059static RegisterRegAlloc
Dan Gohmanb8cab922008-10-14 20:25:08 +000060linearscanRegAlloc("linearscan", "linear scan register allocator",
Chris Lattnercd3245a2006-12-19 22:41:21 +000061 createLinearScanRegisterAllocator);
62
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000063namespace {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000064 struct VISIBILITY_HIDDEN RALinScan : public MachineFunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000065 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +000066 RALinScan() : MachineFunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000067
Chris Lattnercbb56252004-11-18 02:42:27 +000068 typedef std::pair<LiveInterval*, LiveInterval::iterator> IntervalPtr;
Owen Andersoncd1dcbd2008-08-15 18:49:41 +000069 typedef SmallVector<IntervalPtr, 32> IntervalPtrs;
Chris Lattnercbb56252004-11-18 02:42:27 +000070 private:
Chris Lattnerb9805782005-08-23 22:27:31 +000071 /// RelatedRegClasses - This structure is built the first time a function is
72 /// compiled, and keeps track of which register classes have registers that
73 /// belong to multiple classes or have aliases that are in other classes.
74 EquivalenceClasses<const TargetRegisterClass*> RelatedRegClasses;
Owen Anderson97382162008-08-13 23:36:23 +000075 DenseMap<unsigned, const TargetRegisterClass*> OneClassForEachPhysReg;
Chris Lattnerb9805782005-08-23 22:27:31 +000076
Evan Cheng206d1852009-04-20 08:01:12 +000077 // NextReloadMap - For each register in the map, it maps to the another
78 // register which is defined by a reload from the same stack slot and
79 // both reloads are in the same basic block.
80 DenseMap<unsigned, unsigned> NextReloadMap;
81
82 // DowngradedRegs - A set of registers which are being "downgraded", i.e.
83 // un-favored for allocation.
84 SmallSet<unsigned, 8> DowngradedRegs;
85
86 // DowngradeMap - A map from virtual registers to physical registers being
87 // downgraded for the virtual registers.
88 DenseMap<unsigned, unsigned> DowngradeMap;
89
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000090 MachineFunction* mf_;
Evan Cheng3e172252008-06-20 21:45:16 +000091 MachineRegisterInfo* mri_;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000092 const TargetMachine* tm_;
Dan Gohman6f0d0242008-02-10 18:45:23 +000093 const TargetRegisterInfo* tri_;
Evan Chengc92da382007-11-03 07:20:12 +000094 const TargetInstrInfo* tii_;
Evan Chengc92da382007-11-03 07:20:12 +000095 BitVector allocatableRegs_;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000096 LiveIntervals* li_;
Evan Cheng3f32d652008-06-04 09:18:41 +000097 LiveStacks* ls_;
Evan Cheng22f07ff2007-12-11 02:09:15 +000098 const MachineLoopInfo *loopInfo;
Chris Lattnercbb56252004-11-18 02:42:27 +000099
100 /// handled_ - Intervals are added to the handled_ set in the order of their
101 /// start value. This is uses for backtracking.
102 std::vector<LiveInterval*> handled_;
103
104 /// fixed_ - Intervals that correspond to machine registers.
105 ///
106 IntervalPtrs fixed_;
107
108 /// active_ - Intervals that are currently being processed, and which have a
109 /// live range active for the current point.
110 IntervalPtrs active_;
111
112 /// inactive_ - Intervals that are currently being processed, but which have
113 /// a hold at the current point.
114 IntervalPtrs inactive_;
115
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000116 typedef std::priority_queue<LiveInterval*,
Owen Andersoncd1dcbd2008-08-15 18:49:41 +0000117 SmallVector<LiveInterval*, 64>,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000118 greater_ptr<LiveInterval> > IntervalHeap;
119 IntervalHeap unhandled_;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000120
121 /// regUse_ - Tracks register usage.
122 SmallVector<unsigned, 32> regUse_;
123 SmallVector<unsigned, 32> regUseBackUp_;
124
125 /// vrm_ - Tracks register assignments.
Owen Anderson49c8aa02009-03-13 05:55:11 +0000126 VirtRegMap* vrm_;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000127
Lang Hames87e3bca2009-05-06 02:36:21 +0000128 std::auto_ptr<VirtRegRewriter> rewriter_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000129
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000130 public:
131 virtual const char* getPassName() const {
132 return "Linear Scan Register Allocator";
133 }
134
135 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000136 AU.addRequired<LiveIntervals>();
Owen Anderson95dad832008-10-07 20:22:28 +0000137 if (StrongPHIElim)
138 AU.addRequiredID(StrongPHIEliminationID);
David Greene2c17c4d2007-09-06 16:18:45 +0000139 // Make sure PassManager knows which analyses to make available
140 // to coalescing and which analyses coalescing invalidates.
141 AU.addRequiredTransitive<RegisterCoalescer>();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000142 if (PreSplitIntervals)
143 AU.addRequiredID(PreAllocSplittingID);
Evan Cheng3f32d652008-06-04 09:18:41 +0000144 AU.addRequired<LiveStacks>();
145 AU.addPreserved<LiveStacks>();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000146 AU.addRequired<MachineLoopInfo>();
Bill Wendling67d65bb2008-01-04 20:54:55 +0000147 AU.addPreserved<MachineLoopInfo>();
Owen Anderson49c8aa02009-03-13 05:55:11 +0000148 AU.addRequired<VirtRegMap>();
149 AU.addPreserved<VirtRegMap>();
Bill Wendling67d65bb2008-01-04 20:54:55 +0000150 AU.addPreservedID(MachineDominatorsID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000151 MachineFunctionPass::getAnalysisUsage(AU);
152 }
153
154 /// runOnMachineFunction - register allocate the whole function
155 bool runOnMachineFunction(MachineFunction&);
156
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000157 private:
158 /// linearScan - the linear scan algorithm
159 void linearScan();
160
Chris Lattnercbb56252004-11-18 02:42:27 +0000161 /// initIntervalSets - initialize the interval sets.
162 ///
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000163 void initIntervalSets();
164
Chris Lattnercbb56252004-11-18 02:42:27 +0000165 /// processActiveIntervals - expire old intervals and move non-overlapping
166 /// ones to the inactive list.
167 void processActiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000168
Chris Lattnercbb56252004-11-18 02:42:27 +0000169 /// processInactiveIntervals - expire old intervals and move overlapping
170 /// ones to the active list.
171 void processInactiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000172
Evan Cheng206d1852009-04-20 08:01:12 +0000173 /// hasNextReloadInterval - Return the next liveinterval that's being
174 /// defined by a reload from the same SS as the specified one.
175 LiveInterval *hasNextReloadInterval(LiveInterval *cur);
176
177 /// DowngradeRegister - Downgrade a register for allocation.
178 void DowngradeRegister(LiveInterval *li, unsigned Reg);
179
180 /// UpgradeRegister - Upgrade a register for allocation.
181 void UpgradeRegister(unsigned Reg);
182
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000183 /// assignRegOrStackSlotAtInterval - assign a register if one
184 /// is available, or spill.
185 void assignRegOrStackSlotAtInterval(LiveInterval* cur);
186
Evan Cheng5d088fe2009-03-23 22:57:19 +0000187 void updateSpillWeights(std::vector<float> &Weights,
188 unsigned reg, float weight,
189 const TargetRegisterClass *RC);
190
Evan Cheng3e172252008-06-20 21:45:16 +0000191 /// findIntervalsToSpill - Determine the intervals to spill for the
192 /// specified interval. It's passed the physical registers whose spill
193 /// weight is the lowest among all the registers whose live intervals
194 /// conflict with the interval.
195 void findIntervalsToSpill(LiveInterval *cur,
196 std::vector<std::pair<unsigned,float> > &Candidates,
197 unsigned NumCands,
198 SmallVector<LiveInterval*, 8> &SpillIntervals);
199
Evan Chengc92da382007-11-03 07:20:12 +0000200 /// attemptTrivialCoalescing - If a simple interval is defined by a copy,
201 /// try allocate the definition the same register as the source register
202 /// if the register is not defined during live time of the interval. This
203 /// eliminate a copy. This is used to coalesce copies which were not
204 /// coalesced away before allocation either due to dest and src being in
205 /// different register classes or because the coalescer was overly
206 /// conservative.
207 unsigned attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg);
208
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000209 ///
Evan Cheng5b16cd22009-05-01 01:03:49 +0000210 /// Register usage / availability tracking helpers.
211 ///
212
213 void initRegUses() {
214 regUse_.resize(tri_->getNumRegs(), 0);
215 regUseBackUp_.resize(tri_->getNumRegs(), 0);
216 }
217
218 void finalizeRegUses() {
Evan Chengc781a242009-05-03 18:32:42 +0000219#ifndef NDEBUG
220 // Verify all the registers are "freed".
221 bool Error = false;
222 for (unsigned i = 0, e = tri_->getNumRegs(); i != e; ++i) {
223 if (regUse_[i] != 0) {
224 cerr << tri_->getName(i) << " is still in use!\n";
225 Error = true;
226 }
227 }
228 if (Error)
229 abort();
230#endif
Evan Cheng5b16cd22009-05-01 01:03:49 +0000231 regUse_.clear();
232 regUseBackUp_.clear();
233 }
234
235 void addRegUse(unsigned physReg) {
236 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
237 "should be physical register!");
238 ++regUse_[physReg];
239 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as)
240 ++regUse_[*as];
241 }
242
243 void delRegUse(unsigned physReg) {
244 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
245 "should be physical register!");
246 assert(regUse_[physReg] != 0);
247 --regUse_[physReg];
248 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as) {
249 assert(regUse_[*as] != 0);
250 --regUse_[*as];
251 }
252 }
253
254 bool isRegAvail(unsigned physReg) const {
255 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
256 "should be physical register!");
257 return regUse_[physReg] == 0;
258 }
259
260 void backUpRegUses() {
261 regUseBackUp_ = regUse_;
262 }
263
264 void restoreRegUses() {
265 regUse_ = regUseBackUp_;
266 }
267
268 ///
269 /// Register handling helpers.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000270 ///
271
Chris Lattnercbb56252004-11-18 02:42:27 +0000272 /// getFreePhysReg - return a free physical register for this virtual
273 /// register interval if we have one, otherwise return 0.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000274 unsigned getFreePhysReg(LiveInterval* cur);
Evan Cheng206d1852009-04-20 08:01:12 +0000275 unsigned getFreePhysReg(const TargetRegisterClass *RC,
276 unsigned MaxInactiveCount,
277 SmallVector<unsigned, 256> &inactiveCounts,
278 bool SkipDGRegs);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000279
280 /// assignVirt2StackSlot - assigns this virtual register to a
281 /// stack slot. returns the stack slot
282 int assignVirt2StackSlot(unsigned virtReg);
283
Chris Lattnerb9805782005-08-23 22:27:31 +0000284 void ComputeRelatedRegClasses();
285
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000286 template <typename ItTy>
287 void printIntervals(const char* const str, ItTy i, ItTy e) const {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000288 if (str) DOUT << str << " intervals:\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000289 for (; i != e; ++i) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000290 DOUT << "\t" << *i->first << " -> ";
Chris Lattnercbb56252004-11-18 02:42:27 +0000291 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000292 if (TargetRegisterInfo::isVirtualRegister(reg)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000293 reg = vrm_->getPhys(reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000294 }
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000295 DOUT << tri_->getName(reg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000296 }
297 }
298 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000299 char RALinScan::ID = 0;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000300}
301
Evan Cheng3f32d652008-06-04 09:18:41 +0000302static RegisterPass<RALinScan>
303X("linearscan-regalloc", "Linear Scan Register Allocator");
304
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000305void RALinScan::ComputeRelatedRegClasses() {
Chris Lattnerb9805782005-08-23 22:27:31 +0000306 // First pass, add all reg classes to the union, and determine at least one
307 // reg class that each register is in.
308 bool HasAliases = false;
Evan Cheng206d1852009-04-20 08:01:12 +0000309 for (TargetRegisterInfo::regclass_iterator RCI = tri_->regclass_begin(),
310 E = tri_->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000311 RelatedRegClasses.insert(*RCI);
312 for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end();
313 I != E; ++I) {
Evan Cheng206d1852009-04-20 08:01:12 +0000314 HasAliases = HasAliases || *tri_->getAliasSet(*I) != 0;
Chris Lattnerb9805782005-08-23 22:27:31 +0000315
316 const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I];
317 if (PRC) {
318 // Already processed this register. Just make sure we know that
319 // multiple register classes share a register.
320 RelatedRegClasses.unionSets(PRC, *RCI);
321 } else {
322 PRC = *RCI;
323 }
324 }
325 }
326
327 // Second pass, now that we know conservatively what register classes each reg
328 // belongs to, add info about aliases. We don't need to do this for targets
329 // without register aliases.
330 if (HasAliases)
Owen Anderson97382162008-08-13 23:36:23 +0000331 for (DenseMap<unsigned, const TargetRegisterClass*>::iterator
Chris Lattnerb9805782005-08-23 22:27:31 +0000332 I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end();
333 I != E; ++I)
Evan Cheng206d1852009-04-20 08:01:12 +0000334 for (const unsigned *AS = tri_->getAliasSet(I->first); *AS; ++AS)
Chris Lattnerb9805782005-08-23 22:27:31 +0000335 RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]);
336}
337
Evan Chengc92da382007-11-03 07:20:12 +0000338/// attemptTrivialCoalescing - If a simple interval is defined by a copy,
339/// try allocate the definition the same register as the source register
340/// if the register is not defined during live time of the interval. This
341/// eliminate a copy. This is used to coalesce copies which were not
342/// coalesced away before allocation either due to dest and src being in
343/// different register classes or because the coalescer was overly
344/// conservative.
345unsigned RALinScan::attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg) {
Evan Cheng9aeaf752007-11-04 08:32:21 +0000346 if ((cur.preference && cur.preference == Reg) || !cur.containsOneValue())
Evan Chengc92da382007-11-03 07:20:12 +0000347 return Reg;
348
Evan Chengd0deec22009-01-20 00:16:18 +0000349 VNInfo *vni = cur.begin()->valno;
Evan Chengc92da382007-11-03 07:20:12 +0000350 if (!vni->def || vni->def == ~1U || vni->def == ~0U)
351 return Reg;
352 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Chengeca24fb2009-05-12 23:07:00 +0000353 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg, PhysReg;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000354 if (!CopyMI ||
355 !tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc92da382007-11-03 07:20:12 +0000356 return Reg;
Evan Chengeca24fb2009-05-12 23:07:00 +0000357 PhysReg = SrcReg;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000358 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000359 if (!vrm_->isAssignedReg(SrcReg))
360 return Reg;
Evan Chengeca24fb2009-05-12 23:07:00 +0000361 PhysReg = vrm_->getPhys(SrcReg);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000362 }
Evan Chengeca24fb2009-05-12 23:07:00 +0000363 if (Reg == PhysReg)
Evan Chengc92da382007-11-03 07:20:12 +0000364 return Reg;
365
Evan Cheng841ee1a2008-09-18 22:38:47 +0000366 const TargetRegisterClass *RC = mri_->getRegClass(cur.reg);
Evan Chengeca24fb2009-05-12 23:07:00 +0000367 if (!RC->contains(PhysReg))
Evan Chengc92da382007-11-03 07:20:12 +0000368 return Reg;
369
370 // Try to coalesce.
Evan Chengeca24fb2009-05-12 23:07:00 +0000371 if (!li_->conflictsWithPhysRegDef(cur, *vrm_, PhysReg)) {
372 DOUT << "Coalescing: " << cur << " -> " << tri_->getName(PhysReg)
Bill Wendling74ab84c2008-02-26 21:11:01 +0000373 << '\n';
Evan Chengc92da382007-11-03 07:20:12 +0000374 vrm_->clearVirt(cur.reg);
Evan Chengeca24fb2009-05-12 23:07:00 +0000375 vrm_->assignVirt2Phys(cur.reg, PhysReg);
376
377 // Remove unnecessary kills since a copy does not clobber the register.
378 if (li_->hasInterval(SrcReg)) {
379 LiveInterval &SrcLI = li_->getInterval(SrcReg);
380 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(cur.reg),
381 E = mri_->reg_end(); I != E; ++I) {
382 MachineOperand &O = I.getOperand();
383 if (!O.isUse() || !O.isKill())
384 continue;
385 MachineInstr *MI = &*I;
386 if (SrcLI.liveAt(li_->getDefIndex(li_->getInstructionIndex(MI))))
387 O.setIsKill(false);
388 }
389 }
390
Evan Chengc92da382007-11-03 07:20:12 +0000391 ++NumCoalesce;
392 return SrcReg;
393 }
394
395 return Reg;
396}
397
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000398bool RALinScan::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000399 mf_ = &fn;
Evan Cheng3e172252008-06-20 21:45:16 +0000400 mri_ = &fn.getRegInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000401 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000402 tri_ = tm_->getRegisterInfo();
Evan Chengc92da382007-11-03 07:20:12 +0000403 tii_ = tm_->getInstrInfo();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000404 allocatableRegs_ = tri_->getAllocatableSet(fn);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000405 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng3f32d652008-06-04 09:18:41 +0000406 ls_ = &getAnalysis<LiveStacks>();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000407 loopInfo = &getAnalysis<MachineLoopInfo>();
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000408
David Greene2c17c4d2007-09-06 16:18:45 +0000409 // We don't run the coalescer here because we have no reason to
410 // interact with it. If the coalescer requires interaction, it
411 // won't do anything. If it doesn't require interaction, we assume
412 // it was run as a separate pass.
413
Chris Lattnerb9805782005-08-23 22:27:31 +0000414 // If this is the first function compiled, compute the related reg classes.
415 if (RelatedRegClasses.empty())
416 ComputeRelatedRegClasses();
Evan Cheng5b16cd22009-05-01 01:03:49 +0000417
418 // Also resize register usage trackers.
419 initRegUses();
420
Owen Anderson49c8aa02009-03-13 05:55:11 +0000421 vrm_ = &getAnalysis<VirtRegMap>();
Lang Hames87e3bca2009-05-06 02:36:21 +0000422 if (!rewriter_.get()) rewriter_.reset(createVirtRegRewriter());
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000423
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000424 initIntervalSets();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000425
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000426 linearScan();
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000427
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000428 // Rewrite spill code and update the PhysRegsUsed set.
Lang Hames87e3bca2009-05-06 02:36:21 +0000429 rewriter_->runOnMachineFunction(*mf_, *vrm_, li_);
Chris Lattnercbb56252004-11-18 02:42:27 +0000430
Dan Gohman51cd9d62008-06-23 23:51:16 +0000431 assert(unhandled_.empty() && "Unhandled live intervals remain!");
Evan Cheng5b16cd22009-05-01 01:03:49 +0000432
433 finalizeRegUses();
434
Chris Lattnercbb56252004-11-18 02:42:27 +0000435 fixed_.clear();
436 active_.clear();
437 inactive_.clear();
438 handled_.clear();
Evan Cheng206d1852009-04-20 08:01:12 +0000439 NextReloadMap.clear();
440 DowngradedRegs.clear();
441 DowngradeMap.clear();
Chris Lattnercbb56252004-11-18 02:42:27 +0000442
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000443 return true;
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000444}
445
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000446/// initIntervalSets - initialize the interval sets.
447///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000448void RALinScan::initIntervalSets()
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000449{
450 assert(unhandled_.empty() && fixed_.empty() &&
451 active_.empty() && inactive_.empty() &&
452 "interval sets should be empty on initialization");
453
Owen Andersoncd1dcbd2008-08-15 18:49:41 +0000454 handled_.reserve(li_->getNumIntervals());
455
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000456 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000457 if (TargetRegisterInfo::isPhysicalRegister(i->second->reg)) {
Evan Cheng841ee1a2008-09-18 22:38:47 +0000458 mri_->setPhysRegUsed(i->second->reg);
Owen Anderson03857b22008-08-13 21:49:13 +0000459 fixed_.push_back(std::make_pair(i->second, i->second->begin()));
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000460 } else
Owen Anderson03857b22008-08-13 21:49:13 +0000461 unhandled_.push(i->second);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000462 }
463}
464
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000465void RALinScan::linearScan()
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000466{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000467 // linear scan algorithm
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000468 DOUT << "********** LINEAR SCAN **********\n";
469 DOUT << "********** Function: " << mf_->getFunction()->getName() << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000470
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000471 DEBUG(printIntervals("fixed", fixed_.begin(), fixed_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000472
473 while (!unhandled_.empty()) {
474 // pick the interval with the earliest start point
475 LiveInterval* cur = unhandled_.top();
476 unhandled_.pop();
Evan Cheng11923cc2007-10-16 21:09:14 +0000477 ++NumIters;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000478 DOUT << "\n*** CURRENT ***: " << *cur << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000479
Evan Chengf30a49d2008-04-03 16:40:27 +0000480 if (!cur->empty()) {
481 processActiveIntervals(cur->beginNumber());
482 processInactiveIntervals(cur->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000483
Evan Chengf30a49d2008-04-03 16:40:27 +0000484 assert(TargetRegisterInfo::isVirtualRegister(cur->reg) &&
485 "Can only allocate virtual registers!");
486 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000487
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000488 // Allocating a virtual register. try to find a free
489 // physical register or spill an interval (possibly this one) in order to
490 // assign it one.
491 assignRegOrStackSlotAtInterval(cur);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000492
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000493 DEBUG(printIntervals("active", active_.begin(), active_.end()));
494 DEBUG(printIntervals("inactive", inactive_.begin(), inactive_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000495 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000496
Evan Cheng5b16cd22009-05-01 01:03:49 +0000497 // Expire any remaining active intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000498 while (!active_.empty()) {
499 IntervalPtr &IP = active_.back();
500 unsigned reg = IP.first->reg;
501 DOUT << "\tinterval " << *IP.first << " expired\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000502 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000503 "Can only allocate virtual registers!");
504 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000505 delRegUse(reg);
Evan Cheng11923cc2007-10-16 21:09:14 +0000506 active_.pop_back();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000507 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000508
Evan Cheng5b16cd22009-05-01 01:03:49 +0000509 // Expire any remaining inactive intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000510 DEBUG(for (IntervalPtrs::reverse_iterator
Bill Wendling87075ca2007-11-15 00:40:48 +0000511 i = inactive_.rbegin(); i != inactive_.rend(); ++i)
Evan Cheng11923cc2007-10-16 21:09:14 +0000512 DOUT << "\tinterval " << *i->first << " expired\n");
513 inactive_.clear();
Alkis Evlogimenosb7be1152004-01-13 20:42:08 +0000514
Evan Cheng81a03822007-11-17 00:40:40 +0000515 // Add live-ins to every BB except for entry. Also perform trivial coalescing.
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000516 MachineFunction::iterator EntryMBB = mf_->begin();
Evan Chenga5bfc972007-10-17 06:53:44 +0000517 SmallVector<MachineBasicBlock*, 8> LiveInMBBs;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000518 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000519 LiveInterval &cur = *i->second;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000520 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000521 bool isPhys = TargetRegisterInfo::isPhysicalRegister(cur.reg);
Evan Cheng81a03822007-11-17 00:40:40 +0000522 if (isPhys)
Owen Anderson03857b22008-08-13 21:49:13 +0000523 Reg = cur.reg;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000524 else if (vrm_->isAssignedReg(cur.reg))
Evan Chengc92da382007-11-03 07:20:12 +0000525 Reg = attemptTrivialCoalescing(cur, vrm_->getPhys(cur.reg));
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000526 if (!Reg)
527 continue;
Evan Cheng81a03822007-11-17 00:40:40 +0000528 // Ignore splited live intervals.
529 if (!isPhys && vrm_->getPreSplitReg(cur.reg))
530 continue;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000531 for (LiveInterval::Ranges::const_iterator I = cur.begin(), E = cur.end();
532 I != E; ++I) {
533 const LiveRange &LR = *I;
Evan Chengd0e32c52008-10-29 05:06:14 +0000534 if (li_->findLiveInMBBs(LR.start, LR.end, LiveInMBBs)) {
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000535 for (unsigned i = 0, e = LiveInMBBs.size(); i != e; ++i)
536 if (LiveInMBBs[i] != EntryMBB)
537 LiveInMBBs[i]->addLiveIn(Reg);
Evan Chenga5bfc972007-10-17 06:53:44 +0000538 LiveInMBBs.clear();
Evan Cheng9fc508f2007-02-16 09:05:02 +0000539 }
540 }
541 }
542
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000543 DOUT << *vrm_;
Evan Chengc781a242009-05-03 18:32:42 +0000544
545 // Look for physical registers that end up not being allocated even though
546 // register allocator had to spill other registers in its register class.
547 if (ls_->getNumIntervals() == 0)
548 return;
549 if (!vrm_->FindUnusedRegisters(tri_, li_))
550 return;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000551}
552
Chris Lattnercbb56252004-11-18 02:42:27 +0000553/// processActiveIntervals - expire old intervals and move non-overlapping ones
554/// to the inactive list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000555void RALinScan::processActiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000556{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000557 DOUT << "\tprocessing active intervals:\n";
Chris Lattner23b71c12004-11-18 01:29:39 +0000558
Chris Lattnercbb56252004-11-18 02:42:27 +0000559 for (unsigned i = 0, e = active_.size(); i != e; ++i) {
560 LiveInterval *Interval = active_[i].first;
561 LiveInterval::iterator IntervalPos = active_[i].second;
562 unsigned reg = Interval->reg;
Alkis Evlogimenosed543732004-09-01 22:52:29 +0000563
Chris Lattnercbb56252004-11-18 02:42:27 +0000564 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
565
566 if (IntervalPos == Interval->end()) { // Remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000567 DOUT << "\t\tinterval " << *Interval << " expired\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000568 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000569 "Can only allocate virtual registers!");
570 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000571 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000572
573 // Pop off the end of the list.
574 active_[i] = active_.back();
575 active_.pop_back();
576 --i; --e;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000577
Chris Lattnercbb56252004-11-18 02:42:27 +0000578 } else if (IntervalPos->start > CurPoint) {
579 // Move inactive intervals to inactive list.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000580 DOUT << "\t\tinterval " << *Interval << " inactive\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000581 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000582 "Can only allocate virtual registers!");
583 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000584 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000585 // add to inactive.
586 inactive_.push_back(std::make_pair(Interval, IntervalPos));
587
588 // Pop off the end of the list.
589 active_[i] = active_.back();
590 active_.pop_back();
591 --i; --e;
592 } else {
593 // Otherwise, just update the iterator position.
594 active_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000595 }
596 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000597}
598
Chris Lattnercbb56252004-11-18 02:42:27 +0000599/// processInactiveIntervals - expire old intervals and move overlapping
600/// ones to the active list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000601void RALinScan::processInactiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000602{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000603 DOUT << "\tprocessing inactive intervals:\n";
Chris Lattner365b95f2004-11-18 04:13:02 +0000604
Chris Lattnercbb56252004-11-18 02:42:27 +0000605 for (unsigned i = 0, e = inactive_.size(); i != e; ++i) {
606 LiveInterval *Interval = inactive_[i].first;
607 LiveInterval::iterator IntervalPos = inactive_[i].second;
608 unsigned reg = Interval->reg;
Chris Lattner23b71c12004-11-18 01:29:39 +0000609
Chris Lattnercbb56252004-11-18 02:42:27 +0000610 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000611
Chris Lattnercbb56252004-11-18 02:42:27 +0000612 if (IntervalPos == Interval->end()) { // remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000613 DOUT << "\t\tinterval " << *Interval << " expired\n";
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000614
Chris Lattnercbb56252004-11-18 02:42:27 +0000615 // Pop off the end of the list.
616 inactive_[i] = inactive_.back();
617 inactive_.pop_back();
618 --i; --e;
619 } else if (IntervalPos->start <= CurPoint) {
620 // move re-activated intervals in active list
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000621 DOUT << "\t\tinterval " << *Interval << " active\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000622 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000623 "Can only allocate virtual registers!");
624 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000625 addRegUse(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000626 // add to active
Chris Lattnercbb56252004-11-18 02:42:27 +0000627 active_.push_back(std::make_pair(Interval, IntervalPos));
628
629 // Pop off the end of the list.
630 inactive_[i] = inactive_.back();
631 inactive_.pop_back();
632 --i; --e;
633 } else {
634 // Otherwise, just update the iterator position.
635 inactive_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000636 }
637 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000638}
639
Chris Lattnercbb56252004-11-18 02:42:27 +0000640/// updateSpillWeights - updates the spill weights of the specifed physical
641/// register and its weight.
Evan Cheng5d088fe2009-03-23 22:57:19 +0000642void RALinScan::updateSpillWeights(std::vector<float> &Weights,
643 unsigned reg, float weight,
644 const TargetRegisterClass *RC) {
645 SmallSet<unsigned, 4> Processed;
646 SmallSet<unsigned, 4> SuperAdded;
647 SmallVector<unsigned, 4> Supers;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000648 Weights[reg] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000649 Processed.insert(reg);
650 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as) {
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000651 Weights[*as] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000652 Processed.insert(*as);
653 if (tri_->isSubRegister(*as, reg) &&
654 SuperAdded.insert(*as) &&
655 RC->contains(*as)) {
656 Supers.push_back(*as);
657 }
658 }
659
660 // If the alias is a super-register, and the super-register is in the
661 // register class we are trying to allocate. Then add the weight to all
662 // sub-registers of the super-register even if they are not aliases.
663 // e.g. allocating for GR32, bh is not used, updating bl spill weight.
664 // bl should get the same spill weight otherwise it will be choosen
665 // as a spill candidate since spilling bh doesn't make ebx available.
666 for (unsigned i = 0, e = Supers.size(); i != e; ++i) {
Evan Chengc781a242009-05-03 18:32:42 +0000667 for (const unsigned *sr = tri_->getSubRegisters(Supers[i]); *sr; ++sr)
668 if (!Processed.count(*sr))
669 Weights[*sr] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000670 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000671}
672
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000673static
674RALinScan::IntervalPtrs::iterator
675FindIntervalInVector(RALinScan::IntervalPtrs &IP, LiveInterval *LI) {
676 for (RALinScan::IntervalPtrs::iterator I = IP.begin(), E = IP.end();
677 I != E; ++I)
Chris Lattnercbb56252004-11-18 02:42:27 +0000678 if (I->first == LI) return I;
679 return IP.end();
680}
681
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000682static void RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, unsigned Point){
Chris Lattner19828d42004-11-18 03:49:30 +0000683 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000684 RALinScan::IntervalPtr &IP = V[i];
Chris Lattner19828d42004-11-18 03:49:30 +0000685 LiveInterval::iterator I = std::upper_bound(IP.first->begin(),
686 IP.second, Point);
687 if (I != IP.first->begin()) --I;
688 IP.second = I;
689 }
690}
Chris Lattnercbb56252004-11-18 02:42:27 +0000691
Evan Cheng3f32d652008-06-04 09:18:41 +0000692/// addStackInterval - Create a LiveInterval for stack if the specified live
693/// interval has been spilled.
694static void addStackInterval(LiveInterval *cur, LiveStacks *ls_,
Evan Chengc781a242009-05-03 18:32:42 +0000695 LiveIntervals *li_,
696 MachineRegisterInfo* mri_, VirtRegMap &vrm_) {
Evan Cheng3f32d652008-06-04 09:18:41 +0000697 int SS = vrm_.getStackSlot(cur->reg);
698 if (SS == VirtRegMap::NO_STACK_SLOT)
699 return;
Evan Chengc781a242009-05-03 18:32:42 +0000700
701 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
702 LiveInterval &SI = ls_->getOrCreateInterval(SS, RC);
Evan Cheng9c3c2212008-06-06 07:54:39 +0000703
Evan Cheng3f32d652008-06-04 09:18:41 +0000704 VNInfo *VNI;
Evan Cheng54898932008-10-29 08:39:34 +0000705 if (SI.hasAtLeastOneValue())
Evan Cheng3f32d652008-06-04 09:18:41 +0000706 VNI = SI.getValNumInfo(0);
707 else
708 VNI = SI.getNextValue(~0U, 0, ls_->getVNInfoAllocator());
709
710 LiveInterval &RI = li_->getInterval(cur->reg);
711 // FIXME: This may be overly conservative.
712 SI.MergeRangesInAsValue(RI, VNI);
Evan Cheng3f32d652008-06-04 09:18:41 +0000713}
714
Evan Cheng3e172252008-06-20 21:45:16 +0000715/// getConflictWeight - Return the number of conflicts between cur
716/// live interval and defs and uses of Reg weighted by loop depthes.
Evan Chengc781a242009-05-03 18:32:42 +0000717static
718float getConflictWeight(LiveInterval *cur, unsigned Reg, LiveIntervals *li_,
719 MachineRegisterInfo *mri_,
720 const MachineLoopInfo *loopInfo) {
Evan Cheng3e172252008-06-20 21:45:16 +0000721 float Conflicts = 0;
722 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
723 E = mri_->reg_end(); I != E; ++I) {
724 MachineInstr *MI = &*I;
725 if (cur->liveAt(li_->getInstructionIndex(MI))) {
726 unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
727 Conflicts += powf(10.0f, (float)loopDepth);
728 }
729 }
730 return Conflicts;
731}
732
733/// findIntervalsToSpill - Determine the intervals to spill for the
734/// specified interval. It's passed the physical registers whose spill
735/// weight is the lowest among all the registers whose live intervals
736/// conflict with the interval.
737void RALinScan::findIntervalsToSpill(LiveInterval *cur,
738 std::vector<std::pair<unsigned,float> > &Candidates,
739 unsigned NumCands,
740 SmallVector<LiveInterval*, 8> &SpillIntervals) {
741 // We have figured out the *best* register to spill. But there are other
742 // registers that are pretty good as well (spill weight within 3%). Spill
743 // the one that has fewest defs and uses that conflict with cur.
744 float Conflicts[3] = { 0.0f, 0.0f, 0.0f };
745 SmallVector<LiveInterval*, 8> SLIs[3];
746
747 DOUT << "\tConsidering " << NumCands << " candidates: ";
748 DEBUG(for (unsigned i = 0; i != NumCands; ++i)
749 DOUT << tri_->getName(Candidates[i].first) << " ";
750 DOUT << "\n";);
751
752 // Calculate the number of conflicts of each candidate.
753 for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
754 unsigned Reg = i->first->reg;
755 unsigned PhysReg = vrm_->getPhys(Reg);
756 if (!cur->overlapsFrom(*i->first, i->second))
757 continue;
758 for (unsigned j = 0; j < NumCands; ++j) {
759 unsigned Candidate = Candidates[j].first;
760 if (tri_->regsOverlap(PhysReg, Candidate)) {
761 if (NumCands > 1)
762 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
763 SLIs[j].push_back(i->first);
764 }
765 }
766 }
767
768 for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){
769 unsigned Reg = i->first->reg;
770 unsigned PhysReg = vrm_->getPhys(Reg);
771 if (!cur->overlapsFrom(*i->first, i->second-1))
772 continue;
773 for (unsigned j = 0; j < NumCands; ++j) {
774 unsigned Candidate = Candidates[j].first;
775 if (tri_->regsOverlap(PhysReg, Candidate)) {
776 if (NumCands > 1)
777 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
778 SLIs[j].push_back(i->first);
779 }
780 }
781 }
782
783 // Which is the best candidate?
784 unsigned BestCandidate = 0;
785 float MinConflicts = Conflicts[0];
786 for (unsigned i = 1; i != NumCands; ++i) {
787 if (Conflicts[i] < MinConflicts) {
788 BestCandidate = i;
789 MinConflicts = Conflicts[i];
790 }
791 }
792
793 std::copy(SLIs[BestCandidate].begin(), SLIs[BestCandidate].end(),
794 std::back_inserter(SpillIntervals));
795}
796
797namespace {
798 struct WeightCompare {
799 typedef std::pair<unsigned, float> RegWeightPair;
800 bool operator()(const RegWeightPair &LHS, const RegWeightPair &RHS) const {
801 return LHS.second < RHS.second;
802 }
803 };
804}
805
806static bool weightsAreClose(float w1, float w2) {
807 if (!NewHeuristic)
808 return false;
809
810 float diff = w1 - w2;
811 if (diff <= 0.02f) // Within 0.02f
812 return true;
813 return (diff / w2) <= 0.05f; // Within 5%.
814}
815
Evan Cheng206d1852009-04-20 08:01:12 +0000816LiveInterval *RALinScan::hasNextReloadInterval(LiveInterval *cur) {
817 DenseMap<unsigned, unsigned>::iterator I = NextReloadMap.find(cur->reg);
818 if (I == NextReloadMap.end())
819 return 0;
820 return &li_->getInterval(I->second);
821}
822
823void RALinScan::DowngradeRegister(LiveInterval *li, unsigned Reg) {
824 bool isNew = DowngradedRegs.insert(Reg);
825 isNew = isNew; // Silence compiler warning.
826 assert(isNew && "Multiple reloads holding the same register?");
827 DowngradeMap.insert(std::make_pair(li->reg, Reg));
828 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS) {
829 isNew = DowngradedRegs.insert(*AS);
830 isNew = isNew; // Silence compiler warning.
831 assert(isNew && "Multiple reloads holding the same register?");
832 DowngradeMap.insert(std::make_pair(li->reg, *AS));
833 }
834 ++NumDowngrade;
835}
836
837void RALinScan::UpgradeRegister(unsigned Reg) {
838 if (Reg) {
839 DowngradedRegs.erase(Reg);
840 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS)
841 DowngradedRegs.erase(*AS);
842 }
843}
844
845namespace {
846 struct LISorter {
847 bool operator()(LiveInterval* A, LiveInterval* B) {
848 return A->beginNumber() < B->beginNumber();
849 }
850 };
851}
852
Chris Lattnercbb56252004-11-18 02:42:27 +0000853/// assignRegOrStackSlotAtInterval - assign a register if one is available, or
854/// spill.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000855void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000856{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000857 DOUT << "\tallocating current interval: ";
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000858
Evan Chengf30a49d2008-04-03 16:40:27 +0000859 // This is an implicitly defined live interval, just assign any register.
Evan Cheng841ee1a2008-09-18 22:38:47 +0000860 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000861 if (cur->empty()) {
862 unsigned physReg = cur->preference;
863 if (!physReg)
864 physReg = *RC->allocation_order_begin(*mf_);
865 DOUT << tri_->getName(physReg) << '\n';
866 // Note the register is not really in use.
867 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000868 return;
869 }
870
Evan Cheng5b16cd22009-05-01 01:03:49 +0000871 backUpRegUses();
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000872
Chris Lattnera6c17502005-08-22 20:20:42 +0000873 std::vector<std::pair<unsigned, float> > SpillWeightsToAdd;
Chris Lattner365b95f2004-11-18 04:13:02 +0000874 unsigned StartPosition = cur->beginNumber();
Chris Lattnerb9805782005-08-23 22:27:31 +0000875 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
Evan Chengc92da382007-11-03 07:20:12 +0000876
Evan Chengd0deec22009-01-20 00:16:18 +0000877 // If start of this live interval is defined by a move instruction and its
878 // source is assigned a physical register that is compatible with the target
879 // register class, then we should try to assign it the same register.
Evan Chengc92da382007-11-03 07:20:12 +0000880 // This can happen when the move is from a larger register class to a smaller
881 // one, e.g. X86::mov32to32_. These move instructions are not coalescable.
Evan Chengd0deec22009-01-20 00:16:18 +0000882 if (!cur->preference && cur->hasAtLeastOneValue()) {
883 VNInfo *vni = cur->begin()->valno;
Evan Chengc92da382007-11-03 07:20:12 +0000884 if (vni->def && vni->def != ~1U && vni->def != ~0U) {
885 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000886 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
887 if (CopyMI &&
888 tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000889 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000890 if (TargetRegisterInfo::isPhysicalRegister(SrcReg))
Evan Chengc92da382007-11-03 07:20:12 +0000891 Reg = SrcReg;
892 else if (vrm_->isAssignedReg(SrcReg))
893 Reg = vrm_->getPhys(SrcReg);
Evan Cheng1c2f6da2009-04-29 00:42:27 +0000894 if (Reg) {
895 if (SrcSubReg)
896 Reg = tri_->getSubReg(Reg, SrcSubReg);
897 if (DstSubReg)
898 Reg = tri_->getMatchingSuperReg(Reg, DstSubReg, RC);
899 if (Reg && allocatableRegs_[Reg] && RC->contains(Reg))
900 cur->preference = Reg;
901 }
Evan Chengc92da382007-11-03 07:20:12 +0000902 }
903 }
904 }
905
Evan Cheng5b16cd22009-05-01 01:03:49 +0000906 // For every interval in inactive we overlap with, mark the
Chris Lattnera6c17502005-08-22 20:20:42 +0000907 // register as not free and update spill weights.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000908 for (IntervalPtrs::const_iterator i = inactive_.begin(),
909 e = inactive_.end(); i != e; ++i) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000910 unsigned Reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000911 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
Chris Lattnerb9805782005-08-23 22:27:31 +0000912 "Can only allocate virtual registers!");
Evan Cheng841ee1a2008-09-18 22:38:47 +0000913 const TargetRegisterClass *RegRC = mri_->getRegClass(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000914 // If this is not in a related reg class to the register we're allocating,
915 // don't check it.
916 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
917 cur->overlapsFrom(*i->first, i->second-1)) {
918 Reg = vrm_->getPhys(Reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000919 addRegUse(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000920 SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000921 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000922 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000923
924 // Speculatively check to see if we can get a register right now. If not,
925 // we know we won't be able to by adding more constraints. If so, we can
926 // check to see if it is valid. Doing an exhaustive search of the fixed_ list
927 // is very bad (it contains all callee clobbered registers for any functions
928 // with a call), so we want to avoid doing that if possible.
929 unsigned physReg = getFreePhysReg(cur);
Evan Cheng676dd7c2008-03-11 07:19:34 +0000930 unsigned BestPhysReg = physReg;
Chris Lattnera411cbc2005-08-22 20:59:30 +0000931 if (physReg) {
932 // We got a register. However, if it's in the fixed_ list, we might
Chris Lattnere836ad62005-08-30 21:03:36 +0000933 // conflict with it. Check to see if we conflict with it or any of its
934 // aliases.
Evan Chengc92da382007-11-03 07:20:12 +0000935 SmallSet<unsigned, 8> RegAliases;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000936 for (const unsigned *AS = tri_->getAliasSet(physReg); *AS; ++AS)
Chris Lattnere836ad62005-08-30 21:03:36 +0000937 RegAliases.insert(*AS);
938
Chris Lattnera411cbc2005-08-22 20:59:30 +0000939 bool ConflictsWithFixed = false;
940 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
Jim Laskeye719d9f2006-10-24 14:35:25 +0000941 IntervalPtr &IP = fixed_[i];
942 if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000943 // Okay, this reg is on the fixed list. Check to see if we actually
944 // conflict.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000945 LiveInterval *I = IP.first;
946 if (I->endNumber() > StartPosition) {
947 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
948 IP.second = II;
949 if (II != I->begin() && II->start > StartPosition)
950 --II;
Chris Lattnere836ad62005-08-30 21:03:36 +0000951 if (cur->overlapsFrom(*I, II)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000952 ConflictsWithFixed = true;
Chris Lattnere836ad62005-08-30 21:03:36 +0000953 break;
954 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000955 }
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000956 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000957 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000958
959 // Okay, the register picked by our speculative getFreePhysReg call turned
960 // out to be in use. Actually add all of the conflicting fixed registers to
Evan Cheng5b16cd22009-05-01 01:03:49 +0000961 // regUse_ so we can do an accurate query.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000962 if (ConflictsWithFixed) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000963 // For every interval in fixed we overlap with, mark the register as not
964 // free and update spill weights.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000965 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
966 IntervalPtr &IP = fixed_[i];
967 LiveInterval *I = IP.first;
Chris Lattnerb9805782005-08-23 22:27:31 +0000968
969 const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg];
970 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
971 I->endNumber() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000972 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
973 IP.second = II;
974 if (II != I->begin() && II->start > StartPosition)
975 --II;
976 if (cur->overlapsFrom(*I, II)) {
977 unsigned reg = I->reg;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000978 addRegUse(reg);
Chris Lattnera411cbc2005-08-22 20:59:30 +0000979 SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight));
980 }
981 }
982 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000983
Evan Cheng5b16cd22009-05-01 01:03:49 +0000984 // Using the newly updated regUse_ object, which includes conflicts in the
Chris Lattnera411cbc2005-08-22 20:59:30 +0000985 // future, see if there are any registers available.
986 physReg = getFreePhysReg(cur);
987 }
988 }
989
Chris Lattnera6c17502005-08-22 20:20:42 +0000990 // Restore the physical register tracker, removing information about the
991 // future.
Evan Cheng5b16cd22009-05-01 01:03:49 +0000992 restoreRegUses();
Chris Lattnera6c17502005-08-22 20:20:42 +0000993
Evan Cheng5b16cd22009-05-01 01:03:49 +0000994 // If we find a free register, we are done: assign this virtual to
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000995 // the free physical register and add this interval to the active
996 // list.
997 if (physReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000998 DOUT << tri_->getName(physReg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000999 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Cheng5b16cd22009-05-01 01:03:49 +00001000 addRegUse(physReg);
Chris Lattnercbb56252004-11-18 02:42:27 +00001001 active_.push_back(std::make_pair(cur, cur->begin()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001002 handled_.push_back(cur);
Evan Cheng206d1852009-04-20 08:01:12 +00001003
1004 // "Upgrade" the physical register since it has been allocated.
1005 UpgradeRegister(physReg);
1006 if (LiveInterval *NextReloadLI = hasNextReloadInterval(cur)) {
1007 // "Downgrade" physReg to try to keep physReg from being allocated until
1008 // the next reload from the same SS is allocated.
1009 NextReloadLI->preference = physReg;
1010 DowngradeRegister(cur, physReg);
1011 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001012 return;
1013 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001014 DOUT << "no free registers\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001015
Chris Lattnera6c17502005-08-22 20:20:42 +00001016 // Compile the spill weights into an array that is better for scanning.
Evan Cheng3e172252008-06-20 21:45:16 +00001017 std::vector<float> SpillWeights(tri_->getNumRegs(), 0.0f);
Chris Lattnera6c17502005-08-22 20:20:42 +00001018 for (std::vector<std::pair<unsigned, float> >::iterator
1019 I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I)
Evan Cheng5d088fe2009-03-23 22:57:19 +00001020 updateSpillWeights(SpillWeights, I->first, I->second, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +00001021
1022 // for each interval in active, update spill weights.
1023 for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
1024 i != e; ++i) {
1025 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001026 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnera6c17502005-08-22 20:20:42 +00001027 "Can only allocate virtual registers!");
1028 reg = vrm_->getPhys(reg);
Evan Cheng5d088fe2009-03-23 22:57:19 +00001029 updateSpillWeights(SpillWeights, reg, i->first->weight, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +00001030 }
1031
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001032 DOUT << "\tassigning stack slot at interval "<< *cur << ":\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001033
Chris Lattnerc8e2c552006-03-25 23:00:56 +00001034 // Find a register to spill.
Jim Laskey7902c752006-11-07 12:25:45 +00001035 float minWeight = HUGE_VALF;
Evan Cheng5d088fe2009-03-23 22:57:19 +00001036 unsigned minReg = 0; /*cur->preference*/; // Try the pref register first.
Evan Cheng3e172252008-06-20 21:45:16 +00001037
1038 bool Found = false;
1039 std::vector<std::pair<unsigned,float> > RegsWeights;
Evan Cheng20b0abc2007-04-17 20:32:26 +00001040 if (!minReg || SpillWeights[minReg] == HUGE_VALF)
1041 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1042 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1043 unsigned reg = *i;
Evan Cheng3e172252008-06-20 21:45:16 +00001044 float regWeight = SpillWeights[reg];
1045 if (minWeight > regWeight)
1046 Found = true;
1047 RegsWeights.push_back(std::make_pair(reg, regWeight));
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001048 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +00001049
1050 // If we didn't find a register that is spillable, try aliases?
Evan Cheng3e172252008-06-20 21:45:16 +00001051 if (!Found) {
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001052 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1053 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1054 unsigned reg = *i;
1055 // No need to worry about if the alias register size < regsize of RC.
1056 // We are going to spill all registers that alias it anyway.
Evan Cheng3e172252008-06-20 21:45:16 +00001057 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as)
1058 RegsWeights.push_back(std::make_pair(*as, SpillWeights[*as]));
Evan Cheng676dd7c2008-03-11 07:19:34 +00001059 }
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001060 }
Evan Cheng3e172252008-06-20 21:45:16 +00001061
1062 // Sort all potential spill candidates by weight.
1063 std::sort(RegsWeights.begin(), RegsWeights.end(), WeightCompare());
1064 minReg = RegsWeights[0].first;
1065 minWeight = RegsWeights[0].second;
1066 if (minWeight == HUGE_VALF) {
1067 // All registers must have inf weight. Just grab one!
1068 minReg = BestPhysReg ? BestPhysReg : *RC->allocation_order_begin(*mf_);
Owen Andersona1566f22008-07-22 22:46:49 +00001069 if (cur->weight == HUGE_VALF ||
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001070 li_->getApproximateInstructionCount(*cur) == 0) {
Evan Cheng3e172252008-06-20 21:45:16 +00001071 // Spill a physical register around defs and uses.
Evan Cheng206d1852009-04-20 08:01:12 +00001072 if (li_->spillPhysRegAroundRegDefsUses(*cur, minReg, *vrm_)) {
Evan Cheng96f3fd92009-04-29 07:16:34 +00001073 // spillPhysRegAroundRegDefsUses may have invalidated iterator stored
1074 // in fixed_. Reset them.
1075 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
1076 IntervalPtr &IP = fixed_[i];
1077 LiveInterval *I = IP.first;
1078 if (I->reg == minReg || tri_->isSubRegister(minReg, I->reg))
1079 IP.second = I->advanceTo(I->begin(), StartPosition);
1080 }
1081
Evan Cheng206d1852009-04-20 08:01:12 +00001082 DowngradedRegs.clear();
Evan Cheng2824a652009-03-23 18:24:37 +00001083 assignRegOrStackSlotAtInterval(cur);
Evan Cheng206d1852009-04-20 08:01:12 +00001084 } else {
Evan Cheng2824a652009-03-23 18:24:37 +00001085 cerr << "Ran out of registers during register allocation!\n";
1086 exit(1);
1087 }
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001088 return;
1089 }
Evan Cheng3e172252008-06-20 21:45:16 +00001090 }
1091
1092 // Find up to 3 registers to consider as spill candidates.
1093 unsigned LastCandidate = RegsWeights.size() >= 3 ? 3 : 1;
1094 while (LastCandidate > 1) {
1095 if (weightsAreClose(RegsWeights[LastCandidate-1].second, minWeight))
1096 break;
1097 --LastCandidate;
1098 }
1099
1100 DOUT << "\t\tregister(s) with min weight(s): ";
1101 DEBUG(for (unsigned i = 0; i != LastCandidate; ++i)
1102 DOUT << tri_->getName(RegsWeights[i].first)
1103 << " (" << RegsWeights[i].second << ")\n");
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001104
Evan Cheng206d1852009-04-20 08:01:12 +00001105 // If the current has the minimum weight, we need to spill it and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001106 // add any added intervals back to unhandled, and restart
1107 // linearscan.
Jim Laskey7902c752006-11-07 12:25:45 +00001108 if (cur->weight != HUGE_VALF && cur->weight <= minWeight) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001109 DOUT << "\t\t\tspilling(c): " << *cur << '\n';
Evan Chengdc377862008-09-30 15:44:16 +00001110 SmallVector<LiveInterval*, 8> spillIs;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001111 std::vector<LiveInterval*> added =
Evan Chengc781a242009-05-03 18:32:42 +00001112 li_->addIntervalsForSpills(*cur, spillIs, loopInfo, *vrm_);
Evan Cheng206d1852009-04-20 08:01:12 +00001113 std::sort(added.begin(), added.end(), LISorter());
Evan Chengc781a242009-05-03 18:32:42 +00001114 addStackInterval(cur, ls_, li_, mri_, *vrm_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001115 if (added.empty())
1116 return; // Early exit if all spills were folded.
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001117
Evan Cheng206d1852009-04-20 08:01:12 +00001118 // Merge added with unhandled. Note that we have already sorted
1119 // intervals returned by addIntervalsForSpills by their starting
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001120 // point.
Evan Chengc4f718a2009-04-20 17:23:48 +00001121 // This also update the NextReloadMap. That is, it adds mapping from a
1122 // register defined by a reload from SS to the next reload from SS in the
1123 // same basic block.
1124 MachineBasicBlock *LastReloadMBB = 0;
1125 LiveInterval *LastReload = 0;
1126 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1127 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1128 LiveInterval *ReloadLi = added[i];
1129 if (ReloadLi->weight == HUGE_VALF &&
1130 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
1131 unsigned ReloadIdx = ReloadLi->beginNumber();
1132 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1133 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1134 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1135 // Last reload of same SS is in the same MBB. We want to try to
1136 // allocate both reloads the same register and make sure the reg
1137 // isn't clobbered in between if at all possible.
1138 assert(LastReload->beginNumber() < ReloadIdx);
1139 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1140 }
1141 LastReloadMBB = ReloadMBB;
1142 LastReload = ReloadLi;
1143 LastReloadSS = ReloadSS;
1144 }
1145 unhandled_.push(ReloadLi);
1146 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001147 return;
1148 }
1149
Chris Lattner19828d42004-11-18 03:49:30 +00001150 ++NumBacktracks;
1151
Evan Cheng206d1852009-04-20 08:01:12 +00001152 // Push the current interval back to unhandled since we are going
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001153 // to re-run at least this iteration. Since we didn't modify it it
1154 // should go back right in the front of the list
1155 unhandled_.push(cur);
1156
Dan Gohman6f0d0242008-02-10 18:45:23 +00001157 assert(TargetRegisterInfo::isPhysicalRegister(minReg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001158 "did not choose a register to spill?");
Chris Lattner19828d42004-11-18 03:49:30 +00001159
Evan Cheng3e172252008-06-20 21:45:16 +00001160 // We spill all intervals aliasing the register with
1161 // minimum weight, rollback to the interval with the earliest
1162 // start point and let the linear scan algorithm run again
1163 SmallVector<LiveInterval*, 8> spillIs;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001164
Evan Cheng3e172252008-06-20 21:45:16 +00001165 // Determine which intervals have to be spilled.
1166 findIntervalsToSpill(cur, RegsWeights, LastCandidate, spillIs);
1167
1168 // Set of spilled vregs (used later to rollback properly)
1169 SmallSet<unsigned, 8> spilled;
1170
1171 // The earliest start of a Spilled interval indicates up to where
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001172 // in handled we need to roll back
Chris Lattner23b71c12004-11-18 01:29:39 +00001173 unsigned earliestStart = cur->beginNumber();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001174
Evan Cheng3e172252008-06-20 21:45:16 +00001175 // Spill live intervals of virtual regs mapped to the physical register we
Chris Lattner19828d42004-11-18 03:49:30 +00001176 // want to clear (and its aliases). We only spill those that overlap with the
1177 // current interval as the rest do not affect its allocation. we also keep
1178 // track of the earliest start of all spilled live intervals since this will
1179 // mark our rollback point.
Evan Cheng3e172252008-06-20 21:45:16 +00001180 std::vector<LiveInterval*> added;
1181 while (!spillIs.empty()) {
1182 LiveInterval *sli = spillIs.back();
1183 spillIs.pop_back();
1184 DOUT << "\t\t\tspilling(a): " << *sli << '\n';
1185 earliestStart = std::min(earliestStart, sli->beginNumber());
Evan Cheng3e172252008-06-20 21:45:16 +00001186 std::vector<LiveInterval*> newIs =
Evan Chengc781a242009-05-03 18:32:42 +00001187 li_->addIntervalsForSpills(*sli, spillIs, loopInfo, *vrm_);
1188 addStackInterval(sli, ls_, li_, mri_, *vrm_);
Evan Cheng3e172252008-06-20 21:45:16 +00001189 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
1190 spilled.insert(sli->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001191 }
1192
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001193 DOUT << "\t\trolling back to: " << earliestStart << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +00001194
1195 // Scan handled in reverse order up to the earliest start of a
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001196 // spilled live interval and undo each one, restoring the state of
Chris Lattnercbb56252004-11-18 02:42:27 +00001197 // unhandled.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001198 while (!handled_.empty()) {
1199 LiveInterval* i = handled_.back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001200 // If this interval starts before t we are done.
Chris Lattner23b71c12004-11-18 01:29:39 +00001201 if (i->beginNumber() < earliestStart)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001202 break;
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001203 DOUT << "\t\t\tundo changes for: " << *i << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001204 handled_.pop_back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001205
1206 // When undoing a live interval allocation we must know if it is active or
Evan Cheng5b16cd22009-05-01 01:03:49 +00001207 // inactive to properly update regUse_ and the VirtRegMap.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001208 IntervalPtrs::iterator it;
Chris Lattnercbb56252004-11-18 02:42:27 +00001209 if ((it = FindIntervalInVector(active_, i)) != active_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001210 active_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001211 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001212 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001213 unhandled_.push(i);
Evan Cheng5b16cd22009-05-01 01:03:49 +00001214 delRegUse(vrm_->getPhys(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001215 vrm_->clearVirt(i->reg);
Chris Lattnercbb56252004-11-18 02:42:27 +00001216 } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001217 inactive_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001218 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001219 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001220 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +00001221 vrm_->clearVirt(i->reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001222 } else {
Dan Gohman6f0d0242008-02-10 18:45:23 +00001223 assert(TargetRegisterInfo::isVirtualRegister(i->reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001224 "Can only allocate virtual registers!");
1225 vrm_->clearVirt(i->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001226 unhandled_.push(i);
1227 }
Evan Cheng9aeaf752007-11-04 08:32:21 +00001228
Evan Cheng206d1852009-04-20 08:01:12 +00001229 DenseMap<unsigned, unsigned>::iterator ii = DowngradeMap.find(i->reg);
1230 if (ii == DowngradeMap.end())
1231 // It interval has a preference, it must be defined by a copy. Clear the
1232 // preference now since the source interval allocation may have been
1233 // undone as well.
1234 i->preference = 0;
1235 else {
1236 UpgradeRegister(ii->second);
1237 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001238 }
1239
Chris Lattner19828d42004-11-18 03:49:30 +00001240 // Rewind the iterators in the active, inactive, and fixed lists back to the
1241 // point we reverted to.
1242 RevertVectorIteratorsTo(active_, earliestStart);
1243 RevertVectorIteratorsTo(inactive_, earliestStart);
1244 RevertVectorIteratorsTo(fixed_, earliestStart);
1245
Evan Cheng206d1852009-04-20 08:01:12 +00001246 // Scan the rest and undo each interval that expired after t and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001247 // insert it in active (the next iteration of the algorithm will
1248 // put it in inactive if required)
Chris Lattnercbb56252004-11-18 02:42:27 +00001249 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
1250 LiveInterval *HI = handled_[i];
1251 if (!HI->expiredAt(earliestStart) &&
1252 HI->expiredAt(cur->beginNumber())) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001253 DOUT << "\t\t\tundo changes for: " << *HI << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +00001254 active_.push_back(std::make_pair(HI, HI->begin()));
Dan Gohman6f0d0242008-02-10 18:45:23 +00001255 assert(!TargetRegisterInfo::isPhysicalRegister(HI->reg));
Evan Cheng5b16cd22009-05-01 01:03:49 +00001256 addRegUse(vrm_->getPhys(HI->reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001257 }
1258 }
1259
Evan Cheng206d1852009-04-20 08:01:12 +00001260 // Merge added with unhandled.
1261 // This also update the NextReloadMap. That is, it adds mapping from a
1262 // register defined by a reload from SS to the next reload from SS in the
1263 // same basic block.
1264 MachineBasicBlock *LastReloadMBB = 0;
1265 LiveInterval *LastReload = 0;
1266 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1267 std::sort(added.begin(), added.end(), LISorter());
1268 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1269 LiveInterval *ReloadLi = added[i];
1270 if (ReloadLi->weight == HUGE_VALF &&
1271 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
1272 unsigned ReloadIdx = ReloadLi->beginNumber();
1273 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1274 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1275 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1276 // Last reload of same SS is in the same MBB. We want to try to
1277 // allocate both reloads the same register and make sure the reg
1278 // isn't clobbered in between if at all possible.
1279 assert(LastReload->beginNumber() < ReloadIdx);
1280 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1281 }
1282 LastReloadMBB = ReloadMBB;
1283 LastReload = ReloadLi;
1284 LastReloadSS = ReloadSS;
1285 }
1286 unhandled_.push(ReloadLi);
1287 }
1288}
1289
1290unsigned RALinScan::getFreePhysReg(const TargetRegisterClass *RC,
1291 unsigned MaxInactiveCount,
1292 SmallVector<unsigned, 256> &inactiveCounts,
1293 bool SkipDGRegs) {
1294 unsigned FreeReg = 0;
1295 unsigned FreeRegInactiveCount = 0;
1296
1297 TargetRegisterClass::iterator I = RC->allocation_order_begin(*mf_);
1298 TargetRegisterClass::iterator E = RC->allocation_order_end(*mf_);
1299 assert(I != E && "No allocatable register in this register class!");
1300
1301 // Scan for the first available register.
1302 for (; I != E; ++I) {
1303 unsigned Reg = *I;
1304 // Ignore "downgraded" registers.
1305 if (SkipDGRegs && DowngradedRegs.count(Reg))
1306 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001307 if (isRegAvail(Reg)) {
Evan Cheng206d1852009-04-20 08:01:12 +00001308 FreeReg = Reg;
1309 if (FreeReg < inactiveCounts.size())
1310 FreeRegInactiveCount = inactiveCounts[FreeReg];
1311 else
1312 FreeRegInactiveCount = 0;
1313 break;
1314 }
1315 }
1316
1317 // If there are no free regs, or if this reg has the max inactive count,
1318 // return this register.
1319 if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount)
1320 return FreeReg;
1321
1322 // Continue scanning the registers, looking for the one with the highest
1323 // inactive count. Alkis found that this reduced register pressure very
1324 // slightly on X86 (in rev 1.94 of this file), though this should probably be
1325 // reevaluated now.
1326 for (; I != E; ++I) {
1327 unsigned Reg = *I;
1328 // Ignore "downgraded" registers.
1329 if (SkipDGRegs && DowngradedRegs.count(Reg))
1330 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001331 if (isRegAvail(Reg) && Reg < inactiveCounts.size() &&
Evan Cheng206d1852009-04-20 08:01:12 +00001332 FreeRegInactiveCount < inactiveCounts[Reg]) {
1333 FreeReg = Reg;
1334 FreeRegInactiveCount = inactiveCounts[Reg];
1335 if (FreeRegInactiveCount == MaxInactiveCount)
1336 break; // We found the one with the max inactive count.
1337 }
1338 }
1339
1340 return FreeReg;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +00001341}
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001342
Chris Lattnercbb56252004-11-18 02:42:27 +00001343/// getFreePhysReg - return a free physical register for this virtual register
1344/// interval if we have one, otherwise return 0.
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001345unsigned RALinScan::getFreePhysReg(LiveInterval *cur) {
Chris Lattnerfe424622008-02-26 22:08:41 +00001346 SmallVector<unsigned, 256> inactiveCounts;
Chris Lattnerf8355d92005-08-22 16:55:22 +00001347 unsigned MaxInactiveCount = 0;
1348
Evan Cheng841ee1a2008-09-18 22:38:47 +00001349 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001350 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
1351
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001352 for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end();
1353 i != e; ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +00001354 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001355 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001356 "Can only allocate virtual registers!");
Chris Lattnerb9805782005-08-23 22:27:31 +00001357
1358 // If this is not in a related reg class to the register we're allocating,
1359 // don't check it.
Evan Cheng841ee1a2008-09-18 22:38:47 +00001360 const TargetRegisterClass *RegRC = mri_->getRegClass(reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001361 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) {
1362 reg = vrm_->getPhys(reg);
Chris Lattnerfe424622008-02-26 22:08:41 +00001363 if (inactiveCounts.size() <= reg)
1364 inactiveCounts.resize(reg+1);
Chris Lattnerb9805782005-08-23 22:27:31 +00001365 ++inactiveCounts[reg];
1366 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]);
1367 }
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001368 }
1369
Evan Cheng20b0abc2007-04-17 20:32:26 +00001370 // If copy coalescer has assigned a "preferred" register, check if it's
Dale Johannesen86b49f82008-09-24 01:07:17 +00001371 // available first.
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001372 if (cur->preference) {
Evan Cheng1c2f6da2009-04-29 00:42:27 +00001373 DOUT << "(preferred: " << tri_->getName(cur->preference) << ") ";
Evan Cheng5b16cd22009-05-01 01:03:49 +00001374 if (isRegAvail(cur->preference) &&
Evan Cheng1c2f6da2009-04-29 00:42:27 +00001375 RC->contains(cur->preference))
Evan Cheng20b0abc2007-04-17 20:32:26 +00001376 return cur->preference;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001377 }
Evan Cheng20b0abc2007-04-17 20:32:26 +00001378
Evan Cheng206d1852009-04-20 08:01:12 +00001379 if (!DowngradedRegs.empty()) {
1380 unsigned FreeReg = getFreePhysReg(RC, MaxInactiveCount, inactiveCounts,
1381 true);
1382 if (FreeReg)
1383 return FreeReg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001384 }
Evan Cheng206d1852009-04-20 08:01:12 +00001385 return getFreePhysReg(RC, MaxInactiveCount, inactiveCounts, false);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001386}
1387
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001388FunctionPass* llvm::createLinearScanRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001389 return new RALinScan();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001390}