2011-12-01 21:10:21 +00:00
|
|
|
//=- llvm/CodeGen/DFAPacketizer.cpp - DFA Packetizer for VLIW -*- C++ -*-=====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// This class implements a deterministic finite automaton (DFA) based
|
|
|
|
// packetizing mechanism for VLIW architectures. It provides APIs to
|
|
|
|
// determine whether there exists a legal mapping of instructions to
|
|
|
|
// functional unit assignments in a packet. The DFA is auto-generated from
|
|
|
|
// the target's Schedule.td file.
|
|
|
|
//
|
|
|
|
// A DFA consists of 3 major elements: states, inputs, and transitions. For
|
|
|
|
// the packetizing mechanism, the input is the set of instruction classes for
|
|
|
|
// a target. The state models all possible combinations of functional unit
|
|
|
|
// consumption for a given set of instructions in a packet. A transition
|
|
|
|
// models the addition of an instruction to a packet. In the DFA constructed
|
|
|
|
// by this class, if an instruction can be added to a packet, then a valid
|
|
|
|
// transition exists from the corresponding state. Invalid transitions
|
|
|
|
// indicate that the instruction cannot be added to the current packet.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/DFAPacketizer.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2012-02-15 18:55:14 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstrBundle.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/CodeGen/ScheduleDAGInstrs.h"
|
2011-12-01 21:10:21 +00:00
|
|
|
#include "llvm/MC/MCInstrItineraries.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2011-12-01 21:10:21 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
DFAPacketizer::DFAPacketizer(const InstrItineraryData *I, const int (*SIT)[2],
|
2011-12-06 17:34:16 +00:00
|
|
|
const unsigned *SET):
|
2011-12-01 21:10:21 +00:00
|
|
|
InstrItins(I), CurrentState(0), DFAStateInputTable(SIT),
|
|
|
|
DFAStateEntryTable(SET) {}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2011-12-06 17:34:11 +00:00
|
|
|
// ReadTable - Read the DFA transition table and update CachedTable.
|
2011-12-01 21:10:21 +00:00
|
|
|
//
|
|
|
|
// Format of the transition tables:
|
|
|
|
// DFAStateInputTable[][2] = pairs of <Input, Transition> for all valid
|
|
|
|
// transitions
|
|
|
|
// DFAStateEntryTable[i] = Index of the first entry in DFAStateInputTable
|
|
|
|
// for the ith state
|
|
|
|
//
|
|
|
|
void DFAPacketizer::ReadTable(unsigned int state) {
|
|
|
|
unsigned ThisState = DFAStateEntryTable[state];
|
|
|
|
unsigned NextStateInTable = DFAStateEntryTable[state+1];
|
|
|
|
// Early exit in case CachedTable has already contains this
|
2011-12-06 17:34:11 +00:00
|
|
|
// state's transitions.
|
2011-12-01 21:10:21 +00:00
|
|
|
if (CachedTable.count(UnsignPair(state,
|
|
|
|
DFAStateInputTable[ThisState][0])))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (unsigned i = ThisState; i < NextStateInTable; i++)
|
|
|
|
CachedTable[UnsignPair(state, DFAStateInputTable[i][0])] =
|
|
|
|
DFAStateInputTable[i][1];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// canReserveResources - Check if the resources occupied by a MCInstrDesc
|
2011-12-06 17:34:11 +00:00
|
|
|
// are available in the current state.
|
2011-12-06 17:34:16 +00:00
|
|
|
bool DFAPacketizer::canReserveResources(const llvm::MCInstrDesc *MID) {
|
2011-12-01 21:10:21 +00:00
|
|
|
unsigned InsnClass = MID->getSchedClass();
|
2011-12-06 17:34:16 +00:00
|
|
|
const llvm::InstrStage *IS = InstrItins->beginStage(InsnClass);
|
2012-06-22 20:27:13 +00:00
|
|
|
unsigned FuncUnits = IS->getUnits();
|
2011-12-01 21:10:21 +00:00
|
|
|
UnsignPair StateTrans = UnsignPair(CurrentState, FuncUnits);
|
|
|
|
ReadTable(CurrentState);
|
|
|
|
return (CachedTable.count(StateTrans) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// reserveResources - Reserve the resources occupied by a MCInstrDesc and
|
2011-12-06 17:34:11 +00:00
|
|
|
// change the current state to reflect that change.
|
2011-12-06 17:34:16 +00:00
|
|
|
void DFAPacketizer::reserveResources(const llvm::MCInstrDesc *MID) {
|
2011-12-01 21:10:21 +00:00
|
|
|
unsigned InsnClass = MID->getSchedClass();
|
2011-12-06 17:34:16 +00:00
|
|
|
const llvm::InstrStage *IS = InstrItins->beginStage(InsnClass);
|
2012-06-22 20:27:13 +00:00
|
|
|
unsigned FuncUnits = IS->getUnits();
|
2011-12-01 21:10:21 +00:00
|
|
|
UnsignPair StateTrans = UnsignPair(CurrentState, FuncUnits);
|
|
|
|
ReadTable(CurrentState);
|
|
|
|
assert(CachedTable.count(StateTrans) != 0);
|
|
|
|
CurrentState = CachedTable[StateTrans];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// canReserveResources - Check if the resources occupied by a machine
|
2011-12-06 17:34:11 +00:00
|
|
|
// instruction are available in the current state.
|
2011-12-06 17:34:16 +00:00
|
|
|
bool DFAPacketizer::canReserveResources(llvm::MachineInstr *MI) {
|
|
|
|
const llvm::MCInstrDesc &MID = MI->getDesc();
|
2011-12-01 21:10:21 +00:00
|
|
|
return canReserveResources(&MID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// reserveResources - Reserve the resources occupied by a machine
|
2011-12-06 17:34:11 +00:00
|
|
|
// instruction and change the current state to reflect that change.
|
2011-12-06 17:34:16 +00:00
|
|
|
void DFAPacketizer::reserveResources(llvm::MachineInstr *MI) {
|
|
|
|
const llvm::MCInstrDesc &MID = MI->getDesc();
|
2011-12-01 21:10:21 +00:00
|
|
|
reserveResources(&MID);
|
|
|
|
}
|
2012-02-15 18:55:14 +00:00
|
|
|
|
2012-05-01 21:28:30 +00:00
|
|
|
namespace llvm {
|
2012-02-15 18:55:14 +00:00
|
|
|
// DefaultVLIWScheduler - This class extends ScheduleDAGInstrs and overrides
|
|
|
|
// Schedule method to build the dependence graph.
|
|
|
|
class DefaultVLIWScheduler : public ScheduleDAGInstrs {
|
|
|
|
public:
|
|
|
|
DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI,
|
2014-08-20 20:57:26 +00:00
|
|
|
bool IsPostRA);
|
2012-02-15 18:55:14 +00:00
|
|
|
// Schedule - Actual scheduling work.
|
2014-03-07 09:26:03 +00:00
|
|
|
void schedule() override;
|
2012-02-15 18:55:14 +00:00
|
|
|
};
|
2012-05-01 21:28:30 +00:00
|
|
|
}
|
2012-02-15 23:34:15 +00:00
|
|
|
|
2014-08-20 20:57:26 +00:00
|
|
|
DefaultVLIWScheduler::DefaultVLIWScheduler(MachineFunction &MF,
|
|
|
|
MachineLoopInfo &MLI, bool IsPostRA)
|
|
|
|
: ScheduleDAGInstrs(MF, &MLI, IsPostRA) {
|
2012-05-01 21:28:30 +00:00
|
|
|
CanHandleTerminators = true;
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|
|
|
|
|
2012-03-07 23:00:49 +00:00
|
|
|
void DefaultVLIWScheduler::schedule() {
|
2012-02-15 18:55:14 +00:00
|
|
|
// Build the scheduling graph.
|
2014-04-14 00:51:57 +00:00
|
|
|
buildSchedGraph(nullptr);
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// VLIWPacketizerList Ctor
|
2014-08-20 20:57:26 +00:00
|
|
|
VLIWPacketizerList::VLIWPacketizerList(MachineFunction &MF,
|
|
|
|
MachineLoopInfo &MLI, bool IsPostRA)
|
2014-10-14 01:03:16 +00:00
|
|
|
: MF(MF) {
|
|
|
|
TII = MF.getSubtarget().getInstrInfo();
|
2014-10-09 01:59:35 +00:00
|
|
|
ResourceTracker = TII->CreateTargetScheduleState(MF.getSubtarget());
|
2014-08-20 20:57:26 +00:00
|
|
|
VLIWScheduler = new DefaultVLIWScheduler(MF, MLI, IsPostRA);
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// VLIWPacketizerList Dtor
|
|
|
|
VLIWPacketizerList::~VLIWPacketizerList() {
|
2012-05-01 21:28:30 +00:00
|
|
|
if (VLIWScheduler)
|
|
|
|
delete VLIWScheduler;
|
2012-02-15 18:55:14 +00:00
|
|
|
|
2012-05-01 21:28:30 +00:00
|
|
|
if (ResourceTracker)
|
|
|
|
delete ResourceTracker;
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// endPacket - End the current packet, bundle packet instructions and reset
|
|
|
|
// DFA state.
|
|
|
|
void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB,
|
2012-05-01 21:28:30 +00:00
|
|
|
MachineInstr *MI) {
|
2012-02-15 18:55:14 +00:00
|
|
|
if (CurrentPacketMIs.size() > 1) {
|
|
|
|
MachineInstr *MIFirst = CurrentPacketMIs.front();
|
2012-05-01 21:28:30 +00:00
|
|
|
finalizeBundle(*MBB, MIFirst, MI);
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|
|
|
|
CurrentPacketMIs.clear();
|
|
|
|
ResourceTracker->clearResources();
|
|
|
|
}
|
|
|
|
|
|
|
|
// PacketizeMIs - Bundle machine instructions into packets.
|
|
|
|
void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator BeginItr,
|
|
|
|
MachineBasicBlock::iterator EndItr) {
|
2012-05-01 21:28:30 +00:00
|
|
|
assert(VLIWScheduler && "VLIW Scheduler is not initialized!");
|
|
|
|
VLIWScheduler->startBlock(MBB);
|
2013-08-23 17:48:33 +00:00
|
|
|
VLIWScheduler->enterRegion(MBB, BeginItr, EndItr,
|
|
|
|
std::distance(BeginItr, EndItr));
|
2012-05-01 21:28:30 +00:00
|
|
|
VLIWScheduler->schedule();
|
|
|
|
|
|
|
|
// Generate MI -> SU map.
|
|
|
|
MIToSUnit.clear();
|
|
|
|
for (unsigned i = 0, e = VLIWScheduler->SUnits.size(); i != e; ++i) {
|
|
|
|
SUnit *SU = &VLIWScheduler->SUnits[i];
|
|
|
|
MIToSUnit[SU->getInstr()] = SU;
|
|
|
|
}
|
2012-02-15 18:55:14 +00:00
|
|
|
|
|
|
|
// The main packetizer loop.
|
|
|
|
for (; BeginItr != EndItr; ++BeginItr) {
|
|
|
|
MachineInstr *MI = BeginItr;
|
|
|
|
|
2012-05-01 21:28:30 +00:00
|
|
|
this->initPacketizerState();
|
2012-02-15 18:55:14 +00:00
|
|
|
|
|
|
|
// End the current packet if needed.
|
2012-05-01 21:28:30 +00:00
|
|
|
if (this->isSoloInstruction(MI)) {
|
2012-02-15 18:55:14 +00:00
|
|
|
endPacket(MBB, MI);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-05-01 21:28:30 +00:00
|
|
|
// Ignore pseudo instructions.
|
|
|
|
if (this->ignorePseudoInstruction(MI, MBB))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SUnit *SUI = MIToSUnit[MI];
|
2012-02-15 18:55:14 +00:00
|
|
|
assert(SUI && "Missing SUnit Info!");
|
|
|
|
|
|
|
|
// Ask DFA if machine resource is available for MI.
|
|
|
|
bool ResourceAvail = ResourceTracker->canReserveResources(MI);
|
|
|
|
if (ResourceAvail) {
|
|
|
|
// Dependency check for MI with instructions in CurrentPacketMIs.
|
|
|
|
for (std::vector<MachineInstr*>::iterator VI = CurrentPacketMIs.begin(),
|
|
|
|
VE = CurrentPacketMIs.end(); VI != VE; ++VI) {
|
|
|
|
MachineInstr *MJ = *VI;
|
2012-05-01 21:28:30 +00:00
|
|
|
SUnit *SUJ = MIToSUnit[MJ];
|
2012-02-15 18:55:14 +00:00
|
|
|
assert(SUJ && "Missing SUnit Info!");
|
|
|
|
|
|
|
|
// Is it legal to packetize SUI and SUJ together.
|
2012-05-01 21:28:30 +00:00
|
|
|
if (!this->isLegalToPacketizeTogether(SUI, SUJ)) {
|
2012-02-15 18:55:14 +00:00
|
|
|
// Allow packetization if dependency can be pruned.
|
2012-05-01 21:28:30 +00:00
|
|
|
if (!this->isLegalToPruneDependencies(SUI, SUJ)) {
|
2012-02-15 18:55:14 +00:00
|
|
|
// End the packet if dependency cannot be pruned.
|
|
|
|
endPacket(MBB, MI);
|
|
|
|
break;
|
|
|
|
} // !isLegalToPruneDependencies.
|
|
|
|
} // !isLegalToPacketizeTogether.
|
|
|
|
} // For all instructions in CurrentPacketMIs.
|
|
|
|
} else {
|
|
|
|
// End the packet if resource is not available.
|
|
|
|
endPacket(MBB, MI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add MI to the current packet.
|
2012-05-01 21:28:30 +00:00
|
|
|
BeginItr = this->addToPacket(MI);
|
2012-02-15 18:55:14 +00:00
|
|
|
} // For all instructions in BB.
|
|
|
|
|
|
|
|
// End any packet left behind.
|
|
|
|
endPacket(MBB, EndItr);
|
2012-05-01 21:28:30 +00:00
|
|
|
VLIWScheduler->exitRegion();
|
|
|
|
VLIWScheduler->finishBlock();
|
2012-02-15 18:55:14 +00:00
|
|
|
}
|