Lines Matching defs:FalseC
46787 auto *FalseC = dyn_cast<ConstantSDNode>(RHS);
46788 if (!TrueC || !FalseC)
46807 const APInt &FalseVal = FalseC->getAPIntValue();
46832 std::swap(TrueC, FalseC);
46843 if (!FalseC->isZero())
46844 R = DAG.getNode(ISD::ADD, DL, VT, R, SDValue(FalseC, 0));
48494 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
48495 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
48496 // larger than FalseC (the false value).
48497 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
48499 std::swap(TrueC, FalseC);
48506 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
48520 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
48525 FalseC->getValueType(0), Cond);
48527 SDValue(FalseC, 0));
48534 APInt Diff = TrueC->getAPIntValue() - FalseC->getAPIntValue();
48557 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
48565 if (FalseC->getAPIntValue() != 0)
48567 SDValue(FalseC, 0));