blob: 83c1cbb385fbe1cea27b95833c5b791cd2f8602f [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"
Owen Anderson1ed5b712009-03-11 22:31:21 +000016#include "Spiller.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
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000128 std::auto_ptr<Spiller> spiller_;
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() {
219 regUse_.clear();
220 regUseBackUp_.clear();
221 }
222
223 void addRegUse(unsigned physReg) {
224 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
225 "should be physical register!");
226 ++regUse_[physReg];
227 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as)
228 ++regUse_[*as];
229 }
230
231 void delRegUse(unsigned physReg) {
232 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
233 "should be physical register!");
234 assert(regUse_[physReg] != 0);
235 --regUse_[physReg];
236 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as) {
237 assert(regUse_[*as] != 0);
238 --regUse_[*as];
239 }
240 }
241
242 bool isRegAvail(unsigned physReg) const {
243 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
244 "should be physical register!");
245 return regUse_[physReg] == 0;
246 }
247
248 void backUpRegUses() {
249 regUseBackUp_ = regUse_;
250 }
251
252 void restoreRegUses() {
253 regUse_ = regUseBackUp_;
254 }
255
256 ///
257 /// Register handling helpers.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000258 ///
259
Chris Lattnercbb56252004-11-18 02:42:27 +0000260 /// getFreePhysReg - return a free physical register for this virtual
261 /// register interval if we have one, otherwise return 0.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000262 unsigned getFreePhysReg(LiveInterval* cur);
Evan Cheng206d1852009-04-20 08:01:12 +0000263 unsigned getFreePhysReg(const TargetRegisterClass *RC,
264 unsigned MaxInactiveCount,
265 SmallVector<unsigned, 256> &inactiveCounts,
266 bool SkipDGRegs);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000267
268 /// assignVirt2StackSlot - assigns this virtual register to a
269 /// stack slot. returns the stack slot
270 int assignVirt2StackSlot(unsigned virtReg);
271
Chris Lattnerb9805782005-08-23 22:27:31 +0000272 void ComputeRelatedRegClasses();
273
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000274 template <typename ItTy>
275 void printIntervals(const char* const str, ItTy i, ItTy e) const {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000276 if (str) DOUT << str << " intervals:\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000277 for (; i != e; ++i) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000278 DOUT << "\t" << *i->first << " -> ";
Chris Lattnercbb56252004-11-18 02:42:27 +0000279 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000280 if (TargetRegisterInfo::isVirtualRegister(reg)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000281 reg = vrm_->getPhys(reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000282 }
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000283 DOUT << tri_->getName(reg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000284 }
285 }
286 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000287 char RALinScan::ID = 0;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000288}
289
Evan Cheng3f32d652008-06-04 09:18:41 +0000290static RegisterPass<RALinScan>
291X("linearscan-regalloc", "Linear Scan Register Allocator");
292
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000293void RALinScan::ComputeRelatedRegClasses() {
Chris Lattnerb9805782005-08-23 22:27:31 +0000294 // First pass, add all reg classes to the union, and determine at least one
295 // reg class that each register is in.
296 bool HasAliases = false;
Evan Cheng206d1852009-04-20 08:01:12 +0000297 for (TargetRegisterInfo::regclass_iterator RCI = tri_->regclass_begin(),
298 E = tri_->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000299 RelatedRegClasses.insert(*RCI);
300 for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end();
301 I != E; ++I) {
Evan Cheng206d1852009-04-20 08:01:12 +0000302 HasAliases = HasAliases || *tri_->getAliasSet(*I) != 0;
Chris Lattnerb9805782005-08-23 22:27:31 +0000303
304 const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I];
305 if (PRC) {
306 // Already processed this register. Just make sure we know that
307 // multiple register classes share a register.
308 RelatedRegClasses.unionSets(PRC, *RCI);
309 } else {
310 PRC = *RCI;
311 }
312 }
313 }
314
315 // Second pass, now that we know conservatively what register classes each reg
316 // belongs to, add info about aliases. We don't need to do this for targets
317 // without register aliases.
318 if (HasAliases)
Owen Anderson97382162008-08-13 23:36:23 +0000319 for (DenseMap<unsigned, const TargetRegisterClass*>::iterator
Chris Lattnerb9805782005-08-23 22:27:31 +0000320 I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end();
321 I != E; ++I)
Evan Cheng206d1852009-04-20 08:01:12 +0000322 for (const unsigned *AS = tri_->getAliasSet(I->first); *AS; ++AS)
Chris Lattnerb9805782005-08-23 22:27:31 +0000323 RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]);
324}
325
Evan Chengc92da382007-11-03 07:20:12 +0000326/// attemptTrivialCoalescing - If a simple interval is defined by a copy,
327/// try allocate the definition the same register as the source register
328/// if the register is not defined during live time of the interval. This
329/// eliminate a copy. This is used to coalesce copies which were not
330/// coalesced away before allocation either due to dest and src being in
331/// different register classes or because the coalescer was overly
332/// conservative.
333unsigned RALinScan::attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg) {
Evan Cheng9aeaf752007-11-04 08:32:21 +0000334 if ((cur.preference && cur.preference == Reg) || !cur.containsOneValue())
Evan Chengc92da382007-11-03 07:20:12 +0000335 return Reg;
336
Evan Chengd0deec22009-01-20 00:16:18 +0000337 VNInfo *vni = cur.begin()->valno;
Evan Chengc92da382007-11-03 07:20:12 +0000338 if (!vni->def || vni->def == ~1U || vni->def == ~0U)
339 return Reg;
340 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000341 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
342 if (!CopyMI ||
343 !tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc92da382007-11-03 07:20:12 +0000344 return Reg;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000345 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000346 if (!vrm_->isAssignedReg(SrcReg))
347 return Reg;
348 else
349 SrcReg = vrm_->getPhys(SrcReg);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000350 }
Evan Chengc92da382007-11-03 07:20:12 +0000351 if (Reg == SrcReg)
352 return Reg;
353
Evan Cheng841ee1a2008-09-18 22:38:47 +0000354 const TargetRegisterClass *RC = mri_->getRegClass(cur.reg);
Evan Chengc92da382007-11-03 07:20:12 +0000355 if (!RC->contains(SrcReg))
356 return Reg;
357
358 // Try to coalesce.
359 if (!li_->conflictsWithPhysRegDef(cur, *vrm_, SrcReg)) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000360 DOUT << "Coalescing: " << cur << " -> " << tri_->getName(SrcReg)
Bill Wendling74ab84c2008-02-26 21:11:01 +0000361 << '\n';
Evan Chengc92da382007-11-03 07:20:12 +0000362 vrm_->clearVirt(cur.reg);
363 vrm_->assignVirt2Phys(cur.reg, SrcReg);
364 ++NumCoalesce;
365 return SrcReg;
366 }
367
368 return Reg;
369}
370
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000371bool RALinScan::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000372 mf_ = &fn;
Evan Cheng3e172252008-06-20 21:45:16 +0000373 mri_ = &fn.getRegInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000374 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000375 tri_ = tm_->getRegisterInfo();
Evan Chengc92da382007-11-03 07:20:12 +0000376 tii_ = tm_->getInstrInfo();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000377 allocatableRegs_ = tri_->getAllocatableSet(fn);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000378 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng3f32d652008-06-04 09:18:41 +0000379 ls_ = &getAnalysis<LiveStacks>();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000380 loopInfo = &getAnalysis<MachineLoopInfo>();
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000381
David Greene2c17c4d2007-09-06 16:18:45 +0000382 // We don't run the coalescer here because we have no reason to
383 // interact with it. If the coalescer requires interaction, it
384 // won't do anything. If it doesn't require interaction, we assume
385 // it was run as a separate pass.
386
Chris Lattnerb9805782005-08-23 22:27:31 +0000387 // If this is the first function compiled, compute the related reg classes.
388 if (RelatedRegClasses.empty())
389 ComputeRelatedRegClasses();
Evan Cheng5b16cd22009-05-01 01:03:49 +0000390
391 // Also resize register usage trackers.
392 initRegUses();
393
Owen Anderson49c8aa02009-03-13 05:55:11 +0000394 vrm_ = &getAnalysis<VirtRegMap>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000395 if (!spiller_.get()) spiller_.reset(createSpiller());
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000396
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000397 initIntervalSets();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000398
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000399 linearScan();
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000400
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000401 // Rewrite spill code and update the PhysRegsUsed set.
Evan Cheng5b69eba2009-04-21 22:46:52 +0000402 spiller_->runOnMachineFunction(*mf_, *vrm_, li_);
Chris Lattnercbb56252004-11-18 02:42:27 +0000403
Dan Gohman51cd9d62008-06-23 23:51:16 +0000404 assert(unhandled_.empty() && "Unhandled live intervals remain!");
Evan Cheng5b16cd22009-05-01 01:03:49 +0000405
406 finalizeRegUses();
407
Chris Lattnercbb56252004-11-18 02:42:27 +0000408 fixed_.clear();
409 active_.clear();
410 inactive_.clear();
411 handled_.clear();
Evan Cheng206d1852009-04-20 08:01:12 +0000412 NextReloadMap.clear();
413 DowngradedRegs.clear();
414 DowngradeMap.clear();
Chris Lattnercbb56252004-11-18 02:42:27 +0000415
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000416 return true;
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000417}
418
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000419/// initIntervalSets - initialize the interval sets.
420///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000421void RALinScan::initIntervalSets()
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000422{
423 assert(unhandled_.empty() && fixed_.empty() &&
424 active_.empty() && inactive_.empty() &&
425 "interval sets should be empty on initialization");
426
Owen Andersoncd1dcbd2008-08-15 18:49:41 +0000427 handled_.reserve(li_->getNumIntervals());
428
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000429 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000430 if (TargetRegisterInfo::isPhysicalRegister(i->second->reg)) {
Evan Cheng841ee1a2008-09-18 22:38:47 +0000431 mri_->setPhysRegUsed(i->second->reg);
Owen Anderson03857b22008-08-13 21:49:13 +0000432 fixed_.push_back(std::make_pair(i->second, i->second->begin()));
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000433 } else
Owen Anderson03857b22008-08-13 21:49:13 +0000434 unhandled_.push(i->second);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000435 }
436}
437
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000438void RALinScan::linearScan()
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000439{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000440 // linear scan algorithm
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000441 DOUT << "********** LINEAR SCAN **********\n";
442 DOUT << "********** Function: " << mf_->getFunction()->getName() << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000443
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000444 DEBUG(printIntervals("fixed", fixed_.begin(), fixed_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000445
446 while (!unhandled_.empty()) {
447 // pick the interval with the earliest start point
448 LiveInterval* cur = unhandled_.top();
449 unhandled_.pop();
Evan Cheng11923cc2007-10-16 21:09:14 +0000450 ++NumIters;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000451 DOUT << "\n*** CURRENT ***: " << *cur << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000452
Evan Chengf30a49d2008-04-03 16:40:27 +0000453 if (!cur->empty()) {
454 processActiveIntervals(cur->beginNumber());
455 processInactiveIntervals(cur->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000456
Evan Chengf30a49d2008-04-03 16:40:27 +0000457 assert(TargetRegisterInfo::isVirtualRegister(cur->reg) &&
458 "Can only allocate virtual registers!");
459 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000460
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000461 // Allocating a virtual register. try to find a free
462 // physical register or spill an interval (possibly this one) in order to
463 // assign it one.
464 assignRegOrStackSlotAtInterval(cur);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000465
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000466 DEBUG(printIntervals("active", active_.begin(), active_.end()));
467 DEBUG(printIntervals("inactive", inactive_.begin(), inactive_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000468 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000469
Evan Cheng5b16cd22009-05-01 01:03:49 +0000470 // Expire any remaining active intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000471 while (!active_.empty()) {
472 IntervalPtr &IP = active_.back();
473 unsigned reg = IP.first->reg;
474 DOUT << "\tinterval " << *IP.first << " expired\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000475 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000476 "Can only allocate virtual registers!");
477 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000478 delRegUse(reg);
Evan Cheng11923cc2007-10-16 21:09:14 +0000479 active_.pop_back();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000480 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000481
Evan Cheng5b16cd22009-05-01 01:03:49 +0000482 // Expire any remaining inactive intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000483 DEBUG(for (IntervalPtrs::reverse_iterator
Bill Wendling87075ca2007-11-15 00:40:48 +0000484 i = inactive_.rbegin(); i != inactive_.rend(); ++i)
Evan Cheng11923cc2007-10-16 21:09:14 +0000485 DOUT << "\tinterval " << *i->first << " expired\n");
486 inactive_.clear();
Alkis Evlogimenosb7be1152004-01-13 20:42:08 +0000487
Evan Cheng81a03822007-11-17 00:40:40 +0000488 // Add live-ins to every BB except for entry. Also perform trivial coalescing.
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000489 MachineFunction::iterator EntryMBB = mf_->begin();
Evan Chenga5bfc972007-10-17 06:53:44 +0000490 SmallVector<MachineBasicBlock*, 8> LiveInMBBs;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000491 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000492 LiveInterval &cur = *i->second;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000493 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000494 bool isPhys = TargetRegisterInfo::isPhysicalRegister(cur.reg);
Evan Cheng81a03822007-11-17 00:40:40 +0000495 if (isPhys)
Owen Anderson03857b22008-08-13 21:49:13 +0000496 Reg = cur.reg;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000497 else if (vrm_->isAssignedReg(cur.reg))
Evan Chengc92da382007-11-03 07:20:12 +0000498 Reg = attemptTrivialCoalescing(cur, vrm_->getPhys(cur.reg));
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000499 if (!Reg)
500 continue;
Evan Cheng81a03822007-11-17 00:40:40 +0000501 // Ignore splited live intervals.
502 if (!isPhys && vrm_->getPreSplitReg(cur.reg))
503 continue;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000504 for (LiveInterval::Ranges::const_iterator I = cur.begin(), E = cur.end();
505 I != E; ++I) {
506 const LiveRange &LR = *I;
Evan Chengd0e32c52008-10-29 05:06:14 +0000507 if (li_->findLiveInMBBs(LR.start, LR.end, LiveInMBBs)) {
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000508 for (unsigned i = 0, e = LiveInMBBs.size(); i != e; ++i)
509 if (LiveInMBBs[i] != EntryMBB)
510 LiveInMBBs[i]->addLiveIn(Reg);
Evan Chenga5bfc972007-10-17 06:53:44 +0000511 LiveInMBBs.clear();
Evan Cheng9fc508f2007-02-16 09:05:02 +0000512 }
513 }
514 }
515
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000516 DOUT << *vrm_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000517}
518
Chris Lattnercbb56252004-11-18 02:42:27 +0000519/// processActiveIntervals - expire old intervals and move non-overlapping ones
520/// to the inactive list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000521void RALinScan::processActiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000522{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000523 DOUT << "\tprocessing active intervals:\n";
Chris Lattner23b71c12004-11-18 01:29:39 +0000524
Chris Lattnercbb56252004-11-18 02:42:27 +0000525 for (unsigned i = 0, e = active_.size(); i != e; ++i) {
526 LiveInterval *Interval = active_[i].first;
527 LiveInterval::iterator IntervalPos = active_[i].second;
528 unsigned reg = Interval->reg;
Alkis Evlogimenosed543732004-09-01 22:52:29 +0000529
Chris Lattnercbb56252004-11-18 02:42:27 +0000530 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
531
532 if (IntervalPos == Interval->end()) { // Remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000533 DOUT << "\t\tinterval " << *Interval << " expired\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000534 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000535 "Can only allocate virtual registers!");
536 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000537 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000538
539 // Pop off the end of the list.
540 active_[i] = active_.back();
541 active_.pop_back();
542 --i; --e;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000543
Chris Lattnercbb56252004-11-18 02:42:27 +0000544 } else if (IntervalPos->start > CurPoint) {
545 // Move inactive intervals to inactive list.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000546 DOUT << "\t\tinterval " << *Interval << " inactive\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000547 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000548 "Can only allocate virtual registers!");
549 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000550 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000551 // add to inactive.
552 inactive_.push_back(std::make_pair(Interval, IntervalPos));
553
554 // Pop off the end of the list.
555 active_[i] = active_.back();
556 active_.pop_back();
557 --i; --e;
558 } else {
559 // Otherwise, just update the iterator position.
560 active_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000561 }
562 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000563}
564
Chris Lattnercbb56252004-11-18 02:42:27 +0000565/// processInactiveIntervals - expire old intervals and move overlapping
566/// ones to the active list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000567void RALinScan::processInactiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000568{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000569 DOUT << "\tprocessing inactive intervals:\n";
Chris Lattner365b95f2004-11-18 04:13:02 +0000570
Chris Lattnercbb56252004-11-18 02:42:27 +0000571 for (unsigned i = 0, e = inactive_.size(); i != e; ++i) {
572 LiveInterval *Interval = inactive_[i].first;
573 LiveInterval::iterator IntervalPos = inactive_[i].second;
574 unsigned reg = Interval->reg;
Chris Lattner23b71c12004-11-18 01:29:39 +0000575
Chris Lattnercbb56252004-11-18 02:42:27 +0000576 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000577
Chris Lattnercbb56252004-11-18 02:42:27 +0000578 if (IntervalPos == Interval->end()) { // remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000579 DOUT << "\t\tinterval " << *Interval << " expired\n";
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000580
Chris Lattnercbb56252004-11-18 02:42:27 +0000581 // Pop off the end of the list.
582 inactive_[i] = inactive_.back();
583 inactive_.pop_back();
584 --i; --e;
585 } else if (IntervalPos->start <= CurPoint) {
586 // move re-activated intervals in active list
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000587 DOUT << "\t\tinterval " << *Interval << " active\n";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000588 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000589 "Can only allocate virtual registers!");
590 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000591 addRegUse(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000592 // add to active
Chris Lattnercbb56252004-11-18 02:42:27 +0000593 active_.push_back(std::make_pair(Interval, IntervalPos));
594
595 // Pop off the end of the list.
596 inactive_[i] = inactive_.back();
597 inactive_.pop_back();
598 --i; --e;
599 } else {
600 // Otherwise, just update the iterator position.
601 inactive_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000602 }
603 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000604}
605
Chris Lattnercbb56252004-11-18 02:42:27 +0000606/// updateSpillWeights - updates the spill weights of the specifed physical
607/// register and its weight.
Evan Cheng5d088fe2009-03-23 22:57:19 +0000608void RALinScan::updateSpillWeights(std::vector<float> &Weights,
609 unsigned reg, float weight,
610 const TargetRegisterClass *RC) {
611 SmallSet<unsigned, 4> Processed;
612 SmallSet<unsigned, 4> SuperAdded;
613 SmallVector<unsigned, 4> Supers;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000614 Weights[reg] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000615 Processed.insert(reg);
616 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as) {
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000617 Weights[*as] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000618 Processed.insert(*as);
619 if (tri_->isSubRegister(*as, reg) &&
620 SuperAdded.insert(*as) &&
621 RC->contains(*as)) {
622 Supers.push_back(*as);
623 }
624 }
625
626 // If the alias is a super-register, and the super-register is in the
627 // register class we are trying to allocate. Then add the weight to all
628 // sub-registers of the super-register even if they are not aliases.
629 // e.g. allocating for GR32, bh is not used, updating bl spill weight.
630 // bl should get the same spill weight otherwise it will be choosen
631 // as a spill candidate since spilling bh doesn't make ebx available.
632 for (unsigned i = 0, e = Supers.size(); i != e; ++i) {
633 for (const unsigned *sr = tri_->getSubRegisters(Supers[i]); *sr; ++sr)
634 if (!Processed.count(*sr))
635 Weights[*sr] += weight;
636 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000637}
638
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000639static
640RALinScan::IntervalPtrs::iterator
641FindIntervalInVector(RALinScan::IntervalPtrs &IP, LiveInterval *LI) {
642 for (RALinScan::IntervalPtrs::iterator I = IP.begin(), E = IP.end();
643 I != E; ++I)
Chris Lattnercbb56252004-11-18 02:42:27 +0000644 if (I->first == LI) return I;
645 return IP.end();
646}
647
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000648static void RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, unsigned Point){
Chris Lattner19828d42004-11-18 03:49:30 +0000649 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000650 RALinScan::IntervalPtr &IP = V[i];
Chris Lattner19828d42004-11-18 03:49:30 +0000651 LiveInterval::iterator I = std::upper_bound(IP.first->begin(),
652 IP.second, Point);
653 if (I != IP.first->begin()) --I;
654 IP.second = I;
655 }
656}
Chris Lattnercbb56252004-11-18 02:42:27 +0000657
Evan Cheng3f32d652008-06-04 09:18:41 +0000658/// addStackInterval - Create a LiveInterval for stack if the specified live
659/// interval has been spilled.
660static void addStackInterval(LiveInterval *cur, LiveStacks *ls_,
Evan Cheng9c3c2212008-06-06 07:54:39 +0000661 LiveIntervals *li_, float &Weight,
662 VirtRegMap &vrm_) {
Evan Cheng3f32d652008-06-04 09:18:41 +0000663 int SS = vrm_.getStackSlot(cur->reg);
664 if (SS == VirtRegMap::NO_STACK_SLOT)
665 return;
666 LiveInterval &SI = ls_->getOrCreateInterval(SS);
Evan Cheng9c3c2212008-06-06 07:54:39 +0000667 SI.weight += Weight;
668
Evan Cheng3f32d652008-06-04 09:18:41 +0000669 VNInfo *VNI;
Evan Cheng54898932008-10-29 08:39:34 +0000670 if (SI.hasAtLeastOneValue())
Evan Cheng3f32d652008-06-04 09:18:41 +0000671 VNI = SI.getValNumInfo(0);
672 else
673 VNI = SI.getNextValue(~0U, 0, ls_->getVNInfoAllocator());
674
675 LiveInterval &RI = li_->getInterval(cur->reg);
676 // FIXME: This may be overly conservative.
677 SI.MergeRangesInAsValue(RI, VNI);
Evan Cheng3f32d652008-06-04 09:18:41 +0000678}
679
Evan Cheng3e172252008-06-20 21:45:16 +0000680/// getConflictWeight - Return the number of conflicts between cur
681/// live interval and defs and uses of Reg weighted by loop depthes.
682static float getConflictWeight(LiveInterval *cur, unsigned Reg,
683 LiveIntervals *li_,
684 MachineRegisterInfo *mri_,
685 const MachineLoopInfo *loopInfo) {
686 float Conflicts = 0;
687 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
688 E = mri_->reg_end(); I != E; ++I) {
689 MachineInstr *MI = &*I;
690 if (cur->liveAt(li_->getInstructionIndex(MI))) {
691 unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
692 Conflicts += powf(10.0f, (float)loopDepth);
693 }
694 }
695 return Conflicts;
696}
697
698/// findIntervalsToSpill - Determine the intervals to spill for the
699/// specified interval. It's passed the physical registers whose spill
700/// weight is the lowest among all the registers whose live intervals
701/// conflict with the interval.
702void RALinScan::findIntervalsToSpill(LiveInterval *cur,
703 std::vector<std::pair<unsigned,float> > &Candidates,
704 unsigned NumCands,
705 SmallVector<LiveInterval*, 8> &SpillIntervals) {
706 // We have figured out the *best* register to spill. But there are other
707 // registers that are pretty good as well (spill weight within 3%). Spill
708 // the one that has fewest defs and uses that conflict with cur.
709 float Conflicts[3] = { 0.0f, 0.0f, 0.0f };
710 SmallVector<LiveInterval*, 8> SLIs[3];
711
712 DOUT << "\tConsidering " << NumCands << " candidates: ";
713 DEBUG(for (unsigned i = 0; i != NumCands; ++i)
714 DOUT << tri_->getName(Candidates[i].first) << " ";
715 DOUT << "\n";);
716
717 // Calculate the number of conflicts of each candidate.
718 for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
719 unsigned Reg = i->first->reg;
720 unsigned PhysReg = vrm_->getPhys(Reg);
721 if (!cur->overlapsFrom(*i->first, i->second))
722 continue;
723 for (unsigned j = 0; j < NumCands; ++j) {
724 unsigned Candidate = Candidates[j].first;
725 if (tri_->regsOverlap(PhysReg, Candidate)) {
726 if (NumCands > 1)
727 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
728 SLIs[j].push_back(i->first);
729 }
730 }
731 }
732
733 for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){
734 unsigned Reg = i->first->reg;
735 unsigned PhysReg = vrm_->getPhys(Reg);
736 if (!cur->overlapsFrom(*i->first, i->second-1))
737 continue;
738 for (unsigned j = 0; j < NumCands; ++j) {
739 unsigned Candidate = Candidates[j].first;
740 if (tri_->regsOverlap(PhysReg, Candidate)) {
741 if (NumCands > 1)
742 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
743 SLIs[j].push_back(i->first);
744 }
745 }
746 }
747
748 // Which is the best candidate?
749 unsigned BestCandidate = 0;
750 float MinConflicts = Conflicts[0];
751 for (unsigned i = 1; i != NumCands; ++i) {
752 if (Conflicts[i] < MinConflicts) {
753 BestCandidate = i;
754 MinConflicts = Conflicts[i];
755 }
756 }
757
758 std::copy(SLIs[BestCandidate].begin(), SLIs[BestCandidate].end(),
759 std::back_inserter(SpillIntervals));
760}
761
762namespace {
763 struct WeightCompare {
764 typedef std::pair<unsigned, float> RegWeightPair;
765 bool operator()(const RegWeightPair &LHS, const RegWeightPair &RHS) const {
766 return LHS.second < RHS.second;
767 }
768 };
769}
770
771static bool weightsAreClose(float w1, float w2) {
772 if (!NewHeuristic)
773 return false;
774
775 float diff = w1 - w2;
776 if (diff <= 0.02f) // Within 0.02f
777 return true;
778 return (diff / w2) <= 0.05f; // Within 5%.
779}
780
Evan Cheng206d1852009-04-20 08:01:12 +0000781LiveInterval *RALinScan::hasNextReloadInterval(LiveInterval *cur) {
782 DenseMap<unsigned, unsigned>::iterator I = NextReloadMap.find(cur->reg);
783 if (I == NextReloadMap.end())
784 return 0;
785 return &li_->getInterval(I->second);
786}
787
788void RALinScan::DowngradeRegister(LiveInterval *li, unsigned Reg) {
789 bool isNew = DowngradedRegs.insert(Reg);
790 isNew = isNew; // Silence compiler warning.
791 assert(isNew && "Multiple reloads holding the same register?");
792 DowngradeMap.insert(std::make_pair(li->reg, Reg));
793 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS) {
794 isNew = DowngradedRegs.insert(*AS);
795 isNew = isNew; // Silence compiler warning.
796 assert(isNew && "Multiple reloads holding the same register?");
797 DowngradeMap.insert(std::make_pair(li->reg, *AS));
798 }
799 ++NumDowngrade;
800}
801
802void RALinScan::UpgradeRegister(unsigned Reg) {
803 if (Reg) {
804 DowngradedRegs.erase(Reg);
805 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS)
806 DowngradedRegs.erase(*AS);
807 }
808}
809
810namespace {
811 struct LISorter {
812 bool operator()(LiveInterval* A, LiveInterval* B) {
813 return A->beginNumber() < B->beginNumber();
814 }
815 };
816}
817
Chris Lattnercbb56252004-11-18 02:42:27 +0000818/// assignRegOrStackSlotAtInterval - assign a register if one is available, or
819/// spill.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000820void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000821{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000822 DOUT << "\tallocating current interval: ";
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000823
Evan Chengf30a49d2008-04-03 16:40:27 +0000824 // This is an implicitly defined live interval, just assign any register.
Evan Cheng841ee1a2008-09-18 22:38:47 +0000825 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000826 if (cur->empty()) {
827 unsigned physReg = cur->preference;
828 if (!physReg)
829 physReg = *RC->allocation_order_begin(*mf_);
830 DOUT << tri_->getName(physReg) << '\n';
831 // Note the register is not really in use.
832 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000833 return;
834 }
835
Evan Cheng5b16cd22009-05-01 01:03:49 +0000836 backUpRegUses();
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000837
Chris Lattnera6c17502005-08-22 20:20:42 +0000838 std::vector<std::pair<unsigned, float> > SpillWeightsToAdd;
Chris Lattner365b95f2004-11-18 04:13:02 +0000839 unsigned StartPosition = cur->beginNumber();
Chris Lattnerb9805782005-08-23 22:27:31 +0000840 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
Evan Chengc92da382007-11-03 07:20:12 +0000841
Evan Chengd0deec22009-01-20 00:16:18 +0000842 // If start of this live interval is defined by a move instruction and its
843 // source is assigned a physical register that is compatible with the target
844 // register class, then we should try to assign it the same register.
Evan Chengc92da382007-11-03 07:20:12 +0000845 // This can happen when the move is from a larger register class to a smaller
846 // one, e.g. X86::mov32to32_. These move instructions are not coalescable.
Evan Chengd0deec22009-01-20 00:16:18 +0000847 if (!cur->preference && cur->hasAtLeastOneValue()) {
848 VNInfo *vni = cur->begin()->valno;
Evan Chengc92da382007-11-03 07:20:12 +0000849 if (vni->def && vni->def != ~1U && vni->def != ~0U) {
850 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000851 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
852 if (CopyMI &&
853 tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000854 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000855 if (TargetRegisterInfo::isPhysicalRegister(SrcReg))
Evan Chengc92da382007-11-03 07:20:12 +0000856 Reg = SrcReg;
857 else if (vrm_->isAssignedReg(SrcReg))
858 Reg = vrm_->getPhys(SrcReg);
Evan Cheng1c2f6da2009-04-29 00:42:27 +0000859 if (Reg) {
860 if (SrcSubReg)
861 Reg = tri_->getSubReg(Reg, SrcSubReg);
862 if (DstSubReg)
863 Reg = tri_->getMatchingSuperReg(Reg, DstSubReg, RC);
864 if (Reg && allocatableRegs_[Reg] && RC->contains(Reg))
865 cur->preference = Reg;
866 }
Evan Chengc92da382007-11-03 07:20:12 +0000867 }
868 }
869 }
870
Evan Cheng5b16cd22009-05-01 01:03:49 +0000871 // For every interval in inactive we overlap with, mark the
Chris Lattnera6c17502005-08-22 20:20:42 +0000872 // register as not free and update spill weights.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000873 for (IntervalPtrs::const_iterator i = inactive_.begin(),
874 e = inactive_.end(); i != e; ++i) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000875 unsigned Reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000876 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
Chris Lattnerb9805782005-08-23 22:27:31 +0000877 "Can only allocate virtual registers!");
Evan Cheng841ee1a2008-09-18 22:38:47 +0000878 const TargetRegisterClass *RegRC = mri_->getRegClass(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000879 // If this is not in a related reg class to the register we're allocating,
880 // don't check it.
881 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
882 cur->overlapsFrom(*i->first, i->second-1)) {
883 Reg = vrm_->getPhys(Reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000884 addRegUse(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000885 SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000886 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000887 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000888
889 // Speculatively check to see if we can get a register right now. If not,
890 // we know we won't be able to by adding more constraints. If so, we can
891 // check to see if it is valid. Doing an exhaustive search of the fixed_ list
892 // is very bad (it contains all callee clobbered registers for any functions
893 // with a call), so we want to avoid doing that if possible.
894 unsigned physReg = getFreePhysReg(cur);
Evan Cheng676dd7c2008-03-11 07:19:34 +0000895 unsigned BestPhysReg = physReg;
Chris Lattnera411cbc2005-08-22 20:59:30 +0000896 if (physReg) {
897 // We got a register. However, if it's in the fixed_ list, we might
Chris Lattnere836ad62005-08-30 21:03:36 +0000898 // conflict with it. Check to see if we conflict with it or any of its
899 // aliases.
Evan Chengc92da382007-11-03 07:20:12 +0000900 SmallSet<unsigned, 8> RegAliases;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000901 for (const unsigned *AS = tri_->getAliasSet(physReg); *AS; ++AS)
Chris Lattnere836ad62005-08-30 21:03:36 +0000902 RegAliases.insert(*AS);
903
Chris Lattnera411cbc2005-08-22 20:59:30 +0000904 bool ConflictsWithFixed = false;
905 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
Jim Laskeye719d9f2006-10-24 14:35:25 +0000906 IntervalPtr &IP = fixed_[i];
907 if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000908 // Okay, this reg is on the fixed list. Check to see if we actually
909 // conflict.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000910 LiveInterval *I = IP.first;
911 if (I->endNumber() > StartPosition) {
912 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
913 IP.second = II;
914 if (II != I->begin() && II->start > StartPosition)
915 --II;
Chris Lattnere836ad62005-08-30 21:03:36 +0000916 if (cur->overlapsFrom(*I, II)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000917 ConflictsWithFixed = true;
Chris Lattnere836ad62005-08-30 21:03:36 +0000918 break;
919 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000920 }
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000921 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000922 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000923
924 // Okay, the register picked by our speculative getFreePhysReg call turned
925 // out to be in use. Actually add all of the conflicting fixed registers to
Evan Cheng5b16cd22009-05-01 01:03:49 +0000926 // regUse_ so we can do an accurate query.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000927 if (ConflictsWithFixed) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000928 // For every interval in fixed we overlap with, mark the register as not
929 // free and update spill weights.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000930 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
931 IntervalPtr &IP = fixed_[i];
932 LiveInterval *I = IP.first;
Chris Lattnerb9805782005-08-23 22:27:31 +0000933
934 const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg];
935 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
936 I->endNumber() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000937 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
938 IP.second = II;
939 if (II != I->begin() && II->start > StartPosition)
940 --II;
941 if (cur->overlapsFrom(*I, II)) {
942 unsigned reg = I->reg;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000943 addRegUse(reg);
Chris Lattnera411cbc2005-08-22 20:59:30 +0000944 SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight));
945 }
946 }
947 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000948
Evan Cheng5b16cd22009-05-01 01:03:49 +0000949 // Using the newly updated regUse_ object, which includes conflicts in the
Chris Lattnera411cbc2005-08-22 20:59:30 +0000950 // future, see if there are any registers available.
951 physReg = getFreePhysReg(cur);
952 }
953 }
954
Chris Lattnera6c17502005-08-22 20:20:42 +0000955 // Restore the physical register tracker, removing information about the
956 // future.
Evan Cheng5b16cd22009-05-01 01:03:49 +0000957 restoreRegUses();
Chris Lattnera6c17502005-08-22 20:20:42 +0000958
Evan Cheng5b16cd22009-05-01 01:03:49 +0000959 // If we find a free register, we are done: assign this virtual to
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000960 // the free physical register and add this interval to the active
961 // list.
962 if (physReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000963 DOUT << tri_->getName(physReg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000964 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000965 addRegUse(physReg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000966 active_.push_back(std::make_pair(cur, cur->begin()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000967 handled_.push_back(cur);
Evan Cheng206d1852009-04-20 08:01:12 +0000968
969 // "Upgrade" the physical register since it has been allocated.
970 UpgradeRegister(physReg);
971 if (LiveInterval *NextReloadLI = hasNextReloadInterval(cur)) {
972 // "Downgrade" physReg to try to keep physReg from being allocated until
973 // the next reload from the same SS is allocated.
974 NextReloadLI->preference = physReg;
975 DowngradeRegister(cur, physReg);
976 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000977 return;
978 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000979 DOUT << "no free registers\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000980
Chris Lattnera6c17502005-08-22 20:20:42 +0000981 // Compile the spill weights into an array that is better for scanning.
Evan Cheng3e172252008-06-20 21:45:16 +0000982 std::vector<float> SpillWeights(tri_->getNumRegs(), 0.0f);
Chris Lattnera6c17502005-08-22 20:20:42 +0000983 for (std::vector<std::pair<unsigned, float> >::iterator
984 I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I)
Evan Cheng5d088fe2009-03-23 22:57:19 +0000985 updateSpillWeights(SpillWeights, I->first, I->second, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +0000986
987 // for each interval in active, update spill weights.
988 for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
989 i != e; ++i) {
990 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000991 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnera6c17502005-08-22 20:20:42 +0000992 "Can only allocate virtual registers!");
993 reg = vrm_->getPhys(reg);
Evan Cheng5d088fe2009-03-23 22:57:19 +0000994 updateSpillWeights(SpillWeights, reg, i->first->weight, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +0000995 }
996
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000997 DOUT << "\tassigning stack slot at interval "<< *cur << ":\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000998
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000999 // Find a register to spill.
Jim Laskey7902c752006-11-07 12:25:45 +00001000 float minWeight = HUGE_VALF;
Evan Cheng5d088fe2009-03-23 22:57:19 +00001001 unsigned minReg = 0; /*cur->preference*/; // Try the pref register first.
Evan Cheng3e172252008-06-20 21:45:16 +00001002
1003 bool Found = false;
1004 std::vector<std::pair<unsigned,float> > RegsWeights;
Evan Cheng20b0abc2007-04-17 20:32:26 +00001005 if (!minReg || SpillWeights[minReg] == HUGE_VALF)
1006 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1007 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1008 unsigned reg = *i;
Evan Cheng3e172252008-06-20 21:45:16 +00001009 float regWeight = SpillWeights[reg];
1010 if (minWeight > regWeight)
1011 Found = true;
1012 RegsWeights.push_back(std::make_pair(reg, regWeight));
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001013 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +00001014
1015 // If we didn't find a register that is spillable, try aliases?
Evan Cheng3e172252008-06-20 21:45:16 +00001016 if (!Found) {
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001017 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1018 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1019 unsigned reg = *i;
1020 // No need to worry about if the alias register size < regsize of RC.
1021 // We are going to spill all registers that alias it anyway.
Evan Cheng3e172252008-06-20 21:45:16 +00001022 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as)
1023 RegsWeights.push_back(std::make_pair(*as, SpillWeights[*as]));
Evan Cheng676dd7c2008-03-11 07:19:34 +00001024 }
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001025 }
Evan Cheng3e172252008-06-20 21:45:16 +00001026
1027 // Sort all potential spill candidates by weight.
1028 std::sort(RegsWeights.begin(), RegsWeights.end(), WeightCompare());
1029 minReg = RegsWeights[0].first;
1030 minWeight = RegsWeights[0].second;
1031 if (minWeight == HUGE_VALF) {
1032 // All registers must have inf weight. Just grab one!
1033 minReg = BestPhysReg ? BestPhysReg : *RC->allocation_order_begin(*mf_);
Owen Andersona1566f22008-07-22 22:46:49 +00001034 if (cur->weight == HUGE_VALF ||
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001035 li_->getApproximateInstructionCount(*cur) == 0) {
Evan Cheng3e172252008-06-20 21:45:16 +00001036 // Spill a physical register around defs and uses.
Evan Cheng206d1852009-04-20 08:01:12 +00001037 if (li_->spillPhysRegAroundRegDefsUses(*cur, minReg, *vrm_)) {
Evan Cheng96f3fd92009-04-29 07:16:34 +00001038 // spillPhysRegAroundRegDefsUses may have invalidated iterator stored
1039 // in fixed_. Reset them.
1040 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
1041 IntervalPtr &IP = fixed_[i];
1042 LiveInterval *I = IP.first;
1043 if (I->reg == minReg || tri_->isSubRegister(minReg, I->reg))
1044 IP.second = I->advanceTo(I->begin(), StartPosition);
1045 }
1046
Evan Cheng206d1852009-04-20 08:01:12 +00001047 DowngradedRegs.clear();
Evan Cheng2824a652009-03-23 18:24:37 +00001048 assignRegOrStackSlotAtInterval(cur);
Evan Cheng206d1852009-04-20 08:01:12 +00001049 } else {
Evan Cheng2824a652009-03-23 18:24:37 +00001050 cerr << "Ran out of registers during register allocation!\n";
1051 exit(1);
1052 }
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001053 return;
1054 }
Evan Cheng3e172252008-06-20 21:45:16 +00001055 }
1056
1057 // Find up to 3 registers to consider as spill candidates.
1058 unsigned LastCandidate = RegsWeights.size() >= 3 ? 3 : 1;
1059 while (LastCandidate > 1) {
1060 if (weightsAreClose(RegsWeights[LastCandidate-1].second, minWeight))
1061 break;
1062 --LastCandidate;
1063 }
1064
1065 DOUT << "\t\tregister(s) with min weight(s): ";
1066 DEBUG(for (unsigned i = 0; i != LastCandidate; ++i)
1067 DOUT << tri_->getName(RegsWeights[i].first)
1068 << " (" << RegsWeights[i].second << ")\n");
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001069
Evan Cheng206d1852009-04-20 08:01:12 +00001070 // If the current has the minimum weight, we need to spill it and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001071 // add any added intervals back to unhandled, and restart
1072 // linearscan.
Jim Laskey7902c752006-11-07 12:25:45 +00001073 if (cur->weight != HUGE_VALF && cur->weight <= minWeight) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001074 DOUT << "\t\t\tspilling(c): " << *cur << '\n';
Evan Cheng9c3c2212008-06-06 07:54:39 +00001075 float SSWeight;
Evan Chengdc377862008-09-30 15:44:16 +00001076 SmallVector<LiveInterval*, 8> spillIs;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001077 std::vector<LiveInterval*> added =
Evan Chengdc377862008-09-30 15:44:16 +00001078 li_->addIntervalsForSpills(*cur, spillIs, loopInfo, *vrm_, SSWeight);
Evan Cheng206d1852009-04-20 08:01:12 +00001079 std::sort(added.begin(), added.end(), LISorter());
Evan Cheng9c3c2212008-06-06 07:54:39 +00001080 addStackInterval(cur, ls_, li_, SSWeight, *vrm_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001081 if (added.empty())
1082 return; // Early exit if all spills were folded.
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001083
Evan Cheng206d1852009-04-20 08:01:12 +00001084 // Merge added with unhandled. Note that we have already sorted
1085 // intervals returned by addIntervalsForSpills by their starting
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001086 // point.
Evan Chengc4f718a2009-04-20 17:23:48 +00001087 // This also update the NextReloadMap. That is, it adds mapping from a
1088 // register defined by a reload from SS to the next reload from SS in the
1089 // same basic block.
1090 MachineBasicBlock *LastReloadMBB = 0;
1091 LiveInterval *LastReload = 0;
1092 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1093 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1094 LiveInterval *ReloadLi = added[i];
1095 if (ReloadLi->weight == HUGE_VALF &&
1096 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
1097 unsigned ReloadIdx = ReloadLi->beginNumber();
1098 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1099 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1100 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1101 // Last reload of same SS is in the same MBB. We want to try to
1102 // allocate both reloads the same register and make sure the reg
1103 // isn't clobbered in between if at all possible.
1104 assert(LastReload->beginNumber() < ReloadIdx);
1105 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1106 }
1107 LastReloadMBB = ReloadMBB;
1108 LastReload = ReloadLi;
1109 LastReloadSS = ReloadSS;
1110 }
1111 unhandled_.push(ReloadLi);
1112 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001113 return;
1114 }
1115
Chris Lattner19828d42004-11-18 03:49:30 +00001116 ++NumBacktracks;
1117
Evan Cheng206d1852009-04-20 08:01:12 +00001118 // Push the current interval back to unhandled since we are going
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001119 // to re-run at least this iteration. Since we didn't modify it it
1120 // should go back right in the front of the list
1121 unhandled_.push(cur);
1122
Dan Gohman6f0d0242008-02-10 18:45:23 +00001123 assert(TargetRegisterInfo::isPhysicalRegister(minReg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001124 "did not choose a register to spill?");
Chris Lattner19828d42004-11-18 03:49:30 +00001125
Evan Cheng3e172252008-06-20 21:45:16 +00001126 // We spill all intervals aliasing the register with
1127 // minimum weight, rollback to the interval with the earliest
1128 // start point and let the linear scan algorithm run again
1129 SmallVector<LiveInterval*, 8> spillIs;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001130
Evan Cheng3e172252008-06-20 21:45:16 +00001131 // Determine which intervals have to be spilled.
1132 findIntervalsToSpill(cur, RegsWeights, LastCandidate, spillIs);
1133
1134 // Set of spilled vregs (used later to rollback properly)
1135 SmallSet<unsigned, 8> spilled;
1136
1137 // The earliest start of a Spilled interval indicates up to where
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001138 // in handled we need to roll back
Chris Lattner23b71c12004-11-18 01:29:39 +00001139 unsigned earliestStart = cur->beginNumber();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001140
Evan Cheng3e172252008-06-20 21:45:16 +00001141 // Spill live intervals of virtual regs mapped to the physical register we
Chris Lattner19828d42004-11-18 03:49:30 +00001142 // want to clear (and its aliases). We only spill those that overlap with the
1143 // current interval as the rest do not affect its allocation. we also keep
1144 // track of the earliest start of all spilled live intervals since this will
1145 // mark our rollback point.
Evan Cheng3e172252008-06-20 21:45:16 +00001146 std::vector<LiveInterval*> added;
1147 while (!spillIs.empty()) {
1148 LiveInterval *sli = spillIs.back();
1149 spillIs.pop_back();
1150 DOUT << "\t\t\tspilling(a): " << *sli << '\n';
1151 earliestStart = std::min(earliestStart, sli->beginNumber());
1152 float SSWeight;
1153 std::vector<LiveInterval*> newIs =
Evan Chengdc377862008-09-30 15:44:16 +00001154 li_->addIntervalsForSpills(*sli, spillIs, loopInfo, *vrm_, SSWeight);
Evan Cheng3e172252008-06-20 21:45:16 +00001155 addStackInterval(sli, ls_, li_, SSWeight, *vrm_);
1156 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
1157 spilled.insert(sli->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001158 }
1159
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001160 DOUT << "\t\trolling back to: " << earliestStart << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +00001161
1162 // Scan handled in reverse order up to the earliest start of a
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001163 // spilled live interval and undo each one, restoring the state of
Chris Lattnercbb56252004-11-18 02:42:27 +00001164 // unhandled.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001165 while (!handled_.empty()) {
1166 LiveInterval* i = handled_.back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001167 // If this interval starts before t we are done.
Chris Lattner23b71c12004-11-18 01:29:39 +00001168 if (i->beginNumber() < earliestStart)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001169 break;
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001170 DOUT << "\t\t\tundo changes for: " << *i << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001171 handled_.pop_back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001172
1173 // When undoing a live interval allocation we must know if it is active or
Evan Cheng5b16cd22009-05-01 01:03:49 +00001174 // inactive to properly update regUse_ and the VirtRegMap.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001175 IntervalPtrs::iterator it;
Chris Lattnercbb56252004-11-18 02:42:27 +00001176 if ((it = FindIntervalInVector(active_, i)) != active_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001177 active_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001178 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001179 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001180 unhandled_.push(i);
Evan Cheng5b16cd22009-05-01 01:03:49 +00001181 delRegUse(vrm_->getPhys(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001182 vrm_->clearVirt(i->reg);
Chris Lattnercbb56252004-11-18 02:42:27 +00001183 } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001184 inactive_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001185 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001186 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001187 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +00001188 vrm_->clearVirt(i->reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001189 } else {
Dan Gohman6f0d0242008-02-10 18:45:23 +00001190 assert(TargetRegisterInfo::isVirtualRegister(i->reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001191 "Can only allocate virtual registers!");
1192 vrm_->clearVirt(i->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001193 unhandled_.push(i);
1194 }
Evan Cheng9aeaf752007-11-04 08:32:21 +00001195
Evan Cheng206d1852009-04-20 08:01:12 +00001196 DenseMap<unsigned, unsigned>::iterator ii = DowngradeMap.find(i->reg);
1197 if (ii == DowngradeMap.end())
1198 // It interval has a preference, it must be defined by a copy. Clear the
1199 // preference now since the source interval allocation may have been
1200 // undone as well.
1201 i->preference = 0;
1202 else {
1203 UpgradeRegister(ii->second);
1204 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001205 }
1206
Chris Lattner19828d42004-11-18 03:49:30 +00001207 // Rewind the iterators in the active, inactive, and fixed lists back to the
1208 // point we reverted to.
1209 RevertVectorIteratorsTo(active_, earliestStart);
1210 RevertVectorIteratorsTo(inactive_, earliestStart);
1211 RevertVectorIteratorsTo(fixed_, earliestStart);
1212
Evan Cheng206d1852009-04-20 08:01:12 +00001213 // Scan the rest and undo each interval that expired after t and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001214 // insert it in active (the next iteration of the algorithm will
1215 // put it in inactive if required)
Chris Lattnercbb56252004-11-18 02:42:27 +00001216 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
1217 LiveInterval *HI = handled_[i];
1218 if (!HI->expiredAt(earliestStart) &&
1219 HI->expiredAt(cur->beginNumber())) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +00001220 DOUT << "\t\t\tundo changes for: " << *HI << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +00001221 active_.push_back(std::make_pair(HI, HI->begin()));
Dan Gohman6f0d0242008-02-10 18:45:23 +00001222 assert(!TargetRegisterInfo::isPhysicalRegister(HI->reg));
Evan Cheng5b16cd22009-05-01 01:03:49 +00001223 addRegUse(vrm_->getPhys(HI->reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001224 }
1225 }
1226
Evan Cheng206d1852009-04-20 08:01:12 +00001227 // Merge added with unhandled.
1228 // This also update the NextReloadMap. That is, it adds mapping from a
1229 // register defined by a reload from SS to the next reload from SS in the
1230 // same basic block.
1231 MachineBasicBlock *LastReloadMBB = 0;
1232 LiveInterval *LastReload = 0;
1233 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1234 std::sort(added.begin(), added.end(), LISorter());
1235 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1236 LiveInterval *ReloadLi = added[i];
1237 if (ReloadLi->weight == HUGE_VALF &&
1238 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
1239 unsigned ReloadIdx = ReloadLi->beginNumber();
1240 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1241 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1242 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1243 // Last reload of same SS is in the same MBB. We want to try to
1244 // allocate both reloads the same register and make sure the reg
1245 // isn't clobbered in between if at all possible.
1246 assert(LastReload->beginNumber() < ReloadIdx);
1247 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1248 }
1249 LastReloadMBB = ReloadMBB;
1250 LastReload = ReloadLi;
1251 LastReloadSS = ReloadSS;
1252 }
1253 unhandled_.push(ReloadLi);
1254 }
1255}
1256
1257unsigned RALinScan::getFreePhysReg(const TargetRegisterClass *RC,
1258 unsigned MaxInactiveCount,
1259 SmallVector<unsigned, 256> &inactiveCounts,
1260 bool SkipDGRegs) {
1261 unsigned FreeReg = 0;
1262 unsigned FreeRegInactiveCount = 0;
1263
1264 TargetRegisterClass::iterator I = RC->allocation_order_begin(*mf_);
1265 TargetRegisterClass::iterator E = RC->allocation_order_end(*mf_);
1266 assert(I != E && "No allocatable register in this register class!");
1267
1268 // Scan for the first available register.
1269 for (; I != E; ++I) {
1270 unsigned Reg = *I;
1271 // Ignore "downgraded" registers.
1272 if (SkipDGRegs && DowngradedRegs.count(Reg))
1273 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001274 if (isRegAvail(Reg)) {
Evan Cheng206d1852009-04-20 08:01:12 +00001275 FreeReg = Reg;
1276 if (FreeReg < inactiveCounts.size())
1277 FreeRegInactiveCount = inactiveCounts[FreeReg];
1278 else
1279 FreeRegInactiveCount = 0;
1280 break;
1281 }
1282 }
1283
1284 // If there are no free regs, or if this reg has the max inactive count,
1285 // return this register.
1286 if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount)
1287 return FreeReg;
1288
1289 // Continue scanning the registers, looking for the one with the highest
1290 // inactive count. Alkis found that this reduced register pressure very
1291 // slightly on X86 (in rev 1.94 of this file), though this should probably be
1292 // reevaluated now.
1293 for (; I != E; ++I) {
1294 unsigned Reg = *I;
1295 // Ignore "downgraded" registers.
1296 if (SkipDGRegs && DowngradedRegs.count(Reg))
1297 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001298 if (isRegAvail(Reg) && Reg < inactiveCounts.size() &&
Evan Cheng206d1852009-04-20 08:01:12 +00001299 FreeRegInactiveCount < inactiveCounts[Reg]) {
1300 FreeReg = Reg;
1301 FreeRegInactiveCount = inactiveCounts[Reg];
1302 if (FreeRegInactiveCount == MaxInactiveCount)
1303 break; // We found the one with the max inactive count.
1304 }
1305 }
1306
1307 return FreeReg;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +00001308}
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001309
Chris Lattnercbb56252004-11-18 02:42:27 +00001310/// getFreePhysReg - return a free physical register for this virtual register
1311/// interval if we have one, otherwise return 0.
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001312unsigned RALinScan::getFreePhysReg(LiveInterval *cur) {
Chris Lattnerfe424622008-02-26 22:08:41 +00001313 SmallVector<unsigned, 256> inactiveCounts;
Chris Lattnerf8355d92005-08-22 16:55:22 +00001314 unsigned MaxInactiveCount = 0;
1315
Evan Cheng841ee1a2008-09-18 22:38:47 +00001316 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001317 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
1318
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001319 for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end();
1320 i != e; ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +00001321 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001322 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001323 "Can only allocate virtual registers!");
Chris Lattnerb9805782005-08-23 22:27:31 +00001324
1325 // If this is not in a related reg class to the register we're allocating,
1326 // don't check it.
Evan Cheng841ee1a2008-09-18 22:38:47 +00001327 const TargetRegisterClass *RegRC = mri_->getRegClass(reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001328 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) {
1329 reg = vrm_->getPhys(reg);
Chris Lattnerfe424622008-02-26 22:08:41 +00001330 if (inactiveCounts.size() <= reg)
1331 inactiveCounts.resize(reg+1);
Chris Lattnerb9805782005-08-23 22:27:31 +00001332 ++inactiveCounts[reg];
1333 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]);
1334 }
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001335 }
1336
Evan Cheng20b0abc2007-04-17 20:32:26 +00001337 // If copy coalescer has assigned a "preferred" register, check if it's
Dale Johannesen86b49f82008-09-24 01:07:17 +00001338 // available first.
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001339 if (cur->preference) {
Evan Cheng1c2f6da2009-04-29 00:42:27 +00001340 DOUT << "(preferred: " << tri_->getName(cur->preference) << ") ";
Evan Cheng5b16cd22009-05-01 01:03:49 +00001341 if (isRegAvail(cur->preference) &&
Evan Cheng1c2f6da2009-04-29 00:42:27 +00001342 RC->contains(cur->preference))
Evan Cheng20b0abc2007-04-17 20:32:26 +00001343 return cur->preference;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001344 }
Evan Cheng20b0abc2007-04-17 20:32:26 +00001345
Evan Cheng206d1852009-04-20 08:01:12 +00001346 if (!DowngradedRegs.empty()) {
1347 unsigned FreeReg = getFreePhysReg(RC, MaxInactiveCount, inactiveCounts,
1348 true);
1349 if (FreeReg)
1350 return FreeReg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001351 }
Evan Cheng206d1852009-04-20 08:01:12 +00001352 return getFreePhysReg(RC, MaxInactiveCount, inactiveCounts, false);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001353}
1354
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001355FunctionPass* llvm::createLinearScanRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001356 return new RALinScan();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001357}