| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | VTEmitter.cpp | 74 bool IsScalable = VT->getValueAsInt("isScalable"); in run() local 77 IsInteger && IsVector && !IsScalable); in run() 79 IsInteger && IsScalable); in run() 81 IsFP && IsVector && !IsScalable); in run() 82 UpdateVTRange("FP_SCALABLE_VECTOR_VALUETYPE", Name, IsFP && IsScalable); in run() 83 UpdateVTRange("FIXEDLEN_VECTOR_VALUETYPE", Name, IsVector && !IsScalable); in run() 84 UpdateVTRange("SCALABLE_VECTOR_VALUETYPE", Name, IsScalable); in run() 99 << IsScalable << ")\n"; in run()
|
| /freebsd-14.2/contrib/llvm-project/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); 515 bool IsScalable);
|
| H A D | MachineValueType.h | 467 static MVT getVectorVT(MVT VT, unsigned NumElements, bool IsScalable) { in getVectorVT() argument 468 if (IsScalable) in getVectorVT()
|
| H A D | TargetLowering.h | 465 bool IsScalable) const { in shouldExpandGetVectorLength() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Intrinsics.h | 197 static IITDescriptor getVector(unsigned Width, bool IsScalable) { in getVector() 199 Result.Vector_Width = ElementCount::get(Width, IsScalable); in getVector()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetTransformInfo.cpp | 136 bool IsScalable) const { in getMinimumVF() 137 assert(!IsScalable && "Scalable VFs are not supported for Hexagon"); in getMinimumVF()
|
| H A D | HexagonTargetTransformInfo.h | 88 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 71 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp, member in __anonc999c1430111::SVEType 81 IsScalable(true), Predicate(false), PredicatePattern(false), in SVEType() 99 bool isScalableVector() const { return isVector() && IsScalable; } in isScalableVector() 100 bool isFixedLengthVector() const { return isVector() && !IsScalable; } in isFixedLengthVector() 622 IsScalable = false; in applyModifier()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 46 bool IsScalable) { in getExtendedVectorVT() argument 49 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable); in getExtendedVectorVT()
|
| H A D | TargetLoweringBase.cpp | 1466 bool IsScalable = VT.isScalableVector(); in computeRegisterProperties() local 1470 MVT::SimpleValueType EndVT = IsScalable ? in computeRegisterProperties() 1501 SVT.isScalableVector() == IsScalable && in computeRegisterProperties()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGLoopInfo.cpp | 279 bool IsScalable = Attrs.VectorizeScalable == LoopAttributes::Enable; in createLoopVectorizeMetadata() local 283 ConstantInt::get(llvm::Type::getInt1Ty(Ctx), IsScalable))}; in createLoopVectorizeMetadata()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfo.h | 1140 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const; 1926 bool IsScalable) const = 0; 2513 bool IsScalable) const override { in getMinimumVF() argument 2514 return Impl.getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
| H A D | TargetTransformInfoImpl.h | 476 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const { in getMinimumVF() argument 477 return ElementCount::get(0, IsScalable); in getMinimumVF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetTransformInfo.cpp | 739 bool IsScalable) const { in getMinimumVF() 740 return TTIImpl->getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 255 std::optional<int> IsScalable = getOptionalIntLoopAttribute( in getOptionalElementCountLoopAttribute() local 257 return ElementCount::get(*Width, IsScalable.value_or(false)); in getOptionalElementCountLoopAttribute()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.h | 950 bool IsScalable) const override;
|
| H A D | RISCVISelLowering.cpp | 1436 bool IsScalable) const { in shouldExpandGetVectorLength() 1440 if (!IsScalable) in shouldExpandGetVectorLength()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 7585 bool IsScalable = cast<ConstantInt>(I.getOperand(2))->isOne(); in visitIntrinsicCall() local 7590 if (!TLI.shouldExpandGetVectorLength(CountVT, VF, IsScalable)) { in visitIntrinsicCall() 7606 ElementCount::get(VF, IsScalable)); in visitIntrinsicCall()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 26940 bool IsScalable = Ty->isScalableTy(); in createComplexDeinterleavingIR() local 26979 if (IsScalable) { in createComplexDeinterleavingIR() 27002 if (IsScalable) { in createComplexDeinterleavingIR()
|