blob: f66400c535bceca933214d7adb93b481d31e8ece [file] [log] [blame]
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001//===-- RegAllocLinearScan.cpp - Linear Scan register allocator -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
Evan Cheng2638e1a2007-03-20 08:13:50 +000015#include "llvm/CodeGen/LiveVariables.h"
Chris Lattner3c3fe462005-09-21 04:19:09 +000016#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000017#include "PhysRegTracker.h"
18#include "VirtRegMap.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000019#include "llvm/Function.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000020#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/MachineInstr.h"
22#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000023#include "llvm/CodeGen/RegAllocRegistry.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000024#include "llvm/CodeGen/SSARegMap.h"
25#include "llvm/Target/MRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000026#include "llvm/Target/TargetMachine.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000027#include "llvm/ADT/EquivalenceClasses.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000028#include "llvm/ADT/Statistic.h"
29#include "llvm/ADT/STLExtras.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000030#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000031#include "llvm/Support/Compiler.h"
Alkis Evlogimenos843b1602004-02-15 10:24:21 +000032#include <algorithm>
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +000033#include <set>
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +000034#include <queue>
Duraid Madina30059612005-12-28 04:55:42 +000035#include <memory>
Jeff Cohen97af7512006-12-02 02:22:01 +000036#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000037using namespace llvm;
38
Chris Lattnercd3245a2006-12-19 22:41:21 +000039STATISTIC(NumIters , "Number of iterations performed");
40STATISTIC(NumBacktracks, "Number of times we had to backtrack");
41
42static RegisterRegAlloc
43linearscanRegAlloc("linearscan", " linear scan register allocator",
44 createLinearScanRegisterAllocator);
45
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000046namespace {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000047 static unsigned numIterations = 0;
48 static unsigned numIntervals = 0;
Alkis Evlogimenosc1560952004-07-04 17:23:35 +000049
Chris Lattnerf8c68f62006-06-28 22:17:39 +000050 struct VISIBILITY_HIDDEN RA : public MachineFunctionPass {
Chris Lattnercbb56252004-11-18 02:42:27 +000051 typedef std::pair<LiveInterval*, LiveInterval::iterator> IntervalPtr;
52 typedef std::vector<IntervalPtr> IntervalPtrs;
53 private:
Chris Lattnerb9805782005-08-23 22:27:31 +000054 /// RelatedRegClasses - This structure is built the first time a function is
55 /// compiled, and keeps track of which register classes have registers that
56 /// belong to multiple classes or have aliases that are in other classes.
57 EquivalenceClasses<const TargetRegisterClass*> RelatedRegClasses;
58 std::map<unsigned, const TargetRegisterClass*> OneClassForEachPhysReg;
59
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000060 MachineFunction* mf_;
61 const TargetMachine* tm_;
62 const MRegisterInfo* mri_;
63 LiveIntervals* li_;
Chris Lattnerb0f31bf2005-01-23 22:45:13 +000064 bool *PhysRegsUsed;
Chris Lattnercbb56252004-11-18 02:42:27 +000065
66 /// handled_ - Intervals are added to the handled_ set in the order of their
67 /// start value. This is uses for backtracking.
68 std::vector<LiveInterval*> handled_;
69
70 /// fixed_ - Intervals that correspond to machine registers.
71 ///
72 IntervalPtrs fixed_;
73
74 /// active_ - Intervals that are currently being processed, and which have a
75 /// live range active for the current point.
76 IntervalPtrs active_;
77
78 /// inactive_ - Intervals that are currently being processed, but which have
79 /// a hold at the current point.
80 IntervalPtrs inactive_;
81
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000082 typedef std::priority_queue<LiveInterval*,
Chris Lattnercbb56252004-11-18 02:42:27 +000083 std::vector<LiveInterval*>,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000084 greater_ptr<LiveInterval> > IntervalHeap;
85 IntervalHeap unhandled_;
86 std::auto_ptr<PhysRegTracker> prt_;
87 std::auto_ptr<VirtRegMap> vrm_;
88 std::auto_ptr<Spiller> spiller_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000089
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000090 public:
91 virtual const char* getPassName() const {
92 return "Linear Scan Register Allocator";
93 }
94
95 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000096 AU.addRequired<LiveIntervals>();
97 MachineFunctionPass::getAnalysisUsage(AU);
98 }
99
100 /// runOnMachineFunction - register allocate the whole function
101 bool runOnMachineFunction(MachineFunction&);
102
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000103 private:
104 /// linearScan - the linear scan algorithm
105 void linearScan();
106
Chris Lattnercbb56252004-11-18 02:42:27 +0000107 /// initIntervalSets - initialize the interval sets.
108 ///
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000109 void initIntervalSets();
110
Chris Lattnercbb56252004-11-18 02:42:27 +0000111 /// processActiveIntervals - expire old intervals and move non-overlapping
112 /// ones to the inactive list.
113 void processActiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000114
Chris Lattnercbb56252004-11-18 02:42:27 +0000115 /// processInactiveIntervals - expire old intervals and move overlapping
116 /// ones to the active list.
117 void processInactiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000118
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000119 /// assignRegOrStackSlotAtInterval - assign a register if one
120 /// is available, or spill.
121 void assignRegOrStackSlotAtInterval(LiveInterval* cur);
122
123 ///
124 /// register handling helpers
125 ///
126
Chris Lattnercbb56252004-11-18 02:42:27 +0000127 /// getFreePhysReg - return a free physical register for this virtual
128 /// register interval if we have one, otherwise return 0.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000129 unsigned getFreePhysReg(LiveInterval* cur);
130
131 /// assignVirt2StackSlot - assigns this virtual register to a
132 /// stack slot. returns the stack slot
133 int assignVirt2StackSlot(unsigned virtReg);
134
Chris Lattnerb9805782005-08-23 22:27:31 +0000135 void ComputeRelatedRegClasses();
136
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000137 template <typename ItTy>
138 void printIntervals(const char* const str, ItTy i, ItTy e) const {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000139 if (str) DOUT << str << " intervals:\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000140 for (; i != e; ++i) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000141 DOUT << "\t" << *i->first << " -> ";
Chris Lattnercbb56252004-11-18 02:42:27 +0000142 unsigned reg = i->first->reg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000143 if (MRegisterInfo::isVirtualRegister(reg)) {
144 reg = vrm_->getPhys(reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000145 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000146 DOUT << mri_->getName(reg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000147 }
148 }
149 };
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000150}
151
Chris Lattnerb9805782005-08-23 22:27:31 +0000152void RA::ComputeRelatedRegClasses() {
153 const MRegisterInfo &MRI = *mri_;
154
155 // First pass, add all reg classes to the union, and determine at least one
156 // reg class that each register is in.
157 bool HasAliases = false;
158 for (MRegisterInfo::regclass_iterator RCI = MRI.regclass_begin(),
159 E = MRI.regclass_end(); RCI != E; ++RCI) {
160 RelatedRegClasses.insert(*RCI);
161 for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end();
162 I != E; ++I) {
163 HasAliases = HasAliases || *MRI.getAliasSet(*I) != 0;
164
165 const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I];
166 if (PRC) {
167 // Already processed this register. Just make sure we know that
168 // multiple register classes share a register.
169 RelatedRegClasses.unionSets(PRC, *RCI);
170 } else {
171 PRC = *RCI;
172 }
173 }
174 }
175
176 // Second pass, now that we know conservatively what register classes each reg
177 // belongs to, add info about aliases. We don't need to do this for targets
178 // without register aliases.
179 if (HasAliases)
180 for (std::map<unsigned, const TargetRegisterClass*>::iterator
181 I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end();
182 I != E; ++I)
183 for (const unsigned *AS = MRI.getAliasSet(I->first); *AS; ++AS)
184 RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]);
185}
186
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000187bool RA::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000188 mf_ = &fn;
189 tm_ = &fn.getTarget();
190 mri_ = tm_->getRegisterInfo();
191 li_ = &getAnalysis<LiveIntervals>();
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000192
Chris Lattnerb9805782005-08-23 22:27:31 +0000193 // If this is the first function compiled, compute the related reg classes.
194 if (RelatedRegClasses.empty())
195 ComputeRelatedRegClasses();
196
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000197 PhysRegsUsed = new bool[mri_->getNumRegs()];
198 std::fill(PhysRegsUsed, PhysRegsUsed+mri_->getNumRegs(), false);
199 fn.setUsedPhysRegs(PhysRegsUsed);
200
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000201 if (!prt_.get()) prt_.reset(new PhysRegTracker(*mri_));
202 vrm_.reset(new VirtRegMap(*mf_));
203 if (!spiller_.get()) spiller_.reset(createSpiller());
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000204
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000205 initIntervalSets();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000206
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000207 linearScan();
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000208
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000209 // Rewrite spill code and update the PhysRegsUsed set.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000210 spiller_->runOnMachineFunction(*mf_, *vrm_);
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000211
Chris Lattner510a3ea2004-09-30 02:02:33 +0000212 vrm_.reset(); // Free the VirtRegMap
Chris Lattnercbb56252004-11-18 02:42:27 +0000213
214
215 while (!unhandled_.empty()) unhandled_.pop();
216 fixed_.clear();
217 active_.clear();
218 inactive_.clear();
219 handled_.clear();
220
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000221 return true;
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000222}
223
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000224/// initIntervalSets - initialize the interval sets.
225///
226void RA::initIntervalSets()
227{
228 assert(unhandled_.empty() && fixed_.empty() &&
229 active_.empty() && inactive_.empty() &&
230 "interval sets should be empty on initialization");
231
232 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000233 if (MRegisterInfo::isPhysicalRegister(i->second.reg)) {
234 PhysRegsUsed[i->second.reg] = true;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000235 fixed_.push_back(std::make_pair(&i->second, i->second.begin()));
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000236 } else
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000237 unhandled_.push(&i->second);
238 }
239}
240
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000241void RA::linearScan()
242{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000243 // linear scan algorithm
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000244 DOUT << "********** LINEAR SCAN **********\n";
245 DOUT << "********** Function: " << mf_->getFunction()->getName() << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000246
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000247 // DEBUG(printIntervals("unhandled", unhandled_.begin(), unhandled_.end()));
248 DEBUG(printIntervals("fixed", fixed_.begin(), fixed_.end()));
249 DEBUG(printIntervals("active", active_.begin(), active_.end()));
250 DEBUG(printIntervals("inactive", inactive_.begin(), inactive_.end()));
251
252 while (!unhandled_.empty()) {
253 // pick the interval with the earliest start point
254 LiveInterval* cur = unhandled_.top();
255 unhandled_.pop();
256 ++numIterations;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000257 DOUT << "\n*** CURRENT ***: " << *cur << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000258
Chris Lattnercbb56252004-11-18 02:42:27 +0000259 processActiveIntervals(cur->beginNumber());
260 processInactiveIntervals(cur->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000261
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000262 assert(MRegisterInfo::isVirtualRegister(cur->reg) &&
263 "Can only allocate virtual registers!");
Misha Brukmanedf128a2005-04-21 22:36:52 +0000264
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000265 // Allocating a virtual register. try to find a free
266 // physical register or spill an interval (possibly this one) in order to
267 // assign it one.
268 assignRegOrStackSlotAtInterval(cur);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000269
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000270 DEBUG(printIntervals("active", active_.begin(), active_.end()));
271 DEBUG(printIntervals("inactive", inactive_.begin(), inactive_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000272 }
273 numIntervals += li_->getNumIntervals();
Chris Lattner4c7e2272006-12-06 01:48:55 +0000274 NumIters += numIterations;
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000275
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000276 // expire any remaining active intervals
277 for (IntervalPtrs::reverse_iterator
278 i = active_.rbegin(); i != active_.rend(); ) {
Chris Lattnercbb56252004-11-18 02:42:27 +0000279 unsigned reg = i->first->reg;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000280 DOUT << "\tinterval " << *i->first << " expired\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000281 assert(MRegisterInfo::isVirtualRegister(reg) &&
282 "Can only allocate virtual registers!");
283 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000284 prt_->delRegUse(reg);
285 i = IntervalPtrs::reverse_iterator(active_.erase(i.base()-1));
286 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000287
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000288 // expire any remaining inactive intervals
289 for (IntervalPtrs::reverse_iterator
290 i = inactive_.rbegin(); i != inactive_.rend(); ) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000291 DOUT << "\tinterval " << *i->first << " expired\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000292 i = IntervalPtrs::reverse_iterator(inactive_.erase(i.base()-1));
293 }
Alkis Evlogimenosb7be1152004-01-13 20:42:08 +0000294
Evan Cheng9fc508f2007-02-16 09:05:02 +0000295 // A brute force way of adding live-ins to every BB.
Evan Chengb371f452007-02-19 21:49:54 +0000296 MachineFunction::iterator MBB = mf_->begin();
297 ++MBB; // Skip entry MBB.
298 for (MachineFunction::iterator E = mf_->end(); MBB != E; ++MBB) {
Evan Cheng9fc508f2007-02-16 09:05:02 +0000299 unsigned StartIdx = li_->getMBBStartIdx(MBB->getNumber());
300 for (IntervalPtrs::iterator i = fixed_.begin(), e = fixed_.end();
301 i != e; ++i)
302 if (i->first->liveAt(StartIdx))
303 MBB->addLiveIn(i->first->reg);
304
305 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
306 LiveInterval *HI = handled_[i];
Evan Chengbc025fb2007-02-25 09:39:02 +0000307 unsigned Reg = HI->reg;
308 if (!vrm_->hasStackSlot(Reg) && HI->liveAt(StartIdx)) {
309 assert(MRegisterInfo::isVirtualRegister(Reg));
310 Reg = vrm_->getPhys(Reg);
Evan Cheng9fc508f2007-02-16 09:05:02 +0000311 MBB->addLiveIn(Reg);
312 }
313 }
314 }
315
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000316 DOUT << *vrm_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000317}
318
Chris Lattnercbb56252004-11-18 02:42:27 +0000319/// processActiveIntervals - expire old intervals and move non-overlapping ones
320/// to the inactive list.
321void RA::processActiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000322{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000323 DOUT << "\tprocessing active intervals:\n";
Chris Lattner23b71c12004-11-18 01:29:39 +0000324
Chris Lattnercbb56252004-11-18 02:42:27 +0000325 for (unsigned i = 0, e = active_.size(); i != e; ++i) {
326 LiveInterval *Interval = active_[i].first;
327 LiveInterval::iterator IntervalPos = active_[i].second;
328 unsigned reg = Interval->reg;
Alkis Evlogimenosed543732004-09-01 22:52:29 +0000329
Chris Lattnercbb56252004-11-18 02:42:27 +0000330 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
331
332 if (IntervalPos == Interval->end()) { // Remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000333 DOUT << "\t\tinterval " << *Interval << " expired\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000334 assert(MRegisterInfo::isVirtualRegister(reg) &&
335 "Can only allocate virtual registers!");
336 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000337 prt_->delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000338
339 // Pop off the end of the list.
340 active_[i] = active_.back();
341 active_.pop_back();
342 --i; --e;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000343
Chris Lattnercbb56252004-11-18 02:42:27 +0000344 } else if (IntervalPos->start > CurPoint) {
345 // Move inactive intervals to inactive list.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000346 DOUT << "\t\tinterval " << *Interval << " inactive\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000347 assert(MRegisterInfo::isVirtualRegister(reg) &&
348 "Can only allocate virtual registers!");
349 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000350 prt_->delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000351 // add to inactive.
352 inactive_.push_back(std::make_pair(Interval, IntervalPos));
353
354 // Pop off the end of the list.
355 active_[i] = active_.back();
356 active_.pop_back();
357 --i; --e;
358 } else {
359 // Otherwise, just update the iterator position.
360 active_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000361 }
362 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000363}
364
Chris Lattnercbb56252004-11-18 02:42:27 +0000365/// processInactiveIntervals - expire old intervals and move overlapping
366/// ones to the active list.
367void RA::processInactiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000368{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000369 DOUT << "\tprocessing inactive intervals:\n";
Chris Lattner365b95f2004-11-18 04:13:02 +0000370
Chris Lattnercbb56252004-11-18 02:42:27 +0000371 for (unsigned i = 0, e = inactive_.size(); i != e; ++i) {
372 LiveInterval *Interval = inactive_[i].first;
373 LiveInterval::iterator IntervalPos = inactive_[i].second;
374 unsigned reg = Interval->reg;
Chris Lattner23b71c12004-11-18 01:29:39 +0000375
Chris Lattnercbb56252004-11-18 02:42:27 +0000376 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000377
Chris Lattnercbb56252004-11-18 02:42:27 +0000378 if (IntervalPos == Interval->end()) { // remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000379 DOUT << "\t\tinterval " << *Interval << " expired\n";
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000380
Chris Lattnercbb56252004-11-18 02:42:27 +0000381 // Pop off the end of the list.
382 inactive_[i] = inactive_.back();
383 inactive_.pop_back();
384 --i; --e;
385 } else if (IntervalPos->start <= CurPoint) {
386 // move re-activated intervals in active list
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000387 DOUT << "\t\tinterval " << *Interval << " active\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000388 assert(MRegisterInfo::isVirtualRegister(reg) &&
389 "Can only allocate virtual registers!");
390 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000391 prt_->addRegUse(reg);
392 // add to active
Chris Lattnercbb56252004-11-18 02:42:27 +0000393 active_.push_back(std::make_pair(Interval, IntervalPos));
394
395 // Pop off the end of the list.
396 inactive_[i] = inactive_.back();
397 inactive_.pop_back();
398 --i; --e;
399 } else {
400 // Otherwise, just update the iterator position.
401 inactive_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000402 }
403 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000404}
405
Chris Lattnercbb56252004-11-18 02:42:27 +0000406/// updateSpillWeights - updates the spill weights of the specifed physical
407/// register and its weight.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000408static void updateSpillWeights(std::vector<float> &Weights,
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000409 unsigned reg, float weight,
410 const MRegisterInfo *MRI) {
411 Weights[reg] += weight;
412 for (const unsigned* as = MRI->getAliasSet(reg); *as; ++as)
413 Weights[*as] += weight;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000414}
415
Chris Lattnercbb56252004-11-18 02:42:27 +0000416static RA::IntervalPtrs::iterator FindIntervalInVector(RA::IntervalPtrs &IP,
417 LiveInterval *LI) {
418 for (RA::IntervalPtrs::iterator I = IP.begin(), E = IP.end(); I != E; ++I)
419 if (I->first == LI) return I;
420 return IP.end();
421}
422
Chris Lattner19828d42004-11-18 03:49:30 +0000423static void RevertVectorIteratorsTo(RA::IntervalPtrs &V, unsigned Point) {
424 for (unsigned i = 0, e = V.size(); i != e; ++i) {
425 RA::IntervalPtr &IP = V[i];
426 LiveInterval::iterator I = std::upper_bound(IP.first->begin(),
427 IP.second, Point);
428 if (I != IP.first->begin()) --I;
429 IP.second = I;
430 }
431}
Chris Lattnercbb56252004-11-18 02:42:27 +0000432
Chris Lattnercbb56252004-11-18 02:42:27 +0000433/// assignRegOrStackSlotAtInterval - assign a register if one is available, or
434/// spill.
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +0000435void RA::assignRegOrStackSlotAtInterval(LiveInterval* cur)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000436{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000437 DOUT << "\tallocating current interval: ";
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000438
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000439 PhysRegTracker backupPrt = *prt_;
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000440
Chris Lattnera6c17502005-08-22 20:20:42 +0000441 std::vector<std::pair<unsigned, float> > SpillWeightsToAdd;
Chris Lattner365b95f2004-11-18 04:13:02 +0000442 unsigned StartPosition = cur->beginNumber();
Chris Lattnerb9805782005-08-23 22:27:31 +0000443 const TargetRegisterClass *RC = mf_->getSSARegMap()->getRegClass(cur->reg);
444 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
445
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000446 // for every interval in inactive we overlap with, mark the
Chris Lattnera6c17502005-08-22 20:20:42 +0000447 // register as not free and update spill weights.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000448 for (IntervalPtrs::const_iterator i = inactive_.begin(),
449 e = inactive_.end(); i != e; ++i) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000450 unsigned Reg = i->first->reg;
451 assert(MRegisterInfo::isVirtualRegister(Reg) &&
452 "Can only allocate virtual registers!");
453 const TargetRegisterClass *RegRC = mf_->getSSARegMap()->getRegClass(Reg);
454 // If this is not in a related reg class to the register we're allocating,
455 // don't check it.
456 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
457 cur->overlapsFrom(*i->first, i->second-1)) {
458 Reg = vrm_->getPhys(Reg);
459 prt_->addRegUse(Reg);
460 SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000461 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000462 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000463
464 // Speculatively check to see if we can get a register right now. If not,
465 // we know we won't be able to by adding more constraints. If so, we can
466 // check to see if it is valid. Doing an exhaustive search of the fixed_ list
467 // is very bad (it contains all callee clobbered registers for any functions
468 // with a call), so we want to avoid doing that if possible.
469 unsigned physReg = getFreePhysReg(cur);
470 if (physReg) {
471 // We got a register. However, if it's in the fixed_ list, we might
Chris Lattnere836ad62005-08-30 21:03:36 +0000472 // conflict with it. Check to see if we conflict with it or any of its
473 // aliases.
474 std::set<unsigned> RegAliases;
475 for (const unsigned *AS = mri_->getAliasSet(physReg); *AS; ++AS)
476 RegAliases.insert(*AS);
477
Chris Lattnera411cbc2005-08-22 20:59:30 +0000478 bool ConflictsWithFixed = false;
479 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
Jim Laskeye719d9f2006-10-24 14:35:25 +0000480 IntervalPtr &IP = fixed_[i];
481 if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000482 // Okay, this reg is on the fixed list. Check to see if we actually
483 // conflict.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000484 LiveInterval *I = IP.first;
485 if (I->endNumber() > StartPosition) {
486 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
487 IP.second = II;
488 if (II != I->begin() && II->start > StartPosition)
489 --II;
Chris Lattnere836ad62005-08-30 21:03:36 +0000490 if (cur->overlapsFrom(*I, II)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000491 ConflictsWithFixed = true;
Chris Lattnere836ad62005-08-30 21:03:36 +0000492 break;
493 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000494 }
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000495 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000496 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000497
498 // Okay, the register picked by our speculative getFreePhysReg call turned
499 // out to be in use. Actually add all of the conflicting fixed registers to
500 // prt so we can do an accurate query.
501 if (ConflictsWithFixed) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000502 // For every interval in fixed we overlap with, mark the register as not
503 // free and update spill weights.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000504 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
505 IntervalPtr &IP = fixed_[i];
506 LiveInterval *I = IP.first;
Chris Lattnerb9805782005-08-23 22:27:31 +0000507
508 const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg];
509 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
510 I->endNumber() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000511 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
512 IP.second = II;
513 if (II != I->begin() && II->start > StartPosition)
514 --II;
515 if (cur->overlapsFrom(*I, II)) {
516 unsigned reg = I->reg;
517 prt_->addRegUse(reg);
518 SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight));
519 }
520 }
521 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000522
Chris Lattnera411cbc2005-08-22 20:59:30 +0000523 // Using the newly updated prt_ object, which includes conflicts in the
524 // future, see if there are any registers available.
525 physReg = getFreePhysReg(cur);
526 }
527 }
528
Chris Lattnera6c17502005-08-22 20:20:42 +0000529 // Restore the physical register tracker, removing information about the
530 // future.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000531 *prt_ = backupPrt;
Chris Lattnera6c17502005-08-22 20:20:42 +0000532
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000533 // if we find a free register, we are done: assign this virtual to
534 // the free physical register and add this interval to the active
535 // list.
536 if (physReg) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000537 DOUT << mri_->getName(physReg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000538 vrm_->assignVirt2Phys(cur->reg, physReg);
539 prt_->addRegUse(physReg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000540 active_.push_back(std::make_pair(cur, cur->begin()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000541 handled_.push_back(cur);
542 return;
543 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000544 DOUT << "no free registers\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000545
Chris Lattnera6c17502005-08-22 20:20:42 +0000546 // Compile the spill weights into an array that is better for scanning.
547 std::vector<float> SpillWeights(mri_->getNumRegs(), 0.0);
548 for (std::vector<std::pair<unsigned, float> >::iterator
549 I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I)
550 updateSpillWeights(SpillWeights, I->first, I->second, mri_);
551
552 // for each interval in active, update spill weights.
553 for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
554 i != e; ++i) {
555 unsigned reg = i->first->reg;
556 assert(MRegisterInfo::isVirtualRegister(reg) &&
557 "Can only allocate virtual registers!");
558 reg = vrm_->getPhys(reg);
559 updateSpillWeights(SpillWeights, reg, i->first->weight, mri_);
560 }
561
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000562 DOUT << "\tassigning stack slot at interval "<< *cur << ":\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000563
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000564 // Find a register to spill.
Jim Laskey7902c752006-11-07 12:25:45 +0000565 float minWeight = HUGE_VALF;
Evan Cheng20b0abc2007-04-17 20:32:26 +0000566 unsigned minReg = cur->preference; // Try the preferred register first.
567
568 if (!minReg || SpillWeights[minReg] == HUGE_VALF)
569 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
570 e = RC->allocation_order_end(*mf_); i != e; ++i) {
571 unsigned reg = *i;
572 if (minWeight > SpillWeights[reg]) {
573 minWeight = SpillWeights[reg];
574 minReg = reg;
575 }
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +0000576 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000577
578 // If we didn't find a register that is spillable, try aliases?
Evan Cheng3b6d56c2006-05-12 19:07:46 +0000579 if (!minReg) {
580 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
581 e = RC->allocation_order_end(*mf_); i != e; ++i) {
582 unsigned reg = *i;
583 // No need to worry about if the alias register size < regsize of RC.
584 // We are going to spill all registers that alias it anyway.
585 for (const unsigned* as = mri_->getAliasSet(reg); *as; ++as) {
586 if (minWeight > SpillWeights[*as]) {
587 minWeight = SpillWeights[*as];
588 minReg = *as;
589 }
590 }
591 }
592
593 // All registers must have inf weight. Just grab one!
594 if (!minReg)
595 minReg = *RC->allocation_order_begin(*mf_);
596 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000597
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000598 DOUT << "\t\tregister with min weight: "
599 << mri_->getName(minReg) << " (" << minWeight << ")\n";
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +0000600
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000601 // if the current has the minimum weight, we need to spill it and
602 // add any added intervals back to unhandled, and restart
603 // linearscan.
Jim Laskey7902c752006-11-07 12:25:45 +0000604 if (cur->weight != HUGE_VALF && cur->weight <= minWeight) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000605 DOUT << "\t\t\tspilling(c): " << *cur << '\n';
Evan Cheng2638e1a2007-03-20 08:13:50 +0000606 // if the current interval is re-materializable, remember so and don't
607 // assign it a spill slot.
608 if (cur->remat)
609 vrm_->setVirtIsReMaterialized(cur->reg, cur->remat);
610 int slot = cur->remat ? vrm_->assignVirtReMatId(cur->reg)
611 : vrm_->assignVirt2StackSlot(cur->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000612 std::vector<LiveInterval*> added =
613 li_->addIntervalsForSpills(*cur, *vrm_, slot);
614 if (added.empty())
615 return; // Early exit if all spills were folded.
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +0000616
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000617 // Merge added with unhandled. Note that we know that
618 // addIntervalsForSpills returns intervals sorted by their starting
619 // point.
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +0000620 for (unsigned i = 0, e = added.size(); i != e; ++i)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000621 unhandled_.push(added[i]);
622 return;
623 }
624
Chris Lattner19828d42004-11-18 03:49:30 +0000625 ++NumBacktracks;
626
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000627 // push the current interval back to unhandled since we are going
628 // to re-run at least this iteration. Since we didn't modify it it
629 // should go back right in the front of the list
630 unhandled_.push(cur);
631
632 // otherwise we spill all intervals aliasing the register with
633 // minimum weight, rollback to the interval with the earliest
634 // start point and let the linear scan algorithm run again
635 std::vector<LiveInterval*> added;
636 assert(MRegisterInfo::isPhysicalRegister(minReg) &&
637 "did not choose a register to spill?");
Evan Cheng2638e1a2007-03-20 08:13:50 +0000638 BitVector toSpill(mri_->getNumRegs());
Chris Lattner19828d42004-11-18 03:49:30 +0000639
640 // We are going to spill minReg and all its aliases.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000641 toSpill[minReg] = true;
642 for (const unsigned* as = mri_->getAliasSet(minReg); *as; ++as)
643 toSpill[*as] = true;
644
645 // the earliest start of a spilled interval indicates up to where
646 // in handled we need to roll back
Chris Lattner23b71c12004-11-18 01:29:39 +0000647 unsigned earliestStart = cur->beginNumber();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000648
649 // set of spilled vregs (used later to rollback properly)
650 std::set<unsigned> spilled;
651
Chris Lattner19828d42004-11-18 03:49:30 +0000652 // spill live intervals of virtual regs mapped to the physical register we
653 // want to clear (and its aliases). We only spill those that overlap with the
654 // current interval as the rest do not affect its allocation. we also keep
655 // track of the earliest start of all spilled live intervals since this will
656 // mark our rollback point.
657 for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +0000658 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000659 if (//MRegisterInfo::isVirtualRegister(reg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000660 toSpill[vrm_->getPhys(reg)] &&
Chris Lattner19828d42004-11-18 03:49:30 +0000661 cur->overlapsFrom(*i->first, i->second)) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000662 DOUT << "\t\t\tspilling(a): " << *i->first << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000663 earliestStart = std::min(earliestStart, i->first->beginNumber());
Evan Cheng2638e1a2007-03-20 08:13:50 +0000664 if (i->first->remat)
665 vrm_->setVirtIsReMaterialized(reg, i->first->remat);
666 int slot = i->first->remat ? vrm_->assignVirtReMatId(reg)
667 : vrm_->assignVirt2StackSlot(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000668 std::vector<LiveInterval*> newIs =
Chris Lattnercbb56252004-11-18 02:42:27 +0000669 li_->addIntervalsForSpills(*i->first, *vrm_, slot);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000670 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
671 spilled.insert(reg);
672 }
673 }
Chris Lattner19828d42004-11-18 03:49:30 +0000674 for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){
Chris Lattnercbb56252004-11-18 02:42:27 +0000675 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000676 if (//MRegisterInfo::isVirtualRegister(reg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000677 toSpill[vrm_->getPhys(reg)] &&
Chris Lattner19828d42004-11-18 03:49:30 +0000678 cur->overlapsFrom(*i->first, i->second-1)) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000679 DOUT << "\t\t\tspilling(i): " << *i->first << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000680 earliestStart = std::min(earliestStart, i->first->beginNumber());
Evan Cheng2638e1a2007-03-20 08:13:50 +0000681 if (i->first->remat)
682 vrm_->setVirtIsReMaterialized(reg, i->first->remat);
683 int slot = i->first->remat ? vrm_->assignVirtReMatId(reg)
684 : vrm_->assignVirt2StackSlot(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000685 std::vector<LiveInterval*> newIs =
Chris Lattnercbb56252004-11-18 02:42:27 +0000686 li_->addIntervalsForSpills(*i->first, *vrm_, slot);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000687 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
688 spilled.insert(reg);
689 }
690 }
691
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000692 DOUT << "\t\trolling back to: " << earliestStart << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000693
694 // Scan handled in reverse order up to the earliest start of a
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000695 // spilled live interval and undo each one, restoring the state of
Chris Lattnercbb56252004-11-18 02:42:27 +0000696 // unhandled.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000697 while (!handled_.empty()) {
698 LiveInterval* i = handled_.back();
Chris Lattnercbb56252004-11-18 02:42:27 +0000699 // If this interval starts before t we are done.
Chris Lattner23b71c12004-11-18 01:29:39 +0000700 if (i->beginNumber() < earliestStart)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000701 break;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000702 DOUT << "\t\t\tundo changes for: " << *i << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000703 handled_.pop_back();
Chris Lattnercbb56252004-11-18 02:42:27 +0000704
705 // When undoing a live interval allocation we must know if it is active or
706 // inactive to properly update the PhysRegTracker and the VirtRegMap.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000707 IntervalPtrs::iterator it;
Chris Lattnercbb56252004-11-18 02:42:27 +0000708 if ((it = FindIntervalInVector(active_, i)) != active_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000709 active_.erase(it);
Chris Lattnerffab4222006-02-23 06:44:17 +0000710 assert(!MRegisterInfo::isPhysicalRegister(i->reg));
711 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000712 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +0000713 prt_->delRegUse(vrm_->getPhys(i->reg));
714 vrm_->clearVirt(i->reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000715 } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000716 inactive_.erase(it);
Chris Lattnerffab4222006-02-23 06:44:17 +0000717 assert(!MRegisterInfo::isPhysicalRegister(i->reg));
718 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000719 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +0000720 vrm_->clearVirt(i->reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000721 } else {
722 assert(MRegisterInfo::isVirtualRegister(i->reg) &&
723 "Can only allocate virtual registers!");
724 vrm_->clearVirt(i->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000725 unhandled_.push(i);
726 }
727 }
728
Chris Lattner19828d42004-11-18 03:49:30 +0000729 // Rewind the iterators in the active, inactive, and fixed lists back to the
730 // point we reverted to.
731 RevertVectorIteratorsTo(active_, earliestStart);
732 RevertVectorIteratorsTo(inactive_, earliestStart);
733 RevertVectorIteratorsTo(fixed_, earliestStart);
734
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000735 // scan the rest and undo each interval that expired after t and
736 // insert it in active (the next iteration of the algorithm will
737 // put it in inactive if required)
Chris Lattnercbb56252004-11-18 02:42:27 +0000738 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
739 LiveInterval *HI = handled_[i];
740 if (!HI->expiredAt(earliestStart) &&
741 HI->expiredAt(cur->beginNumber())) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000742 DOUT << "\t\t\tundo changes for: " << *HI << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000743 active_.push_back(std::make_pair(HI, HI->begin()));
Chris Lattnerffab4222006-02-23 06:44:17 +0000744 assert(!MRegisterInfo::isPhysicalRegister(HI->reg));
745 prt_->addRegUse(vrm_->getPhys(HI->reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000746 }
747 }
748
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000749 // merge added with unhandled
750 for (unsigned i = 0, e = added.size(); i != e; ++i)
751 unhandled_.push(added[i]);
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000752}
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +0000753
Chris Lattnercbb56252004-11-18 02:42:27 +0000754/// getFreePhysReg - return a free physical register for this virtual register
755/// interval if we have one, otherwise return 0.
Chris Lattnerffab4222006-02-23 06:44:17 +0000756unsigned RA::getFreePhysReg(LiveInterval *cur) {
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000757 std::vector<unsigned> inactiveCounts(mri_->getNumRegs(), 0);
Chris Lattnerf8355d92005-08-22 16:55:22 +0000758 unsigned MaxInactiveCount = 0;
759
Chris Lattnerb9805782005-08-23 22:27:31 +0000760 const TargetRegisterClass *RC = mf_->getSSARegMap()->getRegClass(cur->reg);
761 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
762
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000763 for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end();
764 i != e; ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +0000765 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000766 assert(MRegisterInfo::isVirtualRegister(reg) &&
767 "Can only allocate virtual registers!");
Chris Lattnerb9805782005-08-23 22:27:31 +0000768
769 // If this is not in a related reg class to the register we're allocating,
770 // don't check it.
771 const TargetRegisterClass *RegRC = mf_->getSSARegMap()->getRegClass(reg);
772 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) {
773 reg = vrm_->getPhys(reg);
774 ++inactiveCounts[reg];
775 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]);
776 }
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000777 }
778
Chris Lattnerf8355d92005-08-22 16:55:22 +0000779 unsigned FreeReg = 0;
780 unsigned FreeRegInactiveCount = 0;
Evan Cheng20b0abc2007-04-17 20:32:26 +0000781
782 // If copy coalescer has assigned a "preferred" register, check if it's
783 // available first.
784 if (cur->preference)
785 if (prt_->isRegAvail(cur->preference)) {
786 DOUT << "\t\tassigned the preferred register: "
787 << mri_->getName(cur->preference) << "\n";
788 return cur->preference;
789 } else
790 DOUT << "\t\tunable to assign the preferred register: "
791 << mri_->getName(cur->preference) << "\n";
792
Chris Lattnerf8355d92005-08-22 16:55:22 +0000793 // Scan for the first available register.
Evan Cheng92efbfc2007-04-25 07:18:20 +0000794 TargetRegisterClass::iterator I = RC->allocation_order_begin(*mf_);
795 TargetRegisterClass::iterator E = RC->allocation_order_end(*mf_);
Chris Lattnerf8355d92005-08-22 16:55:22 +0000796 for (; I != E; ++I)
797 if (prt_->isRegAvail(*I)) {
798 FreeReg = *I;
799 FreeRegInactiveCount = inactiveCounts[FreeReg];
800 break;
801 }
802
803 // If there are no free regs, or if this reg has the max inactive count,
804 // return this register.
805 if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount) return FreeReg;
806
807 // Continue scanning the registers, looking for the one with the highest
808 // inactive count. Alkis found that this reduced register pressure very
809 // slightly on X86 (in rev 1.94 of this file), though this should probably be
810 // reevaluated now.
811 for (; I != E; ++I) {
812 unsigned Reg = *I;
813 if (prt_->isRegAvail(Reg) && FreeRegInactiveCount < inactiveCounts[Reg]) {
814 FreeReg = Reg;
815 FreeRegInactiveCount = inactiveCounts[Reg];
816 if (FreeRegInactiveCount == MaxInactiveCount)
817 break; // We found the one with the max inactive count.
818 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000819 }
Chris Lattnerf8355d92005-08-22 16:55:22 +0000820
821 return FreeReg;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000822}
823
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000824FunctionPass* llvm::createLinearScanRegisterAllocator() {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000825 return new RA();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000826}