Temporarily revert r155364 until the upstream review can complete, per

the stated developer policy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2012-04-23 18:28:57 +00:00
parent d410eaba04
commit e3fd2a36d9
2 changed files with 66 additions and 67 deletions

View File

@ -28,7 +28,6 @@
#include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include <map>
namespace llvm { namespace llvm {
@ -37,7 +36,7 @@ class MachineInstr;
class MachineLoopInfo; class MachineLoopInfo;
class MachineDominatorTree; class MachineDominatorTree;
class InstrItineraryData; class InstrItineraryData;
class DefaultVLIWScheduler; class ScheduleDAGInstrs;
class SUnit; class SUnit;
class DFAPacketizer { class DFAPacketizer {
@ -78,8 +77,6 @@ public:
// reserveResources - Reserve the resources occupied by a machine // reserveResources - Reserve the resources occupied by a machine
// instruction and change the current state to reflect that change. // instruction and change the current state to reflect that change.
void reserveResources(llvm::MachineInstr *MI); void reserveResources(llvm::MachineInstr *MI);
const InstrItineraryData *getInstrItins() const { return InstrItins; }
}; };
// VLIWPacketizerList - Implements a simple VLIW packetizer using DFA. The // VLIWPacketizerList - Implements a simple VLIW packetizer using DFA. The
@ -90,21 +87,20 @@ public:
// and machine resource is marked as taken. If any dependency is found, a target // and machine resource is marked as taken. If any dependency is found, a target
// API call is made to prune the dependence. // API call is made to prune the dependence.
class VLIWPacketizerList { class VLIWPacketizerList {
protected:
const TargetMachine &TM; const TargetMachine &TM;
const MachineFunction &MF; const MachineFunction &MF;
const TargetInstrInfo *TII; const TargetInstrInfo *TII;
// The VLIW Scheduler. // Encapsulate data types not exposed to the target interface.
DefaultVLIWScheduler *VLIWScheduler; ScheduleDAGInstrs *SchedulerImpl;
protected:
// Vector of instructions assigned to the current packet. // Vector of instructions assigned to the current packet.
std::vector<MachineInstr*> CurrentPacketMIs; std::vector<MachineInstr*> CurrentPacketMIs;
// DFA resource tracker. // DFA resource tracker.
DFAPacketizer *ResourceTracker; DFAPacketizer *ResourceTracker;
// Scheduling units.
// Generate MI -> SU map. std::vector<SUnit> SUnits;
std::map<MachineInstr*, SUnit*> MIToSUnit;
public: public:
VLIWPacketizerList( VLIWPacketizerList(
@ -122,32 +118,17 @@ public:
DFAPacketizer *getResourceTracker() {return ResourceTracker;} DFAPacketizer *getResourceTracker() {return ResourceTracker;}
// addToPacket - Add MI to the current packet. // addToPacket - Add MI to the current packet.
virtual MachineBasicBlock::iterator addToPacket(MachineInstr *MI) { void addToPacket(MachineInstr *MI);
MachineBasicBlock::iterator MII = MI;
CurrentPacketMIs.push_back(MI);
ResourceTracker->reserveResources(MI);
return MII;
}
// endPacket - End the current packet. // endPacket - End the current packet.
void endPacket(MachineBasicBlock *MBB, MachineInstr *MI); void endPacket(MachineBasicBlock *MBB, MachineInstr *I);
// initPacketizerState - perform initialization before packetizing
// an instruction. This function is supposed to be overrided by
// the target dependent packetizer.
virtual void initPacketizerState(void) { return; }
// ignorePseudoInstruction - Ignore bundling of pseudo instructions. // ignorePseudoInstruction - Ignore bundling of pseudo instructions.
virtual bool ignorePseudoInstruction(MachineInstr *I, bool ignorePseudoInstruction(MachineInstr *I, MachineBasicBlock *MBB);
MachineBasicBlock *MBB) {
return false;
}
// isSoloInstruction - return true if instruction MI can not be packetized // isSoloInstruction - return true if instruction I must end previous
// with any other instruction, which means that MI itself is a packet. // packet.
virtual bool isSoloInstruction(MachineInstr *MI) { bool isSoloInstruction(MachineInstr *I);
return true;
}
// isLegalToPacketizeTogether - Is it legal to packetize SUI and SUJ // isLegalToPacketizeTogether - Is it legal to packetize SUI and SUJ
// together. // together.
@ -160,7 +141,6 @@ public:
virtual bool isLegalToPruneDependencies(SUnit *SUI, SUnit *SUJ) { virtual bool isLegalToPruneDependencies(SUnit *SUI, SUnit *SUJ) {
return false; return false;
} }
}; };
} }

View File

@ -23,10 +23,10 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/CodeGen/ScheduleDAGInstrs.h"
#include "llvm/CodeGen/DFAPacketizer.h" #include "llvm/CodeGen/DFAPacketizer.h"
#include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineInstrBundle.h" #include "llvm/CodeGen/MachineInstrBundle.h"
#include "llvm/CodeGen/ScheduleDAGInstrs.h"
#include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetInstrInfo.h"
#include "llvm/MC/MCInstrItineraries.h" #include "llvm/MC/MCInstrItineraries.h"
using namespace llvm; using namespace llvm;
@ -100,23 +100,22 @@ void DFAPacketizer::reserveResources(llvm::MachineInstr *MI) {
reserveResources(&MID); reserveResources(&MID);
} }
namespace llvm { 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.
class DefaultVLIWScheduler : public ScheduleDAGInstrs { class DefaultVLIWScheduler : public ScheduleDAGInstrs {
public: public:
DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI, DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI,
MachineDominatorTree &MDT, bool IsPostRA); MachineDominatorTree &MDT, bool IsPostRA);
// Schedule - Actual scheduling work. // Schedule - Actual scheduling work.
void schedule(); void schedule();
}; };
} } // end anonymous namespace
DefaultVLIWScheduler::DefaultVLIWScheduler( DefaultVLIWScheduler::DefaultVLIWScheduler(
MachineFunction &MF, MachineLoopInfo &MLI, MachineDominatorTree &MDT, MachineFunction &MF, MachineLoopInfo &MLI, MachineDominatorTree &MDT,
bool IsPostRA) : bool IsPostRA) :
ScheduleDAGInstrs(MF, MLI, MDT, IsPostRA) { ScheduleDAGInstrs(MF, MLI, MDT, IsPostRA) {
CanHandleTerminators = true;
} }
void DefaultVLIWScheduler::schedule() { void DefaultVLIWScheduler::schedule() {
@ -130,25 +129,49 @@ VLIWPacketizerList::VLIWPacketizerList(
bool IsPostRA) : TM(MF.getTarget()), MF(MF) { bool IsPostRA) : TM(MF.getTarget()), MF(MF) {
TII = TM.getInstrInfo(); TII = TM.getInstrInfo();
ResourceTracker = TII->CreateTargetScheduleState(&TM, 0); ResourceTracker = TII->CreateTargetScheduleState(&TM, 0);
VLIWScheduler = new DefaultVLIWScheduler(MF, MLI, MDT, IsPostRA); SchedulerImpl = new DefaultVLIWScheduler(MF, MLI, MDT, IsPostRA);
} }
// VLIWPacketizerList Dtor // VLIWPacketizerList Dtor
VLIWPacketizerList::~VLIWPacketizerList() { VLIWPacketizerList::~VLIWPacketizerList() {
if (VLIWScheduler) delete SchedulerImpl;
delete VLIWScheduler; delete ResourceTracker;
}
if (ResourceTracker) // ignorePseudoInstruction - ignore pseudo instructions.
delete ResourceTracker; bool VLIWPacketizerList::ignorePseudoInstruction(MachineInstr *MI,
MachineBasicBlock *MBB) {
if (MI->isDebugValue())
return true;
if (TII->isSchedulingBoundary(MI, MBB, MF))
return true;
return false;
}
// isSoloInstruction - return true if instruction I must end previous
// packet.
bool VLIWPacketizerList::isSoloInstruction(MachineInstr *I) {
if (I->isInlineAsm())
return true;
return false;
}
// addToPacket - Add I to the current packet and reserve resource.
void VLIWPacketizerList::addToPacket(MachineInstr *MI) {
CurrentPacketMIs.push_back(MI);
ResourceTracker->reserveResources(MI);
} }
// endPacket - End the current packet, bundle packet instructions and reset // endPacket - End the current packet, bundle packet instructions and reset
// DFA state. // DFA state.
void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB, void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB,
MachineInstr *MI) { MachineInstr *I) {
if (CurrentPacketMIs.size() > 1) { if (CurrentPacketMIs.size() > 1) {
MachineInstr *MIFirst = CurrentPacketMIs.front(); MachineInstr *MIFirst = CurrentPacketMIs.front();
finalizeBundle(*MBB, MIFirst, MI); finalizeBundle(*MBB, MIFirst, I);
} }
CurrentPacketMIs.clear(); CurrentPacketMIs.clear();
ResourceTracker->clearResources(); ResourceTracker->clearResources();
@ -158,37 +181,31 @@ 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) {
assert(VLIWScheduler && "VLIW Scheduler is not initialized!"); assert(MBB->end() == EndItr && "Bad EndIndex");
VLIWScheduler->startBlock(MBB);
VLIWScheduler->enterRegion(MBB, BeginItr, EndItr, MBB->size());
VLIWScheduler->schedule();
VLIWScheduler->exitRegion();
// Generate MI -> SU map. SchedulerImpl->enterRegion(MBB, BeginItr, EndItr, MBB->size());
//std::map <MachineInstr*, SUnit*> MIToSUnit;
MIToSUnit.clear(); // Build the DAG without reordering instructions.
for (unsigned i = 0, e = VLIWScheduler->SUnits.size(); i != e; ++i) { SchedulerImpl->schedule();
SUnit *SU = &VLIWScheduler->SUnits[i];
MIToSUnit[SU->getInstr()] = SU; // Remember scheduling units.
} SUnits = SchedulerImpl->SUnits;
// The main packetizer loop. // The main packetizer loop.
for (; BeginItr != EndItr; ++BeginItr) { for (; BeginItr != EndItr; ++BeginItr) {
MachineInstr *MI = BeginItr; MachineInstr *MI = BeginItr;
this->initPacketizerState(); // Ignore pseudo instructions.
if (ignorePseudoInstruction(MI, MBB))
continue;
// End the current packet if needed. // End the current packet if needed.
if (this->isSoloInstruction(MI)) { if (isSoloInstruction(MI)) {
endPacket(MBB, MI); endPacket(MBB, MI);
continue; continue;
} }
// Ignore pseudo instructions. SUnit *SUI = SchedulerImpl->getSUnit(MI);
if (this->ignorePseudoInstruction(MI, MBB))
continue;
SUnit *SUI = MIToSUnit[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.
@ -198,13 +215,13 @@ 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.
if (!this->isLegalToPacketizeTogether(SUI, SUJ)) { if (!isLegalToPacketizeTogether(SUI, SUJ)) {
// Allow packetization if dependency can be pruned. // Allow packetization if dependency can be pruned.
if (!this->isLegalToPruneDependencies(SUI, SUJ)) { if (!isLegalToPruneDependencies(SUI, SUJ)) {
// End the packet if dependency cannot be pruned. // End the packet if dependency cannot be pruned.
endPacket(MBB, MI); endPacket(MBB, MI);
break; break;
@ -217,9 +234,11 @@ void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
} }
// Add MI to the current packet. // Add MI to the current packet.
BeginItr = this->addToPacket(MI); addToPacket(MI);
} // For all instructions in BB. } // For all instructions in BB.
// End any packet left behind. // End any packet left behind.
endPacket(MBB, EndItr); endPacket(MBB, EndItr);
SchedulerImpl->exitRegion();
} }