/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | VTEmitter.cpp | 121 bool IsScalable = VT->getValueAsBit("isScalable"); in run() local 128 IsInteger && IsVector && !IsScalable); in run() 130 IsInteger && IsScalable); in run() 132 IsFP && IsVector && !IsScalable); in run() 133 UpdateVTRange("FP_SCALABLE_VECTOR_VALUETYPE", Name, IsFP && IsScalable); in run() 134 UpdateVTRange("FIXEDLEN_VECTOR_VALUETYPE", Name, IsVector && !IsScalable); in run() 135 UpdateVTRange("SCALABLE_VECTOR_VALUETYPE", Name, IsScalable); in run() 150 << IsScalable << ", " in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | VFABIDemangling.cpp |
|
H A D | TargetTransformInfo.cpp | 769 bool IsScalable) const { in getMinimumVF() 770 return TTIImpl->getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
/freebsd/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); 524 bool IsScalable);
|
H A D | TargetLowering.h | 463 bool IsScalable) const { in shouldExpandGetVectorLength() argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Intrinsics.h | 205 static IITDescriptor getVector(unsigned Width, bool IsScalable) { in getVector() 207 Result.Vector_Width = ElementCount::get(Width, IsScalable); in getVector()
|
/freebsd/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 | 1386 bool IsScalable = VT.isScalableVector(); in computeRegisterProperties() local 1390 MVT::SimpleValueType EndVT = IsScalable ? in computeRegisterProperties() 1421 SVT.isScalableVector() == IsScalable && in computeRegisterProperties()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/ |
H A D | MachineValueType.h | 460 static MVT getVectorVT(MVT VT, unsigned NumElements, bool IsScalable) { in getVectorVT() argument 461 if (IsScalable) in getVectorVT()
|
/freebsd/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/contrib/llvm-project/clang/utils/TableGen/ |
H A D | SveEmitter.cpp | 71 bool DefaultType, IsScalable, Predicate, PredicatePattern, PrefetchOp, member in __anone51b860d0111::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() 643 IsScalable = false; in applyModifier()
|
/freebsd/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/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 1174 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const; 1995 bool IsScalable) const = 0; 2607 bool IsScalable) const override { in getMinimumVF() argument 2608 return Impl.getMinimumVF(ElemWidth, IsScalable); in getMinimumVF()
|
H A D | TargetTransformInfoImpl.h | 497 ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const { in getMinimumVF() argument 498 return ElementCount::get(0, IsScalable); in getMinimumVF()
|
/freebsd/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/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.h | 1013 bool IsScalable) const override;
|
H A D | RISCVISelLowering.cpp | 1535 bool IsScalable) const { in shouldExpandGetVectorLength() 1539 if (!IsScalable) in shouldExpandGetVectorLength()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanRecipes.cpp | 2447 bool VPWidenPointerInductionRecipe::onlyScalarsGenerated(bool IsScalable) { in onlyScalarsGenerated() argument 2449 (!IsScalable || vputils::onlyFirstLaneUsed(this)); in onlyScalarsGenerated()
|
H A D | VPlan.h | 1879 bool onlyScalarsGenerated(bool IsScalable);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 7957 bool IsScalable = cast<ConstantInt>(I.getOperand(2))->isOne(); in visitIntrinsicCall() local 7962 if (!TLI.shouldExpandGetVectorLength(CountVT, VF, IsScalable)) { in visitIntrinsicCall() 7978 ElementCount::get(VF, IsScalable)); in visitIntrinsicCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 28513 bool IsScalable = Ty->isScalableTy(); in createComplexDeinterleavingIR() local 28552 if (IsScalable) { in createComplexDeinterleavingIR() 28575 if (IsScalable) { in createComplexDeinterleavingIR()
|