Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DVFABIDemangling.cpp69 ParseRet tryParseVLEN(StringRef &ParseString, unsigned &VF, bool &IsScalable) { in tryParseVLEN() argument
75 IsScalable = true; in tryParseVLEN()
86 IsScalable = false; in tryParseVLEN()
342 bool IsScalable; in tryDemangleForVFABI() local
343 if (tryParseVLEN(MangledName, VF, IsScalable) != ParseRet::OK) in tryDemangleForVFABI()
436 if (IsScalable) { in tryDemangleForVFABI()
454 const VFShape Shape({ElementCount::get(VF, IsScalable), Parameters}); in tryDemangleForVFABI()
H A DTargetTransformInfo.cpp673 bool IsScalable) const { in getMinimumVF()
674 return TTIImpl->getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DValueTypes.h74 bool IsScalable = false) {
75 MVT M = MVT::getVectorVT(VT.V, NumElements, IsScalable);
78 return getExtendedVectorVT(Context, VT, NumElements, IsScalable);
496 bool IsScalable);
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DIntrinsics.h203 static IITDescriptor getVector(unsigned Width, bool IsScalable) { in getVector()
205 Result.Vector_Width = ElementCount::get(Width, IsScalable); in getVector()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp136 bool IsScalable) const { in getMinimumVF()
137 assert(!IsScalable && "Scalable VFs are not supported for Hexagon"); in getMinimumVF()
H A DHexagonTargetTransformInfo.h88 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DSveEmitter.cpp69 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp; member in __anon5066fa640111::SVEType
78 IsScalable(true), Predicate(false), PredicatePattern(false), in SVEType()
91 bool isScalableVector() const { return isVector() && IsScalable; } in isScalableVector()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGLoopInfo.cpp279 bool IsScalable = Attrs.VectorizeScalable == LoopAttributes::Enable; in createLoopVectorizeMetadata() local
283 ConstantInt::get(llvm::Type::getInt1Ty(Ctx), IsScalable))}; in createLoopVectorizeMetadata()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DValueTypes.cpp45 bool IsScalable) { in getExtendedVectorVT() argument
48 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable); in getExtendedVectorVT()
H A DTargetLoweringBase.cpp1421 bool IsScalable = VT.isScalableVector(); in computeRegisterProperties() local
1425 MVT::SimpleValueType EndVT = IsScalable ? in computeRegisterProperties()
1456 SVT.isScalableVector() == IsScalable && in computeRegisterProperties()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h997 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
1731 bool IsScalable) const = 0;
2270 bool IsScalable) const override { in getMinimumVF() argument
2271 return Impl.getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
H A DTargetTransformInfoImpl.h447 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const { in getMinimumVF() argument
448 return ElementCount::get(0, IsScalable); in getMinimumVF()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DMachineValueType.h1494 static MVT getVectorVT(MVT VT, unsigned NumElements, bool IsScalable) { in getVectorVT() argument
1495 if (IsScalable) in getVectorVT()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp255 std::optional<int> IsScalable = getOptionalIntLoopAttribute( in getOptionalElementCountLoopAttribute() local
257 return ElementCount::get(*Width, IsScalable.value_or(false)); in getOptionalElementCountLoopAttribute()