Searched refs:ElementBits (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h288 switch (unsigned ElementBits = ElementTy->getScalarSizeInBits()) {
294 unsigned VectorBits = NumElements.getFixedValue() * ElementBits;
H A DAArch64ISelLowering.cpp12905 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
12914 HasAnyUndefs, ElementBits) ||
12915 SplatBitSize > ElementBits)
12923 /// 0 <= Value < ElementBits for a left shift; or
12924 /// 0 <= Value <= ElementBits for a long left shift.
12927 int64_t ElementBits = VT.getScalarSizeInBits(); local
12928 if (!getVShiftImm(Op, ElementBits, Cnt))
12930 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
12935 /// 1 <= Value <= ElementBits for a right shift; or
12938 int64_t ElementBits local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerLowering.cpp517 /// 1 <= Value <= ElementBits for a right shift.
526 int64_t ElementBits = Ty.getScalarSizeInBits(); local
527 return Cnt >= 1 && Cnt <= ElementBits;
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6532 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
6542 ElementBits) ||
6543 SplatBitSize > ElementBits)
6551 /// 0 <= Value < ElementBits for a left shift; or
6552 /// 0 <= Value <= ElementBits for a long left shift.
6555 int64_t ElementBits = VT.getScalarSizeInBits(); local
6556 if (!getVShiftImm(Op, ElementBits, Cnt))
6558 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
6565 /// 1 <= |Value| <= ElementBits for a right shift; or
6566 /// 1 <= |Value| <= ElementBits/
6570 int64_t ElementBits = VT.getScalarSizeInBits(); local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18759 int ElementBits = VT.getScalarSizeInBits();
18760 if (ElementBits < 32) {
18771 MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits),
[all...]

Completed in 236 milliseconds