13#ifndef __OMPT_INTERNAL_H__
14#define __OMPT_INTERNAL_H__
16#include "ompt-event-specific.h"
21#define _OMP_EXTERN extern "C"
23#define OMPT_INVOKER(x) \
24 ((x == fork_context_gnu) ? ompt_parallel_invoker_program \
25 : ompt_parallel_invoker_runtime)
27#define ompt_callback(e) e##_callback
29typedef struct ompt_callbacks_internal_s {
30#define ompt_event_macro(event, callback, eventid) \
31 callback ompt_callback(event);
33 FOREACH_OMPT_EVENT(ompt_event_macro)
35#undef ompt_event_macro
36} ompt_callbacks_internal_t;
38typedef struct ompt_callbacks_active_s {
39 unsigned int enabled : 1;
40#define ompt_event_macro(event, callback, eventid) unsigned int event : 1;
42 FOREACH_OMPT_EVENT(ompt_event_macro)
44#undef ompt_event_macro
45} ompt_callbacks_active_t;
47#define TASK_TYPE_DETAILS_FORMAT(info) \
48 ((info->td_flags.task_serial || info->td_flags.tasking_ser) \
49 ? ompt_task_undeferred \
51 ((!(info->td_flags.tiedness)) ? ompt_task_untied : 0x0) | \
52 (info->td_flags.final ? ompt_task_final : 0x0) | \
53 (info->td_flags.target \
55 : (info->td_flags.tasktype ? ompt_task_explicit \
56 : ompt_task_implicit)) | \
57 (info->td_flags.merged_if0 ? ompt_task_mergeable : 0x0)
61 ompt_data_t task_data;
62 struct kmp_taskdata *scheduling_parent;
64 ompt_dispatch_chunk_t dispatch_chunk;
68 ompt_data_t parallel_data;
69 void *master_return_address;
72typedef struct ompt_lw_taskteam_s {
73 ompt_team_info_t ompt_team_info;
74 ompt_task_info_t ompt_task_info;
76 struct ompt_lw_taskteam_s *parent;
80 ompt_data_t thread_data;
81 ompt_data_t task_data;
83 ompt_data_t target_task_data;
86 ompt_wait_id_t wait_id;
87 int ompt_task_yielded;
92extern ompt_callbacks_internal_t ompt_callbacks;
94#if OMPT_SUPPORT && OMPT_OPTIONAL
96#define KMP_OMPT_DEPS_ALLOC __kmp_fast_allocate
97#define KMP_OMPT_DEPS_FREE __kmp_fast_free
99#define KMP_OMPT_DEPS_ALLOC __kmp_thread_malloc
100#define KMP_OMPT_DEPS_FREE __kmp_thread_free
108void ompt_pre_init(
void);
109void ompt_post_init(
void);
112#define OMPT_GET_RETURN_ADDRESS(level) __builtin_return_address(level)
113#define OMPT_GET_FRAME_ADDRESS(level) __builtin_frame_address(level)
115int __kmp_control_tool(uint64_t command, uint64_t modifier,
void *arg);
117extern ompt_callbacks_active_t ompt_enabled;
120#define UNLIKELY(x) (x)
121#define OMPT_NOINLINE __declspec(noinline)
123#define UNLIKELY(x) __builtin_expect(!!(x), 0)
124#define OMPT_NOINLINE __attribute__((noinline))