Skip to content

Commit fe32571

Browse files
committed
Access the task routine to provide a task function for OMPD
1 parent 5e504d9 commit fe32571

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

libompd/src/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
project (libompd)
22

3-
message( "LIBOMP_INCLUDE_DIR = ${LIBOMP_INCLUDE_DIR}" )
43
add_library (ompd SHARED TargetValue.cpp omp-debug.cpp)
54

65
add_dependencies(ompd omp) # ensure generated import library is created first
76

87
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
9-
message( "CMAKE_CXX_FLAGS = ${CMAKE_CXX_FLAGS}" )
108

119
include_directories (
1210
${CMAKE_CURRENT_SOURCE_DIR}

libompd/src/omp-debug.cpp

+9-11
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,7 @@ ompd_get_task_data(ompd_task_handle_t *task_handle, /* IN: OpenMP task handle*/
14071407
return ret;
14081408
}
14091409

1410-
#if 0 // the runtime currently does not have task function information
1410+
#if 1 // the runtime currently does not have task function information
14111411
ompd_rc_t ompd_get_task_function(
14121412
ompd_task_handle_t *task_handle, /* IN: OpenMP task handle */
14131413
ompd_address_t *task_addr /* OUT: first instruction in the task region */
@@ -1439,17 +1439,15 @@ ompd_rc_t ompd_get_task_function(
14391439
task_addr->segment = OMPD_SEGMENT_UNSPECIFIED;
14401440
TValue taskInfo;
14411441
if(task_handle->lwt.address!=0)
1442-
taskInfo = TValue(context, task_handle->lwt).
1443-
cast("ompt_lw_taskteam_t",0); /*lwt*/
1442+
return ompd_rc_bad_input; // We need to decide what we do here.
14441443
else
1445-
taskInfo = TValue(context, task_handle->th).
1446-
cast("kmp_taskdata_t",0); /*t*/
1447-
ret = taskInfo.
1448-
access("ompt_task_info"). /*td->ompt_task_info*/
1449-
cast("ompt_task_info_t").
1450-
access("function"). /*td->ompt_task_info.function*/
1451-
castBase().
1452-
getValue(task_addr->address);
1444+
ret = TValue(context, task_handle->th).
1445+
cast("kmp_taskdata_t",0). /*t*/
1446+
getArrayElement(1). /* see kmp.h: #define KMP_TASKDATA_TO_TASK(taskdata) (kmp_task_t *)(taskdata + 1) */
1447+
cast("kmp_task_t",0). /* (kmp_task_t *) */
1448+
access("routine"). /*td->ompt_task_info*/
1449+
castBase().
1450+
getValue(task_addr->address);
14531451
return ret;
14541452
}
14551453
#endif

runtime/src/ompd-specific.h

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ OMPD_ACCESS(kmp_taskdata_t, td_icvs) \
6969
OMPD_ACCESS(kmp_taskdata_t, td_parent) \
7070
OMPD_ACCESS(kmp_taskdata_t, td_team) \
7171
\
72+
OMPD_ACCESS(kmp_task_t, routine) \
73+
\
7274
OMPD_ACCESS(kmp_team_p, t) \
7375
\
7476
OMPD_ACCESS(ompt_task_info_t, frame) \
@@ -110,6 +112,7 @@ OMPD_BITFIELD(kmp_tasking_flags_t, native) \
110112
#define OMPD_FOREACH_SIZEOF(OMPD_SIZEOF) \
111113
OMPD_SIZEOF(kmp_info_t) \
112114
OMPD_SIZEOF(kmp_taskdata_t) \
115+
OMPD_SIZEOF(kmp_task_t) \
113116
OMPD_SIZEOF(kmp_tasking_flags_t) \
114117
OMPD_SIZEOF(kmp_thread_t) \
115118
OMPD_SIZEOF(ompt_data_t) \

0 commit comments

Comments
 (0)