Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelDAGToDAG.cpp115 unsigned NumVectorElts = VT.getVectorNumElements(); in Select() local
121 switch (NumVectorElts) { in Select()
H A DAMDGPUISelDAGToDAG.cpp439 unsigned NumVectorElts = VT.getVectorNumElements(); in SelectBuildVector() local
444 if (NumVectorElts == 1) { in SelectBuildVector()
456 for (unsigned I = 0; I < NumVectorElts; ++I) { in SelectBuildVector()
479 assert(NumVectorElts <= 32 && "Vectors with more than 32 elements not " in SelectBuildVector()
484 SmallVector<SDValue, 32 * 2 + 1> RegSeqArgs(NumVectorElts * 2 + 1); in SelectBuildVector()
500 if (NOps != NumVectorElts) { in SelectBuildVector()
502 assert(N->getOpcode() == ISD::SCALAR_TO_VECTOR && NOps < NumVectorElts); in SelectBuildVector()
505 for (unsigned i = NOps; i < NumVectorElts; ++i) { in SelectBuildVector()
663 unsigned NumVectorElts = VT.getVectorNumElements(); in Select() local
665 if (Opc == ISD::BUILD_VECTOR && NumVectorElts == 2) { in Select()
[all …]
H A DAMDGPUTargetTransformInfo.cpp1209 unsigned NumVectorElts = cast<FixedVectorType>(SrcTy)->getNumElements(); in getShuffleCost() local
1221 if (ST->hasVOP3PInsts() && ScalarSize == 16 && NumVectorElts == 2) in getShuffleCost()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7149 unsigned NumVectorElts = NumElts.isScalable() ? 1 : NumElts.getFixedValue(); in FoldConstantArithmetic() local
7153 for (unsigned I = 0; I != NumVectorElts; I++) { in FoldConstantArithmetic()