Searched refs:BranchCount (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/tools/llvm-cov/ |
| H A D | gcov.cpp | 97 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain() local 100 cl::alias BranchCountA("branch-counts", cl::aliasopt(BranchCount)); in gcovMain() 171 GCOV::Options Options(AllBlocks, BranchProb, BranchCount, FuncSummary, in gcovMain()
|
| /llvm-project-15.0.7/bolt/tools/merge-fdata/ |
| H A D | merge-fdata.cpp | 428 uint64_t BranchCount = 0; in main() local 431 BranchCount += SI.Count; in main() 432 return std::make_pair(BranchCount, StringRef(V.second.Name)); in main()
|
| /llvm-project-15.0.7/llvm/include/llvm/ProfileData/ |
| H A D | GCOV.h | 47 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options() 54 bool BranchCount; member
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | LowerExpectIntrinsic.cpp | 57 getBranchWeight(Intrinsic::ID IntrinsicID, CallInst *CI, int BranchCount) { in getBranchWeight() argument 70 double FalseProb = (1.0 - TrueProb) / (BranchCount - 1); in getBranchWeight()
|
| /llvm-project-15.0.7/bolt/lib/Profile/ |
| H A D | DataReader.cpp | 111 int64_t BranchCount = BI.Branches; in getNumExecutedBranches() local 112 assert(BranchCount >= 0 && "branch execution count should not be negative"); in getNumExecutedBranches() 113 ExecutedBranches += BranchCount; in getNumExecutedBranches()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | GCOV.cpp | 554 else if (Options.BranchCount) in print()
|