Lines Matching full:condcount
341 uint64_t CondCount =
343 CountMap[S->getCond()] = CondCount;
345 setCount(BC.BreakCount + CondCount - BodyCount);
363 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount);
364 CountMap[S->getCond()] = CondCount;
366 setCount(BC.BreakCount + CondCount - LoopCount);
395 uint64_t CondCount =
398 CountMap[S->getCond()] = CondCount;
401 setCount(BC.BreakCount + CondCount - BodyCount);
428 uint64_t CondCount =
430 CountMap[S->getCond()] = CondCount;
432 setCount(BC.BreakCount + CondCount - BodyCount);
835 Optional<uint64_t> CondCount = PGO.getStmtCount(Cond);
836 assert(CondCount.hasValue() && "missing expected loop condition count");
837 if (*CondCount == 0)
840 std::max(*CondCount, LoopCount) - LoopCount);