Lines Matching refs:VectorEltTy
9974 QualType VectorEltTy; in tryGCCVectorConvertAndSplat() local
9979 VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat()
9981 VectorEltTy = in tryGCCVectorConvertAndSplat()
9989 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
10003 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10005 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
10007 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10011 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10013 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) in tryGCCVectorConvertAndSplat()
10017 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
10030 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
10038 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
10046 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10057 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); in tryGCCVectorConvertAndSplat()