Home
last modified time | relevance | path

Searched refs:NumSuccs (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DScheduleDAG.cpp141 assert(N->NumSuccs < std::numeric_limits<unsigned>::max() && in addPred()
144 ++N->NumSuccs; in addPred()
191 assert(N->NumSuccs > 0 && "NumSuccs will underflow!"); in removePred()
193 --N->NumSuccs; in removePred()
395 if (SUnit.NumPreds == 0 && SUnit.NumSuccs == 0) { in VerifyScheduledDAG()
H A DScheduleDAGPrinter.cpp34 return (Node->NumPreds > 10 || Node->NumSuccs > 10); in isNodeHidden()
H A DScheduleDAGInstrs.cpp878 if (SU->NumSuccs == 0 && SU->Latency > 1 && (HasVRegDef || MI.mayLoad())) { in buildSchedGraph()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanHCFGBuilder.cpp296 unsigned NumSuccs = TI->getNumSuccessors(); in buildPlainCFG() local
298 if (NumSuccs == 1) { in buildPlainCFG()
302 } else if (NumSuccs == 2) { in buildPlainCFG()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp155 unsigned NumSuccs = MBB.succ_size(); in runOnMachineFunction() local
184 if ((NumSuccs == 2) && LayoutSucc && (LayoutSucc->pred_size() == 1)) { in runOnMachineFunction()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp88 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()
96 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp2060 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()
2067 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()
2128 if (!N->isMachineOpcode() || !SU->NumSuccs) in MayReduceRegPressure()
2174 if (!N || !N->isMachineOpcode() || !SU->NumSuccs) in RegPressureDiff()
2332 if (SU->NumSuccs && N->isMachineOpcode()) { in unscheduledNode()
2751 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in canEnableCoalescing()
2970 if (SU.NumSuccs != 0) in PrescheduleNodesWithMultipleUses()
3019 if (PredSU->NumSuccs == 1) in PrescheduleNodesWithMultipleUses()
3034 if (PredSuccSU->NumSuccs == 0) in PrescheduleNodesWithMultipleUses()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp687 size_t NumSuccs = SuccNodes[SrcBB].size(); in mergeColdChains() local
688 for (size_t Idx = 0; Idx < NumSuccs; Idx++) { in mergeColdChains()
689 auto DstBB = SuccNodes[SrcBB][NumSuccs - Idx - 1]; in mergeColdChains()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h267 unsigned NumSuccs = 0; ///< # of SDep::Data sucss. variable