Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DVPlanHCFGBuilder.cpp276 unsigned NumSuccs = TI->getNumSuccessors(); in buildPlainCFG() local
278 if (NumSuccs == 1) { in buildPlainCFG()
282 } else if (NumSuccs == 2) { in buildPlainCFG()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
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()
DScheduleDAGPrinter.cpp39 return (Node->NumPreds > 10 || Node->NumSuccs > 10); in isNodeHidden()
DScheduleDAGInstrs.cpp877 if (SU->NumSuccs == 0 && SU->Latency > 1 && (HasVRegDef || MI.mayLoad())) { in buildSchedGraph()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonCFGOptimizer.cpp157 unsigned NumSuccs = MBB->succ_size(); in runOnMachineFunction() local
186 if ((NumSuccs == 2) && LayoutSucc && (LayoutSucc->pred_size() == 1)) { in runOnMachineFunction()
DHexagonSubtarget.cpp346 if ((DstInst->isRegSequence() || DstInst->isCopy()) && Dst->NumSuccs == 1) { in adjustSchedDependency()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DGCNILPSched.cpp89 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()
97 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGRRList.cpp2043 if (SU->NumSuccs == 0 && SU->NumPreds != 0) in getNodePriority()
2050 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in getNodePriority()
2111 if (!N->isMachineOpcode() || !SU->NumSuccs) in MayReduceRegPressure()
2157 if (!N || !N->isMachineOpcode() || !SU->NumSuccs) in RegPressureDiff()
2305 if (SU->NumSuccs && N->isMachineOpcode()) { in unscheduledNode()
2724 if (SU->NumPreds == 0 && SU->NumSuccs != 0) in canEnableCoalescing()
2946 if (SU.NumSuccs != 0) in PrescheduleNodesWithMultipleUses()
2996 if (PredSU->NumSuccs == 1) in PrescheduleNodesWithMultipleUses()
3012 if (PredSuccSU->NumSuccs == 0) in PrescheduleNodesWithMultipleUses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAG.h267 unsigned NumSuccs = 0; ///< # of SDep::Data sucss. variable