Lines Matching defs:CondV
8199 SDValue CondV = N->getOperand(0);
8208 SDValue Neg = DAG.getNegative(CondV, DL, VT);
8213 SDValue Neg = DAG.getNode(ISD::ADD, DL, VT, CondV,
8220 SDValue Neg = DAG.getNode(ISD::ADD, DL, VT, CondV,
8226 SDValue Neg = DAG.getNegative(CondV, DL, VT);
8236 SDValue Neg = DAG.getNegative(CondV, DL, VT);
8243 if (CondV.getOpcode() == ISD::SETCC && TrueV.getOpcode() == ISD::SETCC &&
8245 SDValue LHS = CondV.getOperand(0);
8246 SDValue RHS = CondV.getOperand(1);
8247 ISD::CondCode CC = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
8332 SDValue CondV = Op.getOperand(0);
8342 SDValue CondSplat = DAG.getSplat(SplatCondVT, DL, CondV);
8354 return DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV);
8357 return DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV);
8364 DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV));
8370 DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV));
8392 DL, VT, LHSVal, CondV);
8401 DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, TrueV, CondV),
8402 DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, FalseV, CondV));
8430 return DAG.getNode(ISD::SINT_TO_FP, DL, VT, CondV);
8432 SDValue XOR = DAG.getNode(ISD::XOR, DL, XLenVT, CondV,
8442 if (CondV.getOpcode() != ISD::SETCC ||
8443 CondV.getOperand(0).getSimpleValueType() != XLenVT) {
8447 SDValue Ops[] = {CondV, Zero, SetNE, TrueV, FalseV};
8452 // If the CondV is the output of a SETCC node which operates on XLenVT inputs,
8457 SDValue LHS = CondV.getOperand(0);
8458 SDValue RHS = CondV.getOperand(1);
8459 ISD::CondCode CCVal = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
8473 return DAG.getNode(ISD::ADD, DL, VT, CondV, FalseV);
8475 return DAG.getNode(ISD::SUB, DL, VT, FalseV, CondV);
8510 SDValue CondV = Op.getOperand(1);
8514 if (CondV.getOpcode() == ISD::SETCC &&
8515 CondV.getOperand(0).getValueType() == XLenVT) {
8516 SDValue LHS = CondV.getOperand(0);
8517 SDValue RHS = CondV.getOperand(1);
8518 ISD::CondCode CCVal = cast<CondCodeSDNode>(CondV.getOperand(2))->get();
8528 CondV, DAG.getConstant(0, DL, XLenVT),