Searched refs:NumSuccs (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp45 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
H A DScheduleDAG.cpp99 assert(N->NumSuccs < UINT_MAX && "NumSuccs will overflow!");
101 ++N->NumSuccs;
150 assert(N->NumSuccs > 0 && "NumSuccs will underflow!");
152 --N->NumSuccs;
388 if (SUnits[i].NumPreds == 0 && SUnits[i].NumSuccs == 0) {
H A DScheduleDAGInstrs.cpp796 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
798 if (SU->NumSuccs == 0 && SU->Latency > 1
/freebsd-10.2-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp145 unsigned NumSuccs = MBB->succ_size(); local
174 if ((NumSuccs == 2) && LayoutSucc && (LayoutSucc->pred_size() == 1)) {
/freebsd-10.2-release/contrib/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h274 unsigned NumSuccs; // # of SDep::Data sucss. local
313 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
327 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
340 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1903 if (SU->NumSuccs == 0 && SU->NumPreds != 0)
1910 if (SU->NumPreds == 0 && SU->NumSuccs != 0)
1974 if (!N->isMachineOpcode() || !SU->NumSuccs)
2021 if (!N || !N->isMachineOpcode() || !SU->NumSuccs)
2130 // NumSuccsLeft counts all deps. Don't compare it with NumSuccs which only
2170 if (SU->NumSuccs && N->isMachineOpcode()) {
2596 if (SU->NumPreds == 0 && SU->NumSuccs != 0)
2821 if (SU->NumSuccs != 0)
2849 if (PredSU->NumSuccs == 1)
2866 if (PredSuccSU->NumSuccs
[all...]

Completed in 138 milliseconds