Home
last modified time | relevance | path

Searched refs:BackEdges (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp583 SmallVector<unsigned, 8> BackEdges; in calcLoopBranchHeuristics() local
597 BackEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
604 BackEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
610 if (BackEdges.empty() && ExitingEdges.empty() && UnlikelyEdges.empty()) in calcLoopBranchHeuristics()
615 unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + in calcLoopBranchHeuristics()
620 if (uint32_t numBackEdges = BackEdges.size()) { in calcLoopBranchHeuristics()
623 for (unsigned SuccIdx : BackEdges) in calcLoopBranchHeuristics()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h183 SmallVector<CFGBlock*, 4> BackEdges; in walk() local
192 BackEdges.push_back(*SI); in walk()
198 for (auto *Blk : BackEdges) in walk()