Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerLowering.cpp484 int64_t ElementBits = Ty.getScalarSizeInBits(); in isVShiftRImm() local
485 return Cnt >= 1 && Cnt <= ElementBits; in isVShiftRImm()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6252 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
6262 ElementBits) || in getVShiftImm()
6263 SplatBitSize > ElementBits) in getVShiftImm()
6275 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local
6276 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
6278 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm()
6290 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local
6291 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
6294 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm()
6295 if (Cnt >= -(isNarrow ? ElementBits / 2 : ElementBits) && Cnt <= -1) { in isVShiftRImm()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp10293 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
10302 HasAnyUndefs, ElementBits) || in getVShiftImm()
10303 SplatBitSize > ElementBits) in getVShiftImm()
10315 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftLImm() local
10316 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
10318 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm()
10326 int64_t ElementBits = VT.getScalarSizeInBits(); in isVShiftRImm() local
10327 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
10329 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp17497 int ElementBits = VT.getScalarSizeInBits(); in lower256BitShuffle() local
17498 if (ElementBits < 32) { in lower256BitShuffle()
17509 MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits), in lower256BitShuffle()