HomeSort by: relevance | last modified time | path
    Searched refs:NumSuccsLeft (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ScheduleDAG.cpp 161 assert(N->NumSuccsLeft < std::numeric_limits<unsigned>::max() &&
162 "NumSuccsLeft will overflow!");
163 ++N->NumSuccsLeft;
207 assert(N->NumSuccsLeft > 0 && "NumSuccsLeft will underflow!");
208 --N->NumSuccsLeft;
343 dbgs() << " # succs left : " << NumSuccsLeft << "\n";
416 if (SUnit.NumSuccsLeft != 0) {
MachineScheduler.cpp 670 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
671 /// NumSuccsLeft reaches zero, release the predecessor node.
684 if (PredSU->NumSuccsLeft == 0) {
696 --PredSU->NumSuccsLeft;
697 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
858 if (!SU.NumSuccsLeft)
3108 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
GCNILPSched.cpp 280 assert(PredSU->isBoundaryNode() || PredSU->NumSuccsLeft > 0);
284 if (!PredSU->isBoundaryNode() && --PredSU->NumSuccsLeft == 0)
SIMachineScheduler.cpp 1874 SUnits[i].NumSuccsLeft = SUnitsLinksBackup[i].NumSuccsLeft;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 137 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
143 if (PredSU->NumSuccsLeft == 0) {
150 --PredSU->NumSuccsLeft;
154 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
341 if (NewSU->NumSuccsLeft == 0) {
ScheduleDAGRRList.cpp 396 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
402 if (PredSU->NumSuccsLeft == 0) {
409 --PredSU->NumSuccsLeft;
419 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
828 assert(PredSU->NumSuccsLeft < std::numeric_limits<unsigned>::max() &&
829 "NumSuccsLeft will overflow!");
830 ++PredSU->NumSuccsLeft;
1126 if (NewSU->NumSuccsLeft == 0)
1179 if (SU->NumSuccsLeft == 0)
2268 // NumSuccsLeft counts all deps. Don't compare it with NumSuccs which onl
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ScheduleDAG.h 269 unsigned NumSuccsLeft = 0; ///< # of succs not scheduled.
450 return NumSuccsLeft == 0;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 537 if (SU->NumSuccsLeft == 0)

Completed in 26 milliseconds