Lines Matching refs:N2C
27467 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in foldSelectCCToShiftAnd() local
27468 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { in foldSelectCCToShiftAnd()
27469 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; in foldSelectCCToShiftAnd()
27670 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in SimplifySelectCC() local
27720 bool Fold = N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2(); in SimplifySelectCC()
27730 std::swap(N2C, N3C); in SimplifySelectCC()
27735 if (NotExtCompare && N2C->isOne()) in SimplifySelectCC()
27751 if (N2C->isOne()) in SimplifySelectCC()
27754 unsigned ShCt = N2C->getAPIntValue().logBase2(); in SimplifySelectCC()
27801 if (!NotExtCompare && N1C && N2C && N3C && in SimplifySelectCC()
27802 N2C->getAPIntValue() == ~N3C->getAPIntValue() && in SimplifySelectCC()