Searched refs:SuccDep (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAG.cpp122 for (SDep &SuccDep : PredSU->Succs) {
123 if (SuccDep == ForwardD) {
124 SuccDep.setLatency(D.getLatency());
224 for (SDep &SuccDep : SU->Succs) {
225 SUnit *SuccSU = SuccDep.getSUnit();
303 for (const SDep &SuccDep : Cur->Succs) {
304 SUnit *SuccSU = SuccDep.getSUnit();
307 SuccSU->Height + SuccDep.getLatency());
580 for (const SDep &SuccDep
582 unsigned s = SuccDep
[all...]
H A DScheduleDAGInstrs.cpp1372 for (const SDep &SuccDep : PredSU->Succs) {
1373 if (SuccDep.getKind() == SDep::Data) {
1438 for (const SDep &SuccDep : SU->Succs) {
1439 if (SuccDep.getKind() == SDep::Data &&
1440 !SuccDep.getSUnit()->isBoundaryNode())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp863 for (SDep& SuccDep : SU->Succs) {
864 SUnit *Succ = SuccDep.getSUnit();
865 if (SuccDep.isWeak() || Succ->NodeNum >= DAGSize)
947 for (SDep& SuccDep : SU->Succs) {
948 SUnit *Succ = SuccDep.getSUnit();
949 if (SuccDep.isWeak() || Succ->NodeNum >= DAGSize)
1017 for (SDep& SuccDep : SU->Succs) {
1018 SUnit *Succ = SuccDep.getSUnit();
1019 if (SuccDep.isWeak() || Succ->NodeNum >= DAGSize)
1038 for (SDep& SuccDep
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp317 SUnit *SuccDep = D.getSUnit(); local
319 RemovePred(SuccDep, D);
321 AddPred(SuccDep, D);
325 SUnit *SuccDep = D.getSUnit(); local
327 RemovePred(SuccDep, D);
330 AddPred(SuccDep, D);
H A DScheduleDAGRRList.cpp1093 SUnit *SuccDep = D.getSUnit(); local
1095 RemovePred(SuccDep, D);
1097 AddPredQueued(SuccDep, D);
1099 if (AvailableQueue->tracksRegPressure() && SuccDep->isScheduled &&
1104 SUnit *SuccDep = D.getSUnit(); local
1106 RemovePred(SuccDep, D);
1109 AddPredQueued(SuccDep, D);

Completed in 80 milliseconds