Home | History | Annotate | Download | only in X86

Lines Matching full:numbits

5295                          unsigned NumBits, SelectionDAG &DAG,
5302 assert(NumBits % 8 == 0 && "Only support byte sized shifts");
5303 SDValue ShiftVal = DAG.getConstant(NumBits/8, dl, ScalarShiftTy);
6415 unsigned NumBits = VT.getSizeInBits();
6419 NumBits/2, DAG, *this, dl);
17811 unsigned NumBits = VT.getSizeInBits();
17828 // If src is zero (i.e. bsr sets ZF), returns NumBits.
17831 DAG.getConstant(NumBits + NumBits - 1, dl, OpVT),
17837 // Finally xor with NumBits-1.
17839 DAG.getConstant(NumBits - 1, dl, OpVT));
17850 unsigned NumBits = VT.getSizeInBits();
17867 // And xor with NumBits-1.
17869 DAG.getConstant(NumBits - 1, dl, OpVT));
17878 unsigned NumBits = VT.getScalarSizeInBits();
17894 SDValue WidthMinusOne = DAG.getConstant(NumBits - 1, dl, VT);
17912 // If src is zero (i.e. bsf sets ZF), returns NumBits.
17915 DAG.getConstant(NumBits, dl, VT),