Lines Matching defs:MaxBECount
1597 const SCEV *MaxBECount = SE->getSymbolicMaxBackedgeTakenCount(L);
1598 if (isa<SCEVCouldNotCompute>(MaxBECount))
1634 if (CurrMaxExit == MaxBECount)
1648 MaxBECount, SkipLastIter,
1654 // pre-last iteration (MaxBECount - 1). However, there is a nasty
1666 // them. We can stop querying MaxBECount for this case once SCEV
1667 // understands that (MaxBECount - 1) will not overflow here.
1691 MaxBECount->getType()->isIntegerTy() &&
1695 SE->getWiderType(MaxBECount->getType(), ExactExitCount->getType());
1697 MaxBECount = SE->getNoopOrZeroExtend(MaxBECount, WiderType);
1698 assert(MaxBECount->getType() == ExactExitCount->getType());
1702 if (SE->isLoopEntryGuardedByCond(L, CmpInst::ICMP_ULT, MaxBECount,