| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | VFABIDemangling.cpp | 69 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 D | TargetTransformInfo.cpp | 653 bool IsScalable) const { in getMinimumVF() 654 return TTIImpl->getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | ValueTypes.h | 74 bool IsScalable = false) { 75 MVT M = MVT::getVectorVT(VT.V, NumElements, IsScalable); 78 return getExtendedVectorVT(Context, VT, NumElements, IsScalable); 496 bool IsScalable);
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Intrinsics.h | 208 static IITDescriptor getVector(unsigned Width, bool IsScalable) { in getVector() 210 Result.Vector_Width = ElementCount::get(Width, IsScalable); in getVector()
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetTransformInfo.cpp | 121 bool IsScalable) const { in getMinimumVF() 122 assert(!IsScalable && "Scalable VFs are not supported for Hexagon"); in getMinimumVF()
|
| H A D | HexagonTargetTransformInfo.h | 87 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | TypeSize.h | 438 TypeSize(ScalarTy MinVal, bool IsScalable) 439 : LinearPolySize(LinearPolySize::get(MinVal, IsScalable)) {}
|
| H A D | MachineValueType.h | 1436 static MVT getVectorVT(MVT VT, unsigned NumElements, bool IsScalable) { in getVectorVT() argument 1437 if (IsScalable) in getVectorVT()
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 69 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp; member in __anon409da13d0111::SVEType 78 IsScalable(true), Predicate(false), PredicatePattern(false), in SVEType() 91 bool isScalableVector() const { return isVector() && IsScalable; } in isScalableVector()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 45 bool IsScalable) { in getExtendedVectorVT() argument 48 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable); in getExtendedVectorVT()
|
| H A D | TargetLoweringBase.cpp | 1401 bool IsScalable = VT.isScalableVector(); in computeRegisterProperties() local 1405 MVT::SimpleValueType EndVT = IsScalable ? in computeRegisterProperties() 1436 SVT.isScalableVector() == IsScalable && in computeRegisterProperties()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGLoopInfo.cpp | 278 bool IsScalable = Attrs.VectorizeScalable == LoopAttributes::Enable; in createLoopVectorizeMetadata() local 282 ConstantInt::get(llvm::Type::getInt1Ty(Ctx), IsScalable))}; in createLoopVectorizeMetadata()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfo.h | 968 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const; 1678 bool IsScalable) const = 0; 2187 bool IsScalable) const override { in getMinimumVF() argument 2188 return Impl.getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
| H A D | TargetTransformInfoImpl.h | 432 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const { in getMinimumVF() argument 433 return ElementCount::get(0, IsScalable); in getMinimumVF()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 255 Optional<int> IsScalable = getOptionalIntLoopAttribute( in getOptionalElementCountLoopAttribute() local 257 return ElementCount::get(*Width, IsScalable.value_or(false)); in getOptionalElementCountLoopAttribute()
|