Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DPointerIntPair.h25 template <typename PointerT, unsigned IntBits, typename PtrTraits>
129 template <typename PointerT, unsigned IntBits, typename PtrTraits>
134 static_assert(IntBits <= PtrTraits::NumLowBitsAvailable,
146 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1),
180 template <typename PointerTy, unsigned IntBits, typename IntType>
181 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> {
186 template <typename PointerTy, unsigned IntBits, typename IntType>
188 using Ty = PointerIntPair<PointerTy, IntBits, IntType>;
214 PointerIntPair<PointerTy, IntBits, IntType, PtrTraits>> {
220 static inline PointerIntPair<PointerTy, IntBits, IntType>
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9107 uint32_t IntBits = IntTy.getSizeInBits(); in performFpToIntCombine() local
9108 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFpToIntCombine()
9112 if (IntBits > FloatBits) in performFpToIntCombine()
9117 int32_t Bits = IntBits == 64 ? 64 : 32; in performFpToIntCombine()
9150 if (IntBits < FloatBits) in performFpToIntCombine()
9176 int32_t IntBits = IntTy.getSizeInBits(); in performFDivCombine() local
9177 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFDivCombine()
9186 if (IntBits > FloatBits) in performFDivCombine()
9214 if (IntBits < FloatBits) in performFDivCombine()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp12111 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVCVTCombine() local
12113 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVCVTCombine()
12136 if (IntBits < FloatBits) in PerformVCVTCombine()
12169 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVDIVCombine() local
12171 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { in PerformVDIVCombine()
12188 if (IntBits < FloatBits) in PerformVDIVCombine()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp38717 unsigned IntBits = VT.getScalarSizeInBits(); in lowerX86FPLogicOp() local
38718 MVT IntSVT = MVT::getIntegerVT(IntBits); in lowerX86FPLogicOp()
38719 MVT IntVT = MVT::getVectorVT(IntSVT, VT.getSizeInBits() / IntBits); in lowerX86FPLogicOp()