Searched refs:scalarTy (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/mlir/lib/Dialect/Affine/Transforms/ |
D | SuperVectorize.cpp | 913 static VectorType getVectorType(Type scalarTy, in getVectorType() argument 915 assert(!scalarTy.isa<VectorType>() && "Expected scalar type"); in getVectorType() 916 return VectorType::get(strategy->vectorSizes, scalarTy); in getVectorType()
|
/external/clang/lib/CodeGen/ |
D | CGObjCMac.cpp | 1661 llvm::Type *scalarTy = callResult.first->getType(); in complete() local 1662 llvm::Constant *scalarZero = llvm::Constant::getNullValue(scalarTy); in complete() 1665 llvm::PHINode *real = CGF.Builder.CreatePHI(scalarTy, 2); in complete() 1668 llvm::PHINode *imag = CGF.Builder.CreatePHI(scalarTy, 2); in complete()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGObjCMac.cpp | 1815 llvm::Type *scalarTy = callResult.first->getType(); in complete() local 1816 llvm::Constant *scalarZero = llvm::Constant::getNullValue(scalarTy); in complete() 1819 llvm::PHINode *real = CGF.Builder.CreatePHI(scalarTy, 2); in complete() 1822 llvm::PHINode *imag = CGF.Builder.CreatePHI(scalarTy, 2); in complete()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExpr.cpp | 9632 QualType scalarTy, in tryVectorConvertAndSplat() argument 9641 if (S.getLangOpts().OpenCL && (scalarTy->isRealFloatingType() || in tryVectorConvertAndSplat() 9642 (scalarTy->isIntegerType() && in tryVectorConvertAndSplat() 9643 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0))) { in tryVectorConvertAndSplat() 9647 if (!scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat() 9651 if (scalarTy->isRealFloatingType()) { in tryVectorConvertAndSplat() 9653 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) { in tryVectorConvertAndSplat() 9659 else if (scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 7832 QualType scalarTy, in tryVectorConvertAndSplat() argument 7840 if (!scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat() 7843 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0) in tryVectorConvertAndSplat() 7847 if (scalarTy->isRealFloatingType()) { in tryVectorConvertAndSplat() 7849 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) in tryVectorConvertAndSplat() 7853 else if (scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat()
|