Home
last modified time | relevance | path

Searched refs:NumPredsLeft (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGVLIW.cpp117 if (SuccSU->NumPredsLeft == 0) { in releaseSucc()
126 --SuccSU->NumPredsLeft; in releaseSucc()
132 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) { in releaseSucc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAG.cpp151 assert(NumPredsLeft < std::numeric_limits<unsigned>::max() && in addPred()
153 ++NumPredsLeft; in addPred()
199 assert(NumPredsLeft > 0 && "NumPredsLeft will underflow!"); in removePred()
200 --NumPredsLeft; in removePred()
342 dbgs() << " # preds left : " << NumPredsLeft << "\n"; in dumpAttributes()
424 if (SUnit.NumPredsLeft != 0) { in VerifyScheduledDAG()
DPostRASchedulerList.cpp462 if (SuccSU->NumPredsLeft == 0) { in ReleaseSucc()
469 --SuccSU->NumPredsLeft; in ReleaseSucc()
484 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) in ReleaseSucc()
538 if (!SUnits[i].NumPredsLeft && !SUnits[i].isAvailable) { in ListScheduleTopDown()
DMachineScheduler.cpp630 if (SuccSU->NumPredsLeft == 0) { in releaseSucc()
642 --SuccSU->NumPredsLeft; in releaseSucc()
643 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) in releaseSucc()
838 if (!SU.NumPredsLeft) 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/WebAssembly/
DWebAssemblyCFGSort.cpp247 SmallVector<unsigned, 16> NumPredsLeft(MF.getNumBlockIDs(), 0); in sortBlocks() local
255 NumPredsLeft[MBB.getNumber()] = N; in sortBlocks()
300 if (--NumPredsLeft[Succ->getNumber()] == 0) in sortBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.cpp294 if (!SU->NumPredsLeft) in fastSchedule()
412 if (!SU->NumPredsLeft) in schedule()
433 SU->NumPredsLeft == 0); in schedule()
460 ++SuccSU->NumPredsLeft; in undoReleaseSucc()
471 if (SuccSU->NumPredsLeft == 0) { in releaseSucc()
479 --SuccSU->NumPredsLeft; in releaseSucc()
494 if (SuccSU->NumPredsLeft == 0 && InOrOutBlock) in releaseSuccessors()
501 assert (!SU->NumPredsLeft); in nodeScheduled()
1893 SUnits[i].NumPredsLeft = SUnitsLinksBackup[i].NumPredsLeft; in restoreSULinksLeft()
DGCNMinRegStrategy.cpp89 NumPreds[I] = SUnits[I].NumPredsLeft; in initNumPreds()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonHazardRecognizer.cpp145 S.getSUnit()->NumPredsLeft == 1) { in EmitInstruction()
DHexagonMachineScheduler.cpp522 if (SU->NumPredsLeft == 0) in isSingleUnscheduledPred()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAG.h268 unsigned NumPredsLeft = 0; ///< # of preds not scheduled. variable
447 return NumPredsLeft == 0; in isTopReady()