Home | History | Annotate | Download | only in CodeGen

Lines Matching full:condcount

346     uint64_t CondCount =
348 CountMap[S->getCond()] = CondCount;
350 setCount(BC.BreakCount + CondCount - BodyCount);
368 uint64_t CondCount = setCount(BackedgeCount + BC.ContinueCount);
369 CountMap[S->getCond()] = CondCount;
371 setCount(BC.BreakCount + CondCount - LoopCount);
400 uint64_t CondCount =
403 CountMap[S->getCond()] = CondCount;
406 setCount(BC.BreakCount + CondCount - BodyCount);
434 uint64_t CondCount =
436 CountMap[S->getCond()] = CondCount;
438 setCount(BC.BreakCount + CondCount - BodyCount);
888 Optional<uint64_t> CondCount = PGO.getStmtCount(Cond);
889 assert(CondCount.hasValue() && "missing expected loop condition count");
890 if (*CondCount == 0)
893 std::max(*CondCount, LoopCount) - LoopCount);