Lines Matching refs:CondV

7561   SDValue CondV = N->getOperand(0);
7570 SDValue Neg = DAG.getNegative(CondV, DL, VT);
7575 SDValue Neg = DAG.getNode(ISD::ADD, DL, VT, CondV,
7582 SDValue Neg = DAG.getNode(ISD::ADD, DL, VT, CondV,
7588 SDValue Neg = DAG.getNegative(CondV, DL, VT);
7598 SDValue Neg = DAG.getNegative(CondV, DL, VT);
7605 if (CondV.getOpcode() == ISD::SETCC && TrueV.getOpcode() == ISD::SETCC &&
7607 SDValue LHS = CondV.getOperand(0);
7608 SDValue RHS = CondV.getOperand(1);
7609 ISD::CondCode CC = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
7694 SDValue CondV = Op.getOperand(0);
7704 SDValue CondSplat = DAG.getSplat(SplatCondVT, DL, CondV);
7716 return DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV);
7719 return DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV);
7726 DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV));
7732 DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV));
7754 DL, VT, LHSVal, CondV);
7763 DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV),
7764 DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV));
7792 return DAG.getNode(ISD::SINT_TO_FP, DL, VT, CondV);
7794 SDValue XOR = DAG.getNode(ISD::XOR, DL, XLenVT, CondV,
7804 if (CondV.getOpcode() != ISD::SETCC ||
7805 CondV.getOperand(0).getSimpleValueType() != XLenVT) {
7809 SDValue Ops[] = {CondV, Zero, SetNE, TrueV, FalseV};
7814 // If the CondV is the output of a SETCC node which operates on XLenVT inputs,
7819 SDValue LHS = CondV.getOperand(0);
7820 SDValue RHS = CondV.getOperand(1);
7821 ISD::CondCode CCVal = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
7835 return DAG.getNode(ISD::ADD, DL, VT, CondV, FalseV);
7837 return DAG.getNode(ISD::SUB, DL, VT, FalseV, CondV);
7872 SDValue CondV = Op.getOperand(1);
7876 if (CondV.getOpcode() == ISD::SETCC &&
7877 CondV.getOperand(0).getValueType() == XLenVT) {
7878 SDValue LHS = CondV.getOperand(0);
7879 SDValue RHS = CondV.getOperand(1);
7880 ISD::CondCode CCVal = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
7890 CondV, DAG.getConstant(0, DL, XLenVT),