mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Move RABasic::addMBBLiveIns to the base class, it is generally useful.
Minor optimization to the use of IntervalMap iterators. They are fairly heavyweight, so prefer SI.valid() over SI != end(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121217 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
255eafbd49
commit
1b19dc1d8b
@ -75,6 +75,7 @@ public:
|
|||||||
// by their starting position.
|
// by their starting position.
|
||||||
SegmentIter begin() { return Segments.begin(); }
|
SegmentIter begin() { return Segments.begin(); }
|
||||||
SegmentIter end() { return Segments.end(); }
|
SegmentIter end() { return Segments.end(); }
|
||||||
|
bool empty() { return Segments.empty(); }
|
||||||
|
|
||||||
// Add a live virtual register to this union and merge its segments.
|
// Add a live virtual register to this union and merge its segments.
|
||||||
void unify(LiveInterval &VirtReg);
|
void unify(LiveInterval &VirtReg);
|
||||||
|
@ -149,6 +149,9 @@ protected:
|
|||||||
bool spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
|
bool spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
|
||||||
SmallVectorImpl<LiveInterval*> &SplitVRegs);
|
SmallVectorImpl<LiveInterval*> &SplitVRegs);
|
||||||
|
|
||||||
|
/// addMBBLiveIns - Add physreg liveins to basic blocks.
|
||||||
|
void addMBBLiveIns(MachineFunction *);
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
// Verify each LiveIntervalUnion.
|
// Verify each LiveIntervalUnion.
|
||||||
void verify();
|
void verify();
|
||||||
|
@ -110,9 +110,6 @@ public:
|
|||||||
virtual bool runOnMachineFunction(MachineFunction &mf);
|
virtual bool runOnMachineFunction(MachineFunction &mf);
|
||||||
|
|
||||||
static char ID;
|
static char ID;
|
||||||
|
|
||||||
private:
|
|
||||||
void addMBBLiveIns();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
char RABasic::ID = 0;
|
char RABasic::ID = 0;
|
||||||
@ -395,6 +392,36 @@ RegAllocBase::spillInterferences(LiveInterval &VirtReg, unsigned PhysReg,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add newly allocated physical registers to the MBB live in sets.
|
||||||
|
void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
|
||||||
|
typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
|
||||||
|
MBBVec liveInMBBs;
|
||||||
|
MachineBasicBlock &entryMBB = *MF->begin();
|
||||||
|
|
||||||
|
for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
|
||||||
|
LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
|
||||||
|
if (LiveUnion.empty())
|
||||||
|
continue;
|
||||||
|
for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(); SI.valid();
|
||||||
|
++SI) {
|
||||||
|
|
||||||
|
// Find the set of basic blocks which this range is live into...
|
||||||
|
liveInMBBs.clear();
|
||||||
|
if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
|
||||||
|
|
||||||
|
// And add the physreg for this interval to their live-in sets.
|
||||||
|
for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
|
||||||
|
I != E; ++I) {
|
||||||
|
MachineBasicBlock *MBB = *I;
|
||||||
|
if (MBB == &entryMBB) continue;
|
||||||
|
if (MBB->isLiveIn(PhysReg)) continue;
|
||||||
|
MBB->addLiveIn(PhysReg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// RABasic Implementation
|
// RABasic Implementation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -467,35 +494,6 @@ unsigned RABasic::selectOrSplit(LiveInterval &VirtReg,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add newly allocated physical registers to the MBB live in sets.
|
|
||||||
void RABasic::addMBBLiveIns() {
|
|
||||||
typedef SmallVector<MachineBasicBlock*, 8> MBBVec;
|
|
||||||
MBBVec liveInMBBs;
|
|
||||||
MachineBasicBlock &entryMBB = *MF->begin();
|
|
||||||
|
|
||||||
for (unsigned PhysReg = 0; PhysReg < PhysReg2LiveUnion.numRegs(); ++PhysReg) {
|
|
||||||
LiveIntervalUnion &LiveUnion = PhysReg2LiveUnion[PhysReg];
|
|
||||||
|
|
||||||
for (LiveIntervalUnion::SegmentIter SI = LiveUnion.begin(),
|
|
||||||
SegEnd = LiveUnion.end();
|
|
||||||
SI != SegEnd; ++SI) {
|
|
||||||
|
|
||||||
// Find the set of basic blocks which this range is live into...
|
|
||||||
liveInMBBs.clear();
|
|
||||||
if (!LIS->findLiveInMBBs(SI.start(), SI.stop(), liveInMBBs)) continue;
|
|
||||||
|
|
||||||
// And add the physreg for this interval to their live-in sets.
|
|
||||||
for (MBBVec::iterator I = liveInMBBs.begin(), E = liveInMBBs.end();
|
|
||||||
I != E; ++I) {
|
|
||||||
MachineBasicBlock *MBB = *I;
|
|
||||||
if (MBB == &entryMBB) continue;
|
|
||||||
if (MBB->isLiveIn(PhysReg)) continue;
|
|
||||||
MBB->addLiveIn(PhysReg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool RABasic::runOnMachineFunction(MachineFunction &mf) {
|
bool RABasic::runOnMachineFunction(MachineFunction &mf) {
|
||||||
DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
|
DEBUG(dbgs() << "********** BASIC REGISTER ALLOCATION **********\n"
|
||||||
<< "********** Function: "
|
<< "********** Function: "
|
||||||
@ -517,7 +515,7 @@ bool RABasic::runOnMachineFunction(MachineFunction &mf) {
|
|||||||
|
|
||||||
allocatePhysRegs();
|
allocatePhysRegs();
|
||||||
|
|
||||||
addMBBLiveIns();
|
addMBBLiveIns(MF);
|
||||||
|
|
||||||
// Diagnostic output before rewriting
|
// Diagnostic output before rewriting
|
||||||
DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
|
DEBUG(dbgs() << "Post alloc VirtRegMap:\n" << *VRM << "\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user