diff options
author | Pedro Alves <pedro@palves.net> | 2020-09-13 18:02:19 +0100 |
---|---|---|
committer | Pedro Alves <pedro@palves.net> | 2020-09-13 18:02:19 +0100 |
commit | 6791b1172abea5867268c95a460aba1c66c2b6b0 (patch) | |
tree | d8d1f1043094a1dfa82f3cd0d7dcd03e13dac5e4 /gdb/doc | |
parent | 3b8d4c5cc045ba80cc5b095fba06287050b7ef87 (diff) | |
download | gdb-6791b1172abea5867268c95a460aba1c66c2b6b0.zip gdb-6791b1172abea5867268c95a460aba1c66c2b6b0.tar.gz gdb-6791b1172abea5867268c95a460aba1c66c2b6b0.tar.bz2 |
Add MI "-break-insert --qualified"
Currently -break-insert always creates a wildmatching breakpoint, and
there's no way to ask for a fullname match. To address that, this
patch adds the equivalent of "break -qualified" to MI:
"-break-insert --qualified".
For the testcase, curiously, it doesn't look like we have _any_
testcase that tests a breakpoint with multiple locations, and, the
existing mi_create_breakpoint / mi_make_breakpoint procedures are only
good for breakpoints with a single location. This patch thus adds a
few new companion routines to mi-support.exp for breakpoints with
multiple locations: mi_create_breakpoint_multi,
mi_make_breakpoint_loc, mi_make_breakpoint_multi.
gdb/ChangeLog:
* NEWS: Document "-break-insert --qualified".
* mi/mi-cmd-break.c (mi_cmd_break_insert_1): Handle "--qualified".
gdb/doc/ChangeLog:
* gdb.texinfo (GDB/MI Breakpoint Commands): Document
"-break-insert --qualified" and "-dprintf-insert --qualified".
gdb/testsuite/ChangeLog:
* gdb.mi/mi-break-qualified.cc: New file.
* gdb.mi/mi-break-qualified.exp: New file.
* lib/mi-support.exp (mi_create_breakpoint_multi)
(mi_make_breakpoint_loc, mi_make_breakpoint_multi): New
procedures.
(mi_create_breakpoint_1): New, factored out from
mi_create_breakpoint.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 12 |
2 files changed, 13 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index badf7ae..bfb330d 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2020-09-13 Pedro Alves <pedro@palves.net> + + * gdb.texinfo (GDB/MI Breakpoint Commands): Document + "-break-insert --qualified" and "-dprintf-insert --qualified". + 2020-08-25 Shahab Vahedi <shahab@synopsys.com> * gdb.texinfo (Synopsys ARC): Document LP_START, LP_END and BTA. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 77c5d89..8bff27c 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -30180,7 +30180,7 @@ N.A. @subsubheading Synopsis @smallexample - -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] + -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] [ --qualified ] [ -c @var{condition} ] [ -i @var{ignore-count} ] [ -p @var{thread-id} ] [ @var{location} ] @end smallexample @@ -30242,6 +30242,9 @@ Initialize the @var{ignore-count}. @item -p @var{thread-id} Restrict the breakpoint to the thread with the specified global @var{thread-id}. +@item --qualified +This option makes @value{GDBN} interpret a function name specified as +a complete fully-qualified name. @end table @subsubheading Result @@ -30302,15 +30305,16 @@ times="0"@}]@} @subsubheading Synopsis @smallexample - -dprintf-insert [ -t ] [ -f ] [ -d ] + -dprintf-insert [ -t ] [ -f ] [ -d ] [ --qualified ] [ -c @var{condition} ] [ -i @var{ignore-count} ] [ -p @var{thread-id} ] [ @var{location} ] [ @var{format} ] [ @var{argument} ] @end smallexample @noindent -If supplied, @var{location} may be specified the same way as for -the @code{-break-insert} command. @xref{-break-insert}. +If supplied, @var{location} and @code{--qualified} may be specified +the same way as for the @code{-break-insert} command. +@xref{-break-insert}. The possible optional parameters of this command are: |