Home
last modified time | relevance | path

Searched refs:th_cg_roots (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
Dkmp_runtime.cpp821 int cg_nthreads = this_thr->th.th_cg_roots->cg_nthreads; in __kmp_reserve_threads()
822 int max_cg_threads = this_thr->th.th_cg_roots->cg_thread_limit; in __kmp_reserve_threads()
3834 root_thread->th.th_cg_roots = tmp; in __kmp_register_root()
3970 i = root->r.r_uber_thread->th.th_cg_roots->cg_nthreads--; in __kmp_reset_root()
3973 root->r.r_uber_thread, root->r.r_uber_thread->th.th_cg_roots, in __kmp_reset_root()
3974 root->r.r_uber_thread->th.th_cg_roots->cg_nthreads)); in __kmp_reset_root()
3978 root->r.r_uber_thread->th.th_cg_roots->cg_root); in __kmp_reset_root()
3979 KMP_DEBUG_ASSERT(root->r.r_uber_thread->th.th_cg_roots->up == NULL); in __kmp_reset_root()
3980 __kmp_free(root->r.r_uber_thread->th.th_cg_roots); in __kmp_reset_root()
3981 root->r.r_uber_thread->th.th_cg_roots = NULL; in __kmp_reset_root()
[all …]
Dkmp_csupport.cpp445 KMP_DEBUG_ASSERT(this_thr->th.th_cg_roots); in __kmpc_fork_teams()
446 kmp_cg_root_t *tmp = this_thr->th.th_cg_roots; in __kmpc_fork_teams()
447 this_thr->th.th_cg_roots = tmp->up; in __kmpc_fork_teams()
450 this_thr, tmp, this_thr->th.th_cg_roots, tmp->cg_nthreads)); in __kmpc_fork_teams()
457 KMP_DEBUG_ASSERT(this_thr->th.th_cg_roots); in __kmpc_fork_teams()
459 this_thr->th.th_cg_roots->cg_thread_limit; in __kmpc_fork_teams()
Dkmp.h2688 kmp_cg_root_t *th_cg_roots; // list of cg_roots associated with this thread member