Home
last modified time | relevance | path

Searched refs:SrcEltSizeInBits (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp12943 unsigned SrcEltSizeInBits = getValueType(0).getScalarSizeInBits(); in getConstantRawBits() local
12944 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 && in getConstantRawBits()
12949 APInt::getZero(SrcEltSizeInBits)); in getConstantRawBits()
12961 SrcBitElements[I] = CInt ? CInt->getAPIntValue().trunc(SrcEltSizeInBits) in getConstantRawBits()
12978 unsigned SrcEltSizeInBits = SrcBitElements[0].getBitWidth(); in recastRawBits() local
12979 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 && in recastRawBits()
12984 unsigned NumDstOps = (NumSrcOps * SrcEltSizeInBits) / DstEltSizeInBits; in recastRawBits()
12990 if (SrcEltSizeInBits <= DstEltSizeInBits) { in recastRawBits()
12991 unsigned Scale = DstEltSizeInBits / SrcEltSizeInBits; in recastRawBits()
13001 assert(SrcBits.getBitWidth() == SrcEltSizeInBits && in recastRawBits()
[all …]
H A DTargetLowering.cpp3164 unsigned SrcEltSizeInBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedVectorElts() local
3165 APInt SrcDemandedBits = APInt::getZero(SrcEltSizeInBits); in SimplifyDemandedVectorElts()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4749 unsigned SrcEltSizeInBits = SrcEltBits[0].getBitWidth(); in getTargetConstantBitsFromNode() local
4750 assert((NumSrcElts * SrcEltSizeInBits) == SizeInBits && in getTargetConstantBitsFromNode()
4770 unsigned BitOffset = i * SrcEltSizeInBits; in getTargetConstantBitsFromNode()
4772 UndefBits.setBits(BitOffset, BitOffset + SrcEltSizeInBits); in getTargetConstantBitsFromNode()
4864 unsigned SrcEltSizeInBits = VT.getScalarSizeInBits(); in getTargetConstantBitsFromNode() local
4865 if (BV->getConstantRawBits(true, SrcEltSizeInBits, SrcEltBits, Undefs)) { in getTargetConstantBitsFromNode()
4881 unsigned SrcEltSizeInBits = CstTy->getScalarSizeInBits(); in getTargetConstantBitsFromNode() local
4882 unsigned NumSrcElts = SizeInBits / SrcEltSizeInBits; in getTargetConstantBitsFromNode()
4883 if ((SizeInBits % SrcEltSizeInBits) != 0) in getTargetConstantBitsFromNode()
4887 SmallVector<APInt, 64> SrcEltBits(NumSrcElts, APInt(SrcEltSizeInBits, 0)); in getTargetConstantBitsFromNode()
[all …]