Lines Matching refs:CondCount
632 uint64_t CondCount = in VisitWhileStmt() local
634 CountMap[S->getCond()] = CondCount; in VisitWhileStmt()
636 setCount(BC.BreakCount + CondCount - BodyCount); in VisitWhileStmt()
654 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount); in VisitDoStmt() local
655 CountMap[S->getCond()] = CondCount; in VisitDoStmt()
657 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
686 uint64_t CondCount = in VisitForStmt() local
689 CountMap[S->getCond()] = CondCount; in VisitForStmt()
692 setCount(BC.BreakCount + CondCount - BodyCount); in VisitForStmt()
722 uint64_t CondCount = in VisitCXXForRangeStmt() local
724 CountMap[S->getCond()] = CondCount; in VisitCXXForRangeStmt()
726 setCount(BC.BreakCount + CondCount - BodyCount); in VisitCXXForRangeStmt()
1365 std::optional<uint64_t> CondCount = PGO.getStmtCount(Cond); in createProfileWeightsForLoop() local
1366 if (!CondCount || *CondCount == 0) in createProfileWeightsForLoop()
1369 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()