2003-11-20 11:32:25 +08:00
|
|
|
//===-- RegAllocLinearScan.cpp - Linear Scan register allocator -----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements a linear scan register allocator.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#define DEBUG_TYPE "regalloc"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/CodeGen/LiveIntervals.h"
|
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/CodeGen/SSARegMap.h"
|
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Support/CFG.h"
|
|
|
|
#include "Support/Debug.h"
|
|
|
|
#include "Support/DepthFirstIterator.h"
|
|
|
|
#include "Support/Statistic.h"
|
|
|
|
#include "Support/STLExtras.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
Statistic<> numSpilled ("ra-linearscan", "Number of registers spilled");
|
2003-12-19 04:25:31 +08:00
|
|
|
Statistic<> numReloaded("ra-linearscan", "Number of registers reloaded");
|
2004-01-23 07:08:45 +08:00
|
|
|
Statistic<> numPeep ("ra-linearscan",
|
|
|
|
"Number of identity moves eliminated");
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
class PhysRegTracker {
|
|
|
|
private:
|
|
|
|
const MRegisterInfo* mri_;
|
|
|
|
std::vector<bool> reserved_;
|
|
|
|
std::vector<unsigned> regUse_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
PhysRegTracker(MachineFunction* mf)
|
|
|
|
: mri_(mf ? mf->getTarget().getRegisterInfo() : NULL) {
|
|
|
|
if (mri_) {
|
|
|
|
reserved_.assign(mri_->getNumRegs(), false);
|
|
|
|
regUse_.assign(mri_->getNumRegs(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PhysRegTracker(const PhysRegTracker& rhs)
|
|
|
|
: mri_(rhs.mri_),
|
|
|
|
reserved_(rhs.reserved_),
|
|
|
|
regUse_(rhs.regUse_) {
|
|
|
|
}
|
|
|
|
|
|
|
|
const PhysRegTracker& operator=(const PhysRegTracker& rhs) {
|
|
|
|
mri_ = rhs.mri_;
|
|
|
|
reserved_ = rhs.reserved_;
|
|
|
|
regUse_ = rhs.regUse_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reservePhysReg(unsigned physReg) {
|
|
|
|
reserved_[physReg] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void addPhysRegUse(unsigned physReg) {
|
|
|
|
++regUse_[physReg];
|
|
|
|
for (const unsigned* as = mri_->getAliasSet(physReg); *as; ++as) {
|
|
|
|
physReg = *as;
|
|
|
|
++regUse_[physReg];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void delPhysRegUse(unsigned physReg) {
|
|
|
|
assert(regUse_[physReg] != 0);
|
|
|
|
--regUse_[physReg];
|
|
|
|
for (const unsigned* as = mri_->getAliasSet(physReg); *as; ++as) {
|
|
|
|
physReg = *as;
|
|
|
|
assert(regUse_[physReg] != 0);
|
|
|
|
--regUse_[physReg];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPhysRegReserved(unsigned physReg) const {
|
|
|
|
return reserved_[physReg];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPhysRegAvail(unsigned physReg) const {
|
|
|
|
return regUse_[physReg] == 0 && !isPhysRegReserved(physReg);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isReservedPhysRegAvail(unsigned physReg) const {
|
|
|
|
return regUse_[physReg] == 0 && isPhysRegReserved(physReg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
class RA : public MachineFunctionPass {
|
|
|
|
private:
|
|
|
|
MachineFunction* mf_;
|
|
|
|
const TargetMachine* tm_;
|
|
|
|
const MRegisterInfo* mri_;
|
2004-01-23 07:08:45 +08:00
|
|
|
LiveIntervals* li_;
|
2004-01-07 13:31:12 +08:00
|
|
|
MachineFunction::iterator currentMbb_;
|
2003-11-20 11:32:25 +08:00
|
|
|
MachineBasicBlock::iterator currentInstr_;
|
2004-01-07 13:31:12 +08:00
|
|
|
typedef std::vector<const LiveIntervals::Interval*> IntervalPtrs;
|
2004-01-07 17:20:58 +08:00
|
|
|
IntervalPtrs unhandled_, fixed_, active_, inactive_;
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
PhysRegTracker prt_;
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
typedef std::map<unsigned, unsigned> Virt2PhysMap;
|
|
|
|
Virt2PhysMap v2pMap_;
|
|
|
|
|
|
|
|
typedef std::map<unsigned, int> Virt2StackSlotMap;
|
|
|
|
Virt2StackSlotMap v2ssMap_;
|
|
|
|
|
|
|
|
int instrAdded_;
|
|
|
|
|
|
|
|
public:
|
2004-02-02 15:30:36 +08:00
|
|
|
RA()
|
|
|
|
: prt_(NULL) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
virtual const char* getPassName() const {
|
|
|
|
return "Linear Scan Register Allocator";
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<LiveVariables>();
|
|
|
|
AU.addRequired<LiveIntervals>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// runOnMachineFunction - register allocate the whole function
|
|
|
|
bool runOnMachineFunction(MachineFunction&);
|
|
|
|
|
2004-02-02 04:13:26 +08:00
|
|
|
void releaseMemory();
|
|
|
|
|
|
|
|
private:
|
2004-01-07 17:20:58 +08:00
|
|
|
/// initIntervalSets - initializa the four interval sets:
|
|
|
|
/// unhandled, fixed, active and inactive
|
|
|
|
void initIntervalSets(const LiveIntervals::Intervals& li);
|
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
/// processActiveIntervals - expire old intervals and move
|
|
|
|
/// non-overlapping ones to the incative list
|
2004-01-07 17:20:58 +08:00
|
|
|
void processActiveIntervals(IntervalPtrs::value_type cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// processInactiveIntervals - expire old intervals and move
|
|
|
|
/// overlapping ones to the active list
|
2004-01-07 17:20:58 +08:00
|
|
|
void processInactiveIntervals(IntervalPtrs::value_type cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// assignStackSlotAtInterval - choose and spill
|
|
|
|
/// interval. Currently we spill the interval with the last
|
|
|
|
/// end point in the active and inactive lists and the current
|
|
|
|
/// interval
|
2004-02-02 15:30:36 +08:00
|
|
|
void assignStackSlotAtInterval(IntervalPtrs::value_type cur,
|
|
|
|
const PhysRegTracker& backupPtr);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
///
|
|
|
|
/// register handling helpers
|
|
|
|
///
|
|
|
|
|
2003-12-21 13:43:40 +08:00
|
|
|
/// getFreePhysReg - return a free physical register for this
|
|
|
|
/// virtual register interval if we have one, otherwise return
|
|
|
|
/// 0
|
2004-01-07 17:20:58 +08:00
|
|
|
unsigned getFreePhysReg(IntervalPtrs::value_type cur);
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
/// getFreeTempPhysReg - return a free temprorary physical
|
|
|
|
/// register for this virtual register if we have one (should
|
|
|
|
/// never return 0)
|
2003-12-21 13:43:40 +08:00
|
|
|
unsigned getFreeTempPhysReg(unsigned virtReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// assignVirt2PhysReg - assigns the free physical register to
|
|
|
|
/// the virtual register passed as arguments
|
2004-02-06 11:15:40 +08:00
|
|
|
Virt2PhysMap::iterator
|
|
|
|
assignVirt2PhysReg(unsigned virtReg, unsigned physReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// clearVirtReg - free the physical register associated with this
|
|
|
|
/// virtual register and disassociate virtual->physical and
|
|
|
|
/// physical->virtual mappings
|
2004-02-06 11:15:40 +08:00
|
|
|
void clearVirtReg(Virt2PhysMap::iterator it);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// assignVirt2StackSlot - assigns this virtual register to a
|
|
|
|
/// stack slot
|
|
|
|
void assignVirt2StackSlot(unsigned virtReg);
|
|
|
|
|
2003-12-04 11:57:28 +08:00
|
|
|
/// getStackSlot - returns the offset of the specified
|
|
|
|
/// register on the stack
|
|
|
|
int getStackSlot(unsigned virtReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// spillVirtReg - spills the virtual register
|
2004-02-06 11:15:40 +08:00
|
|
|
void spillVirtReg(Virt2PhysMap::iterator it);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
/// loadPhysReg - loads to the physical register the value of
|
|
|
|
/// the virtual register specifed. Virtual register must have
|
|
|
|
/// an assigned stack slot
|
2004-02-06 11:15:40 +08:00
|
|
|
Virt2PhysMap::iterator
|
|
|
|
loadVirt2PhysReg(unsigned virtReg, unsigned physReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-01-23 03:24:43 +08:00
|
|
|
void printVirtRegAssignment() const {
|
|
|
|
std::cerr << "register assignment:\n";
|
2004-02-02 15:30:36 +08:00
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
for (Virt2PhysMap::const_iterator
|
|
|
|
i = v2pMap_.begin(), e = v2pMap_.end(); i != e; ++i) {
|
2004-01-23 03:24:43 +08:00
|
|
|
assert(i->second != 0);
|
2003-11-20 11:32:25 +08:00
|
|
|
std::cerr << '[' << i->first << ','
|
|
|
|
<< mri_->getName(i->second) << "]\n";
|
|
|
|
}
|
2004-01-23 03:24:43 +08:00
|
|
|
for (Virt2StackSlotMap::const_iterator
|
|
|
|
i = v2ssMap_.begin(), e = v2ssMap_.end(); i != e; ++i) {
|
|
|
|
std::cerr << '[' << i->first << ",ss#" << i->second << "]\n";
|
|
|
|
}
|
2003-11-20 11:32:25 +08:00
|
|
|
std::cerr << '\n';
|
|
|
|
}
|
2004-01-17 04:29:42 +08:00
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
void printIntervals(const char* const str,
|
|
|
|
RA::IntervalPtrs::const_iterator i,
|
|
|
|
RA::IntervalPtrs::const_iterator e) const {
|
|
|
|
if (str) std::cerr << str << " intervals:\n";
|
|
|
|
for (; i != e; ++i) {
|
|
|
|
std::cerr << "\t\t" << **i << " -> ";
|
2004-01-17 04:29:42 +08:00
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2004-01-17 04:29:42 +08:00
|
|
|
Virt2PhysMap::const_iterator it = v2pMap_.find(reg);
|
|
|
|
reg = (it == v2pMap_.end() ? 0 : it->second);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2004-01-17 04:33:13 +08:00
|
|
|
std::cerr << mri_->getName(reg) << '\n';
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
2004-01-17 04:29:42 +08:00
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
// void printFreeRegs(const char* const str,
|
|
|
|
// const TargetRegisterClass* rc) const {
|
|
|
|
// if (str) std::cerr << str << ':';
|
|
|
|
// for (TargetRegisterClass::iterator i =
|
|
|
|
// rc->allocation_order_begin(*mf_);
|
|
|
|
// i != rc->allocation_order_end(*mf_); ++i) {
|
|
|
|
// unsigned reg = *i;
|
|
|
|
// if (!regUse_[reg]) {
|
|
|
|
// std::cerr << ' ' << mri_->getName(reg);
|
|
|
|
// if (reserved_[reg]) std::cerr << "*";
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// std::cerr << '\n';
|
|
|
|
// }
|
2003-11-20 11:32:25 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2004-02-02 04:13:26 +08:00
|
|
|
void RA::releaseMemory()
|
|
|
|
{
|
|
|
|
v2pMap_.clear();
|
|
|
|
v2ssMap_.clear();
|
|
|
|
unhandled_.clear();
|
|
|
|
active_.clear();
|
|
|
|
inactive_.clear();
|
|
|
|
fixed_.clear();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
bool RA::runOnMachineFunction(MachineFunction &fn) {
|
|
|
|
mf_ = &fn;
|
|
|
|
tm_ = &fn.getTarget();
|
|
|
|
mri_ = tm_->getRegisterInfo();
|
2004-01-23 07:08:45 +08:00
|
|
|
li_ = &getAnalysis<LiveIntervals>();
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_ = PhysRegTracker(mf_);
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
initIntervalSets(li_->getIntervals());
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
// FIXME: this will work only for the X86 backend. I need to
|
|
|
|
// device an algorthm to select the minimal (considering register
|
|
|
|
// aliasing) number of temp registers to reserve so that we have 2
|
|
|
|
// registers for each register class available.
|
|
|
|
|
2003-12-29 02:03:52 +08:00
|
|
|
// reserve R8: CH, CL
|
|
|
|
// R16: CX, DI,
|
|
|
|
// R32: ECX, EDI,
|
2003-11-20 11:32:25 +08:00
|
|
|
// RFP: FP5, FP6
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.reservePhysReg( 8); /* CH */
|
|
|
|
prt_.reservePhysReg( 9); /* CL */
|
|
|
|
prt_.reservePhysReg(10); /* CX */
|
|
|
|
prt_.reservePhysReg(12); /* DI */
|
|
|
|
prt_.reservePhysReg(18); /* ECX */
|
|
|
|
prt_.reservePhysReg(19); /* EDI */
|
|
|
|
prt_.reservePhysReg(28); /* FP5 */
|
|
|
|
prt_.reservePhysReg(29); /* FP6 */
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
// linear scan algorithm
|
2004-01-23 07:08:45 +08:00
|
|
|
DEBUG(std::cerr << "Machine Function\n");
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
DEBUG(printIntervals("\tunhandled", unhandled_.begin(), unhandled_.end()));
|
|
|
|
DEBUG(printIntervals("\tfixed", fixed_.begin(), fixed_.end()));
|
|
|
|
DEBUG(printIntervals("\tactive", active_.begin(), active_.end()));
|
|
|
|
DEBUG(printIntervals("\tinactive", inactive_.begin(), inactive_.end()));
|
2003-12-24 02:00:33 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
while (!unhandled_.empty() || !fixed_.empty()) {
|
|
|
|
// pick the interval with the earliest start point
|
|
|
|
IntervalPtrs::value_type cur;
|
|
|
|
if (fixed_.empty()) {
|
|
|
|
cur = unhandled_.front();
|
|
|
|
unhandled_.erase(unhandled_.begin());
|
2003-12-24 02:00:33 +08:00
|
|
|
}
|
2004-01-07 17:20:58 +08:00
|
|
|
else if (unhandled_.empty()) {
|
|
|
|
cur = fixed_.front();
|
|
|
|
fixed_.erase(fixed_.begin());
|
2003-12-24 02:00:33 +08:00
|
|
|
}
|
2004-01-07 17:20:58 +08:00
|
|
|
else if (unhandled_.front()->start() < fixed_.front()->start()) {
|
|
|
|
cur = unhandled_.front();
|
|
|
|
unhandled_.erase(unhandled_.begin());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cur = fixed_.front();
|
|
|
|
fixed_.erase(fixed_.begin());
|
|
|
|
}
|
|
|
|
|
2004-01-14 08:09:36 +08:00
|
|
|
DEBUG(std::cerr << *cur << '\n');
|
2003-12-24 02:00:33 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
processActiveIntervals(cur);
|
|
|
|
processInactiveIntervals(cur);
|
2004-01-14 04:42:08 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
// if this register is fixed we are done
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isPhysicalRegister(cur->reg)) {
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.addPhysRegUse(cur->reg);
|
2004-01-07 17:20:58 +08:00
|
|
|
active_.push_back(cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
// otherwise we are allocating a virtual register. try to find
|
|
|
|
// a free physical register or spill an interval in order to
|
|
|
|
// assign it one (we could spill the current though).
|
|
|
|
else {
|
2004-02-02 15:30:36 +08:00
|
|
|
PhysRegTracker backupPrt = prt_;
|
2004-01-07 17:20:58 +08:00
|
|
|
|
|
|
|
// for every interval in inactive we overlap with, mark the
|
|
|
|
// register as not free
|
|
|
|
for (IntervalPtrs::const_iterator i = inactive_.begin(),
|
|
|
|
e = inactive_.end(); i != e; ++i) {
|
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg))
|
2004-01-07 17:20:58 +08:00
|
|
|
reg = v2pMap_[reg];
|
|
|
|
|
|
|
|
if (cur->overlaps(**i)) {
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.addPhysRegUse(reg);
|
2004-01-07 17:20:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// for every interval in fixed we overlap with,
|
|
|
|
// mark the register as not free
|
|
|
|
for (IntervalPtrs::const_iterator i = fixed_.begin(),
|
|
|
|
e = fixed_.end(); i != e; ++i) {
|
2004-02-01 09:27:01 +08:00
|
|
|
assert(MRegisterInfo::isPhysicalRegister((*i)->reg) &&
|
2004-01-07 17:20:58 +08:00
|
|
|
"virtual register interval in fixed set?");
|
|
|
|
if (cur->overlaps(**i))
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.addPhysRegUse((*i)->reg);
|
2004-01-07 17:20:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(std::cerr << "\tallocating current interval:\n");
|
|
|
|
|
|
|
|
unsigned physReg = getFreePhysReg(cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
if (!physReg) {
|
2004-02-02 15:30:36 +08:00
|
|
|
assignStackSlotAtInterval(cur, backupPrt);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
else {
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_ = backupPrt;
|
2004-01-07 17:20:58 +08:00
|
|
|
assignVirt2PhysReg(cur->reg, physReg);
|
|
|
|
active_.push_back(cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
2004-01-07 17:20:58 +08:00
|
|
|
|
|
|
|
DEBUG(printIntervals("\tactive", active_.begin(), active_.end()));
|
|
|
|
DEBUG(printIntervals("\tinactive", inactive_.begin(), inactive_.end())); }
|
|
|
|
|
2003-12-13 13:50:19 +08:00
|
|
|
// expire any remaining active intervals
|
|
|
|
for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) {
|
|
|
|
unsigned reg = (*i)->reg;
|
|
|
|
DEBUG(std::cerr << "\t\tinterval " << **i << " expired\n");
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-24 02:00:33 +08:00
|
|
|
reg = v2pMap_[reg];
|
2003-12-13 13:50:19 +08:00
|
|
|
}
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.delPhysRegUse(reg);
|
2003-12-13 13:50:19 +08:00
|
|
|
}
|
2003-12-14 21:24:17 +08:00
|
|
|
|
2004-01-23 07:08:45 +08:00
|
|
|
typedef LiveIntervals::Reg2RegMap Reg2RegMap;
|
|
|
|
const Reg2RegMap& r2rMap = li_->getJoinedRegMap();
|
|
|
|
|
2004-01-23 03:24:43 +08:00
|
|
|
DEBUG(printVirtRegAssignment());
|
2004-01-23 07:08:45 +08:00
|
|
|
DEBUG(std::cerr << "Performing coalescing on joined intervals\n");
|
|
|
|
// perform coalescing if we were passed joined intervals
|
|
|
|
for(Reg2RegMap::const_iterator i = r2rMap.begin(), e = r2rMap.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
unsigned reg = i->first;
|
|
|
|
unsigned rep = li_->rep(reg);
|
|
|
|
|
2004-02-01 09:27:01 +08:00
|
|
|
assert((MRegisterInfo::isPhysicalRegister(rep) ||
|
2004-02-02 02:39:53 +08:00
|
|
|
v2pMap_.count(rep) || v2ssMap_.count(rep)) &&
|
2004-01-23 07:08:45 +08:00
|
|
|
"representative register is not allocated!");
|
|
|
|
|
2004-02-01 09:27:01 +08:00
|
|
|
assert(MRegisterInfo::isVirtualRegister(reg) &&
|
2004-02-02 02:39:53 +08:00
|
|
|
!v2pMap_.count(reg) && !v2ssMap_.count(reg) &&
|
2004-01-23 07:08:45 +08:00
|
|
|
"coalesced register is already allocated!");
|
|
|
|
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isPhysicalRegister(rep)) {
|
2004-01-23 07:08:45 +08:00
|
|
|
v2pMap_.insert(std::make_pair(reg, rep));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Virt2PhysMap::const_iterator pr = v2pMap_.find(rep);
|
|
|
|
if (pr != v2pMap_.end()) {
|
|
|
|
v2pMap_.insert(std::make_pair(reg, pr->second));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Virt2StackSlotMap::const_iterator ss = v2ssMap_.find(rep);
|
|
|
|
assert(ss != v2ssMap_.end());
|
|
|
|
v2ssMap_.insert(std::make_pair(reg, ss->second));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(printVirtRegAssignment());
|
|
|
|
DEBUG(std::cerr << "finished register allocation\n");
|
|
|
|
|
|
|
|
const TargetInstrInfo& tii = tm_->getInstrInfo();
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
DEBUG(std::cerr << "Rewrite machine code:\n");
|
2004-01-07 13:31:12 +08:00
|
|
|
for (currentMbb_ = mf_->begin(); currentMbb_ != mf_->end(); ++currentMbb_) {
|
2003-11-20 11:32:25 +08:00
|
|
|
instrAdded_ = 0;
|
|
|
|
|
|
|
|
for (currentInstr_ = currentMbb_->begin();
|
2004-01-23 07:08:45 +08:00
|
|
|
currentInstr_ != currentMbb_->end(); ) {
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << "\tinstruction: ";
|
|
|
|
(*currentInstr_)->print(std::cerr, *tm_););
|
|
|
|
|
|
|
|
// use our current mapping and actually replace and
|
|
|
|
// virtual register with its allocated physical registers
|
|
|
|
DEBUG(std::cerr << "\t\treplacing virtual registers with mapped "
|
|
|
|
"physical registers:\n");
|
|
|
|
for (unsigned i = 0, e = (*currentInstr_)->getNumOperands();
|
|
|
|
i != e; ++i) {
|
|
|
|
MachineOperand& op = (*currentInstr_)->getOperand(i);
|
|
|
|
if (op.isVirtualRegister()) {
|
|
|
|
unsigned virtReg = op.getAllocatedRegNum();
|
2004-01-23 03:24:43 +08:00
|
|
|
Virt2PhysMap::const_iterator it = v2pMap_.find(virtReg);
|
|
|
|
if (it != v2pMap_.end()) {
|
2004-02-03 06:00:32 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\t%reg" << it->first
|
2004-01-23 03:24:43 +08:00
|
|
|
<< " -> " << mri_->getName(it->second) << '\n');
|
|
|
|
(*currentInstr_)->SetMachineOperandReg(i, it->second);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-23 07:08:45 +08:00
|
|
|
unsigned srcReg, dstReg;
|
|
|
|
if (tii.isMoveInstr(**currentInstr_, srcReg, dstReg) &&
|
2004-02-01 09:27:01 +08:00
|
|
|
((MRegisterInfo::isPhysicalRegister(srcReg) &&
|
|
|
|
MRegisterInfo::isPhysicalRegister(dstReg) &&
|
2004-01-23 07:08:45 +08:00
|
|
|
srcReg == dstReg) ||
|
2004-02-01 09:27:01 +08:00
|
|
|
(MRegisterInfo::isVirtualRegister(srcReg) &&
|
|
|
|
MRegisterInfo::isVirtualRegister(dstReg) &&
|
2004-01-23 07:08:45 +08:00
|
|
|
v2ssMap_[srcReg] == v2ssMap_[dstReg]))) {
|
|
|
|
delete *currentInstr_;
|
|
|
|
currentInstr_ = currentMbb_->erase(currentInstr_);
|
|
|
|
++numPeep;
|
|
|
|
DEBUG(std::cerr << "\t\tdeleting instruction\n");
|
|
|
|
continue;
|
|
|
|
}
|
2004-02-01 09:27:01 +08:00
|
|
|
|
2004-02-06 11:15:40 +08:00
|
|
|
typedef std::vector<Virt2PhysMap::iterator> Regs;
|
2004-02-05 06:17:40 +08:00
|
|
|
Regs toClear;
|
|
|
|
Regs toSpill;
|
|
|
|
|
|
|
|
const unsigned numOperands = (*currentInstr_)->getNumOperands();
|
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << "\t\tloading temporarily used operands to "
|
|
|
|
"registers:\n");
|
2004-02-05 06:17:40 +08:00
|
|
|
for (unsigned i = 0; i != numOperands; ++i) {
|
2003-11-20 11:32:25 +08:00
|
|
|
MachineOperand& op = (*currentInstr_)->getOperand(i);
|
2004-02-05 06:17:40 +08:00
|
|
|
if (op.isVirtualRegister() && op.isUse()) {
|
2003-11-20 11:32:25 +08:00
|
|
|
unsigned virtReg = op.getAllocatedRegNum();
|
2004-01-23 03:24:43 +08:00
|
|
|
unsigned physReg = 0;
|
2004-02-06 11:15:40 +08:00
|
|
|
Virt2PhysMap::iterator it = v2pMap_.find(virtReg);
|
2004-01-23 03:24:43 +08:00
|
|
|
if (it != v2pMap_.end()) {
|
|
|
|
physReg = it->second;
|
|
|
|
}
|
|
|
|
else {
|
2003-11-20 11:32:25 +08:00
|
|
|
physReg = getFreeTempPhysReg(virtReg);
|
2004-02-06 11:15:40 +08:00
|
|
|
it = loadVirt2PhysReg(virtReg, physReg);
|
2004-02-05 06:17:40 +08:00
|
|
|
// we will clear uses that are not also defs
|
|
|
|
// before we allocate registers the defs
|
|
|
|
if (op.isDef())
|
2004-02-06 11:15:40 +08:00
|
|
|
toSpill.push_back(it);
|
2004-02-05 06:17:40 +08:00
|
|
|
else
|
2004-02-06 11:15:40 +08:00
|
|
|
toClear.push_back(it);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
(*currentInstr_)->SetMachineOperandReg(i, physReg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-05 06:17:40 +08:00
|
|
|
DEBUG(std::cerr << "\t\tclearing temporarily used but not defined "
|
|
|
|
"operands:\n");
|
|
|
|
std::for_each(toClear.begin(), toClear.end(),
|
|
|
|
std::bind1st(std::mem_fun(&RA::clearVirtReg), this));
|
2003-11-20 11:32:25 +08:00
|
|
|
|
|
|
|
DEBUG(std::cerr << "\t\tassigning temporarily defined operands to "
|
|
|
|
"registers:\n");
|
2004-02-05 06:17:40 +08:00
|
|
|
for (unsigned i = 0; i != numOperands; ++i) {
|
2003-11-20 11:32:25 +08:00
|
|
|
MachineOperand& op = (*currentInstr_)->getOperand(i);
|
2004-02-03 09:13:07 +08:00
|
|
|
if (op.isVirtualRegister()) {
|
2004-02-05 06:17:40 +08:00
|
|
|
assert(!op.isUse() && "we should not have uses here!");
|
2003-11-20 11:32:25 +08:00
|
|
|
unsigned virtReg = op.getAllocatedRegNum();
|
2004-01-23 03:24:43 +08:00
|
|
|
unsigned physReg = 0;
|
2004-02-06 11:15:40 +08:00
|
|
|
Virt2PhysMap::iterator it = v2pMap_.find(virtReg);
|
2004-01-23 03:24:43 +08:00
|
|
|
if (it != v2pMap_.end()) {
|
|
|
|
physReg = it->second;
|
|
|
|
}
|
|
|
|
else {
|
2003-11-20 11:32:25 +08:00
|
|
|
physReg = getFreeTempPhysReg(virtReg);
|
2004-02-06 11:15:40 +08:00
|
|
|
it = assignVirt2PhysReg(virtReg, physReg);
|
2004-02-05 06:17:40 +08:00
|
|
|
// need to spill this after we are done with
|
|
|
|
// this instruction
|
2004-02-06 11:15:40 +08:00
|
|
|
toSpill.push_back(it);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
(*currentInstr_)->SetMachineOperandReg(i, physReg);
|
|
|
|
}
|
|
|
|
}
|
2004-02-05 06:17:40 +08:00
|
|
|
++currentInstr_; // spills will go after this instruction
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2004-02-05 06:17:40 +08:00
|
|
|
DEBUG(std::cerr << "\t\tspilling temporarily defined operands:\n");
|
|
|
|
std::for_each(toSpill.begin(), toSpill.end(),
|
|
|
|
std::bind1st(std::mem_fun(&RA::spillVirtReg), this));
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
void RA::initIntervalSets(const LiveIntervals::Intervals& li)
|
|
|
|
{
|
|
|
|
assert(unhandled_.empty() && fixed_.empty() &&
|
|
|
|
active_.empty() && inactive_.empty() &&
|
|
|
|
"interval sets should be empty on initialization");
|
|
|
|
|
|
|
|
for (LiveIntervals::Intervals::const_iterator i = li.begin(), e = li.end();
|
|
|
|
i != e; ++i) {
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isPhysicalRegister(i->reg))
|
2004-01-07 17:20:58 +08:00
|
|
|
fixed_.push_back(&*i);
|
|
|
|
else
|
|
|
|
unhandled_.push_back(&*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RA::processActiveIntervals(IntervalPtrs::value_type cur)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "\tprocessing active intervals:\n");
|
|
|
|
for (IntervalPtrs::iterator i = active_.begin(); i != active_.end();) {
|
|
|
|
unsigned reg = (*i)->reg;
|
2004-01-17 04:17:05 +08:00
|
|
|
// remove expired intervals
|
|
|
|
if ((*i)->expiredAt(cur->start())) {
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << "\t\tinterval " << **i << " expired\n");
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-24 02:00:33 +08:00
|
|
|
reg = v2pMap_[reg];
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.delPhysRegUse(reg);
|
2003-12-21 13:43:40 +08:00
|
|
|
// remove from active
|
|
|
|
i = active_.erase(i);
|
|
|
|
}
|
|
|
|
// move inactive intervals to inactive list
|
|
|
|
else if (!(*i)->liveAt(cur->start())) {
|
|
|
|
DEBUG(std::cerr << "\t\t\tinterval " << **i << " inactive\n");
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-24 02:00:33 +08:00
|
|
|
reg = v2pMap_[reg];
|
|
|
|
}
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.delPhysRegUse(reg);
|
2003-12-21 13:43:40 +08:00
|
|
|
// add to inactive
|
|
|
|
inactive_.push_back(*i);
|
|
|
|
// remove from active
|
2003-11-20 11:32:25 +08:00
|
|
|
i = active_.erase(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
void RA::processInactiveIntervals(IntervalPtrs::value_type cur)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
2003-12-21 13:43:40 +08:00
|
|
|
DEBUG(std::cerr << "\tprocessing inactive intervals:\n");
|
|
|
|
for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end();) {
|
|
|
|
unsigned reg = (*i)->reg;
|
|
|
|
|
2004-01-17 04:17:05 +08:00
|
|
|
// remove expired intervals
|
|
|
|
if ((*i)->expiredAt(cur->start())) {
|
2003-12-21 13:43:40 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\tinterval " << **i << " expired\n");
|
|
|
|
// remove from inactive
|
|
|
|
i = inactive_.erase(i);
|
|
|
|
}
|
|
|
|
// move re-activated intervals in active list
|
|
|
|
else if ((*i)->liveAt(cur->start())) {
|
|
|
|
DEBUG(std::cerr << "\t\t\tinterval " << **i << " active\n");
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-24 02:00:33 +08:00
|
|
|
reg = v2pMap_[reg];
|
|
|
|
}
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.addPhysRegUse(reg);
|
2003-12-21 13:43:40 +08:00
|
|
|
// add to active
|
|
|
|
active_.push_back(*i);
|
|
|
|
// remove from inactive
|
|
|
|
i = inactive_.erase(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2003-12-22 04:19:10 +08:00
|
|
|
template <typename T>
|
2004-02-02 04:13:26 +08:00
|
|
|
void updateWeight(std::vector<T>& rw, int reg, T w)
|
2003-12-21 13:43:40 +08:00
|
|
|
{
|
2003-12-22 04:19:10 +08:00
|
|
|
if (rw[reg] == std::numeric_limits<T>::max() ||
|
|
|
|
w == std::numeric_limits<T>::max())
|
|
|
|
rw[reg] = std::numeric_limits<T>::max();
|
2003-12-21 13:43:40 +08:00
|
|
|
else
|
|
|
|
rw[reg] += w;
|
|
|
|
}
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
void RA::assignStackSlotAtInterval(IntervalPtrs::value_type cur,
|
|
|
|
const PhysRegTracker& backupPrt)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "\t\tassigning stack slot at interval "
|
|
|
|
<< *cur << ":\n");
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2004-02-02 04:13:26 +08:00
|
|
|
std::vector<float> regWeight(mri_->getNumRegs(), 0.0);
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2004-01-23 04:07:18 +08:00
|
|
|
// for each interval in active
|
2004-01-07 17:20:58 +08:00
|
|
|
for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end();
|
|
|
|
i != e; ++i) {
|
2003-12-21 13:43:40 +08:00
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-21 13:43:40 +08:00
|
|
|
reg = v2pMap_[reg];
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
updateWeight(regWeight, reg, (*i)->weight);
|
|
|
|
for (const unsigned* as = mri_->getAliasSet(reg); *as; ++as)
|
|
|
|
updateWeight(regWeight, *as, (*i)->weight);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2003-12-24 02:00:33 +08:00
|
|
|
// for each interval in inactive that overlaps
|
2004-01-07 17:20:58 +08:00
|
|
|
for (IntervalPtrs::const_iterator i = inactive_.begin(),
|
|
|
|
e = inactive_.end(); i != e; ++i) {
|
2004-01-14 04:42:08 +08:00
|
|
|
if (!cur->overlaps(**i))
|
|
|
|
continue;
|
2003-12-21 13:43:40 +08:00
|
|
|
|
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg)) {
|
2003-12-21 13:43:40 +08:00
|
|
|
reg = v2pMap_[reg];
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
updateWeight(regWeight, reg, (*i)->weight);
|
|
|
|
for (const unsigned* as = mri_->getAliasSet(reg); *as; ++as)
|
|
|
|
updateWeight(regWeight, *as, (*i)->weight);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
// for each fixed interval that overlaps
|
|
|
|
for (IntervalPtrs::const_iterator i = fixed_.begin(), e = fixed_.end();
|
|
|
|
i != e; ++i) {
|
2004-01-14 04:42:08 +08:00
|
|
|
if (!cur->overlaps(**i))
|
|
|
|
continue;
|
2004-01-14 04:37:01 +08:00
|
|
|
|
2004-02-01 09:27:01 +08:00
|
|
|
assert(MRegisterInfo::isPhysicalRegister((*i)->reg) &&
|
2004-01-07 17:20:58 +08:00
|
|
|
"virtual register interval in fixed set?");
|
|
|
|
updateWeight(regWeight, (*i)->reg, (*i)->weight);
|
|
|
|
for (const unsigned* as = mri_->getAliasSet((*i)->reg); *as; ++as)
|
|
|
|
updateWeight(regWeight, *as, (*i)->weight);
|
2003-12-24 02:00:33 +08:00
|
|
|
}
|
|
|
|
|
2003-12-22 04:19:10 +08:00
|
|
|
float minWeight = std::numeric_limits<float>::max();
|
2003-12-21 13:43:40 +08:00
|
|
|
unsigned minReg = 0;
|
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(cur->reg);
|
|
|
|
for (TargetRegisterClass::iterator i = rc->allocation_order_begin(*mf_);
|
|
|
|
i != rc->allocation_order_end(*mf_); ++i) {
|
|
|
|
unsigned reg = *i;
|
2004-02-02 15:30:36 +08:00
|
|
|
if (!prt_.isPhysRegReserved(reg) && minWeight > regWeight[reg]) {
|
2003-12-21 13:43:40 +08:00
|
|
|
minWeight = regWeight[reg];
|
|
|
|
minReg = reg;
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
2004-01-23 03:24:43 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\tregister with min weight: "
|
|
|
|
<< mri_->getName(minReg) << " (" << minWeight << ")\n");
|
2003-11-20 11:32:25 +08:00
|
|
|
|
2003-12-21 13:43:40 +08:00
|
|
|
if (cur->weight < minWeight) {
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_ = backupPrt;
|
2004-01-14 08:09:36 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\t\tspilling: " << *cur << '\n');
|
2003-12-21 13:43:40 +08:00
|
|
|
assignVirt2StackSlot(cur->reg);
|
|
|
|
}
|
|
|
|
else {
|
2004-02-02 04:13:26 +08:00
|
|
|
std::vector<bool> toSpill(mri_->getNumRegs(), false);
|
|
|
|
toSpill[minReg] = true;
|
2003-12-21 13:43:40 +08:00
|
|
|
for (const unsigned* as = mri_->getAliasSet(minReg); *as; ++as)
|
2004-02-02 04:13:26 +08:00
|
|
|
toSpill[*as] = true;
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2003-12-24 02:00:33 +08:00
|
|
|
std::vector<unsigned> spilled;
|
2003-12-21 13:43:40 +08:00
|
|
|
for (IntervalPtrs::iterator i = active_.begin();
|
|
|
|
i != active_.end(); ) {
|
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg) &&
|
2004-02-02 04:13:26 +08:00
|
|
|
toSpill[v2pMap_[reg]] &&
|
2003-12-24 02:00:33 +08:00
|
|
|
cur->overlaps(**i)) {
|
|
|
|
spilled.push_back(v2pMap_[reg]);
|
2003-12-25 02:53:31 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\t\tspilling : " << **i << '\n');
|
2003-12-21 13:43:40 +08:00
|
|
|
assignVirt2StackSlot(reg);
|
|
|
|
i = active_.erase(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
|
|
|
}
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
for (IntervalPtrs::iterator i = inactive_.begin();
|
|
|
|
i != inactive_.end(); ) {
|
|
|
|
unsigned reg = (*i)->reg;
|
2004-02-01 09:27:01 +08:00
|
|
|
if (MRegisterInfo::isVirtualRegister(reg) &&
|
2004-02-02 04:13:26 +08:00
|
|
|
toSpill[v2pMap_[reg]] &&
|
2003-12-24 02:00:33 +08:00
|
|
|
cur->overlaps(**i)) {
|
2003-12-25 02:53:31 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\t\tspilling : " << **i << '\n');
|
2003-12-21 13:43:40 +08:00
|
|
|
assignVirt2StackSlot(reg);
|
|
|
|
i = inactive_.erase(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
|
|
|
}
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
|
|
|
|
unsigned physReg = getFreePhysReg(cur);
|
2003-11-20 11:32:25 +08:00
|
|
|
assert(physReg && "no free physical register after spill?");
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_ = backupPrt;
|
2003-12-24 02:00:33 +08:00
|
|
|
for (unsigned i = 0; i < spilled.size(); ++i)
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.delPhysRegUse(spilled[i]);
|
2003-12-13 19:58:10 +08:00
|
|
|
|
2003-12-24 02:00:33 +08:00
|
|
|
assignVirt2PhysReg(cur->reg, physReg);
|
2004-01-07 17:20:58 +08:00
|
|
|
active_.push_back(cur);
|
2003-12-13 19:58:10 +08:00
|
|
|
}
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2004-01-07 17:20:58 +08:00
|
|
|
unsigned RA::getFreePhysReg(IntervalPtrs::value_type cur)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "\t\tgetting free physical register: ");
|
2003-12-21 13:43:40 +08:00
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(cur->reg);
|
2003-12-29 01:58:18 +08:00
|
|
|
|
2003-12-21 13:43:40 +08:00
|
|
|
for (TargetRegisterClass::iterator i = rc->allocation_order_begin(*mf_);
|
|
|
|
i != rc->allocation_order_end(*mf_); ++i) {
|
|
|
|
unsigned reg = *i;
|
2004-02-02 15:30:36 +08:00
|
|
|
if (prt_.isPhysRegAvail(reg)) {
|
2003-12-21 13:43:40 +08:00
|
|
|
DEBUG(std::cerr << mri_->getName(reg) << '\n');
|
|
|
|
return reg;
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(std::cerr << "no free register\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-21 13:43:40 +08:00
|
|
|
unsigned RA::getFreeTempPhysReg(unsigned virtReg)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "\t\tgetting free temporary physical register: ");
|
|
|
|
|
2003-12-21 13:43:40 +08:00
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(virtReg);
|
|
|
|
// go in reverse allocation order for the temp registers
|
2004-02-02 04:13:26 +08:00
|
|
|
typedef std::reverse_iterator<TargetRegisterClass::iterator> TRCRevIter;
|
|
|
|
for (TRCRevIter
|
|
|
|
i(rc->allocation_order_end(*mf_)),
|
|
|
|
e(rc->allocation_order_begin(*mf_)); i != e; ++i) {
|
2003-12-21 13:43:40 +08:00
|
|
|
unsigned reg = *i;
|
2004-02-02 15:30:36 +08:00
|
|
|
if (prt_.isReservedPhysRegAvail(reg)) {
|
2003-12-21 13:43:40 +08:00
|
|
|
DEBUG(std::cerr << mri_->getName(reg) << '\n');
|
|
|
|
return reg;
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
2003-12-21 13:43:40 +08:00
|
|
|
|
2003-11-20 11:32:25 +08:00
|
|
|
assert(0 && "no free temporary physical register?");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-02-06 11:15:40 +08:00
|
|
|
RA::Virt2PhysMap::iterator
|
|
|
|
RA::assignVirt2PhysReg(unsigned virtReg, unsigned physReg)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
2004-02-06 11:15:40 +08:00
|
|
|
bool inserted;
|
|
|
|
Virt2PhysMap::iterator it;
|
|
|
|
tie(it, inserted) = v2pMap_.insert(std::make_pair(virtReg, physReg));
|
2004-01-23 03:24:43 +08:00
|
|
|
assert(inserted && "attempting to assign a virt->phys mapping to an "
|
|
|
|
"already mapped register");
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.addPhysRegUse(physReg);
|
2004-02-06 11:15:40 +08:00
|
|
|
return it;
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2004-02-06 11:15:40 +08:00
|
|
|
void RA::clearVirtReg(Virt2PhysMap::iterator it)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
assert(it != v2pMap_.end() &&
|
|
|
|
"attempting to clear a not allocated virtual register");
|
|
|
|
unsigned physReg = it->second;
|
2004-02-02 15:30:36 +08:00
|
|
|
prt_.delPhysRegUse(physReg);
|
2004-01-23 03:24:43 +08:00
|
|
|
v2pMap_.erase(it);
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\tcleared register " << mri_->getName(physReg)
|
|
|
|
<< "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void RA::assignVirt2StackSlot(unsigned virtReg)
|
|
|
|
{
|
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(virtReg);
|
|
|
|
int frameIndex = mf_->getFrameInfo()->CreateStackObject(rc);
|
|
|
|
|
|
|
|
bool inserted = v2ssMap_.insert(std::make_pair(virtReg, frameIndex)).second;
|
|
|
|
assert(inserted &&
|
|
|
|
"attempt to assign stack slot to already assigned register?");
|
|
|
|
// if the virtual register was previously assigned clear the mapping
|
|
|
|
// and free the virtual register
|
2004-02-06 11:15:40 +08:00
|
|
|
Virt2PhysMap::iterator it = v2pMap_.find(virtReg);
|
|
|
|
if (it != v2pMap_.end()) {
|
|
|
|
clearVirtReg(it);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-04 11:57:28 +08:00
|
|
|
int RA::getStackSlot(unsigned virtReg)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
2003-12-04 11:57:28 +08:00
|
|
|
Virt2StackSlotMap::iterator it = v2ssMap_.find(virtReg);
|
|
|
|
assert(it != v2ssMap_.end() &&
|
|
|
|
"attempt to get stack slot on register that does not live on the stack");
|
|
|
|
return it->second;
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2004-02-06 11:15:40 +08:00
|
|
|
void RA::spillVirtReg(Virt2PhysMap::iterator it)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
2004-02-06 11:15:40 +08:00
|
|
|
assert(it != v2pMap_.end() &&
|
|
|
|
"attempt to spill a not allocated virtual register");
|
|
|
|
unsigned virtReg = it->first;
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << "\t\t\tspilling register: " << virtReg);
|
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(virtReg);
|
2003-12-04 11:57:28 +08:00
|
|
|
int frameIndex = getStackSlot(virtReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << " to stack slot #" << frameIndex << '\n');
|
|
|
|
++numSpilled;
|
|
|
|
instrAdded_ += mri_->storeRegToStackSlot(*currentMbb_, currentInstr_,
|
2004-02-06 11:15:40 +08:00
|
|
|
it->second, frameIndex, rc);
|
|
|
|
clearVirtReg(it);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
2004-02-06 11:15:40 +08:00
|
|
|
RA::Virt2PhysMap::iterator
|
|
|
|
RA::loadVirt2PhysReg(unsigned virtReg, unsigned physReg)
|
2003-11-20 11:32:25 +08:00
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "\t\t\tloading register: " << virtReg);
|
|
|
|
const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(virtReg);
|
2003-12-04 11:57:28 +08:00
|
|
|
int frameIndex = getStackSlot(virtReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
DEBUG(std::cerr << " from stack slot #" << frameIndex << '\n');
|
2003-12-19 04:25:31 +08:00
|
|
|
++numReloaded;
|
2003-11-20 11:32:25 +08:00
|
|
|
instrAdded_ += mri_->loadRegFromStackSlot(*currentMbb_, currentInstr_,
|
|
|
|
physReg, frameIndex, rc);
|
2004-02-06 11:15:40 +08:00
|
|
|
return assignVirt2PhysReg(virtReg, physReg);
|
2003-11-20 11:32:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass* llvm::createLinearScanRegisterAllocator() {
|
|
|
|
return new RA();
|
|
|
|
}
|