Searched refs:NumBranches (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageSummaryInfo.h | 110 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, RH in merge() [all...] |
H A D | CoverageSummaryInfo.cpp | 19 static void sumBranches(size_t &NumBranches, size_t &CoveredBranches, in sumBranches() argument 27 ++NumBranches; in sumBranches() 31 ++NumBranches; in sumBranches() 37 static void sumBranchExpansions(size_t &NumBranches, size_t &CoveredBranches, in sumBranchExpansions() argument 42 sumBranches(NumBranches, CoveredBranches, CE.getBranches()); in sumBranchExpansions() 43 sumBranchExpansions(NumBranches, CoveredBranches, CM, CE.getExpansions()); in sumBranchExpansions() 87 size_t NumBranches = 0, CoveredBranches = 0; in get() 88 sumBranches(NumBranches, CoveredBranches, CD.getBranches()); in get() 89 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get() 98 BranchCoverageInfo(CoveredBranches, NumBranches), in get() 72 size_t NumBranches = 0, CoveredBranches = 0; get() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 119 OS << "CHRStats: NumBranches " << NumBranches in print() 124 uint64_t NumBranches = 0; member 779 ++Stats.NumBranches; in findScope() 814 ++Stats.NumBranches; in findScope()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | SimpleLoopUnswitch.cpp | 74 STATISTIC(NumBranches, "Number of branches unswitched"); 713 ++NumBranches; in unswitchTrivialBranch() 2650 ++NumBranches; in unswitchNontrivialInvariants()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineBlockPlacement.cpp | 3762 Statistic &NumBranches = in INITIALIZE_PASS_DEPENDENCY() local 3773 ++NumBranches; in INITIALIZE_PASS_DEPENDENCY()
|