Searched refs:ThenCount (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CoverageMappingGen.cpp | 2019 Counter ThenCount = llvm::EnableSingleByteCoverage in VisitIfStmt() local 2031 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), ThenCount); in VisitIfStmt() 2034 Counter OutCount = propagateCounts(ThenCount, S->getThen()); in VisitIfStmt() 2038 ElseCount = subtractCounters(ParentCount, ThenCount); in VisitIfStmt() 2071 createBranchRegion(S->getCond(), ThenCount, in VisitIfStmt() 2072 subtractCounters(ParentCount, ThenCount)); in VisitIfStmt()
|
H A D | CodeGenPGO.cpp | 884 uint64_t ThenCount = setCount(PGO.getRegionCount(S)); in VisitIfStmt() local 885 CountMap[S->getThen()] = ThenCount; in VisitIfStmt() 889 uint64_t ElseCount = ParentCount - ThenCount; in VisitIfStmt()
|
H A D | CGStmt.cpp | 861 uint64_t ThenCount = getProfileCount(S.getThen()); in EmitIfStmt() local 862 if (!ThenCount && !getCurrentProfileCount() && in EmitIfStmt() 873 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, ThenCount, LH); in EmitIfStmt()
|