Lines Matching defs:FalseC
45598 auto *FalseC = dyn_cast<ConstantSDNode>(RHS);
45599 if (!TrueC || !FalseC)
45618 const APInt &FalseVal = FalseC->getAPIntValue();
45643 std::swap(TrueC, FalseC);
45654 if (!FalseC->isZero())
45655 R = DAG.getNode(ISD::ADD, DL, VT, R, SDValue(FalseC, 0));
47270 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
47271 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
47272 // larger than FalseC (the false value).
47273 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
47275 std::swap(TrueC, FalseC);
47282 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
47296 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
47301 FalseC->getValueType(0), Cond);
47303 SDValue(FalseC, 0));
47310 APInt Diff = TrueC->getAPIntValue() - FalseC->getAPIntValue();
47333 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
47341 if (FalseC->getAPIntValue() != 0)
47343 SDValue(FalseC, 0));