/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 2376 unsigned NumConcat = WidenNumElts/InVTNumElts; in WidenVecRes_Convert() local 2377 SmallVector<SDValue, 16> Ops(NumConcat); in WidenVecRes_Convert() 2380 for (unsigned i = 1; i != NumConcat; ++i) in WidenVecRes_Convert() 2651 unsigned NumConcat = WidenVT.getVectorNumElements() / in WidenVecRes_CONCAT_VECTORS() local 2654 SmallVector<SDValue, 16> Ops(NumConcat); in WidenVecRes_CONCAT_VECTORS() 2657 for (unsigned i = NumOperands; i != NumConcat; ++i) in WidenVecRes_CONCAT_VECTORS() 2744 unsigned NumConcat = WidenNumElts/InVTNumElts; in WidenVecRes_CONVERT_RNDSAT() local 2745 SmallVector<SDValue, 16> Ops(NumConcat); in WidenVecRes_CONVERT_RNDSAT() 2748 for (unsigned i = 1; i != NumConcat; ++i) in WidenVecRes_CONVERT_RNDSAT() 2883 unsigned NumConcat = WidenNumElts / MaskNumElts; in WidenVecRes_MLOAD() local [all …]
|
D | SelectionDAGBuilder.cpp | 3023 unsigned NumConcat = MaskNumElts / SrcNumElts; in visitShuffleVector() local 3027 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); in visitShuffleVector() 3064 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); in visitShuffleVector() 3065 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); in visitShuffleVector()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 3267 unsigned NumConcat = WidenNumElts/InVTNumElts; in WidenVecRes_Convert() local 3268 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getUNDEF(InVT)); in WidenVecRes_Convert() 3582 unsigned NumConcat = WidenVT.getVectorNumElements() / in WidenVecRes_CONCAT_VECTORS() local 3585 SmallVector<SDValue, 16> Ops(NumConcat); in WidenVecRes_CONCAT_VECTORS() 3588 for (unsigned i = NumOperands; i != NumConcat; ++i) in WidenVecRes_CONCAT_VECTORS() 4909 unsigned NumConcat = WidenWidth / NewVTWidth; in GenWidenVectorLoads() local 4910 SmallVector<SDValue, 16> ConcatOps(NumConcat); in GenWidenVectorLoads() 4913 for (unsigned i = 1; i != NumConcat; ++i) in GenWidenVectorLoads() 5197 unsigned NumConcat = WidenNumElts / InNumElts; in ModifyToType() local 5198 SmallVector<SDValue, 16> Ops(NumConcat); in ModifyToType() [all …]
|
D | SelectionDAGBuilder.cpp | 3620 unsigned NumConcat = MaskNumElts / SrcNumElts; in visitShuffleVector() local 3622 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); in visitShuffleVector() 3657 unsigned NumConcat = PaddedMaskNumElts / SrcNumElts; in visitShuffleVector() local 3664 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); in visitShuffleVector() 3665 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); in visitShuffleVector()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 3434 unsigned NumConcat = WidenNumElts/InVTNumElts; in WidenVecRes_Convert() local 3435 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getUNDEF(InVT)); in WidenVecRes_Convert() 3729 unsigned NumConcat = WidenNumElts / NumInElts; in WidenVecRes_CONCAT_VECTORS() local 3731 SmallVector<SDValue, 16> Ops(NumConcat); in WidenVecRes_CONCAT_VECTORS() 3734 for (unsigned i = NumOperands; i != NumConcat; ++i) in WidenVecRes_CONCAT_VECTORS() 5065 unsigned NumConcat = WidenWidth.getFixedSize() / NewVTWidth.getFixedSize(); in GenWidenVectorLoads() local 5066 SmallVector<SDValue, 16> ConcatOps(NumConcat); in GenWidenVectorLoads() 5069 for (unsigned i = 1; i != NumConcat; ++i) in GenWidenVectorLoads() 5315 unsigned NumConcat = WidenNumElts / InNumElts; in ModifyToType() local 5316 SmallVector<SDValue, 16> Ops(NumConcat); in ModifyToType() [all …]
|
D | SelectionDAGBuilder.cpp | 3461 unsigned NumConcat = MaskNumElts / SrcNumElts; in visitShuffleVector() local 3463 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); in visitShuffleVector() 3498 unsigned NumConcat = PaddedMaskNumElts / SrcNumElts; in visitShuffleVector() local 3505 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); in visitShuffleVector() 3506 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); in visitShuffleVector()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | CombinerHelper.cpp | 240 unsigned NumConcat = DstNumElts / SrcNumElts; in matchCombineShuffleVector() local 241 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); in matchCombineShuffleVector()
|
D | LegalizerHelper.cpp | 2848 int NumConcat = (DstNumElts + NarrowNumElts - 1) / NarrowNumElts; in fewerElementsVectorBuildVector() local 2849 LLT WidenedDstTy = LLT::vector(NarrowNumElts * NumConcat, SrcTy); in fewerElementsVectorBuildVector() 2869 for (int I = 0; I != NumConcat; ++I) { in fewerElementsVectorBuildVector()
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | CombinerHelper.cpp | 225 unsigned NumConcat = DstNumElts / SrcNumElts; in matchCombineShuffleVector() local 226 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); in matchCombineShuffleVector()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 21823 unsigned NumConcat = RegSize / InVT.getSizeInBits(); in ReplaceNodeResults() local 21825 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getUNDEF(InVT)); in ReplaceNodeResults() 29033 unsigned NumConcat = WidenNumElts / MaskNumElts; in combineMaskedLoad() local 29034 SmallVector<SDValue, 16> Ops(NumConcat); in combineMaskedLoad() 29037 for (unsigned i = 1; i != NumConcat; ++i) in combineMaskedLoad() 29152 unsigned NumConcat = WidenNumElts / MaskNumElts; in combineMaskedStore() local 29153 SmallVector<SDValue, 16> Ops(NumConcat); in combineMaskedStore() 29156 for (unsigned i = 1; i != NumConcat; ++i) in combineMaskedStore() 30728 unsigned NumConcat = RegSize / InVT.getSizeInBits(); in detectSADPattern() local 30729 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getConstant(0, DL, InVT)); in detectSADPattern()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDecl.cpp | 12978 unsigned NumConcat = SL->getNumConcatenated(); in CheckCompleteVariableDeclaration() local 12982 if (NumConcat == 2 && !SL->getBeginLoc().isMacroID()) { in CheckCompleteVariableDeclaration() 12997 for (unsigned i = 0; i < NumConcat - 1; ++i) in CheckCompleteVariableDeclaration()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 7981 unsigned NumConcat = WideNumElts / VecVT.getVectorNumElements(); in widenVec() local 7982 SmallVector<SDValue, 16> Ops(NumConcat); in widenVec() 7985 for (unsigned i = 1; i < NumConcat; ++i) in widenVec()
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 8625 unsigned NumConcat = WideNumElts / VecVT.getVectorNumElements(); in widenVec() local 8626 SmallVector<SDValue, 16> Ops(NumConcat); in widenVec() 8629 for (unsigned i = 1; i < NumConcat; ++i) in widenVec()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 28755 unsigned NumConcat = 128 / InVT.getSizeInBits(); in ReplaceNodeResults() local 28759 NumConcat * InVT.getVectorNumElements()); in ReplaceNodeResults() 28762 NumConcat * VT.getVectorNumElements()); in ReplaceNodeResults() 28764 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getUNDEF(InVT)); in ReplaceNodeResults() 36727 unsigned NumConcat = RegSize / InVT.getSizeInBits(); in createPSADBW() local 36728 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getConstant(0, DL, InVT)); in createPSADBW()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 29945 unsigned NumConcat = 128 / InVT.getSizeInBits(); in ReplaceNodeResults() local 29949 NumConcat * InVT.getVectorNumElements()); in ReplaceNodeResults() 29952 NumConcat * VT.getVectorNumElements()); in ReplaceNodeResults() 29954 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getUNDEF(InVT)); in ReplaceNodeResults() 39417 unsigned NumConcat = RegSize / InVT.getSizeInBits(); in createPSADBW() local 39418 SmallVector<SDValue, 16> Ops(NumConcat, DAG.getConstant(0, DL, InVT)); in createPSADBW()
|