2011-06-02 02:19:35 +00:00
|
|
|
//===-- RegisterClassInfo.cpp - Dynamic Register Class Info ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the RegisterClassInfo class which provides dynamic
|
|
|
|
// information about target register classes. Callee saved and reserved
|
|
|
|
// registers depends on calling conventions and other dynamic information, so
|
|
|
|
// some things cannot be determined statically.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-06-03 20:34:50 +00:00
|
|
|
#define DEBUG_TYPE "regalloc"
|
2012-06-06 20:29:31 +00:00
|
|
|
#include "llvm/CodeGen/RegisterClassInfo.h"
|
2012-10-15 21:57:41 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2012-02-24 18:34:20 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2011-06-03 20:34:50 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2011-06-03 20:34:50 +00:00
|
|
|
|
2011-06-02 02:19:35 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-02-24 21:52:44 +00:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
StressRA("stress-regalloc", cl::Hidden, cl::init(0), cl::value_desc("N"),
|
|
|
|
cl::desc("Limit all regclasses to N registers"));
|
2012-02-24 18:34:20 +00:00
|
|
|
|
2011-06-02 05:43:49 +00:00
|
|
|
RegisterClassInfo::RegisterClassInfo() : Tag(0), MF(0), TRI(0), CalleeSaved(0)
|
|
|
|
{}
|
2011-06-02 02:19:35 +00:00
|
|
|
|
|
|
|
void RegisterClassInfo::runOnMachineFunction(const MachineFunction &mf) {
|
|
|
|
bool Update = false;
|
|
|
|
MF = &mf;
|
|
|
|
|
|
|
|
// Allocate new array the first time we see a new target.
|
|
|
|
if (MF->getTarget().getRegisterInfo() != TRI) {
|
|
|
|
TRI = MF->getTarget().getRegisterInfo();
|
|
|
|
RegClass.reset(new RCInfo[TRI->getNumRegClasses()]);
|
|
|
|
Update = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this MF have different CSRs?
|
2012-11-29 03:34:17 +00:00
|
|
|
const MCPhysReg *CSR = TRI->getCalleeSavedRegs(MF);
|
2011-06-02 05:43:49 +00:00
|
|
|
if (Update || CSR != CalleeSaved) {
|
2011-06-02 02:19:35 +00:00
|
|
|
// Build a CSRNum map. Every CSR alias gets an entry pointing to the last
|
|
|
|
// overlapping CSR.
|
2011-06-02 22:22:43 +00:00
|
|
|
CSRNum.clear();
|
|
|
|
CSRNum.resize(TRI->getNumRegs(), 0);
|
2011-06-02 02:19:35 +00:00
|
|
|
for (unsigned N = 0; unsigned Reg = CSR[N]; ++N)
|
2012-06-01 23:28:30 +00:00
|
|
|
for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
|
|
|
|
CSRNum[*AI] = N + 1; // 0 means no CSR, 1 means CalleeSaved[0], ...
|
2011-06-02 02:19:35 +00:00
|
|
|
Update = true;
|
|
|
|
}
|
|
|
|
CalleeSaved = CSR;
|
|
|
|
|
|
|
|
// Different reserved registers?
|
2012-10-15 21:57:41 +00:00
|
|
|
const BitVector &RR = MF->getRegInfo().getReservedRegs();
|
|
|
|
if (Reserved.size() != RR.size() || RR != Reserved) {
|
2011-06-02 02:19:35 +00:00
|
|
|
Update = true;
|
2012-10-15 21:57:41 +00:00
|
|
|
Reserved = RR;
|
|
|
|
}
|
2011-06-02 02:19:35 +00:00
|
|
|
|
|
|
|
// Invalidate cached information from previous function.
|
|
|
|
if (Update)
|
|
|
|
++Tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// compute - Compute the preferred allocation order for RC with reserved
|
|
|
|
/// registers filtered out. Volatile registers come first followed by CSR
|
|
|
|
/// aliases ordered according to the CSR order specified by the target.
|
|
|
|
void RegisterClassInfo::compute(const TargetRegisterClass *RC) const {
|
|
|
|
RCInfo &RCI = RegClass[RC->getID()];
|
|
|
|
|
|
|
|
// Raw register count, including all reserved regs.
|
|
|
|
unsigned NumRegs = RC->getNumRegs();
|
|
|
|
|
|
|
|
if (!RCI.Order)
|
2012-11-29 03:34:17 +00:00
|
|
|
RCI.Order.reset(new MCPhysReg[NumRegs]);
|
2011-06-02 02:19:35 +00:00
|
|
|
|
|
|
|
unsigned N = 0;
|
2012-11-29 03:34:17 +00:00
|
|
|
SmallVector<MCPhysReg, 16> CSRAlias;
|
2013-01-12 00:54:59 +00:00
|
|
|
unsigned MinCost = 0xff;
|
|
|
|
unsigned LastCost = ~0u;
|
|
|
|
unsigned LastCostChange = 0;
|
2011-06-02 02:19:35 +00:00
|
|
|
|
|
|
|
// FIXME: Once targets reserve registers instead of removing them from the
|
|
|
|
// allocation order, we can simply use begin/end here.
|
2012-11-29 03:34:17 +00:00
|
|
|
ArrayRef<MCPhysReg> RawOrder = RC->getRawAllocationOrder(*MF);
|
2011-06-16 17:42:25 +00:00
|
|
|
for (unsigned i = 0; i != RawOrder.size(); ++i) {
|
|
|
|
unsigned PhysReg = RawOrder[i];
|
2011-06-02 02:19:35 +00:00
|
|
|
// Remove reserved registers from the allocation order.
|
|
|
|
if (Reserved.test(PhysReg))
|
|
|
|
continue;
|
2013-01-12 00:54:59 +00:00
|
|
|
unsigned Cost = TRI->getCostPerUse(PhysReg);
|
|
|
|
MinCost = std::min(MinCost, Cost);
|
|
|
|
|
2011-06-06 16:36:30 +00:00
|
|
|
if (CSRNum[PhysReg])
|
|
|
|
// PhysReg aliases a CSR, save it for later.
|
|
|
|
CSRAlias.push_back(PhysReg);
|
2013-01-12 00:54:59 +00:00
|
|
|
else {
|
|
|
|
if (Cost != LastCost)
|
|
|
|
LastCostChange = N;
|
2011-06-02 02:19:35 +00:00
|
|
|
RCI.Order[N++] = PhysReg;
|
2013-01-12 00:54:59 +00:00
|
|
|
LastCost = Cost;
|
|
|
|
}
|
2011-06-02 02:19:35 +00:00
|
|
|
}
|
|
|
|
RCI.NumRegs = N + CSRAlias.size();
|
|
|
|
assert (RCI.NumRegs <= NumRegs && "Allocation order larger than regclass");
|
|
|
|
|
2011-06-06 16:36:30 +00:00
|
|
|
// CSR aliases go after the volatile registers, preserve the target's order.
|
2013-01-12 00:54:59 +00:00
|
|
|
for (unsigned i = 0, e = CSRAlias.size(); i != e; ++i) {
|
|
|
|
unsigned PhysReg = CSRAlias[i];
|
|
|
|
unsigned Cost = TRI->getCostPerUse(PhysReg);
|
|
|
|
if (Cost != LastCost)
|
|
|
|
LastCostChange = N;
|
|
|
|
RCI.Order[N++] = PhysReg;
|
|
|
|
LastCost = Cost;
|
|
|
|
}
|
2011-06-02 02:19:35 +00:00
|
|
|
|
2012-02-24 18:34:20 +00:00
|
|
|
// Register allocator stress test. Clip register class to N registers.
|
|
|
|
if (StressRA && RCI.NumRegs > StressRA)
|
|
|
|
RCI.NumRegs = StressRA;
|
|
|
|
|
2011-08-05 21:28:14 +00:00
|
|
|
// Check if RC is a proper sub-class.
|
|
|
|
if (const TargetRegisterClass *Super = TRI->getLargestLegalSuperClass(RC))
|
|
|
|
if (Super != RC && getNumAllocatableRegs(Super) > RCI.NumRegs)
|
|
|
|
RCI.ProperSubClass = true;
|
|
|
|
|
2013-01-12 00:54:59 +00:00
|
|
|
RCI.MinCost = uint8_t(MinCost);
|
|
|
|
RCI.LastCostChange = LastCostChange;
|
|
|
|
|
2011-06-03 20:34:50 +00:00
|
|
|
DEBUG({
|
|
|
|
dbgs() << "AllocationOrder(" << RC->getName() << ") = [";
|
2011-06-13 03:26:42 +00:00
|
|
|
for (unsigned I = 0; I != RCI.NumRegs; ++I)
|
2011-06-03 20:34:50 +00:00
|
|
|
dbgs() << ' ' << PrintReg(RCI.Order[I], TRI);
|
2011-08-05 21:28:14 +00:00
|
|
|
dbgs() << (RCI.ProperSubClass ? " ] (sub-class)\n" : " ]\n");
|
2011-06-03 20:34:50 +00:00
|
|
|
});
|
|
|
|
|
2011-06-02 02:19:35 +00:00
|
|
|
// RCI is now up-to-date.
|
|
|
|
RCI.Tag = Tag;
|
|
|
|
}
|
|
|
|
|