Lines Matching refs:CreateRuntimeFunction
229 CreateRuntimeFunction(OMPRTL__kmpc_global_thread_num), Args); in GetOpenMPThreadID()
251 CGOpenMPRuntime::CreateRuntimeFunction(OpenMPRTLFunction Function) { in CreateRuntimeFunction() function in CGOpenMPRuntime
261 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_fork_call"); in CreateRuntimeFunction()
269 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_global_thread_num"); in CreateRuntimeFunction()
280 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_cached"); in CreateRuntimeFunction()
291 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_critical"); in CreateRuntimeFunction()
314 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_register"); in CreateRuntimeFunction()
325 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_critical"); in CreateRuntimeFunction()
334 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name*/ "__kmpc_cancel_barrier"); in CreateRuntimeFunction()
358 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_init_4"); in CreateRuntimeFunction()
377 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_init_4u"); in CreateRuntimeFunction()
396 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_init_8"); in CreateRuntimeFunction()
415 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_init_8u"); in CreateRuntimeFunction()
423 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_fini"); in CreateRuntimeFunction()
433 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_num_threads"); in CreateRuntimeFunction()
442 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_serialized_parallel"); in CreateRuntimeFunction()
451 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_serialized_parallel"); in CreateRuntimeFunction()
459 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_flush"); in CreateRuntimeFunction()
467 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_master"); in CreateRuntimeFunction()
475 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_master"); in CreateRuntimeFunction()
500 CreateRuntimeFunction(OMPRTL__kmpc_threadprivate_cached), Args); in getOMPAddrOfThreadPrivate()
509 CGF.EmitRuntimeCall(CreateRuntimeFunction(OMPRTL__kmpc_global_thread_num), in EmitOMPThreadPrivateVarInit()
517 CreateRuntimeFunction(OMPRTL__kmpc_threadprivate_register), Args); in EmitOMPThreadPrivateVarInit()
643 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_fork_call); in EmitOMPParallelCall()
655 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_serialized_parallel); in EmitOMPSerialCall()
669 RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_end_serialized_parallel); in EmitOMPSerialCall()
730 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_critical); in EmitOMPCriticalRegion()
734 RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_end_critical); in EmitOMPCriticalRegion()
766 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_master); in EmitOMPMasterRegion()
784 RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_end_master); in EmitOMPMasterRegion()
803 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_cancel_barrier); in EmitOMPBarrierCall()
886 auto RTLFn = CreateRuntimeFunction(F); in EmitOMPForInit()
898 auto RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_for_static_fini); in EmitOMPForFinish()
909 llvm::Constant *RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_push_num_threads); in EmitOMPNumThreadsClause()
920 auto *RTLFn = CreateRuntimeFunction(OMPRTL__kmpc_flush); in EmitOMPFlush()