Home
last modified time | relevance | path

Searched refs:paramTypes (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/
H A DFunctionCallUtils.cpp45 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 DTypeFromLLVM.cpp87 SmallVector<Type, 8> paramTypes; in translate() local
88 translateTypes(type->params(), paramTypes); in translate()
90 paramTypes, type->isVarArg()); in translate()
H A DTypeToLLVM.cpp96 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 DDeserializationTest.cpp96 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 DFunctionCallUtils.h58 ArrayRef<Type> paramTypes = {},
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp1045 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 Dir.go584 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) {
587 if len(paramTypes) > 0 {
588 pt = llvmTypeRefPtr(&paramTypes[0])
589 ptlen = C.unsigned(len(paramTypes))
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h14354 SmallVector<QualType, 4> paramTypes; in TransformBlockExpr() local
14362 exprFunctionType->getExtParameterInfosOrNull(), paramTypes, &params, in TransformBlockExpr()
14372 epi.ExtParameterInfos = extParamInfos.getPointerOrNull(paramTypes.size()); in TransformBlockExpr()
14375 getDerived().RebuildFunctionProtoType(exprResultType, paramTypes, epi); in TransformBlockExpr()
H A DSemaType.cpp2843 static void checkExtParameterInfos(Sema &S, ArrayRef<QualType> paramTypes, in checkExtParameterInfos() argument
2863 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos()