Home
last modified time | relevance | path

Searched refs:CurrentChecks (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp680 SmallVector<GuardWideningImpl::RangeCheck, 3> CurrentChecks; in combineRangeChecks() local
686 copy_if(Checks, std::back_inserter(CurrentChecks), IsCurrentCheck); in combineRangeChecks()
689 assert(CurrentChecks.size() != 0 && "We know we have at least one!"); in combineRangeChecks()
691 if (CurrentChecks.size() < 3) { in combineRangeChecks()
692 RangeChecksOut.insert(RangeChecksOut.end(), CurrentChecks.begin(), in combineRangeChecks()
693 CurrentChecks.end()); in combineRangeChecks()
707 ConstantInt *MinOffset = CurrentChecks.front().getOffset(), in combineRangeChecks()
708 *MaxOffset = CurrentChecks.back().getOffset(); in combineRangeChecks()
722 !std::all_of(std::next(CurrentChecks.begin()), CurrentChecks.end(), in combineRangeChecks()
761 RangeChecksOut.emplace_back(CurrentChecks.front()); in combineRangeChecks()
[all …]