5 //===----------------------------------------------------------------------===//
7 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
8 // See https://llvm.org/LICENSE.txt for license information.
9 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 //===----------------------------------------------------------------------===//
14 #include "kmp_atomic.h"
17 #include "ompt-specific.h"
21 KMP_GOMP_TASK_UNTIED_FLAG
= 1,
22 KMP_GOMP_TASK_FINAL_FLAG
= 2,
23 KMP_GOMP_TASK_DEPENDS_FLAG
= 8
27 KMP_GOMP_DEPOBJ_IN
= 1,
28 KMP_GOMP_DEPOBJ_OUT
= 2,
29 KMP_GOMP_DEPOBJ_INOUT
= 3,
30 KMP_GOMP_DEPOBJ_MTXINOUTSET
= 4
33 // This class helps convert gomp dependency info into
34 // kmp_depend_info_t structures
35 class kmp_gomp_depends_info_t
{
38 size_t num_out
, num_mutexinout
, num_in
, num_depobj
;
42 kmp_gomp_depends_info_t(void **depend
) : depend(depend
) {
43 size_t ndeps
= (kmp_intptr_t
)depend
[0];
44 // GOMP taskdep structure:
46 // depend = [ ndeps | nout | &out | ... | &out | &in | ... | &in ]
49 // depend = [ 0 | ndeps | nout | nmtx | nin | &out | ... | &out | &mtx |
50 // ... | &mtx | &in | ... | &in | &depobj | ... | &depobj ]
52 num_out
= (kmp_intptr_t
)depend
[1];
53 num_in
= ndeps
- num_out
;
54 num_mutexinout
= num_depobj
= 0;
57 ndeps
= (kmp_intptr_t
)depend
[1];
58 num_out
= (kmp_intptr_t
)depend
[2];
59 num_mutexinout
= (kmp_intptr_t
)depend
[3];
60 num_in
= (kmp_intptr_t
)depend
[4];
61 num_depobj
= ndeps
- num_out
- num_mutexinout
- num_in
;
62 KMP_ASSERT(num_depobj
<= ndeps
);
65 num_deps
= static_cast<kmp_int32
>(ndeps
);
67 kmp_int32
get_num_deps() const { return num_deps
; }
68 kmp_depend_info_t
get_kmp_depend(size_t index
) const {
69 kmp_depend_info_t retval
;
70 memset(&retval
, '\0', sizeof(retval
));
71 KMP_ASSERT(index
< (size_t)num_deps
);
73 // Because inout and out are logically equivalent,
74 // use inout and in dependency flags. GOMP does not provide a
75 // way to distinguish if user specified out vs. inout.
76 if (index
< num_out
) {
79 retval
.base_addr
= (kmp_intptr_t
)depend
[offset
+ index
];
80 } else if (index
>= num_out
&& index
< (num_out
+ num_mutexinout
)) {
82 retval
.base_addr
= (kmp_intptr_t
)depend
[offset
+ index
];
83 } else if (index
>= (num_out
+ num_mutexinout
) &&
84 index
< (num_out
+ num_mutexinout
+ num_in
)) {
86 retval
.base_addr
= (kmp_intptr_t
)depend
[offset
+ index
];
88 // depobj is a two element array (size of elements are size of pointer)
89 // depobj[0] = base_addr
90 // depobj[1] = type (in, out, inout, mutexinoutset, etc.)
91 kmp_intptr_t
*depobj
= (kmp_intptr_t
*)depend
[offset
+ index
];
92 retval
.base_addr
= depobj
[0];
94 case KMP_GOMP_DEPOBJ_IN
:
97 case KMP_GOMP_DEPOBJ_OUT
:
100 case KMP_GOMP_DEPOBJ_INOUT
:
102 retval
.flags
.out
= 1;
104 case KMP_GOMP_DEPOBJ_MTXINOUTSET
:
105 retval
.flags
.mtx
= 1;
108 KMP_FATAL(GompFeatureNotSupported
, "Unknown depobj type");
117 #endif // __cplusplus
119 #define MKLOC(loc, routine) \
120 static ident_t loc = {0, KMP_IDENT_KMPC, 0, 0, ";unknown;unknown;0;0;;"};
122 #include "kmp_ftn_os.h"
124 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_BARRIER
)(void) {
125 int gtid
= __kmp_entry_gtid();
126 MKLOC(loc
, "GOMP_barrier");
127 KA_TRACE(20, ("GOMP_barrier: T#%d\n", gtid
));
128 #if OMPT_SUPPORT && OMPT_OPTIONAL
129 ompt_frame_t
*ompt_frame
;
130 if (ompt_enabled
.enabled
) {
131 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
132 ompt_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
134 OMPT_STORE_RETURN_ADDRESS(gtid
);
136 __kmpc_barrier(&loc
, gtid
);
137 #if OMPT_SUPPORT && OMPT_OPTIONAL
138 if (ompt_enabled
.enabled
) {
139 ompt_frame
->enter_frame
= ompt_data_none
;
146 // The symbol that icc/ifort generates for unnamed for unnamed critical sections
147 // - .gomp_critical_user_ - is defined using .comm in any objects reference it.
148 // We can't reference it directly here in C code, as the symbol contains a ".".
150 // The RTL contains an assembly language definition of .gomp_critical_user_
151 // with another symbol __kmp_unnamed_critical_addr initialized with it's
153 extern kmp_critical_name
*__kmp_unnamed_critical_addr
;
155 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CRITICAL_START
)(void) {
156 int gtid
= __kmp_entry_gtid();
157 MKLOC(loc
, "GOMP_critical_start");
158 KA_TRACE(20, ("GOMP_critical_start: T#%d\n", gtid
));
159 #if OMPT_SUPPORT && OMPT_OPTIONAL
160 OMPT_STORE_RETURN_ADDRESS(gtid
);
162 __kmpc_critical(&loc
, gtid
, __kmp_unnamed_critical_addr
);
165 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CRITICAL_END
)(void) {
166 int gtid
= __kmp_get_gtid();
167 MKLOC(loc
, "GOMP_critical_end");
168 KA_TRACE(20, ("GOMP_critical_end: T#%d\n", gtid
));
169 #if OMPT_SUPPORT && OMPT_OPTIONAL
170 OMPT_STORE_RETURN_ADDRESS(gtid
);
172 __kmpc_end_critical(&loc
, gtid
, __kmp_unnamed_critical_addr
);
175 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CRITICAL_NAME_START
)(void **pptr
) {
176 int gtid
= __kmp_entry_gtid();
177 MKLOC(loc
, "GOMP_critical_name_start");
178 KA_TRACE(20, ("GOMP_critical_name_start: T#%d\n", gtid
));
179 __kmpc_critical(&loc
, gtid
, (kmp_critical_name
*)pptr
);
182 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CRITICAL_NAME_END
)(void **pptr
) {
183 int gtid
= __kmp_get_gtid();
184 MKLOC(loc
, "GOMP_critical_name_end");
185 KA_TRACE(20, ("GOMP_critical_name_end: T#%d\n", gtid
));
186 __kmpc_end_critical(&loc
, gtid
, (kmp_critical_name
*)pptr
);
189 // The Gnu codegen tries to use locked operations to perform atomic updates
190 // inline. If it can't, then it calls GOMP_atomic_start() before performing
191 // the update and GOMP_atomic_end() afterward, regardless of the data type.
192 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ATOMIC_START
)(void) {
193 int gtid
= __kmp_entry_gtid();
194 KA_TRACE(20, ("GOMP_atomic_start: T#%d\n", gtid
));
197 __ompt_thread_assign_wait_id(0);
200 __kmp_acquire_atomic_lock(&__kmp_atomic_lock
, gtid
);
203 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ATOMIC_END
)(void) {
204 int gtid
= __kmp_get_gtid();
205 KA_TRACE(20, ("GOMP_atomic_end: T#%d\n", gtid
));
206 __kmp_release_atomic_lock(&__kmp_atomic_lock
, gtid
);
209 int KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SINGLE_START
)(void) {
210 int gtid
= __kmp_entry_gtid();
211 MKLOC(loc
, "GOMP_single_start");
212 KA_TRACE(20, ("GOMP_single_start: T#%d\n", gtid
));
214 if (!TCR_4(__kmp_init_parallel
))
215 __kmp_parallel_initialize();
216 __kmp_resume_if_soft_paused();
218 // 3rd parameter == FALSE prevents kmp_enter_single from pushing a
219 // workshare when USE_CHECKS is defined. We need to avoid the push,
220 // as there is no corresponding GOMP_single_end() call.
221 kmp_int32 rc
= __kmp_enter_single(gtid
, &loc
, FALSE
);
223 #if OMPT_SUPPORT && OMPT_OPTIONAL
224 kmp_info_t
*this_thr
= __kmp_threads
[gtid
];
225 kmp_team_t
*team
= this_thr
->th
.th_team
;
226 int tid
= __kmp_tid_from_gtid(gtid
);
228 if (ompt_enabled
.enabled
) {
230 if (ompt_enabled
.ompt_callback_work
) {
231 ompt_callbacks
.ompt_callback(ompt_callback_work
)(
232 ompt_work_single_executor
, ompt_scope_begin
,
233 &(team
->t
.ompt_team_info
.parallel_data
),
234 &(team
->t
.t_implicit_task_taskdata
[tid
].ompt_task_info
.task_data
),
235 1, OMPT_GET_RETURN_ADDRESS(0));
238 if (ompt_enabled
.ompt_callback_work
) {
239 ompt_callbacks
.ompt_callback(ompt_callback_work
)(
240 ompt_work_single_other
, ompt_scope_begin
,
241 &(team
->t
.ompt_team_info
.parallel_data
),
242 &(team
->t
.t_implicit_task_taskdata
[tid
].ompt_task_info
.task_data
),
243 1, OMPT_GET_RETURN_ADDRESS(0));
244 ompt_callbacks
.ompt_callback(ompt_callback_work
)(
245 ompt_work_single_other
, ompt_scope_end
,
246 &(team
->t
.ompt_team_info
.parallel_data
),
247 &(team
->t
.t_implicit_task_taskdata
[tid
].ompt_task_info
.task_data
),
248 1, OMPT_GET_RETURN_ADDRESS(0));
257 void *KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SINGLE_COPY_START
)(void) {
259 int gtid
= __kmp_entry_gtid();
260 MKLOC(loc
, "GOMP_single_copy_start");
261 KA_TRACE(20, ("GOMP_single_copy_start: T#%d\n", gtid
));
263 if (!TCR_4(__kmp_init_parallel
))
264 __kmp_parallel_initialize();
265 __kmp_resume_if_soft_paused();
267 // If this is the first thread to enter, return NULL. The generated code will
268 // then call GOMP_single_copy_end() for this thread only, with the
269 // copyprivate data pointer as an argument.
270 if (__kmp_enter_single(gtid
, &loc
, FALSE
))
273 // Wait for the first thread to set the copyprivate data pointer,
274 // and for all other threads to reach this point.
276 #if OMPT_SUPPORT && OMPT_OPTIONAL
277 ompt_frame_t
*ompt_frame
;
278 if (ompt_enabled
.enabled
) {
279 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
280 ompt_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
282 OMPT_STORE_RETURN_ADDRESS(gtid
);
284 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
286 // Retrieve the value of the copyprivate data point, and wait for all
287 // threads to do likewise, then return.
288 retval
= __kmp_team_from_gtid(gtid
)->t
.t_copypriv_data
;
290 #if OMPT_SUPPORT && OMPT_OPTIONAL
291 OMPT_STORE_RETURN_ADDRESS(gtid
);
293 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
295 #if OMPT_SUPPORT && OMPT_OPTIONAL
296 if (ompt_enabled
.enabled
) {
297 ompt_frame
->enter_frame
= ompt_data_none
;
303 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SINGLE_COPY_END
)(void *data
) {
304 int gtid
= __kmp_get_gtid();
305 KA_TRACE(20, ("GOMP_single_copy_end: T#%d\n", gtid
));
307 // Set the copyprivate data pointer fo the team, then hit the barrier so that
308 // the other threads will continue on and read it. Hit another barrier before
309 // continuing, so that the know that the copyprivate data pointer has been
310 // propagated to all threads before trying to reuse the t_copypriv_data field.
311 __kmp_team_from_gtid(gtid
)->t
.t_copypriv_data
= data
;
312 #if OMPT_SUPPORT && OMPT_OPTIONAL
313 ompt_frame_t
*ompt_frame
;
314 if (ompt_enabled
.enabled
) {
315 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
316 ompt_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
318 OMPT_STORE_RETURN_ADDRESS(gtid
);
320 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
322 #if OMPT_SUPPORT && OMPT_OPTIONAL
323 OMPT_STORE_RETURN_ADDRESS(gtid
);
325 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
327 #if OMPT_SUPPORT && OMPT_OPTIONAL
328 if (ompt_enabled
.enabled
) {
329 ompt_frame
->enter_frame
= ompt_data_none
;
334 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ORDERED_START
)(void) {
335 int gtid
= __kmp_entry_gtid();
336 MKLOC(loc
, "GOMP_ordered_start");
337 KA_TRACE(20, ("GOMP_ordered_start: T#%d\n", gtid
));
338 #if OMPT_SUPPORT && OMPT_OPTIONAL
339 OMPT_STORE_RETURN_ADDRESS(gtid
);
341 __kmpc_ordered(&loc
, gtid
);
344 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ORDERED_END
)(void) {
345 int gtid
= __kmp_get_gtid();
346 MKLOC(loc
, "GOMP_ordered_end");
347 KA_TRACE(20, ("GOMP_ordered_start: T#%d\n", gtid
));
348 #if OMPT_SUPPORT && OMPT_OPTIONAL
349 OMPT_STORE_RETURN_ADDRESS(gtid
);
351 __kmpc_end_ordered(&loc
, gtid
);
354 // Dispatch macro defs
356 // They come in two flavors: 64-bit unsigned, and either 32-bit signed
357 // (IA-32 architecture) or 64-bit signed (Intel(R) 64).
359 #if KMP_ARCH_X86 || KMP_ARCH_ARM || KMP_ARCH_MIPS
360 #define KMP_DISPATCH_INIT __kmp_aux_dispatch_init_4
361 #define KMP_DISPATCH_FINI_CHUNK __kmp_aux_dispatch_fini_chunk_4
362 #define KMP_DISPATCH_NEXT __kmpc_dispatch_next_4
364 #define KMP_DISPATCH_INIT __kmp_aux_dispatch_init_8
365 #define KMP_DISPATCH_FINI_CHUNK __kmp_aux_dispatch_fini_chunk_8
366 #define KMP_DISPATCH_NEXT __kmpc_dispatch_next_8
367 #endif /* KMP_ARCH_X86 */
369 #define KMP_DISPATCH_INIT_ULL __kmp_aux_dispatch_init_8u
370 #define KMP_DISPATCH_FINI_CHUNK_ULL __kmp_aux_dispatch_fini_chunk_8u
371 #define KMP_DISPATCH_NEXT_ULL __kmpc_dispatch_next_8u
373 // The parallel construct
377 #endif /* KMP_DEBUG */
379 __kmp_GOMP_microtask_wrapper(int *gtid
, int *npr
, void (*task
)(void *),
383 ompt_frame_t
*ompt_frame
;
384 ompt_state_t enclosing_state
;
386 if (ompt_enabled
.enabled
) {
387 // get pointer to thread data structure
388 thr
= __kmp_threads
[*gtid
];
390 // save enclosing task state; set current state for task
391 enclosing_state
= thr
->th
.ompt_thread_info
.state
;
392 thr
->th
.ompt_thread_info
.state
= ompt_state_work_parallel
;
395 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
396 ompt_frame
->exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
403 if (ompt_enabled
.enabled
) {
405 ompt_frame
->exit_frame
= ompt_data_none
;
407 // restore enclosing state
408 thr
->th
.ompt_thread_info
.state
= enclosing_state
;
415 #endif /* KMP_DEBUG */
417 __kmp_GOMP_parallel_microtask_wrapper(int *gtid
, int *npr
,
418 void (*task
)(void *), void *data
,
419 unsigned num_threads
, ident_t
*loc
,
420 enum sched_type schedule
, long start
,
423 // Initialize the loop worksharing construct.
425 KMP_DISPATCH_INIT(loc
, *gtid
, schedule
, start
, end
, incr
, chunk_size
,
426 schedule
!= kmp_sch_static
);
430 ompt_frame_t
*ompt_frame
;
431 ompt_state_t enclosing_state
;
433 if (ompt_enabled
.enabled
) {
434 thr
= __kmp_threads
[*gtid
];
435 // save enclosing task state; set current state for task
436 enclosing_state
= thr
->th
.ompt_thread_info
.state
;
437 thr
->th
.ompt_thread_info
.state
= ompt_state_work_parallel
;
440 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
441 ompt_frame
->exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
445 // Now invoke the microtask.
449 if (ompt_enabled
.enabled
) {
451 ompt_frame
->exit_frame
= ompt_data_none
;
453 // reset enclosing state
454 thr
->th
.ompt_thread_info
.state
= enclosing_state
;
459 static void __kmp_GOMP_fork_call(ident_t
*loc
, int gtid
, unsigned num_threads
,
460 unsigned flags
, void (*unwrapped_task
)(void *),
461 microtask_t wrapper
, int argc
, ...) {
463 kmp_info_t
*thr
= __kmp_threads
[gtid
];
464 kmp_team_t
*team
= thr
->th
.th_team
;
465 int tid
= __kmp_tid_from_gtid(gtid
);
470 if (num_threads
!= 0)
471 __kmp_push_num_threads(loc
, gtid
, num_threads
);
473 __kmp_push_proc_bind(loc
, gtid
, (kmp_proc_bind_t
)flags
);
474 rc
= __kmp_fork_call(loc
, gtid
, fork_context_gnu
, argc
, wrapper
,
475 __kmp_invoke_task_func
, kmp_va_addr_of(ap
));
480 __kmp_run_before_invoked_task(gtid
, tid
, thr
, team
);
485 if (ompt_enabled
.enabled
) {
486 ompt_team_info_t
*team_info
= __ompt_get_teaminfo(0, NULL
);
487 ompt_task_info_t
*task_info
= __ompt_get_task_info_object(0);
489 // implicit task callback
490 if (ompt_enabled
.ompt_callback_implicit_task
) {
491 ompt_team_size
= __kmp_team_from_gtid(gtid
)->t
.t_nproc
;
492 ompt_callbacks
.ompt_callback(ompt_callback_implicit_task
)(
493 ompt_scope_begin
, &(team_info
->parallel_data
),
494 &(task_info
->task_data
), ompt_team_size
, __kmp_tid_from_gtid(gtid
),
495 ompt_task_implicit
); // TODO: Can this be ompt_task_initial?
496 task_info
->thread_num
= __kmp_tid_from_gtid(gtid
);
498 thr
->th
.ompt_thread_info
.state
= ompt_state_work_parallel
;
503 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_START
)(void (*task
)(void *),
505 unsigned num_threads
) {
506 int gtid
= __kmp_entry_gtid();
509 ompt_frame_t
*parent_frame
, *frame
;
511 if (ompt_enabled
.enabled
) {
512 __ompt_get_task_info_internal(0, NULL
, NULL
, &parent_frame
, NULL
, NULL
);
513 parent_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
515 OMPT_STORE_RETURN_ADDRESS(gtid
);
518 MKLOC(loc
, "GOMP_parallel_start");
519 KA_TRACE(20, ("GOMP_parallel_start: T#%d\n", gtid
));
520 __kmp_GOMP_fork_call(&loc
, gtid
, num_threads
, 0u, task
,
521 (microtask_t
)__kmp_GOMP_microtask_wrapper
, 2, task
,
524 if (ompt_enabled
.enabled
) {
525 __ompt_get_task_info_internal(0, NULL
, NULL
, &frame
, NULL
, NULL
);
526 frame
->exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
530 if (ompd_state
& OMPD_ENABLE_BP
)
531 ompd_bp_parallel_begin();
535 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_END
)(void) {
536 int gtid
= __kmp_get_gtid();
539 thr
= __kmp_threads
[gtid
];
541 MKLOC(loc
, "GOMP_parallel_end");
542 KA_TRACE(20, ("GOMP_parallel_end: T#%d\n", gtid
));
544 if (!thr
->th
.th_team
->t
.t_serialized
) {
545 __kmp_run_after_invoked_task(gtid
, __kmp_tid_from_gtid(gtid
), thr
,
549 if (ompt_enabled
.enabled
) {
550 // Implicit task is finished here, in the barrier we might schedule
552 // these don't see the implicit task on the stack
553 OMPT_CUR_TASK_INFO(thr
)->frame
.exit_frame
= ompt_data_none
;
557 __kmp_join_call(&loc
, gtid
564 if (ompd_state
& OMPD_ENABLE_BP
)
565 ompd_bp_parallel_end();
569 // Loop worksharing constructs
571 // The Gnu codegen passes in an exclusive upper bound for the overall range,
572 // but the libguide dispatch code expects an inclusive upper bound, hence the
573 // "end - incr" 5th argument to KMP_DISPATCH_INIT (and the " ub - str" 11th
574 // argument to __kmp_GOMP_fork_call).
576 // Conversely, KMP_DISPATCH_NEXT returns and inclusive upper bound in *p_ub,
577 // but the Gnu codegen expects an exclusive upper bound, so the adjustment
578 // "*p_ub += stride" compensates for the discrepancy.
580 // Correction: the gnu codegen always adjusts the upper bound by +-1, not the
581 // stride value. We adjust the dispatch parameters accordingly (by +-1), but
582 // we still adjust p_ub by the actual stride value.
584 // The "runtime" versions do not take a chunk_sz parameter.
586 // The profile lib cannot support construct checking of unordered loops that
587 // are predetermined by the compiler to be statically scheduled, as the gcc
588 // codegen will not always emit calls to GOMP_loop_static_next() to get the
589 // next iteration. Instead, it emits inline code to call omp_get_thread_num()
590 // num and calculate the iteration space using the result. It doesn't do this
591 // with ordered static loop, so they can be checked.
594 #define IF_OMPT_SUPPORT(code) code
596 #define IF_OMPT_SUPPORT(code)
599 #define LOOP_START(func, schedule) \
600 int func(long lb, long ub, long str, long chunk_sz, long *p_lb, \
604 int gtid = __kmp_entry_gtid(); \
605 MKLOC(loc, KMP_STR(func)); \
609 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
610 gtid, lb, ub, str, chunk_sz)); \
612 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
614 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
615 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
616 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
617 (schedule) != kmp_sch_static); \
620 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
621 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, (kmp_int *)p_lb, \
622 (kmp_int *)p_ub, (kmp_int *)&stride); \
625 KMP_DEBUG_ASSERT(stride == str); \
626 *p_ub += (str > 0) ? 1 : -1; \
635 func) " exit: T#%d, *p_lb 0x%lx, *p_ub 0x%lx, returning %d\n", \
636 gtid, *p_lb, *p_ub, status)); \
640 #define LOOP_RUNTIME_START(func, schedule) \
641 int func(long lb, long ub, long str, long *p_lb, long *p_ub) { \
645 int gtid = __kmp_entry_gtid(); \
646 MKLOC(loc, KMP_STR(func)); \
649 (KMP_STR(func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz %d\n", \
650 gtid, lb, ub, str, chunk_sz)); \
652 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
654 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
655 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
656 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
660 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
661 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, (kmp_int *)p_lb, \
662 (kmp_int *)p_ub, (kmp_int *)&stride); \
665 KMP_DEBUG_ASSERT(stride == str); \
666 *p_ub += (str > 0) ? 1 : -1; \
675 func) " exit: T#%d, *p_lb 0x%lx, *p_ub 0x%lx, returning %d\n", \
676 gtid, *p_lb, *p_ub, status)); \
680 #define KMP_DOACROSS_FINI(status, gtid) \
681 if (!status && __kmp_threads[gtid]->th.th_dispatch->th_doacross_flags) { \
682 __kmpc_doacross_fini(NULL, gtid); \
685 #define LOOP_NEXT(func, fini_code) \
686 int func(long *p_lb, long *p_ub) { \
689 int gtid = __kmp_get_gtid(); \
690 MKLOC(loc, KMP_STR(func)); \
691 KA_TRACE(20, (KMP_STR(func) ": T#%d\n", gtid)); \
693 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
694 fini_code status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, (kmp_int *)p_lb, \
695 (kmp_int *)p_ub, (kmp_int *)&stride); \
697 *p_ub += (stride > 0) ? 1 : -1; \
699 KMP_DOACROSS_FINI(status, gtid) \
703 (KMP_STR(func) " exit: T#%d, *p_lb 0x%lx, *p_ub 0x%lx, stride 0x%lx, " \
705 gtid, *p_lb, *p_ub, stride, status)); \
709 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_STATIC_START
), kmp_sch_static
)
710 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_STATIC_NEXT
), {})
711 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DYNAMIC_START
),
712 kmp_sch_dynamic_chunked
)
713 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_DYNAMIC_START
),
714 kmp_sch_dynamic_chunked
)
715 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DYNAMIC_NEXT
), {})
716 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_DYNAMIC_NEXT
), {})
717 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_GUIDED_START
),
718 kmp_sch_guided_chunked
)
719 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_GUIDED_START
),
720 kmp_sch_guided_chunked
)
721 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_GUIDED_NEXT
), {})
722 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_GUIDED_NEXT
), {})
723 LOOP_RUNTIME_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_RUNTIME_START
),
725 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_RUNTIME_NEXT
), {})
727 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_MAYBE_NONMONOTONIC_RUNTIME_START
),
730 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_RUNTIME_START
),
733 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_MAYBE_NONMONOTONIC_RUNTIME_NEXT
), {})
734 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_RUNTIME_NEXT
), {})
736 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_STATIC_START
),
738 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_STATIC_NEXT
),
739 { KMP_DISPATCH_FINI_CHUNK(&loc
, gtid
); })
740 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_DYNAMIC_START
),
741 kmp_ord_dynamic_chunked
)
742 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_DYNAMIC_NEXT
),
743 { KMP_DISPATCH_FINI_CHUNK(&loc
, gtid
); })
744 LOOP_START(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_GUIDED_START
),
745 kmp_ord_guided_chunked
)
746 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_GUIDED_NEXT
),
747 { KMP_DISPATCH_FINI_CHUNK(&loc
, gtid
); })
749 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_RUNTIME_START
),
751 LOOP_NEXT(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_RUNTIME_NEXT
),
752 { KMP_DISPATCH_FINI_CHUNK(&loc
, gtid
); })
754 #define LOOP_DOACROSS_START(func, schedule) \
755 bool func(unsigned ncounts, long *counts, long chunk_sz, long *p_lb, \
758 long stride, lb, ub, str; \
759 int gtid = __kmp_entry_gtid(); \
760 struct kmp_dim *dims = \
761 (struct kmp_dim *)__kmp_allocate(sizeof(struct kmp_dim) * ncounts); \
762 MKLOC(loc, KMP_STR(func)); \
763 for (unsigned i = 0; i < ncounts; ++i) { \
765 dims[i].up = counts[i] - 1; \
768 __kmpc_doacross_init(&loc, gtid, (int)ncounts, dims); \
772 KA_TRACE(20, (KMP_STR(func) ": T#%d, ncounts %u, lb 0x%lx, ub 0x%lx, str " \
775 gtid, ncounts, lb, ub, str, chunk_sz)); \
777 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
778 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
779 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
780 (schedule) != kmp_sch_static); \
781 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, (kmp_int *)p_lb, \
782 (kmp_int *)p_ub, (kmp_int *)&stride); \
784 KMP_DEBUG_ASSERT(stride == str); \
785 *p_ub += (str > 0) ? 1 : -1; \
790 KMP_DOACROSS_FINI(status, gtid); \
795 func) " exit: T#%d, *p_lb 0x%lx, *p_ub 0x%lx, returning %d\n", \
796 gtid, *p_lb, *p_ub, status)); \
801 #define LOOP_DOACROSS_RUNTIME_START(func, schedule) \
802 int func(unsigned ncounts, long *counts, long *p_lb, long *p_ub) { \
804 long stride, lb, ub, str; \
806 int gtid = __kmp_entry_gtid(); \
807 struct kmp_dim *dims = \
808 (struct kmp_dim *)__kmp_allocate(sizeof(struct kmp_dim) * ncounts); \
809 MKLOC(loc, KMP_STR(func)); \
810 for (unsigned i = 0; i < ncounts; ++i) { \
812 dims[i].up = counts[i] - 1; \
815 __kmpc_doacross_init(&loc, gtid, (int)ncounts, dims); \
821 (KMP_STR(func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz %d\n", \
822 gtid, lb, ub, str, chunk_sz)); \
824 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
825 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
826 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, TRUE); \
827 status = KMP_DISPATCH_NEXT(&loc, gtid, NULL, (kmp_int *)p_lb, \
828 (kmp_int *)p_ub, (kmp_int *)&stride); \
830 KMP_DEBUG_ASSERT(stride == str); \
831 *p_ub += (str > 0) ? 1 : -1; \
836 KMP_DOACROSS_FINI(status, gtid); \
841 func) " exit: T#%d, *p_lb 0x%lx, *p_ub 0x%lx, returning %d\n", \
842 gtid, *p_lb, *p_ub, status)); \
848 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_STATIC_START
),
851 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_DYNAMIC_START
),
852 kmp_sch_dynamic_chunked
)
854 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_GUIDED_START
),
855 kmp_sch_guided_chunked
)
856 LOOP_DOACROSS_RUNTIME_START(
857 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_RUNTIME_START
),
860 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_END
)(void) {
861 int gtid
= __kmp_get_gtid();
862 KA_TRACE(20, ("GOMP_loop_end: T#%d\n", gtid
))
864 #if OMPT_SUPPORT && OMPT_OPTIONAL
865 ompt_frame_t
*ompt_frame
;
866 if (ompt_enabled
.enabled
) {
867 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
868 ompt_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
869 OMPT_STORE_RETURN_ADDRESS(gtid
);
872 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
873 #if OMPT_SUPPORT && OMPT_OPTIONAL
874 if (ompt_enabled
.enabled
) {
875 ompt_frame
->enter_frame
= ompt_data_none
;
879 KA_TRACE(20, ("GOMP_loop_end exit: T#%d\n", gtid
))
882 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_END_NOWAIT
)(void) {
883 KA_TRACE(20, ("GOMP_loop_end_nowait: T#%d\n", __kmp_get_gtid()))
886 // Unsigned long long loop worksharing constructs
888 // These are new with gcc 4.4
890 #define LOOP_START_ULL(func, schedule) \
891 int func(int up, unsigned long long lb, unsigned long long ub, \
892 unsigned long long str, unsigned long long chunk_sz, \
893 unsigned long long *p_lb, unsigned long long *p_ub) { \
895 long long str2 = up ? ((long long)str) : -((long long)str); \
897 int gtid = __kmp_entry_gtid(); \
898 MKLOC(loc, KMP_STR(func)); \
900 KA_TRACE(20, (KMP_STR(func) ": T#%d, up %d, lb 0x%llx, ub 0x%llx, str " \
901 "0x%llx, chunk_sz 0x%llx\n", \
902 gtid, up, lb, ub, str, chunk_sz)); \
904 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
905 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
906 (str2 > 0) ? (ub - 1) : (ub + 1), str2, chunk_sz, \
907 (schedule) != kmp_sch_static); \
909 KMP_DISPATCH_NEXT_ULL(&loc, gtid, NULL, (kmp_uint64 *)p_lb, \
910 (kmp_uint64 *)p_ub, (kmp_int64 *)&stride); \
912 KMP_DEBUG_ASSERT(stride == str2); \
913 *p_ub += (str > 0) ? 1 : -1; \
922 func) " exit: T#%d, *p_lb 0x%llx, *p_ub 0x%llx, returning %d\n", \
923 gtid, *p_lb, *p_ub, status)); \
927 #define LOOP_RUNTIME_START_ULL(func, schedule) \
928 int func(int up, unsigned long long lb, unsigned long long ub, \
929 unsigned long long str, unsigned long long *p_lb, \
930 unsigned long long *p_ub) { \
932 long long str2 = up ? ((long long)str) : -((long long)str); \
933 unsigned long long stride; \
934 unsigned long long chunk_sz = 0; \
935 int gtid = __kmp_entry_gtid(); \
936 MKLOC(loc, KMP_STR(func)); \
938 KA_TRACE(20, (KMP_STR(func) ": T#%d, up %d, lb 0x%llx, ub 0x%llx, str " \
939 "0x%llx, chunk_sz 0x%llx\n", \
940 gtid, up, lb, ub, str, chunk_sz)); \
942 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
943 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
944 (str2 > 0) ? (ub - 1) : (ub + 1), str2, chunk_sz, \
947 KMP_DISPATCH_NEXT_ULL(&loc, gtid, NULL, (kmp_uint64 *)p_lb, \
948 (kmp_uint64 *)p_ub, (kmp_int64 *)&stride); \
950 KMP_DEBUG_ASSERT((long long)stride == str2); \
951 *p_ub += (str > 0) ? 1 : -1; \
960 func) " exit: T#%d, *p_lb 0x%llx, *p_ub 0x%llx, returning %d\n", \
961 gtid, *p_lb, *p_ub, status)); \
965 #define LOOP_NEXT_ULL(func, fini_code) \
966 int func(unsigned long long *p_lb, unsigned long long *p_ub) { \
969 int gtid = __kmp_get_gtid(); \
970 MKLOC(loc, KMP_STR(func)); \
971 KA_TRACE(20, (KMP_STR(func) ": T#%d\n", gtid)); \
974 KMP_DISPATCH_NEXT_ULL(&loc, gtid, NULL, (kmp_uint64 *)p_lb, \
975 (kmp_uint64 *)p_ub, (kmp_int64 *)&stride); \
977 *p_ub += (stride > 0) ? 1 : -1; \
983 func) " exit: T#%d, *p_lb 0x%llx, *p_ub 0x%llx, stride 0x%llx, " \
985 gtid, *p_lb, *p_ub, stride, status)); \
989 LOOP_START_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_STATIC_START
),
991 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_STATIC_NEXT
), {})
992 LOOP_START_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DYNAMIC_START
),
993 kmp_sch_dynamic_chunked
)
994 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DYNAMIC_NEXT
), {})
995 LOOP_START_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_GUIDED_START
),
996 kmp_sch_guided_chunked
)
997 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_GUIDED_NEXT
), {})
999 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_DYNAMIC_START
),
1000 kmp_sch_dynamic_chunked
)
1002 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_DYNAMIC_NEXT
), {})
1004 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_GUIDED_START
),
1005 kmp_sch_guided_chunked
)
1007 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_GUIDED_NEXT
), {})
1008 LOOP_RUNTIME_START_ULL(
1009 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_RUNTIME_START
), kmp_sch_runtime
)
1010 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_RUNTIME_NEXT
), {})
1011 LOOP_RUNTIME_START_ULL(
1013 KMP_API_NAME_GOMP_LOOP_ULL_MAYBE_NONMONOTONIC_RUNTIME_START
),
1015 LOOP_RUNTIME_START_ULL(
1016 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_RUNTIME_START
),
1019 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_MAYBE_NONMONOTONIC_RUNTIME_NEXT
),
1022 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_RUNTIME_NEXT
), {})
1024 LOOP_START_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_STATIC_START
),
1026 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT
),
1027 { KMP_DISPATCH_FINI_CHUNK_ULL(&loc
, gtid
); })
1029 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START
),
1030 kmp_ord_dynamic_chunked
)
1031 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT
),
1032 { KMP_DISPATCH_FINI_CHUNK_ULL(&loc
, gtid
); })
1033 LOOP_START_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_GUIDED_START
),
1034 kmp_ord_guided_chunked
)
1035 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT
),
1036 { KMP_DISPATCH_FINI_CHUNK_ULL(&loc
, gtid
); })
1037 LOOP_RUNTIME_START_ULL(
1038 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_RUNTIME_START
),
1040 LOOP_NEXT_ULL(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT
),
1041 { KMP_DISPATCH_FINI_CHUNK_ULL(&loc
, gtid
); })
1043 #define LOOP_DOACROSS_START_ULL(func, schedule) \
1044 int func(unsigned ncounts, unsigned long long *counts, \
1045 unsigned long long chunk_sz, unsigned long long *p_lb, \
1046 unsigned long long *p_ub) { \
1048 long long stride, str, lb, ub; \
1049 int gtid = __kmp_entry_gtid(); \
1050 struct kmp_dim *dims = \
1051 (struct kmp_dim *)__kmp_allocate(sizeof(struct kmp_dim) * ncounts); \
1052 MKLOC(loc, KMP_STR(func)); \
1053 for (unsigned i = 0; i < ncounts; ++i) { \
1055 dims[i].up = counts[i] - 1; \
1058 __kmpc_doacross_init(&loc, gtid, (int)ncounts, dims); \
1063 KA_TRACE(20, (KMP_STR(func) ": T#%d, lb 0x%llx, ub 0x%llx, str " \
1064 "0x%llx, chunk_sz 0x%llx\n", \
1065 gtid, lb, ub, str, chunk_sz)); \
1067 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
1068 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
1069 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
1070 (schedule) != kmp_sch_static); \
1072 KMP_DISPATCH_NEXT_ULL(&loc, gtid, NULL, (kmp_uint64 *)p_lb, \
1073 (kmp_uint64 *)p_ub, (kmp_int64 *)&stride); \
1075 KMP_DEBUG_ASSERT(stride == str); \
1076 *p_ub += (str > 0) ? 1 : -1; \
1081 KMP_DOACROSS_FINI(status, gtid); \
1086 func) " exit: T#%d, *p_lb 0x%llx, *p_ub 0x%llx, returning %d\n", \
1087 gtid, *p_lb, *p_ub, status)); \
1092 #define LOOP_DOACROSS_RUNTIME_START_ULL(func, schedule) \
1093 int func(unsigned ncounts, unsigned long long *counts, \
1094 unsigned long long *p_lb, unsigned long long *p_ub) { \
1096 unsigned long long stride, str, lb, ub; \
1097 unsigned long long chunk_sz = 0; \
1098 int gtid = __kmp_entry_gtid(); \
1099 struct kmp_dim *dims = \
1100 (struct kmp_dim *)__kmp_allocate(sizeof(struct kmp_dim) * ncounts); \
1101 MKLOC(loc, KMP_STR(func)); \
1102 for (unsigned i = 0; i < ncounts; ++i) { \
1104 dims[i].up = counts[i] - 1; \
1107 __kmpc_doacross_init(&loc, gtid, (int)ncounts, dims); \
1111 KA_TRACE(20, (KMP_STR(func) ": T#%d, lb 0x%llx, ub 0x%llx, str " \
1112 "0x%llx, chunk_sz 0x%llx\n", \
1113 gtid, lb, ub, str, chunk_sz)); \
1115 if ((str > 0) ? (lb < ub) : (lb > ub)) { \
1116 KMP_DISPATCH_INIT_ULL(&loc, gtid, (schedule), lb, \
1117 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
1120 KMP_DISPATCH_NEXT_ULL(&loc, gtid, NULL, (kmp_uint64 *)p_lb, \
1121 (kmp_uint64 *)p_ub, (kmp_int64 *)&stride); \
1123 KMP_DEBUG_ASSERT(stride == str); \
1124 *p_ub += (str > 0) ? 1 : -1; \
1129 KMP_DOACROSS_FINI(status, gtid); \
1134 func) " exit: T#%d, *p_lb 0x%llx, *p_ub 0x%llx, returning %d\n", \
1135 gtid, *p_lb, *p_ub, status)); \
1140 LOOP_DOACROSS_START_ULL(
1141 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_STATIC_START
),
1143 LOOP_DOACROSS_START_ULL(
1144 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_DYNAMIC_START
),
1145 kmp_sch_dynamic_chunked
)
1146 LOOP_DOACROSS_START_ULL(
1147 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_GUIDED_START
),
1148 kmp_sch_guided_chunked
)
1149 LOOP_DOACROSS_RUNTIME_START_ULL(
1150 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_RUNTIME_START
),
1153 // Combined parallel / loop worksharing constructs
1155 // There are no ull versions (yet).
1157 #define PARALLEL_LOOP_START(func, schedule, ompt_pre, ompt_post) \
1158 void func(void (*task)(void *), void *data, unsigned num_threads, long lb, \
1159 long ub, long str, long chunk_sz) { \
1160 int gtid = __kmp_entry_gtid(); \
1161 MKLOC(loc, KMP_STR(func)); \
1165 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
1166 gtid, lb, ub, str, chunk_sz)); \
1170 __kmp_GOMP_fork_call(&loc, gtid, num_threads, 0u, task, \
1171 (microtask_t)__kmp_GOMP_parallel_microtask_wrapper, \
1172 9, task, data, num_threads, &loc, (schedule), lb, \
1173 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz); \
1174 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid)); \
1176 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
1177 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
1178 (schedule) != kmp_sch_static); \
1182 KA_TRACE(20, (KMP_STR(func) " exit: T#%d\n", gtid)); \
1185 #if OMPT_SUPPORT && OMPT_OPTIONAL
1187 #define OMPT_LOOP_PRE() \
1188 ompt_frame_t *parent_frame; \
1189 if (ompt_enabled.enabled) { \
1190 __ompt_get_task_info_internal(0, NULL, NULL, &parent_frame, NULL, NULL); \
1191 parent_frame->enter_frame.ptr = OMPT_GET_FRAME_ADDRESS(0); \
1192 OMPT_STORE_RETURN_ADDRESS(gtid); \
1195 #define OMPT_LOOP_POST() \
1196 if (ompt_enabled.enabled) { \
1197 parent_frame->enter_frame = ompt_data_none; \
1202 #define OMPT_LOOP_PRE()
1204 #define OMPT_LOOP_POST()
1208 PARALLEL_LOOP_START(
1209 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_STATIC_START
),
1210 kmp_sch_static
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1211 PARALLEL_LOOP_START(
1212 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_DYNAMIC_START
),
1213 kmp_sch_dynamic_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1214 PARALLEL_LOOP_START(
1215 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_GUIDED_START
),
1216 kmp_sch_guided_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1217 PARALLEL_LOOP_START(
1218 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_RUNTIME_START
),
1219 kmp_sch_runtime
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1221 // Tasking constructs
1223 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASK
)(void (*func
)(void *), void *data
,
1224 void (*copy_func
)(void *, void *),
1225 long arg_size
, long arg_align
,
1226 bool if_cond
, unsigned gomp_flags
,
1228 MKLOC(loc
, "GOMP_task");
1229 int gtid
= __kmp_entry_gtid();
1230 kmp_int32 flags
= 0;
1231 kmp_tasking_flags_t
*input_flags
= (kmp_tasking_flags_t
*)&flags
;
1233 KA_TRACE(20, ("GOMP_task: T#%d\n", gtid
));
1235 // The low-order bit is the "untied" flag
1236 if (!(gomp_flags
& KMP_GOMP_TASK_UNTIED_FLAG
)) {
1237 input_flags
->tiedness
= TASK_TIED
;
1239 // The second low-order bit is the "final" flag
1240 if (gomp_flags
& KMP_GOMP_TASK_FINAL_FLAG
) {
1241 input_flags
->final
= 1;
1243 input_flags
->native
= 1;
1244 // __kmp_task_alloc() sets up all other flags
1250 kmp_task_t
*task
= __kmp_task_alloc(
1251 &loc
, gtid
, input_flags
, sizeof(kmp_task_t
),
1252 arg_size
? arg_size
+ arg_align
- 1 : 0, (kmp_routine_entry_t
)func
);
1255 if (arg_align
> 0) {
1256 task
->shareds
= (void *)((((size_t)task
->shareds
) + arg_align
- 1) /
1257 arg_align
* arg_align
);
1262 (*copy_func
)(task
->shareds
, data
);
1264 KMP_MEMCPY(task
->shareds
, data
, arg_size
);
1269 kmp_taskdata_t
*current_task
;
1270 if (ompt_enabled
.enabled
) {
1271 current_task
= __kmp_threads
[gtid
]->th
.th_current_task
;
1272 current_task
->ompt_task_info
.frame
.enter_frame
.ptr
=
1273 OMPT_GET_FRAME_ADDRESS(0);
1275 OMPT_STORE_RETURN_ADDRESS(gtid
);
1279 if (gomp_flags
& KMP_GOMP_TASK_DEPENDS_FLAG
) {
1281 kmp_gomp_depends_info_t
gomp_depends(depend
);
1282 kmp_int32 ndeps
= gomp_depends
.get_num_deps();
1283 kmp_depend_info_t dep_list
[ndeps
];
1284 for (kmp_int32 i
= 0; i
< ndeps
; i
++)
1285 dep_list
[i
] = gomp_depends
.get_kmp_depend(i
);
1286 kmp_int32 ndeps_cnv
;
1287 __kmp_type_convert(ndeps
, &ndeps_cnv
);
1288 __kmpc_omp_task_with_deps(&loc
, gtid
, task
, ndeps_cnv
, dep_list
, 0, NULL
);
1290 __kmpc_omp_task(&loc
, gtid
, task
);
1294 ompt_thread_info_t oldInfo
;
1296 kmp_taskdata_t
*taskdata
;
1297 if (ompt_enabled
.enabled
) {
1298 // Store the threads states and restore them after the task
1299 thread
= __kmp_threads
[gtid
];
1300 taskdata
= KMP_TASK_TO_TASKDATA(task
);
1301 oldInfo
= thread
->th
.ompt_thread_info
;
1302 thread
->th
.ompt_thread_info
.wait_id
= 0;
1303 thread
->th
.ompt_thread_info
.state
= ompt_state_work_parallel
;
1304 taskdata
->ompt_task_info
.frame
.exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1306 OMPT_STORE_RETURN_ADDRESS(gtid
);
1308 if (gomp_flags
& KMP_GOMP_TASK_DEPENDS_FLAG
) {
1310 kmp_gomp_depends_info_t
gomp_depends(depend
);
1311 kmp_int32 ndeps
= gomp_depends
.get_num_deps();
1312 kmp_depend_info_t dep_list
[ndeps
];
1313 for (kmp_int32 i
= 0; i
< ndeps
; i
++)
1314 dep_list
[i
] = gomp_depends
.get_kmp_depend(i
);
1315 __kmpc_omp_wait_deps(&loc
, gtid
, ndeps
, dep_list
, 0, NULL
);
1318 __kmpc_omp_task_begin_if0(&loc
, gtid
, task
);
1320 __kmpc_omp_task_complete_if0(&loc
, gtid
, task
);
1323 if (ompt_enabled
.enabled
) {
1324 thread
->th
.ompt_thread_info
= oldInfo
;
1325 taskdata
->ompt_task_info
.frame
.exit_frame
= ompt_data_none
;
1330 if (ompt_enabled
.enabled
) {
1331 current_task
->ompt_task_info
.frame
.enter_frame
= ompt_data_none
;
1335 KA_TRACE(20, ("GOMP_task exit: T#%d\n", gtid
));
1338 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKWAIT
)(void) {
1339 MKLOC(loc
, "GOMP_taskwait");
1340 int gtid
= __kmp_entry_gtid();
1343 OMPT_STORE_RETURN_ADDRESS(gtid
);
1346 KA_TRACE(20, ("GOMP_taskwait: T#%d\n", gtid
));
1348 __kmpc_omp_taskwait(&loc
, gtid
);
1350 KA_TRACE(20, ("GOMP_taskwait exit: T#%d\n", gtid
));
1353 // Sections worksharing constructs
1355 // For the sections construct, we initialize a dynamically scheduled loop
1356 // worksharing construct with lb 1 and stride 1, and use the iteration #'s
1357 // that its returns as sections ids.
1359 // There are no special entry points for ordered sections, so we always use
1360 // the dynamically scheduled workshare, even if the sections aren't ordered.
1362 unsigned KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_START
)(unsigned count
) {
1364 kmp_int lb
, ub
, stride
;
1365 int gtid
= __kmp_entry_gtid();
1366 MKLOC(loc
, "GOMP_sections_start");
1367 KA_TRACE(20, ("GOMP_sections_start: T#%d\n", gtid
));
1369 KMP_DISPATCH_INIT(&loc
, gtid
, kmp_nm_dynamic_chunked
, 1, count
, 1, 1, TRUE
);
1371 status
= KMP_DISPATCH_NEXT(&loc
, gtid
, NULL
, &lb
, &ub
, &stride
);
1373 KMP_DEBUG_ASSERT(stride
== 1);
1374 KMP_DEBUG_ASSERT(lb
> 0);
1375 KMP_ASSERT(lb
== ub
);
1380 KA_TRACE(20, ("GOMP_sections_start exit: T#%d returning %u\n", gtid
,
1382 return (unsigned)lb
;
1385 unsigned KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_NEXT
)(void) {
1387 kmp_int lb
, ub
, stride
;
1388 int gtid
= __kmp_get_gtid();
1389 MKLOC(loc
, "GOMP_sections_next");
1390 KA_TRACE(20, ("GOMP_sections_next: T#%d\n", gtid
));
1393 OMPT_STORE_RETURN_ADDRESS(gtid
);
1396 status
= KMP_DISPATCH_NEXT(&loc
, gtid
, NULL
, &lb
, &ub
, &stride
);
1398 KMP_DEBUG_ASSERT(stride
== 1);
1399 KMP_DEBUG_ASSERT(lb
> 0);
1400 KMP_ASSERT(lb
== ub
);
1406 20, ("GOMP_sections_next exit: T#%d returning %u\n", gtid
, (unsigned)lb
));
1407 return (unsigned)lb
;
1410 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_SECTIONS_START
)(
1411 void (*task
)(void *), void *data
, unsigned num_threads
, unsigned count
) {
1412 int gtid
= __kmp_entry_gtid();
1415 ompt_frame_t
*parent_frame
;
1417 if (ompt_enabled
.enabled
) {
1418 __ompt_get_task_info_internal(0, NULL
, NULL
, &parent_frame
, NULL
, NULL
);
1419 parent_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1421 OMPT_STORE_RETURN_ADDRESS(gtid
);
1424 MKLOC(loc
, "GOMP_parallel_sections_start");
1425 KA_TRACE(20, ("GOMP_parallel_sections_start: T#%d\n", gtid
));
1427 __kmp_GOMP_fork_call(&loc
, gtid
, num_threads
, 0u, task
,
1428 (microtask_t
)__kmp_GOMP_parallel_microtask_wrapper
, 9,
1429 task
, data
, num_threads
, &loc
, kmp_nm_dynamic_chunked
,
1430 (kmp_int
)1, (kmp_int
)count
, (kmp_int
)1, (kmp_int
)1);
1433 if (ompt_enabled
.enabled
) {
1434 parent_frame
->enter_frame
= ompt_data_none
;
1438 KMP_DISPATCH_INIT(&loc
, gtid
, kmp_nm_dynamic_chunked
, 1, count
, 1, 1, TRUE
);
1440 KA_TRACE(20, ("GOMP_parallel_sections_start exit: T#%d\n", gtid
));
1443 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_END
)(void) {
1444 int gtid
= __kmp_get_gtid();
1445 KA_TRACE(20, ("GOMP_sections_end: T#%d\n", gtid
))
1448 ompt_frame_t
*ompt_frame
;
1449 if (ompt_enabled
.enabled
) {
1450 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
1451 ompt_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1453 OMPT_STORE_RETURN_ADDRESS(gtid
);
1455 __kmp_barrier(bs_plain_barrier
, gtid
, FALSE
, 0, NULL
, NULL
);
1457 if (ompt_enabled
.enabled
) {
1458 ompt_frame
->enter_frame
= ompt_data_none
;
1462 KA_TRACE(20, ("GOMP_sections_end exit: T#%d\n", gtid
))
1465 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_END_NOWAIT
)(void) {
1466 KA_TRACE(20, ("GOMP_sections_end_nowait: T#%d\n", __kmp_get_gtid()))
1469 // libgomp has an empty function for GOMP_taskyield as of 2013-10-10
1470 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKYIELD
)(void) {
1471 KA_TRACE(20, ("GOMP_taskyield: T#%d\n", __kmp_get_gtid()))
1475 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL
)(void (*task
)(void *),
1477 unsigned num_threads
,
1478 unsigned int flags
) {
1479 int gtid
= __kmp_entry_gtid();
1480 MKLOC(loc
, "GOMP_parallel");
1481 KA_TRACE(20, ("GOMP_parallel: T#%d\n", gtid
));
1484 ompt_task_info_t
*parent_task_info
, *task_info
;
1485 if (ompt_enabled
.enabled
) {
1486 parent_task_info
= __ompt_get_task_info_object(0);
1487 parent_task_info
->frame
.enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1489 OMPT_STORE_RETURN_ADDRESS(gtid
);
1491 __kmp_GOMP_fork_call(&loc
, gtid
, num_threads
, flags
, task
,
1492 (microtask_t
)__kmp_GOMP_microtask_wrapper
, 2, task
,
1495 if (ompt_enabled
.enabled
) {
1496 task_info
= __ompt_get_task_info_object(0);
1497 task_info
->frame
.exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1503 OMPT_STORE_RETURN_ADDRESS(gtid
);
1505 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_END
)();
1508 if (ompt_enabled
.enabled
) {
1509 task_info
->frame
.exit_frame
= ompt_data_none
;
1510 parent_task_info
->frame
.enter_frame
= ompt_data_none
;
1515 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_SECTIONS
)(void (*task
)(void *),
1517 unsigned num_threads
,
1520 int gtid
= __kmp_entry_gtid();
1521 MKLOC(loc
, "GOMP_parallel_sections");
1522 KA_TRACE(20, ("GOMP_parallel_sections: T#%d\n", gtid
));
1525 ompt_frame_t
*task_frame
;
1527 if (ompt_enabled
.enabled
) {
1528 thr
= __kmp_threads
[gtid
];
1529 task_frame
= &(thr
->th
.th_current_task
->ompt_task_info
.frame
);
1530 task_frame
->enter_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1532 OMPT_STORE_RETURN_ADDRESS(gtid
);
1535 __kmp_GOMP_fork_call(&loc
, gtid
, num_threads
, flags
, task
,
1536 (microtask_t
)__kmp_GOMP_parallel_microtask_wrapper
, 9,
1537 task
, data
, num_threads
, &loc
, kmp_nm_dynamic_chunked
,
1538 (kmp_int
)1, (kmp_int
)count
, (kmp_int
)1, (kmp_int
)1);
1542 OMPT_STORE_RETURN_ADDRESS(gtid
);
1545 KMP_DISPATCH_INIT(&loc
, gtid
, kmp_nm_dynamic_chunked
, 1, count
, 1, 1, TRUE
);
1549 ompt_frame_t
*child_frame
;
1550 if (ompt_enabled
.enabled
) {
1551 child_frame
= &(thr
->th
.th_current_task
->ompt_task_info
.frame
);
1552 child_frame
->exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
1559 if (ompt_enabled
.enabled
) {
1560 child_frame
->exit_frame
= ompt_data_none
;
1564 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_END
)();
1565 KA_TRACE(20, ("GOMP_parallel_sections exit: T#%d\n", gtid
));
1568 if (ompt_enabled
.enabled
) {
1569 task_frame
->enter_frame
= ompt_data_none
;
1574 #define PARALLEL_LOOP(func, schedule, ompt_pre, ompt_post) \
1575 void func(void (*task)(void *), void *data, unsigned num_threads, long lb, \
1576 long ub, long str, long chunk_sz, unsigned flags) { \
1577 int gtid = __kmp_entry_gtid(); \
1578 MKLOC(loc, KMP_STR(func)); \
1582 func) ": T#%d, lb 0x%lx, ub 0x%lx, str 0x%lx, chunk_sz 0x%lx\n", \
1583 gtid, lb, ub, str, chunk_sz)); \
1586 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
1587 __kmp_GOMP_fork_call(&loc, gtid, num_threads, flags, task, \
1588 (microtask_t)__kmp_GOMP_parallel_microtask_wrapper, \
1589 9, task, data, num_threads, &loc, (schedule), lb, \
1590 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz); \
1593 IF_OMPT_SUPPORT(OMPT_STORE_RETURN_ADDRESS(gtid);) \
1594 KMP_DISPATCH_INIT(&loc, gtid, (schedule), lb, \
1595 (str > 0) ? (ub - 1) : (ub + 1), str, chunk_sz, \
1596 (schedule) != kmp_sch_static); \
1599 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_END)(); \
1602 KA_TRACE(20, (KMP_STR(func) " exit: T#%d\n", gtid)); \
1605 PARALLEL_LOOP(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_STATIC
),
1606 kmp_sch_static
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1607 PARALLEL_LOOP(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_DYNAMIC
),
1608 kmp_sch_dynamic_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1610 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_GUIDED
),
1611 kmp_sch_guided_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1613 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_DYNAMIC
),
1614 kmp_sch_dynamic_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1615 PARALLEL_LOOP(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_GUIDED
),
1616 kmp_sch_guided_chunked
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1617 PARALLEL_LOOP(KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_RUNTIME
),
1618 kmp_sch_runtime
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1620 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_MAYBE_NONMONOTONIC_RUNTIME
),
1621 kmp_sch_runtime
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1623 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_RUNTIME
),
1624 kmp_sch_runtime
, OMPT_LOOP_PRE
, OMPT_LOOP_POST
)
1626 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_START
)(void) {
1627 int gtid
= __kmp_entry_gtid();
1628 MKLOC(loc
, "GOMP_taskgroup_start");
1629 KA_TRACE(20, ("GOMP_taskgroup_start: T#%d\n", gtid
));
1632 OMPT_STORE_RETURN_ADDRESS(gtid
);
1635 __kmpc_taskgroup(&loc
, gtid
);
1640 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_END
)(void) {
1641 int gtid
= __kmp_get_gtid();
1642 MKLOC(loc
, "GOMP_taskgroup_end");
1643 KA_TRACE(20, ("GOMP_taskgroup_end: T#%d\n", gtid
));
1646 OMPT_STORE_RETURN_ADDRESS(gtid
);
1649 __kmpc_end_taskgroup(&loc
, gtid
);
1654 static kmp_int32
__kmp_gomp_to_omp_cancellation_kind(int gomp_kind
) {
1655 kmp_int32 cncl_kind
= 0;
1656 switch (gomp_kind
) {
1658 cncl_kind
= cancel_parallel
;
1661 cncl_kind
= cancel_loop
;
1664 cncl_kind
= cancel_sections
;
1667 cncl_kind
= cancel_taskgroup
;
1673 // Return true if cancellation should take place, false otherwise
1674 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CANCELLATION_POINT
)(int which
) {
1675 int gtid
= __kmp_get_gtid();
1676 MKLOC(loc
, "GOMP_cancellation_point");
1677 KA_TRACE(20, ("GOMP_cancellation_point: T#%d which:%d\n", gtid
, which
));
1678 kmp_int32 cncl_kind
= __kmp_gomp_to_omp_cancellation_kind(which
);
1679 return __kmpc_cancellationpoint(&loc
, gtid
, cncl_kind
);
1682 // Return true if cancellation should take place, false otherwise
1683 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_CANCEL
)(int which
, bool do_cancel
) {
1684 int gtid
= __kmp_get_gtid();
1685 MKLOC(loc
, "GOMP_cancel");
1686 KA_TRACE(20, ("GOMP_cancel: T#%d which:%d do_cancel:%d\n", gtid
, which
,
1688 kmp_int32 cncl_kind
= __kmp_gomp_to_omp_cancellation_kind(which
);
1690 if (do_cancel
== FALSE
) {
1691 return __kmpc_cancellationpoint(&loc
, gtid
, cncl_kind
);
1693 return __kmpc_cancel(&loc
, gtid
, cncl_kind
);
1697 // Return true if cancellation should take place, false otherwise
1698 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_BARRIER_CANCEL
)(void) {
1699 int gtid
= __kmp_get_gtid();
1700 KA_TRACE(20, ("GOMP_barrier_cancel: T#%d\n", gtid
));
1701 return __kmp_barrier_gomp_cancel(gtid
);
1704 // Return true if cancellation should take place, false otherwise
1705 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_END_CANCEL
)(void) {
1706 int gtid
= __kmp_get_gtid();
1707 KA_TRACE(20, ("GOMP_sections_end_cancel: T#%d\n", gtid
));
1708 return __kmp_barrier_gomp_cancel(gtid
);
1711 // Return true if cancellation should take place, false otherwise
1712 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_END_CANCEL
)(void) {
1713 int gtid
= __kmp_get_gtid();
1714 KA_TRACE(20, ("GOMP_loop_end_cancel: T#%d\n", gtid
));
1715 return __kmp_barrier_gomp_cancel(gtid
);
1718 // All target functions are empty as of 2014-05-29
1719 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TARGET
)(int device
, void (*fn
)(void *),
1720 const void *openmp_target
,
1721 size_t mapnum
, void **hostaddrs
,
1723 unsigned char *kinds
) {
1727 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TARGET_DATA
)(
1728 int device
, const void *openmp_target
, size_t mapnum
, void **hostaddrs
,
1729 size_t *sizes
, unsigned char *kinds
) {
1733 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TARGET_END_DATA
)(void) { return; }
1735 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TARGET_UPDATE
)(
1736 int device
, const void *openmp_target
, size_t mapnum
, void **hostaddrs
,
1737 size_t *sizes
, unsigned char *kinds
) {
1741 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TEAMS
)(unsigned int num_teams
,
1742 unsigned int thread_limit
) {
1746 // Task duplication function which copies src to dest (both are
1747 // preallocated task structures)
1748 static void __kmp_gomp_task_dup(kmp_task_t
*dest
, kmp_task_t
*src
,
1749 kmp_int32 last_private
) {
1750 kmp_taskdata_t
*taskdata
= KMP_TASK_TO_TASKDATA(src
);
1751 if (taskdata
->td_copy_func
) {
1752 (taskdata
->td_copy_func
)(dest
->shareds
, src
->shareds
);
1756 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_REGISTER
)(
1763 template <typename T
>
1764 void __GOMP_taskloop(void (*func
)(void *), void *data
,
1765 void (*copy_func
)(void *, void *), long arg_size
,
1766 long arg_align
, unsigned gomp_flags
,
1767 unsigned long num_tasks
, int priority
, T start
, T end
,
1769 typedef void (*p_task_dup_t
)(kmp_task_t
*, kmp_task_t
*, kmp_int32
);
1770 MKLOC(loc
, "GOMP_taskloop");
1773 int gtid
= __kmp_entry_gtid();
1774 kmp_int32 flags
= 0;
1775 int if_val
= gomp_flags
& (1u << 10);
1776 int nogroup
= gomp_flags
& (1u << 11);
1777 int up
= gomp_flags
& (1u << 8);
1778 int reductions
= gomp_flags
& (1u << 12);
1779 p_task_dup_t task_dup
= NULL
;
1780 kmp_tasking_flags_t
*input_flags
= (kmp_tasking_flags_t
*)&flags
;
1784 buff
= __kmp_str_format(
1785 "GOMP_taskloop: T#%%d: func:%%p data:%%p copy_func:%%p "
1786 "arg_size:%%ld arg_align:%%ld gomp_flags:0x%%x num_tasks:%%lu "
1787 "priority:%%d start:%%%s end:%%%s step:%%%s\n",
1788 traits_t
<T
>::spec
, traits_t
<T
>::spec
, traits_t
<T
>::spec
);
1789 KA_TRACE(20, (buff
, gtid
, func
, data
, copy_func
, arg_size
, arg_align
,
1790 gomp_flags
, num_tasks
, priority
, start
, end
, step
));
1791 __kmp_str_free(&buff
);
1794 KMP_ASSERT((size_t)arg_size
>= 2 * sizeof(T
));
1795 KMP_ASSERT(arg_align
> 0);
1796 // The low-order bit is the "untied" flag
1797 if (!(gomp_flags
& 1)) {
1798 input_flags
->tiedness
= TASK_TIED
;
1800 // The second low-order bit is the "final" flag
1801 if (gomp_flags
& 2) {
1802 input_flags
->final
= 1;
1804 // Negative step flag
1806 // If step is flagged as negative, but isn't properly sign extended
1807 // Then manually sign extend it. Could be a short, int, char embedded
1808 // in a long. So cannot assume any cast.
1810 for (int i
= sizeof(T
) * CHAR_BIT
- 1; i
>= 0L; --i
) {
1811 // break at the first 1 bit
1812 if (step
& ((T
)1 << i
))
1814 step
|= ((T
)1 << i
);
1818 input_flags
->native
= 1;
1819 // Figure out if none/grainsize/num_tasks clause specified
1820 if (num_tasks
> 0) {
1821 if (gomp_flags
& (1u << 9))
1822 sched
= 1; // grainsize specified
1824 sched
= 2; // num_tasks specified
1825 // neither grainsize nor num_tasks specified
1830 // __kmp_task_alloc() sets up all other flags
1832 __kmp_task_alloc(&loc
, gtid
, input_flags
, sizeof(kmp_task_t
),
1833 arg_size
+ arg_align
- 1, (kmp_routine_entry_t
)func
);
1834 kmp_taskdata_t
*taskdata
= KMP_TASK_TO_TASKDATA(task
);
1835 taskdata
->td_copy_func
= copy_func
;
1836 taskdata
->td_size_loop_bounds
= sizeof(T
);
1838 // re-align shareds if needed and setup firstprivate copy constructors
1839 // through the task_dup mechanism
1840 task
->shareds
= (void *)((((size_t)task
->shareds
) + arg_align
- 1) /
1841 arg_align
* arg_align
);
1843 task_dup
= __kmp_gomp_task_dup
;
1845 KMP_MEMCPY(task
->shareds
, data
, arg_size
);
1847 loop_bounds
= (T
*)task
->shareds
;
1848 loop_bounds
[0] = start
;
1849 loop_bounds
[1] = end
+ (up
? -1 : 1);
1852 #if OMPT_SUPPORT && OMPT_OPTIONAL
1853 OMPT_STORE_RETURN_ADDRESS(gtid
);
1855 __kmpc_taskgroup(&loc
, gtid
);
1857 // The data pointer points to lb, ub, then reduction data
1862 uintptr_t *d
= ((data_t
*)data
)->d
;
1863 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_REGISTER
)(d
);
1866 __kmpc_taskloop(&loc
, gtid
, task
, if_val
, (kmp_uint64
*)&(loop_bounds
[0]),
1867 (kmp_uint64
*)&(loop_bounds
[1]), (kmp_int64
)step
, 1, sched
,
1868 (kmp_uint64
)num_tasks
, (void *)task_dup
);
1870 #if OMPT_SUPPORT && OMPT_OPTIONAL
1871 OMPT_STORE_RETURN_ADDRESS(gtid
);
1873 __kmpc_end_taskgroup(&loc
, gtid
);
1877 // 4 byte version of GOMP_doacross_post
1878 // This verison needs to create a temporary array which converts 4 byte
1879 // integers into 8 byte integers
1880 template <typename T
, bool need_conversion
= (sizeof(long) == 4)>
1881 void __kmp_GOMP_doacross_post(T
*count
);
1883 template <> void __kmp_GOMP_doacross_post
<long, true>(long *count
) {
1884 int gtid
= __kmp_entry_gtid();
1885 kmp_info_t
*th
= __kmp_threads
[gtid
];
1886 MKLOC(loc
, "GOMP_doacross_post");
1887 kmp_int64 num_dims
= th
->th
.th_dispatch
->th_doacross_info
[0];
1888 kmp_int64
*vec
= (kmp_int64
*)__kmp_thread_malloc(
1889 th
, (size_t)(sizeof(kmp_int64
) * num_dims
));
1890 for (kmp_int64 i
= 0; i
< num_dims
; ++i
) {
1891 vec
[i
] = (kmp_int64
)count
[i
];
1893 __kmpc_doacross_post(&loc
, gtid
, vec
);
1894 __kmp_thread_free(th
, vec
);
1897 // 8 byte versions of GOMP_doacross_post
1898 // This version can just pass in the count array directly instead of creating
1899 // a temporary array
1900 template <> void __kmp_GOMP_doacross_post
<long, false>(long *count
) {
1901 int gtid
= __kmp_entry_gtid();
1902 MKLOC(loc
, "GOMP_doacross_post");
1903 __kmpc_doacross_post(&loc
, gtid
, RCAST(kmp_int64
*, count
));
1906 template <typename T
> void __kmp_GOMP_doacross_wait(T first
, va_list args
) {
1907 int gtid
= __kmp_entry_gtid();
1908 kmp_info_t
*th
= __kmp_threads
[gtid
];
1909 MKLOC(loc
, "GOMP_doacross_wait");
1910 kmp_int64 num_dims
= th
->th
.th_dispatch
->th_doacross_info
[0];
1911 kmp_int64
*vec
= (kmp_int64
*)__kmp_thread_malloc(
1912 th
, (size_t)(sizeof(kmp_int64
) * num_dims
));
1913 vec
[0] = (kmp_int64
)first
;
1914 for (kmp_int64 i
= 1; i
< num_dims
; ++i
) {
1915 T item
= va_arg(args
, T
);
1916 vec
[i
] = (kmp_int64
)item
;
1918 __kmpc_doacross_wait(&loc
, gtid
, vec
);
1919 __kmp_thread_free(th
, vec
);
1925 #endif // __cplusplus
1927 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKLOOP
)(
1928 void (*func
)(void *), void *data
, void (*copy_func
)(void *, void *),
1929 long arg_size
, long arg_align
, unsigned gomp_flags
, unsigned long num_tasks
,
1930 int priority
, long start
, long end
, long step
) {
1931 __GOMP_taskloop
<long>(func
, data
, copy_func
, arg_size
, arg_align
, gomp_flags
,
1932 num_tasks
, priority
, start
, end
, step
);
1935 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKLOOP_ULL
)(
1936 void (*func
)(void *), void *data
, void (*copy_func
)(void *, void *),
1937 long arg_size
, long arg_align
, unsigned gomp_flags
, unsigned long num_tasks
,
1938 int priority
, unsigned long long start
, unsigned long long end
,
1939 unsigned long long step
) {
1940 __GOMP_taskloop
<unsigned long long>(func
, data
, copy_func
, arg_size
,
1941 arg_align
, gomp_flags
, num_tasks
,
1942 priority
, start
, end
, step
);
1945 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_DOACROSS_POST
)(long *count
) {
1946 __kmp_GOMP_doacross_post(count
);
1949 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_DOACROSS_WAIT
)(long first
, ...) {
1951 va_start(args
, first
);
1952 __kmp_GOMP_doacross_wait
<long>(first
, args
);
1956 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_DOACROSS_ULL_POST
)(
1957 unsigned long long *count
) {
1958 int gtid
= __kmp_entry_gtid();
1959 MKLOC(loc
, "GOMP_doacross_ull_post");
1960 __kmpc_doacross_post(&loc
, gtid
, RCAST(kmp_int64
*, count
));
1963 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_DOACROSS_ULL_WAIT
)(
1964 unsigned long long first
, ...) {
1966 va_start(args
, first
);
1967 __kmp_GOMP_doacross_wait
<unsigned long long>(first
, args
);
1971 // fn: the function each primary thread of new team will call
1972 // data: argument to fn
1973 // num_teams, thread_limit: max bounds on respective ICV
1975 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TEAMS_REG
)(void (*fn
)(void *),
1978 unsigned thread_limit
,
1980 MKLOC(loc
, "GOMP_teams_reg");
1981 int gtid
= __kmp_entry_gtid();
1982 KA_TRACE(20, ("GOMP_teams_reg: T#%d num_teams=%u thread_limit=%u flag=%u\n",
1983 gtid
, num_teams
, thread_limit
, flags
));
1984 __kmpc_push_num_teams(&loc
, gtid
, num_teams
, thread_limit
);
1985 __kmpc_fork_teams(&loc
, 2, (microtask_t
)__kmp_GOMP_microtask_wrapper
, fn
,
1987 KA_TRACE(20, ("GOMP_teams_reg exit: T#%d\n", gtid
));
1990 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKWAIT_DEPEND
)(void **depend
) {
1991 MKLOC(loc
, "GOMP_taskwait_depend");
1992 int gtid
= __kmp_entry_gtid();
1993 KA_TRACE(20, ("GOMP_taskwait_depend: T#%d\n", gtid
));
1994 kmp_gomp_depends_info_t
gomp_depends(depend
);
1995 kmp_int32 ndeps
= gomp_depends
.get_num_deps();
1996 kmp_depend_info_t dep_list
[ndeps
];
1997 for (kmp_int32 i
= 0; i
< ndeps
; i
++)
1998 dep_list
[i
] = gomp_depends
.get_kmp_depend(i
);
2000 OMPT_STORE_RETURN_ADDRESS(gtid
);
2002 __kmpc_omp_wait_deps(&loc
, gtid
, ndeps
, dep_list
, 0, NULL
);
2003 KA_TRACE(20, ("GOMP_taskwait_depend exit: T#%d\n", gtid
));
2007 __kmp_GOMP_taskgroup_reduction_register(uintptr_t *data
, kmp_taskgroup_t
*tg
,
2009 uintptr_t *allocated
= nullptr) {
2011 KMP_ASSERT(nthreads
> 0);
2012 // Have private copy pointers point to previously allocated
2013 // reduction data or allocate new data here
2015 data
[2] = allocated
[2];
2016 data
[6] = allocated
[6];
2018 data
[2] = (uintptr_t)__kmp_allocate(nthreads
* data
[1]);
2019 data
[6] = data
[2] + (nthreads
* data
[1]);
2022 tg
->gomp_data
= data
;
2025 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_REGISTER
)(
2027 int gtid
= __kmp_entry_gtid();
2028 KA_TRACE(20, ("GOMP_taskgroup_reduction_register: T#%d\n", gtid
));
2029 kmp_info_t
*thread
= __kmp_threads
[gtid
];
2030 kmp_taskgroup_t
*tg
= thread
->th
.th_current_task
->td_taskgroup
;
2031 int nthreads
= thread
->th
.th_team_nproc
;
2032 __kmp_GOMP_taskgroup_reduction_register(data
, tg
, nthreads
);
2035 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_UNREGISTER
)(
2038 ("GOMP_taskgroup_reduction_unregister: T#%d\n", __kmp_get_gtid()));
2039 KMP_ASSERT(data
&& data
[2]);
2040 __kmp_free((void *)data
[2]);
2043 // Search through reduction data and set ptrs[] elements
2044 // to proper privatized copy address
2045 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASK_REDUCTION_REMAP
)(size_t cnt
,
2048 int gtid
= __kmp_entry_gtid();
2049 KA_TRACE(20, ("GOMP_task_reduction_remap: T#%d\n", gtid
));
2050 kmp_info_t
*thread
= __kmp_threads
[gtid
];
2051 kmp_int32 tid
= __kmp_get_tid();
2052 for (size_t i
= 0; i
< cnt
; ++i
) {
2053 uintptr_t address
= (uintptr_t)ptrs
[i
];
2054 void *propagated_address
= NULL
;
2055 void *mapped_address
= NULL
;
2056 // Check taskgroups reduce data
2057 kmp_taskgroup_t
*tg
= thread
->th
.th_current_task
->td_taskgroup
;
2059 uintptr_t *gomp_data
= tg
->gomp_data
;
2064 // Check the shared addresses list
2065 size_t num_vars
= (size_t)gomp_data
[0];
2066 uintptr_t per_thread_size
= gomp_data
[1];
2067 uintptr_t reduce_data
= gomp_data
[2];
2068 uintptr_t end_reduce_data
= gomp_data
[6];
2069 for (size_t j
= 0; j
< num_vars
; ++j
) {
2070 uintptr_t *entry
= gomp_data
+ 7 + 3 * j
;
2071 if (entry
[0] == address
) {
2072 uintptr_t offset
= entry
[1];
2074 (void *)(reduce_data
+ tid
* per_thread_size
+ offset
);
2076 propagated_address
= (void *)entry
[0];
2082 // Check if address is within privatized copies range
2083 if (!mapped_address
&& address
>= reduce_data
&&
2084 address
< end_reduce_data
) {
2085 uintptr_t offset
= (address
- reduce_data
) % per_thread_size
;
2086 mapped_address
= (void *)(reduce_data
+ tid
* per_thread_size
+ offset
);
2088 for (size_t j
= 0; j
< num_vars
; ++j
) {
2089 uintptr_t *entry
= gomp_data
+ 7 + 3 * j
;
2090 if (entry
[1] == offset
) {
2091 propagated_address
= (void *)entry
[0];
2101 KMP_ASSERT(mapped_address
);
2102 ptrs
[i
] = mapped_address
;
2104 KMP_ASSERT(propagated_address
);
2105 ptrs
[cnt
+ i
] = propagated_address
;
2110 static void __kmp_GOMP_init_reductions(int gtid
, uintptr_t *data
, int is_ws
) {
2111 kmp_info_t
*thr
= __kmp_threads
[gtid
];
2112 kmp_team_t
*team
= thr
->th
.th_team
;
2113 // First start a taskgroup
2114 __kmpc_taskgroup(NULL
, gtid
);
2115 // Then setup reduction data
2116 void *reduce_data
= KMP_ATOMIC_LD_RLX(&team
->t
.t_tg_reduce_data
[is_ws
]);
2117 if (reduce_data
== NULL
&&
2118 __kmp_atomic_compare_store(&team
->t
.t_tg_reduce_data
[is_ws
], reduce_data
,
2120 // Single thread enters this block to initialize common reduction data
2121 KMP_DEBUG_ASSERT(reduce_data
== NULL
);
2122 __kmp_GOMP_taskgroup_reduction_register(data
, NULL
, thr
->th
.th_team_nproc
);
2123 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_fini_counter
[is_ws
], 0);
2124 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_reduce_data
[is_ws
], (void *)data
);
2126 // Wait for task reduction initialization
2127 while ((reduce_data
= KMP_ATOMIC_LD_ACQ(
2128 &team
->t
.t_tg_reduce_data
[is_ws
])) == (void *)1) {
2131 KMP_DEBUG_ASSERT(reduce_data
> (void *)1); // should be valid pointer here
2133 // For worksharing constructs, each thread has its own reduction structure.
2134 // Have each reduction structure point to same privatized copies of vars.
2135 // For parallel, each thread points to same reduction structure and privatized
2138 __kmp_GOMP_taskgroup_reduction_register(
2139 data
, NULL
, thr
->th
.th_team_nproc
,
2140 (uintptr_t *)KMP_ATOMIC_LD_ACQ(&team
->t
.t_tg_reduce_data
[is_ws
]));
2142 kmp_taskgroup_t
*tg
= thr
->th
.th_current_task
->td_taskgroup
;
2143 tg
->gomp_data
= data
;
2147 __kmp_GOMP_par_reductions_microtask_wrapper(int *gtid
, int *npr
,
2148 void (*task
)(void *), void *data
) {
2149 kmp_info_t
*thr
= __kmp_threads
[*gtid
];
2150 kmp_team_t
*team
= thr
->th
.th_team
;
2151 uintptr_t *reduce_data
= *(uintptr_t **)data
;
2152 __kmp_GOMP_init_reductions(*gtid
, reduce_data
, 0);
2155 ompt_frame_t
*ompt_frame
;
2156 ompt_state_t enclosing_state
;
2158 if (ompt_enabled
.enabled
) {
2159 // save enclosing task state; set current state for task
2160 enclosing_state
= thr
->th
.ompt_thread_info
.state
;
2161 thr
->th
.ompt_thread_info
.state
= ompt_state_work_parallel
;
2164 __ompt_get_task_info_internal(0, NULL
, NULL
, &ompt_frame
, NULL
, NULL
);
2165 ompt_frame
->exit_frame
.ptr
= OMPT_GET_FRAME_ADDRESS(0);
2172 if (ompt_enabled
.enabled
) {
2174 ompt_frame
->exit_frame
= ompt_data_none
;
2176 // restore enclosing state
2177 thr
->th
.ompt_thread_info
.state
= enclosing_state
;
2180 __kmpc_end_taskgroup(NULL
, *gtid
);
2181 // if last thread out, then reset the team's reduce data
2182 // the GOMP_taskgroup_reduction_unregister() function will deallocate
2183 // private copies after reduction calculations take place.
2184 int count
= KMP_ATOMIC_INC(&team
->t
.t_tg_fini_counter
[0]);
2185 if (count
== thr
->th
.th_team_nproc
- 1) {
2186 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_reduce_data
[0], NULL
);
2187 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_fini_counter
[0], 0);
2189 return (unsigned)thr
->th
.th_team_nproc
;
2192 unsigned KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_REDUCTIONS
)(
2193 void (*task
)(void *), void *data
, unsigned num_threads
,
2194 unsigned int flags
) {
2195 MKLOC(loc
, "GOMP_parallel_reductions");
2196 int gtid
= __kmp_entry_gtid();
2197 KA_TRACE(20, ("GOMP_parallel_reductions: T#%d\n", gtid
));
2198 __kmp_GOMP_fork_call(&loc
, gtid
, num_threads
, flags
, task
,
2199 (microtask_t
)__kmp_GOMP_par_reductions_microtask_wrapper
,
2202 __kmp_GOMP_par_reductions_microtask_wrapper(>id
, NULL
, task
, data
);
2203 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_PARALLEL_END
)();
2204 KA_TRACE(20, ("GOMP_parallel_reductions exit: T#%d\n", gtid
));
2208 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_START
)(
2209 long start
, long end
, long incr
, long sched
, long chunk_size
, long *istart
,
2210 long *iend
, uintptr_t *reductions
, void **mem
) {
2212 int gtid
= __kmp_entry_gtid();
2213 KA_TRACE(20, ("GOMP_loop_start: T#%d, reductions: %p\n", gtid
, reductions
));
2215 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2217 KMP_FATAL(GompFeatureNotSupported
, "scan");
2220 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2221 long monotonic
= sched
& MONOTONIC_FLAG
;
2222 sched
&= ~MONOTONIC_FLAG
;
2225 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_RUNTIME_START
)(
2226 start
, end
, incr
, istart
, iend
);
2228 status
= KMP_EXPAND_NAME(
2229 KMP_API_NAME_GOMP_LOOP_MAYBE_NONMONOTONIC_RUNTIME_START
)(
2230 start
, end
, incr
, istart
, iend
);
2231 } else if (sched
== 1) {
2232 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_STATIC_START
)(
2233 start
, end
, incr
, chunk_size
, istart
, iend
);
2234 } else if (sched
== 2) {
2236 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DYNAMIC_START
)(
2237 start
, end
, incr
, chunk_size
, istart
, iend
);
2240 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_DYNAMIC_START
)(
2241 start
, end
, incr
, chunk_size
, istart
, iend
);
2242 } else if (sched
== 3) {
2244 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_GUIDED_START
)(
2245 start
, end
, incr
, chunk_size
, istart
, iend
);
2248 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_GUIDED_START
)(
2249 start
, end
, incr
, chunk_size
, istart
, iend
);
2250 } else if (sched
== 4) {
2251 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_RUNTIME_START
)(
2252 start
, end
, incr
, istart
, iend
);
2259 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_START
)(
2260 bool up
, unsigned long long start
, unsigned long long end
,
2261 unsigned long long incr
, long sched
, unsigned long long chunk_size
,
2262 unsigned long long *istart
, unsigned long long *iend
, uintptr_t *reductions
,
2265 int gtid
= __kmp_entry_gtid();
2267 ("GOMP_loop_ull_start: T#%d, reductions: %p\n", gtid
, reductions
));
2269 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2271 KMP_FATAL(GompFeatureNotSupported
, "scan");
2274 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2275 long monotonic
= sched
& MONOTONIC_FLAG
;
2276 sched
&= ~MONOTONIC_FLAG
;
2279 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_RUNTIME_START
)(
2280 up
, start
, end
, incr
, istart
, iend
);
2282 status
= KMP_EXPAND_NAME(
2283 KMP_API_NAME_GOMP_LOOP_ULL_MAYBE_NONMONOTONIC_RUNTIME_START
)(
2284 up
, start
, end
, incr
, istart
, iend
);
2285 } else if (sched
== 1) {
2286 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_STATIC_START
)(
2287 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2288 } else if (sched
== 2) {
2290 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DYNAMIC_START
)(
2291 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2293 status
= KMP_EXPAND_NAME(
2294 KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_DYNAMIC_START
)(
2295 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2296 } else if (sched
== 3) {
2298 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_GUIDED_START
)(
2299 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2302 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_GUIDED_START
)(
2303 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2304 } else if (sched
== 4) {
2306 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_RUNTIME_START
)(
2307 up
, start
, end
, incr
, istart
, iend
);
2314 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_START
)(
2315 unsigned ncounts
, long *counts
, long sched
, long chunk_size
, long *istart
,
2316 long *iend
, uintptr_t *reductions
, void **mem
) {
2318 int gtid
= __kmp_entry_gtid();
2319 KA_TRACE(20, ("GOMP_loop_doacross_start: T#%d, reductions: %p\n", gtid
,
2322 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2324 KMP_FATAL(GompFeatureNotSupported
, "scan");
2327 // Ignore any monotonic flag
2328 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2329 sched
&= ~MONOTONIC_FLAG
;
2331 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_RUNTIME_START
)(
2332 ncounts
, counts
, istart
, iend
);
2333 } else if (sched
== 1) {
2334 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_STATIC_START
)(
2335 ncounts
, counts
, chunk_size
, istart
, iend
);
2336 } else if (sched
== 2) {
2337 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_DYNAMIC_START
)(
2338 ncounts
, counts
, chunk_size
, istart
, iend
);
2339 } else if (sched
== 3) {
2340 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_DOACROSS_GUIDED_START
)(
2341 ncounts
, counts
, chunk_size
, istart
, iend
);
2348 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_START
)(
2349 unsigned ncounts
, unsigned long long *counts
, long sched
,
2350 unsigned long long chunk_size
, unsigned long long *istart
,
2351 unsigned long long *iend
, uintptr_t *reductions
, void **mem
) {
2353 int gtid
= __kmp_entry_gtid();
2354 KA_TRACE(20, ("GOMP_loop_ull_doacross_start: T#%d, reductions: %p\n", gtid
,
2357 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2359 KMP_FATAL(GompFeatureNotSupported
, "scan");
2362 // Ignore any monotonic flag
2363 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2364 sched
&= ~MONOTONIC_FLAG
;
2366 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_RUNTIME_START
)(
2367 ncounts
, counts
, istart
, iend
);
2368 } else if (sched
== 1) {
2369 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_STATIC_START
)(
2370 ncounts
, counts
, chunk_size
, istart
, iend
);
2371 } else if (sched
== 2) {
2372 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_DYNAMIC_START
)(
2373 ncounts
, counts
, chunk_size
, istart
, iend
);
2374 } else if (sched
== 3) {
2375 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_GUIDED_START
)(
2376 ncounts
, counts
, chunk_size
, istart
, iend
);
2383 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_START
)(
2384 long start
, long end
, long incr
, long sched
, long chunk_size
, long *istart
,
2385 long *iend
, uintptr_t *reductions
, void **mem
) {
2387 int gtid
= __kmp_entry_gtid();
2388 KA_TRACE(20, ("GOMP_loop_ordered_start: T#%d, reductions: %p\n", gtid
,
2391 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2393 KMP_FATAL(GompFeatureNotSupported
, "scan");
2396 // Ignore any monotonic flag
2397 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2398 sched
&= ~MONOTONIC_FLAG
;
2400 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_RUNTIME_START
)(
2401 start
, end
, incr
, istart
, iend
);
2402 } else if (sched
== 1) {
2403 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_STATIC_START
)(
2404 start
, end
, incr
, chunk_size
, istart
, iend
);
2405 } else if (sched
== 2) {
2406 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_DYNAMIC_START
)(
2407 start
, end
, incr
, chunk_size
, istart
, iend
);
2408 } else if (sched
== 3) {
2409 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ORDERED_GUIDED_START
)(
2410 start
, end
, incr
, chunk_size
, istart
, iend
);
2417 bool KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_START
)(
2418 bool up
, unsigned long long start
, unsigned long long end
,
2419 unsigned long long incr
, long sched
, unsigned long long chunk_size
,
2420 unsigned long long *istart
, unsigned long long *iend
, uintptr_t *reductions
,
2423 int gtid
= __kmp_entry_gtid();
2424 KA_TRACE(20, ("GOMP_loop_ull_ordered_start: T#%d, reductions: %p\n", gtid
,
2427 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2429 KMP_FATAL(GompFeatureNotSupported
, "scan");
2432 // Ignore any monotonic flag
2433 const long MONOTONIC_FLAG
= (long)(kmp_sched_monotonic
);
2434 sched
&= ~MONOTONIC_FLAG
;
2436 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_RUNTIME_START
)(
2437 up
, start
, end
, incr
, istart
, iend
);
2438 } else if (sched
== 1) {
2439 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_STATIC_START
)(
2440 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2441 } else if (sched
== 2) {
2442 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START
)(
2443 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2444 } else if (sched
== 3) {
2445 status
= KMP_EXPAND_NAME(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_GUIDED_START
)(
2446 up
, start
, end
, incr
, chunk_size
, istart
, iend
);
2453 unsigned KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS2_START
)(
2454 unsigned count
, uintptr_t *reductions
, void **mem
) {
2455 int gtid
= __kmp_entry_gtid();
2457 ("GOMP_sections2_start: T#%d, reductions: %p\n", gtid
, reductions
));
2459 __kmp_GOMP_init_reductions(gtid
, reductions
, 1);
2461 KMP_FATAL(GompFeatureNotSupported
, "scan");
2462 return KMP_EXPAND_NAME(KMP_API_NAME_GOMP_SECTIONS_START
)(count
);
2465 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_WORKSHARE_TASK_REDUCTION_UNREGISTER
)(
2467 int gtid
= __kmp_get_gtid();
2468 MKLOC(loc
, "GOMP_workshare_task_reduction_unregister");
2469 KA_TRACE(20, ("GOMP_workshare_task_reduction_unregister: T#%d\n", gtid
));
2470 kmp_info_t
*thr
= __kmp_threads
[gtid
];
2471 kmp_team_t
*team
= thr
->th
.th_team
;
2472 __kmpc_end_taskgroup(NULL
, gtid
);
2473 // If last thread out of workshare, then reset the team's reduce data
2474 // the GOMP_taskgroup_reduction_unregister() function will deallocate
2475 // private copies after reduction calculations take place.
2476 int count
= KMP_ATOMIC_INC(&team
->t
.t_tg_fini_counter
[1]);
2477 if (count
== thr
->th
.th_team_nproc
- 1) {
2478 KMP_EXPAND_NAME(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_UNREGISTER
)
2479 ((uintptr_t *)KMP_ATOMIC_LD_RLX(&team
->t
.t_tg_reduce_data
[1]));
2480 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_reduce_data
[1], NULL
);
2481 KMP_ATOMIC_ST_REL(&team
->t
.t_tg_fini_counter
[1], 0);
2484 __kmpc_barrier(&loc
, gtid
);
2488 // allocator construct
2489 void *KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ALLOC
)(size_t alignment
, size_t size
,
2490 uintptr_t allocator
) {
2491 int gtid
= __kmp_entry_gtid();
2492 KA_TRACE(20, ("GOMP_alloc: T#%d\n", gtid
));
2493 #if OMPT_SUPPORT && OMPT_OPTIONAL
2494 OMPT_STORE_RETURN_ADDRESS(gtid
);
2496 return __kmp_alloc(gtid
, alignment
, size
, (omp_allocator_handle_t
)allocator
);
2499 void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_FREE
)(void *ptr
, uintptr_t allocator
) {
2500 int gtid
= __kmp_entry_gtid();
2501 KA_TRACE(20, ("GOMP_free: T#%d\n", gtid
));
2502 #if OMPT_SUPPORT && OMPT_OPTIONAL
2503 OMPT_STORE_RETURN_ADDRESS(gtid
);
2505 return ___kmpc_free(gtid
, ptr
, (omp_allocator_handle_t
)allocator
);
2508 /* The following sections of code create aliases for the GOMP_* functions, then
2509 create versioned symbols using the assembler directive .symver. This is only
2510 pertinent for ELF .so library. The KMP_VERSION_SYMBOL macro is defined in
2513 #ifdef KMP_USE_VERSION_SYMBOLS
2514 // GOMP_1.0 versioned symbols
2515 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_ATOMIC_END
, 10, "GOMP_1.0");
2516 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_ATOMIC_START
, 10, "GOMP_1.0");
2517 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_BARRIER
, 10, "GOMP_1.0");
2518 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CRITICAL_END
, 10, "GOMP_1.0");
2519 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CRITICAL_NAME_END
, 10, "GOMP_1.0");
2520 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CRITICAL_NAME_START
, 10, "GOMP_1.0");
2521 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CRITICAL_START
, 10, "GOMP_1.0");
2522 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DYNAMIC_NEXT
, 10, "GOMP_1.0");
2523 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DYNAMIC_START
, 10, "GOMP_1.0");
2524 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_END
, 10, "GOMP_1.0");
2525 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_END_NOWAIT
, 10, "GOMP_1.0");
2526 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_GUIDED_NEXT
, 10, "GOMP_1.0");
2527 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_GUIDED_START
, 10, "GOMP_1.0");
2528 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_DYNAMIC_NEXT
, 10, "GOMP_1.0");
2529 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_DYNAMIC_START
, 10,
2531 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_GUIDED_NEXT
, 10, "GOMP_1.0");
2532 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_GUIDED_START
, 10, "GOMP_1.0");
2533 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_RUNTIME_NEXT
, 10, "GOMP_1.0");
2534 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_RUNTIME_START
, 10,
2536 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_STATIC_NEXT
, 10, "GOMP_1.0");
2537 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_STATIC_START
, 10, "GOMP_1.0");
2538 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_RUNTIME_NEXT
, 10, "GOMP_1.0");
2539 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_RUNTIME_START
, 10, "GOMP_1.0");
2540 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_STATIC_NEXT
, 10, "GOMP_1.0");
2541 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_STATIC_START
, 10, "GOMP_1.0");
2542 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_ORDERED_END
, 10, "GOMP_1.0");
2543 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_ORDERED_START
, 10, "GOMP_1.0");
2544 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_END
, 10, "GOMP_1.0");
2545 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_DYNAMIC_START
, 10,
2547 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_GUIDED_START
, 10,
2549 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_RUNTIME_START
, 10,
2551 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_STATIC_START
, 10,
2553 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_SECTIONS_START
, 10, "GOMP_1.0");
2554 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_START
, 10, "GOMP_1.0");
2555 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS_END
, 10, "GOMP_1.0");
2556 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS_END_NOWAIT
, 10, "GOMP_1.0");
2557 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS_NEXT
, 10, "GOMP_1.0");
2558 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS_START
, 10, "GOMP_1.0");
2559 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SINGLE_COPY_END
, 10, "GOMP_1.0");
2560 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SINGLE_COPY_START
, 10, "GOMP_1.0");
2561 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SINGLE_START
, 10, "GOMP_1.0");
2563 // GOMP_2.0 versioned symbols
2564 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASK
, 20, "GOMP_2.0");
2565 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKWAIT
, 20, "GOMP_2.0");
2566 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DYNAMIC_NEXT
, 20, "GOMP_2.0");
2567 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DYNAMIC_START
, 20, "GOMP_2.0");
2568 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_GUIDED_NEXT
, 20, "GOMP_2.0");
2569 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_GUIDED_START
, 20, "GOMP_2.0");
2570 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT
, 20,
2572 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START
, 20,
2574 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT
, 20,
2576 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_GUIDED_START
, 20,
2578 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT
, 20,
2580 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_RUNTIME_START
, 20,
2582 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT
, 20,
2584 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_STATIC_START
, 20,
2586 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_RUNTIME_NEXT
, 20, "GOMP_2.0");
2587 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_RUNTIME_START
, 20, "GOMP_2.0");
2588 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_STATIC_NEXT
, 20, "GOMP_2.0");
2589 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_STATIC_START
, 20, "GOMP_2.0");
2591 // GOMP_3.0 versioned symbols
2592 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKYIELD
, 30, "GOMP_3.0");
2594 // GOMP_4.0 versioned symbols
2595 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL
, 40, "GOMP_4.0");
2596 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_SECTIONS
, 40, "GOMP_4.0");
2597 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_DYNAMIC
, 40, "GOMP_4.0");
2598 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_GUIDED
, 40, "GOMP_4.0");
2599 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_RUNTIME
, 40, "GOMP_4.0");
2600 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_STATIC
, 40, "GOMP_4.0");
2601 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKGROUP_START
, 40, "GOMP_4.0");
2602 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKGROUP_END
, 40, "GOMP_4.0");
2603 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_BARRIER_CANCEL
, 40, "GOMP_4.0");
2604 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CANCEL
, 40, "GOMP_4.0");
2605 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_CANCELLATION_POINT
, 40, "GOMP_4.0");
2606 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_END_CANCEL
, 40, "GOMP_4.0");
2607 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS_END_CANCEL
, 40, "GOMP_4.0");
2608 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TARGET
, 40, "GOMP_4.0");
2609 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TARGET_DATA
, 40, "GOMP_4.0");
2610 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TARGET_END_DATA
, 40, "GOMP_4.0");
2611 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TARGET_UPDATE
, 40, "GOMP_4.0");
2612 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TEAMS
, 40, "GOMP_4.0");
2614 // GOMP_4.5 versioned symbols
2615 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKLOOP
, 45, "GOMP_4.5");
2616 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKLOOP_ULL
, 45, "GOMP_4.5");
2617 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_DOACROSS_POST
, 45, "GOMP_4.5");
2618 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_DOACROSS_WAIT
, 45, "GOMP_4.5");
2619 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DOACROSS_STATIC_START
, 45,
2621 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DOACROSS_DYNAMIC_START
, 45,
2623 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DOACROSS_GUIDED_START
, 45,
2625 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DOACROSS_RUNTIME_START
, 45,
2627 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_DOACROSS_ULL_POST
, 45, "GOMP_4.5");
2628 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_DOACROSS_ULL_WAIT
, 45, "GOMP_4.5");
2629 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_STATIC_START
, 45,
2631 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_DYNAMIC_START
, 45,
2633 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_GUIDED_START
, 45,
2635 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_RUNTIME_START
, 45,
2637 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_DYNAMIC_START
, 45,
2639 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_DYNAMIC_NEXT
, 45,
2641 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_GUIDED_START
, 45,
2643 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_GUIDED_NEXT
, 45,
2645 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_DYNAMIC_START
, 45,
2647 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_DYNAMIC_NEXT
, 45,
2649 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_GUIDED_START
, 45,
2651 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_GUIDED_NEXT
, 45,
2653 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_DYNAMIC
, 45,
2655 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_GUIDED
, 45,
2658 // GOMP_5.0 versioned symbols
2659 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_MAYBE_NONMONOTONIC_RUNTIME_NEXT
, 50,
2661 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_MAYBE_NONMONOTONIC_RUNTIME_START
, 50,
2663 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_RUNTIME_NEXT
, 50,
2665 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_NONMONOTONIC_RUNTIME_START
, 50,
2667 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_MAYBE_NONMONOTONIC_RUNTIME_NEXT
,
2669 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_MAYBE_NONMONOTONIC_RUNTIME_START
,
2671 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_RUNTIME_NEXT
, 50,
2673 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_NONMONOTONIC_RUNTIME_START
, 50,
2675 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_NONMONOTONIC_RUNTIME
, 50,
2677 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_LOOP_MAYBE_NONMONOTONIC_RUNTIME
,
2679 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TEAMS_REG
, 50, "GOMP_5.0");
2680 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKWAIT_DEPEND
, 50, "GOMP_5.0");
2681 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_REGISTER
, 50,
2683 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASKGROUP_REDUCTION_UNREGISTER
, 50,
2685 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_TASK_REDUCTION_REMAP
, 50, "GOMP_5.0");
2686 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_PARALLEL_REDUCTIONS
, 50, "GOMP_5.0");
2687 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_START
, 50, "GOMP_5.0");
2688 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_START
, 50, "GOMP_5.0");
2689 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_DOACROSS_START
, 50, "GOMP_5.0");
2690 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_DOACROSS_START
, 50, "GOMP_5.0");
2691 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ORDERED_START
, 50, "GOMP_5.0");
2692 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_LOOP_ULL_ORDERED_START
, 50, "GOMP_5.0");
2693 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_SECTIONS2_START
, 50, "GOMP_5.0");
2694 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_WORKSHARE_TASK_REDUCTION_UNREGISTER
, 50,
2697 // GOMP_5.0.1 versioned symbols
2698 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_ALLOC
, 501, "GOMP_5.0.1");
2699 KMP_VERSION_SYMBOL(KMP_API_NAME_GOMP_FREE
, 501, "GOMP_5.0.1");
2700 #endif // KMP_USE_VERSION_SYMBOLS
2704 #endif // __cplusplus