Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Ddebuginfo.c114 LLVMMetadataRef FunctionTy = in llvm_test_dibuilder() local
129 File, 42, FunctionTy, true, true, in llvm_test_dibuilder()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DMachOUtils.cpp138 template <typename FunctionTy>
140 FunctionTy Handler) { in iterateOnSegments()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.cpp1956 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateCopyHelperFunction() local
1960 FunctionTy, nullptr, SC_Static, false, false); in GenerateCopyHelperFunction()
2150 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateDestroyHelperFunction() local
2154 FunctionTy, nullptr, SC_Static, false, false); in GenerateDestroyHelperFunction()
2404 QualType FunctionTy = Context.getFunctionType(ReturnTy, ArgTys, {}); in generateByrefCopyHelper() local
2408 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false); in generateByrefCopyHelper()
2479 QualType FunctionTy = Context.getFunctionType(R, ArgTys, {}); in generateByrefDisposeHelper() local
2483 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false); in generateByrefDisposeHelper()
H A DCGObjC.cpp3690 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local
3694 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicSetterCopyHelperFunction()
3774 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local
3778 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
H A DItaniumCXXABI.cpp2617 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, {}); in createGlobalInitOrCleanupFnDecl() local
2620 &Ctx.Idents.get(FnName), FunctionTy, nullptr, SC_Static, false, false); in createGlobalInitOrCleanupFnDecl()
H A DCGStmtOpenMP.cpp446 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, EPI); in emitOutlinedFunctionPrologue() local
449 SourceLocation(), DeclarationName(), FunctionTy, in emitOutlinedFunctionPrologue()
450 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static, in emitOutlinedFunctionPrologue()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h1022 LLVMTypeRef FunctionTy);
1251 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
1256 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
1261 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
1274 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp683 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1535 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local
1537 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()