Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1249 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); in SimplifyDemandedBits() local
1260 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
1261 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth); in SimplifyDemandedBits()
1268 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
H A DSelectionDAG.cpp3028 const unsigned EltBitWidth = VecVT.getScalarSizeInBits(); in computeKnownBits() local
3032 if (BitWidth > EltBitWidth) in computeKnownBits()
3033 Known = Known.trunc(EltBitWidth); in computeKnownBits()
3044 if (BitWidth > EltBitWidth) in computeKnownBits()
3663 const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits(); in ComputeNumSignBits() local
3669 if (BitWidth != EltBitWidth) in ComputeNumSignBits()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp36157 unsigned EltBitWidth = VT0.getScalarSizeInBits(); in combineAndMaskToShift() local
36158 if (EltBitWidth != DAG.ComputeNumSignBits(Op0)) in combineAndMaskToShift()
36163 SDValue ShAmt = DAG.getConstant(EltBitWidth - ShiftVal, DL, MVT::i8); in combineAndMaskToShift()