Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DCore.h998 LLVMTypeRef FunctionTy);
1221 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
1226 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
1231 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
1244 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBlocks.cpp2038 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateCopyHelperFunction() local
2042 FunctionTy, nullptr, SC_Static, false, false); in GenerateCopyHelperFunction()
2228 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateDestroyHelperFunction() local
2232 FunctionTy, nullptr, SC_Static, false, false); in GenerateDestroyHelperFunction()
2481 QualType FunctionTy = Context.getFunctionType(ReturnTy, ArgTys, {}); in generateByrefCopyHelper() local
2485 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false); in generateByrefCopyHelper()
2556 QualType FunctionTy = Context.getFunctionType(R, ArgTys, {}); in generateByrefDisposeHelper() local
2560 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false); in generateByrefDisposeHelper()
H A DCGObjC.cpp3433 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() local
3437 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicSetterCopyHelperFunction()
3517 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() local
3521 FunctionTy, nullptr, SC_Static, false, false); in GenerateObjCAtomicGetterCopyHelperFunction()
H A DCGStmtOpenMP.cpp388 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, EPI); in emitOutlinedFunctionPrologue() local
391 SourceLocation(), DeclarationName(), FunctionTy, in emitOutlinedFunctionPrologue()
392 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static, in emitOutlinedFunctionPrologue()
H A DItaniumCXXABI.cpp2356 QualType FunctionTy = Ctx.getFunctionType(ReturnTy, llvm::None, {}); in registerGlobalDtorsWithAtExit() local
2359 &Ctx.Idents.get(GlobalInitFnName), FunctionTy, nullptr, SC_Static, in registerGlobalDtorsWithAtExit()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DCore.cpp641 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
642 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
645 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
646 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
649 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
650 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
653 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
654 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
2231 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
2232 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLambda.cpp1374 QualType FunctionTy = S.getLambdaConversionFunctionResultType( in addBlockPointerConversion() local
1376 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()