Searched refs:paramTypes (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/ |
| H A D | FunctionCallUtils.cpp | 45 ArrayRef<Type> paramTypes, in lookupOrCreateFn() argument 53 LLVM::LLVMFunctionType::get(resultType, paramTypes)); in lookupOrCreateFn() 154 ValueRange paramTypes, in createLLVMCall() argument 158 paramTypes) in createLLVMCall()
|
| /llvm-project-15.0.7/mlir/lib/Target/LLVMIR/ |
| H A D | TypeFromLLVM.cpp | 87 SmallVector<Type, 8> paramTypes; in translate() local 88 translateTypes(type->params(), paramTypes); in translate() 90 paramTypes, type->isVarArg()); in translate()
|
| H A D | TypeToLLVM.cpp | 96 SmallVector<llvm::Type *, 8> paramTypes; in translate() local 97 translateTypes(type.getParams(), paramTypes); in translate() 99 paramTypes, type.isVarArg()); in translate()
|
| /llvm-project-15.0.7/mlir/unittests/Dialect/SPIRV/ |
| H A D | DeserializationTest.cpp | 96 uint32_t addFunctionType(uint32_t retType, ArrayRef<uint32_t> paramTypes) { in addFunctionType() argument 101 operands.append(paramTypes.begin(), paramTypes.end()); in addFunctionType()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/ |
| H A D | FunctionCallUtils.h | 58 ArrayRef<Type> paramTypes = {},
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Type.cpp | 1045 SmallVector<QualType, 4> paramTypes; in VisitFunctionProtoType() local 1055 paramTypes.push_back(newParamType); in VisitFunctionProtoType() 1084 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionProtoType() 1339 SmallVector<QualType, 4> paramTypes; in VisitFunctionType() local 1350 paramTypes.push_back(newParamType); in VisitFunctionType() 1381 return Ctx.getFunctionType(returnType, paramTypes, info); in VisitFunctionType()
|
| /llvm-project-15.0.7/llvm/bindings/go/llvm/ |
| H A D | ir.go | 584 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) { 587 if len(paramTypes) > 0 { 588 pt = llvmTypeRefPtr(¶mTypes[0]) 589 ptlen = C.unsigned(len(paramTypes))
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | TreeTransform.h | 14354 SmallVector<QualType, 4> paramTypes; in TransformBlockExpr() local 14362 exprFunctionType->getExtParameterInfosOrNull(), paramTypes, ¶ms, in TransformBlockExpr() 14372 epi.ExtParameterInfos = extParamInfos.getPointerOrNull(paramTypes.size()); in TransformBlockExpr() 14375 getDerived().RebuildFunctionProtoType(exprResultType, paramTypes, epi); in TransformBlockExpr()
|
| H A D | SemaType.cpp | 2843 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes, in checkExtParameterInfos() argument 2863 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos()
|