Home
last modified time | relevance | path

Searched refs:NumSuccsLeft (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAG.cpp161 assert(N->NumSuccsLeft < std::numeric_limits<unsigned>::max() && in addPred()
163 ++N->NumSuccsLeft; in addPred()
207 assert(N->NumSuccsLeft > 0 && "NumSuccsLeft will underflow!"); in removePred()
208 --N->NumSuccsLeft; in removePred()
343 dbgs() << " # succs left : " << NumSuccsLeft << "\n"; in dumpAttributes()
416 if (SUnit.NumSuccsLeft != 0) { in VerifyScheduledDAG()
DMachineScheduler.cpp667 if (PredSU->NumSuccsLeft == 0) { in releasePred()
679 --PredSU->NumSuccsLeft; in releasePred()
680 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) in releasePred()
841 if (!SU.NumSuccsLeft) in findRootsAndBiasEdges()
2925 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft; in biasPhysReg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DGCNILPSched.cpp281 assert(PredSU->isBoundaryNode() || PredSU->NumSuccsLeft > 0); in releasePredecessors()
285 if (!PredSU->isBoundaryNode() && --PredSU->NumSuccsLeft == 0) in releasePredecessors()
DSIMachineScheduler.cpp1895 SUnits[i].NumSuccsLeft = SUnitsLinksBackup[i].NumSuccsLeft; in restoreSULinksLeft()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGFast.cpp143 if (PredSU->NumSuccsLeft == 0) { in ReleasePred()
150 --PredSU->NumSuccsLeft; in ReleasePred()
154 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) { in ReleasePred()
341 if (NewSU->NumSuccsLeft == 0) { in CopyAndMoveSuccessors()
DScheduleDAGRRList.cpp402 if (PredSU->NumSuccsLeft == 0) { in ReleasePred()
409 --PredSU->NumSuccsLeft; in ReleasePred()
419 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) { in ReleasePred()
828 assert(PredSU->NumSuccsLeft < std::numeric_limits<unsigned>::max() && in CapturePred()
830 ++PredSU->NumSuccsLeft; in CapturePred()
1126 if (NewSU->NumSuccsLeft == 0) in TryUnfoldSU()
1179 if (SU->NumSuccsLeft == 0) in CopyAndMoveSuccessors()
2267 if (PredSU->NumSuccsLeft != PredSU->Succs.size()) in unscheduledNode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAG.h269 unsigned NumSuccsLeft = 0; ///< # of succs not scheduled. variable
450 return NumSuccsLeft == 0; in isBottomReady()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp537 if (SU->NumSuccsLeft == 0) in isSingleUnscheduledSucc()