Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:NVT

280   EVT NVT = N->getValueType(0).getVectorElementType();
290 return DAG.getNode(ExtendCode, DL, NVT, Res);
2584 /// Modifies a vector input (widen or narrows) to a vector of NVT. The
2585 /// input vector must have the same element type as NVT.
2586 SDValue DAGTypeLegalizer::ModifyToType(SDValue InOp, EVT NVT) {
2590 assert(InVT.getVectorElementType() == NVT.getVectorElementType() &&
2595 if (InVT == NVT)
2599 unsigned WidenNumElts = NVT.getVectorNumElements();
2608 return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, &Ops[0], NumConcat);
2612 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT, InOp,
2617 EVT EltVT = NVT.getVectorElementType();
2627 return DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &Ops[0], WidenNumElts);