Searched refs:FunctionTy (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 1206 LLVMTypeRef FunctionTy); 1446 LLVM_C_ABI LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy); 1451 LLVM_C_ABI LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy); 1456 LLVM_C_ABI unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy); 1469 LLVM_C_ABI void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 770 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument 771 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg() 774 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument 775 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType() 778 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument 779 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes() 782 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument 783 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes() 2391 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument 2392 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | ClauseT.h | 315 typename ContainerTy, typename FunctionTy, 317 typename ResultTy = std::invoke_result_t<FunctionTy, ElemTy>> 318 ListT<ResultTy> makeList(ContainerTy &&container, FunctionTy &&func) {
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 3775 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local 3779 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicSetterCopyHelperFunction() 3873 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local 3877 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
|
| H A D | CGStmtOpenMP.cpp | 508 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, {}, EPI); in emitOutlinedFunctionPrologue() local 511 SourceLocation(), DeclarationName(), FunctionTy, in emitOutlinedFunctionPrologue() 512 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static, in emitOutlinedFunctionPrologue()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 1878 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local 1880 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
|