2010-12-08 03:26:16 +00:00
|
|
|
//===-- RegAllocGreedy.cpp - greedy register allocator --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the RAGreedy function pass for register allocation in
|
|
|
|
// optimized builds.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "regalloc"
|
2010-12-10 22:21:05 +00:00
|
|
|
#include "AllocationOrder.h"
|
2010-12-08 03:26:16 +00:00
|
|
|
#include "LiveIntervalUnion.h"
|
|
|
|
#include "RegAllocBase.h"
|
|
|
|
#include "Spiller.h"
|
|
|
|
#include "VirtRegMap.h"
|
|
|
|
#include "VirtRegRewriter.h"
|
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/PassAnalysisSupport.h"
|
|
|
|
#include "llvm/CodeGen/CalcSpillWeights.h"
|
|
|
|
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
|
|
|
#include "llvm/CodeGen/LiveStackAnalysis.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
|
|
|
#include "llvm/CodeGen/RegisterCoalescer.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-12-11 00:19:56 +00:00
|
|
|
#include "llvm/Support/Timer.h"
|
2010-12-08 03:26:16 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
|
|
|
|
createGreedyRegisterAllocator);
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class RAGreedy : public MachineFunctionPass, public RegAllocBase {
|
|
|
|
// context
|
|
|
|
MachineFunction *MF;
|
|
|
|
BitVector ReservedRegs;
|
|
|
|
|
|
|
|
// analyses
|
|
|
|
LiveStacks *LS;
|
|
|
|
|
|
|
|
// state
|
|
|
|
std::auto_ptr<Spiller> SpillerInstance;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RAGreedy();
|
|
|
|
|
|
|
|
/// Return the pass name.
|
|
|
|
virtual const char* getPassName() const {
|
2010-12-11 00:19:56 +00:00
|
|
|
return "Greedy Register Allocator";
|
2010-12-08 03:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// RAGreedy analysis usage.
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
|
|
|
|
virtual void releaseMemory();
|
|
|
|
|
|
|
|
virtual Spiller &spiller() { return *SpillerInstance; }
|
|
|
|
|
2010-12-08 22:57:16 +00:00
|
|
|
virtual float getPriority(LiveInterval *LI);
|
2010-12-08 22:22:41 +00:00
|
|
|
|
2010-12-08 03:26:16 +00:00
|
|
|
virtual unsigned selectOrSplit(LiveInterval &VirtReg,
|
|
|
|
SmallVectorImpl<LiveInterval*> &SplitVRegs);
|
|
|
|
|
|
|
|
/// Perform register allocation.
|
|
|
|
virtual bool runOnMachineFunction(MachineFunction &mf);
|
|
|
|
|
|
|
|
static char ID;
|
2010-12-09 18:15:21 +00:00
|
|
|
|
|
|
|
private:
|
2010-12-14 00:37:49 +00:00
|
|
|
bool checkUncachedInterference(LiveInterval&, unsigned);
|
|
|
|
LiveInterval *getSingleInterference(LiveInterval&, unsigned);
|
2010-12-09 18:15:21 +00:00
|
|
|
bool reassignVReg(LiveInterval &InterferingVReg, unsigned OldPhysReg);
|
|
|
|
bool reassignInterferences(LiveInterval &VirtReg, unsigned PhysReg);
|
2010-12-14 00:37:44 +00:00
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
unsigned tryReassign(LiveInterval&, AllocationOrder&);
|
2010-12-14 00:37:44 +00:00
|
|
|
unsigned trySplit(LiveInterval&, AllocationOrder&,
|
|
|
|
SmallVectorImpl<LiveInterval*>&);
|
2010-12-08 03:26:16 +00:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char RAGreedy::ID = 0;
|
|
|
|
|
|
|
|
FunctionPass* llvm::createGreedyRegisterAllocator() {
|
|
|
|
return new RAGreedy();
|
|
|
|
}
|
|
|
|
|
|
|
|
RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
|
|
|
|
initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
|
|
|
|
initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeLiveStacksPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
|
|
|
|
initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesCFG();
|
|
|
|
AU.addRequired<AliasAnalysis>();
|
|
|
|
AU.addPreserved<AliasAnalysis>();
|
|
|
|
AU.addRequired<LiveIntervals>();
|
|
|
|
AU.addPreserved<SlotIndexes>();
|
|
|
|
if (StrongPHIElim)
|
|
|
|
AU.addRequiredID(StrongPHIEliminationID);
|
|
|
|
AU.addRequiredTransitive<RegisterCoalescer>();
|
|
|
|
AU.addRequired<CalculateSpillWeights>();
|
|
|
|
AU.addRequired<LiveStacks>();
|
|
|
|
AU.addPreserved<LiveStacks>();
|
|
|
|
AU.addRequiredID(MachineDominatorsID);
|
|
|
|
AU.addPreservedID(MachineDominatorsID);
|
|
|
|
AU.addRequired<MachineLoopInfo>();
|
|
|
|
AU.addPreserved<MachineLoopInfo>();
|
|
|
|
AU.addRequired<VirtRegMap>();
|
|
|
|
AU.addPreserved<VirtRegMap>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RAGreedy::releaseMemory() {
|
|
|
|
SpillerInstance.reset(0);
|
|
|
|
RegAllocBase::releaseMemory();
|
|
|
|
}
|
|
|
|
|
2010-12-08 22:57:16 +00:00
|
|
|
float RAGreedy::getPriority(LiveInterval *LI) {
|
|
|
|
float Priority = LI->weight;
|
|
|
|
|
|
|
|
// Prioritize hinted registers so they are allocated first.
|
|
|
|
std::pair<unsigned, unsigned> Hint;
|
|
|
|
if (Hint.first || Hint.second) {
|
|
|
|
// The hint can be target specific, a virtual register, or a physreg.
|
|
|
|
Priority *= 2;
|
|
|
|
|
|
|
|
// Prefer physreg hints above anything else.
|
|
|
|
if (Hint.first == 0 && TargetRegisterInfo::isPhysicalRegister(Hint.second))
|
|
|
|
Priority *= 2;
|
|
|
|
}
|
|
|
|
return Priority;
|
|
|
|
}
|
|
|
|
|
2010-12-10 20:45:04 +00:00
|
|
|
// Check interference without using the cache.
|
|
|
|
bool RAGreedy::checkUncachedInterference(LiveInterval &VirtReg,
|
|
|
|
unsigned PhysReg) {
|
2010-12-14 23:38:19 +00:00
|
|
|
for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
|
|
|
|
LiveIntervalUnion::Query subQ(&VirtReg, &PhysReg2LiveUnion[*AliasI]);
|
2010-12-10 20:45:04 +00:00
|
|
|
if (subQ.checkInterference())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
/// getSingleInterference - Return the single interfering virtual register
|
|
|
|
/// assigned to PhysReg. Return 0 if more than one virtual register is
|
|
|
|
/// interfering.
|
|
|
|
LiveInterval *RAGreedy::getSingleInterference(LiveInterval &VirtReg,
|
|
|
|
unsigned PhysReg) {
|
2010-12-14 23:38:19 +00:00
|
|
|
// Check physreg and aliases.
|
2010-12-14 00:37:49 +00:00
|
|
|
LiveInterval *Interference = 0;
|
2010-12-14 23:38:19 +00:00
|
|
|
for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
|
2010-12-14 00:37:49 +00:00
|
|
|
LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
|
|
|
|
if (Q.checkInterference()) {
|
2010-12-14 17:47:36 +00:00
|
|
|
if (Interference)
|
2010-12-14 00:37:49 +00:00
|
|
|
return 0;
|
|
|
|
Q.collectInterferingVRegs(1);
|
2010-12-14 17:47:36 +00:00
|
|
|
if (!Q.seenAllInterferences())
|
|
|
|
return 0;
|
2010-12-14 00:37:49 +00:00
|
|
|
Interference = Q.interferingVRegs().front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Interference;
|
|
|
|
}
|
|
|
|
|
2010-12-09 18:15:21 +00:00
|
|
|
// Attempt to reassign this virtual register to a different physical register.
|
|
|
|
//
|
|
|
|
// FIXME: we are not yet caching these "second-level" interferences discovered
|
|
|
|
// in the sub-queries. These interferences can change with each call to
|
|
|
|
// selectOrSplit. However, we could implement a "may-interfere" cache that
|
|
|
|
// could be conservatively dirtied when we reassign or split.
|
|
|
|
//
|
|
|
|
// FIXME: This may result in a lot of alias queries. We could summarize alias
|
|
|
|
// live intervals in their parent register's live union, but it's messy.
|
|
|
|
bool RAGreedy::reassignVReg(LiveInterval &InterferingVReg,
|
2010-12-14 00:37:49 +00:00
|
|
|
unsigned WantedPhysReg) {
|
|
|
|
assert(TargetRegisterInfo::isVirtualRegister(InterferingVReg.reg) &&
|
|
|
|
"Can only reassign virtual registers");
|
|
|
|
assert(TRI->regsOverlap(WantedPhysReg, VRM->getPhys(InterferingVReg.reg)) &&
|
2010-12-09 18:15:21 +00:00
|
|
|
"inconsistent phys reg assigment");
|
|
|
|
|
2010-12-10 22:21:05 +00:00
|
|
|
AllocationOrder Order(InterferingVReg.reg, *VRM, ReservedRegs);
|
|
|
|
while (unsigned PhysReg = Order.next()) {
|
2010-12-14 00:37:49 +00:00
|
|
|
// Don't reassign to a WantedPhysReg alias.
|
|
|
|
if (TRI->regsOverlap(PhysReg, WantedPhysReg))
|
2010-12-09 18:15:21 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-10 20:45:04 +00:00
|
|
|
if (checkUncachedInterference(InterferingVReg, PhysReg))
|
2010-12-09 18:15:21 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Reassign the interfering virtual reg to this physical reg.
|
2010-12-14 00:37:49 +00:00
|
|
|
unsigned OldAssign = VRM->getPhys(InterferingVReg.reg);
|
|
|
|
DEBUG(dbgs() << "reassigning: " << InterferingVReg << " from " <<
|
|
|
|
TRI->getName(OldAssign) << " to " << TRI->getName(PhysReg) << '\n');
|
|
|
|
PhysReg2LiveUnion[OldAssign].extract(InterferingVReg);
|
2010-12-09 18:15:21 +00:00
|
|
|
VRM->clearVirt(InterferingVReg.reg);
|
|
|
|
VRM->assignVirt2Phys(InterferingVReg.reg, PhysReg);
|
|
|
|
PhysReg2LiveUnion[PhysReg].unify(InterferingVReg);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
/// reassignInterferences - Reassign all interferences to different physical
|
|
|
|
/// registers such that Virtreg can be assigned to PhysReg.
|
|
|
|
/// Currently this only works with a single interference.
|
|
|
|
/// @param VirtReg Currently unassigned virtual register.
|
|
|
|
/// @param PhysReg Physical register to be cleared.
|
|
|
|
/// @return True on success, false if nothing was changed.
|
2010-12-09 18:15:21 +00:00
|
|
|
bool RAGreedy::reassignInterferences(LiveInterval &VirtReg, unsigned PhysReg) {
|
2010-12-14 00:37:49 +00:00
|
|
|
LiveInterval *InterferingVReg = getSingleInterference(VirtReg, PhysReg);
|
|
|
|
if (!InterferingVReg)
|
2010-12-09 18:15:21 +00:00
|
|
|
return false;
|
2010-12-14 00:37:49 +00:00
|
|
|
if (TargetRegisterInfo::isPhysicalRegister(InterferingVReg->reg))
|
|
|
|
return false;
|
|
|
|
return reassignVReg(*InterferingVReg, PhysReg);
|
|
|
|
}
|
2010-12-09 18:15:21 +00:00
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
/// tryReassign - Try to reassign interferences to different physregs.
|
|
|
|
/// @param VirtReg Currently unassigned virtual register.
|
|
|
|
/// @param Order Physregs to try.
|
|
|
|
/// @return Physreg to assign VirtReg, or 0.
|
|
|
|
unsigned RAGreedy::tryReassign(LiveInterval &VirtReg, AllocationOrder &Order) {
|
|
|
|
NamedRegionTimer T("Reassign", TimerGroupName, TimePassesIsEnabled);
|
|
|
|
Order.rewind();
|
|
|
|
while (unsigned PhysReg = Order.next())
|
|
|
|
if (reassignInterferences(VirtReg, PhysReg))
|
|
|
|
return PhysReg;
|
|
|
|
return 0;
|
2010-12-09 18:15:21 +00:00
|
|
|
}
|
|
|
|
|
2010-12-14 00:37:44 +00:00
|
|
|
/// trySplit - Try to split VirtReg or one of its interferences, making it
|
|
|
|
/// assignable.
|
|
|
|
/// @return Physreg when VirtReg may be assigned and/or new SplitVRegs.
|
|
|
|
unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
|
|
|
|
SmallVectorImpl<LiveInterval*>&SplitVRegs) {
|
|
|
|
NamedRegionTimer T("Splitter", TimerGroupName, TimePassesIsEnabled);
|
2010-12-14 21:14:55 +00:00
|
|
|
DEBUG({
|
|
|
|
Order.rewind();
|
|
|
|
while (unsigned PhysReg = Order.next()) {
|
|
|
|
query(VirtReg, PhysReg).print(dbgs(), TRI);
|
|
|
|
for (const unsigned *AI = TRI->getAliasSet(PhysReg); *AI; ++AI)
|
|
|
|
query(VirtReg, *AI).print(dbgs(), TRI);
|
|
|
|
}
|
|
|
|
});
|
2010-12-14 00:37:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-08 03:26:16 +00:00
|
|
|
unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
|
|
|
|
SmallVectorImpl<LiveInterval*> &SplitVRegs) {
|
|
|
|
// Populate a list of physical register spill candidates.
|
2010-12-14 00:58:47 +00:00
|
|
|
SmallVector<unsigned, 8> PhysRegSpillCands;
|
2010-12-08 03:26:16 +00:00
|
|
|
|
|
|
|
// Check for an available register in this class.
|
2010-12-10 22:21:05 +00:00
|
|
|
AllocationOrder Order(VirtReg.reg, *VRM, ReservedRegs);
|
|
|
|
while (unsigned PhysReg = Order.next()) {
|
2010-12-08 03:26:16 +00:00
|
|
|
// Check interference and as a side effect, intialize queries for this
|
|
|
|
// VirtReg and its aliases.
|
2010-12-09 18:15:21 +00:00
|
|
|
unsigned InterfReg = checkPhysRegInterference(VirtReg, PhysReg);
|
|
|
|
if (InterfReg == 0) {
|
2010-12-08 03:26:16 +00:00
|
|
|
// Found an available register.
|
|
|
|
return PhysReg;
|
|
|
|
}
|
2010-12-08 23:51:35 +00:00
|
|
|
assert(!VirtReg.empty() && "Empty VirtReg has interference");
|
2010-12-09 18:15:21 +00:00
|
|
|
LiveInterval *InterferingVirtReg =
|
|
|
|
Queries[InterfReg].firstInterference().liveUnionPos().value();
|
2010-12-08 03:26:16 +00:00
|
|
|
|
2010-12-09 18:15:21 +00:00
|
|
|
// The current VirtReg must either be spillable, or one of its interferences
|
2010-12-08 03:26:16 +00:00
|
|
|
// must have less spill weight.
|
2010-12-14 00:37:49 +00:00
|
|
|
if (InterferingVirtReg->weight < VirtReg.weight )
|
|
|
|
PhysRegSpillCands.push_back(PhysReg);
|
2010-12-08 03:26:16 +00:00
|
|
|
}
|
2010-12-09 18:15:21 +00:00
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
// Try to reassign interferences.
|
|
|
|
if (unsigned PhysReg = tryReassign(VirtReg, Order))
|
|
|
|
return PhysReg;
|
2010-12-09 18:15:21 +00:00
|
|
|
|
2010-12-14 00:37:49 +00:00
|
|
|
// Try splitting VirtReg or interferences.
|
2010-12-14 00:37:44 +00:00
|
|
|
unsigned PhysReg = trySplit(VirtReg, Order, SplitVRegs);
|
|
|
|
if (PhysReg || !SplitVRegs.empty())
|
|
|
|
return PhysReg;
|
|
|
|
|
2010-12-08 03:26:16 +00:00
|
|
|
// Try to spill another interfering reg with less spill weight.
|
2010-12-11 00:19:56 +00:00
|
|
|
NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
|
2010-12-08 03:26:16 +00:00
|
|
|
//
|
2010-12-09 18:15:21 +00:00
|
|
|
// FIXME: do this in two steps: (1) check for unspillable interferences while
|
|
|
|
// accumulating spill weight; (2) spill the interferences with lowest
|
|
|
|
// aggregate spill weight.
|
2010-12-08 03:26:16 +00:00
|
|
|
for (SmallVectorImpl<unsigned>::iterator PhysRegI = PhysRegSpillCands.begin(),
|
|
|
|
PhysRegE = PhysRegSpillCands.end(); PhysRegI != PhysRegE; ++PhysRegI) {
|
|
|
|
|
|
|
|
if (!spillInterferences(VirtReg, *PhysRegI, SplitVRegs)) continue;
|
|
|
|
|
|
|
|
assert(checkPhysRegInterference(VirtReg, *PhysRegI) == 0 &&
|
|
|
|
"Interference after spill.");
|
|
|
|
// Tell the caller to allocate to this newly freed physical register.
|
|
|
|
return *PhysRegI;
|
|
|
|
}
|
2010-12-09 18:15:21 +00:00
|
|
|
|
2010-12-08 03:26:16 +00:00
|
|
|
// No other spill candidates were found, so spill the current VirtReg.
|
|
|
|
DEBUG(dbgs() << "spilling: " << VirtReg << '\n');
|
|
|
|
SmallVector<LiveInterval*, 1> pendingSpills;
|
|
|
|
|
|
|
|
spiller().spill(&VirtReg, SplitVRegs, pendingSpills);
|
|
|
|
|
|
|
|
// The live virtual register requesting allocation was spilled, so tell
|
|
|
|
// the caller not to allocate anything during this round.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
|
|
|
|
DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
|
|
|
|
<< "********** Function: "
|
|
|
|
<< ((Value*)mf.getFunction())->getName() << '\n');
|
|
|
|
|
|
|
|
MF = &mf;
|
2010-12-10 23:49:00 +00:00
|
|
|
RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
|
2010-12-08 03:26:16 +00:00
|
|
|
|
|
|
|
ReservedRegs = TRI->getReservedRegs(*MF);
|
2010-12-10 22:54:44 +00:00
|
|
|
SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
|
2010-12-08 03:26:16 +00:00
|
|
|
allocatePhysRegs();
|
|
|
|
addMBBLiveIns(MF);
|
|
|
|
|
|
|
|
// Run rewriter
|
2010-12-11 00:19:56 +00:00
|
|
|
{
|
|
|
|
NamedRegionTimer T("Rewriter", TimerGroupName, TimePassesIsEnabled);
|
|
|
|
std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter());
|
|
|
|
rewriter->runOnMachineFunction(*MF, *VRM, LIS);
|
|
|
|
}
|
2010-12-08 03:26:16 +00:00
|
|
|
|
|
|
|
// The pass output is in VirtRegMap. Release all the transient data.
|
|
|
|
releaseMemory();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|