Lines Matching refs:CondCount
505 uint64_t CondCount = in VisitWhileStmt() local
507 CountMap[S->getCond()] = CondCount; in VisitWhileStmt()
509 setCount(BC.BreakCount + CondCount - BodyCount); in VisitWhileStmt()
527 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount); in VisitDoStmt() local
528 CountMap[S->getCond()] = CondCount; in VisitDoStmt()
530 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
559 uint64_t CondCount = in VisitForStmt() local
562 CountMap[S->getCond()] = CondCount; in VisitForStmt()
565 setCount(BC.BreakCount + CondCount - BodyCount); in VisitForStmt()
595 uint64_t CondCount = in VisitCXXForRangeStmt() local
597 CountMap[S->getCond()] = CondCount; in VisitCXXForRangeStmt()
599 setCount(BC.BreakCount + CondCount - BodyCount); in VisitCXXForRangeStmt()
1120 std::optional<uint64_t> CondCount = PGO.getStmtCount(Cond); in createProfileWeightsForLoop() local
1121 if (!CondCount || *CondCount == 0) in createProfileWeightsForLoop()
1124 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()