* gnu/regexp/CharIndexedReader.java: Removed.
[official-gcc.git] / gcc / gdbinit.in
blob753cd9e73bc75d05e8219e9a5a1f941ffa9e2760
1 define pr
2 set debug_rtx ($)
3 end
5 document pr
6 Print the full structure of the rtx that is $.
7 Works only when an inferior is executing.
8 end
10 define prl
11 set debug_rtx_list ($, debug_rtx_count)
12 end
14 document prl
15 Print the full structure of all rtx insns beginning at $.
16 Works only when an inferior is executing.
17 Uses variable debug_rtx_count to control number of insns printed:
18   debug_rtx_count > 0: print from $ on.
19   debug_rtx_count < 0: print a window around $.
21 There is also debug_rtx_find (rtx, uid) that will scan a list for UID and print
22 it using debug_rtx_list. Usage example: set $foo=debug_rtx_find(first, 42)
23 end
25 define pt
26 set debug_tree ($)
27 end
29 document pt
30 Print the full structure of the tree that is $.
31 Works only when an inferior is executing.
32 end
34 define pct
35 set debug_c_tree ($)
36 end
38 document pct
39 Print the tree that is $ in C syntax.
40 Works only when an inferior is executing.
41 end
43 define pgs
44 set debug_generic_stmt ($)
45 end
47 document pgs
48 Print the statement that is $ in C syntax.
49 Works only when an inferior is executing.
50 end
52 define pge
53 set debug_generic_expr ($)
54 end
56 document pge
57 Print the expression that is $ in C syntax.
58 Works only when an inferior is executing.
59 end
61 define ptc
62 output (enum tree_code) $.common.code
63 echo \n
64 end
66 document ptc
67 Print the tree-code of the tree node that is $.
68 end
70 define pdn
71 output $.decl.name->identifier.id.str
72 echo \n
73 end
75 document pdn
76 Print the name of the decl-node that is $.
77 end
79 define ptn
80 output $.type.name->decl.name->identifier.id.str
81 echo \n
82 end
84 document ptn
85 Print the name of the type-node that is $.
86 end
88 define prc
89 output (enum rtx_code) $.code
90 echo \ (
91 output $.mode
92 echo )\n
93 end
95 document prc
96 Print the rtx-code and machine mode of the rtx that is $.
97 end
99 define pi
100 print $.u.fld[0].rtx@7
103 document pi
104 Print the fields of an instruction that is $.
107 define pbs
108 set print_binding_stack ()
111 document pbs
112 In cc1plus, print the current binding stack, frame by frame, up to and
113 including the global binding level.
116 # Put breakpoints at exit and fancy_abort in case abort is mapped
117 # to either fprintf/exit or fancy_abort.
118 b fancy_abort
120 # Make gdb complain about symbol reading errors.  This is so that gcc
121 # developers can see and fix bugs in gcc debug output.
122 set complaints 20
124 # Don't let abort actually run, as it will make
125 # stdio stop working and therefore the `pr' command above as well.
126 # Put this last because gcc does not reference it any more unless
127 # USE_SYSTEM_ABORT is defined, so gdb may complain and bail out.
128 b exit
129 b abort