Lines Matching refs:VectorEltTy
10566 QualType VectorEltTy; in tryGCCVectorConvertAndSplat() local
10571 VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat()
10573 VectorEltTy = in tryGCCVectorConvertAndSplat()
10581 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
10595 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10597 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
10599 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10603 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10605 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) in tryGCCVectorConvertAndSplat()
10609 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
10622 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
10630 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
10638 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10650 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); in tryGCCVectorConvertAndSplat()