Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:NVT

332   EVT NVT = N->getValueType(0).getVectorElementType();
342 return DAG.getNode(ExtendCode, DL, NVT, Res);
2673 /// Modifies a vector input (widen or narrows) to a vector of NVT. The
2674 /// input vector must have the same element type as NVT.
2675 SDValue DAGTypeLegalizer::ModifyToType(SDValue InOp, EVT NVT) {
2679 assert(InVT.getVectorElementType() == NVT.getVectorElementType() &&
2684 if (InVT == NVT)
2688 unsigned WidenNumElts = NVT.getVectorNumElements();
2697 return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, &Ops[0], NumConcat);
2701 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT, InOp,
2706 EVT EltVT = NVT.getVectorElementType();
2716 return DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &Ops[0], WidenNumElts);