blob: 64490d2e05e44d532ebb1f4644c141bbe9e6fdca [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"
Lang Hamese2b201b2009-05-18 19:03:16 +000017#include "Spiller.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000018#include "llvm/Function.h"
Evan Cheng3f32d652008-06-04 09:18:41 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
20#include "llvm/CodeGen/LiveStackAnalysis.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000021#include "llvm/CodeGen/MachineFunctionPass.h"
22#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000023#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000026#include "llvm/CodeGen/RegAllocRegistry.h"
David Greene2c17c4d2007-09-06 16:18:45 +000027#include "llvm/CodeGen/RegisterCoalescer.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000028#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000029#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000030#include "llvm/Target/TargetOptions.h"
Evan Chengc92da382007-11-03 07:20:12 +000031#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000032#include "llvm/ADT/EquivalenceClasses.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000033#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/ADT/Statistic.h"
35#include "llvm/ADT/STLExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000036#include "llvm/Support/Compiler.h"
Bill Wendlingc3115a02009-08-22 20:30:53 +000037#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000038#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000039#include "llvm/Support/raw_ostream.h"
Alkis Evlogimenos843b1602004-02-15 10:24:21 +000040#include <algorithm>
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +000041#include <set>
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +000042#include <queue>
Duraid Madina30059612005-12-28 04:55:42 +000043#include <memory>
Jeff Cohen97af7512006-12-02 02:22:01 +000044#include <cmath>
Lang Hamesf41538d2009-06-02 16:53:25 +000045
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000046using namespace llvm;
47
Chris Lattnercd3245a2006-12-19 22:41:21 +000048STATISTIC(NumIters , "Number of iterations performed");
49STATISTIC(NumBacktracks, "Number of times we had to backtrack");
Evan Chengc92da382007-11-03 07:20:12 +000050STATISTIC(NumCoalesce, "Number of copies coalesced");
Evan Cheng206d1852009-04-20 08:01:12 +000051STATISTIC(NumDowngrade, "Number of registers downgraded");
Chris Lattnercd3245a2006-12-19 22:41:21 +000052
Evan Cheng3e172252008-06-20 21:45:16 +000053static cl::opt<bool>
54NewHeuristic("new-spilling-heuristic",
55 cl::desc("Use new spilling heuristic"),
56 cl::init(false), cl::Hidden);
57
Evan Chengf5cd4f02008-10-23 20:43:13 +000058static cl::opt<bool>
59PreSplitIntervals("pre-alloc-split",
60 cl::desc("Pre-register allocation live interval splitting"),
61 cl::init(false), cl::Hidden);
62
Lang Hamese2b201b2009-05-18 19:03:16 +000063static cl::opt<bool>
64NewSpillFramework("new-spill-framework",
65 cl::desc("New spilling framework"),
66 cl::init(false), cl::Hidden);
67
Chris Lattnercd3245a2006-12-19 22:41:21 +000068static RegisterRegAlloc
Dan Gohmanb8cab922008-10-14 20:25:08 +000069linearscanRegAlloc("linearscan", "linear scan register allocator",
Chris Lattnercd3245a2006-12-19 22:41:21 +000070 createLinearScanRegisterAllocator);
71
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000072namespace {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000073 struct VISIBILITY_HIDDEN RALinScan : public MachineFunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000074 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +000075 RALinScan() : MachineFunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000076
Chris Lattnercbb56252004-11-18 02:42:27 +000077 typedef std::pair<LiveInterval*, LiveInterval::iterator> IntervalPtr;
Owen Andersoncd1dcbd2008-08-15 18:49:41 +000078 typedef SmallVector<IntervalPtr, 32> IntervalPtrs;
Chris Lattnercbb56252004-11-18 02:42:27 +000079 private:
Chris Lattnerb9805782005-08-23 22:27:31 +000080 /// RelatedRegClasses - This structure is built the first time a function is
81 /// compiled, and keeps track of which register classes have registers that
82 /// belong to multiple classes or have aliases that are in other classes.
83 EquivalenceClasses<const TargetRegisterClass*> RelatedRegClasses;
Owen Anderson97382162008-08-13 23:36:23 +000084 DenseMap<unsigned, const TargetRegisterClass*> OneClassForEachPhysReg;
Chris Lattnerb9805782005-08-23 22:27:31 +000085
Evan Cheng206d1852009-04-20 08:01:12 +000086 // NextReloadMap - For each register in the map, it maps to the another
87 // register which is defined by a reload from the same stack slot and
88 // both reloads are in the same basic block.
89 DenseMap<unsigned, unsigned> NextReloadMap;
90
91 // DowngradedRegs - A set of registers which are being "downgraded", i.e.
92 // un-favored for allocation.
93 SmallSet<unsigned, 8> DowngradedRegs;
94
95 // DowngradeMap - A map from virtual registers to physical registers being
96 // downgraded for the virtual registers.
97 DenseMap<unsigned, unsigned> DowngradeMap;
98
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000099 MachineFunction* mf_;
Evan Cheng3e172252008-06-20 21:45:16 +0000100 MachineRegisterInfo* mri_;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000101 const TargetMachine* tm_;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000102 const TargetRegisterInfo* tri_;
Evan Chengc92da382007-11-03 07:20:12 +0000103 const TargetInstrInfo* tii_;
Evan Chengc92da382007-11-03 07:20:12 +0000104 BitVector allocatableRegs_;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000105 LiveIntervals* li_;
Evan Cheng3f32d652008-06-04 09:18:41 +0000106 LiveStacks* ls_;
Evan Cheng22f07ff2007-12-11 02:09:15 +0000107 const MachineLoopInfo *loopInfo;
Chris Lattnercbb56252004-11-18 02:42:27 +0000108
109 /// handled_ - Intervals are added to the handled_ set in the order of their
110 /// start value. This is uses for backtracking.
111 std::vector<LiveInterval*> handled_;
112
113 /// fixed_ - Intervals that correspond to machine registers.
114 ///
115 IntervalPtrs fixed_;
116
117 /// active_ - Intervals that are currently being processed, and which have a
118 /// live range active for the current point.
119 IntervalPtrs active_;
120
121 /// inactive_ - Intervals that are currently being processed, but which have
122 /// a hold at the current point.
123 IntervalPtrs inactive_;
124
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000125 typedef std::priority_queue<LiveInterval*,
Owen Andersoncd1dcbd2008-08-15 18:49:41 +0000126 SmallVector<LiveInterval*, 64>,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000127 greater_ptr<LiveInterval> > IntervalHeap;
128 IntervalHeap unhandled_;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000129
130 /// regUse_ - Tracks register usage.
131 SmallVector<unsigned, 32> regUse_;
132 SmallVector<unsigned, 32> regUseBackUp_;
133
134 /// vrm_ - Tracks register assignments.
Owen Anderson49c8aa02009-03-13 05:55:11 +0000135 VirtRegMap* vrm_;
Evan Cheng5b16cd22009-05-01 01:03:49 +0000136
Lang Hames87e3bca2009-05-06 02:36:21 +0000137 std::auto_ptr<VirtRegRewriter> rewriter_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000138
Lang Hamese2b201b2009-05-18 19:03:16 +0000139 std::auto_ptr<Spiller> spiller_;
140
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000141 public:
142 virtual const char* getPassName() const {
143 return "Linear Scan Register Allocator";
144 }
145
146 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000147 AU.setPreservesCFG();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000148 AU.addRequired<LiveIntervals>();
Owen Anderson95dad832008-10-07 20:22:28 +0000149 if (StrongPHIElim)
150 AU.addRequiredID(StrongPHIEliminationID);
David Greene2c17c4d2007-09-06 16:18:45 +0000151 // Make sure PassManager knows which analyses to make available
152 // to coalescing and which analyses coalescing invalidates.
153 AU.addRequiredTransitive<RegisterCoalescer>();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000154 if (PreSplitIntervals)
155 AU.addRequiredID(PreAllocSplittingID);
Evan Cheng3f32d652008-06-04 09:18:41 +0000156 AU.addRequired<LiveStacks>();
157 AU.addPreserved<LiveStacks>();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000158 AU.addRequired<MachineLoopInfo>();
Bill Wendling67d65bb2008-01-04 20:54:55 +0000159 AU.addPreserved<MachineLoopInfo>();
Owen Anderson49c8aa02009-03-13 05:55:11 +0000160 AU.addRequired<VirtRegMap>();
161 AU.addPreserved<VirtRegMap>();
Bill Wendling67d65bb2008-01-04 20:54:55 +0000162 AU.addPreservedID(MachineDominatorsID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000163 MachineFunctionPass::getAnalysisUsage(AU);
164 }
165
166 /// runOnMachineFunction - register allocate the whole function
167 bool runOnMachineFunction(MachineFunction&);
168
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000169 private:
170 /// linearScan - the linear scan algorithm
171 void linearScan();
172
Chris Lattnercbb56252004-11-18 02:42:27 +0000173 /// initIntervalSets - initialize the interval sets.
174 ///
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000175 void initIntervalSets();
176
Chris Lattnercbb56252004-11-18 02:42:27 +0000177 /// processActiveIntervals - expire old intervals and move non-overlapping
178 /// ones to the inactive list.
Lang Hames86511252009-09-04 20:41:11 +0000179 void processActiveIntervals(MachineInstrIndex CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000180
Chris Lattnercbb56252004-11-18 02:42:27 +0000181 /// processInactiveIntervals - expire old intervals and move overlapping
182 /// ones to the active list.
Lang Hames86511252009-09-04 20:41:11 +0000183 void processInactiveIntervals(MachineInstrIndex CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000184
Evan Cheng206d1852009-04-20 08:01:12 +0000185 /// hasNextReloadInterval - Return the next liveinterval that's being
186 /// defined by a reload from the same SS as the specified one.
187 LiveInterval *hasNextReloadInterval(LiveInterval *cur);
188
189 /// DowngradeRegister - Downgrade a register for allocation.
190 void DowngradeRegister(LiveInterval *li, unsigned Reg);
191
192 /// UpgradeRegister - Upgrade a register for allocation.
193 void UpgradeRegister(unsigned Reg);
194
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000195 /// assignRegOrStackSlotAtInterval - assign a register if one
196 /// is available, or spill.
197 void assignRegOrStackSlotAtInterval(LiveInterval* cur);
198
Evan Cheng5d088fe2009-03-23 22:57:19 +0000199 void updateSpillWeights(std::vector<float> &Weights,
200 unsigned reg, float weight,
201 const TargetRegisterClass *RC);
202
Evan Cheng3e172252008-06-20 21:45:16 +0000203 /// findIntervalsToSpill - Determine the intervals to spill for the
204 /// specified interval. It's passed the physical registers whose spill
205 /// weight is the lowest among all the registers whose live intervals
206 /// conflict with the interval.
207 void findIntervalsToSpill(LiveInterval *cur,
208 std::vector<std::pair<unsigned,float> > &Candidates,
209 unsigned NumCands,
210 SmallVector<LiveInterval*, 8> &SpillIntervals);
211
Evan Chengc92da382007-11-03 07:20:12 +0000212 /// attemptTrivialCoalescing - If a simple interval is defined by a copy,
213 /// try allocate the definition the same register as the source register
214 /// if the register is not defined during live time of the interval. This
215 /// eliminate a copy. This is used to coalesce copies which were not
216 /// coalesced away before allocation either due to dest and src being in
217 /// different register classes or because the coalescer was overly
218 /// conservative.
219 unsigned attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg);
220
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000221 ///
Evan Cheng5b16cd22009-05-01 01:03:49 +0000222 /// Register usage / availability tracking helpers.
223 ///
224
225 void initRegUses() {
226 regUse_.resize(tri_->getNumRegs(), 0);
227 regUseBackUp_.resize(tri_->getNumRegs(), 0);
228 }
229
230 void finalizeRegUses() {
Evan Chengc781a242009-05-03 18:32:42 +0000231#ifndef NDEBUG
232 // Verify all the registers are "freed".
233 bool Error = false;
234 for (unsigned i = 0, e = tri_->getNumRegs(); i != e; ++i) {
235 if (regUse_[i] != 0) {
Benjamin Kramercfa6ec92009-08-23 11:37:21 +0000236 errs() << tri_->getName(i) << " is still in use!\n";
Evan Chengc781a242009-05-03 18:32:42 +0000237 Error = true;
238 }
239 }
240 if (Error)
Torok Edwinc23197a2009-07-14 16:55:14 +0000241 llvm_unreachable(0);
Evan Chengc781a242009-05-03 18:32:42 +0000242#endif
Evan Cheng5b16cd22009-05-01 01:03:49 +0000243 regUse_.clear();
244 regUseBackUp_.clear();
245 }
246
247 void addRegUse(unsigned physReg) {
248 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
249 "should be physical register!");
250 ++regUse_[physReg];
251 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as)
252 ++regUse_[*as];
253 }
254
255 void delRegUse(unsigned physReg) {
256 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
257 "should be physical register!");
258 assert(regUse_[physReg] != 0);
259 --regUse_[physReg];
260 for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as) {
261 assert(regUse_[*as] != 0);
262 --regUse_[*as];
263 }
264 }
265
266 bool isRegAvail(unsigned physReg) const {
267 assert(TargetRegisterInfo::isPhysicalRegister(physReg) &&
268 "should be physical register!");
269 return regUse_[physReg] == 0;
270 }
271
272 void backUpRegUses() {
273 regUseBackUp_ = regUse_;
274 }
275
276 void restoreRegUses() {
277 regUse_ = regUseBackUp_;
278 }
279
280 ///
281 /// Register handling helpers.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000282 ///
283
Chris Lattnercbb56252004-11-18 02:42:27 +0000284 /// getFreePhysReg - return a free physical register for this virtual
285 /// register interval if we have one, otherwise return 0.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000286 unsigned getFreePhysReg(LiveInterval* cur);
Evan Cheng358dec52009-06-15 08:28:29 +0000287 unsigned getFreePhysReg(LiveInterval* cur,
288 const TargetRegisterClass *RC,
Evan Cheng206d1852009-04-20 08:01:12 +0000289 unsigned MaxInactiveCount,
290 SmallVector<unsigned, 256> &inactiveCounts,
291 bool SkipDGRegs);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000292
293 /// assignVirt2StackSlot - assigns this virtual register to a
294 /// stack slot. returns the stack slot
295 int assignVirt2StackSlot(unsigned virtReg);
296
Chris Lattnerb9805782005-08-23 22:27:31 +0000297 void ComputeRelatedRegClasses();
298
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000299 template <typename ItTy>
300 void printIntervals(const char* const str, ItTy i, ItTy e) const {
Bill Wendlingc3115a02009-08-22 20:30:53 +0000301 DEBUG({
302 if (str)
303 errs() << str << " intervals:\n";
304
305 for (; i != e; ++i) {
306 errs() << "\t" << *i->first << " -> ";
307
308 unsigned reg = i->first->reg;
309 if (TargetRegisterInfo::isVirtualRegister(reg))
310 reg = vrm_->getPhys(reg);
311
312 errs() << tri_->getName(reg) << '\n';
313 }
314 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000315 }
316 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000317 char RALinScan::ID = 0;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000318}
319
Evan Cheng3f32d652008-06-04 09:18:41 +0000320static RegisterPass<RALinScan>
321X("linearscan-regalloc", "Linear Scan Register Allocator");
322
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000323void RALinScan::ComputeRelatedRegClasses() {
Chris Lattnerb9805782005-08-23 22:27:31 +0000324 // First pass, add all reg classes to the union, and determine at least one
325 // reg class that each register is in.
326 bool HasAliases = false;
Evan Cheng206d1852009-04-20 08:01:12 +0000327 for (TargetRegisterInfo::regclass_iterator RCI = tri_->regclass_begin(),
328 E = tri_->regclass_end(); RCI != E; ++RCI) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000329 RelatedRegClasses.insert(*RCI);
330 for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end();
331 I != E; ++I) {
Evan Cheng206d1852009-04-20 08:01:12 +0000332 HasAliases = HasAliases || *tri_->getAliasSet(*I) != 0;
Chris Lattnerb9805782005-08-23 22:27:31 +0000333
334 const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I];
335 if (PRC) {
336 // Already processed this register. Just make sure we know that
337 // multiple register classes share a register.
338 RelatedRegClasses.unionSets(PRC, *RCI);
339 } else {
340 PRC = *RCI;
341 }
342 }
343 }
344
345 // Second pass, now that we know conservatively what register classes each reg
346 // belongs to, add info about aliases. We don't need to do this for targets
347 // without register aliases.
348 if (HasAliases)
Owen Anderson97382162008-08-13 23:36:23 +0000349 for (DenseMap<unsigned, const TargetRegisterClass*>::iterator
Chris Lattnerb9805782005-08-23 22:27:31 +0000350 I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end();
351 I != E; ++I)
Evan Cheng206d1852009-04-20 08:01:12 +0000352 for (const unsigned *AS = tri_->getAliasSet(I->first); *AS; ++AS)
Chris Lattnerb9805782005-08-23 22:27:31 +0000353 RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]);
354}
355
Evan Chengc92da382007-11-03 07:20:12 +0000356/// attemptTrivialCoalescing - If a simple interval is defined by a copy,
357/// try allocate the definition the same register as the source register
358/// if the register is not defined during live time of the interval. This
359/// eliminate a copy. This is used to coalesce copies which were not
360/// coalesced away before allocation either due to dest and src being in
361/// different register classes or because the coalescer was overly
362/// conservative.
363unsigned RALinScan::attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg) {
Evan Cheng90f95f82009-06-14 20:22:55 +0000364 unsigned Preference = vrm_->getRegAllocPref(cur.reg);
365 if ((Preference && Preference == Reg) || !cur.containsOneValue())
Evan Chengc92da382007-11-03 07:20:12 +0000366 return Reg;
367
Evan Chengd0deec22009-01-20 00:16:18 +0000368 VNInfo *vni = cur.begin()->valno;
Lang Hames86511252009-09-04 20:41:11 +0000369 if ((vni->def == MachineInstrIndex()) ||
370 vni->isUnused() || !vni->isDefAccurate())
Evan Chengc92da382007-11-03 07:20:12 +0000371 return Reg;
372 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Chengeca24fb2009-05-12 23:07:00 +0000373 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg, PhysReg;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000374 if (!CopyMI ||
375 !tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc92da382007-11-03 07:20:12 +0000376 return Reg;
Evan Chengeca24fb2009-05-12 23:07:00 +0000377 PhysReg = SrcReg;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000378 if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000379 if (!vrm_->isAssignedReg(SrcReg))
380 return Reg;
Evan Chengeca24fb2009-05-12 23:07:00 +0000381 PhysReg = vrm_->getPhys(SrcReg);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000382 }
Evan Chengeca24fb2009-05-12 23:07:00 +0000383 if (Reg == PhysReg)
Evan Chengc92da382007-11-03 07:20:12 +0000384 return Reg;
385
Evan Cheng841ee1a2008-09-18 22:38:47 +0000386 const TargetRegisterClass *RC = mri_->getRegClass(cur.reg);
Evan Chengeca24fb2009-05-12 23:07:00 +0000387 if (!RC->contains(PhysReg))
Evan Chengc92da382007-11-03 07:20:12 +0000388 return Reg;
389
390 // Try to coalesce.
Evan Chengeca24fb2009-05-12 23:07:00 +0000391 if (!li_->conflictsWithPhysRegDef(cur, *vrm_, PhysReg)) {
Bill Wendlingc3115a02009-08-22 20:30:53 +0000392 DEBUG(errs() << "Coalescing: " << cur << " -> " << tri_->getName(PhysReg)
393 << '\n');
Evan Chengc92da382007-11-03 07:20:12 +0000394 vrm_->clearVirt(cur.reg);
Evan Chengeca24fb2009-05-12 23:07:00 +0000395 vrm_->assignVirt2Phys(cur.reg, PhysReg);
396
397 // Remove unnecessary kills since a copy does not clobber the register.
398 if (li_->hasInterval(SrcReg)) {
399 LiveInterval &SrcLI = li_->getInterval(SrcReg);
400 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(cur.reg),
401 E = mri_->reg_end(); I != E; ++I) {
402 MachineOperand &O = I.getOperand();
403 if (!O.isUse() || !O.isKill())
404 continue;
405 MachineInstr *MI = &*I;
406 if (SrcLI.liveAt(li_->getDefIndex(li_->getInstructionIndex(MI))))
407 O.setIsKill(false);
408 }
409 }
410
Evan Chengc92da382007-11-03 07:20:12 +0000411 ++NumCoalesce;
Evan Cheng073e7e52009-06-04 20:53:36 +0000412 return PhysReg;
Evan Chengc92da382007-11-03 07:20:12 +0000413 }
414
415 return Reg;
416}
417
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000418bool RALinScan::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000419 mf_ = &fn;
Evan Cheng3e172252008-06-20 21:45:16 +0000420 mri_ = &fn.getRegInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000421 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000422 tri_ = tm_->getRegisterInfo();
Evan Chengc92da382007-11-03 07:20:12 +0000423 tii_ = tm_->getInstrInfo();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000424 allocatableRegs_ = tri_->getAllocatableSet(fn);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000425 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng3f32d652008-06-04 09:18:41 +0000426 ls_ = &getAnalysis<LiveStacks>();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000427 loopInfo = &getAnalysis<MachineLoopInfo>();
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000428
David Greene2c17c4d2007-09-06 16:18:45 +0000429 // We don't run the coalescer here because we have no reason to
430 // interact with it. If the coalescer requires interaction, it
431 // won't do anything. If it doesn't require interaction, we assume
432 // it was run as a separate pass.
433
Chris Lattnerb9805782005-08-23 22:27:31 +0000434 // If this is the first function compiled, compute the related reg classes.
435 if (RelatedRegClasses.empty())
436 ComputeRelatedRegClasses();
Evan Cheng5b16cd22009-05-01 01:03:49 +0000437
438 // Also resize register usage trackers.
439 initRegUses();
440
Owen Anderson49c8aa02009-03-13 05:55:11 +0000441 vrm_ = &getAnalysis<VirtRegMap>();
Lang Hames87e3bca2009-05-06 02:36:21 +0000442 if (!rewriter_.get()) rewriter_.reset(createVirtRegRewriter());
Lang Hamese2b201b2009-05-18 19:03:16 +0000443
444 if (NewSpillFramework) {
Lang Hamesf41538d2009-06-02 16:53:25 +0000445 spiller_.reset(createSpiller(mf_, li_, ls_, vrm_));
Lang Hamese2b201b2009-05-18 19:03:16 +0000446 }
Lang Hamesf41538d2009-06-02 16:53:25 +0000447
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000448 initIntervalSets();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000449
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000450 linearScan();
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000451
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000452 // Rewrite spill code and update the PhysRegsUsed set.
Lang Hames87e3bca2009-05-06 02:36:21 +0000453 rewriter_->runOnMachineFunction(*mf_, *vrm_, li_);
Chris Lattnercbb56252004-11-18 02:42:27 +0000454
Dan Gohman51cd9d62008-06-23 23:51:16 +0000455 assert(unhandled_.empty() && "Unhandled live intervals remain!");
Evan Cheng5b16cd22009-05-01 01:03:49 +0000456
457 finalizeRegUses();
458
Chris Lattnercbb56252004-11-18 02:42:27 +0000459 fixed_.clear();
460 active_.clear();
461 inactive_.clear();
462 handled_.clear();
Evan Cheng206d1852009-04-20 08:01:12 +0000463 NextReloadMap.clear();
464 DowngradedRegs.clear();
465 DowngradeMap.clear();
Lang Hamesf41538d2009-06-02 16:53:25 +0000466 spiller_.reset(0);
Chris Lattnercbb56252004-11-18 02:42:27 +0000467
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000468 return true;
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000469}
470
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000471/// initIntervalSets - initialize the interval sets.
472///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000473void RALinScan::initIntervalSets()
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000474{
475 assert(unhandled_.empty() && fixed_.empty() &&
476 active_.empty() && inactive_.empty() &&
477 "interval sets should be empty on initialization");
478
Owen Andersoncd1dcbd2008-08-15 18:49:41 +0000479 handled_.reserve(li_->getNumIntervals());
480
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000481 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000482 if (TargetRegisterInfo::isPhysicalRegister(i->second->reg)) {
Evan Cheng841ee1a2008-09-18 22:38:47 +0000483 mri_->setPhysRegUsed(i->second->reg);
Owen Anderson03857b22008-08-13 21:49:13 +0000484 fixed_.push_back(std::make_pair(i->second, i->second->begin()));
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000485 } else
Owen Anderson03857b22008-08-13 21:49:13 +0000486 unhandled_.push(i->second);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000487 }
488}
489
Bill Wendlingc3115a02009-08-22 20:30:53 +0000490void RALinScan::linearScan() {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000491 // linear scan algorithm
Bill Wendlingc3115a02009-08-22 20:30:53 +0000492 DEBUG({
493 errs() << "********** LINEAR SCAN **********\n"
494 << "********** Function: "
495 << mf_->getFunction()->getName() << '\n';
496 printIntervals("fixed", fixed_.begin(), fixed_.end());
497 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000498
499 while (!unhandled_.empty()) {
500 // pick the interval with the earliest start point
501 LiveInterval* cur = unhandled_.top();
502 unhandled_.pop();
Evan Cheng11923cc2007-10-16 21:09:14 +0000503 ++NumIters;
Bill Wendlingc3115a02009-08-22 20:30:53 +0000504 DEBUG(errs() << "\n*** CURRENT ***: " << *cur << '\n');
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000505
Evan Chengf30a49d2008-04-03 16:40:27 +0000506 if (!cur->empty()) {
Lang Hames86511252009-09-04 20:41:11 +0000507 processActiveIntervals(cur->beginIndex());
508 processInactiveIntervals(cur->beginIndex());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000509
Evan Chengf30a49d2008-04-03 16:40:27 +0000510 assert(TargetRegisterInfo::isVirtualRegister(cur->reg) &&
511 "Can only allocate virtual registers!");
512 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000513
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000514 // Allocating a virtual register. try to find a free
515 // physical register or spill an interval (possibly this one) in order to
516 // assign it one.
517 assignRegOrStackSlotAtInterval(cur);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000518
Bill Wendlingc3115a02009-08-22 20:30:53 +0000519 DEBUG({
520 printIntervals("active", active_.begin(), active_.end());
521 printIntervals("inactive", inactive_.begin(), inactive_.end());
522 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000523 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000524
Evan Cheng5b16cd22009-05-01 01:03:49 +0000525 // Expire any remaining active intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000526 while (!active_.empty()) {
527 IntervalPtr &IP = active_.back();
528 unsigned reg = IP.first->reg;
Bill Wendlingc3115a02009-08-22 20:30:53 +0000529 DEBUG(errs() << "\tinterval " << *IP.first << " expired\n");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000530 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000531 "Can only allocate virtual registers!");
532 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000533 delRegUse(reg);
Evan Cheng11923cc2007-10-16 21:09:14 +0000534 active_.pop_back();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000535 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000536
Evan Cheng5b16cd22009-05-01 01:03:49 +0000537 // Expire any remaining inactive intervals
Bill Wendlingc3115a02009-08-22 20:30:53 +0000538 DEBUG({
539 for (IntervalPtrs::reverse_iterator
540 i = inactive_.rbegin(); i != inactive_.rend(); ++i)
541 errs() << "\tinterval " << *i->first << " expired\n";
542 });
Evan Cheng11923cc2007-10-16 21:09:14 +0000543 inactive_.clear();
Alkis Evlogimenosb7be1152004-01-13 20:42:08 +0000544
Evan Cheng81a03822007-11-17 00:40:40 +0000545 // Add live-ins to every BB except for entry. Also perform trivial coalescing.
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000546 MachineFunction::iterator EntryMBB = mf_->begin();
Evan Chenga5bfc972007-10-17 06:53:44 +0000547 SmallVector<MachineBasicBlock*, 8> LiveInMBBs;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000548 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Owen Anderson03857b22008-08-13 21:49:13 +0000549 LiveInterval &cur = *i->second;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000550 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000551 bool isPhys = TargetRegisterInfo::isPhysicalRegister(cur.reg);
Evan Cheng81a03822007-11-17 00:40:40 +0000552 if (isPhys)
Owen Anderson03857b22008-08-13 21:49:13 +0000553 Reg = cur.reg;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000554 else if (vrm_->isAssignedReg(cur.reg))
Evan Chengc92da382007-11-03 07:20:12 +0000555 Reg = attemptTrivialCoalescing(cur, vrm_->getPhys(cur.reg));
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000556 if (!Reg)
557 continue;
Evan Cheng81a03822007-11-17 00:40:40 +0000558 // Ignore splited live intervals.
559 if (!isPhys && vrm_->getPreSplitReg(cur.reg))
560 continue;
Evan Cheng550aacb2009-06-04 20:28:22 +0000561
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000562 for (LiveInterval::Ranges::const_iterator I = cur.begin(), E = cur.end();
563 I != E; ++I) {
564 const LiveRange &LR = *I;
Evan Chengd0e32c52008-10-29 05:06:14 +0000565 if (li_->findLiveInMBBs(LR.start, LR.end, LiveInMBBs)) {
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000566 for (unsigned i = 0, e = LiveInMBBs.size(); i != e; ++i)
Evan Cheng073e7e52009-06-04 20:53:36 +0000567 if (LiveInMBBs[i] != EntryMBB) {
568 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
569 "Adding a virtual register to livein set?");
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000570 LiveInMBBs[i]->addLiveIn(Reg);
Evan Cheng073e7e52009-06-04 20:53:36 +0000571 }
Evan Chenga5bfc972007-10-17 06:53:44 +0000572 LiveInMBBs.clear();
Evan Cheng9fc508f2007-02-16 09:05:02 +0000573 }
574 }
575 }
576
Bill Wendlingc3115a02009-08-22 20:30:53 +0000577 DEBUG(errs() << *vrm_);
Evan Chengc781a242009-05-03 18:32:42 +0000578
579 // Look for physical registers that end up not being allocated even though
580 // register allocator had to spill other registers in its register class.
581 if (ls_->getNumIntervals() == 0)
582 return;
Evan Cheng90f95f82009-06-14 20:22:55 +0000583 if (!vrm_->FindUnusedRegisters(li_))
Evan Chengc781a242009-05-03 18:32:42 +0000584 return;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000585}
586
Chris Lattnercbb56252004-11-18 02:42:27 +0000587/// processActiveIntervals - expire old intervals and move non-overlapping ones
588/// to the inactive list.
Lang Hames86511252009-09-04 20:41:11 +0000589void RALinScan::processActiveIntervals(MachineInstrIndex CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000590{
Bill Wendlingc3115a02009-08-22 20:30:53 +0000591 DEBUG(errs() << "\tprocessing active intervals:\n");
Chris Lattner23b71c12004-11-18 01:29:39 +0000592
Chris Lattnercbb56252004-11-18 02:42:27 +0000593 for (unsigned i = 0, e = active_.size(); i != e; ++i) {
594 LiveInterval *Interval = active_[i].first;
595 LiveInterval::iterator IntervalPos = active_[i].second;
596 unsigned reg = Interval->reg;
Alkis Evlogimenosed543732004-09-01 22:52:29 +0000597
Chris Lattnercbb56252004-11-18 02:42:27 +0000598 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
599
600 if (IntervalPos == Interval->end()) { // Remove expired intervals.
Bill Wendlingc3115a02009-08-22 20:30:53 +0000601 DEBUG(errs() << "\t\tinterval " << *Interval << " expired\n");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000602 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000603 "Can only allocate virtual registers!");
604 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000605 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000606
607 // Pop off the end of the list.
608 active_[i] = active_.back();
609 active_.pop_back();
610 --i; --e;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000611
Chris Lattnercbb56252004-11-18 02:42:27 +0000612 } else if (IntervalPos->start > CurPoint) {
613 // Move inactive intervals to inactive list.
Bill Wendlingc3115a02009-08-22 20:30:53 +0000614 DEBUG(errs() << "\t\tinterval " << *Interval << " inactive\n");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000615 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000616 "Can only allocate virtual registers!");
617 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000618 delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000619 // add to inactive.
620 inactive_.push_back(std::make_pair(Interval, IntervalPos));
621
622 // Pop off the end of the list.
623 active_[i] = active_.back();
624 active_.pop_back();
625 --i; --e;
626 } else {
627 // Otherwise, just update the iterator position.
628 active_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000629 }
630 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000631}
632
Chris Lattnercbb56252004-11-18 02:42:27 +0000633/// processInactiveIntervals - expire old intervals and move overlapping
634/// ones to the active list.
Lang Hames86511252009-09-04 20:41:11 +0000635void RALinScan::processInactiveIntervals(MachineInstrIndex CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000636{
Bill Wendlingc3115a02009-08-22 20:30:53 +0000637 DEBUG(errs() << "\tprocessing inactive intervals:\n");
Chris Lattner365b95f2004-11-18 04:13:02 +0000638
Chris Lattnercbb56252004-11-18 02:42:27 +0000639 for (unsigned i = 0, e = inactive_.size(); i != e; ++i) {
640 LiveInterval *Interval = inactive_[i].first;
641 LiveInterval::iterator IntervalPos = inactive_[i].second;
642 unsigned reg = Interval->reg;
Chris Lattner23b71c12004-11-18 01:29:39 +0000643
Chris Lattnercbb56252004-11-18 02:42:27 +0000644 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000645
Chris Lattnercbb56252004-11-18 02:42:27 +0000646 if (IntervalPos == Interval->end()) { // remove expired intervals.
Bill Wendlingc3115a02009-08-22 20:30:53 +0000647 DEBUG(errs() << "\t\tinterval " << *Interval << " expired\n");
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000648
Chris Lattnercbb56252004-11-18 02:42:27 +0000649 // Pop off the end of the list.
650 inactive_[i] = inactive_.back();
651 inactive_.pop_back();
652 --i; --e;
653 } else if (IntervalPos->start <= CurPoint) {
654 // move re-activated intervals in active list
Bill Wendlingc3115a02009-08-22 20:30:53 +0000655 DEBUG(errs() << "\t\tinterval " << *Interval << " active\n");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000656 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000657 "Can only allocate virtual registers!");
658 reg = vrm_->getPhys(reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000659 addRegUse(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000660 // add to active
Chris Lattnercbb56252004-11-18 02:42:27 +0000661 active_.push_back(std::make_pair(Interval, IntervalPos));
662
663 // Pop off the end of the list.
664 inactive_[i] = inactive_.back();
665 inactive_.pop_back();
666 --i; --e;
667 } else {
668 // Otherwise, just update the iterator position.
669 inactive_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000670 }
671 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000672}
673
Chris Lattnercbb56252004-11-18 02:42:27 +0000674/// updateSpillWeights - updates the spill weights of the specifed physical
675/// register and its weight.
Evan Cheng5d088fe2009-03-23 22:57:19 +0000676void RALinScan::updateSpillWeights(std::vector<float> &Weights,
677 unsigned reg, float weight,
678 const TargetRegisterClass *RC) {
679 SmallSet<unsigned, 4> Processed;
680 SmallSet<unsigned, 4> SuperAdded;
681 SmallVector<unsigned, 4> Supers;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000682 Weights[reg] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000683 Processed.insert(reg);
684 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as) {
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000685 Weights[*as] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000686 Processed.insert(*as);
687 if (tri_->isSubRegister(*as, reg) &&
688 SuperAdded.insert(*as) &&
689 RC->contains(*as)) {
690 Supers.push_back(*as);
691 }
692 }
693
694 // If the alias is a super-register, and the super-register is in the
695 // register class we are trying to allocate. Then add the weight to all
696 // sub-registers of the super-register even if they are not aliases.
697 // e.g. allocating for GR32, bh is not used, updating bl spill weight.
698 // bl should get the same spill weight otherwise it will be choosen
699 // as a spill candidate since spilling bh doesn't make ebx available.
700 for (unsigned i = 0, e = Supers.size(); i != e; ++i) {
Evan Chengc781a242009-05-03 18:32:42 +0000701 for (const unsigned *sr = tri_->getSubRegisters(Supers[i]); *sr; ++sr)
702 if (!Processed.count(*sr))
703 Weights[*sr] += weight;
Evan Cheng5d088fe2009-03-23 22:57:19 +0000704 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000705}
706
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000707static
708RALinScan::IntervalPtrs::iterator
709FindIntervalInVector(RALinScan::IntervalPtrs &IP, LiveInterval *LI) {
710 for (RALinScan::IntervalPtrs::iterator I = IP.begin(), E = IP.end();
711 I != E; ++I)
Chris Lattnercbb56252004-11-18 02:42:27 +0000712 if (I->first == LI) return I;
713 return IP.end();
714}
715
Lang Hames86511252009-09-04 20:41:11 +0000716static void RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, MachineInstrIndex Point){
Chris Lattner19828d42004-11-18 03:49:30 +0000717 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000718 RALinScan::IntervalPtr &IP = V[i];
Chris Lattner19828d42004-11-18 03:49:30 +0000719 LiveInterval::iterator I = std::upper_bound(IP.first->begin(),
720 IP.second, Point);
721 if (I != IP.first->begin()) --I;
722 IP.second = I;
723 }
724}
Chris Lattnercbb56252004-11-18 02:42:27 +0000725
Evan Cheng3f32d652008-06-04 09:18:41 +0000726/// addStackInterval - Create a LiveInterval for stack if the specified live
727/// interval has been spilled.
728static void addStackInterval(LiveInterval *cur, LiveStacks *ls_,
Evan Chengc781a242009-05-03 18:32:42 +0000729 LiveIntervals *li_,
730 MachineRegisterInfo* mri_, VirtRegMap &vrm_) {
Evan Cheng3f32d652008-06-04 09:18:41 +0000731 int SS = vrm_.getStackSlot(cur->reg);
732 if (SS == VirtRegMap::NO_STACK_SLOT)
733 return;
Evan Chengc781a242009-05-03 18:32:42 +0000734
735 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
736 LiveInterval &SI = ls_->getOrCreateInterval(SS, RC);
Evan Cheng9c3c2212008-06-06 07:54:39 +0000737
Evan Cheng3f32d652008-06-04 09:18:41 +0000738 VNInfo *VNI;
Evan Cheng54898932008-10-29 08:39:34 +0000739 if (SI.hasAtLeastOneValue())
Evan Cheng3f32d652008-06-04 09:18:41 +0000740 VNI = SI.getValNumInfo(0);
741 else
Lang Hames86511252009-09-04 20:41:11 +0000742 VNI = SI.getNextValue(MachineInstrIndex(), 0, false,
743 ls_->getVNInfoAllocator());
Evan Cheng3f32d652008-06-04 09:18:41 +0000744
745 LiveInterval &RI = li_->getInterval(cur->reg);
746 // FIXME: This may be overly conservative.
747 SI.MergeRangesInAsValue(RI, VNI);
Evan Cheng3f32d652008-06-04 09:18:41 +0000748}
749
Evan Cheng3e172252008-06-20 21:45:16 +0000750/// getConflictWeight - Return the number of conflicts between cur
751/// live interval and defs and uses of Reg weighted by loop depthes.
Evan Chengc781a242009-05-03 18:32:42 +0000752static
753float getConflictWeight(LiveInterval *cur, unsigned Reg, LiveIntervals *li_,
754 MachineRegisterInfo *mri_,
755 const MachineLoopInfo *loopInfo) {
Evan Cheng3e172252008-06-20 21:45:16 +0000756 float Conflicts = 0;
757 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
758 E = mri_->reg_end(); I != E; ++I) {
759 MachineInstr *MI = &*I;
760 if (cur->liveAt(li_->getInstructionIndex(MI))) {
761 unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
762 Conflicts += powf(10.0f, (float)loopDepth);
763 }
764 }
765 return Conflicts;
766}
767
768/// findIntervalsToSpill - Determine the intervals to spill for the
769/// specified interval. It's passed the physical registers whose spill
770/// weight is the lowest among all the registers whose live intervals
771/// conflict with the interval.
772void RALinScan::findIntervalsToSpill(LiveInterval *cur,
773 std::vector<std::pair<unsigned,float> > &Candidates,
774 unsigned NumCands,
775 SmallVector<LiveInterval*, 8> &SpillIntervals) {
776 // We have figured out the *best* register to spill. But there are other
777 // registers that are pretty good as well (spill weight within 3%). Spill
778 // the one that has fewest defs and uses that conflict with cur.
779 float Conflicts[3] = { 0.0f, 0.0f, 0.0f };
780 SmallVector<LiveInterval*, 8> SLIs[3];
781
Bill Wendlingc3115a02009-08-22 20:30:53 +0000782 DEBUG({
783 errs() << "\tConsidering " << NumCands << " candidates: ";
784 for (unsigned i = 0; i != NumCands; ++i)
785 errs() << tri_->getName(Candidates[i].first) << " ";
786 errs() << "\n";
787 });
Evan Cheng3e172252008-06-20 21:45:16 +0000788
789 // Calculate the number of conflicts of each candidate.
790 for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
791 unsigned Reg = i->first->reg;
792 unsigned PhysReg = vrm_->getPhys(Reg);
793 if (!cur->overlapsFrom(*i->first, i->second))
794 continue;
795 for (unsigned j = 0; j < NumCands; ++j) {
796 unsigned Candidate = Candidates[j].first;
797 if (tri_->regsOverlap(PhysReg, Candidate)) {
798 if (NumCands > 1)
799 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
800 SLIs[j].push_back(i->first);
801 }
802 }
803 }
804
805 for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){
806 unsigned Reg = i->first->reg;
807 unsigned PhysReg = vrm_->getPhys(Reg);
808 if (!cur->overlapsFrom(*i->first, i->second-1))
809 continue;
810 for (unsigned j = 0; j < NumCands; ++j) {
811 unsigned Candidate = Candidates[j].first;
812 if (tri_->regsOverlap(PhysReg, Candidate)) {
813 if (NumCands > 1)
814 Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo);
815 SLIs[j].push_back(i->first);
816 }
817 }
818 }
819
820 // Which is the best candidate?
821 unsigned BestCandidate = 0;
822 float MinConflicts = Conflicts[0];
823 for (unsigned i = 1; i != NumCands; ++i) {
824 if (Conflicts[i] < MinConflicts) {
825 BestCandidate = i;
826 MinConflicts = Conflicts[i];
827 }
828 }
829
830 std::copy(SLIs[BestCandidate].begin(), SLIs[BestCandidate].end(),
831 std::back_inserter(SpillIntervals));
832}
833
834namespace {
835 struct WeightCompare {
836 typedef std::pair<unsigned, float> RegWeightPair;
837 bool operator()(const RegWeightPair &LHS, const RegWeightPair &RHS) const {
838 return LHS.second < RHS.second;
839 }
840 };
841}
842
843static bool weightsAreClose(float w1, float w2) {
844 if (!NewHeuristic)
845 return false;
846
847 float diff = w1 - w2;
848 if (diff <= 0.02f) // Within 0.02f
849 return true;
850 return (diff / w2) <= 0.05f; // Within 5%.
851}
852
Evan Cheng206d1852009-04-20 08:01:12 +0000853LiveInterval *RALinScan::hasNextReloadInterval(LiveInterval *cur) {
854 DenseMap<unsigned, unsigned>::iterator I = NextReloadMap.find(cur->reg);
855 if (I == NextReloadMap.end())
856 return 0;
857 return &li_->getInterval(I->second);
858}
859
860void RALinScan::DowngradeRegister(LiveInterval *li, unsigned Reg) {
861 bool isNew = DowngradedRegs.insert(Reg);
862 isNew = isNew; // Silence compiler warning.
863 assert(isNew && "Multiple reloads holding the same register?");
864 DowngradeMap.insert(std::make_pair(li->reg, Reg));
865 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS) {
866 isNew = DowngradedRegs.insert(*AS);
867 isNew = isNew; // Silence compiler warning.
868 assert(isNew && "Multiple reloads holding the same register?");
869 DowngradeMap.insert(std::make_pair(li->reg, *AS));
870 }
871 ++NumDowngrade;
872}
873
874void RALinScan::UpgradeRegister(unsigned Reg) {
875 if (Reg) {
876 DowngradedRegs.erase(Reg);
877 for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS)
878 DowngradedRegs.erase(*AS);
879 }
880}
881
882namespace {
883 struct LISorter {
884 bool operator()(LiveInterval* A, LiveInterval* B) {
Lang Hames86511252009-09-04 20:41:11 +0000885 return A->beginIndex() < B->beginIndex();
Evan Cheng206d1852009-04-20 08:01:12 +0000886 }
887 };
888}
889
Chris Lattnercbb56252004-11-18 02:42:27 +0000890/// assignRegOrStackSlotAtInterval - assign a register if one is available, or
891/// spill.
Bill Wendlingc3115a02009-08-22 20:30:53 +0000892void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur) {
893 DEBUG(errs() << "\tallocating current interval: ");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000894
Evan Chengf30a49d2008-04-03 16:40:27 +0000895 // This is an implicitly defined live interval, just assign any register.
Evan Cheng841ee1a2008-09-18 22:38:47 +0000896 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000897 if (cur->empty()) {
Evan Cheng90f95f82009-06-14 20:22:55 +0000898 unsigned physReg = vrm_->getRegAllocPref(cur->reg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000899 if (!physReg)
900 physReg = *RC->allocation_order_begin(*mf_);
Bill Wendlingc3115a02009-08-22 20:30:53 +0000901 DEBUG(errs() << tri_->getName(physReg) << '\n');
Evan Chengf30a49d2008-04-03 16:40:27 +0000902 // Note the register is not really in use.
903 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Chengf30a49d2008-04-03 16:40:27 +0000904 return;
905 }
906
Evan Cheng5b16cd22009-05-01 01:03:49 +0000907 backUpRegUses();
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000908
Chris Lattnera6c17502005-08-22 20:20:42 +0000909 std::vector<std::pair<unsigned, float> > SpillWeightsToAdd;
Lang Hames86511252009-09-04 20:41:11 +0000910 MachineInstrIndex StartPosition = cur->beginIndex();
Chris Lattnerb9805782005-08-23 22:27:31 +0000911 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
Evan Chengc92da382007-11-03 07:20:12 +0000912
Evan Chengd0deec22009-01-20 00:16:18 +0000913 // If start of this live interval is defined by a move instruction and its
914 // source is assigned a physical register that is compatible with the target
915 // register class, then we should try to assign it the same register.
Evan Chengc92da382007-11-03 07:20:12 +0000916 // This can happen when the move is from a larger register class to a smaller
917 // one, e.g. X86::mov32to32_. These move instructions are not coalescable.
Evan Cheng90f95f82009-06-14 20:22:55 +0000918 if (!vrm_->getRegAllocPref(cur->reg) && cur->hasAtLeastOneValue()) {
Evan Chengd0deec22009-01-20 00:16:18 +0000919 VNInfo *vni = cur->begin()->valno;
Lang Hames86511252009-09-04 20:41:11 +0000920 if ((vni->def != MachineInstrIndex()) && !vni->isUnused() &&
921 vni->isDefAccurate()) {
Evan Chengc92da382007-11-03 07:20:12 +0000922 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000923 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
924 if (CopyMI &&
925 tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg)) {
Evan Chengc92da382007-11-03 07:20:12 +0000926 unsigned Reg = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000927 if (TargetRegisterInfo::isPhysicalRegister(SrcReg))
Evan Chengc92da382007-11-03 07:20:12 +0000928 Reg = SrcReg;
929 else if (vrm_->isAssignedReg(SrcReg))
930 Reg = vrm_->getPhys(SrcReg);
Evan Cheng1c2f6da2009-04-29 00:42:27 +0000931 if (Reg) {
932 if (SrcSubReg)
933 Reg = tri_->getSubReg(Reg, SrcSubReg);
934 if (DstSubReg)
935 Reg = tri_->getMatchingSuperReg(Reg, DstSubReg, RC);
936 if (Reg && allocatableRegs_[Reg] && RC->contains(Reg))
Evan Cheng358dec52009-06-15 08:28:29 +0000937 mri_->setRegAllocationHint(cur->reg, 0, Reg);
Evan Cheng1c2f6da2009-04-29 00:42:27 +0000938 }
Evan Chengc92da382007-11-03 07:20:12 +0000939 }
940 }
941 }
942
Evan Cheng5b16cd22009-05-01 01:03:49 +0000943 // For every interval in inactive we overlap with, mark the
Chris Lattnera6c17502005-08-22 20:20:42 +0000944 // register as not free and update spill weights.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000945 for (IntervalPtrs::const_iterator i = inactive_.begin(),
946 e = inactive_.end(); i != e; ++i) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000947 unsigned Reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000948 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
Chris Lattnerb9805782005-08-23 22:27:31 +0000949 "Can only allocate virtual registers!");
Evan Cheng841ee1a2008-09-18 22:38:47 +0000950 const TargetRegisterClass *RegRC = mri_->getRegClass(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000951 // If this is not in a related reg class to the register we're allocating,
952 // don't check it.
953 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
954 cur->overlapsFrom(*i->first, i->second-1)) {
955 Reg = vrm_->getPhys(Reg);
Evan Cheng5b16cd22009-05-01 01:03:49 +0000956 addRegUse(Reg);
Chris Lattnerb9805782005-08-23 22:27:31 +0000957 SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000958 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000959 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000960
961 // Speculatively check to see if we can get a register right now. If not,
962 // we know we won't be able to by adding more constraints. If so, we can
963 // check to see if it is valid. Doing an exhaustive search of the fixed_ list
964 // is very bad (it contains all callee clobbered registers for any functions
965 // with a call), so we want to avoid doing that if possible.
966 unsigned physReg = getFreePhysReg(cur);
Evan Cheng676dd7c2008-03-11 07:19:34 +0000967 unsigned BestPhysReg = physReg;
Chris Lattnera411cbc2005-08-22 20:59:30 +0000968 if (physReg) {
969 // We got a register. However, if it's in the fixed_ list, we might
Chris Lattnere836ad62005-08-30 21:03:36 +0000970 // conflict with it. Check to see if we conflict with it or any of its
971 // aliases.
Evan Chengc92da382007-11-03 07:20:12 +0000972 SmallSet<unsigned, 8> RegAliases;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000973 for (const unsigned *AS = tri_->getAliasSet(physReg); *AS; ++AS)
Chris Lattnere836ad62005-08-30 21:03:36 +0000974 RegAliases.insert(*AS);
975
Chris Lattnera411cbc2005-08-22 20:59:30 +0000976 bool ConflictsWithFixed = false;
977 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
Jim Laskeye719d9f2006-10-24 14:35:25 +0000978 IntervalPtr &IP = fixed_[i];
979 if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000980 // Okay, this reg is on the fixed list. Check to see if we actually
981 // conflict.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000982 LiveInterval *I = IP.first;
Lang Hames86511252009-09-04 20:41:11 +0000983 if (I->endIndex() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000984 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
985 IP.second = II;
986 if (II != I->begin() && II->start > StartPosition)
987 --II;
Chris Lattnere836ad62005-08-30 21:03:36 +0000988 if (cur->overlapsFrom(*I, II)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000989 ConflictsWithFixed = true;
Chris Lattnere836ad62005-08-30 21:03:36 +0000990 break;
991 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000992 }
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000993 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000994 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000995
996 // Okay, the register picked by our speculative getFreePhysReg call turned
997 // out to be in use. Actually add all of the conflicting fixed registers to
Evan Cheng5b16cd22009-05-01 01:03:49 +0000998 // regUse_ so we can do an accurate query.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000999 if (ConflictsWithFixed) {
Chris Lattnerb9805782005-08-23 22:27:31 +00001000 // For every interval in fixed we overlap with, mark the register as not
1001 // free and update spill weights.
Chris Lattnera411cbc2005-08-22 20:59:30 +00001002 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
1003 IntervalPtr &IP = fixed_[i];
1004 LiveInterval *I = IP.first;
Chris Lattnerb9805782005-08-23 22:27:31 +00001005
1006 const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg];
1007 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
Lang Hames86511252009-09-04 20:41:11 +00001008 I->endIndex() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +00001009 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
1010 IP.second = II;
1011 if (II != I->begin() && II->start > StartPosition)
1012 --II;
1013 if (cur->overlapsFrom(*I, II)) {
1014 unsigned reg = I->reg;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001015 addRegUse(reg);
Chris Lattnera411cbc2005-08-22 20:59:30 +00001016 SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight));
1017 }
1018 }
1019 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +00001020
Evan Cheng5b16cd22009-05-01 01:03:49 +00001021 // Using the newly updated regUse_ object, which includes conflicts in the
Chris Lattnera411cbc2005-08-22 20:59:30 +00001022 // future, see if there are any registers available.
1023 physReg = getFreePhysReg(cur);
1024 }
1025 }
1026
Chris Lattnera6c17502005-08-22 20:20:42 +00001027 // Restore the physical register tracker, removing information about the
1028 // future.
Evan Cheng5b16cd22009-05-01 01:03:49 +00001029 restoreRegUses();
Chris Lattnera6c17502005-08-22 20:20:42 +00001030
Evan Cheng5b16cd22009-05-01 01:03:49 +00001031 // If we find a free register, we are done: assign this virtual to
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001032 // the free physical register and add this interval to the active
1033 // list.
1034 if (physReg) {
Bill Wendlingc3115a02009-08-22 20:30:53 +00001035 DEBUG(errs() << tri_->getName(physReg) << '\n');
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001036 vrm_->assignVirt2Phys(cur->reg, physReg);
Evan Cheng5b16cd22009-05-01 01:03:49 +00001037 addRegUse(physReg);
Chris Lattnercbb56252004-11-18 02:42:27 +00001038 active_.push_back(std::make_pair(cur, cur->begin()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001039 handled_.push_back(cur);
Evan Cheng206d1852009-04-20 08:01:12 +00001040
1041 // "Upgrade" the physical register since it has been allocated.
1042 UpgradeRegister(physReg);
1043 if (LiveInterval *NextReloadLI = hasNextReloadInterval(cur)) {
1044 // "Downgrade" physReg to try to keep physReg from being allocated until
1045 // the next reload from the same SS is allocated.
Evan Cheng358dec52009-06-15 08:28:29 +00001046 mri_->setRegAllocationHint(NextReloadLI->reg, 0, physReg);
Evan Cheng206d1852009-04-20 08:01:12 +00001047 DowngradeRegister(cur, physReg);
1048 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001049 return;
1050 }
Bill Wendlingc3115a02009-08-22 20:30:53 +00001051 DEBUG(errs() << "no free registers\n");
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001052
Chris Lattnera6c17502005-08-22 20:20:42 +00001053 // Compile the spill weights into an array that is better for scanning.
Evan Cheng3e172252008-06-20 21:45:16 +00001054 std::vector<float> SpillWeights(tri_->getNumRegs(), 0.0f);
Chris Lattnera6c17502005-08-22 20:20:42 +00001055 for (std::vector<std::pair<unsigned, float> >::iterator
1056 I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I)
Evan Cheng5d088fe2009-03-23 22:57:19 +00001057 updateSpillWeights(SpillWeights, I->first, I->second, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +00001058
1059 // for each interval in active, update spill weights.
1060 for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
1061 i != e; ++i) {
1062 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001063 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnera6c17502005-08-22 20:20:42 +00001064 "Can only allocate virtual registers!");
1065 reg = vrm_->getPhys(reg);
Evan Cheng5d088fe2009-03-23 22:57:19 +00001066 updateSpillWeights(SpillWeights, reg, i->first->weight, RC);
Chris Lattnera6c17502005-08-22 20:20:42 +00001067 }
1068
Bill Wendlingc3115a02009-08-22 20:30:53 +00001069 DEBUG(errs() << "\tassigning stack slot at interval "<< *cur << ":\n");
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001070
Chris Lattnerc8e2c552006-03-25 23:00:56 +00001071 // Find a register to spill.
Jim Laskey7902c752006-11-07 12:25:45 +00001072 float minWeight = HUGE_VALF;
Evan Cheng90f95f82009-06-14 20:22:55 +00001073 unsigned minReg = 0;
Evan Cheng3e172252008-06-20 21:45:16 +00001074
1075 bool Found = false;
1076 std::vector<std::pair<unsigned,float> > RegsWeights;
Evan Cheng20b0abc2007-04-17 20:32:26 +00001077 if (!minReg || SpillWeights[minReg] == HUGE_VALF)
1078 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1079 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1080 unsigned reg = *i;
Evan Cheng3e172252008-06-20 21:45:16 +00001081 float regWeight = SpillWeights[reg];
1082 if (minWeight > regWeight)
1083 Found = true;
1084 RegsWeights.push_back(std::make_pair(reg, regWeight));
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001085 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +00001086
1087 // If we didn't find a register that is spillable, try aliases?
Evan Cheng3e172252008-06-20 21:45:16 +00001088 if (!Found) {
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001089 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
1090 e = RC->allocation_order_end(*mf_); i != e; ++i) {
1091 unsigned reg = *i;
1092 // No need to worry about if the alias register size < regsize of RC.
1093 // We are going to spill all registers that alias it anyway.
Evan Cheng3e172252008-06-20 21:45:16 +00001094 for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as)
1095 RegsWeights.push_back(std::make_pair(*as, SpillWeights[*as]));
Evan Cheng676dd7c2008-03-11 07:19:34 +00001096 }
Evan Cheng3b6d56c2006-05-12 19:07:46 +00001097 }
Evan Cheng3e172252008-06-20 21:45:16 +00001098
1099 // Sort all potential spill candidates by weight.
1100 std::sort(RegsWeights.begin(), RegsWeights.end(), WeightCompare());
1101 minReg = RegsWeights[0].first;
1102 minWeight = RegsWeights[0].second;
1103 if (minWeight == HUGE_VALF) {
1104 // All registers must have inf weight. Just grab one!
1105 minReg = BestPhysReg ? BestPhysReg : *RC->allocation_order_begin(*mf_);
Owen Andersona1566f22008-07-22 22:46:49 +00001106 if (cur->weight == HUGE_VALF ||
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001107 li_->getApproximateInstructionCount(*cur) == 0) {
Evan Cheng3e172252008-06-20 21:45:16 +00001108 // Spill a physical register around defs and uses.
Evan Cheng206d1852009-04-20 08:01:12 +00001109 if (li_->spillPhysRegAroundRegDefsUses(*cur, minReg, *vrm_)) {
Evan Cheng96f3fd92009-04-29 07:16:34 +00001110 // spillPhysRegAroundRegDefsUses may have invalidated iterator stored
1111 // in fixed_. Reset them.
1112 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
1113 IntervalPtr &IP = fixed_[i];
1114 LiveInterval *I = IP.first;
1115 if (I->reg == minReg || tri_->isSubRegister(minReg, I->reg))
1116 IP.second = I->advanceTo(I->begin(), StartPosition);
1117 }
1118
Evan Cheng206d1852009-04-20 08:01:12 +00001119 DowngradedRegs.clear();
Evan Cheng2824a652009-03-23 18:24:37 +00001120 assignRegOrStackSlotAtInterval(cur);
Evan Cheng206d1852009-04-20 08:01:12 +00001121 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001122 llvm_report_error("Ran out of registers during register allocation!");
Evan Cheng2824a652009-03-23 18:24:37 +00001123 }
Evan Cheng5e8d9de2008-09-20 01:28:05 +00001124 return;
1125 }
Evan Cheng3e172252008-06-20 21:45:16 +00001126 }
1127
1128 // Find up to 3 registers to consider as spill candidates.
1129 unsigned LastCandidate = RegsWeights.size() >= 3 ? 3 : 1;
1130 while (LastCandidate > 1) {
1131 if (weightsAreClose(RegsWeights[LastCandidate-1].second, minWeight))
1132 break;
1133 --LastCandidate;
1134 }
1135
Bill Wendlingc3115a02009-08-22 20:30:53 +00001136 DEBUG({
1137 errs() << "\t\tregister(s) with min weight(s): ";
1138
1139 for (unsigned i = 0; i != LastCandidate; ++i)
1140 errs() << tri_->getName(RegsWeights[i].first)
1141 << " (" << RegsWeights[i].second << ")\n";
1142 });
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +00001143
Evan Cheng206d1852009-04-20 08:01:12 +00001144 // If the current has the minimum weight, we need to spill it and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001145 // add any added intervals back to unhandled, and restart
1146 // linearscan.
Jim Laskey7902c752006-11-07 12:25:45 +00001147 if (cur->weight != HUGE_VALF && cur->weight <= minWeight) {
Bill Wendlingc3115a02009-08-22 20:30:53 +00001148 DEBUG(errs() << "\t\t\tspilling(c): " << *cur << '\n');
Evan Chengdc377862008-09-30 15:44:16 +00001149 SmallVector<LiveInterval*, 8> spillIs;
Lang Hamese2b201b2009-05-18 19:03:16 +00001150 std::vector<LiveInterval*> added;
1151
1152 if (!NewSpillFramework) {
1153 added = li_->addIntervalsForSpills(*cur, spillIs, loopInfo, *vrm_);
Lang Hamesf41538d2009-06-02 16:53:25 +00001154 } else {
Lang Hamese2b201b2009-05-18 19:03:16 +00001155 added = spiller_->spill(cur);
1156 }
1157
Evan Cheng206d1852009-04-20 08:01:12 +00001158 std::sort(added.begin(), added.end(), LISorter());
Evan Chengc781a242009-05-03 18:32:42 +00001159 addStackInterval(cur, ls_, li_, mri_, *vrm_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001160 if (added.empty())
1161 return; // Early exit if all spills were folded.
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001162
Evan Cheng206d1852009-04-20 08:01:12 +00001163 // Merge added with unhandled. Note that we have already sorted
1164 // intervals returned by addIntervalsForSpills by their starting
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001165 // point.
Evan Chengc4f718a2009-04-20 17:23:48 +00001166 // This also update the NextReloadMap. That is, it adds mapping from a
1167 // register defined by a reload from SS to the next reload from SS in the
1168 // same basic block.
1169 MachineBasicBlock *LastReloadMBB = 0;
1170 LiveInterval *LastReload = 0;
1171 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1172 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1173 LiveInterval *ReloadLi = added[i];
1174 if (ReloadLi->weight == HUGE_VALF &&
1175 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
Lang Hames86511252009-09-04 20:41:11 +00001176 MachineInstrIndex ReloadIdx = ReloadLi->beginIndex();
Evan Chengc4f718a2009-04-20 17:23:48 +00001177 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1178 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1179 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1180 // Last reload of same SS is in the same MBB. We want to try to
1181 // allocate both reloads the same register and make sure the reg
1182 // isn't clobbered in between if at all possible.
Lang Hames86511252009-09-04 20:41:11 +00001183 assert(LastReload->beginIndex() < ReloadIdx);
Evan Chengc4f718a2009-04-20 17:23:48 +00001184 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1185 }
1186 LastReloadMBB = ReloadMBB;
1187 LastReload = ReloadLi;
1188 LastReloadSS = ReloadSS;
1189 }
1190 unhandled_.push(ReloadLi);
1191 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001192 return;
1193 }
1194
Chris Lattner19828d42004-11-18 03:49:30 +00001195 ++NumBacktracks;
1196
Evan Cheng206d1852009-04-20 08:01:12 +00001197 // Push the current interval back to unhandled since we are going
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001198 // to re-run at least this iteration. Since we didn't modify it it
1199 // should go back right in the front of the list
1200 unhandled_.push(cur);
1201
Dan Gohman6f0d0242008-02-10 18:45:23 +00001202 assert(TargetRegisterInfo::isPhysicalRegister(minReg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001203 "did not choose a register to spill?");
Chris Lattner19828d42004-11-18 03:49:30 +00001204
Evan Cheng3e172252008-06-20 21:45:16 +00001205 // We spill all intervals aliasing the register with
1206 // minimum weight, rollback to the interval with the earliest
1207 // start point and let the linear scan algorithm run again
1208 SmallVector<LiveInterval*, 8> spillIs;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001209
Evan Cheng3e172252008-06-20 21:45:16 +00001210 // Determine which intervals have to be spilled.
1211 findIntervalsToSpill(cur, RegsWeights, LastCandidate, spillIs);
1212
1213 // Set of spilled vregs (used later to rollback properly)
1214 SmallSet<unsigned, 8> spilled;
1215
1216 // The earliest start of a Spilled interval indicates up to where
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001217 // in handled we need to roll back
Lang Hamesf41538d2009-06-02 16:53:25 +00001218
Lang Hamesf41538d2009-06-02 16:53:25 +00001219 LiveInterval *earliestStartInterval = cur;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001220
Evan Cheng3e172252008-06-20 21:45:16 +00001221 // Spill live intervals of virtual regs mapped to the physical register we
Chris Lattner19828d42004-11-18 03:49:30 +00001222 // want to clear (and its aliases). We only spill those that overlap with the
1223 // current interval as the rest do not affect its allocation. we also keep
1224 // track of the earliest start of all spilled live intervals since this will
1225 // mark our rollback point.
Evan Cheng3e172252008-06-20 21:45:16 +00001226 std::vector<LiveInterval*> added;
1227 while (!spillIs.empty()) {
1228 LiveInterval *sli = spillIs.back();
1229 spillIs.pop_back();
Bill Wendlingc3115a02009-08-22 20:30:53 +00001230 DEBUG(errs() << "\t\t\tspilling(a): " << *sli << '\n');
Lang Hamesf41538d2009-06-02 16:53:25 +00001231 earliestStartInterval =
Lang Hames86511252009-09-04 20:41:11 +00001232 (earliestStartInterval->beginIndex() < sli->beginIndex()) ?
Lang Hamesf41538d2009-06-02 16:53:25 +00001233 earliestStartInterval : sli;
Lang Hamesfcad1722009-06-04 01:04:22 +00001234
Lang Hamesf41538d2009-06-02 16:53:25 +00001235 std::vector<LiveInterval*> newIs;
1236 if (!NewSpillFramework) {
1237 newIs = li_->addIntervalsForSpills(*sli, spillIs, loopInfo, *vrm_);
1238 } else {
1239 newIs = spiller_->spill(sli);
1240 }
Evan Chengc781a242009-05-03 18:32:42 +00001241 addStackInterval(sli, ls_, li_, mri_, *vrm_);
Evan Cheng3e172252008-06-20 21:45:16 +00001242 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
1243 spilled.insert(sli->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001244 }
1245
Lang Hames86511252009-09-04 20:41:11 +00001246 MachineInstrIndex earliestStart = earliestStartInterval->beginIndex();
Lang Hamesf41538d2009-06-02 16:53:25 +00001247
Bill Wendlingc3115a02009-08-22 20:30:53 +00001248 DEBUG(errs() << "\t\trolling back to: " << earliestStart << '\n');
Chris Lattnercbb56252004-11-18 02:42:27 +00001249
1250 // Scan handled in reverse order up to the earliest start of a
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001251 // spilled live interval and undo each one, restoring the state of
Chris Lattnercbb56252004-11-18 02:42:27 +00001252 // unhandled.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001253 while (!handled_.empty()) {
1254 LiveInterval* i = handled_.back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001255 // If this interval starts before t we are done.
Lang Hames86511252009-09-04 20:41:11 +00001256 if (i->beginIndex() < earliestStart)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001257 break;
Bill Wendlingc3115a02009-08-22 20:30:53 +00001258 DEBUG(errs() << "\t\t\tundo changes for: " << *i << '\n');
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001259 handled_.pop_back();
Chris Lattnercbb56252004-11-18 02:42:27 +00001260
1261 // When undoing a live interval allocation we must know if it is active or
Evan Cheng5b16cd22009-05-01 01:03:49 +00001262 // inactive to properly update regUse_ and the VirtRegMap.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001263 IntervalPtrs::iterator it;
Chris Lattnercbb56252004-11-18 02:42:27 +00001264 if ((it = FindIntervalInVector(active_, i)) != active_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001265 active_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001266 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001267 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001268 unhandled_.push(i);
Evan Cheng5b16cd22009-05-01 01:03:49 +00001269 delRegUse(vrm_->getPhys(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001270 vrm_->clearVirt(i->reg);
Chris Lattnercbb56252004-11-18 02:42:27 +00001271 } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001272 inactive_.erase(it);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001273 assert(!TargetRegisterInfo::isPhysicalRegister(i->reg));
Chris Lattnerffab4222006-02-23 06:44:17 +00001274 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001275 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +00001276 vrm_->clearVirt(i->reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001277 } else {
Dan Gohman6f0d0242008-02-10 18:45:23 +00001278 assert(TargetRegisterInfo::isVirtualRegister(i->reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001279 "Can only allocate virtual registers!");
1280 vrm_->clearVirt(i->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001281 unhandled_.push(i);
1282 }
Evan Cheng9aeaf752007-11-04 08:32:21 +00001283
Evan Cheng206d1852009-04-20 08:01:12 +00001284 DenseMap<unsigned, unsigned>::iterator ii = DowngradeMap.find(i->reg);
1285 if (ii == DowngradeMap.end())
1286 // It interval has a preference, it must be defined by a copy. Clear the
1287 // preference now since the source interval allocation may have been
1288 // undone as well.
Evan Cheng358dec52009-06-15 08:28:29 +00001289 mri_->setRegAllocationHint(i->reg, 0, 0);
Evan Cheng206d1852009-04-20 08:01:12 +00001290 else {
1291 UpgradeRegister(ii->second);
1292 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001293 }
1294
Chris Lattner19828d42004-11-18 03:49:30 +00001295 // Rewind the iterators in the active, inactive, and fixed lists back to the
1296 // point we reverted to.
1297 RevertVectorIteratorsTo(active_, earliestStart);
1298 RevertVectorIteratorsTo(inactive_, earliestStart);
1299 RevertVectorIteratorsTo(fixed_, earliestStart);
1300
Evan Cheng206d1852009-04-20 08:01:12 +00001301 // Scan the rest and undo each interval that expired after t and
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001302 // insert it in active (the next iteration of the algorithm will
1303 // put it in inactive if required)
Chris Lattnercbb56252004-11-18 02:42:27 +00001304 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
1305 LiveInterval *HI = handled_[i];
1306 if (!HI->expiredAt(earliestStart) &&
Lang Hames86511252009-09-04 20:41:11 +00001307 HI->expiredAt(cur->beginIndex())) {
Bill Wendlingc3115a02009-08-22 20:30:53 +00001308 DEBUG(errs() << "\t\t\tundo changes for: " << *HI << '\n');
Chris Lattnercbb56252004-11-18 02:42:27 +00001309 active_.push_back(std::make_pair(HI, HI->begin()));
Dan Gohman6f0d0242008-02-10 18:45:23 +00001310 assert(!TargetRegisterInfo::isPhysicalRegister(HI->reg));
Evan Cheng5b16cd22009-05-01 01:03:49 +00001311 addRegUse(vrm_->getPhys(HI->reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001312 }
1313 }
1314
Evan Cheng206d1852009-04-20 08:01:12 +00001315 // Merge added with unhandled.
1316 // This also update the NextReloadMap. That is, it adds mapping from a
1317 // register defined by a reload from SS to the next reload from SS in the
1318 // same basic block.
1319 MachineBasicBlock *LastReloadMBB = 0;
1320 LiveInterval *LastReload = 0;
1321 int LastReloadSS = VirtRegMap::NO_STACK_SLOT;
1322 std::sort(added.begin(), added.end(), LISorter());
1323 for (unsigned i = 0, e = added.size(); i != e; ++i) {
1324 LiveInterval *ReloadLi = added[i];
1325 if (ReloadLi->weight == HUGE_VALF &&
1326 li_->getApproximateInstructionCount(*ReloadLi) == 0) {
Lang Hames86511252009-09-04 20:41:11 +00001327 MachineInstrIndex ReloadIdx = ReloadLi->beginIndex();
Evan Cheng206d1852009-04-20 08:01:12 +00001328 MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx);
1329 int ReloadSS = vrm_->getStackSlot(ReloadLi->reg);
1330 if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) {
1331 // Last reload of same SS is in the same MBB. We want to try to
1332 // allocate both reloads the same register and make sure the reg
1333 // isn't clobbered in between if at all possible.
Lang Hames86511252009-09-04 20:41:11 +00001334 assert(LastReload->beginIndex() < ReloadIdx);
Evan Cheng206d1852009-04-20 08:01:12 +00001335 NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg));
1336 }
1337 LastReloadMBB = ReloadMBB;
1338 LastReload = ReloadLi;
1339 LastReloadSS = ReloadSS;
1340 }
1341 unhandled_.push(ReloadLi);
1342 }
1343}
1344
Evan Cheng358dec52009-06-15 08:28:29 +00001345unsigned RALinScan::getFreePhysReg(LiveInterval* cur,
1346 const TargetRegisterClass *RC,
Evan Cheng206d1852009-04-20 08:01:12 +00001347 unsigned MaxInactiveCount,
1348 SmallVector<unsigned, 256> &inactiveCounts,
1349 bool SkipDGRegs) {
1350 unsigned FreeReg = 0;
1351 unsigned FreeRegInactiveCount = 0;
1352
Evan Chengf9f1da12009-06-18 02:04:01 +00001353 std::pair<unsigned, unsigned> Hint = mri_->getRegAllocationHint(cur->reg);
1354 // Resolve second part of the hint (if possible) given the current allocation.
1355 unsigned physReg = Hint.second;
1356 if (physReg &&
1357 TargetRegisterInfo::isVirtualRegister(physReg) && vrm_->hasPhys(physReg))
1358 physReg = vrm_->getPhys(physReg);
1359
Evan Cheng358dec52009-06-15 08:28:29 +00001360 TargetRegisterClass::iterator I, E;
Evan Chengf9f1da12009-06-18 02:04:01 +00001361 tie(I, E) = tri_->getAllocationOrder(RC, Hint.first, physReg, *mf_);
Evan Cheng206d1852009-04-20 08:01:12 +00001362 assert(I != E && "No allocatable register in this register class!");
1363
1364 // Scan for the first available register.
1365 for (; I != E; ++I) {
1366 unsigned Reg = *I;
1367 // Ignore "downgraded" registers.
1368 if (SkipDGRegs && DowngradedRegs.count(Reg))
1369 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001370 if (isRegAvail(Reg)) {
Evan Cheng206d1852009-04-20 08:01:12 +00001371 FreeReg = Reg;
1372 if (FreeReg < inactiveCounts.size())
1373 FreeRegInactiveCount = inactiveCounts[FreeReg];
1374 else
1375 FreeRegInactiveCount = 0;
1376 break;
1377 }
1378 }
1379
1380 // If there are no free regs, or if this reg has the max inactive count,
1381 // return this register.
1382 if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount)
1383 return FreeReg;
Evan Cheng358dec52009-06-15 08:28:29 +00001384
Evan Cheng206d1852009-04-20 08:01:12 +00001385 // Continue scanning the registers, looking for the one with the highest
1386 // inactive count. Alkis found that this reduced register pressure very
1387 // slightly on X86 (in rev 1.94 of this file), though this should probably be
1388 // reevaluated now.
1389 for (; I != E; ++I) {
1390 unsigned Reg = *I;
1391 // Ignore "downgraded" registers.
1392 if (SkipDGRegs && DowngradedRegs.count(Reg))
1393 continue;
Evan Cheng5b16cd22009-05-01 01:03:49 +00001394 if (isRegAvail(Reg) && Reg < inactiveCounts.size() &&
Evan Cheng206d1852009-04-20 08:01:12 +00001395 FreeRegInactiveCount < inactiveCounts[Reg]) {
1396 FreeReg = Reg;
1397 FreeRegInactiveCount = inactiveCounts[Reg];
1398 if (FreeRegInactiveCount == MaxInactiveCount)
1399 break; // We found the one with the max inactive count.
1400 }
1401 }
1402
1403 return FreeReg;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +00001404}
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +00001405
Chris Lattnercbb56252004-11-18 02:42:27 +00001406/// getFreePhysReg - return a free physical register for this virtual register
1407/// interval if we have one, otherwise return 0.
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001408unsigned RALinScan::getFreePhysReg(LiveInterval *cur) {
Chris Lattnerfe424622008-02-26 22:08:41 +00001409 SmallVector<unsigned, 256> inactiveCounts;
Chris Lattnerf8355d92005-08-22 16:55:22 +00001410 unsigned MaxInactiveCount = 0;
1411
Evan Cheng841ee1a2008-09-18 22:38:47 +00001412 const TargetRegisterClass *RC = mri_->getRegClass(cur->reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001413 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
1414
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001415 for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end();
1416 i != e; ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +00001417 unsigned reg = i->first->reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001418 assert(TargetRegisterInfo::isVirtualRegister(reg) &&
Chris Lattnerc8b9f332004-11-18 06:01:45 +00001419 "Can only allocate virtual registers!");
Chris Lattnerb9805782005-08-23 22:27:31 +00001420
1421 // If this is not in a related reg class to the register we're allocating,
1422 // don't check it.
Evan Cheng841ee1a2008-09-18 22:38:47 +00001423 const TargetRegisterClass *RegRC = mri_->getRegClass(reg);
Chris Lattnerb9805782005-08-23 22:27:31 +00001424 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) {
1425 reg = vrm_->getPhys(reg);
Chris Lattnerfe424622008-02-26 22:08:41 +00001426 if (inactiveCounts.size() <= reg)
1427 inactiveCounts.resize(reg+1);
Chris Lattnerb9805782005-08-23 22:27:31 +00001428 ++inactiveCounts[reg];
1429 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]);
1430 }
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +00001431 }
1432
Evan Cheng20b0abc2007-04-17 20:32:26 +00001433 // If copy coalescer has assigned a "preferred" register, check if it's
Dale Johannesen86b49f82008-09-24 01:07:17 +00001434 // available first.
Evan Cheng90f95f82009-06-14 20:22:55 +00001435 unsigned Preference = vrm_->getRegAllocPref(cur->reg);
1436 if (Preference) {
Bill Wendlingc3115a02009-08-22 20:30:53 +00001437 DEBUG(errs() << "(preferred: " << tri_->getName(Preference) << ") ");
Evan Cheng90f95f82009-06-14 20:22:55 +00001438 if (isRegAvail(Preference) &&
1439 RC->contains(Preference))
1440 return Preference;
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001441 }
Evan Cheng20b0abc2007-04-17 20:32:26 +00001442
Evan Cheng206d1852009-04-20 08:01:12 +00001443 if (!DowngradedRegs.empty()) {
Evan Cheng358dec52009-06-15 08:28:29 +00001444 unsigned FreeReg = getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts,
Evan Cheng206d1852009-04-20 08:01:12 +00001445 true);
1446 if (FreeReg)
1447 return FreeReg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001448 }
Evan Cheng358dec52009-06-15 08:28:29 +00001449 return getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts, false);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001450}
1451
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001452FunctionPass* llvm::createLinearScanRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001453 return new RALinScan();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001454}