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

  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGList.cpp 106 /// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
112 if (SuccSU->NumPredsLeft == 0) {
119 --SuccSU->NumPredsLeft;
125 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
ScheduleDAGRRList.cpp     [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 106 assert(NumPredsLeft < UINT_MAX && "NumPredsLeft will overflow!");
107 ++NumPredsLeft;
153 assert(NumPredsLeft > 0 && "NumPredsLeft will underflow!");
154 --NumPredsLeft;
298 dbgs() << " # preds left : " << NumPredsLeft << "\n";
387 if (SUnits[i].NumPredsLeft != 0) {
PostRASchedulerList.cpp 534 /// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
540 if (SuccSU->NumPredsLeft == 0) {
547 --SuccSU->NumPredsLeft;
562 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 249 unsigned NumPredsLeft; // # of preds not scheduled.
281 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
295 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
308 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),

Completed in 629 milliseconds