Lines Matching refs:CondCount
504 uint64_t CondCount = in VisitWhileStmt() local
506 CountMap[S->getCond()] = CondCount; in VisitWhileStmt()
508 setCount(BC.BreakCount + CondCount - BodyCount); in VisitWhileStmt()
526 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount); in VisitDoStmt() local
527 CountMap[S->getCond()] = CondCount; in VisitDoStmt()
529 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
558 uint64_t CondCount = in VisitForStmt() local
561 CountMap[S->getCond()] = CondCount; in VisitForStmt()
564 setCount(BC.BreakCount + CondCount - BodyCount); in VisitForStmt()
594 uint64_t CondCount = in VisitCXXForRangeStmt() local
596 CountMap[S->getCond()] = CondCount; in VisitCXXForRangeStmt()
598 setCount(BC.BreakCount + CondCount - BodyCount); in VisitCXXForRangeStmt()
1109 Optional<uint64_t> CondCount = PGO.getStmtCount(Cond); in createProfileWeightsForLoop() local
1110 if (!CondCount || *CondCount == 0) in createProfileWeightsForLoop()
1113 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()