HomeSort by relevance Sort by last modified time
    Searched refs:NumSuccsLeft (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 282 unsigned NumSuccsLeft; // # of succs not scheduled.
322 NumPredsLeft(0), NumSuccsLeft(0), WeakPredsLeft(0), WeakSuccsLeft(0),
338 NumPredsLeft(0), NumSuccsLeft(0), WeakPredsLeft(0), WeakSuccsLeft(0),
353 NumPredsLeft(0), NumSuccsLeft(0), WeakPredsLeft(0), WeakSuccsLeft(0),
471 return NumSuccsLeft == 0;
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 118 assert(N->NumSuccsLeft < UINT_MAX && "NumSuccsLeft will overflow!");
119 ++N->NumSuccsLeft;
167 assert(N->NumSuccsLeft > 0 && "NumSuccsLeft will underflow!");
168 --N->NumSuccsLeft;
326 dbgs() << " # succs left : " << NumSuccsLeft << "\n";
410 if (SUnits[i].NumSuccsLeft != 0) {
MachineScheduler.cpp 555 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
556 /// NumSuccsLeft reaches zero, release the predecessor node.
569 if (PredSU->NumSuccsLeft == 0) {
581 --PredSU->NumSuccsLeft;
582 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
734 if (!I->NumSuccsLeft)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 138 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
144 if (PredSU->NumSuccsLeft == 0) {
151 --PredSU->NumSuccsLeft;
155 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
347 if (NewSU->NumSuccsLeft == 0) {
ScheduleDAGRRList.cpp 364 /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
370 if (PredSU->NumSuccsLeft == 0) {
377 --PredSU->NumSuccsLeft;
387 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
800 assert(PredSU->NumSuccsLeft < UINT_MAX && "NumSuccsLeft will overflow!");
801 ++PredSU->NumSuccsLeft;
    [all...]

Completed in 609 milliseconds