Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1816 Opcode(Opc), MinIdx(min), MaxIdx(max) { } in costAndCollectOperands()
1818 size_t MinIdx; in costAndCollectOperands() member
1835 unsigned MinIdx = 0, in costAndCollectOperands()
1837 Operations.emplace_back(Opcode, MinIdx, MaxIdx); in costAndCollectOperands()
1842 auto CmpSelCost = [&](unsigned Opcode, unsigned NumRequired, unsigned MinIdx, in costAndCollectOperands() argument
1844 Operations.emplace_back(Opcode, MinIdx, MaxIdx); in costAndCollectOperands()
1958 size_t MinIdx = std::max(SCEVOp.index(), CostOp.MinIdx); in costAndCollectOperands() local
1959 size_t OpIdx = std::min(MinIdx, CostOp.MaxIdx); in costAndCollectOperands()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp5252 size_t MinIdx = 0; in NarrowSearchSpaceByDeletingCostlyFormulas() local
5278 MinIdx = i; in NarrowSearchSpaceByDeletingCostlyFormulas()
5281 LLVM_DEBUG(dbgs() << " The formula "; LU.Formulae[MinIdx].print(dbgs()); in NarrowSearchSpaceByDeletingCostlyFormulas()
5283 if (MinIdx != 0) in NarrowSearchSpaceByDeletingCostlyFormulas()
5284 std::swap(LU.Formulae[MinIdx], LU.Formulae[0]); in NarrowSearchSpaceByDeletingCostlyFormulas()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp7535 unsigned MinIdx = NElts, MaxIdx = 0; in canReuseExtract() local
7552 if (MinIdx > ExtIdx) in canReuseExtract()
7553 MinIdx = ExtIdx; in canReuseExtract()
7557 if (MaxIdx - MinIdx + 1 > E) in canReuseExtract()
7560 MinIdx = 0; in canReuseExtract()
7573 const unsigned ExtIdx = Indices[I] - MinIdx; in canReuseExtract()