Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h83 std::optional<unsigned> getMaxVScale() const;
H A DRISCVTargetTransformInfo.cpp209 std::optional<unsigned> RISCVTTIImpl::getMaxVScale() const { in getMaxVScale() function in RISCVTTIImpl
212 return BaseT::getMaxVScale(); in getMaxVScale()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h979 std::optional<unsigned> getMaxVScale() const;
1726 virtual std::optional<unsigned> getMaxVScale() const = 0;
2259 std::optional<unsigned> getMaxVScale() const override { in getMaxVScale() function
2260 return Impl.getMaxVScale(); in getMaxVScale()
H A DTargetTransformInfoImpl.h439 std::optional<unsigned> getMaxVScale() const { return std::nullopt; } in getMaxVScale() function
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp659 std::optional<unsigned> TargetTransformInfo::getMaxVScale() const { in getMaxVScale() function in TargetTransformInfo
660 return TTIImpl->getMaxVScale(); in getMaxVScale()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h714 std::optional<unsigned> getMaxVScale() const { return std::nullopt; } in getMaxVScale() function
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4909 std::optional<unsigned> MaxVScale = TTI.getMaxVScale(); in getMaxLegalScalableVF()