Searched refs:NumBranches (Results 1 – 5 of 5) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/tools/llvm-cov/ |
| 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, 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 …]
|
| 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() 72 size_t NumBranches = 0, CoveredBranches = 0; in get() local 73 sumBranches(NumBranches, CoveredBranches, CD.getBranches()); in get() 74 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get() 80 BranchCoverageInfo(CoveredBranches, NumBranches)); in get()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| 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()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| D | SimpleLoopUnswitch.cpp | 74 STATISTIC(NumBranches, "Number of branches unswitched"); 667 ++NumBranches; in unswitchTrivialBranch() 2557 ++NumBranches; in unswitchNontrivialInvariants()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | MachineBlockPlacement.cpp | 3685 Statistic &NumBranches = in INITIALIZE_PASS_DEPENDENCY() local 3696 ++NumBranches; in INITIALIZE_PASS_DEPENDENCY()
|