Home
last modified time | relevance | path

Searched refs:IntBits (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h26 template <typename PointerT, unsigned IntBits, typename PtrTraits>
132 template <typename PointerTy, unsigned IntBits, typename IntType,
143 template <typename PointerT, unsigned IntBits, typename PtrTraits>
148 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable,
160 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1),
194 template <typename PointerTy, unsigned IntBits, typename IntType>
196 using Ty = PointerIntPair<PointerTy, IntBits, IntType>;
222 PointerIntPair<PointerTy, IntBits, IntType, PtrTraits>> {
228 static inline PointerIntPair<PointerTy, IntBits, IntType>
233 static inline PointerIntPair<PointerTy, IntBits, IntType>
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h742 APInt IntBits; // The 128 bits as an integer.
H A DSystemZISelLowering.cpp728 uint64_t Byte = IntBits.lshr(I * 8).trunc(8).getZExtValue(); in isVectorConstantLegal()
791 IntBits = FPImm.bitcastToAPInt().zextOrSelf(128); in SystemZVectorConstantInfo()
795 IntBits <<= (SystemZ::VectorBits - Width); in SystemZVectorConstantInfo()
819 BVN->isConstantSplat(IntBits, SplatUndef, SplatBitSize, HasAnyUndefs, 128, in SystemZVectorConstantInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12834 uint32_t IntBits = IntTy.getSizeInBits(); in performFpToIntCombine() local
12835 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFpToIntCombine()
12839 if (IntBits > FloatBits) in performFpToIntCombine()
12844 int32_t Bits = IntBits == 64 ? 64 : 32; in performFpToIntCombine()
12877 if (IntBits < FloatBits) in performFpToIntCombine()
12903 int32_t IntBits = IntTy.getSizeInBits(); in performFDivCombine() local
12904 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFDivCombine()
12913 if (IntBits > FloatBits) in performFDivCombine()
12941 if (IntBits < FloatBits) in performFDivCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15879 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVCVTCombine() local
15881 if (FloatBits != 32 || IntBits > 32 || (NumLanes != 4 && NumLanes != 2)) { in PerformVCVTCombine()
15904 if (IntBits < FloatBits) in PerformVCVTCombine()
15937 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVDIVCombine() local
15939 if (FloatBits != 32 || IntBits > 32 || (NumLanes != 4 && NumLanes != 2)) { in PerformVDIVCombine()
15956 if (IntBits < FloatBits) in PerformVDIVCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp47450 unsigned IntBits = VT.getScalarSizeInBits(); in lowerX86FPLogicOp() local
47451 MVT IntSVT = MVT::getIntegerVT(IntBits); in lowerX86FPLogicOp()
47452 MVT IntVT = MVT::getVectorVT(IntSVT, VT.getSizeInBits() / IntBits); in lowerX86FPLogicOp()