Home
last modified time | relevance | path

Searched refs:NumSrcElements (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp899 int NumSrcElements = SrcVT.getVectorNumElements(); in ExpandANY_EXTEND_VECTOR_INREG() local
903 ShuffleMask.resize(NumSrcElements, -1); in ExpandANY_EXTEND_VECTOR_INREG()
906 int ExtLaneScale = NumSrcElements / NumElements; in ExpandANY_EXTEND_VECTOR_INREG()
946 int NumSrcElements = SrcVT.getVectorNumElements(); in ExpandZERO_EXTEND_VECTOR_INREG() local
954 ShuffleMask.reserve(NumSrcElements); in ExpandZERO_EXTEND_VECTOR_INREG()
955 for (int i = 0; i < NumSrcElements; ++i) in ExpandZERO_EXTEND_VECTOR_INREG()
958 int ExtLaneScale = NumSrcElements / NumElements; in ExpandZERO_EXTEND_VECTOR_INREG()
961 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i; in ExpandZERO_EXTEND_VECTOR_INREG()