Searched refs:FunctionTy (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 1022 LLVMTypeRef FunctionTy); 1251 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy); 1256 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy); 1261 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy); 1274 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 683 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument 684 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg() 687 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument 688 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType() 691 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument 692 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes() 695 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument 696 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes() 2317 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument 2318 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 1539 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local 1541 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 3696 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local 3700 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicSetterCopyHelperFunction() 3786 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local 3790 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
|
| H A D | CGStmtOpenMP.cpp | 448 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, EPI); in emitOutlinedFunctionPrologue() local 451 SourceLocation(), DeclarationName(), FunctionTy, in emitOutlinedFunctionPrologue() 452 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static, in emitOutlinedFunctionPrologue()
|