Lines Matching defs:MaxBECount
1598 const SCEV *MaxBECount = SE->getSymbolicMaxBackedgeTakenCount(L);
1599 if (isa<SCEVCouldNotCompute>(MaxBECount))
1635 if (CurrMaxExit == MaxBECount)
1649 MaxBECount, SkipLastIter,
1655 // pre-last iteration (MaxBECount - 1). However, there is a nasty
1667 // them. We can stop querying MaxBECount for this case once SCEV
1668 // understands that (MaxBECount - 1) will not overflow here.
1692 MaxBECount->getType()->isIntegerTy() &&
1696 SE->getWiderType(MaxBECount->getType(), ExactExitCount->getType());
1698 MaxBECount = SE->getNoopOrZeroExtend(MaxBECount, WiderType);
1699 assert(MaxBECount->getType() == ExactExitCount->getType());
1703 if (SE->isLoopEntryGuardedByCond(L, CmpInst::ICMP_ULT, MaxBECount,