Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:N1C

1925   if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
1926 const APInt &C1 = N1C->getAPIntValue();
2149 } else if ((N1C->isNullValue() || N1C->getAPIntValue() == 1) &&
2154 bool TrueWhenTrue = (Cond == ISD::SETEQ) ^ (N1C->getAPIntValue() != 1);
2192 } else if (N1C->getAPIntValue() == 1 &&
2227 unsigned OperandBitSize = N1C->getValueType(0).getSizeInBits();
3320 const APInt &N1C = cast<ConstantSDNode>(N->getOperand(1))->getAPIntValue();
3321 APInt::mu magics = N1C.magicu();
3327 if (magics.a != 0 && !N1C[0]) {
3328 unsigned Shift = N1C.countTrailingZeros();
3335 magics = N1C.lshr(Shift).magicu(Shift);
3352 assert(magics.s < N1C.getBitWidth() &&