Searched refs:VectorEltTy (Results 1 – 2 of 2) sorted by relevance
9952 QualType VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat() local9956 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 …]
2600 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType(); in isEltOfVectorTy() local2601 if (!Context.hasSameType(VectorEltTy, EltTy)) { in isEltOfVectorTy()2603 << Call->getSourceRange() << VectorEltTy << EltTy; in isEltOfVectorTy()