Home
last modified time | relevance | path

Searched refs:FunctionTy (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-c-test/
H A Ddebuginfo.c113 LLVMMetadataRef FunctionTy = in llvm_test_dibuilder() local
128 File, 42, FunctionTy, true, true, in llvm_test_dibuilder()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A DMachOUtils.cpp141 template <typename FunctionTy>
143 FunctionTy Handler) { in iterateOnSegments()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DCore.h1049 LLVMTypeRef FunctionTy);
1278 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
1283 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
1288 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
1301 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DCore.cpp695 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
696 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
699 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
700 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
703 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
704 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
707 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
708 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
2272 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
2273 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaLambda.cpp1581 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local
1583 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjC.cpp3757 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local
3761 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicSetterCopyHelperFunction()
3855 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local
3859 FunctionTy, nullptr, SC_Static, false, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
H A DCGStmtOpenMP.cpp450 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()