Home
last modified time | relevance | path

Searched refs:ElementBits (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp7626 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
7635 HasAnyUndefs, ElementBits) || in getVShiftImm()
7636 SplatBitSize > ElementBits) in getVShiftImm()
7648 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local
7649 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
7651 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm()
7659 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local
7660 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
7662 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp12204 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
12213 HasAnyUndefs, ElementBits) || in getVShiftImm()
12214 SplatBitSize > ElementBits) in getVShiftImm()
12226 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local
12227 if (! getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
12229 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits); in isVShiftLImm()
12241 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local
12242 if (! getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
12245 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits)); in isVShiftRImm()
12246 if (Cnt >= -(isNarrow ? ElementBits/2 : ElementBits) && Cnt <= -1) { in isVShiftRImm()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp15259 int ElementBits = VT.getScalarSizeInBits(); in lower256BitVectorShuffle() local
15260 if (ElementBits < 32) { in lower256BitVectorShuffle()
15271 MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits), in lower256BitVectorShuffle()