| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCUDANV.cpp | 230 return CGM.CreateRuntimeFunction( in getSetupArgumentFn() 238 return CGM.CreateRuntimeFunction( in getLaunchFn() 242 return CGM.CreateRuntimeFunction( in getLaunchFn() 369 llvm::FunctionCallee cudaPopConfigFn = CGM.CreateRuntimeFunction( in emitDeviceStubBodyNew() 405 CGM.CreateRuntimeFunction(FTy, LaunchKernelName); in emitDeviceStubBodyNew() 520 llvm::FunctionCallee RegisterFunc = CGM.CreateRuntimeFunction( in makeRegisterGlobalsFn() 557 llvm::FunctionCallee RegisterVar = CGM.CreateRuntimeFunction( in makeRegisterGlobalsFn() 564 llvm::FunctionCallee RegisterManagedVar = CGM.CreateRuntimeFunction( in makeRegisterGlobalsFn() 569 llvm::FunctionCallee RegisterSurf = CGM.CreateRuntimeFunction( in makeRegisterGlobalsFn() 576 llvm::FunctionCallee RegisterTex = CGM.CreateRuntimeFunction( in makeRegisterGlobalsFn() [all …]
|
| H A D | CGObjCMac.cpp | 69 return CGM.CreateRuntimeFunction( in getMessageSendFn() 145 return CGM.CreateRuntimeFunction( in getMessageSendSuperStretFn() 156 return CGM.CreateRuntimeFunction( in getMessageSendSuperStretFn2() 301 return CGM.CreateRuntimeFunction(FTy, name); in getOptimizedSetPropertyFn() 370 return CGM.CreateRuntimeFunction(FTy, "objc_read_weak"); in getGcReadWeakFn() 458 return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit"); in getSyncExitFn() 557 return CGM.CreateRuntimeFunction( in getExceptionTryEnterFn() 565 return CGM.CreateRuntimeFunction( in getExceptionTryExitFn() 581 return CGM.CreateRuntimeFunction( in getExceptionMatchFn() 590 return CGM.CreateRuntimeFunction( in getSetJmpFn() [all …]
|
| H A D | ItaniumCXXABI.cpp | 1310 return CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception"); in getAllocateExceptionFn() 1321 return CGM.CreateRuntimeFunction(FTy, "__cxa_throw"); in getThrowFn() 1384 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_cast"); in getBadCastFn() 1443 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_typeid"); in getBadTypeidFn() 2329 return CGM.CreateRuntimeFunction( in getGuardAcquireFn() 2341 return CGM.CreateRuntimeFunction( in getGuardReleaseFn() 2353 return CGM.CreateRuntimeFunction( in getGuardAbortFn() 4401 return CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch"); in getBeginCatchFn() 4409 return CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch"); in getEndCatchFn() 4691 llvm::FunctionCallee fnRef = CGM.CreateRuntimeFunction( in getClangCallTerminateFn() [all …]
|
| H A D | CGException.cpp | 39 return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception"); in getFreeExceptionFn() 45 return CGM.CreateRuntimeFunction(FTy, "llvm.seh.try.begin"); in getSehTryBeginFn() 51 return CGM.CreateRuntimeFunction(FTy, "llvm.seh.try.end"); in getSehTryEndFn() 60 return CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected"); in getUnexpectedFn() 86 return CreateRuntimeFunction(FTy, name); in getTerminateFn() 94 return CGM.CreateRuntimeFunction(FTy, Name); in getCatchallRethrowFn() 258 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true), in getPersonalityFn()
|
| H A D | CGCleanup.cpp | 1337 CGM.CreateRuntimeFunction(FTy, "llvm.seh.scope.begin"); in EmitSehCppScopeBegin() 1348 CGM.CreateRuntimeFunction(FTy, "llvm.seh.scope.end"); in EmitSehCppScopeEnd() 1358 CGM.CreateRuntimeFunction(FTy, "llvm.seh.try.begin"); in EmitSehTryScopeBegin() 1368 CGM.CreateRuntimeFunction(FTy, "llvm.seh.try.end"); in EmitSehTryScopeEnd()
|
| H A D | CGObjCGNU.cpp | 86 Function = CGM->CreateRuntimeFunction(FTy, FunctionName); in operator llvm::FunctionCallee() 969 llvm::FunctionCallee Fn = CGM.CreateRuntimeFunction(FT, FunctionName); in CallRuntimeFunction() 2300 llvm::FunctionCallee ClassLookupFn = CGM.CreateRuntimeFunction( in GetClassNamed() 2560 classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get( in GenerateMessageSendSuper() 2563 classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get( in GenerateMessageSendSuper() 2720 CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, IdTy, true), in GenerateMessageSend() 2727 CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, IdTy, true), in GenerateMessageSend() 2731 imp = CGM.CreateRuntimeFunction( in GenerateMessageSend() 3826 CGM.CreateRuntimeFunction(FT, "__objc_exec_class"); in ModuleInitFunction()
|
| H A D | CGDeclCXX.cpp | 338 CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(), in registerGlobalDtorWithAtExit() 365 CGM.CreateRuntimeFunction(unatexitTy, "unatexit", llvm::AttributeList()); in unregisterGlobalDtorWithUnAtExit()
|
| H A D | CGObjC.cpp | 2222 fn = CGF.CGM.CreateRuntimeFunction(fnType, fnName); in emitObjCValueOperation() 2674 fn = CGM.CreateRuntimeFunction(fnType, "objc_autoreleasePoolPop"); in EmitObjCAutoreleasePoolPop() 2808 fn = CGM.CreateRuntimeFunction(fnType, "objc_release"); in EmitObjCRelease() 3932 CGM.CreateRuntimeFunction(FTy, "__isPlatformVersionAtLeast"); in emitIsPlatformVersionAtLeast() 3951 CGM.CreateRuntimeFunction(FTy, "__isOSVersionAtLeast"); in EmitBuiltinAvailable() 4012 CreateRuntimeFunction(FTy, "CFBundleGetVersionNumber"); in emitAtAvailableLinkGuard() 4015 llvm::FunctionCallee CFLinkCheckFuncRef = CreateRuntimeFunction( in emitAtAvailableLinkGuard()
|
| H A D | MicrosoftCXXABI.cpp | 754 CGM.CreateRuntimeFunction(FTy, "_CxxThrowException"); in getThrowFn() 965 llvm::FunctionCallee Fn = CGF.CGM.CreateRuntimeFunction(FTy, "__RTtypeid"); in emitRTtypeidCall() 1017 llvm::FunctionCallee Function = CGF.CGM.CreateRuntimeFunction( in EmitDynamicCastCall() 1037 llvm::FunctionCallee Function = CGF.CGM.CreateRuntimeFunction( in EmitDynamicCastToVoid() 2326 llvm::FunctionCallee TLRegDtor = CGF.CGM.CreateRuntimeFunction( in emitGlobalDtorWithTLRegDtor() 2425 return CGM.CreateRuntimeFunction( in getInitThreadHeaderFn() 2437 return CGM.CreateRuntimeFunction( in getInitThreadFooterFn() 2449 return CGM.CreateRuntimeFunction( in getInitThreadAbortFn()
|
| H A D | CodeGenModule.h | 1110 CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name,
|
| H A D | CGBuiltin.cpp | 1084 llvm::FunctionCallee SetJmpFn = CGF.CGM.CreateRuntimeFunction( in EmitMSVCRTSetJmp() 4623 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), in EmitBuiltinExpr() 4643 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), in EmitBuiltinExpr() 4769 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, NewName), {NewArg}); in EmitBuiltinExpr() 4873 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), Args)); in EmitBuiltinExpr() 4931 EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), in EmitBuiltinExpr() 4948 RValue::get(EmitRuntimeCall(CGM.CreateRuntimeFunction(FTy, Name), in EmitBuiltinExpr() 4966 CGM.CreateRuntimeFunction( in EmitBuiltinExpr() 4980 CGM.CreateRuntimeFunction( in EmitBuiltinExpr() 5001 CGM.CreateRuntimeFunction( in EmitBuiltinExpr() [all …]
|
| H A D | CGVTables.cpp | 768 CGM.CreateRuntimeFunction(fnTy, name).getCallee()); in addVTableComponent()
|
| H A D | CGClass.cpp | 813 llvm::FunctionCallee F = CGM.CreateRuntimeFunction( in EmitAsanPrologueOrEpilogue() 1667 CGF.CGM.CreateRuntimeFunction(FnType, "__sanitizer_dtor_callback"); in EmitSanitizerDtorCallback()
|
| H A D | CGBlocks.cpp | 2890 BlockObjectDispose = CreateRuntimeFunction(fty, "_Block_object_dispose"); in getBlockObjectDispose() 2903 BlockObjectAssign = CreateRuntimeFunction(fty, "_Block_object_assign"); in getBlockObjectAssign()
|
| H A D | CGExprComplex.cpp | 656 llvm::FunctionCallee Func = CGF.CGM.CreateRuntimeFunction( in EmitComplexBinOpLibCall()
|
| H A D | CGAtomic.cpp | 317 CGF.CGM.CreateRuntimeFunction(fnTy, fnName, fnAttrs); in emitAtomicLibcall()
|
| H A D | CodeGenModule.cpp | 3759 CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, StringRef Name, in CreateRuntimeFunction() function in CodeGenModule 6348 CreateRuntimeFunction(FTy, "__translate_sampler_initializer"), {C}); in createOpenCLIntToSamplerConversion()
|
| H A D | CGOpenMPRuntime.cpp | 1585 return CGM.CreateRuntimeFunction(FnTy, Name); in createForStaticInitFunction() 1607 return CGM.CreateRuntimeFunction(FnTy, Name); in createDispatchInitFunction() 1624 return CGM.CreateRuntimeFunction(FnTy, Name); in createDispatchFiniFunction() 1647 return CGM.CreateRuntimeFunction(FnTy, Name); in createDispatchNextFunction()
|
| H A D | CGCall.cpp | 5336 CGM.CreateRuntimeFunction(FnType, "__asan_handle_no_return"); in EmitCall()
|
| H A D | CGExpr.cpp | 3185 llvm::FunctionCallee Fn = CGF.CGM.CreateRuntimeFunction( in emitCheckHandlerCall()
|
| H A D | CGExprScalar.cpp | 3345 CGF.CGM.CreateRuntimeFunction(handlerTy, *handlerName); in EmitOverflowCheckedBinOp()
|