LLVM API Documentation
#include <HexagonMachineScheduler.h>
Public Types | |
enum | { TopQID = 1, BotQID = 2, LogMaxQID = 2 } |
SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both) More... | |
Public Member Functions | |
ConvergingVLIWScheduler () | |
virtual void | initialize (ScheduleDAGMI *dag) |
Initialize the strategy after building the DAG for a new region. More... | |
virtual SUnit * | pickNode (bool &IsTopNode) |
Pick the best node to balance the schedule. Implements MachineSchedStrategy. More... | |
virtual void | schedNode (SUnit *SU, bool IsTopNode) |
virtual void | releaseTopNode (SUnit *SU) |
virtual void | releaseBottomNode (SUnit *SU) |
unsigned | ReportPackets () |
![]() | |
virtual | ~MachineSchedStrategy () |
virtual void | initPolicy (MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned NumRegionInstrs) |
Optionally override the per-region scheduling policy. More... | |
virtual bool | shouldTrackPressure () const |
virtual void | registerRoots () |
virtual void | scheduleTree (unsigned SubtreeID) |
Scheduler callback to notify that a new subtree is scheduled. More... | |
Protected Member Functions | |
SUnit * | pickNodeBidrectional (bool &IsTopNode) |
Pick the best candidate node from either the top or bottom queue. More... | |
int | SchedulingCost (ReadyQueue &Q, SUnit *SU, SchedCandidate &Candidate, RegPressureDelta &Delta, bool verbose) |
CandResult | pickNodeFromQueue (ReadyQueue &Q, const RegPressureTracker &RPTracker, SchedCandidate &Candidate) |
void | traceCandidate (const char *Label, const ReadyQueue &Q, SUnit *SU, PressureChange P=PressureChange()) |
ConvergingVLIWScheduler shrinks the unscheduled zone using heuristics to balance the schedule.
Definition at line 109 of file HexagonMachineScheduler.h.
anonymous enum |
SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
Enumerator | |
---|---|
TopQID | |
BotQID | |
LogMaxQID |
Definition at line 200 of file HexagonMachineScheduler.h.
|
inline |
Definition at line 206 of file HexagonMachineScheduler.h.
|
virtual |
Initialize the strategy after building the DAG for a new region.
Implements llvm::MachineSchedStrategy.
Definition at line 195 of file HexagonMachineScheduler.cpp.
References llvm::TargetInstrInfo::CreateTargetMIHazardRecognizer(), llvm::ForceBottomUp, llvm::ForceTopDown, llvm::TargetMachine::getInstrInfo(), llvm::TargetSchedModel::getInstrItineraries(), llvm::ScheduleDAGInstrs::getSchedModel(), llvm::MachineFunction::getTarget(), llvm::ScheduleDAG::MF, and llvm::SystemZISD::TM.
Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Implements llvm::MachineSchedStrategy.
Definition at line 635 of file HexagonMachineScheduler.cpp.
References llvm::ScheduleDAGMI::bottom(), llvm::dbgs(), DEBUG, llvm::SUnit::dump(), llvm::ForceBottomUp, llvm::ForceTopDown, llvm::ScheduleDAGMI::getBotRPTracker(), llvm::ScheduleDAGMI::getTopRPTracker(), llvm::SUnit::isBottomReady(), llvm::SUnit::isTopReady(), pickNodeBidrectional(), pickNodeFromQueue(), and llvm::ScheduleDAGMI::top().
Pick the best candidate node from either the top or bottom queue.
Definition at line 577 of file HexagonMachineScheduler.cpp.
References llvm::ScheduleDAGMI::getBotRPTracker(), llvm::ScheduleDAGMI::getTopRPTracker(), and pickNodeFromQueue().
Referenced by pickNode().
|
protected |
Pick the best candidate from the top queue.
TODO: getMaxPressureDelta results can be mostly cached for each SUnit during DAG building. To adjust for the current scheduling location we need to maintain the number of vreg uses remaining to be top-scheduled.
Definition at line 532 of file HexagonMachineScheduler.cpp.
References llvm::ReadyQueue::begin(), DEBUG, llvm::ReadyQueue::dump(), llvm::ReadyQueue::end(), llvm::ScheduleDAGMI::getRegionCriticalPSets(), llvm::ScheduleDAGMI::getRegPressure(), I, llvm::RegisterPressure::MaxSetPressure, SchedulingCost(), and traceCandidate().
Referenced by pickNode(), and pickNodeBidrectional().
|
virtual |
When all successor dependencies have been resolved, free this node for bottom-up scheduling.
Implements llvm::MachineSchedStrategy.
Definition at line 237 of file HexagonMachineScheduler.cpp.
References llvm::SUnit::BotReadyCycle, llvm::SUnit::getInstr(), I, llvm::SUnit::isScheduled, and llvm::SUnit::Succs.
|
virtual |
When all predecessor dependencies have been resolved, free this node for top-down scheduling.
Implements llvm::MachineSchedStrategy.
Definition at line 220 of file HexagonMachineScheduler.cpp.
References I, llvm::SUnit::isScheduled, llvm::SUnit::Preds, and llvm::SUnit::TopReadyCycle.
|
inline |
Definition at line 219 of file HexagonMachineScheduler.h.
Update the scheduler's state after scheduling a node. This is the same node that was just returned by pickNode(). However, VLIWMachineScheduler needs to update it's state based on the current cycle before MachineSchedStrategy does.
Implements llvm::MachineSchedStrategy.
Definition at line 683 of file HexagonMachineScheduler.cpp.
References llvm::SUnit::BotReadyCycle, and llvm::SUnit::TopReadyCycle.
|
protected |
Single point to compute overall scheduling cost. TODO: More heuristics will be used soon.
Definition at line 466 of file HexagonMachineScheduler.cpp.
References llvm::RegPressureDelta::CriticalMax, llvm::dbgs(), DEBUG, llvm::RegPressureDelta::Excess, FactorOne, llvm::SUnit::getDepth(), llvm::SUnit::getHeight(), llvm::ReadyQueue::getID(), getSingleUnscheduledPred(), getSingleUnscheduledSucc(), llvm::PressureChange::getUnitInc(), I, llvm::SUnit::isScheduled, llvm::SUnit::isScheduleHigh, llvm::SUnit::Preds, PriorityOne, PriorityTwo, ScaleTwo, llvm::SUnit::Succs, and TopQID.
Referenced by pickNodeFromQueue().
|
protected |
Definition at line 408 of file HexagonMachineScheduler.cpp.
References llvm::dbgs(), llvm::SUnit::dump(), llvm::ReadyQueue::getName(), llvm::PressureChange::getPSet(), llvm::TargetRegisterInfo::getRegPressureSetName(), llvm::PressureChange::getUnitInc(), llvm::PressureChange::isValid(), and llvm::ScheduleDAG::TRI.
Referenced by pickNodeFromQueue().