Lines Matching defs:CCVT
11350 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
11352 return DAG.getSetCC(DL, CCVT, Op, FPZero, ISD::SETEQ);
24207 EVT CCVT = N0.getValueType();
24249 CCVT.getVectorElementCount() != ElementCount::getFixed(1) ||
24250 CCVT.getVectorElementType() != MVT::i1 ||
24308 EVT CCVT = SrcVT.changeVectorElementTypeToInteger();
24310 // Also bail out if the vector CCVT isn't the same size as ResVT.
24313 if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
24327 SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
24330 SmallVector<int, 8> DUPMask(CCVT.getVectorNumElements(), 0);
24331 SDValue Mask = DAG.getVectorShuffle(CCVT, DL, SetCC, SetCC, DUPMask);