Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/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 …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h712 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()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12419 uint32_t IntBits = IntTy.getSizeInBits(); in performFpToIntCombine() local
12420 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFpToIntCombine()
12424 if (IntBits > FloatBits) in performFpToIntCombine()
12429 int32_t Bits = IntBits == 64 ? 64 : 32; in performFpToIntCombine()
12462 if (IntBits < FloatBits) in performFpToIntCombine()
12488 int32_t IntBits = IntTy.getSizeInBits(); in performFDivCombine() local
12489 if (IntBits != 16 && IntBits != 32 && IntBits != 64) in performFDivCombine()
12498 if (IntBits > FloatBits) in performFDivCombine()
12526 if (IntBits < FloatBits) in performFDivCombine()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15468 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVCVTCombine() local
15470 if (FloatBits != 32 || IntBits > 32 || (NumLanes != 4 && NumLanes != 2)) { in PerformVCVTCombine()
15493 if (IntBits < FloatBits) in PerformVCVTCombine()
15526 uint32_t IntBits = IntTy.getSizeInBits(); in PerformVDIVCombine() local
15528 if (FloatBits != 32 || IntBits > 32 || (NumLanes != 4 && NumLanes != 2)) { in PerformVDIVCombine()
15545 if (IntBits < FloatBits) in PerformVDIVCombine()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp47130 unsigned IntBits = VT.getScalarSizeInBits(); in lowerX86FPLogicOp() local
47131 MVT IntSVT = MVT::getIntegerVT(IntBits); in lowerX86FPLogicOp()
47132 MVT IntVT = MVT::getVectorVT(IntSVT, VT.getSizeInBits() / IntBits); in lowerX86FPLogicOp()