Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp863 int cg_nthreads = this_thr->th.th_cg_roots->cg_nthreads; in __kmp_reserve_threads()
864 int max_cg_threads = this_thr->th.th_cg_roots->cg_thread_limit; in __kmp_reserve_threads()
4029 root_thread->th.th_cg_roots = tmp; in __kmp_register_root()
4165 i = root->r.r_uber_thread->th.th_cg_roots->cg_nthreads--; in __kmp_reset_root()
4168 root->r.r_uber_thread, root->r.r_uber_thread->th.th_cg_roots, in __kmp_reset_root()
4169 root->r.r_uber_thread->th.th_cg_roots->cg_nthreads)); in __kmp_reset_root()
4173 root->r.r_uber_thread->th.th_cg_roots->cg_root); in __kmp_reset_root()
4174 KMP_DEBUG_ASSERT(root->r.r_uber_thread->th.th_cg_roots->up == NULL); in __kmp_reset_root()
4175 __kmp_free(root->r.r_uber_thread->th.th_cg_roots); in __kmp_reset_root()
4176 root->r.r_uber_thread->th.th_cg_roots = NULL; in __kmp_reset_root()
[all …]
H A Dkmp_csupport.cpp555 KMP_DEBUG_ASSERT(this_thr->th.th_cg_roots); in __kmpc_fork_teams()
556 kmp_cg_root_t *tmp = this_thr->th.th_cg_roots; in __kmpc_fork_teams()
557 this_thr->th.th_cg_roots = tmp->up; in __kmpc_fork_teams()
560 this_thr, tmp, this_thr->th.th_cg_roots, tmp->cg_nthreads)); in __kmpc_fork_teams()
567 KMP_DEBUG_ASSERT(this_thr->th.th_cg_roots); in __kmpc_fork_teams()
569 this_thr->th.th_cg_roots->cg_thread_limit; in __kmpc_fork_teams()
H A Dkmp.h3082 kmp_cg_root_t *th_cg_roots; // list of cg_roots associated with this thread member