Lines Matching refs:CondCount
489 uint64_t CondCount = in VisitWhileStmt() local
491 CountMap[S->getCond()] = CondCount; in VisitWhileStmt()
493 setCount(BC.BreakCount + CondCount - BodyCount); in VisitWhileStmt()
511 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount); in VisitDoStmt() local
512 CountMap[S->getCond()] = CondCount; in VisitDoStmt()
514 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
543 uint64_t CondCount = in VisitForStmt() local
546 CountMap[S->getCond()] = CondCount; in VisitForStmt()
549 setCount(BC.BreakCount + CondCount - BodyCount); in VisitForStmt()
579 uint64_t CondCount = in VisitCXXForRangeStmt() local
581 CountMap[S->getCond()] = CondCount; in VisitCXXForRangeStmt()
583 setCount(BC.BreakCount + CondCount - BodyCount); in VisitCXXForRangeStmt()
1082 Optional<uint64_t> CondCount = PGO.getStmtCount(Cond); in createProfileWeightsForLoop() local
1083 if (!CondCount || *CondCount == 0) in createProfileWeightsForLoop()
1086 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()