|
LLVM 23.0.0git
|
HardwareUnitInfo is a wrapper class which maps to some real hardware resource. More...
#include "Target/AMDGPU/AMDGPUCoExecSchedStrategy.h"
Public Member Functions | |
| HardwareUnitInfo () | |
| unsigned | size () |
| unsigned | getTotalCycles () |
| void | setType (unsigned TheType) |
| AMDGPU::InstructionFlavor | getType () const |
| bool | producesCoexecWindow () const |
| void | setProducesCoexecWindow (bool Val) |
| bool | contains (SUnit *SU) const |
| SUnit * | getHigherPriority (SUnit *SU, SUnit *Other) const |
| void | reset () |
| SUnit * | getNextTargetSU (bool LookDeep=false) const |
| void | insert (SUnit *SU, unsigned BlockingCycles) |
Insert the SU into the AllSUs and account its BlockingCycles into the TotalCycles. | |
| void | markScheduled (SUnit *SU, unsigned BlockingCycles) |
Update the state for SU being scheduled by removing it from the AllSus and reducing its BlockingCycles from the TotalCycles. | |
HardwareUnitInfo is a wrapper class which maps to some real hardware resource.
This is used to model hardware resource pressure per region, and guide scheduling heuristics.
Definition at line 154 of file AMDGPUCoExecSchedStrategy.h.
|
inline |
Definition at line 177 of file AMDGPUCoExecSchedStrategy.h.
Definition at line 194 of file AMDGPUCoExecSchedStrategy.h.
Referenced by llvm::CandidateHeuristics::tryCriticalResource().
SU and Other. If so, Definition at line 201 of file AMDGPUCoExecSchedStrategy.h.
References llvm::Other.
Referenced by llvm::CandidateHeuristics::tryCriticalResource().
LookDeep is set, we will look beyond the PrioritySUs (if all the PrioritySUs are ready) to AllSUs to attempt to find a target SU. When looking through AllSUs we sort pick the target SU by minimal depth for top-down scheduling. getNextTargetSU is useful for determining which SU on this HardwareUnit we are trying to schedule - this info helps us determine which dependencies to schedule. LookDeep is useful if the dependencies are long latency (e.g. memory instructions). If we have many long latency dependencies, it is beneficial to enable SUs multiple levels ahead. Definition at line 82 of file AMDGPUCoExecSchedStrategy.cpp.
Referenced by llvm::CandidateHeuristics::tryCriticalResourceDependency().
|
inline |
Definition at line 181 of file AMDGPUCoExecSchedStrategy.h.
|
inline |
Definition at line 188 of file AMDGPUCoExecSchedStrategy.h.
Referenced by llvm::CandidateHeuristics::tryCriticalResource(), and llvm::CandidateHeuristics::tryCriticalResourceDependency().
Insert the SU into the AllSUs and account its BlockingCycles into the TotalCycles.
This maintains the list of PrioritySUs.
Definition at line 108 of file AMDGPUCoExecSchedStrategy.cpp.
References assert(), and llvm::SUnit::getDepth().
Update the state for SU being scheduled by removing it from the AllSus and reducing its BlockingCycles from the TotalCycles.
This maintains the list of PrioritySUS.
Definition at line 137 of file AMDGPUCoExecSchedStrategy.cpp.
References llvm::SUnit::getDepth().
Referenced by llvm::CandidateHeuristics::updateForScheduling().
|
inline |
Definition at line 190 of file AMDGPUCoExecSchedStrategy.h.
|
inline |
Definition at line 212 of file AMDGPUCoExecSchedStrategy.h.
References llvm::AMDGPU::Other.
|
inline |
Definition at line 192 of file AMDGPUCoExecSchedStrategy.h.
|
inline |
Definition at line 183 of file AMDGPUCoExecSchedStrategy.h.
References assert(), and llvm::AMDGPU::NUM_FLAVORS.
|
inline |
Definition at line 179 of file AMDGPUCoExecSchedStrategy.h.