Lines Matching refs:FalseC
40403 auto *FalseC = dyn_cast<ConstantSDNode>(RHS); in combineSelectOfTwoConstants() local
40404 if (!TrueC || !FalseC) in combineSelectOfTwoConstants()
40423 const APInt &FalseVal = FalseC->getAPIntValue(); in combineSelectOfTwoConstants()
40439 std::swap(TrueC, FalseC); in combineSelectOfTwoConstants()
40450 if (!FalseC->isNullValue()) in combineSelectOfTwoConstants()
40451 R = DAG.getNode(ISD::ADD, DL, VT, R, SDValue(FalseC, 0)); in combineSelectOfTwoConstants()
41722 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov() local
41725 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) { in combineCMov()
41727 std::swap(TrueC, FalseC); in combineCMov()
41734 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) { in combineCMov()
41748 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { in combineCMov()
41753 FalseC->getValueType(0), Cond); in combineCMov()
41755 SDValue(FalseC, 0)); in combineCMov()
41762 APInt Diff = TrueC->getAPIntValue() - FalseC->getAPIntValue(); in combineCMov()
41785 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), in combineCMov()
41793 if (FalseC->getAPIntValue() != 0) in combineCMov()
41795 SDValue(FalseC, 0)); in combineCMov()