1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
|
import ompdModule
import gdb
import re
import traceback
from ompd_address_space import ompd_address_space
from ompd_handles import ompd_thread, ompd_task, ompd_parallel
from frame_filter import FrameFilter
from enum import Enum
addr_space = None
ff = None
icv_map = None
ompd_scope_map = {
1: "global",
2: "address_space",
3: "thread",
4: "parallel",
5: "implicit_task",
6: "task",
}
in_task_function = False
class ompd(gdb.Command):
def __init__(self):
super(ompd, self).__init__("ompd", gdb.COMMAND_STATUS, gdb.COMPLETE_NONE, True)
class ompd_init(gdb.Command):
"""Find and initialize ompd library"""
# first parameter is command-line input, second parameter is gdb-specific data
def __init__(self):
self.__doc__ = "Find and initialize OMPD library\n usage: ompd init"
super(ompd_init, self).__init__("ompd init", gdb.COMMAND_DATA)
def invoke(self, arg, from_tty):
global addr_space
global ff
try:
try:
print(gdb.newest_frame())
except:
gdb.execute("start")
try:
lib_list = gdb.parse_and_eval("(char**)ompd_dll_locations")
except gdb.error:
raise ValueError(
"No ompd_dll_locations symbol in execution, make sure to have an OMPD enabled OpenMP runtime"
)
while not gdb.parse_and_eval("(char**)ompd_dll_locations"):
gdb.execute("tbreak ompd_dll_locations_valid")
gdb.execute("continue")
lib_list = gdb.parse_and_eval("(char**)ompd_dll_locations")
i = 0
while lib_list[i]:
ret = ompdModule.ompd_open(lib_list[i].string())
if ret == -1:
raise ValueError("Handle of OMPD library is not a valid string!")
if ret == -2:
print("ret == -2")
pass # It's ok to fail on dlopen
if ret == -3:
print("ret == -3")
pass # It's ok to fail on dlsym
if ret < -10:
raise ValueError("OMPD error code %i!" % (-10 - ret))
if ret > 0:
print("Loaded OMPD lib successfully!")
try:
addr_space = ompd_address_space()
ff = FrameFilter(addr_space)
except:
traceback.print_exc()
return
i = i + 1
raise ValueError("OMPD library could not be loaded!")
except:
traceback.print_exc()
class ompd_threads(gdb.Command):
"""Register thread ids of current context"""
def __init__(self):
self.__doc__ = (
"Provide information on threads of current context.\n usage: ompd threads"
)
super(ompd_threads, self).__init__("ompd threads", gdb.COMMAND_STATUS)
def invoke(self, arg, from_tty):
global addr_space
if init_error():
return
addr_space.list_threads(True)
def print_parallel_region(curr_parallel, team_size):
"""Helper function for ompd_parallel_region. To print out the details of the parallel region."""
for omp_thr in range(team_size):
thread = curr_parallel.get_thread_in_parallel(omp_thr)
ompd_state = str(addr_space.states[thread.get_state()[0]])
ompd_wait_id = thread.get_state()[1]
task = curr_parallel.get_task_in_parallel(omp_thr)
task_func_addr = task.get_task_function()
# Get the function this addr belongs to
sal = gdb.find_pc_line(task_func_addr)
block = gdb.block_for_pc(task_func_addr)
while block and not block.function:
block = block.superblock
if omp_thr == 0:
print(
"%6d (master) %-37s %ld 0x%lx %-25s %-17s:%d"
% (
omp_thr,
ompd_state,
ompd_wait_id,
task_func_addr,
block.function.print_name,
sal.symtab.filename,
sal.line,
)
)
else:
print(
"%6d %-37s %ld 0x%lx %-25s %-17s:%d"
% (
omp_thr,
ompd_state,
ompd_wait_id,
task_func_addr,
block.function.print_name,
sal.symtab.filename,
sal.line,
)
)
class ompd_parallel_region(gdb.Command):
"""Parallel Region Details"""
def __init__(self):
self.__doc__ = "Display the details of the current and enclosing parallel regions.\n usage: ompd parallel"
super(ompd_parallel_region, self).__init__("ompd parallel", gdb.COMMAND_STATUS)
def invoke(self, arg, from_tty):
global addr_space
if init_error():
return
if addr_space.icv_map is None:
addr_space.get_icv_map()
if addr_space.states is None:
addr_space.enumerate_states()
curr_thread_handle = addr_space.get_curr_thread()
curr_parallel_handle = curr_thread_handle.get_current_parallel_handle()
curr_parallel = ompd_parallel(curr_parallel_handle)
while curr_parallel_handle is not None and curr_parallel is not None:
nest_level = ompdModule.call_ompd_get_icv_from_scope(
curr_parallel_handle,
addr_space.icv_map["levels-var"][1],
addr_space.icv_map["levels-var"][0],
)
if nest_level == 0:
break
team_size = ompdModule.call_ompd_get_icv_from_scope(
curr_parallel_handle,
addr_space.icv_map["team-size-var"][1],
addr_space.icv_map["team-size-var"][0],
)
print("")
print(
"Parallel Region: Nesting Level %d: Team Size: %d"
% (nest_level, team_size)
)
print("================================================")
print("")
print(
"OMP Thread Nbr Thread State Wait Id EntryAddr FuncName File:Line"
)
print(
"======================================================================================================"
)
print_parallel_region(curr_parallel, team_size)
enclosing_parallel = curr_parallel.get_enclosing_parallel()
enclosing_parallel_handle = curr_parallel.get_enclosing_parallel_handle()
curr_parallel = enclosing_parallel
curr_parallel_handle = enclosing_parallel_handle
class ompd_icvs(gdb.Command):
"""ICVs"""
def __init__(self):
self.__doc__ = (
"Display the values of the Internal Control Variables.\n usage: ompd icvs"
)
super(ompd_icvs, self).__init__("ompd icvs", gdb.COMMAND_STATUS)
def invoke(self, arg, from_tty):
global addr_space
global ompd_scope_map
if init_error():
return
curr_thread_handle = addr_space.get_curr_thread()
if addr_space.icv_map is None:
addr_space.get_icv_map()
print("ICV Name Scope Value")
print("===============================================================")
try:
for icv_name in addr_space.icv_map:
scope = addr_space.icv_map[icv_name][1]
# {1:'global', 2:'address_space', 3:'thread', 4:'parallel', 5:'implicit_task', 6:'task'}
if scope == 2:
handle = addr_space.addr_space
elif scope == 3:
handle = curr_thread_handle.thread_handle
elif scope == 4:
handle = curr_thread_handle.get_current_parallel_handle()
elif scope == 6:
handle = curr_thread_handle.get_current_task_handle()
else:
raise ValueError("Invalid scope")
if icv_name == "nthreads-var" or icv_name == "bind-var":
icv_value = ompdModule.call_ompd_get_icv_from_scope(
handle, scope, addr_space.icv_map[icv_name][0]
)
if icv_value is None:
icv_string = ompdModule.call_ompd_get_icv_string_from_scope(
handle, scope, addr_space.icv_map[icv_name][0]
)
print(
"%-31s %-26s %s"
% (icv_name, ompd_scope_map[scope], icv_string)
)
else:
print(
"%-31s %-26s %d"
% (icv_name, ompd_scope_map[scope], icv_value)
)
elif (
icv_name == "affinity-format-var"
or icv_name == "run-sched-var"
or icv_name == "tool-libraries-var"
or icv_name == "tool-verbose-init-var"
):
icv_string = ompdModule.call_ompd_get_icv_string_from_scope(
handle, scope, addr_space.icv_map[icv_name][0]
)
print(
"%-31s %-26s %s" % (icv_name, ompd_scope_map[scope], icv_string)
)
else:
icv_value = ompdModule.call_ompd_get_icv_from_scope(
handle, scope, addr_space.icv_map[icv_name][0]
)
print(
"%-31s %-26s %d" % (icv_name, ompd_scope_map[scope], icv_value)
)
except:
traceback.print_exc()
def curr_thread():
"""Helper function for ompd_step. Returns the thread object for the current thread number."""
global addr_space
if addr_space is not None:
return addr_space.threads[int(gdb.selected_thread().num)]
return None
class ompd_test(gdb.Command):
"""Test area"""
def __init__(self):
self.__doc__ = "Test functionalities for correctness\n usage: ompd test"
super(ompd_test, self).__init__("ompd test", gdb.COMMAND_OBSCURE)
def invoke(self, arg, from_tty):
global addr_space
if init_error():
return
# get task function for current task of current thread
try:
current_thread = int(gdb.selected_thread().num)
current_thread_obj = addr_space.threads[current_thread]
task_function = current_thread_obj.get_current_task().get_task_function()
print("bt value:", int("0x0000000000400b6c", 0))
print("get_task_function value:", task_function)
# get task function of implicit task in current parallel region for current thread
current_parallel_obj = current_thread_obj.get_current_parallel()
task_in_parallel = current_parallel_obj.get_task_in_parallel(current_thread)
task_function_in_parallel = task_in_parallel.get_task_function()
print("task_function_in_parallel:", task_function_in_parallel)
except:
print("Task function value not found for this thread")
class ompdtestapi(gdb.Command):
"""To test API's return code"""
def __init__(self):
self.__doc__ = "Test OMPD tool Interface APIs.\nUsage: ompdtestapi <api name>"
super(ompdtestapi, self).__init__("ompdtestapi", gdb.COMMAND_OBSCURE)
def invoke(self, arg, from_tty):
global addr_space
if init_error():
print("Error in Initialization.")
return
if not arg:
print("No API provided to test, eg: ompdtestapi ompd_initialize")
if arg == "ompd_get_thread_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
ompdModule.test_ompd_get_thread_handle(addr_handle, threadId)
elif arg == "ompd_get_curr_parallel_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
ompdModule.test_ompd_get_curr_parallel_handle(thread_handle)
elif arg == "ompd_get_thread_in_parallel":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
ompdModule.test_ompd_get_thread_in_parallel(parallel_handle)
elif arg == "ompd_thread_handle_compare":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
thread_handle1 = ompdModule.call_ompd_get_thread_in_parallel(
parallel_handle, 1
)
thread_handle2 = ompdModule.call_ompd_get_thread_in_parallel(
parallel_handle, 2
)
ompdModule.test_ompd_thread_handle_compare(thread_handle1, thread_handle1)
ompdModule.test_ompd_thread_handle_compare(thread_handle1, thread_handle2)
elif arg == "ompd_get_thread_id":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
ompdModule.test_ompd_get_thread_id(thread_handle)
elif arg == "ompd_rel_thread_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
ompdModule.test_ompd_rel_thread_handle(thread_handle)
elif arg == "ompd_get_enclosing_parallel_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
ompdModule.test_ompd_get_enclosing_parallel_handle(parallel_handle)
elif arg == "ompd_parallel_handle_compare":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle1 = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
parallel_handle2 = ompdModule.call_ompd_get_enclosing_parallel_handle(
parallel_handle1
)
ompdModule.test_ompd_parallel_handle_compare(
parallel_handle1, parallel_handle1
)
ompdModule.test_ompd_parallel_handle_compare(
parallel_handle1, parallel_handle2
)
elif arg == "ompd_rel_parallel_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
ompdModule.test_ompd_rel_parallel_handle(parallel_handle)
elif arg == "ompd_initialize":
ompdModule.test_ompd_initialize()
elif arg == "ompd_get_api_version":
ompdModule.test_ompd_get_api_version()
elif arg == "ompd_get_version_string":
ompdModule.test_ompd_get_version_string()
elif arg == "ompd_finalize":
ompdModule.test_ompd_finalize()
elif arg == "ompd_process_initialize":
ompdModule.call_ompd_initialize()
ompdModule.test_ompd_process_initialize()
elif arg == "ompd_device_initialize":
ompdModule.test_ompd_device_initialize()
elif arg == "ompd_rel_address_space_handle":
ompdModule.test_ompd_rel_address_space_handle()
elif arg == "ompd_get_omp_version":
addr_handle = addr_space.addr_space
ompdModule.test_ompd_get_omp_version(addr_handle)
elif arg == "ompd_get_omp_version_string":
addr_handle = addr_space.addr_space
ompdModule.test_ompd_get_omp_version_string(addr_handle)
elif arg == "ompd_get_curr_task_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
ompdModule.test_ompd_get_curr_task_handle(thread_handle)
elif arg == "ompd_get_task_parallel_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_task_parallel_handle(task_handle)
elif arg == "ompd_get_generating_task_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_generating_task_handle(task_handle)
elif arg == "ompd_get_scheduling_task_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_scheduling_task_handle(task_handle)
elif arg == "ompd_get_task_in_parallel":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
ompdModule.test_ompd_get_task_in_parallel(parallel_handle)
elif arg == "ompd_rel_task_handle":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_rel_task_handle(task_handle)
elif arg == "ompd_task_handle_compare":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle1 = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
task_handle2 = ompdModule.call_ompd_get_generating_task_handle(task_handle1)
ompdModule.test_ompd_task_handle_compare(task_handle1, task_handle2)
ompdModule.test_ompd_task_handle_compare(task_handle2, task_handle1)
elif arg == "ompd_get_task_function":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_task_function(task_handle)
elif arg == "ompd_get_task_frame":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_task_frame(task_handle)
elif arg == "ompd_get_state":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
ompdModule.test_ompd_get_state(thread_handle)
elif arg == "ompd_get_display_control_vars":
addr_handle = addr_space.addr_space
ompdModule.test_ompd_get_display_control_vars(addr_handle)
elif arg == "ompd_rel_display_control_vars":
ompdModule.test_ompd_rel_display_control_vars()
elif arg == "ompd_enumerate_icvs":
addr_handle = addr_space.addr_space
ompdModule.test_ompd_enumerate_icvs(addr_handle)
elif arg == "ompd_get_icv_from_scope":
addr_handle = addr_space.addr_space
threadId = gdb.selected_thread().ptid[1]
thread_handle = ompdModule.get_thread_handle(threadId, addr_handle)
parallel_handle = ompdModule.call_ompd_get_curr_parallel_handle(
thread_handle
)
task_handle = ompdModule.call_ompd_get_curr_task_handle(thread_handle)
ompdModule.test_ompd_get_icv_from_scope_with_addr_handle(addr_handle)
ompdModule.test_ompd_get_icv_from_scope_with_thread_handle(thread_handle)
ompdModule.test_ompd_get_icv_from_scope_with_parallel_handle(
parallel_handle
)
ompdModule.test_ompd_get_icv_from_scope_with_task_handle(task_handle)
elif arg == "ompd_get_icv_string_from_scope":
addr_handle = addr_space.addr_space
ompdModule.test_ompd_get_icv_string_from_scope(addr_handle)
elif arg == "ompd_get_tool_data":
ompdModule.test_ompd_get_tool_data()
elif arg == "ompd_enumerate_states":
ompdModule.test_ompd_enumerate_states()
else:
print("Invalid API.")
class ompd_bt(gdb.Command):
"""Turn filter for 'bt' on/off for output to only contain frames relevant to the application or all frames."""
def __init__(self):
self.__doc__ = 'Turn filter for "bt" output on or off. Specify "on continued" option to trace worker threads back to master threads.\n usage: ompd bt on|on continued|off'
super(ompd_bt, self).__init__("ompd bt", gdb.COMMAND_STACK)
def invoke(self, arg, from_tty):
global ff
global addr_space
global icv_map
global ompd_scope_map
if init_error():
return
if icv_map is None:
icv_map = {}
current = 0
more = 1
while more > 0:
tup = ompdModule.call_ompd_enumerate_icvs(
addr_space.addr_space, current
)
(current, next_icv, next_scope, more) = tup
icv_map[next_icv] = (current, next_scope, ompd_scope_map[next_scope])
print('Initialized ICV map successfully for filtering "bt".')
arg_list = gdb.string_to_argv(arg)
if len(arg_list) == 0:
print(
'When calling "ompd bt", you must either specify "on", "on continued" or "off". Check "help ompd".'
)
elif len(arg_list) == 1 and arg_list[0] == "on":
addr_space.list_threads(False)
ff.set_switch(True)
ff.set_switch_continue(False)
elif arg_list[0] == "on" and arg_list[1] == "continued":
ff.set_switch(True)
ff.set_switch_continue(True)
elif len(arg_list) == 1 and arg_list[0] == "off":
ff.set_switch(False)
ff.set_switch_continue(False)
else:
print(
'When calling "ompd bt", you must either specify "on", "on continued" or "off". Check "help ompd".'
)
# TODO: remove
class ompd_taskframes(gdb.Command):
"""Prints task handles for relevant task frames. Meant for debugging."""
def __init__(self):
self.__doc__ = "Prints list of tasks.\nUsage: ompd taskframes"
super(ompd_taskframes, self).__init__("ompd taskframes", gdb.COMMAND_STACK)
def invoke(self, arg, from_tty):
global addr_space
if init_error():
return
frame = gdb.newest_frame()
while frame:
print(frame.read_register("sp"))
frame = frame.older()
curr_task_handle = None
if addr_space.threads and addr_space.threads.get(gdb.selected_thread().num):
curr_thread_handle = curr_thread().thread_handle
curr_task_handle = ompdModule.call_ompd_get_curr_task_handle(
curr_thread_handle
)
if not curr_task_handle:
return None
prev_frames = None
try:
while 1:
frames_with_flags = ompdModule.call_ompd_get_task_frame(
curr_task_handle
)
frames = (frames_with_flags[0], frames_with_flags[3])
if prev_frames == frames:
break
if not isinstance(frames, tuple):
break
(ompd_enter_frame, ompd_exit_frame) = frames
print(hex(ompd_enter_frame), hex(ompd_exit_frame))
curr_task_handle = ompdModule.call_ompd_get_scheduling_task_handle(
curr_task_handle
)
prev_frames = frames
if not curr_task_handle:
break
except:
traceback.print_exc()
def print_and_exec(string):
"""Helper function for ompd_step. Executes the given command in GDB and prints it."""
print(string)
gdb.execute(string)
class TempFrameFunctionBp(gdb.Breakpoint):
"""Helper class for ompd_step. Defines stop function for breakpoint on frame function."""
def stop(self):
global in_task_function
in_task_function = True
self.enabled = False
class ompd_step(gdb.Command):
"""Executes 'step' and skips frames irrelevant to the application / the ones without debug information."""
def __init__(self):
self.__doc__ = 'Executes "step" and skips runtime frames as much as possible.'
super(ompd_step, self).__init__("ompd step", gdb.COMMAND_STACK)
class TaskBeginBp(gdb.Breakpoint):
"""Helper class. Defines stop function for breakpoint ompd_bp_task_begin."""
def stop(self):
try:
code_line = curr_thread().get_current_task().get_task_function()
frame_fct_bp = TempFrameFunctionBp(
("*%i" % code_line), temporary=True, internal=True
)
frame_fct_bp.thread = self.thread
return False
except:
return False
def invoke(self, arg, from_tty):
global in_task_function
if init_error():
return
tbp = self.TaskBeginBp("ompd_bp_task_begin", temporary=True, internal=True)
tbp.thread = int(gdb.selected_thread().num)
print_and_exec("step")
while gdb.selected_frame().find_sal().symtab is None:
if not in_task_function:
print_and_exec("finish")
else:
print_and_exec("si")
def init_error():
global addr_space
if (gdb.selected_thread() is None) or (addr_space is None) or (not addr_space):
print("Run 'ompd init' before running any of the ompd commands")
return True
return False
def main():
ompd()
ompd_init()
ompd_threads()
ompd_icvs()
ompd_parallel_region()
ompd_test()
ompdtestapi()
ompd_taskframes()
ompd_bt()
ompd_step()
if __name__ == "__main__":
try:
main()
except:
traceback.print_exc()
# NOTE: test code using:
# OMP_NUM_THREADS=... gdb a.out -x ../../projects/gdb_plugin/gdb-ompd/__init__.py
# ompd init
# ompd threads
|