Lines Matching defs:BEInsns
211 UP.BEInsns = 2;
684 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) {
703 if (LoopSize.isValid() && LoopSize < BEInsns + 1)
705 LoopSize = BEInsns + 1;
731 assert(LS >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
733 return static_cast<uint64_t>(LS - UP.BEInsns) * CountOverwrite + UP.BEInsns;
735 return static_cast<uint64_t>(LS - UP.BEInsns) * UP.Count + UP.BEInsns;
846 // When computing the unrolled size, note that BEInsns are not replicated
885 count = (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
886 (LoopSize - UP.BEInsns);
1230 UnrollCostEstimator UCE(L, TTI, EphValues, UP.BEInsns);