Home
last modified time | relevance | path

Searched refs:VectorEltTy (Results 1 – 2 of 2) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp9888 QualType VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat() local
9892 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
9906 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9908 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
9910 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
9914 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9920 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
9933 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
9941 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
9949 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
[all …]
H A DSemaChecking.cpp2596 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType(); in isEltOfVectorTy() local
2597 if (!Context.hasSameType(VectorEltTy, EltTy)) { in isEltOfVectorTy()
2599 << Call->getSourceRange() << VectorEltTy << EltTy; in isEltOfVectorTy()