Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp9952 QualType VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat() local
9956 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
9970 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9972 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
9974 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
9978 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9984 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
9997 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
10005 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
10013 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
[all …]
H A DSemaChecking.cpp2600 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType(); in isEltOfVectorTy() local
2601 if (!Context.hasSameType(VectorEltTy, EltTy)) { in isEltOfVectorTy()
2603 << Call->getSourceRange() << VectorEltTy << EltTy; in isEltOfVectorTy()