Searched refs:NumSuccs (Results 1 – 9 of 9) sorted by relevance
273 unsigned NumSuccs = TI->getNumSuccessors(); in buildPlainCFG() local275 if (NumSuccs == 1) { in buildPlainCFG()279 } else if (NumSuccs == 2) { in buildPlainCFG()
137 assert(N->NumSuccs < std::numeric_limits<unsigned>::max() && in addPred()140 ++N->NumSuccs; in addPred()187 assert(N->NumSuccs > 0 && "NumSuccs will underflow!"); in removePred()189 --N->NumSuccs; in removePred()391 if (SUnit.NumPreds == 0 && SUnit.NumSuccs == 0) { in VerifyScheduledDAG()
40 return (Node->NumPreds > 10 || Node->NumSuccs > 10); in isNodeHidden()
847 if (SU->NumSuccs == 0 && SU->Latency > 1 && (HasVRegDef || MI.mayLoad())) { in buildSchedGraph()
158 unsigned NumSuccs = MBB->succ_size(); in runOnMachineFunction() local187 if ((NumSuccs == 2) && LayoutSucc && (LayoutSucc->pred_size() == 1)) { in runOnMachineFunction()
348 if ((DstInst->isRegSequence() || DstInst->isCopy()) && Dst->NumSuccs == 1) { in adjustSchedDependency()
89 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()97 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()
2026 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()2033 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()2094 if (!N->isMachineOpcode() || !SU->NumSuccs) in MayReduceRegPressure()2140 if (!N || !N->isMachineOpcode() || !SU->NumSuccs) in RegPressureDiff()2288 if (SU->NumSuccs && N->isMachineOpcode()) { in unscheduledNode()2707 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in canEnableCoalescing()2929 if (SU.NumSuccs != 0) in PrescheduleNodesWithMultipleUses()2956 if (PredSU->NumSuccs == 1) in PrescheduleNodesWithMultipleUses()2972 if (PredSuccSU->NumSuccs == 0) in PrescheduleNodesWithMultipleUses()
271 unsigned NumSuccs = 0; ///< # of SDep::Data sucss.