Searched refs:VectorEltTy (Results 1 – 2 of 2) sorted by relevance
9788 QualType VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat() local9792 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()9806 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()9808 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()9810 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()9814 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()9816 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) in tryGCCVectorConvertAndSplat()9820 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()9833 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()9841 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()[all …]
2569 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType(); in isEltOfVectorTy() local2570 if (!Context.hasSameType(VectorEltTy, EltTy)) { in isEltOfVectorTy()2572 << Call->getSourceRange() << VectorEltTy << EltTy; in isEltOfVectorTy()