Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelDAGToDAG.cpp103 unsigned NumVectorElts = VT.getVectorNumElements(); in Select() local
109 switch (NumVectorElts) { in Select()
H A DAMDGPUISelDAGToDAG.cpp436 unsigned NumVectorElts = VT.getVectorNumElements(); in SelectBuildVector() local
441 if (NumVectorElts == 1) { in SelectBuildVector()
447 assert(NumVectorElts <= 32 && "Vectors with more than 32 elements not " in SelectBuildVector()
452 SmallVector<SDValue, 32 * 2 + 1> RegSeqArgs(NumVectorElts * 2 + 1); in SelectBuildVector()
470 if (NOps != NumVectorElts) { in SelectBuildVector()
472 assert(N->getOpcode() == ISD::SCALAR_TO_VECTOR && NOps < NumVectorElts); in SelectBuildVector()
475 for (unsigned i = NOps; i < NumVectorElts; ++i) { in SelectBuildVector()
546 unsigned NumVectorElts = VT.getVectorNumElements(); in Select() local
548 if (Opc == ISD::BUILD_VECTOR && NumVectorElts == 2) { in Select()
560 SIRegisterInfo::getSGPRClassForBitWidth(NumVectorElts * 32)->getID(); in Select()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6369 unsigned NumVectorElts = NumElts.isScalable() ? 1 : NumElts.getFixedValue(); in FoldConstantArithmetic() local
6373 for (unsigned I = 0; I != NumVectorElts; I++) { in FoldConstantArithmetic()