Searched refs:ElementBits (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.h | 303 switch (unsigned ElementBits = ElementTy->getScalarSizeInBits()) { in isLegalBroadcastLoad() local 309 unsigned VectorBits = NumElements.getFixedValue() * ElementBits; in isLegalBroadcastLoad()
|
| H A D | AArch64ISelLowering.cpp | 13784 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument 13793 HasAnyUndefs, ElementBits) || in getVShiftImm() 13794 SplatBitSize > ElementBits) in getVShiftImm() 13806 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local 13807 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm() 13809 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm() 13817 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local 13818 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm() 13820 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64PostLegalizerLowering.cpp | 536 int64_t ElementBits = Ty.getScalarSizeInBits(); in isVShiftRImm() local 537 return Cnt >= 1 && Cnt <= ElementBits; in isVShiftRImm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 6593 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument 6603 ElementBits) || in getVShiftImm() 6604 SplatBitSize > ElementBits) in getVShiftImm() 6616 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local 6617 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm() 6619 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm() 6631 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local 6632 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm() 6635 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm() 6636 if (Cnt >= -(isNarrow ? ElementBits / 2 : ElementBits) && Cnt <= -1) { in isVShiftRImm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 16464 int ElementBits = VT.getScalarSizeInBits(); in lower256BitShuffle() local 16465 if (ElementBits < 32) { in lower256BitShuffle() 16476 MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits), in lower256BitShuffle()
|