Lines Matching refs:VectorEltTy
10972 QualType VectorEltTy; in tryGCCVectorConvertAndSplat() local
10977 VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat()
10979 VectorEltTy = in tryGCCVectorConvertAndSplat()
10987 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
11001 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
11003 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
11005 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
11009 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
11011 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) in tryGCCVectorConvertAndSplat()
11015 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
11028 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
11036 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
11044 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
11055 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); in tryGCCVectorConvertAndSplat()