Lines Matching refs:CondCount
721 uint64_t CondCount = in VisitWhileStmt() local
723 CountMap[S->getCond()] = CondCount; in VisitWhileStmt()
725 setCount(BC.BreakCount + CondCount - BodyCount); in VisitWhileStmt()
743 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount); in VisitDoStmt() local
744 CountMap[S->getCond()] = CondCount; in VisitDoStmt()
746 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
775 uint64_t CondCount = in VisitForStmt() local
778 CountMap[S->getCond()] = CondCount; in VisitForStmt()
781 setCount(BC.BreakCount + CondCount - BodyCount); in VisitForStmt()
811 uint64_t CondCount = in VisitCXXForRangeStmt() local
813 CountMap[S->getCond()] = CondCount; in VisitCXXForRangeStmt()
815 setCount(BC.BreakCount + CondCount - BodyCount); in VisitCXXForRangeStmt()
1495 std::optional<uint64_t> CondCount = PGO.getStmtCount(Cond); in createProfileWeightsForLoop() local
1496 if (!CondCount || *CondCount == 0) in createProfileWeightsForLoop()
1499 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()