Lines Matching refs:VectorEltTy
9952 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()
9980 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) 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()
10025 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); in tryGCCVectorConvertAndSplat()