blob: 8a9eb3de0b505fc10e55bed142547b04977a7cc3 [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"
Chris Lattner3c3fe462005-09-21 04:19:09 +000015#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chris Lattnerb9805782005-08-23 22:27:31 +000016#include "PhysRegTracker.h"
17#include "VirtRegMap.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000018#include "llvm/Function.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000019#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/MachineInstr.h"
21#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000022#include "llvm/CodeGen/RegAllocRegistry.h"
David Greene2c17c4d2007-09-06 16:18:45 +000023#include "llvm/CodeGen/RegisterCoalescer.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 {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000047 struct VISIBILITY_HIDDEN RALinScan : public MachineFunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000048 static char ID;
Bill Wendlinge23e00d2007-05-08 19:02:46 +000049 RALinScan() : MachineFunctionPass((intptr_t)&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000050
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 Lattnercbb56252004-11-18 02:42:27 +000064
65 /// handled_ - Intervals are added to the handled_ set in the order of their
66 /// start value. This is uses for backtracking.
67 std::vector<LiveInterval*> handled_;
68
69 /// fixed_ - Intervals that correspond to machine registers.
70 ///
71 IntervalPtrs fixed_;
72
73 /// active_ - Intervals that are currently being processed, and which have a
74 /// live range active for the current point.
75 IntervalPtrs active_;
76
77 /// inactive_ - Intervals that are currently being processed, but which have
78 /// a hold at the current point.
79 IntervalPtrs inactive_;
80
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000081 typedef std::priority_queue<LiveInterval*,
Chris Lattnercbb56252004-11-18 02:42:27 +000082 std::vector<LiveInterval*>,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000083 greater_ptr<LiveInterval> > IntervalHeap;
84 IntervalHeap unhandled_;
85 std::auto_ptr<PhysRegTracker> prt_;
86 std::auto_ptr<VirtRegMap> vrm_;
87 std::auto_ptr<Spiller> spiller_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000088
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000089 public:
90 virtual const char* getPassName() const {
91 return "Linear Scan Register Allocator";
92 }
93
94 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000095 AU.addRequired<LiveIntervals>();
David Greene2c17c4d2007-09-06 16:18:45 +000096 // Make sure PassManager knows which analyses to make available
97 // to coalescing and which analyses coalescing invalidates.
98 AU.addRequiredTransitive<RegisterCoalescer>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000099 MachineFunctionPass::getAnalysisUsage(AU);
100 }
101
102 /// runOnMachineFunction - register allocate the whole function
103 bool runOnMachineFunction(MachineFunction&);
104
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000105 private:
106 /// linearScan - the linear scan algorithm
107 void linearScan();
108
Chris Lattnercbb56252004-11-18 02:42:27 +0000109 /// initIntervalSets - initialize the interval sets.
110 ///
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000111 void initIntervalSets();
112
Chris Lattnercbb56252004-11-18 02:42:27 +0000113 /// processActiveIntervals - expire old intervals and move non-overlapping
114 /// ones to the inactive list.
115 void processActiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000116
Chris Lattnercbb56252004-11-18 02:42:27 +0000117 /// processInactiveIntervals - expire old intervals and move overlapping
118 /// ones to the active list.
119 void processInactiveIntervals(unsigned CurPoint);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000120
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000121 /// assignRegOrStackSlotAtInterval - assign a register if one
122 /// is available, or spill.
123 void assignRegOrStackSlotAtInterval(LiveInterval* cur);
124
125 ///
126 /// register handling helpers
127 ///
128
Chris Lattnercbb56252004-11-18 02:42:27 +0000129 /// getFreePhysReg - return a free physical register for this virtual
130 /// register interval if we have one, otherwise return 0.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000131 unsigned getFreePhysReg(LiveInterval* cur);
132
133 /// assignVirt2StackSlot - assigns this virtual register to a
134 /// stack slot. returns the stack slot
135 int assignVirt2StackSlot(unsigned virtReg);
136
Chris Lattnerb9805782005-08-23 22:27:31 +0000137 void ComputeRelatedRegClasses();
138
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000139 template <typename ItTy>
140 void printIntervals(const char* const str, ItTy i, ItTy e) const {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000141 if (str) DOUT << str << " intervals:\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000142 for (; i != e; ++i) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000143 DOUT << "\t" << *i->first << " -> ";
Chris Lattnercbb56252004-11-18 02:42:27 +0000144 unsigned reg = i->first->reg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000145 if (MRegisterInfo::isVirtualRegister(reg)) {
146 reg = vrm_->getPhys(reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000147 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000148 DOUT << mri_->getName(reg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000149 }
150 }
151 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000152 char RALinScan::ID = 0;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000153}
154
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000155void RALinScan::ComputeRelatedRegClasses() {
Chris Lattnerb9805782005-08-23 22:27:31 +0000156 const MRegisterInfo &MRI = *mri_;
157
158 // First pass, add all reg classes to the union, and determine at least one
159 // reg class that each register is in.
160 bool HasAliases = false;
161 for (MRegisterInfo::regclass_iterator RCI = MRI.regclass_begin(),
162 E = MRI.regclass_end(); RCI != E; ++RCI) {
163 RelatedRegClasses.insert(*RCI);
164 for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end();
165 I != E; ++I) {
166 HasAliases = HasAliases || *MRI.getAliasSet(*I) != 0;
167
168 const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I];
169 if (PRC) {
170 // Already processed this register. Just make sure we know that
171 // multiple register classes share a register.
172 RelatedRegClasses.unionSets(PRC, *RCI);
173 } else {
174 PRC = *RCI;
175 }
176 }
177 }
178
179 // Second pass, now that we know conservatively what register classes each reg
180 // belongs to, add info about aliases. We don't need to do this for targets
181 // without register aliases.
182 if (HasAliases)
183 for (std::map<unsigned, const TargetRegisterClass*>::iterator
184 I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end();
185 I != E; ++I)
186 for (const unsigned *AS = MRI.getAliasSet(I->first); *AS; ++AS)
187 RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]);
188}
189
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000190bool RALinScan::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000191 mf_ = &fn;
192 tm_ = &fn.getTarget();
193 mri_ = tm_->getRegisterInfo();
194 li_ = &getAnalysis<LiveIntervals>();
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000195
David Greene2c17c4d2007-09-06 16:18:45 +0000196 // We don't run the coalescer here because we have no reason to
197 // interact with it. If the coalescer requires interaction, it
198 // won't do anything. If it doesn't require interaction, we assume
199 // it was run as a separate pass.
200
Chris Lattnerb9805782005-08-23 22:27:31 +0000201 // If this is the first function compiled, compute the related reg classes.
202 if (RelatedRegClasses.empty())
203 ComputeRelatedRegClasses();
204
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000205 if (!prt_.get()) prt_.reset(new PhysRegTracker(*mri_));
206 vrm_.reset(new VirtRegMap(*mf_));
207 if (!spiller_.get()) spiller_.reset(createSpiller());
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000208
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000209 initIntervalSets();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000210
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000211 linearScan();
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000212
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000213 // Rewrite spill code and update the PhysRegsUsed set.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000214 spiller_->runOnMachineFunction(*mf_, *vrm_);
Chris Lattner510a3ea2004-09-30 02:02:33 +0000215 vrm_.reset(); // Free the VirtRegMap
Chris Lattnercbb56252004-11-18 02:42:27 +0000216
Chris Lattnercbb56252004-11-18 02:42:27 +0000217 while (!unhandled_.empty()) unhandled_.pop();
218 fixed_.clear();
219 active_.clear();
220 inactive_.clear();
221 handled_.clear();
222
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000223 return true;
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000224}
225
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000226/// initIntervalSets - initialize the interval sets.
227///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000228void RALinScan::initIntervalSets()
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000229{
230 assert(unhandled_.empty() && fixed_.empty() &&
231 active_.empty() && inactive_.empty() &&
232 "interval sets should be empty on initialization");
233
234 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000235 if (MRegisterInfo::isPhysicalRegister(i->second.reg)) {
Evan Cheng6c087e52007-04-25 22:13:27 +0000236 mf_->setPhysRegUsed(i->second.reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000237 fixed_.push_back(std::make_pair(&i->second, i->second.begin()));
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000238 } else
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000239 unhandled_.push(&i->second);
240 }
241}
242
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000243void RALinScan::linearScan()
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000244{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000245 // linear scan algorithm
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000246 DOUT << "********** LINEAR SCAN **********\n";
247 DOUT << "********** Function: " << mf_->getFunction()->getName() << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000248
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000249 DEBUG(printIntervals("fixed", fixed_.begin(), fixed_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000250
251 while (!unhandled_.empty()) {
252 // pick the interval with the earliest start point
253 LiveInterval* cur = unhandled_.top();
254 unhandled_.pop();
Evan Cheng11923cc2007-10-16 21:09:14 +0000255 ++NumIters;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000256 DOUT << "\n*** CURRENT ***: " << *cur << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000257
Chris Lattnercbb56252004-11-18 02:42:27 +0000258 processActiveIntervals(cur->beginNumber());
259 processInactiveIntervals(cur->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000260
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000261 assert(MRegisterInfo::isVirtualRegister(cur->reg) &&
262 "Can only allocate virtual registers!");
Misha Brukmanedf128a2005-04-21 22:36:52 +0000263
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000264 // Allocating a virtual register. try to find a free
265 // physical register or spill an interval (possibly this one) in order to
266 // assign it one.
267 assignRegOrStackSlotAtInterval(cur);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000268
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000269 DEBUG(printIntervals("active", active_.begin(), active_.end()));
270 DEBUG(printIntervals("inactive", inactive_.begin(), inactive_.end()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000271 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000272
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000273 // expire any remaining active intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000274 while (!active_.empty()) {
275 IntervalPtr &IP = active_.back();
276 unsigned reg = IP.first->reg;
277 DOUT << "\tinterval " << *IP.first << " expired\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000278 assert(MRegisterInfo::isVirtualRegister(reg) &&
279 "Can only allocate virtual registers!");
280 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000281 prt_->delRegUse(reg);
Evan Cheng11923cc2007-10-16 21:09:14 +0000282 active_.pop_back();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000283 }
Alkis Evlogimenos7d629b52004-01-07 09:20:58 +0000284
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000285 // expire any remaining inactive intervals
Evan Cheng11923cc2007-10-16 21:09:14 +0000286 DEBUG(for (IntervalPtrs::reverse_iterator
287 i = inactive_.rbegin(); i != inactive_.rend(); )
288 DOUT << "\tinterval " << *i->first << " expired\n");
289 inactive_.clear();
Alkis Evlogimenosb7be1152004-01-13 20:42:08 +0000290
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000291 // Add live-ins to every BB except for entry.
292 MachineFunction::iterator EntryMBB = mf_->begin();
Evan Chenga5bfc972007-10-17 06:53:44 +0000293 SmallVector<MachineBasicBlock*, 8> LiveInMBBs;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000294 for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) {
295 const LiveInterval &cur = i->second;
296 unsigned Reg = 0;
297 if (MRegisterInfo::isPhysicalRegister(cur.reg))
298 Reg = i->second.reg;
299 else if (vrm_->isAssignedReg(cur.reg))
300 Reg = vrm_->getPhys(cur.reg);
301 if (!Reg)
302 continue;
303 for (LiveInterval::Ranges::const_iterator I = cur.begin(), E = cur.end();
304 I != E; ++I) {
305 const LiveRange &LR = *I;
Evan Cheng3f4b80e2007-10-17 02:12:22 +0000306 if (li_->findLiveInMBBs(LR, LiveInMBBs)) {
307 for (unsigned i = 0, e = LiveInMBBs.size(); i != e; ++i)
308 if (LiveInMBBs[i] != EntryMBB)
309 LiveInMBBs[i]->addLiveIn(Reg);
Evan Chenga5bfc972007-10-17 06:53:44 +0000310 LiveInMBBs.clear();
Evan Cheng9fc508f2007-02-16 09:05:02 +0000311 }
312 }
313 }
314
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000315 DOUT << *vrm_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000316}
317
Chris Lattnercbb56252004-11-18 02:42:27 +0000318/// processActiveIntervals - expire old intervals and move non-overlapping ones
319/// to the inactive list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000320void RALinScan::processActiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000321{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000322 DOUT << "\tprocessing active intervals:\n";
Chris Lattner23b71c12004-11-18 01:29:39 +0000323
Chris Lattnercbb56252004-11-18 02:42:27 +0000324 for (unsigned i = 0, e = active_.size(); i != e; ++i) {
325 LiveInterval *Interval = active_[i].first;
326 LiveInterval::iterator IntervalPos = active_[i].second;
327 unsigned reg = Interval->reg;
Alkis Evlogimenosed543732004-09-01 22:52:29 +0000328
Chris Lattnercbb56252004-11-18 02:42:27 +0000329 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
330
331 if (IntervalPos == Interval->end()) { // Remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000332 DOUT << "\t\tinterval " << *Interval << " expired\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000333 assert(MRegisterInfo::isVirtualRegister(reg) &&
334 "Can only allocate virtual registers!");
335 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000336 prt_->delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000337
338 // Pop off the end of the list.
339 active_[i] = active_.back();
340 active_.pop_back();
341 --i; --e;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000342
Chris Lattnercbb56252004-11-18 02:42:27 +0000343 } else if (IntervalPos->start > CurPoint) {
344 // Move inactive intervals to inactive list.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000345 DOUT << "\t\tinterval " << *Interval << " inactive\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000346 assert(MRegisterInfo::isVirtualRegister(reg) &&
347 "Can only allocate virtual registers!");
348 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000349 prt_->delRegUse(reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000350 // add to inactive.
351 inactive_.push_back(std::make_pair(Interval, IntervalPos));
352
353 // Pop off the end of the list.
354 active_[i] = active_.back();
355 active_.pop_back();
356 --i; --e;
357 } else {
358 // Otherwise, just update the iterator position.
359 active_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000360 }
361 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000362}
363
Chris Lattnercbb56252004-11-18 02:42:27 +0000364/// processInactiveIntervals - expire old intervals and move overlapping
365/// ones to the active list.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000366void RALinScan::processInactiveIntervals(unsigned CurPoint)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000367{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000368 DOUT << "\tprocessing inactive intervals:\n";
Chris Lattner365b95f2004-11-18 04:13:02 +0000369
Chris Lattnercbb56252004-11-18 02:42:27 +0000370 for (unsigned i = 0, e = inactive_.size(); i != e; ++i) {
371 LiveInterval *Interval = inactive_[i].first;
372 LiveInterval::iterator IntervalPos = inactive_[i].second;
373 unsigned reg = Interval->reg;
Chris Lattner23b71c12004-11-18 01:29:39 +0000374
Chris Lattnercbb56252004-11-18 02:42:27 +0000375 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000376
Chris Lattnercbb56252004-11-18 02:42:27 +0000377 if (IntervalPos == Interval->end()) { // remove expired intervals.
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000378 DOUT << "\t\tinterval " << *Interval << " expired\n";
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000379
Chris Lattnercbb56252004-11-18 02:42:27 +0000380 // Pop off the end of the list.
381 inactive_[i] = inactive_.back();
382 inactive_.pop_back();
383 --i; --e;
384 } else if (IntervalPos->start <= CurPoint) {
385 // move re-activated intervals in active list
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000386 DOUT << "\t\tinterval " << *Interval << " active\n";
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000387 assert(MRegisterInfo::isVirtualRegister(reg) &&
388 "Can only allocate virtual registers!");
389 reg = vrm_->getPhys(reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000390 prt_->addRegUse(reg);
391 // add to active
Chris Lattnercbb56252004-11-18 02:42:27 +0000392 active_.push_back(std::make_pair(Interval, IntervalPos));
393
394 // Pop off the end of the list.
395 inactive_[i] = inactive_.back();
396 inactive_.pop_back();
397 --i; --e;
398 } else {
399 // Otherwise, just update the iterator position.
400 inactive_[i].second = IntervalPos;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000401 }
402 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000403}
404
Chris Lattnercbb56252004-11-18 02:42:27 +0000405/// updateSpillWeights - updates the spill weights of the specifed physical
406/// register and its weight.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000407static void updateSpillWeights(std::vector<float> &Weights,
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000408 unsigned reg, float weight,
409 const MRegisterInfo *MRI) {
410 Weights[reg] += weight;
411 for (const unsigned* as = MRI->getAliasSet(reg); *as; ++as)
412 Weights[*as] += weight;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000413}
414
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000415static
416RALinScan::IntervalPtrs::iterator
417FindIntervalInVector(RALinScan::IntervalPtrs &IP, LiveInterval *LI) {
418 for (RALinScan::IntervalPtrs::iterator I = IP.begin(), E = IP.end();
419 I != E; ++I)
Chris Lattnercbb56252004-11-18 02:42:27 +0000420 if (I->first == LI) return I;
421 return IP.end();
422}
423
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000424static void RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, unsigned Point){
Chris Lattner19828d42004-11-18 03:49:30 +0000425 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000426 RALinScan::IntervalPtr &IP = V[i];
Chris Lattner19828d42004-11-18 03:49:30 +0000427 LiveInterval::iterator I = std::upper_bound(IP.first->begin(),
428 IP.second, Point);
429 if (I != IP.first->begin()) --I;
430 IP.second = I;
431 }
432}
Chris Lattnercbb56252004-11-18 02:42:27 +0000433
Chris Lattnercbb56252004-11-18 02:42:27 +0000434/// assignRegOrStackSlotAtInterval - assign a register if one is available, or
435/// spill.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000436void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000437{
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000438 DOUT << "\tallocating current interval: ";
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000439
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000440 PhysRegTracker backupPrt = *prt_;
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000441
Chris Lattnera6c17502005-08-22 20:20:42 +0000442 std::vector<std::pair<unsigned, float> > SpillWeightsToAdd;
Chris Lattner365b95f2004-11-18 04:13:02 +0000443 unsigned StartPosition = cur->beginNumber();
Chris Lattnerb9805782005-08-23 22:27:31 +0000444 const TargetRegisterClass *RC = mf_->getSSARegMap()->getRegClass(cur->reg);
445 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
446
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000447 // for every interval in inactive we overlap with, mark the
Chris Lattnera6c17502005-08-22 20:20:42 +0000448 // register as not free and update spill weights.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000449 for (IntervalPtrs::const_iterator i = inactive_.begin(),
450 e = inactive_.end(); i != e; ++i) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000451 unsigned Reg = i->first->reg;
452 assert(MRegisterInfo::isVirtualRegister(Reg) &&
453 "Can only allocate virtual registers!");
454 const TargetRegisterClass *RegRC = mf_->getSSARegMap()->getRegClass(Reg);
455 // If this is not in a related reg class to the register we're allocating,
456 // don't check it.
457 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
458 cur->overlapsFrom(*i->first, i->second-1)) {
459 Reg = vrm_->getPhys(Reg);
460 prt_->addRegUse(Reg);
461 SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000462 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000463 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000464
465 // Speculatively check to see if we can get a register right now. If not,
466 // we know we won't be able to by adding more constraints. If so, we can
467 // check to see if it is valid. Doing an exhaustive search of the fixed_ list
468 // is very bad (it contains all callee clobbered registers for any functions
469 // with a call), so we want to avoid doing that if possible.
470 unsigned physReg = getFreePhysReg(cur);
471 if (physReg) {
472 // We got a register. However, if it's in the fixed_ list, we might
Chris Lattnere836ad62005-08-30 21:03:36 +0000473 // conflict with it. Check to see if we conflict with it or any of its
474 // aliases.
475 std::set<unsigned> RegAliases;
476 for (const unsigned *AS = mri_->getAliasSet(physReg); *AS; ++AS)
477 RegAliases.insert(*AS);
478
Chris Lattnera411cbc2005-08-22 20:59:30 +0000479 bool ConflictsWithFixed = false;
480 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
Jim Laskeye719d9f2006-10-24 14:35:25 +0000481 IntervalPtr &IP = fixed_[i];
482 if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000483 // Okay, this reg is on the fixed list. Check to see if we actually
484 // conflict.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000485 LiveInterval *I = IP.first;
486 if (I->endNumber() > StartPosition) {
487 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
488 IP.second = II;
489 if (II != I->begin() && II->start > StartPosition)
490 --II;
Chris Lattnere836ad62005-08-30 21:03:36 +0000491 if (cur->overlapsFrom(*I, II)) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000492 ConflictsWithFixed = true;
Chris Lattnere836ad62005-08-30 21:03:36 +0000493 break;
494 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000495 }
Chris Lattnerf348e3a2004-11-18 04:33:31 +0000496 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000497 }
Chris Lattnera411cbc2005-08-22 20:59:30 +0000498
499 // Okay, the register picked by our speculative getFreePhysReg call turned
500 // out to be in use. Actually add all of the conflicting fixed registers to
501 // prt so we can do an accurate query.
502 if (ConflictsWithFixed) {
Chris Lattnerb9805782005-08-23 22:27:31 +0000503 // For every interval in fixed we overlap with, mark the register as not
504 // free and update spill weights.
Chris Lattnera411cbc2005-08-22 20:59:30 +0000505 for (unsigned i = 0, e = fixed_.size(); i != e; ++i) {
506 IntervalPtr &IP = fixed_[i];
507 LiveInterval *I = IP.first;
Chris Lattnerb9805782005-08-23 22:27:31 +0000508
509 const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg];
510 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader &&
511 I->endNumber() > StartPosition) {
Chris Lattnera411cbc2005-08-22 20:59:30 +0000512 LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition);
513 IP.second = II;
514 if (II != I->begin() && II->start > StartPosition)
515 --II;
516 if (cur->overlapsFrom(*I, II)) {
517 unsigned reg = I->reg;
518 prt_->addRegUse(reg);
519 SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight));
520 }
521 }
522 }
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +0000523
Chris Lattnera411cbc2005-08-22 20:59:30 +0000524 // Using the newly updated prt_ object, which includes conflicts in the
525 // future, see if there are any registers available.
526 physReg = getFreePhysReg(cur);
527 }
528 }
529
Chris Lattnera6c17502005-08-22 20:20:42 +0000530 // Restore the physical register tracker, removing information about the
531 // future.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000532 *prt_ = backupPrt;
Chris Lattnera6c17502005-08-22 20:20:42 +0000533
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000534 // if we find a free register, we are done: assign this virtual to
535 // the free physical register and add this interval to the active
536 // list.
537 if (physReg) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000538 DOUT << mri_->getName(physReg) << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000539 vrm_->assignVirt2Phys(cur->reg, physReg);
540 prt_->addRegUse(physReg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000541 active_.push_back(std::make_pair(cur, cur->begin()));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000542 handled_.push_back(cur);
543 return;
544 }
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000545 DOUT << "no free registers\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000546
Chris Lattnera6c17502005-08-22 20:20:42 +0000547 // Compile the spill weights into an array that is better for scanning.
548 std::vector<float> SpillWeights(mri_->getNumRegs(), 0.0);
549 for (std::vector<std::pair<unsigned, float> >::iterator
550 I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I)
551 updateSpillWeights(SpillWeights, I->first, I->second, mri_);
552
553 // for each interval in active, update spill weights.
554 for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
555 i != e; ++i) {
556 unsigned reg = i->first->reg;
557 assert(MRegisterInfo::isVirtualRegister(reg) &&
558 "Can only allocate virtual registers!");
559 reg = vrm_->getPhys(reg);
560 updateSpillWeights(SpillWeights, reg, i->first->weight, mri_);
561 }
562
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000563 DOUT << "\tassigning stack slot at interval "<< *cur << ":\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000564
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000565 // Find a register to spill.
Jim Laskey7902c752006-11-07 12:25:45 +0000566 float minWeight = HUGE_VALF;
Evan Cheng20b0abc2007-04-17 20:32:26 +0000567 unsigned minReg = cur->preference; // Try the preferred register first.
568
569 if (!minReg || SpillWeights[minReg] == HUGE_VALF)
570 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
571 e = RC->allocation_order_end(*mf_); i != e; ++i) {
572 unsigned reg = *i;
573 if (minWeight > SpillWeights[reg]) {
574 minWeight = SpillWeights[reg];
575 minReg = reg;
576 }
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +0000577 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000578
579 // If we didn't find a register that is spillable, try aliases?
Evan Cheng3b6d56c2006-05-12 19:07:46 +0000580 if (!minReg) {
581 for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_),
582 e = RC->allocation_order_end(*mf_); i != e; ++i) {
583 unsigned reg = *i;
584 // No need to worry about if the alias register size < regsize of RC.
585 // We are going to spill all registers that alias it anyway.
586 for (const unsigned* as = mri_->getAliasSet(reg); *as; ++as) {
587 if (minWeight > SpillWeights[*as]) {
588 minWeight = SpillWeights[*as];
589 minReg = *as;
590 }
591 }
592 }
593
594 // All registers must have inf weight. Just grab one!
595 if (!minReg)
596 minReg = *RC->allocation_order_begin(*mf_);
597 }
Chris Lattnerc8e2c552006-03-25 23:00:56 +0000598
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000599 DOUT << "\t\tregister with min weight: "
600 << mri_->getName(minReg) << " (" << minWeight << ")\n";
Alkis Evlogimenos3bf564a2003-12-23 18:00:33 +0000601
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000602 // if the current has the minimum weight, we need to spill it and
603 // add any added intervals back to unhandled, and restart
604 // linearscan.
Jim Laskey7902c752006-11-07 12:25:45 +0000605 if (cur->weight != HUGE_VALF && cur->weight <= minWeight) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000606 DOUT << "\t\t\tspilling(c): " << *cur << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000607 std::vector<LiveInterval*> added =
Evan Cheng549f27d32007-08-13 23:45:17 +0000608 li_->addIntervalsForSpills(*cur, *vrm_, cur->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000609 if (added.empty())
610 return; // Early exit if all spills were folded.
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +0000611
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000612 // Merge added with unhandled. Note that we know that
613 // addIntervalsForSpills returns intervals sorted by their starting
614 // point.
Alkis Evlogimenos53eb3732004-07-22 08:14:44 +0000615 for (unsigned i = 0, e = added.size(); i != e; ++i)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000616 unhandled_.push(added[i]);
617 return;
618 }
619
Chris Lattner19828d42004-11-18 03:49:30 +0000620 ++NumBacktracks;
621
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000622 // push the current interval back to unhandled since we are going
623 // to re-run at least this iteration. Since we didn't modify it it
624 // should go back right in the front of the list
625 unhandled_.push(cur);
626
627 // otherwise we spill all intervals aliasing the register with
628 // minimum weight, rollback to the interval with the earliest
629 // start point and let the linear scan algorithm run again
630 std::vector<LiveInterval*> added;
631 assert(MRegisterInfo::isPhysicalRegister(minReg) &&
632 "did not choose a register to spill?");
Evan Cheng2638e1a2007-03-20 08:13:50 +0000633 BitVector toSpill(mri_->getNumRegs());
Chris Lattner19828d42004-11-18 03:49:30 +0000634
635 // We are going to spill minReg and all its aliases.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000636 toSpill[minReg] = true;
637 for (const unsigned* as = mri_->getAliasSet(minReg); *as; ++as)
638 toSpill[*as] = true;
639
640 // the earliest start of a spilled interval indicates up to where
641 // in handled we need to roll back
Chris Lattner23b71c12004-11-18 01:29:39 +0000642 unsigned earliestStart = cur->beginNumber();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000643
644 // set of spilled vregs (used later to rollback properly)
645 std::set<unsigned> spilled;
646
Chris Lattner19828d42004-11-18 03:49:30 +0000647 // spill live intervals of virtual regs mapped to the physical register we
648 // want to clear (and its aliases). We only spill those that overlap with the
649 // current interval as the rest do not affect its allocation. we also keep
650 // track of the earliest start of all spilled live intervals since this will
651 // mark our rollback point.
652 for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +0000653 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000654 if (//MRegisterInfo::isVirtualRegister(reg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000655 toSpill[vrm_->getPhys(reg)] &&
Chris Lattner19828d42004-11-18 03:49:30 +0000656 cur->overlapsFrom(*i->first, i->second)) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000657 DOUT << "\t\t\tspilling(a): " << *i->first << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000658 earliestStart = std::min(earliestStart, i->first->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000659 std::vector<LiveInterval*> newIs =
Evan Cheng549f27d32007-08-13 23:45:17 +0000660 li_->addIntervalsForSpills(*i->first, *vrm_, reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000661 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
662 spilled.insert(reg);
663 }
664 }
Chris Lattner19828d42004-11-18 03:49:30 +0000665 for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){
Chris Lattnercbb56252004-11-18 02:42:27 +0000666 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000667 if (//MRegisterInfo::isVirtualRegister(reg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000668 toSpill[vrm_->getPhys(reg)] &&
Chris Lattner19828d42004-11-18 03:49:30 +0000669 cur->overlapsFrom(*i->first, i->second-1)) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000670 DOUT << "\t\t\tspilling(i): " << *i->first << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000671 earliestStart = std::min(earliestStart, i->first->beginNumber());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000672 std::vector<LiveInterval*> newIs =
Evan Cheng549f27d32007-08-13 23:45:17 +0000673 li_->addIntervalsForSpills(*i->first, *vrm_, reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000674 std::copy(newIs.begin(), newIs.end(), std::back_inserter(added));
675 spilled.insert(reg);
676 }
677 }
678
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000679 DOUT << "\t\trolling back to: " << earliestStart << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000680
681 // Scan handled in reverse order up to the earliest start of a
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000682 // spilled live interval and undo each one, restoring the state of
Chris Lattnercbb56252004-11-18 02:42:27 +0000683 // unhandled.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000684 while (!handled_.empty()) {
685 LiveInterval* i = handled_.back();
Chris Lattnercbb56252004-11-18 02:42:27 +0000686 // If this interval starts before t we are done.
Chris Lattner23b71c12004-11-18 01:29:39 +0000687 if (i->beginNumber() < earliestStart)
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000688 break;
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000689 DOUT << "\t\t\tundo changes for: " << *i << '\n';
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000690 handled_.pop_back();
Chris Lattnercbb56252004-11-18 02:42:27 +0000691
692 // When undoing a live interval allocation we must know if it is active or
693 // inactive to properly update the PhysRegTracker and the VirtRegMap.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000694 IntervalPtrs::iterator it;
Chris Lattnercbb56252004-11-18 02:42:27 +0000695 if ((it = FindIntervalInVector(active_, i)) != active_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000696 active_.erase(it);
Chris Lattnerffab4222006-02-23 06:44:17 +0000697 assert(!MRegisterInfo::isPhysicalRegister(i->reg));
698 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000699 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +0000700 prt_->delRegUse(vrm_->getPhys(i->reg));
701 vrm_->clearVirt(i->reg);
Chris Lattnercbb56252004-11-18 02:42:27 +0000702 } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000703 inactive_.erase(it);
Chris Lattnerffab4222006-02-23 06:44:17 +0000704 assert(!MRegisterInfo::isPhysicalRegister(i->reg));
705 if (!spilled.count(i->reg))
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000706 unhandled_.push(i);
Chris Lattnerffab4222006-02-23 06:44:17 +0000707 vrm_->clearVirt(i->reg);
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000708 } else {
709 assert(MRegisterInfo::isVirtualRegister(i->reg) &&
710 "Can only allocate virtual registers!");
711 vrm_->clearVirt(i->reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000712 unhandled_.push(i);
713 }
714 }
715
Chris Lattner19828d42004-11-18 03:49:30 +0000716 // Rewind the iterators in the active, inactive, and fixed lists back to the
717 // point we reverted to.
718 RevertVectorIteratorsTo(active_, earliestStart);
719 RevertVectorIteratorsTo(inactive_, earliestStart);
720 RevertVectorIteratorsTo(fixed_, earliestStart);
721
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000722 // scan the rest and undo each interval that expired after t and
723 // insert it in active (the next iteration of the algorithm will
724 // put it in inactive if required)
Chris Lattnercbb56252004-11-18 02:42:27 +0000725 for (unsigned i = 0, e = handled_.size(); i != e; ++i) {
726 LiveInterval *HI = handled_[i];
727 if (!HI->expiredAt(earliestStart) &&
728 HI->expiredAt(cur->beginNumber())) {
Bill Wendling54fcc7f2006-11-17 00:50:36 +0000729 DOUT << "\t\t\tundo changes for: " << *HI << '\n';
Chris Lattnercbb56252004-11-18 02:42:27 +0000730 active_.push_back(std::make_pair(HI, HI->begin()));
Chris Lattnerffab4222006-02-23 06:44:17 +0000731 assert(!MRegisterInfo::isPhysicalRegister(HI->reg));
732 prt_->addRegUse(vrm_->getPhys(HI->reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000733 }
734 }
735
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000736 // merge added with unhandled
737 for (unsigned i = 0, e = added.size(); i != e; ++i)
738 unhandled_.push(added[i]);
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000739}
Alkis Evlogimenosf5eaf162004-02-06 18:08:18 +0000740
Chris Lattnercbb56252004-11-18 02:42:27 +0000741/// getFreePhysReg - return a free physical register for this virtual register
742/// interval if we have one, otherwise return 0.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000743unsigned RALinScan::getFreePhysReg(LiveInterval *cur) {
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000744 std::vector<unsigned> inactiveCounts(mri_->getNumRegs(), 0);
Chris Lattnerf8355d92005-08-22 16:55:22 +0000745 unsigned MaxInactiveCount = 0;
746
Chris Lattnerb9805782005-08-23 22:27:31 +0000747 const TargetRegisterClass *RC = mf_->getSSARegMap()->getRegClass(cur->reg);
748 const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC);
749
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000750 for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end();
751 i != e; ++i) {
Chris Lattnercbb56252004-11-18 02:42:27 +0000752 unsigned reg = i->first->reg;
Chris Lattnerc8b9f332004-11-18 06:01:45 +0000753 assert(MRegisterInfo::isVirtualRegister(reg) &&
754 "Can only allocate virtual registers!");
Chris Lattnerb9805782005-08-23 22:27:31 +0000755
756 // If this is not in a related reg class to the register we're allocating,
757 // don't check it.
758 const TargetRegisterClass *RegRC = mf_->getSSARegMap()->getRegClass(reg);
759 if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) {
760 reg = vrm_->getPhys(reg);
761 ++inactiveCounts[reg];
762 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]);
763 }
Alkis Evlogimenos84f5bcb2004-09-02 21:23:32 +0000764 }
765
Chris Lattnerf8355d92005-08-22 16:55:22 +0000766 unsigned FreeReg = 0;
767 unsigned FreeRegInactiveCount = 0;
Evan Cheng20b0abc2007-04-17 20:32:26 +0000768
769 // If copy coalescer has assigned a "preferred" register, check if it's
770 // available first.
771 if (cur->preference)
772 if (prt_->isRegAvail(cur->preference)) {
773 DOUT << "\t\tassigned the preferred register: "
774 << mri_->getName(cur->preference) << "\n";
775 return cur->preference;
776 } else
777 DOUT << "\t\tunable to assign the preferred register: "
778 << mri_->getName(cur->preference) << "\n";
779
Chris Lattnerf8355d92005-08-22 16:55:22 +0000780 // Scan for the first available register.
Evan Cheng92efbfc2007-04-25 07:18:20 +0000781 TargetRegisterClass::iterator I = RC->allocation_order_begin(*mf_);
782 TargetRegisterClass::iterator E = RC->allocation_order_end(*mf_);
Chris Lattnerf8355d92005-08-22 16:55:22 +0000783 for (; I != E; ++I)
784 if (prt_->isRegAvail(*I)) {
785 FreeReg = *I;
786 FreeRegInactiveCount = inactiveCounts[FreeReg];
787 break;
788 }
789
790 // If there are no free regs, or if this reg has the max inactive count,
791 // return this register.
792 if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount) return FreeReg;
793
794 // Continue scanning the registers, looking for the one with the highest
795 // inactive count. Alkis found that this reduced register pressure very
796 // slightly on X86 (in rev 1.94 of this file), though this should probably be
797 // reevaluated now.
798 for (; I != E; ++I) {
799 unsigned Reg = *I;
800 if (prt_->isRegAvail(Reg) && FreeRegInactiveCount < inactiveCounts[Reg]) {
801 FreeReg = Reg;
802 FreeRegInactiveCount = inactiveCounts[Reg];
803 if (FreeRegInactiveCount == MaxInactiveCount)
804 break; // We found the one with the max inactive count.
805 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000806 }
Chris Lattnerf8355d92005-08-22 16:55:22 +0000807
808 return FreeReg;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000809}
810
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000811FunctionPass* llvm::createLinearScanRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000812 return new RALinScan();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000813}