Searched refs:FunctionTy (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 1122 LLVMTypeRef FunctionTy); 1351 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy); 1356 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy); 1361 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy); 1374 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 744 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument 745 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg() 748 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument 749 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType() 752 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument 753 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes() 756 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument 757 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes() 2256 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument 2257 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 3731 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local 3735 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicSetterCopyHelperFunction() 3829 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local 3833 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
|
| H A D | CGStmtOpenMP.cpp | 450 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, std::nullopt, EPI); in emitOutlinedFunctionPrologue() local 453 SourceLocation(), DeclarationName(), FunctionTy, in emitOutlinedFunctionPrologue() 454 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static, in emitOutlinedFunctionPrologue()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 1795 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local 1797 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
|