Lines Matching refs:VectorEltTy
10305 QualType VectorEltTy; in tryGCCVectorConvertAndSplat() local
10310 VectorEltTy = VT->getElementType(); in tryGCCVectorConvertAndSplat()
10312 VectorEltTy = in tryGCCVectorConvertAndSplat()
10320 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) in tryGCCVectorConvertAndSplat()
10334 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10336 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { in tryGCCVectorConvertAndSplat()
10338 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10342 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10344 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) in tryGCCVectorConvertAndSplat()
10348 } else if (VectorEltTy->isRealFloatingType()) { in tryGCCVectorConvertAndSplat()
10361 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); in tryGCCVectorConvertAndSplat()
10369 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), in tryGCCVectorConvertAndSplat()
10377 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) in tryGCCVectorConvertAndSplat()
10389 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); in tryGCCVectorConvertAndSplat()