Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:NumConcat

1492       unsigned NumConcat = WidenNumElts/InVTNumElts;
1493 SmallVector<SDValue, 16> Ops(NumConcat);
1496 for (unsigned i = 1; i != NumConcat; ++i)
1499 &Ops[0], NumConcat);
1696 unsigned NumConcat = WidenVT.getVectorNumElements() /
1699 SmallVector<SDValue, 16> Ops(NumConcat);
1702 for (unsigned i = NumOperands; i != NumConcat; ++i)
1704 return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, &Ops[0], NumConcat);
1788 unsigned NumConcat = WidenNumElts/InVTNumElts;
1789 SmallVector<SDValue, 16> Ops(NumConcat);
1792 for (unsigned i = 1; i != NumConcat; ++i)
1795 InOp = DAG.getNode(ISD::CONCAT_VECTORS, dl, InWidenVT, &Ops[0],NumConcat);
2303 unsigned NumConcat = WidenWidth / NewVTWidth;
2304 SmallVector<SDValue, 16> ConcatOps(NumConcat);
2307 for (unsigned i = 1; i != NumConcat; ++i)
2310 NumConcat);
2575 unsigned NumConcat = WidenNumElts / InNumElts;
2576 SmallVector<SDValue, 16> Ops(NumConcat);
2579 for (unsigned i = 1; i != NumConcat; ++i)
2582 return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, &Ops[0], NumConcat);