Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp5271 unsigned VTNumElts = VT.getVectorMinNumElements(); in WidenVecRes_EXTRACT_SUBVECTOR() local
5272 assert(IdxVal % VTNumElts == 0 && in WidenVecRes_EXTRACT_SUBVECTOR()
5287 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_EXTRACT_SUBVECTOR()
5296 for (; I < VTNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR()
5314 for (i = 0; i < VTNumElts; ++i) in WidenVecRes_EXTRACT_SUBVECTOR()
5879 unsigned VTNumElts = VT.getVectorMinNumElements(); in WidenVecRes_VECTOR_REVERSE() local
5880 unsigned IdxVal = WidenNumElts - VTNumElts; in WidenVecRes_VECTOR_REVERSE()
5893 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_VECTOR_REVERSE()
5900 for (; i < VTNumElts / GCD; ++i) in WidenVecRes_VECTOR_REVERSE()
5913 for (unsigned i = 0; i != VTNumElts; ++i) { in WidenVecRes_VECTOR_REVERSE()
[all …]
H A DSelectionDAG.cpp12299 ElementCount VTNumElts = VT.getVectorElementCount(); in GetDependentSplitDestVTs() local
12301 assert(VTNumElts.isScalable() == EnvNumElts.isScalable() && in GetDependentSplitDestVTs()
12304 if (VTNumElts.getKnownMinValue() > EnvNumElts.getKnownMinValue()) { in GetDependentSplitDestVTs()
12306 HiVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts - EnvNumElts); in GetDependentSplitDestVTs()
12311 LoVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts); in GetDependentSplitDestVTs()
H A DDAGCombiner.cpp26094 unsigned VTNumElts = VT.getVectorNumElements(); in visitSCALAR_TO_VECTOR() local
26095 if (VecEltVT == SrcVT.getScalarType() && VTNumElts <= SrcNumElts) { in visitSCALAR_TO_VECTOR()
26109 if (VTNumElts != SrcNumElts) { in visitSCALAR_TO_VECTOR()
26112 SrcVT.getVectorElementType(), VTNumElts); in visitSCALAR_TO_VECTOR()