Lines Matching refs:SUnit
40 void R600SchedStrategy::MoveUnits(std::vector<SUnit *> &QSrc, in MoveUnits()
41 std::vector<SUnit *> &QDst) in MoveUnits()
52 SUnit* R600SchedStrategy::pickNode(bool &IsTopNode) { in pickNode()
53 SUnit *SU = nullptr; in pickNode()
127 for (const SUnit &S : DAG->SUnits) in pickNode()
135 void R600SchedStrategy::schedNode(SUnit *SU, bool IsTopNode) { in schedNode()
182 void R600SchedStrategy::releaseTopNode(SUnit *SU) { in releaseTopNode()
186 void R600SchedStrategy::releaseBottomNode(SUnit *SU) { in releaseBottomNode()
212 R600SchedStrategy::AluKind R600SchedStrategy::getAluKind(SUnit *SU) const { in getAluKind()
286 int R600SchedStrategy::getInstKind(SUnit* SU) { in getInstKind()
310 SUnit *R600SchedStrategy::PopInst(std::vector<SUnit *> &Q, bool AnyALU) { in PopInst()
313 for (std::vector<SUnit *>::reverse_iterator It = Q.rbegin(), E = Q.rend(); in PopInst()
315 SUnit *SU = *It; in PopInst()
330 std::vector<SUnit *> &QSrc = Pending[IDAlu]; in LoadAlu()
331 for (SUnit *SU : QSrc) { in LoadAlu()
380 SUnit *R600SchedStrategy::AttemptFillSlot(unsigned Slot, bool AnyAlu) { in AttemptFillSlot()
382 SUnit *SlotedSU = PopInst(AvailableAlus[IndexToID[Slot]], AnyAlu); in AttemptFillSlot()
385 SUnit *UnslotedSU = PopInst(AvailableAlus[AluAny], AnyAlu); in AttemptFillSlot()
399 SUnit* R600SchedStrategy::pickAlu() { in pickAlu()
424 SUnit *SU = AttemptFillSlot(3, true); in pickAlu()
433 SUnit *SU = AttemptFillSlot(Chan, false); in pickAlu()
446 SUnit* R600SchedStrategy::pickOther(int QID) { in pickOther()
447 SUnit *SU = nullptr; in pickOther()
448 std::vector<SUnit *> &AQ = Available[QID]; in pickOther()