Home
last modified time | relevance | path

Searched refs:NumBranches (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h110 size_t NumBranches; variable
113 BranchCoverageInfo() : Covered(0), NumBranches(0) {} in BranchCoverageInfo()
115 BranchCoverageInfo(size_t Covered, size_t NumBranches) in BranchCoverageInfo() argument
116 : Covered(Covered), NumBranches(NumBranches) { in BranchCoverageInfo()
117 assert(Covered <= NumBranches && "Covered branches over-counted"); in BranchCoverageInfo()
122 NumBranches += RHS.NumBranches;
128 NumBranches = std::max(NumBranches, RHS.NumBranches); in merge()
133 size_t getNumBranches() const { return NumBranches; } in getNumBranches()
135 bool isFullyCovered() const { return Covered == NumBranches; } in isFullyCovered()
138 assert(Covered <= NumBranches && "Covered branches over-counted"); in getPercentCovered()
[all …]
H A DCoverageSummaryInfo.cpp20 size_t NumBranches = 0; in sumBranches() local
25 ++NumBranches; in sumBranches()
31 ++NumBranches; in sumBranches()
36 return BranchCoverageInfo(CoveredBranches, NumBranches); in sumBranches()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp118 OS << "CHRStats: NumBranches " << NumBranches in print()
123 uint64_t NumBranches = 0; member
777 ++Stats.NumBranches; in findScope()
812 ++Stats.NumBranches; in findScope()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimpleLoopUnswitch.cpp74 STATISTIC(NumBranches, "Number of branches unswitched");
719 ++NumBranches; in unswitchTrivialBranch()
2656 ++NumBranches; in unswitchNontrivialInvariants()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp3924 Statistic &NumBranches = in run() local
3935 ++NumBranches; in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc29113 {"_ZL11NumBranches", "NumBranches"},