Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:NVT

386   EVT NVT = N->getValueType(0).getVectorElementType();
410 return DAG.getNode(ExtendCode, DL, NVT, Res);
3705 /// Modifies a vector input (widen or narrows) to a vector of NVT. The
3706 /// input vector must have the same element type as NVT.
3708 SDValue DAGTypeLegalizer::ModifyToType(SDValue InOp, EVT NVT,
3713 assert(InVT.getVectorElementType() == NVT.getVectorElementType() &&
3718 if (InVT == NVT)
3722 unsigned WidenNumElts = NVT.getVectorNumElements();
3732 return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, Ops);
3737 ISD::EXTRACT_SUBVECTOR, dl, NVT, InOp,
3742 EVT EltVT = NVT.getVectorElementType();
3754 return DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, Ops);