Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp71 ParseRet tryParseVLEN(StringRef &ParseString, unsigned &VF, bool &IsScalable) { in tryParseVLEN() argument
77 IsScalable = true; in tryParseVLEN()
88 IsScalable = false; in tryParseVLEN()
344 bool IsScalable; in tryDemangleForVFABI() local
345 if (tryParseVLEN(MangledName, VF, IsScalable) != ParseRet::OK) in tryDemangleForVFABI()
438 if (IsScalable) { in tryDemangleForVFABI()
457 const VFShape Shape({ElementCount::get(VF, IsScalable), Parameters}); in tryDemangleForVFABI()
H A DTargetTransformInfo.cpp602 bool IsScalable) const { in getMinimumVF()
603 return TTIImpl->getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h75 bool IsScalable = false) {
76 MVT M = MVT::getVectorVT(VT.V, NumElements, IsScalable);
79 return getExtendedVectorVT(Context, VT, NumElements, IsScalable);
491 bool IsScalable);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.h205 static IITDescriptor getVector(unsigned Width, bool IsScalable) { in getVector()
207 Result.Vector_Width = ElementCount::get(Width, IsScalable); in getVector()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp120 bool IsScalable) const { in getMinimumVF()
121 assert(!IsScalable && "Scalable VFs are not supported for Hexagon"); in getMinimumVF()
H A DHexagonTargetTransformInfo.h86 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h420 TypeSize(ScalarTy MinVal, bool IsScalable)
421 : LinearPolySize(LinearPolySize::get(MinVal, IsScalable)) {}
H A DMachineValueType.h1387 static MVT getVectorVT(MVT VT, unsigned NumElements, bool IsScalable) { in getVectorVT() argument
1388 if (IsScalable) in getVectorVT()
/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DSveEmitter.cpp69 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp; member in __anon1b4186c10111::SVEType
78 IsScalable(true), Predicate(false), PredicatePattern(false), in SVEType()
91 bool isScalableVector() const { return isVector() && IsScalable; } in isScalableVector()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DValueTypes.cpp44 bool IsScalable) { in getExtendedVectorVT() argument
47 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable); in getExtendedVectorVT()
H A DTargetLoweringBase.cpp1398 bool IsScalable = VT.isScalableVector(); in computeRegisterProperties() local
1402 MVT::SimpleValueType EndVT = IsScalable ? in computeRegisterProperties()
1433 SVT.isScalableVector() == IsScalable && in computeRegisterProperties()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.cpp278 bool IsScalable = Attrs.VectorizeScalable == LoopAttributes::Enable; in createLoopVectorizeMetadata() local
282 ConstantInt::get(llvm::Type::getInt1Ty(Ctx), IsScalable))}; in createLoopVectorizeMetadata()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h922 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
1568 bool IsScalable) const = 0;
2022 bool IsScalable) const override { in getMinimumVF() argument
2023 return Impl.getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
H A DTargetTransformInfoImpl.h400 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const { in getMinimumVF() argument
401 return ElementCount::get(0, IsScalable); in getMinimumVF()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp263 Optional<int> IsScalable = getOptionalIntLoopAttribute( in getOptionalElementCountLoopAttribute() local
265 return ElementCount::get(*Width, IsScalable.getValueOr(false)); in getOptionalElementCountLoopAttribute()