mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
Cleanup VLIWPacketizer to use the updated ScheduleDAGInstrs interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152262 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ed395c8c47
commit
7afcda0c58
@ -36,6 +36,7 @@ class MachineInstr;
|
|||||||
class MachineLoopInfo;
|
class MachineLoopInfo;
|
||||||
class MachineDominatorTree;
|
class MachineDominatorTree;
|
||||||
class InstrItineraryData;
|
class InstrItineraryData;
|
||||||
|
class ScheduleDAGInstrs;
|
||||||
class SUnit;
|
class SUnit;
|
||||||
|
|
||||||
class DFAPacketizer {
|
class DFAPacketizer {
|
||||||
@ -91,7 +92,7 @@ class VLIWPacketizerList {
|
|||||||
const TargetInstrInfo *TII;
|
const TargetInstrInfo *TII;
|
||||||
|
|
||||||
// Encapsulate data types not exposed to the target interface.
|
// Encapsulate data types not exposed to the target interface.
|
||||||
void *SchedulerImpl;
|
ScheduleDAGInstrs *SchedulerImpl;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Vector of instructions assigned to the current packet.
|
// Vector of instructions assigned to the current packet.
|
||||||
|
@ -245,15 +245,16 @@ namespace llvm {
|
|||||||
/// end - Return an iterator to the bottom of the current scheduling region.
|
/// end - Return an iterator to the bottom of the current scheduling region.
|
||||||
MachineBasicBlock::iterator end() const { return End; }
|
MachineBasicBlock::iterator end() const { return End; }
|
||||||
|
|
||||||
/// NewSUnit - Creates a new SUnit and return a ptr to it.
|
/// newSUnit - Creates a new SUnit and return a ptr to it.
|
||||||
SUnit *newSUnit(MachineInstr *MI);
|
SUnit *newSUnit(MachineInstr *MI);
|
||||||
|
|
||||||
|
/// getSUnit - Return an existing SUnit for this MI, or NULL.
|
||||||
|
SUnit *getSUnit(MachineInstr *MI) const;
|
||||||
|
|
||||||
/// startBlock - Prepare to perform scheduling in the given block.
|
/// startBlock - Prepare to perform scheduling in the given block.
|
||||||
///
|
|
||||||
virtual void startBlock(MachineBasicBlock *BB);
|
virtual void startBlock(MachineBasicBlock *BB);
|
||||||
|
|
||||||
/// finishBlock - Clean up after scheduling in the given block.
|
/// finishBlock - Clean up after scheduling in the given block.
|
||||||
///
|
|
||||||
virtual void finishBlock();
|
virtual void finishBlock();
|
||||||
|
|
||||||
/// Initialize the scheduler state for the next scheduling region.
|
/// Initialize the scheduler state for the next scheduling region.
|
||||||
@ -304,13 +305,6 @@ namespace llvm {
|
|||||||
virtual std::string getDAGName() const;
|
virtual std::string getDAGName() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
SUnit *getSUnit(MachineInstr *MI) const {
|
|
||||||
DenseMap<MachineInstr*, SUnit*>::const_iterator I = MISUnitMap.find(MI);
|
|
||||||
if (I == MISUnitMap.end())
|
|
||||||
return 0;
|
|
||||||
return I->second;
|
|
||||||
}
|
|
||||||
|
|
||||||
void initSUnits();
|
void initSUnits();
|
||||||
void addPhysRegDataDeps(SUnit *SU, const MachineOperand &MO);
|
void addPhysRegDataDeps(SUnit *SU, const MachineOperand &MO);
|
||||||
void addPhysRegDeps(SUnit *SU, unsigned OperIdx);
|
void addPhysRegDeps(SUnit *SU, unsigned OperIdx);
|
||||||
@ -322,8 +316,7 @@ namespace llvm {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/// NewSUnit - Creates a new SUnit and return a ptr to it.
|
/// newSUnit - Creates a new SUnit and return a ptr to it.
|
||||||
///
|
|
||||||
inline SUnit *ScheduleDAGInstrs::newSUnit(MachineInstr *MI) {
|
inline SUnit *ScheduleDAGInstrs::newSUnit(MachineInstr *MI) {
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
|
const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
|
||||||
@ -334,6 +327,14 @@ namespace llvm {
|
|||||||
SUnits.back().OrigNode = &SUnits.back();
|
SUnits.back().OrigNode = &SUnits.back();
|
||||||
return &SUnits.back();
|
return &SUnits.back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// getSUnit - Return an existing SUnit for this MI, or NULL.
|
||||||
|
inline SUnit *ScheduleDAGInstrs::getSUnit(MachineInstr *MI) const {
|
||||||
|
DenseMap<MachineInstr*, SUnit*>::const_iterator I = MISUnitMap.find(MI);
|
||||||
|
if (I == MISUnitMap.end())
|
||||||
|
return 0;
|
||||||
|
return I->second;
|
||||||
|
}
|
||||||
} // namespace llvm
|
} // namespace llvm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -103,9 +103,6 @@ void DFAPacketizer::reserveResources(llvm::MachineInstr *MI) {
|
|||||||
namespace {
|
namespace {
|
||||||
// DefaultVLIWScheduler - This class extends ScheduleDAGInstrs and overrides
|
// DefaultVLIWScheduler - This class extends ScheduleDAGInstrs and overrides
|
||||||
// Schedule method to build the dependence graph.
|
// Schedule method to build the dependence graph.
|
||||||
//
|
|
||||||
// ScheduleDAGInstrs has LLVM_LIBRARY_VISIBILITY so we have to reference it as
|
|
||||||
// an opaque pointer in VLIWPacketizerList.
|
|
||||||
class DefaultVLIWScheduler : public ScheduleDAGInstrs {
|
class DefaultVLIWScheduler : public ScheduleDAGInstrs {
|
||||||
public:
|
public:
|
||||||
DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI,
|
DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI,
|
||||||
@ -137,7 +134,7 @@ VLIWPacketizerList::VLIWPacketizerList(
|
|||||||
|
|
||||||
// VLIWPacketizerList Dtor
|
// VLIWPacketizerList Dtor
|
||||||
VLIWPacketizerList::~VLIWPacketizerList() {
|
VLIWPacketizerList::~VLIWPacketizerList() {
|
||||||
delete (DefaultVLIWScheduler *)SchedulerImpl;
|
delete SchedulerImpl;
|
||||||
delete ResourceTracker;
|
delete ResourceTracker;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -184,20 +181,15 @@ void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB,
|
|||||||
void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
||||||
MachineBasicBlock::iterator BeginItr,
|
MachineBasicBlock::iterator BeginItr,
|
||||||
MachineBasicBlock::iterator EndItr) {
|
MachineBasicBlock::iterator EndItr) {
|
||||||
DefaultVLIWScheduler *Scheduler = (DefaultVLIWScheduler *)SchedulerImpl;
|
assert(MBB->end() == EndItr && "Bad EndIndex");
|
||||||
Scheduler->enterRegion(MBB, BeginItr, EndItr, MBB->size());
|
|
||||||
Scheduler->schedule();
|
SchedulerImpl->enterRegion(MBB, BeginItr, EndItr, MBB->size());
|
||||||
Scheduler->exitRegion();
|
|
||||||
|
// Build the DAG without reordering instructions.
|
||||||
|
SchedulerImpl->schedule();
|
||||||
|
|
||||||
// Remember scheduling units.
|
// Remember scheduling units.
|
||||||
SUnits = Scheduler->SUnits;
|
SUnits = SchedulerImpl->SUnits;
|
||||||
|
|
||||||
// Generate MI -> SU map.
|
|
||||||
std::map <MachineInstr*, SUnit*> MIToSUnit;
|
|
||||||
for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
|
|
||||||
SUnit *SU = &SUnits[i];
|
|
||||||
MIToSUnit[SU->getInstr()] = SU;
|
|
||||||
}
|
|
||||||
|
|
||||||
// The main packetizer loop.
|
// The main packetizer loop.
|
||||||
for (; BeginItr != EndItr; ++BeginItr) {
|
for (; BeginItr != EndItr; ++BeginItr) {
|
||||||
@ -213,7 +205,7 @@ void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
SUnit *SUI = MIToSUnit[MI];
|
SUnit *SUI = SchedulerImpl->getSUnit(MI);
|
||||||
assert(SUI && "Missing SUnit Info!");
|
assert(SUI && "Missing SUnit Info!");
|
||||||
|
|
||||||
// Ask DFA if machine resource is available for MI.
|
// Ask DFA if machine resource is available for MI.
|
||||||
@ -223,7 +215,7 @@ void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
|||||||
for (std::vector<MachineInstr*>::iterator VI = CurrentPacketMIs.begin(),
|
for (std::vector<MachineInstr*>::iterator VI = CurrentPacketMIs.begin(),
|
||||||
VE = CurrentPacketMIs.end(); VI != VE; ++VI) {
|
VE = CurrentPacketMIs.end(); VI != VE; ++VI) {
|
||||||
MachineInstr *MJ = *VI;
|
MachineInstr *MJ = *VI;
|
||||||
SUnit *SUJ = MIToSUnit[MJ];
|
SUnit *SUJ = SchedulerImpl->getSUnit(MJ);
|
||||||
assert(SUJ && "Missing SUnit Info!");
|
assert(SUJ && "Missing SUnit Info!");
|
||||||
|
|
||||||
// Is it legal to packetize SUI and SUJ together.
|
// Is it legal to packetize SUI and SUJ together.
|
||||||
@ -247,4 +239,6 @@ void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
|||||||
|
|
||||||
// End any packet left behind.
|
// End any packet left behind.
|
||||||
endPacket(MBB, EndItr);
|
endPacket(MBB, EndItr);
|
||||||
|
|
||||||
|
SchedulerImpl->exitRegion();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user