blob: 946ebef16d394a9b4a270e510ed5697919aeddf7 (
plain)
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
|
#break __gnat_raise
#break ada__exceptions__raise_exception
break __gnat_raise_nodefer_with_msg
define pt
call disp_tree ($arg0, 0, 0)
end
document pt
Print the structure of the iirs that is $arg0.
end
define prt
set lang c
print (iirs__iir *) $
set lang ada
end
define pl
call disp_tree_list ($arg0, 0, 0)
end
document pl
Print the list of iirs that is $arg0.
end
define plf
call disp_tree_list ($arg0, 0, 1)
end
document plf
Print flatly the list of iirs that is $arg0.
end
define ptf
call disp_tree_flat ($arg0, 0)
end
document ptf
Print the iirs that is $arg0.
end
define ptf1
call disp_tree ($, 0, 1)
end
document ptf1
Print the iirs that is $.
end
define pv
call disp_value ($)
end
document pv
Print the value that is $.
end
define ploc
call disp_iir_location ($arg0.all)
end
document ploc
Print the location for iir_acc $.
end
set lang ada
#break exception
|