LLVM 19.0.0git
Classes | Public Member Functions | List of all members
llvm::SystemZPostRASchedStrategy Class Reference

A MachineSchedStrategy implementation for SystemZ post RA scheduling. More...

#include "Target/SystemZ/SystemZMachineScheduler.h"

Inheritance diagram for llvm::SystemZPostRASchedStrategy:
Inheritance graph
[legend]

Public Member Functions

 SystemZPostRASchedStrategy (const MachineSchedContext *C)
 
virtual ~SystemZPostRASchedStrategy ()
 
void initPolicy (MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned NumRegionInstrs) override
 Called for a region before scheduling.
 
bool shouldTrackPressure () const override
 PostRA scheduling does not track pressure.
 
bool doMBBSchedRegionsTopDown () const override
 
void initialize (ScheduleDAGMI *dag) override
 Initialize the strategy after building the DAG for a new region.
 
void enterMBB (MachineBasicBlock *NextMBB) override
 Tell the strategy that MBB is about to be processed.
 
void leaveMBB () override
 Tell the strategy that current MBB is done.
 
SUnitpickNode (bool &IsTopNode) override
 Pick the next node to schedule, or return NULL.
 
void schedNode (SUnit *SU, bool IsTopNode) override
 ScheduleDAGMI has scheduled an instruction - tell HazardRec about it.
 
void releaseTopNode (SUnit *SU) override
 SU has had all predecessor dependencies resolved.
 
void releaseBottomNode (SUnit *SU) override
 Currently only scheduling top-down, so this method is empty.
 
- Public Member Functions inherited from llvm::MachineSchedStrategy
virtual ~MachineSchedStrategy ()=default
 
virtual void initPolicy (MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned NumRegionInstrs)
 Optionally override the per-region scheduling policy.
 
virtual void dumpPolicy () const
 
virtual bool shouldTrackPressure () const
 Check if pressure tracking is needed before building the DAG and initializing this strategy.
 
virtual bool shouldTrackLaneMasks () const
 Returns true if lanemasks should be tracked.
 
virtual bool doMBBSchedRegionsTopDown () const
 
virtual void initialize (ScheduleDAGMI *DAG)=0
 Initialize the strategy after building the DAG for a new region.
 
virtual void enterMBB (MachineBasicBlock *MBB)
 Tell the strategy that MBB is about to be processed.
 
virtual void leaveMBB ()
 Tell the strategy that current MBB is done.
 
virtual void registerRoots ()
 Notify this strategy that all roots have been released (including those that depend on EntrySU or ExitSU).
 
virtual SUnitpickNode (bool &IsTopNode)=0
 Pick the next node to schedule, or return NULL.
 
virtual void scheduleTree (unsigned SubtreeID)
 Scheduler callback to notify that a new subtree is scheduled.
 
virtual void schedNode (SUnit *SU, bool IsTopNode)=0
 Notify MachineSchedStrategy that ScheduleDAGMI has scheduled an instruction and updated scheduled/remaining flags in the DAG nodes.
 
virtual void releaseTopNode (SUnit *SU)=0
 When all predecessor dependencies have been resolved, free this node for top-down scheduling.
 
virtual void releaseBottomNode (SUnit *SU)=0
 When all successor dependencies have been resolved, free this node for bottom-up scheduling.
 

Detailed Description

A MachineSchedStrategy implementation for SystemZ post RA scheduling.

Definition at line 30 of file SystemZMachineScheduler.h.

Constructor & Destructor Documentation

◆ SystemZPostRASchedStrategy()

SystemZPostRASchedStrategy::SystemZPostRASchedStrategy ( const MachineSchedContext C)

◆ ~SystemZPostRASchedStrategy()

SystemZPostRASchedStrategy::~SystemZPostRASchedStrategy ( )
virtual

Definition at line 138 of file SystemZMachineScheduler.cpp.

References I.

Member Function Documentation

◆ doMBBSchedRegionsTopDown()

bool llvm::SystemZPostRASchedStrategy::doMBBSchedRegionsTopDown ( ) const
inlineoverridevirtual

Reimplemented from llvm::MachineSchedStrategy.

Definition at line 128 of file SystemZMachineScheduler.h.

◆ enterMBB()

void SystemZPostRASchedStrategy::enterMBB ( MachineBasicBlock NextMBB)
overridevirtual

◆ initialize()

void SystemZPostRASchedStrategy::initialize ( ScheduleDAGMI DAG)
overridevirtual

Initialize the strategy after building the DAG for a new region.

Implements llvm::MachineSchedStrategy.

Definition at line 74 of file SystemZMachineScheduler.cpp.

References llvm::SystemZHazardRecognizer::dumpState(), and LLVM_DEBUG.

◆ initPolicy()

void SystemZPostRASchedStrategy::initPolicy ( MachineBasicBlock::iterator  Begin,
MachineBasicBlock::iterator  End,
unsigned  NumRegionInstrs 
)
overridevirtual

Called for a region before scheduling.

Reimplemented from llvm::MachineSchedStrategy.

Definition at line 146 of file SystemZMachineScheduler.cpp.

◆ leaveMBB()

void SystemZPostRASchedStrategy::leaveMBB ( )
overridevirtual

Tell the strategy that current MBB is done.

Reimplemented from llvm::MachineSchedStrategy.

Definition at line 120 of file SystemZMachineScheduler.cpp.

References llvm::dbgs(), llvm::MachineBasicBlock::getFirstTerminator(), LLVM_DEBUG, and llvm::printMBBReference().

◆ pickNode()

SUnit * SystemZPostRASchedStrategy::pickNode ( bool IsTopNode)
overridevirtual

Pick the next node to schedule, or return NULL.

Implements llvm::MachineSchedStrategy.

Definition at line 158 of file SystemZMachineScheduler.cpp.

References assert(), llvm::dbgs(), llvm::SystemZHazardRecognizer::dumpSU(), and LLVM_DEBUG.

◆ releaseBottomNode()

void llvm::SystemZPostRASchedStrategy::releaseBottomNode ( SUnit SU)
inlineoverridevirtual

Currently only scheduling top-down, so this method is empty.

Implements llvm::MachineSchedStrategy.

Definition at line 150 of file SystemZMachineScheduler.h.

◆ releaseTopNode()

void SystemZPostRASchedStrategy::releaseTopNode ( SUnit SU)
overridevirtual

SU has had all predecessor dependencies resolved.

Put it into Available.

Implements llvm::MachineSchedStrategy.

Definition at line 251 of file SystemZMachineScheduler.cpp.

References llvm::SystemZHazardRecognizer::getSchedClass(), llvm::SUnit::isScheduleHigh, and llvm::SUnit::isUnbuffered.

◆ schedNode()

void SystemZPostRASchedStrategy::schedNode ( SUnit SU,
bool  IsTopNode 
)
overridevirtual

ScheduleDAGMI has scheduled an instruction - tell HazardRec about it.

Implements llvm::MachineSchedStrategy.

Definition at line 241 of file SystemZMachineScheduler.cpp.

References llvm::dbgs(), llvm::SystemZHazardRecognizer::EmitInstruction(), if(), LLVM_DEBUG, and llvm::SUnit::NodeNum.

◆ shouldTrackPressure()

bool llvm::SystemZPostRASchedStrategy::shouldTrackPressure ( ) const
inlineoverridevirtual

PostRA scheduling does not track pressure.

Reimplemented from llvm::MachineSchedStrategy.

Definition at line 124 of file SystemZMachineScheduler.h.


The documentation for this class was generated from the following files: