Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp6002 unsigned VTNumElts = VT.getVectorMinNumElements(); in WidenVecRes_EXTRACT_SUBVECTOR() local
6003 assert(IdxVal % VTNumElts == 0 && in WidenVecRes_EXTRACT_SUBVECTOR()
6018 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_EXTRACT_SUBVECTOR()
6027 for (; I < VTNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR()
6044 for (i = 0; i < VTNumElts; ++i) in WidenVecRes_EXTRACT_SUBVECTOR()
6655 unsigned VTNumElts = VT.getVectorMinNumElements(); in WidenVecRes_VECTOR_REVERSE() local
6656 unsigned IdxVal = WidenNumElts - VTNumElts; in WidenVecRes_VECTOR_REVERSE()
6669 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_VECTOR_REVERSE()
6676 for (; i < VTNumElts / GCD; ++i) in WidenVecRes_VECTOR_REVERSE()
6688 std::iota(Mask.begin(), Mask.begin() + VTNumElts, IdxVal); in WidenVecRes_VECTOR_REVERSE()
H A DSelectionDAG.cpp13207 ElementCount VTNumElts = VT.getVectorElementCount(); in GetDependentSplitDestVTs() local
13209 assert(VTNumElts.isScalable() == EnvNumElts.isScalable() && in GetDependentSplitDestVTs()
13212 if (VTNumElts.getKnownMinValue() > EnvNumElts.getKnownMinValue()) { in GetDependentSplitDestVTs()
13214 HiVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts - EnvNumElts); in GetDependentSplitDestVTs()
13219 LoVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts); in GetDependentSplitDestVTs()
H A DDAGCombiner.cpp27561 unsigned VTNumElts = VT.getVectorNumElements(); in visitSCALAR_TO_VECTOR() local
27562 if (VecEltVT == SrcVT.getScalarType() && VTNumElts <= SrcNumElts) { in visitSCALAR_TO_VECTOR()
27576 if (VTNumElts != SrcNumElts) { in visitSCALAR_TO_VECTOR()
27579 SrcVT.getVectorElementType(), VTNumElts); in visitSCALAR_TO_VECTOR()