Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3235 const unsigned EltBitWidth = Op.getValueSizeInBits(); in computeKnownBits() local
3238 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
3239 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
3242 Known = Known.trunc(EltBitWidth); in computeKnownBits()
3249 const unsigned EltBitWidth = VecVT.getScalarSizeInBits(); in computeKnownBits() local
3253 if (BitWidth > EltBitWidth) in computeKnownBits()
3254 Known = Known.trunc(EltBitWidth); in computeKnownBits()
3265 if (BitWidth > EltBitWidth) in computeKnownBits()
3900 const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits(); in ComputeNumSignBits() local
3906 if (BitWidth != EltBitWidth) in ComputeNumSignBits()
DTargetLowering.cpp1858 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); in SimplifyDemandedBits() local
1869 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
1870 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth); in SimplifyDemandedBits()
1888 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
DDAGCombiner.cpp5271 unsigned EltBitWidth = Vector->getValueType(0).getScalarSizeInBits(); in visitAND() local
5276 if (EltBitWidth > SplatBitSize) in visitAND()
5277 for (SplatValue = SplatValue.zextOrTrunc(EltBitWidth); in visitAND()
5278 SplatBitSize < EltBitWidth; SplatBitSize = SplatBitSize * 2) in visitAND()
5283 if ((SplatBitSize % EltBitWidth) == 0) { in visitAND()
5284 Constant = APInt::getAllOnesValue(EltBitWidth); in visitAND()
5285 for (unsigned i = 0, n = (SplatBitSize / EltBitWidth); i < n; ++i) in visitAND()
5286 Constant &= SplatValue.extractBits(EltBitWidth, i * EltBitWidth); in visitAND()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp12748 int EltBitWidth = VOuter.getScalarValueSizeInBits(); in lowerShuffleAsBroadcast() local
12751 int BeginOffset = Idx * EltBitWidth; in lowerShuffleAsBroadcast()
12752 int EndOffset = BeginOffset + NumSubElts * EltBitWidth; in lowerShuffleAsBroadcast()
39998 unsigned EltBitWidth = VT0.getScalarSizeInBits(); in combineAndMaskToShift() local
39999 if (EltBitWidth != DAG.ComputeNumSignBits(Op0)) in combineAndMaskToShift()
40004 SDValue ShAmt = DAG.getTargetConstant(EltBitWidth - ShiftVal, DL, MVT::i8); in combineAndMaskToShift()