public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
@ 2022-04-17 15:53 Philippe Waroquiers
  2022-04-17 16:14 ` Eli Zaretskii
  2022-04-29 16:26 ` Philippe Waroquiers
  0 siblings, 2 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-04-17 15:53 UTC (permalink / raw)
  To: gdb-patches

Before this patch, when a breakpoint that has multiple locations is reached,
GDB printed:
  Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5

This patch changes the message so that bkpt_print_id prints the precise
encountered breakpoint:
  Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5

In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
  locno is printed when the breakpoint has more than one location.
Note that according to the GDB user manual node 'GDB/MI Development and Front
Ends', it is ok to add new fields without changing the MI version.

Also, when a breakpoint is reached, the convenience variables
$bkptno and $locno are set to the encountered breakpoint number
and location number.

$bkptno and $locno can a.o. be used in the command list of a breakpoint,
to disable the specific encountered breakpoint, e.g.
   disable $bkptno.$locno

In case the breakpoint has only one location, $locno is still set to
the value 1, so as to allow a command such as:
  disable $bkptno.$locno
even when the breakpoint has only one location.

This also fixes a strange behaviour: when a breakpoint X has only
one location,
  enable|disable X.1
is accepted but transforms the breakpoint in a multiple locations
breakpoint having only one location.
---
 gdb/NEWS                                      | 19 ++++
 gdb/ada-lang.c                                |  2 +-
 gdb/break-catch-syscall.c                     |  2 +-
 gdb/break-catch-throw.c                       |  2 +-
 gdb/breakpoint.c                              | 95 +++++++++++++++----
 gdb/breakpoint.h                              | 14 +++
 gdb/doc/gdb.texinfo                           | 27 +++++-
 gdb/infrun.c                                  | 16 +++-
 gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
 gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
 .../gdb.base/condbreak-multi-context.exp      |  8 +-
 gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
 gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
 gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
 gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
 gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
 gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
 gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
 gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
 gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
 .../gdb.mi/interrupt-thread-group.exp         |  2 +-
 .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
 gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
 .../gdb.multi/run-only-second-inf.exp         |  2 +-
 .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
 gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
 gdb/testsuite/lib/gdb.exp                     | 17 +++-
 gdb/testsuite/lib/mi-support.exp              | 20 +++-
 28 files changed, 284 insertions(+), 95 deletions(-)

diff --git a/gdb/NEWS b/gdb/NEWS
index 760cb2b7abc..673607dfbb3 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -14,6 +14,20 @@
   emit to indicate where a breakpoint should be placed to break in a function
   past its prologue.
 
+* When a breakpoint with multiple locations is hit, GDB now also prints the location
+  using the syntax <breakpoint_number>.<location_number> such as in:
+     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
+
+* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
+  $locno to the hit breakpoint number and location number.
+  This allows to disable the last hit breakpoint using for example
+     (gdb) disable $bkptno
+   or
+     (gdb) disable $bkptno.$locno
+  These commands can be used inside the command list of a breakpoint to
+  automatically disable the just encountered breakpoint (or breakpoint
+  specific location).
+
 * New commands
 
 maintenance set ignore-prologue-end-flag on|off
@@ -30,6 +44,11 @@ maintenance info line-table
   entry corresponds to an address where a breakpoint should be placed
   to be at the first instruction past a function's prologue.
 
+* MI changes
+
+ ** The 'breakpoint-hit' stopped reason async record now contains an optional field
+    locno giving the location number when the breakpoint has multiple locations.
+
 * Python API
 
   ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 7623d0eb48d..58ed9e698f7 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
 
   uiout->text (b->disposition == disp_del
 	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
-  uiout->field_signed ("bkptno", b->number);
+  print_num_locno (bs, uiout);
   uiout->text (", ");
 
   /* ada_exception_name_addr relies on the selected frame being the
diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
index 515a9577bb1..d7bc0625a74 100644
--- a/gdb/break-catch-syscall.c
+++ b/gdb/break-catch-syscall.c
@@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
 						: EXEC_ASYNC_SYSCALL_RETURN));
       uiout->field_string ("disp", bpdisp_text (b->disposition));
     }
-  uiout->field_signed ("bkptno", b->number);
+  print_num_locno (bs, uiout);
 
   if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
     uiout->text (" (call to syscall ");
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
index d98baf47d6d..7af37b4d2da 100644
--- a/gdb/break-catch-throw.c
+++ b/gdb/break-catch-throw.c
@@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
   bp_temp = b->disposition == disp_del;
   uiout->text (bp_temp ? "Temporary catchpoint "
 		       : "Catchpoint ");
-  uiout->field_signed ("bkptno", b->number);
+  print_num_locno (bs, uiout);
   uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
 		: (kind == EX_EVENT_CATCH ? " (exception caught), "
 		   : " (exception rethrown), ")));
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 1a227e5d120..a7d74d598db 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -687,6 +687,19 @@ get_breakpoint (int num)
   return nullptr;
 }
 
+/* Return TRUE if NUM refer to an existing breakpoint that has
+   multiple locations.  */
+
+static bool
+has_multiple_locations (int num)
+{
+  for (breakpoint *b : all_breakpoints ())
+    if (b->number == num)
+      return b->loc != nullptr && b->loc->next != nullptr;
+
+  return false;
+}
+
 \f
 
 /* Mark locations as "conditions have changed" in case the target supports
@@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
   return false;
 }
 
-/* Put in *NUM the breakpoint number of the first breakpoint we are
-   stopped at.  *BSP upon return is a bpstat which points to the
-   remaining breakpoints stopped at (but which is not guaranteed to be
-   good for anything but further calls to bpstat_num).
-
-   Return 0 if passed a bpstat which does not indicate any breakpoints.
-   Return -1 if stopped at a breakpoint that has been deleted since
-   we set it.
-   Return 1 otherwise.  */
+/* See breakpoint.h.  */
 
 int
 bpstat_num (bpstat **bsp, int *num)
@@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
   return 1;
 }
 
+/* See breakpoint.h  */
+
+int
+bpstat_locno (bpstat *bs)
+{
+  const struct breakpoint *b = bs->breakpoint_at;
+  const struct bp_location *bl = bs->bp_location_at.get ();
+
+  int locno = 0;
+
+  if (b != nullptr && b->loc->next != nullptr)
+    {
+      const bp_location *bl_i;
+
+      for (bl_i = b->loc;
+	   bl_i != bl && bl_i->next != nullptr;
+	   bl_i = bl_i->next)
+	locno++;
+
+      if (bl_i == bl)
+	locno++;
+      else
+	{
+	  warning (_("location number not found for breakpoint %d address %p."),
+		   b->number, paddress (bl->gdbarch, bl->address));
+	  locno = 0;
+	}
+    }
+
+  return locno;
+}
+
+/* See breakpoint.h.  */
+
+void
+print_num_locno (bpstat *bs, struct ui_out *uiout)
+{
+  struct breakpoint *b = bs->breakpoint_at;
+
+  if (b == nullptr)
+    uiout->text (_("deleted breakpoint"));
+  else
+    {
+      uiout->field_signed ("bkptno", b->number);
+
+      int locno = bpstat_locno (bs);
+      if (locno != 0)
+	uiout->message (".%pF", signed_field ("locno", locno));
+    }
+}
+
 /* See breakpoint.h.  */
 
 void
@@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
     uiout->text ("Temporary catchpoint ");
   else
     uiout->text ("Catchpoint ");
-  uiout->field_signed ("bkptno", b->number);
+  print_num_locno (bs, uiout);
   uiout->text ("\n");
   if (uiout->is_mi_like_p ())
     uiout->field_string ("disp", bpdisp_text (b->disposition));
@@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
 		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
       uiout->field_string ("disp", bpdisp_text (b->disposition));
     }
-  uiout->field_signed ("bkptno", b->number);
+  print_num_locno (bs, uiout);
   uiout->text (", ");
 
   return PRINT_SRC_AND_LOC;
@@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
 			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
       uiout->field_string ("disp", bpdisp_text (b->disposition));
     }
+
   if (bp_temp)
-    uiout->message ("Temporary breakpoint %pF, ",
-		    signed_field ("bkptno", b->number));
+    uiout->text ("Temporary breakpoint ");
   else
-    uiout->message ("Breakpoint %pF, ",
-		    signed_field ("bkptno", b->number));
+    uiout->text ("Breakpoint ");
+  print_num_locno (bs, uiout);
+  uiout->text (", ");
 
   return PRINT_SRC_AND_LOC;
 }
@@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
 	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
 
 	  if (bp_loc_range.first == bp_loc_range.second
-	      && bp_loc_range.first == 0)
+	      && (bp_loc_range.first == 0
+		  || (bp_loc_range.first == 1
+		      && bp_num_range.first == bp_num_range.second
+		      && !has_multiple_locations (bp_num_range.first))))
 	    {
-	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
+	      /* Handle breakpoint ids with formats 'x' or 'x-z'
+		 or 'y.1' where y has only one location.  */
 	      map_breakpoint_number_range (bp_num_range,
 					   enable
 					   ? enable_breakpoint
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
index e412c4d4113..264ed5f1a4d 100644
--- a/gdb/breakpoint.h
+++ b/gdb/breakpoint.h
@@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
    Return 1 otherwise.  */
 extern int bpstat_num (bpstat **, int *);
 
+/* If BS indicates a breakpoint and this breakpoint has several locations,
+   return the location number of BS, otherwise return 0.  */
+
+extern int bpstat_locno (bpstat *bs);
+
+/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
+
+   For a breakpoint with only one location, outputs the signed field "bkpno"
+   breakpoint number of BS (as returned by bpstat_num).
+   If BS has several locations, outputs a '.' character followed by
+   the signed field "locno" (as returned by bpstat_locno).  */
+
+extern void print_num_locno (bpstat *bs, struct ui_out *);
+
 /* Perform actions associated with the stopped inferior.  Actually, we
    just use this for breakpoint commands.  Perhaps other actions will
    go here later, but this is executed at a late time (from the
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index c1e9b09e833..8408928648e 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -4338,9 +4338,15 @@ are operated on.
 @cindex latest breakpoint
 Breakpoints are set with the @code{break} command (abbreviated
 @code{b}).  The debugger convenience variable @samp{$bpnum} records the
-number of the breakpoint you've set most recently; see @ref{Convenience
-Vars,, Convenience Variables}, for a discussion of what you can do with
-convenience variables.
+number of the breakpoint you've set most recently.
+A breakpoint may be mapped to multiple locations for example with
+inlined functions, Ada generics, c++ templates or overloaded function names.
+
+When your program stops on a breakpoint, the convenience variables
+@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
+the encountered breakpoint and the number of the breakpoint location.
+You can typically use these variables in a breakpoint command list.
+(@pxref{Break Commands, ,Breakpoint Command Lists})
 
 @table @code
 @item break @var{location}
@@ -5724,6 +5730,18 @@ Expressions}).
 Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
 disabled within a @var{command-list}.
 
+Inside a command list, you can use the command
+@smallexample
+disable $bkptno
+@end smallexample
+to disable the encountered breakpoint.
+
+If your breakpoint has several locations, the command
+@smallexample
+disable $bkptno.$locno
+@end smallexample
+will disable the specific breakpoint location encountered.
+
 You can use breakpoint commands to start your program up again.  Simply
 use the @code{continue} command, or @code{step}, or any other command
 that resumes execution.
@@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
 specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
 ignored in all-stop mode.  If the @samp{--thread-group} options is
 specified, then all threads in that thread group are resumed.
+For a @samp{breakpoint-hit} stopped reason, when the breakpoint
+encountered has multiple locations, the field @samp{bkptno} is
+followed by the field @samp{locno}.
 
 @subsubheading @value{GDBN} Command
 
diff --git a/gdb/infrun.c b/gdb/infrun.c
index c311240b78c..62c61167dd4 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
      LOCATION: Print only location
      SRC_AND_LOC: Print location and source line.  */
   if (do_frame_printing)
-    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
+    {
+      if (tp->control.stop_bpstat != nullptr)
+	{
+	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
+
+	  if (b != nullptr)
+	    {
+	      int locno = bpstat_locno (tp->control.stop_bpstat);
+	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
+	      set_internalvar_integer (lookup_internalvar ("locno"),
+				       (locno > 0 ? locno : 1));
+	    }
+	}
+      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
+    }
 }
 
 /* See infrun.h.  */
diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
index 076e8c2425f..3f94c163819 100644
--- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
+++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
@@ -42,7 +42,7 @@ gdb_test "break read_small" \
 for {set i 0} {$i < 4} {incr i} {
     with_test_prefix "iteration $i" {
 	gdb_test "continue" \
-	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
+	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
 	    "stopped in read_small"
     }
 }
diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
index 655e7af479f..e3928419ed6 100644
--- a/gdb/testsuite/gdb.ada/operator_bp.exp
+++ b/gdb/testsuite/gdb.ada/operator_bp.exp
@@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
     set op_re [string_to_regexp $op]
     gdb_test "continue" \
-             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
+             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
              "continue to \"$op\""
 }
 
@@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
 foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
     set op_re [string_to_regexp $op]
     gdb_test "continue" \
-             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
+             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
              "continue to ops.\"$op\""
 }
 
diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
index b540df973a3..742315178e3 100644
--- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
+++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
@@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
     gdb_run_cmd
 
     # Check our conditional breakpoints.
-    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
+    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
 	"run until A::func"
     gdb_test "print a" " = 10"
 
-    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
+    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
 	"run until C::func"
     gdb_test "print c" " = 30"
 
@@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
     gdb_run_cmd
 
     # Check that we hit enabled locations only.
-    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
+    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
 	"run until A::func"
     gdb_test "print a" " = 10"
 
-    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
+    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
 	"run until C::func"
     gdb_test "print c" " = 30"
 
diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
index 9c010f54d79..0b589a7d6e6 100644
--- a/gdb/testsuite/gdb.base/ctxobj.exp
+++ b/gdb/testsuite/gdb.base/ctxobj.exp
@@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
          "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
          "break in get_version functions"
 
-gdb_test "continue" \
-         "Breakpoint $decimal, get_version_1 \\(\\).*" \
-         "continue to get_version_1"
+global expect_out
+set test "continue to get_version_1"
+gdb_test_multiple "continue" $test {
+    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
+	set bpno $expect_out(1,string)
+	pass $test
+    }
+}
+# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
+gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
 
 # Try printing "this_version_num".  There are two global variables
 # with that name, and some systems such as GNU/Linux merge them
@@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
         "print libctxobj1's this_version_num from symtab"
 
 # Do the same, but from get_version_2.
-
-gdb_test "continue" \
-         "Breakpoint $decimal, get_version_2 \\(\\).*" \
-         "continue to get_version_2"
+set test "continue to get_version_2"
+gdb_test_multiple "continue" $test {
+    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
+	set bpno $expect_out(1,string)
+	pass $test
+    }
+}
+# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
+gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
 
 gdb_test "print this_version_num == v" \
          " = 1" \
diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
index 24925cf7185..ba5804f576f 100644
--- a/gdb/testsuite/gdb.base/ena-dis-br.exp
+++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
@@ -67,14 +67,21 @@ gdb_test "info break $bp" \
 # See the comments in condbreak.exp for "run until breakpoint at
 # marker1" for an explanation of the xfail below.
 set test "continue to break marker1"
+set bpno 0
 gdb_test_multiple "continue" "$test" {
-    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
+    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
+	set bpno $expect_out(1,string)
 	pass "$test"
     }
-    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
+    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
+	set bpno $expect_out(1,string)
 	xfail "$test"
     }
 }
+# Verify the $bkptno convenience variable is equal to the hit bpno.
+gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
+# Verify the $locno is 1, as there is only one location.
+gdb_test "print \$locno" " = 1" "$test \$locno is 1"
 
 gdb_test_no_output "delete $bp" "delete break marker1"
 
@@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
 }
 
 # Perform tests for disable/enable commands on multiple
-# locations and breakpoints.
+# locations and breakpoints.  If a breakpoint has only one location,
+# enable/disable num  and enable/disable num.1 should be equivalent.
 #
 # WHAT - the command to test (disable/enable).
 #
@@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
     global b3
     global b4
     global gdb_prompt
-    
+
     # OPPOS    - the command opposite to WHAT.
     # WHAT_RES - whether breakpoints are expected to end
     #            up enabled or disabled.
@@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
 	set p2 "pass"
     }
 
-    # Now enable(disable) $b.1 $b2.1.
+    # Now enable(disable) $b1.1 $b2.1.
     gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
     set test1 "${what}d \$b1.1 and \$b2.1"
 
     # Now $b1.1 and $b2.1 should be enabled(disabled).
     gdb_test_multiple "info break" "$test1" {
-       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
+       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
            $p1 "$test1"
        }
        -re ".*$gdb_prompt $" {
@@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
        "${what}d \$b1"
 
     gdb_test_no_output "$oppos $b3" "$oppos \$b3"
+    # Now $b4 $b3 should be enabled(disabled)
+    set test1 "${what}d \$b4 and \$b3"
+    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
+
     gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
-    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
+    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
+
+    # Now $b4 $b3 should be enabled(disabled)
+    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
 
-    # Now $b4 $b3.1 should be enabled(disabled) and
-    # $b3 should remain disabled(enabled).
-    gdb_test_multiple "info break" "$test1" {
-       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
-           $p1 "$test1"
-       }
-       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
-           $p2 "$test1"
-       }
-    }
 
     # Now enable(disable) '$b4.1 fooobaar'.  This should error on
     # fooobaar.
@@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
 
     # $b4.1 should be enabled(disabled).
     gdb_test_multiple "info break" "$test1" {
-        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
+        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
            $p1 "$test1"
        }
        -re ".*$gdb_prompt $" {
diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
index 986e46ecd61..6ddf6749511 100644
--- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
+++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
@@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
 # before re-running.
 
 proc do_follow_exec_mode_tests { mode cmd infswitch } {
-    global binfile srcfile srcfile2 testfile testfile2
+    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
     global gdb_prompt
 
     with_test_prefix "$mode,$cmd,$infswitch" {
@@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
 	# Set up the output we expect to see after we execute past the exec.
 	#
 	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
-	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
+	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
 
 	# Set a breakpoint after the exec call if we aren't single-stepping
 	# past it.
@@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
 		send_gdb "y\n"
 		exp_continue
 	    }
-	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
+	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
 		pass $test
 	    }
 	}
diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
index efc357d39a2..19e9d3a5537 100644
--- a/gdb/testsuite/gdb.base/pie-fork.exp
+++ b/gdb/testsuite/gdb.base/pie-fork.exp
@@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
 proc_with_prefix test_no_detach_on_fork {} {
     setup_test "off"
 
-    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
+    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
 	     "continue from thread 1.1"
     gdb_test "thread 2.1"
-    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
+    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
 	     "continue from thread 2.1"
 }
 
diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
index 936bb080e3b..143bcfa1a94 100644
--- a/gdb/testsuite/gdb.base/step-over-exit.exp
+++ b/gdb/testsuite/gdb.base/step-over-exit.exp
@@ -91,7 +91,7 @@ delete_breakpoints
 
 gdb_test "break marker"
 
-gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
+gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
     "continue to marker, first time"
 
 # Step 2, create a breakpoint which evaluates false, and force it
@@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
 # Switch back to the parent process, continue to the marker to
 # test GDBserver's state is still correct.
 
-gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
+gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
     "continue to marker, second time"
diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
index 47a2a5dcb7c..fa098602c31 100644
--- a/gdb/testsuite/gdb.cp/mb-inline.exp
+++ b/gdb/testsuite/gdb.cp/mb-inline.exp
@@ -46,7 +46,7 @@ gdb_test "info break" \
     "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
 
 gdb_run_cmd
-gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
+gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
 
 gdb_test "continue" \
     ".*Breakpoint.*foo \\(i=1\\).*" \
@@ -59,7 +59,7 @@ gdb_test "continue" \
 gdb_test_no_output "disable 1.2" "disabling location: disable"
 
 gdb_run_cmd
-gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
+gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
 
 gdb_test_multiple "info break" "disabled breakpoint 1.2" {
     -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
index 6c988e7335e..0c0d46fcb7a 100644
--- a/gdb/testsuite/gdb.cp/mb-templates.exp
+++ b/gdb/testsuite/gdb.cp/mb-templates.exp
@@ -42,7 +42,7 @@ gdb_run_cmd
 
 set test "initial condition: run to breakpoint"
 gdb_test_multiple "" $test {
-    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
+    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
 	pass $test
 	break
     }
@@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
     "separate condition: set condition"
     
 gdb_run_cmd
-gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
+gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
 
 gdb_test "continue" \
     ".*Breakpoint.*foo<double> \\(i=1\\).*" \
@@ -79,7 +79,7 @@ gdb_test "continue" \
 gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
 
 gdb_run_cmd
-gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
+gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
 
 # Try disabling entire breakpoint
 gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
index 2fc650e215f..98afe07d6b6 100644
--- a/gdb/testsuite/gdb.cp/ovldbreak.exp
+++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
@@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
 
 # Run through each breakpoint.
 proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
-    global gdb_prompt hex decimal srcfile
+    global gdb_prompt hex decimal srcfile bkptno_num_re
 
     if {$argument == ""} {
         set actuals ""
@@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
     }
 
     gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
-        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
+        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
             pass "continue to bp overloaded : $argtype"
         }
 
-        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
+        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
             if $might_kfail {
                 kfail "c++/8130" "continue to bp overloaded : $argtype"
             } else {
diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
index 6db8bf0df50..30eb6038f3a 100644
--- a/gdb/testsuite/gdb.gdb/python-helper.exp
+++ b/gdb/testsuite/gdb.gdb/python-helper.exp
@@ -49,7 +49,7 @@ gdb_exit
 # The main test.  This is called by the self-test framework once GDB
 # has been started on a copy of itself.
 proc test_python_helper {} {
-    global py_helper_script decimal hex gdb_prompt
+    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
     global inferior_spawn_id
 
     # Source the python helper script.  This script registers the
@@ -233,7 +233,7 @@ proc test_python_helper {} {
     # GDB stopping at the value_print breakpoint again.
     send_inferior "ptype global_c\n"
     gdb_test_multiple "" "hit breakpoint in outer gdb again" {
-	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
+	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
 	    pass $gdb_test_name
 	}
     }
diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
index 19ccbe85e04..c080955049c 100644
--- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
+++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
@@ -69,7 +69,7 @@ if { $use_second_inferior } {
 	"\\^running.*" \
 	"run inferior 2"
 
-    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
+    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
 	"inferior i2 stops at all_threads_started"
 
     mi_send_resuming_command "exec-continue --thread-group i2" \
diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
index 9444ca5acf4..7435778473a 100644
--- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
+++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
@@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
 
 	    # Consume MI event output.
 	    with_spawn_id $mi_spawn_id {
-		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
-		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
+		if { $inf == 1 } {
+		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
+			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
+		} else {
+		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
+			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
+		}
 	    }
 
 	    if { $mode == "all-stop" } {
@@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
 
 		    # Consume MI output.
 		    with_spawn_id $mi_spawn_id {
-			mi_expect_stop "breakpoint-hit" "child_sub_function" \
-			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
-			    "thread $inf.$thread stops MI"
+			if { $inf == 1} {
+			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
+				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
+				"thread $inf.$thread stops MI"
+			} else {
+			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
+				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
+				"thread $inf.$thread stops MI"
+			}
 		    }
 		}
 
@@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
 
 		# Consume MI output.
 		with_spawn_id $mi_spawn_id {
-		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
-			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
-			"thread $inf.2 stops MI"
+		    if { $inf == 1} {
+			mi_expect_stop "breakpoint-hit" "child_sub_function" \
+			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
+			    "thread $inf.2 stops MI"
+		    } else {
+			mi_expect_stop "breakpoint-hit" "child_sub_function" \
+			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
+			    "thread $inf.2 stops MI"
+		    }
 		}
 	    }
 	}
@@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
 
 	with_spawn_id $mi_spawn_id {
 	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
-		{"" "disp=\"del\""} "main stop"
+		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
 	}
 
 	# Consume CLI output.
diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
index a1496fb5571..dfdb746c65e 100644
--- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
+++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
@@ -148,6 +148,7 @@ proc build_executables { first_arch } {
 }
 
 proc do_test { first_arch mode selected_thread } {
+        global bkptno_numopt_re
 	set from_exec "$first_arch-multi-arch-exec"
 
 	clean_restart ${from_exec}
@@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
 
 	# Test that GDB updates the target description / arch successfuly
 	# after the exec.
-	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
+	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
 }
 
 # Test both arch1=>arch2 and arch2=>arch1.
diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
index fec2575f904..b94689d0bfa 100644
--- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
+++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
@@ -46,5 +46,5 @@ gdb_load $binfile
 if {[gdb_start_cmd] < 0} {
     fail "start the second inf"
 } else {
-    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
+    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
 }
diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
index cbccba19d12..3c079facced 100644
--- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
+++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
@@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
 # child.  Can be either "kill", "detach", or "exit" (to continue it to
 # normal exit).
 proc do_test {dispose} {
-    global binfile
+    global binfile bkptno_numopt_re
 
     clean_restart $binfile
 
@@ -77,7 +77,7 @@ proc do_test {dispose} {
     #  Command aborted.
     #  (gdb)
     #
-    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
+    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
 	"continue in inferior 1"
 }
 
diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
index e4329dca6c2..0fc1bee762f 100644
--- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
+++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
@@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
 	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
 	"catch c on inferior 2"
 
-    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
+    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
 
     gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
 
     gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
 }
 
-gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
+gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 7c35fbb18c4..a53d929be02 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
 # E.g., $1, $2, etc.
 set valnum_re "\\\$$decimal"
 
+# A regular expression that matches a breakpoint hit with a breakpoint
+# having several locations
+set bkptno_num_re "$decimal\\.$decimal"
+
+# A regular expression that matches a breakpoint hit
+# with one or several locations.
+set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
+
 ### Only procedures should come after this point.
 
 #
@@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
 
 proc runto { linespec args } {
     global gdb_prompt
+    global bkptno_numopt_re
     global decimal
 
     delete_breakpoints
@@ -699,7 +708,13 @@ proc runto { linespec args } {
 	    }
 	    return 1
 	}
-	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
+	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
+	    if { $print_pass } {
+		pass $test_name
+	    }
+	    return 1
+	}
+	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
 	    if { $print_pass } {
 		pass $test_name
 	    }
diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
index 857a04519cf..36a586f63a4 100644
--- a/gdb/testsuite/lib/mi-support.exp
+++ b/gdb/testsuite/lib/mi-support.exp
@@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
 # filename of a file without debug info.  ARGS should not include [] the
 # list of argument is enclosed in, and other regular expressions should
 # not include quotes.
-# If EXTRA is a list of one element, it's the regular expression
+# EXTRA can be a list of one, two or three elements.
+# The first element is the regular expression
 # for output expected right after *stopped, and before GDB prompt.
-# If EXTRA is a list of two elements, the first element is for
-# output right after *stopped, and the second element is output
-# right after reason field.  The regex after reason should not include
+# The third element is the regulation expression for the locno
+# right after bkptno field.  The locno regex should not include
 # the comma separating it from the following fields.
 #
 # When we fail to match output at all, -1 is returned.  If FILE does
@@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
 
     set after_stopped ""
     set after_reason ""
-    if { [llength $extra] == 2 } {
+    set locno ""
+    if { [llength $extra] == 3 } {
+	set after_stopped [lindex $extra 0]
+	set after_reason [lindex $extra 1]
+	set after_reason "${after_reason},"
+	set locno [lindex $extra 2]
+	set locno "${locno},"
+    } elseif { [llength $extra] == 2 } {
 	set after_stopped [lindex $extra 0]
 	set after_reason [lindex $extra 1]
 	set after_reason "${after_reason},"
@@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
     set ebn ""
     if { $reason == "breakpoint-hit" } {
 	set bn {bkptno="[0-9]+",}
+	set bn "${bn}${locno}"
     } elseif { $reason == "solib-event" } {
 	set bn ".*"
     } elseif { $reason == "exception-caught" } {
 	set ebn {bkptno="[0-9]+",}
+	set ebn "${ebn}${locno}"
 	set bn ".*"
 	set reason "breakpoint-hit"
     }
@@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
     set a $after_reason
 
     verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
+
     gdb_expect {
 	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
 	    pass "$test"
-- 
2.30.2


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-17 15:53 [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno Philippe Waroquiers
@ 2022-04-17 16:14 ` Eli Zaretskii
  2022-04-17 16:27   ` Philippe Waroquiers
  2022-04-29 16:26 ` Philippe Waroquiers
  1 sibling, 1 reply; 14+ messages in thread
From: Eli Zaretskii @ 2022-04-17 16:14 UTC (permalink / raw)
  To: Philippe Waroquiers; +Cc: gdb-patches

> Date: Sun, 17 Apr 2022 17:53:11 +0200
> From: Philippe Waroquiers via Gdb-patches <gdb-patches@sourceware.org>
> 
> Before this patch, when a breakpoint that has multiple locations is reached,
> GDB printed:
>   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> 
> This patch changes the message so that bkpt_print_id prints the precise
> encountered breakpoint:
>   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> 
> In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
>   locno is printed when the breakpoint has more than one location.
> Note that according to the GDB user manual node 'GDB/MI Development and Front
> Ends', it is ok to add new fields without changing the MI version.

Thanks.  I think this should be an optional feature.  Not everyone is
interested in the particular location that breaks.  Having to disable
the breakpoints by locations is definitely an annoyance.

> diff --git a/gdb/NEWS b/gdb/NEWS
> index 760cb2b7abc..673607dfbb3 100644
> --- a/gdb/NEWS
> +++ b/gdb/NEWS
> @@ -14,6 +14,20 @@
>    emit to indicate where a breakpoint should be placed to break in a function
>    past its prologue.
>  
> +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> +  using the syntax <breakpoint_number>.<location_number> such as in:
> +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> +
> +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> +  $locno to the hit breakpoint number and location number.
> +  This allows to disable the last hit breakpoint using for example
> +     (gdb) disable $bkptno
> +   or
> +     (gdb) disable $bkptno.$locno
> +  These commands can be used inside the command list of a breakpoint to
> +  automatically disable the just encountered breakpoint (or breakpoint
> +  specific location).
> +
>  * New commands
> [...]
> +* MI changes
> +
> + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> +    locno giving the location number when the breakpoint has multiple locations.
> +

This part is OK.

> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> index c1e9b09e833..8408928648e 100644
> --- a/gdb/doc/gdb.texinfo
> +++ b/gdb/doc/gdb.texinfo
> @@ -4338,9 +4338,15 @@ are operated on.
>  @cindex latest breakpoint
>  Breakpoints are set with the @code{break} command (abbreviated
>  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> -number of the breakpoint you've set most recently; see @ref{Convenience
> -Vars,, Convenience Variables}, for a discussion of what you can do with
> -convenience variables.
> +number of the breakpoint you've set most recently.
> +A breakpoint may be mapped to multiple locations for example with
> +inlined functions, Ada generics, c++ templates or overloaded function names.
                                    ^^^
I believe we use "C@t{++}" markup for C++ language in the manual.

> +When your program stops on a breakpoint, the convenience variables
> +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> +the encountered breakpoint and the number of the breakpoint location.

Please add here index entries for these two variables.

> +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> +encountered has multiple locations, the field @samp{bkptno} is
> +followed by the field @samp{locno}.

How about an example here?

Thanks.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-17 16:14 ` Eli Zaretskii
@ 2022-04-17 16:27   ` Philippe Waroquiers
  2022-04-17 17:55     ` Eli Zaretskii
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Waroquiers @ 2022-04-17 16:27 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: gdb-patches

Thanks for the feedback.
I will handle your comments for the RFA v2.

One question below.
Philippe

On Sun, 2022-04-17 at 19:14 +0300, Eli Zaretskii wrote:
> > Date: Sun, 17 Apr 2022 17:53:11 +0200
> > From: Philippe Waroquiers via Gdb-patches <gdb-patches@sourceware.org>
> > 
> > Before this patch, when a breakpoint that has multiple locations is reached,
> > GDB printed:
> >   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> > 
> > This patch changes the message so that bkpt_print_id prints the precise
> > encountered breakpoint:
> >   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> > 
> > In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
> >   locno is printed when the breakpoint has more than one location.
> > Note that according to the GDB user manual node 'GDB/MI Development and Front
> > Ends', it is ok to add new fields without changing the MI version.
> 
> Thanks.  I think this should be an optional feature.  Not everyone is
> interested in the particular location that breaks.  Having to disable
> the breakpoints by locations is definitely an annoyance.

For the GDB CLI, when the above message is displayed, 
the user can decide to type
   disable 1
or
   disable 1.2
or can define aliases such as
   alias bdisable = disable $bkptno
   alias ldisable = disable $bkptno.$locno
to disable the complete breakpoint or only the specific location.

I might submit a later patch to define the above aliases by default,
so that disabling the last breakpoint or location will imply only to 
type 'bd' or 'ld'.

Similarly, a front end using MI will (by default) just skip the new locno field.
So, I am not sure to understand what is the annoyance.

> 
> > diff --git a/gdb/NEWS b/gdb/NEWS
> > index 760cb2b7abc..673607dfbb3 100644
> > --- a/gdb/NEWS
> > +++ b/gdb/NEWS
> > @@ -14,6 +14,20 @@
> >    emit to indicate where a breakpoint should be placed to break in a function
> >    past its prologue.
> >  
> > +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> > +  using the syntax <breakpoint_number>.<location_number> such as in:
> > +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> > +
> > +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> > +  $locno to the hit breakpoint number and location number.
> > +  This allows to disable the last hit breakpoint using for example
> > +     (gdb) disable $bkptno
> > +   or
> > +     (gdb) disable $bkptno.$locno
> > +  These commands can be used inside the command list of a breakpoint to
> > +  automatically disable the just encountered breakpoint (or breakpoint
> > +  specific location).
> > +
> >  * New commands
> > [...]
> > +* MI changes
> > +
> > + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> > +    locno giving the location number when the breakpoint has multiple locations.
> > +
> 
> This part is OK.
> 
> > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> > index c1e9b09e833..8408928648e 100644
> > --- a/gdb/doc/gdb.texinfo
> > +++ b/gdb/doc/gdb.texinfo
> > @@ -4338,9 +4338,15 @@ are operated on.
> >  @cindex latest breakpoint
> >  Breakpoints are set with the @code{break} command (abbreviated
> >  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> > -number of the breakpoint you've set most recently; see @ref{Convenience
> > -Vars,, Convenience Variables}, for a discussion of what you can do with
> > -convenience variables.
> > +number of the breakpoint you've set most recently.
> > +A breakpoint may be mapped to multiple locations for example with
> > +inlined functions, Ada generics, c++ templates or overloaded function names.
>                                     ^^^
> I believe we use "C@t{++}" markup for C++ language in the manual.
> 
> > +When your program stops on a breakpoint, the convenience variables
> > +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> > +the encountered breakpoint and the number of the breakpoint location.
> 
> Please add here index entries for these two variables.
> 
> > +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> > +encountered has multiple locations, the field @samp{bkptno} is
> > +followed by the field @samp{locno}.
> 
> How about an example here?
> 
> Thanks.



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-17 16:27   ` Philippe Waroquiers
@ 2022-04-17 17:55     ` Eli Zaretskii
  0 siblings, 0 replies; 14+ messages in thread
From: Eli Zaretskii @ 2022-04-17 17:55 UTC (permalink / raw)
  To: Philippe Waroquiers; +Cc: gdb-patches

> From: Philippe Waroquiers <philippe.waroquiers@skynet.be>
> Cc: gdb-patches@sourceware.org
> Date: Sun, 17 Apr 2022 18:27:54 +0200
> 
> > Thanks.  I think this should be an optional feature.  Not everyone is
> > interested in the particular location that breaks.  Having to disable
> > the breakpoints by locations is definitely an annoyance.
> 
> For the GDB CLI, when the above message is displayed, 
> the user can decide to type
>    disable 1
> or
>    disable 1.2
> or can define aliases such as
>    alias bdisable = disable $bkptno
>    alias ldisable = disable $bkptno.$locno
> to disable the complete breakpoint or only the specific location.

This was not clear from the description.  I think we should make it
clear in the manual.

> I might submit a later patch to define the above aliases by default,
> so that disabling the last breakpoint or location will imply only to 
> type 'bd' or 'ld'.
> 
> Similarly, a front end using MI will (by default) just skip the new locno field.
> So, I am not sure to understand what is the annoyance.

I'm not sure everyone will want to see the likes of

  Thread 1 "foobar" hit breakpoint 10.42, some_func () at ...

But that's MO; I'd be interested in opinions of others.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-17 15:53 [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno Philippe Waroquiers
  2022-04-17 16:14 ` Eli Zaretskii
@ 2022-04-29 16:26 ` Philippe Waroquiers
  2022-05-07  5:44   ` Philippe Waroquiers
                     ` (3 more replies)
  1 sibling, 4 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-04-29 16:26 UTC (permalink / raw)
  To: gdb-patches

Ping ?
(doc was reviewed by Eli already, I will handle his comments in V2).

In the meantime, I did a small "opinion poll" at my work about the display
of breakpoint nr and location nr in the breakpoint hit message.

Below is the detailed feedback, summary is that everybody prefers
to see the breakpoint and location number, and does not see a (real)
need to have this configurable.

Thanks
Philippe
 

GDB should always display 1.6:
------------------------------
* because this is consistent with the output of info breakpoint
  and obeys the Principle of Least Astonishment

* Same.

* Sounds good. Does not see why this should be user configurable
  but does not object to have an option (with default on).

* always show information.

* always show information.

GDB should have a config option to display 1.6, default on:
-----------------------------------------------------------
* consistent with 'info breakpoint', immediately informs the user about
  something in a way which is not confusing.
  Option to control it might be useful if someone parses the 'breakpoint hit' messages
  (but which is not something that should be done)

GDB should have a config option to display 1.6, default off:
------------------------------------------------------------


On Sun, 2022-04-17 at 17:53 +0200, Philippe Waroquiers wrote:
> Before this patch, when a breakpoint that has multiple locations is reached,
> GDB printed:
>   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> 
> This patch changes the message so that bkpt_print_id prints the precise
> encountered breakpoint:
>   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> 
> In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
>   locno is printed when the breakpoint has more than one location.
> Note that according to the GDB user manual node 'GDB/MI Development and Front
> Ends', it is ok to add new fields without changing the MI version.
> 
> Also, when a breakpoint is reached, the convenience variables
> $bkptno and $locno are set to the encountered breakpoint number
> and location number.
> 
> $bkptno and $locno can a.o. be used in the command list of a breakpoint,
> to disable the specific encountered breakpoint, e.g.
>    disable $bkptno.$locno
> 
> In case the breakpoint has only one location, $locno is still set to
> the value 1, so as to allow a command such as:
>   disable $bkptno.$locno
> even when the breakpoint has only one location.
> 
> This also fixes a strange behaviour: when a breakpoint X has only
> one location,
>   enable|disable X.1
> is accepted but transforms the breakpoint in a multiple locations
> breakpoint having only one location.
> ---
>  gdb/NEWS                                      | 19 ++++
>  gdb/ada-lang.c                                |  2 +-
>  gdb/break-catch-syscall.c                     |  2 +-
>  gdb/break-catch-throw.c                       |  2 +-
>  gdb/breakpoint.c                              | 95 +++++++++++++++----
>  gdb/breakpoint.h                              | 14 +++
>  gdb/doc/gdb.texinfo                           | 27 +++++-
>  gdb/infrun.c                                  | 16 +++-
>  gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
>  gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
>  .../gdb.base/condbreak-multi-context.exp      |  8 +-
>  gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
>  gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
>  gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
>  gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
>  gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
>  gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
>  gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
>  gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
>  gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
>  .../gdb.mi/interrupt-thread-group.exp         |  2 +-
>  .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
>  gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
>  .../gdb.multi/run-only-second-inf.exp         |  2 +-
>  .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
>  gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
>  gdb/testsuite/lib/gdb.exp                     | 17 +++-
>  gdb/testsuite/lib/mi-support.exp              | 20 +++-
>  28 files changed, 284 insertions(+), 95 deletions(-)
> 
> diff --git a/gdb/NEWS b/gdb/NEWS
> index 760cb2b7abc..673607dfbb3 100644
> --- a/gdb/NEWS
> +++ b/gdb/NEWS
> @@ -14,6 +14,20 @@
>    emit to indicate where a breakpoint should be placed to break in a function
>    past its prologue.
>  
> 
> +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> +  using the syntax <breakpoint_number>.<location_number> such as in:
> +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> +
> +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> +  $locno to the hit breakpoint number and location number.
> +  This allows to disable the last hit breakpoint using for example
> +     (gdb) disable $bkptno
> +   or
> +     (gdb) disable $bkptno.$locno
> +  These commands can be used inside the command list of a breakpoint to
> +  automatically disable the just encountered breakpoint (or breakpoint
> +  specific location).
> +
>  * New commands
>  
> 
>  maintenance set ignore-prologue-end-flag on|off
> @@ -30,6 +44,11 @@ maintenance info line-table
>    entry corresponds to an address where a breakpoint should be placed
>    to be at the first instruction past a function's prologue.
>  
> 
> +* MI changes
> +
> + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> +    locno giving the location number when the breakpoint has multiple locations.
> +
>  * Python API
>  
> 
>    ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
> diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
> index 7623d0eb48d..58ed9e698f7 100644
> --- a/gdb/ada-lang.c
> +++ b/gdb/ada-lang.c
> @@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
>  
> 
>    uiout->text (b->disposition == disp_del
>  	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
> -  uiout->field_signed ("bkptno", b->number);
> +  print_num_locno (bs, uiout);
>    uiout->text (", ");
>  
> 
>    /* ada_exception_name_addr relies on the selected frame being the
> diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
> index 515a9577bb1..d7bc0625a74 100644
> --- a/gdb/break-catch-syscall.c
> +++ b/gdb/break-catch-syscall.c
> @@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
>  						: EXEC_ASYNC_SYSCALL_RETURN));
>        uiout->field_string ("disp", bpdisp_text (b->disposition));
>      }
> -  uiout->field_signed ("bkptno", b->number);
> +  print_num_locno (bs, uiout);
>  
> 
>    if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
>      uiout->text (" (call to syscall ");
> diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
> index d98baf47d6d..7af37b4d2da 100644
> --- a/gdb/break-catch-throw.c
> +++ b/gdb/break-catch-throw.c
> @@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
>    bp_temp = b->disposition == disp_del;
>    uiout->text (bp_temp ? "Temporary catchpoint "
>  		       : "Catchpoint ");
> -  uiout->field_signed ("bkptno", b->number);
> +  print_num_locno (bs, uiout);
>    uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
>  		: (kind == EX_EVENT_CATCH ? " (exception caught), "
>  		   : " (exception rethrown), ")));
> diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
> index 1a227e5d120..a7d74d598db 100644
> --- a/gdb/breakpoint.c
> +++ b/gdb/breakpoint.c
> @@ -687,6 +687,19 @@ get_breakpoint (int num)
>    return nullptr;
>  }
>  
> 
> +/* Return TRUE if NUM refer to an existing breakpoint that has
> +   multiple locations.  */
> +
> +static bool
> +has_multiple_locations (int num)
> +{
> +  for (breakpoint *b : all_breakpoints ())
> +    if (b->number == num)
> +      return b->loc != nullptr && b->loc->next != nullptr;
> +
> +  return false;
> +}
> +
>  \f
>  
> 
>  /* Mark locations as "conditions have changed" in case the target supports
> @@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
>    return false;
>  }
>  
> 
> -/* Put in *NUM the breakpoint number of the first breakpoint we are
> -   stopped at.  *BSP upon return is a bpstat which points to the
> -   remaining breakpoints stopped at (but which is not guaranteed to be
> -   good for anything but further calls to bpstat_num).
> -
> -   Return 0 if passed a bpstat which does not indicate any breakpoints.
> -   Return -1 if stopped at a breakpoint that has been deleted since
> -   we set it.
> -   Return 1 otherwise.  */
> +/* See breakpoint.h.  */
>  
> 
>  int
>  bpstat_num (bpstat **bsp, int *num)
> @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
>    return 1;
>  }
>  
> 
> +/* See breakpoint.h  */
> +
> +int
> +bpstat_locno (bpstat *bs)
> +{
> +  const struct breakpoint *b = bs->breakpoint_at;
> +  const struct bp_location *bl = bs->bp_location_at.get ();
> +
> +  int locno = 0;
> +
> +  if (b != nullptr && b->loc->next != nullptr)
> +    {
> +      const bp_location *bl_i;
> +
> +      for (bl_i = b->loc;
> +	   bl_i != bl && bl_i->next != nullptr;
> +	   bl_i = bl_i->next)
> +	locno++;
> +
> +      if (bl_i == bl)
> +	locno++;
> +      else
> +	{
> +	  warning (_("location number not found for breakpoint %d address %p."),
> +		   b->number, paddress (bl->gdbarch, bl->address));
> +	  locno = 0;
> +	}
> +    }
> +
> +  return locno;
> +}
> +
> +/* See breakpoint.h.  */
> +
> +void
> +print_num_locno (bpstat *bs, struct ui_out *uiout)
> +{
> +  struct breakpoint *b = bs->breakpoint_at;
> +
> +  if (b == nullptr)
> +    uiout->text (_("deleted breakpoint"));
> +  else
> +    {
> +      uiout->field_signed ("bkptno", b->number);
> +
> +      int locno = bpstat_locno (bs);
> +      if (locno != 0)
> +	uiout->message (".%pF", signed_field ("locno", locno));
> +    }
> +}
> +
>  /* See breakpoint.h.  */
>  
> 
>  void
> @@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
>      uiout->text ("Temporary catchpoint ");
>    else
>      uiout->text ("Catchpoint ");
> -  uiout->field_signed ("bkptno", b->number);
> +  print_num_locno (bs, uiout);
>    uiout->text ("\n");
>    if (uiout->is_mi_like_p ())
>      uiout->field_string ("disp", bpdisp_text (b->disposition));
> @@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
>  		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
>        uiout->field_string ("disp", bpdisp_text (b->disposition));
>      }
> -  uiout->field_signed ("bkptno", b->number);
> +  print_num_locno (bs, uiout);
>    uiout->text (", ");
>  
> 
>    return PRINT_SRC_AND_LOC;
> @@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
>  			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
>        uiout->field_string ("disp", bpdisp_text (b->disposition));
>      }
> +
>    if (bp_temp)
> -    uiout->message ("Temporary breakpoint %pF, ",
> -		    signed_field ("bkptno", b->number));
> +    uiout->text ("Temporary breakpoint ");
>    else
> -    uiout->message ("Breakpoint %pF, ",
> -		    signed_field ("bkptno", b->number));
> +    uiout->text ("Breakpoint ");
> +  print_num_locno (bs, uiout);
> +  uiout->text (", ");
>  
> 
>    return PRINT_SRC_AND_LOC;
>  }
> @@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
>  	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
>  
> 
>  	  if (bp_loc_range.first == bp_loc_range.second
> -	      && bp_loc_range.first == 0)
> +	      && (bp_loc_range.first == 0
> +		  || (bp_loc_range.first == 1
> +		      && bp_num_range.first == bp_num_range.second
> +		      && !has_multiple_locations (bp_num_range.first))))
>  	    {
> -	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
> +	      /* Handle breakpoint ids with formats 'x' or 'x-z'
> +		 or 'y.1' where y has only one location.  */
>  	      map_breakpoint_number_range (bp_num_range,
>  					   enable
>  					   ? enable_breakpoint
> diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
> index e412c4d4113..264ed5f1a4d 100644
> --- a/gdb/breakpoint.h
> +++ b/gdb/breakpoint.h
> @@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
>     Return 1 otherwise.  */
>  extern int bpstat_num (bpstat **, int *);
>  
> 
> +/* If BS indicates a breakpoint and this breakpoint has several locations,
> +   return the location number of BS, otherwise return 0.  */
> +
> +extern int bpstat_locno (bpstat *bs);
> +
> +/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
> +
> +   For a breakpoint with only one location, outputs the signed field "bkpno"
> +   breakpoint number of BS (as returned by bpstat_num).
> +   If BS has several locations, outputs a '.' character followed by
> +   the signed field "locno" (as returned by bpstat_locno).  */
> +
> +extern void print_num_locno (bpstat *bs, struct ui_out *);
> +
>  /* Perform actions associated with the stopped inferior.  Actually, we
>     just use this for breakpoint commands.  Perhaps other actions will
>     go here later, but this is executed at a late time (from the
> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> index c1e9b09e833..8408928648e 100644
> --- a/gdb/doc/gdb.texinfo
> +++ b/gdb/doc/gdb.texinfo
> @@ -4338,9 +4338,15 @@ are operated on.
>  @cindex latest breakpoint
>  Breakpoints are set with the @code{break} command (abbreviated
>  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> -number of the breakpoint you've set most recently; see @ref{Convenience
> -Vars,, Convenience Variables}, for a discussion of what you can do with
> -convenience variables.
> +number of the breakpoint you've set most recently.
> +A breakpoint may be mapped to multiple locations for example with
> +inlined functions, Ada generics, c++ templates or overloaded function names.
> +
> +When your program stops on a breakpoint, the convenience variables
> +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> +the encountered breakpoint and the number of the breakpoint location.
> +You can typically use these variables in a breakpoint command list.
> +(@pxref{Break Commands, ,Breakpoint Command Lists})
>  
> 
>  @table @code
>  @item break @var{location}
> @@ -5724,6 +5730,18 @@ Expressions}).
>  Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
>  disabled within a @var{command-list}.
>  
> 
> +Inside a command list, you can use the command
> +@smallexample
> +disable $bkptno
> +@end smallexample
> +to disable the encountered breakpoint.
> +
> +If your breakpoint has several locations, the command
> +@smallexample
> +disable $bkptno.$locno
> +@end smallexample
> +will disable the specific breakpoint location encountered.
> +
>  You can use breakpoint commands to start your program up again.  Simply
>  use the @code{continue} command, or @code{step}, or any other command
>  that resumes execution.
> @@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
>  specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
>  ignored in all-stop mode.  If the @samp{--thread-group} options is
>  specified, then all threads in that thread group are resumed.
> +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> +encountered has multiple locations, the field @samp{bkptno} is
> +followed by the field @samp{locno}.
>  
> 
>  @subsubheading @value{GDBN} Command
>  
> 
> diff --git a/gdb/infrun.c b/gdb/infrun.c
> index c311240b78c..62c61167dd4 100644
> --- a/gdb/infrun.c
> +++ b/gdb/infrun.c
> @@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
>       LOCATION: Print only location
>       SRC_AND_LOC: Print location and source line.  */
>    if (do_frame_printing)
> -    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> +    {
> +      if (tp->control.stop_bpstat != nullptr)
> +	{
> +	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
> +
> +	  if (b != nullptr)
> +	    {
> +	      int locno = bpstat_locno (tp->control.stop_bpstat);
> +	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
> +	      set_internalvar_integer (lookup_internalvar ("locno"),
> +				       (locno > 0 ? locno : 1));
> +	    }
> +	}
> +      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> +    }
>  }
>  
> 
>  /* See infrun.h.  */
> diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> index 076e8c2425f..3f94c163819 100644
> --- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> +++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> @@ -42,7 +42,7 @@ gdb_test "break read_small" \
>  for {set i 0} {$i < 4} {incr i} {
>      with_test_prefix "iteration $i" {
>  	gdb_test "continue" \
> -	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
> +	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
>  	    "stopped in read_small"
>      }
>  }
> diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
> index 655e7af479f..e3928419ed6 100644
> --- a/gdb/testsuite/gdb.ada/operator_bp.exp
> +++ b/gdb/testsuite/gdb.ada/operator_bp.exp
> @@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
>  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
>      set op_re [string_to_regexp $op]
>      gdb_test "continue" \
> -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
>               "continue to \"$op\""
>  }
>  
> 
> @@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
>  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
>      set op_re [string_to_regexp $op]
>      gdb_test "continue" \
> -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
>               "continue to ops.\"$op\""
>  }
>  
> 
> diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> index b540df973a3..742315178e3 100644
> --- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> +++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> @@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
>      gdb_run_cmd
>  
> 
>      # Check our conditional breakpoints.
> -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
>  	"run until A::func"
>      gdb_test "print a" " = 10"
>  
> 
> -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
>  	"run until C::func"
>      gdb_test "print c" " = 30"
>  
> 
> @@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
>      gdb_run_cmd
>  
> 
>      # Check that we hit enabled locations only.
> -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
>  	"run until A::func"
>      gdb_test "print a" " = 10"
>  
> 
> -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
>  	"run until C::func"
>      gdb_test "print c" " = 30"
>  
> 
> diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
> index 9c010f54d79..0b589a7d6e6 100644
> --- a/gdb/testsuite/gdb.base/ctxobj.exp
> +++ b/gdb/testsuite/gdb.base/ctxobj.exp
> @@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
>           "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
>           "break in get_version functions"
>  
> 
> -gdb_test "continue" \
> -         "Breakpoint $decimal, get_version_1 \\(\\).*" \
> -         "continue to get_version_1"
> +global expect_out
> +set test "continue to get_version_1"
> +gdb_test_multiple "continue" $test {
> +    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
> +	set bpno $expect_out(1,string)
> +	pass $test
> +    }
> +}
> +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
>  
> 
>  # Try printing "this_version_num".  There are two global variables
>  # with that name, and some systems such as GNU/Linux merge them
> @@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
>          "print libctxobj1's this_version_num from symtab"
>  
> 
>  # Do the same, but from get_version_2.
> -
> -gdb_test "continue" \
> -         "Breakpoint $decimal, get_version_2 \\(\\).*" \
> -         "continue to get_version_2"
> +set test "continue to get_version_2"
> +gdb_test_multiple "continue" $test {
> +    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
> +	set bpno $expect_out(1,string)
> +	pass $test
> +    }
> +}
> +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
>  
> 
>  gdb_test "print this_version_num == v" \
>           " = 1" \
> diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
> index 24925cf7185..ba5804f576f 100644
> --- a/gdb/testsuite/gdb.base/ena-dis-br.exp
> +++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
> @@ -67,14 +67,21 @@ gdb_test "info break $bp" \
>  # See the comments in condbreak.exp for "run until breakpoint at
>  # marker1" for an explanation of the xfail below.
>  set test "continue to break marker1"
> +set bpno 0
>  gdb_test_multiple "continue" "$test" {
> -    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
> +    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
> +	set bpno $expect_out(1,string)
>  	pass "$test"
>      }
> -    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
> +    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
> +	set bpno $expect_out(1,string)
>  	xfail "$test"
>      }
>  }
> +# Verify the $bkptno convenience variable is equal to the hit bpno.
> +gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
> +# Verify the $locno is 1, as there is only one location.
> +gdb_test "print \$locno" " = 1" "$test \$locno is 1"
>  
> 
>  gdb_test_no_output "delete $bp" "delete break marker1"
>  
> 
> @@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
>  }
>  
> 
>  # Perform tests for disable/enable commands on multiple
> -# locations and breakpoints.
> +# locations and breakpoints.  If a breakpoint has only one location,
> +# enable/disable num  and enable/disable num.1 should be equivalent.
>  #
>  # WHAT - the command to test (disable/enable).
>  #
> @@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
>      global b3
>      global b4
>      global gdb_prompt
> -    
> +
>      # OPPOS    - the command opposite to WHAT.
>      # WHAT_RES - whether breakpoints are expected to end
>      #            up enabled or disabled.
> @@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
>  	set p2 "pass"
>      }
>  
> 
> -    # Now enable(disable) $b.1 $b2.1.
> +    # Now enable(disable) $b1.1 $b2.1.
>      gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
>      set test1 "${what}d \$b1.1 and \$b2.1"
>  
> 
>      # Now $b1.1 and $b2.1 should be enabled(disabled).
>      gdb_test_multiple "info break" "$test1" {
> -       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> +       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
>             $p1 "$test1"
>         }
>         -re ".*$gdb_prompt $" {
> @@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
>         "${what}d \$b1"
>  
> 
>      gdb_test_no_output "$oppos $b3" "$oppos \$b3"
> +    # Now $b4 $b3 should be enabled(disabled)
> +    set test1 "${what}d \$b4 and \$b3"
> +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
> +
>      gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
> -    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
> +    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
> +
> +    # Now $b4 $b3 should be enabled(disabled)
> +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
>  
> 
> -    # Now $b4 $b3.1 should be enabled(disabled) and
> -    # $b3 should remain disabled(enabled).
> -    gdb_test_multiple "info break" "$test1" {
> -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> -           $p1 "$test1"
> -       }
> -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> -           $p2 "$test1"
> -       }
> -    }
>  
> 
>      # Now enable(disable) '$b4.1 fooobaar'.  This should error on
>      # fooobaar.
> @@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
>  
> 
>      # $b4.1 should be enabled(disabled).
>      gdb_test_multiple "info break" "$test1" {
> -        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> +        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
>             $p1 "$test1"
>         }
>         -re ".*$gdb_prompt $" {
> diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> index 986e46ecd61..6ddf6749511 100644
> --- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
> +++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> @@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
>  # before re-running.
>  
> 
>  proc do_follow_exec_mode_tests { mode cmd infswitch } {
> -    global binfile srcfile srcfile2 testfile testfile2
> +    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
>      global gdb_prompt
>  
> 
>      with_test_prefix "$mode,$cmd,$infswitch" {
> @@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
>  	# Set up the output we expect to see after we execute past the exec.
>  	#
>  	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
> -	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> +	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
>  
> 
>  	# Set a breakpoint after the exec call if we aren't single-stepping
>  	# past it.
> @@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
>  		send_gdb "y\n"
>  		exp_continue
>  	    }
> -	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
> +	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
>  		pass $test
>  	    }
>  	}
> diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
> index efc357d39a2..19e9d3a5537 100644
> --- a/gdb/testsuite/gdb.base/pie-fork.exp
> +++ b/gdb/testsuite/gdb.base/pie-fork.exp
> @@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
>  proc_with_prefix test_no_detach_on_fork {} {
>      setup_test "off"
>  
> 
> -    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
> +    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
>  	     "continue from thread 1.1"
>      gdb_test "thread 2.1"
> -    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
> +    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
>  	     "continue from thread 2.1"
>  }
>  
> 
> diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
> index 936bb080e3b..143bcfa1a94 100644
> --- a/gdb/testsuite/gdb.base/step-over-exit.exp
> +++ b/gdb/testsuite/gdb.base/step-over-exit.exp
> @@ -91,7 +91,7 @@ delete_breakpoints
>  
> 
>  gdb_test "break marker"
>  
> 
> -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
>      "continue to marker, first time"
>  
> 
>  # Step 2, create a breakpoint which evaluates false, and force it
> @@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
>  # Switch back to the parent process, continue to the marker to
>  # test GDBserver's state is still correct.
>  
> 
> -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
>      "continue to marker, second time"
> diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
> index 47a2a5dcb7c..fa098602c31 100644
> --- a/gdb/testsuite/gdb.cp/mb-inline.exp
> +++ b/gdb/testsuite/gdb.cp/mb-inline.exp
> @@ -46,7 +46,7 @@ gdb_test "info break" \
>      "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
>  
> 
>  gdb_run_cmd
> -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
> +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
>  
> 
>  gdb_test "continue" \
>      ".*Breakpoint.*foo \\(i=1\\).*" \
> @@ -59,7 +59,7 @@ gdb_test "continue" \
>  gdb_test_no_output "disable 1.2" "disabling location: disable"
>  
> 
>  gdb_run_cmd
> -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
>  
> 
>  gdb_test_multiple "info break" "disabled breakpoint 1.2" {
>      -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
> diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
> index 6c988e7335e..0c0d46fcb7a 100644
> --- a/gdb/testsuite/gdb.cp/mb-templates.exp
> +++ b/gdb/testsuite/gdb.cp/mb-templates.exp
> @@ -42,7 +42,7 @@ gdb_run_cmd
>  
> 
>  set test "initial condition: run to breakpoint"
>  gdb_test_multiple "" $test {
> -    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> +    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
>  	pass $test
>  	break
>      }
> @@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
>      "separate condition: set condition"
>      
> 
>  gdb_run_cmd
> -gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
>  
> 
>  gdb_test "continue" \
>      ".*Breakpoint.*foo<double> \\(i=1\\).*" \
> @@ -79,7 +79,7 @@ gdb_test "continue" \
>  gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
>  
> 
>  gdb_run_cmd
> -gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
>  
> 
>  # Try disabling entire breakpoint
>  gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
> diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
> index 2fc650e215f..98afe07d6b6 100644
> --- a/gdb/testsuite/gdb.cp/ovldbreak.exp
> +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
> @@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
>  
> 
>  # Run through each breakpoint.
>  proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> -    global gdb_prompt hex decimal srcfile
> +    global gdb_prompt hex decimal srcfile bkptno_num_re
>  
> 
>      if {$argument == ""} {
>          set actuals ""
> @@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
>      }
>  
> 
>      gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
> -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
>              pass "continue to bp overloaded : $argtype"
>          }
>  
> 
> -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
>              if $might_kfail {
>                  kfail "c++/8130" "continue to bp overloaded : $argtype"
>              } else {
> diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
> index 6db8bf0df50..30eb6038f3a 100644
> --- a/gdb/testsuite/gdb.gdb/python-helper.exp
> +++ b/gdb/testsuite/gdb.gdb/python-helper.exp
> @@ -49,7 +49,7 @@ gdb_exit
>  # The main test.  This is called by the self-test framework once GDB
>  # has been started on a copy of itself.
>  proc test_python_helper {} {
> -    global py_helper_script decimal hex gdb_prompt
> +    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
>      global inferior_spawn_id
>  
> 
>      # Source the python helper script.  This script registers the
> @@ -233,7 +233,7 @@ proc test_python_helper {} {
>      # GDB stopping at the value_print breakpoint again.
>      send_inferior "ptype global_c\n"
>      gdb_test_multiple "" "hit breakpoint in outer gdb again" {
> -	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
> +	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
>  	    pass $gdb_test_name
>  	}
>      }
> diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> index 19ccbe85e04..c080955049c 100644
> --- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> +++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> @@ -69,7 +69,7 @@ if { $use_second_inferior } {
>  	"\\^running.*" \
>  	"run inferior 2"
>  
> 
> -    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
> +    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
>  	"inferior i2 stops at all_threads_started"
>  
> 
>      mi_send_resuming_command "exec-continue --thread-group i2" \
> diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> index 9444ca5acf4..7435778473a 100644
> --- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> +++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> @@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
>  
> 
>  	    # Consume MI event output.
>  	    with_spawn_id $mi_spawn_id {
> -		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> -		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> +		if { $inf == 1 } {
> +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> +			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> +		} else {
> +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> +			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
> +		}
>  	    }
>  
> 
>  	    if { $mode == "all-stop" } {
> @@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
>  
> 
>  		    # Consume MI output.
>  		    with_spawn_id $mi_spawn_id {
> -			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> -			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> -			    "thread $inf.$thread stops MI"
> +			if { $inf == 1} {
> +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> +				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> +				"thread $inf.$thread stops MI"
> +			} else {
> +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> +				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> +				"thread $inf.$thread stops MI"
> +			}
>  		    }
>  		}
>  
> 
> @@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
>  
> 
>  		# Consume MI output.
>  		with_spawn_id $mi_spawn_id {
> -		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> -			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> -			"thread $inf.2 stops MI"
> +		    if { $inf == 1} {
> +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> +			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> +			    "thread $inf.2 stops MI"
> +		    } else {
> +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> +			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> +			    "thread $inf.2 stops MI"
> +		    }
>  		}
>  	    }
>  	}
> @@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
>  
> 
>  	with_spawn_id $mi_spawn_id {
>  	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
> -		{"" "disp=\"del\""} "main stop"
> +		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
>  	}
>  
> 
>  	# Consume CLI output.
> diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> index a1496fb5571..dfdb746c65e 100644
> --- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> +++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> @@ -148,6 +148,7 @@ proc build_executables { first_arch } {
>  }
>  
> 
>  proc do_test { first_arch mode selected_thread } {
> +        global bkptno_numopt_re
>  	set from_exec "$first_arch-multi-arch-exec"
>  
> 
>  	clean_restart ${from_exec}
> @@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
>  
> 
>  	# Test that GDB updates the target description / arch successfuly
>  	# after the exec.
> -	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
> +	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
>  }
>  
> 
>  # Test both arch1=>arch2 and arch2=>arch1.
> diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> index fec2575f904..b94689d0bfa 100644
> --- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> +++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> @@ -46,5 +46,5 @@ gdb_load $binfile
>  if {[gdb_start_cmd] < 0} {
>      fail "start the second inf"
>  } else {
> -    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
> +    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
>  }
> diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> index cbccba19d12..3c079facced 100644
> --- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> +++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> @@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
>  # child.  Can be either "kill", "detach", or "exit" (to continue it to
>  # normal exit).
>  proc do_test {dispose} {
> -    global binfile
> +    global binfile bkptno_numopt_re
>  
> 
>      clean_restart $binfile
>  
> 
> @@ -77,7 +77,7 @@ proc do_test {dispose} {
>      #  Command aborted.
>      #  (gdb)
>      #
> -    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
> +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
>  	"continue in inferior 1"
>  }
>  
> 
> diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> index e4329dca6c2..0fc1bee762f 100644
> --- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> @@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
>  	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
>  	"catch c on inferior 2"
>  
> 
> -    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
> +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
>  
> 
>      gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
>  
> 
>      gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
>  }
>  
> 
> -gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
> +gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
> diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> index 7c35fbb18c4..a53d929be02 100644
> --- a/gdb/testsuite/lib/gdb.exp
> +++ b/gdb/testsuite/lib/gdb.exp
> @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
>  # E.g., $1, $2, etc.
>  set valnum_re "\\\$$decimal"
>  
> 
> +# A regular expression that matches a breakpoint hit with a breakpoint
> +# having several locations
> +set bkptno_num_re "$decimal\\.$decimal"
> +
> +# A regular expression that matches a breakpoint hit
> +# with one or several locations.
> +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
> +
>  ### Only procedures should come after this point.
>  
> 
>  #
> @@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
>  
> 
>  proc runto { linespec args } {
>      global gdb_prompt
> +    global bkptno_numopt_re
>      global decimal
>  
> 
>      delete_breakpoints
> @@ -699,7 +708,13 @@ proc runto { linespec args } {
>  	    }
>  	    return 1
>  	}
> -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> +	    if { $print_pass } {
> +		pass $test_name
> +	    }
> +	    return 1
> +	}
> +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
>  	    if { $print_pass } {
>  		pass $test_name
>  	    }
> diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
> index 857a04519cf..36a586f63a4 100644
> --- a/gdb/testsuite/lib/mi-support.exp
> +++ b/gdb/testsuite/lib/mi-support.exp
> @@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
>  # filename of a file without debug info.  ARGS should not include [] the
>  # list of argument is enclosed in, and other regular expressions should
>  # not include quotes.
> -# If EXTRA is a list of one element, it's the regular expression
> +# EXTRA can be a list of one, two or three elements.
> +# The first element is the regular expression
>  # for output expected right after *stopped, and before GDB prompt.
> -# If EXTRA is a list of two elements, the first element is for
> -# output right after *stopped, and the second element is output
> -# right after reason field.  The regex after reason should not include
> +# The third element is the regulation expression for the locno
> +# right after bkptno field.  The locno regex should not include
>  # the comma separating it from the following fields.
>  #
>  # When we fail to match output at all, -1 is returned.  If FILE does
> @@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
>  
> 
>      set after_stopped ""
>      set after_reason ""
> -    if { [llength $extra] == 2 } {
> +    set locno ""
> +    if { [llength $extra] == 3 } {
> +	set after_stopped [lindex $extra 0]
> +	set after_reason [lindex $extra 1]
> +	set after_reason "${after_reason},"
> +	set locno [lindex $extra 2]
> +	set locno "${locno},"
> +    } elseif { [llength $extra] == 2 } {
>  	set after_stopped [lindex $extra 0]
>  	set after_reason [lindex $extra 1]
>  	set after_reason "${after_reason},"
> @@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
>      set ebn ""
>      if { $reason == "breakpoint-hit" } {
>  	set bn {bkptno="[0-9]+",}
> +	set bn "${bn}${locno}"
>      } elseif { $reason == "solib-event" } {
>  	set bn ".*"
>      } elseif { $reason == "exception-caught" } {
>  	set ebn {bkptno="[0-9]+",}
> +	set ebn "${ebn}${locno}"
>  	set bn ".*"
>  	set reason "breakpoint-hit"
>      }
> @@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
>      set a $after_reason
>  
> 
>      verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
> +
>      gdb_expect {
>  	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
>  	    pass "$test"



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-29 16:26 ` Philippe Waroquiers
@ 2022-05-07  5:44   ` Philippe Waroquiers
  2022-05-13 16:49   ` Philippe Waroquiers
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-05-07  5:44 UTC (permalink / raw)
  To: gdb-patches


Ping^2

Thanks
Philippe

On Fri, 2022-04-29 at 18:26 +0200, Philippe Waroquiers via Gdb-patches wrote:
> Ping ?
> (doc was reviewed by Eli already, I will handle his comments in V2).
> 
> In the meantime, I did a small "opinion poll" at my work about the display
> of breakpoint nr and location nr in the breakpoint hit message.
> 
> Below is the detailed feedback, summary is that everybody prefers
> to see the breakpoint and location number, and does not see a (real)
> need to have this configurable.
> 
> Thanks
> Philippe
>  
> 
> 
> GDB should always display 1.6:
> ------------------------------
> * because this is consistent with the output of info breakpoint
>   and obeys the Principle of Least Astonishment
> 
> * Same.
> 
> * Sounds good. Does not see why this should be user configurable
>   but does not object to have an option (with default on).
> 
> * always show information.
> 
> * always show information.
> 
> GDB should have a config option to display 1.6, default on:
> -----------------------------------------------------------
> * consistent with 'info breakpoint', immediately informs the user about
>   something in a way which is not confusing.
>   Option to control it might be useful if someone parses the 'breakpoint hit' messages
>   (but which is not something that should be done)
> 
> GDB should have a config option to display 1.6, default off:
> ------------------------------------------------------------
> 
> 
> On Sun, 2022-04-17 at 17:53 +0200, Philippe Waroquiers wrote:
> > Before this patch, when a breakpoint that has multiple locations is reached,
> > GDB printed:
> >   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> > 
> > This patch changes the message so that bkpt_print_id prints the precise
> > encountered breakpoint:
> >   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> > 
> > In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
> >   locno is printed when the breakpoint has more than one location.
> > Note that according to the GDB user manual node 'GDB/MI Development and Front
> > Ends', it is ok to add new fields without changing the MI version.
> > 
> > Also, when a breakpoint is reached, the convenience variables
> > $bkptno and $locno are set to the encountered breakpoint number
> > and location number.
> > 
> > $bkptno and $locno can a.o. be used in the command list of a breakpoint,
> > to disable the specific encountered breakpoint, e.g.
> >    disable $bkptno.$locno
> > 
> > In case the breakpoint has only one location, $locno is still set to
> > the value 1, so as to allow a command such as:
> >   disable $bkptno.$locno
> > even when the breakpoint has only one location.
> > 
> > This also fixes a strange behaviour: when a breakpoint X has only
> > one location,
> >   enable|disable X.1
> > is accepted but transforms the breakpoint in a multiple locations
> > breakpoint having only one location.
> > ---
> >  gdb/NEWS                                      | 19 ++++
> >  gdb/ada-lang.c                                |  2 +-
> >  gdb/break-catch-syscall.c                     |  2 +-
> >  gdb/break-catch-throw.c                       |  2 +-
> >  gdb/breakpoint.c                              | 95 +++++++++++++++----
> >  gdb/breakpoint.h                              | 14 +++
> >  gdb/doc/gdb.texinfo                           | 27 +++++-
> >  gdb/infrun.c                                  | 16 +++-
> >  gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
> >  gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
> >  .../gdb.base/condbreak-multi-context.exp      |  8 +-
> >  gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
> >  gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
> >  gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
> >  gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
> >  gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
> >  gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
> >  gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
> >  gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
> >  gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
> >  .../gdb.mi/interrupt-thread-group.exp         |  2 +-
> >  .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
> >  gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
> >  .../gdb.multi/run-only-second-inf.exp         |  2 +-
> >  .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
> >  gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
> >  gdb/testsuite/lib/gdb.exp                     | 17 +++-
> >  gdb/testsuite/lib/mi-support.exp              | 20 +++-
> >  28 files changed, 284 insertions(+), 95 deletions(-)
> > 
> > diff --git a/gdb/NEWS b/gdb/NEWS
> > index 760cb2b7abc..673607dfbb3 100644
> > --- a/gdb/NEWS
> > +++ b/gdb/NEWS
> > @@ -14,6 +14,20 @@
> >    emit to indicate where a breakpoint should be placed to break in a function
> >    past its prologue.
> >  
> > 
> > +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> > +  using the syntax <breakpoint_number>.<location_number> such as in:
> > +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> > +
> > +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> > +  $locno to the hit breakpoint number and location number.
> > +  This allows to disable the last hit breakpoint using for example
> > +     (gdb) disable $bkptno
> > +   or
> > +     (gdb) disable $bkptno.$locno
> > +  These commands can be used inside the command list of a breakpoint to
> > +  automatically disable the just encountered breakpoint (or breakpoint
> > +  specific location).
> > +
> >  * New commands
> >  
> > 
> >  maintenance set ignore-prologue-end-flag on|off
> > @@ -30,6 +44,11 @@ maintenance info line-table
> >    entry corresponds to an address where a breakpoint should be placed
> >    to be at the first instruction past a function's prologue.
> >  
> > 
> > +* MI changes
> > +
> > + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> > +    locno giving the location number when the breakpoint has multiple locations.
> > +
> >  * Python API
> >  
> > 
> >    ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
> > diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
> > index 7623d0eb48d..58ed9e698f7 100644
> > --- a/gdb/ada-lang.c
> > +++ b/gdb/ada-lang.c
> > @@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
> >  
> > 
> >    uiout->text (b->disposition == disp_del
> >  	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    /* ada_exception_name_addr relies on the selected frame being the
> > diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
> > index 515a9577bb1..d7bc0625a74 100644
> > --- a/gdb/break-catch-syscall.c
> > +++ b/gdb/break-catch-syscall.c
> > @@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
> >  						: EXEC_ASYNC_SYSCALL_RETURN));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >  
> > 
> >    if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
> >      uiout->text (" (call to syscall ");
> > diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
> > index d98baf47d6d..7af37b4d2da 100644
> > --- a/gdb/break-catch-throw.c
> > +++ b/gdb/break-catch-throw.c
> > @@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
> >    bp_temp = b->disposition == disp_del;
> >    uiout->text (bp_temp ? "Temporary catchpoint "
> >  		       : "Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
> >  		: (kind == EX_EVENT_CATCH ? " (exception caught), "
> >  		   : " (exception rethrown), ")));
> > diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
> > index 1a227e5d120..a7d74d598db 100644
> > --- a/gdb/breakpoint.c
> > +++ b/gdb/breakpoint.c
> > @@ -687,6 +687,19 @@ get_breakpoint (int num)
> >    return nullptr;
> >  }
> >  
> > 
> > +/* Return TRUE if NUM refer to an existing breakpoint that has
> > +   multiple locations.  */
> > +
> > +static bool
> > +has_multiple_locations (int num)
> > +{
> > +  for (breakpoint *b : all_breakpoints ())
> > +    if (b->number == num)
> > +      return b->loc != nullptr && b->loc->next != nullptr;
> > +
> > +  return false;
> > +}
> > +
> >  \f
> >  
> > 
> >  /* Mark locations as "conditions have changed" in case the target supports
> > @@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
> >    return false;
> >  }
> >  
> > 
> > -/* Put in *NUM the breakpoint number of the first breakpoint we are
> > -   stopped at.  *BSP upon return is a bpstat which points to the
> > -   remaining breakpoints stopped at (but which is not guaranteed to be
> > -   good for anything but further calls to bpstat_num).
> > -
> > -   Return 0 if passed a bpstat which does not indicate any breakpoints.
> > -   Return -1 if stopped at a breakpoint that has been deleted since
> > -   we set it.
> > -   Return 1 otherwise.  */
> > +/* See breakpoint.h.  */
> >  
> > 
> >  int
> >  bpstat_num (bpstat **bsp, int *num)
> > @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
> >    return 1;
> >  }
> >  
> > 
> > +/* See breakpoint.h  */
> > +
> > +int
> > +bpstat_locno (bpstat *bs)
> > +{
> > +  const struct breakpoint *b = bs->breakpoint_at;
> > +  const struct bp_location *bl = bs->bp_location_at.get ();
> > +
> > +  int locno = 0;
> > +
> > +  if (b != nullptr && b->loc->next != nullptr)
> > +    {
> > +      const bp_location *bl_i;
> > +
> > +      for (bl_i = b->loc;
> > +	   bl_i != bl && bl_i->next != nullptr;
> > +	   bl_i = bl_i->next)
> > +	locno++;
> > +
> > +      if (bl_i == bl)
> > +	locno++;
> > +      else
> > +	{
> > +	  warning (_("location number not found for breakpoint %d address %p."),
> > +		   b->number, paddress (bl->gdbarch, bl->address));
> > +	  locno = 0;
> > +	}
> > +    }
> > +
> > +  return locno;
> > +}
> > +
> > +/* See breakpoint.h.  */
> > +
> > +void
> > +print_num_locno (bpstat *bs, struct ui_out *uiout)
> > +{
> > +  struct breakpoint *b = bs->breakpoint_at;
> > +
> > +  if (b == nullptr)
> > +    uiout->text (_("deleted breakpoint"));
> > +  else
> > +    {
> > +      uiout->field_signed ("bkptno", b->number);
> > +
> > +      int locno = bpstat_locno (bs);
> > +      if (locno != 0)
> > +	uiout->message (".%pF", signed_field ("locno", locno));
> > +    }
> > +}
> > +
> >  /* See breakpoint.h.  */
> >  
> > 
> >  void
> > @@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
> >      uiout->text ("Temporary catchpoint ");
> >    else
> >      uiout->text ("Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ("\n");
> >    if (uiout->is_mi_like_p ())
> >      uiout->field_string ("disp", bpdisp_text (b->disposition));
> > @@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
> >  		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> > @@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
> >  			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > +
> >    if (bp_temp)
> > -    uiout->message ("Temporary breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Temporary breakpoint ");
> >    else
> > -    uiout->message ("Breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Breakpoint ");
> > +  print_num_locno (bs, uiout);
> > +  uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> >  }
> > @@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
> >  	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
> >  
> > 
> >  	  if (bp_loc_range.first == bp_loc_range.second
> > -	      && bp_loc_range.first == 0)
> > +	      && (bp_loc_range.first == 0
> > +		  || (bp_loc_range.first == 1
> > +		      && bp_num_range.first == bp_num_range.second
> > +		      && !has_multiple_locations (bp_num_range.first))))
> >  	    {
> > -	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
> > +	      /* Handle breakpoint ids with formats 'x' or 'x-z'
> > +		 or 'y.1' where y has only one location.  */
> >  	      map_breakpoint_number_range (bp_num_range,
> >  					   enable
> >  					   ? enable_breakpoint
> > diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
> > index e412c4d4113..264ed5f1a4d 100644
> > --- a/gdb/breakpoint.h
> > +++ b/gdb/breakpoint.h
> > @@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
> >     Return 1 otherwise.  */
> >  extern int bpstat_num (bpstat **, int *);
> >  
> > 
> > +/* If BS indicates a breakpoint and this breakpoint has several locations,
> > +   return the location number of BS, otherwise return 0.  */
> > +
> > +extern int bpstat_locno (bpstat *bs);
> > +
> > +/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
> > +
> > +   For a breakpoint with only one location, outputs the signed field "bkpno"
> > +   breakpoint number of BS (as returned by bpstat_num).
> > +   If BS has several locations, outputs a '.' character followed by
> > +   the signed field "locno" (as returned by bpstat_locno).  */
> > +
> > +extern void print_num_locno (bpstat *bs, struct ui_out *);
> > +
> >  /* Perform actions associated with the stopped inferior.  Actually, we
> >     just use this for breakpoint commands.  Perhaps other actions will
> >     go here later, but this is executed at a late time (from the
> > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> > index c1e9b09e833..8408928648e 100644
> > --- a/gdb/doc/gdb.texinfo
> > +++ b/gdb/doc/gdb.texinfo
> > @@ -4338,9 +4338,15 @@ are operated on.
> >  @cindex latest breakpoint
> >  Breakpoints are set with the @code{break} command (abbreviated
> >  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> > -number of the breakpoint you've set most recently; see @ref{Convenience
> > -Vars,, Convenience Variables}, for a discussion of what you can do with
> > -convenience variables.
> > +number of the breakpoint you've set most recently.
> > +A breakpoint may be mapped to multiple locations for example with
> > +inlined functions, Ada generics, c++ templates or overloaded function names.
> > +
> > +When your program stops on a breakpoint, the convenience variables
> > +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> > +the encountered breakpoint and the number of the breakpoint location.
> > +You can typically use these variables in a breakpoint command list.
> > +(@pxref{Break Commands, ,Breakpoint Command Lists})
> >  
> > 
> >  @table @code
> >  @item break @var{location}
> > @@ -5724,6 +5730,18 @@ Expressions}).
> >  Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
> >  disabled within a @var{command-list}.
> >  
> > 
> > +Inside a command list, you can use the command
> > +@smallexample
> > +disable $bkptno
> > +@end smallexample
> > +to disable the encountered breakpoint.
> > +
> > +If your breakpoint has several locations, the command
> > +@smallexample
> > +disable $bkptno.$locno
> > +@end smallexample
> > +will disable the specific breakpoint location encountered.
> > +
> >  You can use breakpoint commands to start your program up again.  Simply
> >  use the @code{continue} command, or @code{step}, or any other command
> >  that resumes execution.
> > @@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
> >  specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
> >  ignored in all-stop mode.  If the @samp{--thread-group} options is
> >  specified, then all threads in that thread group are resumed.
> > +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> > +encountered has multiple locations, the field @samp{bkptno} is
> > +followed by the field @samp{locno}.
> >  
> > 
> >  @subsubheading @value{GDBN} Command
> >  
> > 
> > diff --git a/gdb/infrun.c b/gdb/infrun.c
> > index c311240b78c..62c61167dd4 100644
> > --- a/gdb/infrun.c
> > +++ b/gdb/infrun.c
> > @@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
> >       LOCATION: Print only location
> >       SRC_AND_LOC: Print location and source line.  */
> >    if (do_frame_printing)
> > -    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    {
> > +      if (tp->control.stop_bpstat != nullptr)
> > +	{
> > +	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
> > +
> > +	  if (b != nullptr)
> > +	    {
> > +	      int locno = bpstat_locno (tp->control.stop_bpstat);
> > +	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
> > +	      set_internalvar_integer (lookup_internalvar ("locno"),
> > +				       (locno > 0 ? locno : 1));
> > +	    }
> > +	}
> > +      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    }
> >  }
> >  
> > 
> >  /* See infrun.h.  */
> > diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > index 076e8c2425f..3f94c163819 100644
> > --- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > +++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > @@ -42,7 +42,7 @@ gdb_test "break read_small" \
> >  for {set i 0} {$i < 4} {incr i} {
> >      with_test_prefix "iteration $i" {
> >  	gdb_test "continue" \
> > -	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
> > +	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
> >  	    "stopped in read_small"
> >      }
> >  }
> > diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
> > index 655e7af479f..e3928419ed6 100644
> > --- a/gdb/testsuite/gdb.ada/operator_bp.exp
> > +++ b/gdb/testsuite/gdb.ada/operator_bp.exp
> > @@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to \"$op\""
> >  }
> >  
> > 
> > @@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to ops.\"$op\""
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > index b540df973a3..742315178e3 100644
> > --- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > +++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > @@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check our conditional breakpoints.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > @@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check that we hit enabled locations only.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
> > index 9c010f54d79..0b589a7d6e6 100644
> > --- a/gdb/testsuite/gdb.base/ctxobj.exp
> > +++ b/gdb/testsuite/gdb.base/ctxobj.exp
> > @@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
> >           "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
> >           "break in get_version functions"
> >  
> > 
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_1 \\(\\).*" \
> > -         "continue to get_version_1"
> > +global expect_out
> > +set test "continue to get_version_1"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  # Try printing "this_version_num".  There are two global variables
> >  # with that name, and some systems such as GNU/Linux merge them
> > @@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
> >          "print libctxobj1's this_version_num from symtab"
> >  
> > 
> >  # Do the same, but from get_version_2.
> > -
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_2 \\(\\).*" \
> > -         "continue to get_version_2"
> > +set test "continue to get_version_2"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  gdb_test "print this_version_num == v" \
> >           " = 1" \
> > diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > index 24925cf7185..ba5804f576f 100644
> > --- a/gdb/testsuite/gdb.base/ena-dis-br.exp
> > +++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > @@ -67,14 +67,21 @@ gdb_test "info break $bp" \
> >  # See the comments in condbreak.exp for "run until breakpoint at
> >  # marker1" for an explanation of the xfail below.
> >  set test "continue to break marker1"
> > +set bpno 0
> >  gdb_test_multiple "continue" "$test" {
> > -    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	pass "$test"
> >      }
> > -    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	xfail "$test"
> >      }
> >  }
> > +# Verify the $bkptno convenience variable is equal to the hit bpno.
> > +gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
> > +# Verify the $locno is 1, as there is only one location.
> > +gdb_test "print \$locno" " = 1" "$test \$locno is 1"
> >  
> > 
> >  gdb_test_no_output "delete $bp" "delete break marker1"
> >  
> > 
> > @@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
> >  }
> >  
> > 
> >  # Perform tests for disable/enable commands on multiple
> > -# locations and breakpoints.
> > +# locations and breakpoints.  If a breakpoint has only one location,
> > +# enable/disable num  and enable/disable num.1 should be equivalent.
> >  #
> >  # WHAT - the command to test (disable/enable).
> >  #
> > @@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
> >      global b3
> >      global b4
> >      global gdb_prompt
> > -    
> > +
> >      # OPPOS    - the command opposite to WHAT.
> >      # WHAT_RES - whether breakpoints are expected to end
> >      #            up enabled or disabled.
> > @@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
> >  	set p2 "pass"
> >      }
> >  
> > 
> > -    # Now enable(disable) $b.1 $b2.1.
> > +    # Now enable(disable) $b1.1 $b2.1.
> >      gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
> >      set test1 "${what}d \$b1.1 and \$b2.1"
> >  
> > 
> >      # Now $b1.1 and $b2.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > @@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
> >         "${what}d \$b1"
> >  
> > 
> >      gdb_test_no_output "$oppos $b3" "$oppos \$b3"
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    set test1 "${what}d \$b4 and \$b3"
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
> > +
> >      gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
> > -    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
> > +    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
> > +
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
> >  
> > 
> > -    # Now $b4 $b3.1 should be enabled(disabled) and
> > -    # $b3 should remain disabled(enabled).
> > -    gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p1 "$test1"
> > -       }
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p2 "$test1"
> > -       }
> > -    }
> >  
> > 
> >      # Now enable(disable) '$b4.1 fooobaar'.  This should error on
> >      # fooobaar.
> > @@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
> >  
> > 
> >      # $b4.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > index 986e46ecd61..6ddf6749511 100644
> > --- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > +++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > @@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
> >  # before re-running.
> >  
> > 
> >  proc do_follow_exec_mode_tests { mode cmd infswitch } {
> > -    global binfile srcfile srcfile2 testfile testfile2
> > +    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
> >      global gdb_prompt
> >  
> > 
> >      with_test_prefix "$mode,$cmd,$infswitch" {
> > @@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  	# Set up the output we expect to see after we execute past the exec.
> >  	#
> >  	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
> > -	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> > +	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> >  
> > 
> >  	# Set a breakpoint after the exec call if we aren't single-stepping
> >  	# past it.
> > @@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  		send_gdb "y\n"
> >  		exp_continue
> >  	    }
> > -	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
> > +	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
> >  		pass $test
> >  	    }
> >  	}
> > diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
> > index efc357d39a2..19e9d3a5537 100644
> > --- a/gdb/testsuite/gdb.base/pie-fork.exp
> > +++ b/gdb/testsuite/gdb.base/pie-fork.exp
> > @@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
> >  proc_with_prefix test_no_detach_on_fork {} {
> >      setup_test "off"
> >  
> > 
> > -    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
> >  	     "continue from thread 1.1"
> >      gdb_test "thread 2.1"
> > -    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
> >  	     "continue from thread 2.1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
> > index 936bb080e3b..143bcfa1a94 100644
> > --- a/gdb/testsuite/gdb.base/step-over-exit.exp
> > +++ b/gdb/testsuite/gdb.base/step-over-exit.exp
> > @@ -91,7 +91,7 @@ delete_breakpoints
> >  
> > 
> >  gdb_test "break marker"
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
> >      "continue to marker, first time"
> >  
> > 
> >  # Step 2, create a breakpoint which evaluates false, and force it
> > @@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
> >  # Switch back to the parent process, continue to the marker to
> >  # test GDBserver's state is still correct.
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
> >      "continue to marker, second time"
> > diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
> > index 47a2a5dcb7c..fa098602c31 100644
> > --- a/gdb/testsuite/gdb.cp/mb-inline.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-inline.exp
> > @@ -46,7 +46,7 @@ gdb_test "info break" \
> >      "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo \\(i=1\\).*" \
> > @@ -59,7 +59,7 @@ gdb_test "continue" \
> >  gdb_test_no_output "disable 1.2" "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  gdb_test_multiple "info break" "disabled breakpoint 1.2" {
> >      -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
> > index 6c988e7335e..0c0d46fcb7a 100644
> > --- a/gdb/testsuite/gdb.cp/mb-templates.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-templates.exp
> > @@ -42,7 +42,7 @@ gdb_run_cmd
> >  
> > 
> >  set test "initial condition: run to breakpoint"
> >  gdb_test_multiple "" $test {
> > -    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> > +    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> >  	pass $test
> >  	break
> >      }
> > @@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
> >      "separate condition: set condition"
> >      
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo<double> \\(i=1\\).*" \
> > @@ -79,7 +79,7 @@ gdb_test "continue" \
> >  gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  # Try disabling entire breakpoint
> >  gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
> > diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > index 2fc650e215f..98afe07d6b6 100644
> > --- a/gdb/testsuite/gdb.cp/ovldbreak.exp
> > +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > @@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
> >  
> > 
> >  # Run through each breakpoint.
> >  proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> > -    global gdb_prompt hex decimal srcfile
> > +    global gdb_prompt hex decimal srcfile bkptno_num_re
> >  
> > 
> >      if {$argument == ""} {
> >          set actuals ""
> > @@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> >      }
> >  
> > 
> >      gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              pass "continue to bp overloaded : $argtype"
> >          }
> >  
> > 
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              if $might_kfail {
> >                  kfail "c++/8130" "continue to bp overloaded : $argtype"
> >              } else {
> > diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
> > index 6db8bf0df50..30eb6038f3a 100644
> > --- a/gdb/testsuite/gdb.gdb/python-helper.exp
> > +++ b/gdb/testsuite/gdb.gdb/python-helper.exp
> > @@ -49,7 +49,7 @@ gdb_exit
> >  # The main test.  This is called by the self-test framework once GDB
> >  # has been started on a copy of itself.
> >  proc test_python_helper {} {
> > -    global py_helper_script decimal hex gdb_prompt
> > +    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
> >      global inferior_spawn_id
> >  
> > 
> >      # Source the python helper script.  This script registers the
> > @@ -233,7 +233,7 @@ proc test_python_helper {} {
> >      # GDB stopping at the value_print breakpoint again.
> >      send_inferior "ptype global_c\n"
> >      gdb_test_multiple "" "hit breakpoint in outer gdb again" {
> > -	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
> > +	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
> >  	    pass $gdb_test_name
> >  	}
> >      }
> > diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > index 19ccbe85e04..c080955049c 100644
> > --- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > +++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > @@ -69,7 +69,7 @@ if { $use_second_inferior } {
> >  	"\\^running.*" \
> >  	"run inferior 2"
> >  
> > 
> > -    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
> > +    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
> >  	"inferior i2 stops at all_threads_started"
> >  
> > 
> >      mi_send_resuming_command "exec-continue --thread-group i2" \
> > diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > index 9444ca5acf4..7435778473a 100644
> > --- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > +++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > @@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  	    # Consume MI event output.
> >  	    with_spawn_id $mi_spawn_id {
> > -		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > -		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		if { $inf == 1 } {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		} else {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
> > +		}
> >  	    }
> >  
> > 
> >  	    if { $mode == "all-stop" } {
> > @@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		    # Consume MI output.
> >  		    with_spawn_id $mi_spawn_id {
> > -			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			    "thread $inf.$thread stops MI"
> > +			if { $inf == 1} {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +				"thread $inf.$thread stops MI"
> > +			} else {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +				"thread $inf.$thread stops MI"
> > +			}
> >  		    }
> >  		}
> >  
> > 
> > @@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		# Consume MI output.
> >  		with_spawn_id $mi_spawn_id {
> > -		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			"thread $inf.2 stops MI"
> > +		    if { $inf == 1} {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    } else {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    }
> >  		}
> >  	    }
> >  	}
> > @@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
> >  
> > 
> >  	with_spawn_id $mi_spawn_id {
> >  	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
> > -		{"" "disp=\"del\""} "main stop"
> > +		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
> >  	}
> >  
> > 
> >  	# Consume CLI output.
> > diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > index a1496fb5571..dfdb746c65e 100644
> > --- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > +++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > @@ -148,6 +148,7 @@ proc build_executables { first_arch } {
> >  }
> >  
> > 
> >  proc do_test { first_arch mode selected_thread } {
> > +        global bkptno_numopt_re
> >  	set from_exec "$first_arch-multi-arch-exec"
> >  
> > 
> >  	clean_restart ${from_exec}
> > @@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
> >  
> > 
> >  	# Test that GDB updates the target description / arch successfuly
> >  	# after the exec.
> > -	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
> > +	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
> >  }
> >  
> > 
> >  # Test both arch1=>arch2 and arch2=>arch1.
> > diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > index fec2575f904..b94689d0bfa 100644
> > --- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > +++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > @@ -46,5 +46,5 @@ gdb_load $binfile
> >  if {[gdb_start_cmd] < 0} {
> >      fail "start the second inf"
> >  } else {
> > -    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
> > +    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
> >  }
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > index cbccba19d12..3c079facced 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > @@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
> >  # child.  Can be either "kill", "detach", or "exit" (to continue it to
> >  # normal exit).
> >  proc do_test {dispose} {
> > -    global binfile
> > +    global binfile bkptno_numopt_re
> >  
> > 
> >      clean_restart $binfile
> >  
> > 
> > @@ -77,7 +77,7 @@ proc do_test {dispose} {
> >      #  Command aborted.
> >      #  (gdb)
> >      #
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
> >  	"continue in inferior 1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > index e4329dca6c2..0fc1bee762f 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > @@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
> >  	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
> >  	"catch c on inferior 2"
> >  
> > 
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
> >  
> > 
> >      gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
> >  
> > 
> >      gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
> >  }
> >  
> > 
> > -gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
> > +gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
> > diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> > index 7c35fbb18c4..a53d929be02 100644
> > --- a/gdb/testsuite/lib/gdb.exp
> > +++ b/gdb/testsuite/lib/gdb.exp
> > @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
> >  # E.g., $1, $2, etc.
> >  set valnum_re "\\\$$decimal"
> >  
> > 
> > +# A regular expression that matches a breakpoint hit with a breakpoint
> > +# having several locations
> > +set bkptno_num_re "$decimal\\.$decimal"
> > +
> > +# A regular expression that matches a breakpoint hit
> > +# with one or several locations.
> > +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
> > +
> >  ### Only procedures should come after this point.
> >  
> > 
> >  #
> > @@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
> >  
> > 
> >  proc runto { linespec args } {
> >      global gdb_prompt
> > +    global bkptno_numopt_re
> >      global decimal
> >  
> > 
> >      delete_breakpoints
> > @@ -699,7 +708,13 @@ proc runto { linespec args } {
> >  	    }
> >  	    return 1
> >  	}
> > -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> > +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > +	    if { $print_pass } {
> > +		pass $test_name
> > +	    }
> > +	    return 1
> > +	}
> > +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> >  	    if { $print_pass } {
> >  		pass $test_name
> >  	    }
> > diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
> > index 857a04519cf..36a586f63a4 100644
> > --- a/gdb/testsuite/lib/mi-support.exp
> > +++ b/gdb/testsuite/lib/mi-support.exp
> > @@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
> >  # filename of a file without debug info.  ARGS should not include [] the
> >  # list of argument is enclosed in, and other regular expressions should
> >  # not include quotes.
> > -# If EXTRA is a list of one element, it's the regular expression
> > +# EXTRA can be a list of one, two or three elements.
> > +# The first element is the regular expression
> >  # for output expected right after *stopped, and before GDB prompt.
> > -# If EXTRA is a list of two elements, the first element is for
> > -# output right after *stopped, and the second element is output
> > -# right after reason field.  The regex after reason should not include
> > +# The third element is the regulation expression for the locno
> > +# right after bkptno field.  The locno regex should not include
> >  # the comma separating it from the following fields.
> >  #
> >  # When we fail to match output at all, -1 is returned.  If FILE does
> > @@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
> >  
> > 
> >      set after_stopped ""
> >      set after_reason ""
> > -    if { [llength $extra] == 2 } {
> > +    set locno ""
> > +    if { [llength $extra] == 3 } {
> > +	set after_stopped [lindex $extra 0]
> > +	set after_reason [lindex $extra 1]
> > +	set after_reason "${after_reason},"
> > +	set locno [lindex $extra 2]
> > +	set locno "${locno},"
> > +    } elseif { [llength $extra] == 2 } {
> >  	set after_stopped [lindex $extra 0]
> >  	set after_reason [lindex $extra 1]
> >  	set after_reason "${after_reason},"
> > @@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set ebn ""
> >      if { $reason == "breakpoint-hit" } {
> >  	set bn {bkptno="[0-9]+",}
> > +	set bn "${bn}${locno}"
> >      } elseif { $reason == "solib-event" } {
> >  	set bn ".*"
> >      } elseif { $reason == "exception-caught" } {
> >  	set ebn {bkptno="[0-9]+",}
> > +	set ebn "${ebn}${locno}"
> >  	set bn ".*"
> >  	set reason "breakpoint-hit"
> >      }
> > @@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set a $after_reason
> >  
> > 
> >      verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
> > +
> >      gdb_expect {
> >  	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
> >  	    pass "$test"
> 
> 



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-29 16:26 ` Philippe Waroquiers
  2022-05-07  5:44   ` Philippe Waroquiers
@ 2022-05-13 16:49   ` Philippe Waroquiers
  2022-05-22 18:43   ` Philippe Waroquiers
  2022-05-30 19:08   ` Philippe Waroquiers
  3 siblings, 0 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-05-13 16:49 UTC (permalink / raw)
  To: gdb-patches

Ping^3

Thanks
Philippe


On Fri, 2022-04-29 at 18:26 +0200, Philippe Waroquiers via Gdb-patches wrote:
> Ping ?
> (doc was reviewed by Eli already, I will handle his comments in V2).
> 
> In the meantime, I did a small "opinion poll" at my work about the display
> of breakpoint nr and location nr in the breakpoint hit message.
> 
> Below is the detailed feedback, summary is that everybody prefers
> to see the breakpoint and location number, and does not see a (real)
> need to have this configurable.
> 
> Thanks
> Philippe
>  
> 
> 
> GDB should always display 1.6:
> ------------------------------
> * because this is consistent with the output of info breakpoint
>   and obeys the Principle of Least Astonishment
> 
> * Same.
> 
> * Sounds good. Does not see why this should be user configurable
>   but does not object to have an option (with default on).
> 
> * always show information.
> 
> * always show information.
> 
> GDB should have a config option to display 1.6, default on:
> -----------------------------------------------------------
> * consistent with 'info breakpoint', immediately informs the user about
>   something in a way which is not confusing.
>   Option to control it might be useful if someone parses the 'breakpoint hit' messages
>   (but which is not something that should be done)
> 
> GDB should have a config option to display 1.6, default off:
> ------------------------------------------------------------
> 
> 
> On Sun, 2022-04-17 at 17:53 +0200, Philippe Waroquiers wrote:
> > Before this patch, when a breakpoint that has multiple locations is reached,
> > GDB printed:
> >   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> > 
> > This patch changes the message so that bkpt_print_id prints the precise
> > encountered breakpoint:
> >   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> > 
> > In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
> >   locno is printed when the breakpoint has more than one location.
> > Note that according to the GDB user manual node 'GDB/MI Development and Front
> > Ends', it is ok to add new fields without changing the MI version.
> > 
> > Also, when a breakpoint is reached, the convenience variables
> > $bkptno and $locno are set to the encountered breakpoint number
> > and location number.
> > 
> > $bkptno and $locno can a.o. be used in the command list of a breakpoint,
> > to disable the specific encountered breakpoint, e.g.
> >    disable $bkptno.$locno
> > 
> > In case the breakpoint has only one location, $locno is still set to
> > the value 1, so as to allow a command such as:
> >   disable $bkptno.$locno
> > even when the breakpoint has only one location.
> > 
> > This also fixes a strange behaviour: when a breakpoint X has only
> > one location,
> >   enable|disable X.1
> > is accepted but transforms the breakpoint in a multiple locations
> > breakpoint having only one location.
> > ---
> >  gdb/NEWS                                      | 19 ++++
> >  gdb/ada-lang.c                                |  2 +-
> >  gdb/break-catch-syscall.c                     |  2 +-
> >  gdb/break-catch-throw.c                       |  2 +-
> >  gdb/breakpoint.c                              | 95 +++++++++++++++----
> >  gdb/breakpoint.h                              | 14 +++
> >  gdb/doc/gdb.texinfo                           | 27 +++++-
> >  gdb/infrun.c                                  | 16 +++-
> >  gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
> >  gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
> >  .../gdb.base/condbreak-multi-context.exp      |  8 +-
> >  gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
> >  gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
> >  gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
> >  gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
> >  gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
> >  gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
> >  gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
> >  gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
> >  gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
> >  .../gdb.mi/interrupt-thread-group.exp         |  2 +-
> >  .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
> >  gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
> >  .../gdb.multi/run-only-second-inf.exp         |  2 +-
> >  .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
> >  gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
> >  gdb/testsuite/lib/gdb.exp                     | 17 +++-
> >  gdb/testsuite/lib/mi-support.exp              | 20 +++-
> >  28 files changed, 284 insertions(+), 95 deletions(-)
> > 
> > diff --git a/gdb/NEWS b/gdb/NEWS
> > index 760cb2b7abc..673607dfbb3 100644
> > --- a/gdb/NEWS
> > +++ b/gdb/NEWS
> > @@ -14,6 +14,20 @@
> >    emit to indicate where a breakpoint should be placed to break in a function
> >    past its prologue.
> >  
> > 
> > +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> > +  using the syntax <breakpoint_number>.<location_number> such as in:
> > +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> > +
> > +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> > +  $locno to the hit breakpoint number and location number.
> > +  This allows to disable the last hit breakpoint using for example
> > +     (gdb) disable $bkptno
> > +   or
> > +     (gdb) disable $bkptno.$locno
> > +  These commands can be used inside the command list of a breakpoint to
> > +  automatically disable the just encountered breakpoint (or breakpoint
> > +  specific location).
> > +
> >  * New commands
> >  
> > 
> >  maintenance set ignore-prologue-end-flag on|off
> > @@ -30,6 +44,11 @@ maintenance info line-table
> >    entry corresponds to an address where a breakpoint should be placed
> >    to be at the first instruction past a function's prologue.
> >  
> > 
> > +* MI changes
> > +
> > + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> > +    locno giving the location number when the breakpoint has multiple locations.
> > +
> >  * Python API
> >  
> > 
> >    ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
> > diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
> > index 7623d0eb48d..58ed9e698f7 100644
> > --- a/gdb/ada-lang.c
> > +++ b/gdb/ada-lang.c
> > @@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
> >  
> > 
> >    uiout->text (b->disposition == disp_del
> >  	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    /* ada_exception_name_addr relies on the selected frame being the
> > diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
> > index 515a9577bb1..d7bc0625a74 100644
> > --- a/gdb/break-catch-syscall.c
> > +++ b/gdb/break-catch-syscall.c
> > @@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
> >  						: EXEC_ASYNC_SYSCALL_RETURN));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >  
> > 
> >    if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
> >      uiout->text (" (call to syscall ");
> > diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
> > index d98baf47d6d..7af37b4d2da 100644
> > --- a/gdb/break-catch-throw.c
> > +++ b/gdb/break-catch-throw.c
> > @@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
> >    bp_temp = b->disposition == disp_del;
> >    uiout->text (bp_temp ? "Temporary catchpoint "
> >  		       : "Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
> >  		: (kind == EX_EVENT_CATCH ? " (exception caught), "
> >  		   : " (exception rethrown), ")));
> > diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
> > index 1a227e5d120..a7d74d598db 100644
> > --- a/gdb/breakpoint.c
> > +++ b/gdb/breakpoint.c
> > @@ -687,6 +687,19 @@ get_breakpoint (int num)
> >    return nullptr;
> >  }
> >  
> > 
> > +/* Return TRUE if NUM refer to an existing breakpoint that has
> > +   multiple locations.  */
> > +
> > +static bool
> > +has_multiple_locations (int num)
> > +{
> > +  for (breakpoint *b : all_breakpoints ())
> > +    if (b->number == num)
> > +      return b->loc != nullptr && b->loc->next != nullptr;
> > +
> > +  return false;
> > +}
> > +
> >  \f
> >  
> > 
> >  /* Mark locations as "conditions have changed" in case the target supports
> > @@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
> >    return false;
> >  }
> >  
> > 
> > -/* Put in *NUM the breakpoint number of the first breakpoint we are
> > -   stopped at.  *BSP upon return is a bpstat which points to the
> > -   remaining breakpoints stopped at (but which is not guaranteed to be
> > -   good for anything but further calls to bpstat_num).
> > -
> > -   Return 0 if passed a bpstat which does not indicate any breakpoints.
> > -   Return -1 if stopped at a breakpoint that has been deleted since
> > -   we set it.
> > -   Return 1 otherwise.  */
> > +/* See breakpoint.h.  */
> >  
> > 
> >  int
> >  bpstat_num (bpstat **bsp, int *num)
> > @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
> >    return 1;
> >  }
> >  
> > 
> > +/* See breakpoint.h  */
> > +
> > +int
> > +bpstat_locno (bpstat *bs)
> > +{
> > +  const struct breakpoint *b = bs->breakpoint_at;
> > +  const struct bp_location *bl = bs->bp_location_at.get ();
> > +
> > +  int locno = 0;
> > +
> > +  if (b != nullptr && b->loc->next != nullptr)
> > +    {
> > +      const bp_location *bl_i;
> > +
> > +      for (bl_i = b->loc;
> > +	   bl_i != bl && bl_i->next != nullptr;
> > +	   bl_i = bl_i->next)
> > +	locno++;
> > +
> > +      if (bl_i == bl)
> > +	locno++;
> > +      else
> > +	{
> > +	  warning (_("location number not found for breakpoint %d address %p."),
> > +		   b->number, paddress (bl->gdbarch, bl->address));
> > +	  locno = 0;
> > +	}
> > +    }
> > +
> > +  return locno;
> > +}
> > +
> > +/* See breakpoint.h.  */
> > +
> > +void
> > +print_num_locno (bpstat *bs, struct ui_out *uiout)
> > +{
> > +  struct breakpoint *b = bs->breakpoint_at;
> > +
> > +  if (b == nullptr)
> > +    uiout->text (_("deleted breakpoint"));
> > +  else
> > +    {
> > +      uiout->field_signed ("bkptno", b->number);
> > +
> > +      int locno = bpstat_locno (bs);
> > +      if (locno != 0)
> > +	uiout->message (".%pF", signed_field ("locno", locno));
> > +    }
> > +}
> > +
> >  /* See breakpoint.h.  */
> >  
> > 
> >  void
> > @@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
> >      uiout->text ("Temporary catchpoint ");
> >    else
> >      uiout->text ("Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ("\n");
> >    if (uiout->is_mi_like_p ())
> >      uiout->field_string ("disp", bpdisp_text (b->disposition));
> > @@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
> >  		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> > @@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
> >  			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > +
> >    if (bp_temp)
> > -    uiout->message ("Temporary breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Temporary breakpoint ");
> >    else
> > -    uiout->message ("Breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Breakpoint ");
> > +  print_num_locno (bs, uiout);
> > +  uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> >  }
> > @@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
> >  	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
> >  
> > 
> >  	  if (bp_loc_range.first == bp_loc_range.second
> > -	      && bp_loc_range.first == 0)
> > +	      && (bp_loc_range.first == 0
> > +		  || (bp_loc_range.first == 1
> > +		      && bp_num_range.first == bp_num_range.second
> > +		      && !has_multiple_locations (bp_num_range.first))))
> >  	    {
> > -	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
> > +	      /* Handle breakpoint ids with formats 'x' or 'x-z'
> > +		 or 'y.1' where y has only one location.  */
> >  	      map_breakpoint_number_range (bp_num_range,
> >  					   enable
> >  					   ? enable_breakpoint
> > diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
> > index e412c4d4113..264ed5f1a4d 100644
> > --- a/gdb/breakpoint.h
> > +++ b/gdb/breakpoint.h
> > @@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
> >     Return 1 otherwise.  */
> >  extern int bpstat_num (bpstat **, int *);
> >  
> > 
> > +/* If BS indicates a breakpoint and this breakpoint has several locations,
> > +   return the location number of BS, otherwise return 0.  */
> > +
> > +extern int bpstat_locno (bpstat *bs);
> > +
> > +/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
> > +
> > +   For a breakpoint with only one location, outputs the signed field "bkpno"
> > +   breakpoint number of BS (as returned by bpstat_num).
> > +   If BS has several locations, outputs a '.' character followed by
> > +   the signed field "locno" (as returned by bpstat_locno).  */
> > +
> > +extern void print_num_locno (bpstat *bs, struct ui_out *);
> > +
> >  /* Perform actions associated with the stopped inferior.  Actually, we
> >     just use this for breakpoint commands.  Perhaps other actions will
> >     go here later, but this is executed at a late time (from the
> > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> > index c1e9b09e833..8408928648e 100644
> > --- a/gdb/doc/gdb.texinfo
> > +++ b/gdb/doc/gdb.texinfo
> > @@ -4338,9 +4338,15 @@ are operated on.
> >  @cindex latest breakpoint
> >  Breakpoints are set with the @code{break} command (abbreviated
> >  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> > -number of the breakpoint you've set most recently; see @ref{Convenience
> > -Vars,, Convenience Variables}, for a discussion of what you can do with
> > -convenience variables.
> > +number of the breakpoint you've set most recently.
> > +A breakpoint may be mapped to multiple locations for example with
> > +inlined functions, Ada generics, c++ templates or overloaded function names.
> > +
> > +When your program stops on a breakpoint, the convenience variables
> > +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> > +the encountered breakpoint and the number of the breakpoint location.
> > +You can typically use these variables in a breakpoint command list.
> > +(@pxref{Break Commands, ,Breakpoint Command Lists})
> >  
> > 
> >  @table @code
> >  @item break @var{location}
> > @@ -5724,6 +5730,18 @@ Expressions}).
> >  Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
> >  disabled within a @var{command-list}.
> >  
> > 
> > +Inside a command list, you can use the command
> > +@smallexample
> > +disable $bkptno
> > +@end smallexample
> > +to disable the encountered breakpoint.
> > +
> > +If your breakpoint has several locations, the command
> > +@smallexample
> > +disable $bkptno.$locno
> > +@end smallexample
> > +will disable the specific breakpoint location encountered.
> > +
> >  You can use breakpoint commands to start your program up again.  Simply
> >  use the @code{continue} command, or @code{step}, or any other command
> >  that resumes execution.
> > @@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
> >  specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
> >  ignored in all-stop mode.  If the @samp{--thread-group} options is
> >  specified, then all threads in that thread group are resumed.
> > +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> > +encountered has multiple locations, the field @samp{bkptno} is
> > +followed by the field @samp{locno}.
> >  
> > 
> >  @subsubheading @value{GDBN} Command
> >  
> > 
> > diff --git a/gdb/infrun.c b/gdb/infrun.c
> > index c311240b78c..62c61167dd4 100644
> > --- a/gdb/infrun.c
> > +++ b/gdb/infrun.c
> > @@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
> >       LOCATION: Print only location
> >       SRC_AND_LOC: Print location and source line.  */
> >    if (do_frame_printing)
> > -    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    {
> > +      if (tp->control.stop_bpstat != nullptr)
> > +	{
> > +	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
> > +
> > +	  if (b != nullptr)
> > +	    {
> > +	      int locno = bpstat_locno (tp->control.stop_bpstat);
> > +	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
> > +	      set_internalvar_integer (lookup_internalvar ("locno"),
> > +				       (locno > 0 ? locno : 1));
> > +	    }
> > +	}
> > +      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    }
> >  }
> >  
> > 
> >  /* See infrun.h.  */
> > diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > index 076e8c2425f..3f94c163819 100644
> > --- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > +++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > @@ -42,7 +42,7 @@ gdb_test "break read_small" \
> >  for {set i 0} {$i < 4} {incr i} {
> >      with_test_prefix "iteration $i" {
> >  	gdb_test "continue" \
> > -	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
> > +	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
> >  	    "stopped in read_small"
> >      }
> >  }
> > diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
> > index 655e7af479f..e3928419ed6 100644
> > --- a/gdb/testsuite/gdb.ada/operator_bp.exp
> > +++ b/gdb/testsuite/gdb.ada/operator_bp.exp
> > @@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to \"$op\""
> >  }
> >  
> > 
> > @@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to ops.\"$op\""
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > index b540df973a3..742315178e3 100644
> > --- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > +++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > @@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check our conditional breakpoints.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > @@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check that we hit enabled locations only.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
> > index 9c010f54d79..0b589a7d6e6 100644
> > --- a/gdb/testsuite/gdb.base/ctxobj.exp
> > +++ b/gdb/testsuite/gdb.base/ctxobj.exp
> > @@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
> >           "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
> >           "break in get_version functions"
> >  
> > 
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_1 \\(\\).*" \
> > -         "continue to get_version_1"
> > +global expect_out
> > +set test "continue to get_version_1"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  # Try printing "this_version_num".  There are two global variables
> >  # with that name, and some systems such as GNU/Linux merge them
> > @@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
> >          "print libctxobj1's this_version_num from symtab"
> >  
> > 
> >  # Do the same, but from get_version_2.
> > -
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_2 \\(\\).*" \
> > -         "continue to get_version_2"
> > +set test "continue to get_version_2"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  gdb_test "print this_version_num == v" \
> >           " = 1" \
> > diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > index 24925cf7185..ba5804f576f 100644
> > --- a/gdb/testsuite/gdb.base/ena-dis-br.exp
> > +++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > @@ -67,14 +67,21 @@ gdb_test "info break $bp" \
> >  # See the comments in condbreak.exp for "run until breakpoint at
> >  # marker1" for an explanation of the xfail below.
> >  set test "continue to break marker1"
> > +set bpno 0
> >  gdb_test_multiple "continue" "$test" {
> > -    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	pass "$test"
> >      }
> > -    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	xfail "$test"
> >      }
> >  }
> > +# Verify the $bkptno convenience variable is equal to the hit bpno.
> > +gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
> > +# Verify the $locno is 1, as there is only one location.
> > +gdb_test "print \$locno" " = 1" "$test \$locno is 1"
> >  
> > 
> >  gdb_test_no_output "delete $bp" "delete break marker1"
> >  
> > 
> > @@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
> >  }
> >  
> > 
> >  # Perform tests for disable/enable commands on multiple
> > -# locations and breakpoints.
> > +# locations and breakpoints.  If a breakpoint has only one location,
> > +# enable/disable num  and enable/disable num.1 should be equivalent.
> >  #
> >  # WHAT - the command to test (disable/enable).
> >  #
> > @@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
> >      global b3
> >      global b4
> >      global gdb_prompt
> > -    
> > +
> >      # OPPOS    - the command opposite to WHAT.
> >      # WHAT_RES - whether breakpoints are expected to end
> >      #            up enabled or disabled.
> > @@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
> >  	set p2 "pass"
> >      }
> >  
> > 
> > -    # Now enable(disable) $b.1 $b2.1.
> > +    # Now enable(disable) $b1.1 $b2.1.
> >      gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
> >      set test1 "${what}d \$b1.1 and \$b2.1"
> >  
> > 
> >      # Now $b1.1 and $b2.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > @@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
> >         "${what}d \$b1"
> >  
> > 
> >      gdb_test_no_output "$oppos $b3" "$oppos \$b3"
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    set test1 "${what}d \$b4 and \$b3"
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
> > +
> >      gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
> > -    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
> > +    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
> > +
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
> >  
> > 
> > -    # Now $b4 $b3.1 should be enabled(disabled) and
> > -    # $b3 should remain disabled(enabled).
> > -    gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p1 "$test1"
> > -       }
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p2 "$test1"
> > -       }
> > -    }
> >  
> > 
> >      # Now enable(disable) '$b4.1 fooobaar'.  This should error on
> >      # fooobaar.
> > @@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
> >  
> > 
> >      # $b4.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > index 986e46ecd61..6ddf6749511 100644
> > --- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > +++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > @@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
> >  # before re-running.
> >  
> > 
> >  proc do_follow_exec_mode_tests { mode cmd infswitch } {
> > -    global binfile srcfile srcfile2 testfile testfile2
> > +    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
> >      global gdb_prompt
> >  
> > 
> >      with_test_prefix "$mode,$cmd,$infswitch" {
> > @@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  	# Set up the output we expect to see after we execute past the exec.
> >  	#
> >  	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
> > -	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> > +	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> >  
> > 
> >  	# Set a breakpoint after the exec call if we aren't single-stepping
> >  	# past it.
> > @@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  		send_gdb "y\n"
> >  		exp_continue
> >  	    }
> > -	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
> > +	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
> >  		pass $test
> >  	    }
> >  	}
> > diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
> > index efc357d39a2..19e9d3a5537 100644
> > --- a/gdb/testsuite/gdb.base/pie-fork.exp
> > +++ b/gdb/testsuite/gdb.base/pie-fork.exp
> > @@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
> >  proc_with_prefix test_no_detach_on_fork {} {
> >      setup_test "off"
> >  
> > 
> > -    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
> >  	     "continue from thread 1.1"
> >      gdb_test "thread 2.1"
> > -    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
> >  	     "continue from thread 2.1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
> > index 936bb080e3b..143bcfa1a94 100644
> > --- a/gdb/testsuite/gdb.base/step-over-exit.exp
> > +++ b/gdb/testsuite/gdb.base/step-over-exit.exp
> > @@ -91,7 +91,7 @@ delete_breakpoints
> >  
> > 
> >  gdb_test "break marker"
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
> >      "continue to marker, first time"
> >  
> > 
> >  # Step 2, create a breakpoint which evaluates false, and force it
> > @@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
> >  # Switch back to the parent process, continue to the marker to
> >  # test GDBserver's state is still correct.
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
> >      "continue to marker, second time"
> > diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
> > index 47a2a5dcb7c..fa098602c31 100644
> > --- a/gdb/testsuite/gdb.cp/mb-inline.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-inline.exp
> > @@ -46,7 +46,7 @@ gdb_test "info break" \
> >      "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo \\(i=1\\).*" \
> > @@ -59,7 +59,7 @@ gdb_test "continue" \
> >  gdb_test_no_output "disable 1.2" "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  gdb_test_multiple "info break" "disabled breakpoint 1.2" {
> >      -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
> > index 6c988e7335e..0c0d46fcb7a 100644
> > --- a/gdb/testsuite/gdb.cp/mb-templates.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-templates.exp
> > @@ -42,7 +42,7 @@ gdb_run_cmd
> >  
> > 
> >  set test "initial condition: run to breakpoint"
> >  gdb_test_multiple "" $test {
> > -    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> > +    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> >  	pass $test
> >  	break
> >      }
> > @@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
> >      "separate condition: set condition"
> >      
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo<double> \\(i=1\\).*" \
> > @@ -79,7 +79,7 @@ gdb_test "continue" \
> >  gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  # Try disabling entire breakpoint
> >  gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
> > diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > index 2fc650e215f..98afe07d6b6 100644
> > --- a/gdb/testsuite/gdb.cp/ovldbreak.exp
> > +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > @@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
> >  
> > 
> >  # Run through each breakpoint.
> >  proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> > -    global gdb_prompt hex decimal srcfile
> > +    global gdb_prompt hex decimal srcfile bkptno_num_re
> >  
> > 
> >      if {$argument == ""} {
> >          set actuals ""
> > @@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> >      }
> >  
> > 
> >      gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              pass "continue to bp overloaded : $argtype"
> >          }
> >  
> > 
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              if $might_kfail {
> >                  kfail "c++/8130" "continue to bp overloaded : $argtype"
> >              } else {
> > diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
> > index 6db8bf0df50..30eb6038f3a 100644
> > --- a/gdb/testsuite/gdb.gdb/python-helper.exp
> > +++ b/gdb/testsuite/gdb.gdb/python-helper.exp
> > @@ -49,7 +49,7 @@ gdb_exit
> >  # The main test.  This is called by the self-test framework once GDB
> >  # has been started on a copy of itself.
> >  proc test_python_helper {} {
> > -    global py_helper_script decimal hex gdb_prompt
> > +    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
> >      global inferior_spawn_id
> >  
> > 
> >      # Source the python helper script.  This script registers the
> > @@ -233,7 +233,7 @@ proc test_python_helper {} {
> >      # GDB stopping at the value_print breakpoint again.
> >      send_inferior "ptype global_c\n"
> >      gdb_test_multiple "" "hit breakpoint in outer gdb again" {
> > -	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
> > +	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
> >  	    pass $gdb_test_name
> >  	}
> >      }
> > diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > index 19ccbe85e04..c080955049c 100644
> > --- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > +++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > @@ -69,7 +69,7 @@ if { $use_second_inferior } {
> >  	"\\^running.*" \
> >  	"run inferior 2"
> >  
> > 
> > -    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
> > +    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
> >  	"inferior i2 stops at all_threads_started"
> >  
> > 
> >      mi_send_resuming_command "exec-continue --thread-group i2" \
> > diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > index 9444ca5acf4..7435778473a 100644
> > --- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > +++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > @@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  	    # Consume MI event output.
> >  	    with_spawn_id $mi_spawn_id {
> > -		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > -		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		if { $inf == 1 } {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		} else {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
> > +		}
> >  	    }
> >  
> > 
> >  	    if { $mode == "all-stop" } {
> > @@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		    # Consume MI output.
> >  		    with_spawn_id $mi_spawn_id {
> > -			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			    "thread $inf.$thread stops MI"
> > +			if { $inf == 1} {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +				"thread $inf.$thread stops MI"
> > +			} else {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +				"thread $inf.$thread stops MI"
> > +			}
> >  		    }
> >  		}
> >  
> > 
> > @@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		# Consume MI output.
> >  		with_spawn_id $mi_spawn_id {
> > -		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			"thread $inf.2 stops MI"
> > +		    if { $inf == 1} {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    } else {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    }
> >  		}
> >  	    }
> >  	}
> > @@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
> >  
> > 
> >  	with_spawn_id $mi_spawn_id {
> >  	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
> > -		{"" "disp=\"del\""} "main stop"
> > +		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
> >  	}
> >  
> > 
> >  	# Consume CLI output.
> > diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > index a1496fb5571..dfdb746c65e 100644
> > --- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > +++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > @@ -148,6 +148,7 @@ proc build_executables { first_arch } {
> >  }
> >  
> > 
> >  proc do_test { first_arch mode selected_thread } {
> > +        global bkptno_numopt_re
> >  	set from_exec "$first_arch-multi-arch-exec"
> >  
> > 
> >  	clean_restart ${from_exec}
> > @@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
> >  
> > 
> >  	# Test that GDB updates the target description / arch successfuly
> >  	# after the exec.
> > -	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
> > +	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
> >  }
> >  
> > 
> >  # Test both arch1=>arch2 and arch2=>arch1.
> > diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > index fec2575f904..b94689d0bfa 100644
> > --- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > +++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > @@ -46,5 +46,5 @@ gdb_load $binfile
> >  if {[gdb_start_cmd] < 0} {
> >      fail "start the second inf"
> >  } else {
> > -    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
> > +    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
> >  }
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > index cbccba19d12..3c079facced 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > @@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
> >  # child.  Can be either "kill", "detach", or "exit" (to continue it to
> >  # normal exit).
> >  proc do_test {dispose} {
> > -    global binfile
> > +    global binfile bkptno_numopt_re
> >  
> > 
> >      clean_restart $binfile
> >  
> > 
> > @@ -77,7 +77,7 @@ proc do_test {dispose} {
> >      #  Command aborted.
> >      #  (gdb)
> >      #
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
> >  	"continue in inferior 1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > index e4329dca6c2..0fc1bee762f 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > @@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
> >  	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
> >  	"catch c on inferior 2"
> >  
> > 
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
> >  
> > 
> >      gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
> >  
> > 
> >      gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
> >  }
> >  
> > 
> > -gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
> > +gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
> > diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> > index 7c35fbb18c4..a53d929be02 100644
> > --- a/gdb/testsuite/lib/gdb.exp
> > +++ b/gdb/testsuite/lib/gdb.exp
> > @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
> >  # E.g., $1, $2, etc.
> >  set valnum_re "\\\$$decimal"
> >  
> > 
> > +# A regular expression that matches a breakpoint hit with a breakpoint
> > +# having several locations
> > +set bkptno_num_re "$decimal\\.$decimal"
> > +
> > +# A regular expression that matches a breakpoint hit
> > +# with one or several locations.
> > +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
> > +
> >  ### Only procedures should come after this point.
> >  
> > 
> >  #
> > @@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
> >  
> > 
> >  proc runto { linespec args } {
> >      global gdb_prompt
> > +    global bkptno_numopt_re
> >      global decimal
> >  
> > 
> >      delete_breakpoints
> > @@ -699,7 +708,13 @@ proc runto { linespec args } {
> >  	    }
> >  	    return 1
> >  	}
> > -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> > +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > +	    if { $print_pass } {
> > +		pass $test_name
> > +	    }
> > +	    return 1
> > +	}
> > +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> >  	    if { $print_pass } {
> >  		pass $test_name
> >  	    }
> > diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
> > index 857a04519cf..36a586f63a4 100644
> > --- a/gdb/testsuite/lib/mi-support.exp
> > +++ b/gdb/testsuite/lib/mi-support.exp
> > @@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
> >  # filename of a file without debug info.  ARGS should not include [] the
> >  # list of argument is enclosed in, and other regular expressions should
> >  # not include quotes.
> > -# If EXTRA is a list of one element, it's the regular expression
> > +# EXTRA can be a list of one, two or three elements.
> > +# The first element is the regular expression
> >  # for output expected right after *stopped, and before GDB prompt.
> > -# If EXTRA is a list of two elements, the first element is for
> > -# output right after *stopped, and the second element is output
> > -# right after reason field.  The regex after reason should not include
> > +# The third element is the regulation expression for the locno
> > +# right after bkptno field.  The locno regex should not include
> >  # the comma separating it from the following fields.
> >  #
> >  # When we fail to match output at all, -1 is returned.  If FILE does
> > @@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
> >  
> > 
> >      set after_stopped ""
> >      set after_reason ""
> > -    if { [llength $extra] == 2 } {
> > +    set locno ""
> > +    if { [llength $extra] == 3 } {
> > +	set after_stopped [lindex $extra 0]
> > +	set after_reason [lindex $extra 1]
> > +	set after_reason "${after_reason},"
> > +	set locno [lindex $extra 2]
> > +	set locno "${locno},"
> > +    } elseif { [llength $extra] == 2 } {
> >  	set after_stopped [lindex $extra 0]
> >  	set after_reason [lindex $extra 1]
> >  	set after_reason "${after_reason},"
> > @@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set ebn ""
> >      if { $reason == "breakpoint-hit" } {
> >  	set bn {bkptno="[0-9]+",}
> > +	set bn "${bn}${locno}"
> >      } elseif { $reason == "solib-event" } {
> >  	set bn ".*"
> >      } elseif { $reason == "exception-caught" } {
> >  	set ebn {bkptno="[0-9]+",}
> > +	set ebn "${ebn}${locno}"
> >  	set bn ".*"
> >  	set reason "breakpoint-hit"
> >      }
> > @@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set a $after_reason
> >  
> > 
> >      verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
> > +
> >      gdb_expect {
> >  	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
> >  	    pass "$test"
> 
> 



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-29 16:26 ` Philippe Waroquiers
  2022-05-07  5:44   ` Philippe Waroquiers
  2022-05-13 16:49   ` Philippe Waroquiers
@ 2022-05-22 18:43   ` Philippe Waroquiers
  2022-05-30 19:08   ` Philippe Waroquiers
  3 siblings, 0 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-05-22 18:43 UTC (permalink / raw)
  To: gdb-patches


Ping^4

Thanks
Philippe


On Fri, 2022-04-29 at 18:26 +0200, Philippe Waroquiers via Gdb-patches wrote:
> Ping ?
> (doc was reviewed by Eli already, I will handle his comments in V2).
> 
> In the meantime, I did a small "opinion poll" at my work about the display
> of breakpoint nr and location nr in the breakpoint hit message.
> 
> Below is the detailed feedback, summary is that everybody prefers
> to see the breakpoint and location number, and does not see a (real)
> need to have this configurable.
> 
> Thanks
> Philippe
>  
> 
> 
> GDB should always display 1.6:
> ------------------------------
> * because this is consistent with the output of info breakpoint
>   and obeys the Principle of Least Astonishment
> 
> * Same.
> 
> * Sounds good. Does not see why this should be user configurable
>   but does not object to have an option (with default on).
> 
> * always show information.
> 
> * always show information.
> 
> GDB should have a config option to display 1.6, default on:
> -----------------------------------------------------------
> * consistent with 'info breakpoint', immediately informs the user about
>   something in a way which is not confusing.
>   Option to control it might be useful if someone parses the 'breakpoint hit' messages
>   (but which is not something that should be done)
> 
> GDB should have a config option to display 1.6, default off:
> ------------------------------------------------------------
> 
> 
> On Sun, 2022-04-17 at 17:53 +0200, Philippe Waroquiers wrote:
> > Before this patch, when a breakpoint that has multiple locations is reached,
> > GDB printed:
> >   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> > 
> > This patch changes the message so that bkpt_print_id prints the precise
> > encountered breakpoint:
> >   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> > 
> > In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
> >   locno is printed when the breakpoint has more than one location.
> > Note that according to the GDB user manual node 'GDB/MI Development and Front
> > Ends', it is ok to add new fields without changing the MI version.
> > 
> > Also, when a breakpoint is reached, the convenience variables
> > $bkptno and $locno are set to the encountered breakpoint number
> > and location number.
> > 
> > $bkptno and $locno can a.o. be used in the command list of a breakpoint,
> > to disable the specific encountered breakpoint, e.g.
> >    disable $bkptno.$locno
> > 
> > In case the breakpoint has only one location, $locno is still set to
> > the value 1, so as to allow a command such as:
> >   disable $bkptno.$locno
> > even when the breakpoint has only one location.
> > 
> > This also fixes a strange behaviour: when a breakpoint X has only
> > one location,
> >   enable|disable X.1
> > is accepted but transforms the breakpoint in a multiple locations
> > breakpoint having only one location.
> > ---
> >  gdb/NEWS                                      | 19 ++++
> >  gdb/ada-lang.c                                |  2 +-
> >  gdb/break-catch-syscall.c                     |  2 +-
> >  gdb/break-catch-throw.c                       |  2 +-
> >  gdb/breakpoint.c                              | 95 +++++++++++++++----
> >  gdb/breakpoint.h                              | 14 +++
> >  gdb/doc/gdb.texinfo                           | 27 +++++-
> >  gdb/infrun.c                                  | 16 +++-
> >  gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
> >  gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
> >  .../gdb.base/condbreak-multi-context.exp      |  8 +-
> >  gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
> >  gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
> >  gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
> >  gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
> >  gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
> >  gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
> >  gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
> >  gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
> >  gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
> >  .../gdb.mi/interrupt-thread-group.exp         |  2 +-
> >  .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
> >  gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
> >  .../gdb.multi/run-only-second-inf.exp         |  2 +-
> >  .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
> >  gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
> >  gdb/testsuite/lib/gdb.exp                     | 17 +++-
> >  gdb/testsuite/lib/mi-support.exp              | 20 +++-
> >  28 files changed, 284 insertions(+), 95 deletions(-)
> > 
> > diff --git a/gdb/NEWS b/gdb/NEWS
> > index 760cb2b7abc..673607dfbb3 100644
> > --- a/gdb/NEWS
> > +++ b/gdb/NEWS
> > @@ -14,6 +14,20 @@
> >    emit to indicate where a breakpoint should be placed to break in a function
> >    past its prologue.
> >  
> > 
> > +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> > +  using the syntax <breakpoint_number>.<location_number> such as in:
> > +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> > +
> > +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> > +  $locno to the hit breakpoint number and location number.
> > +  This allows to disable the last hit breakpoint using for example
> > +     (gdb) disable $bkptno
> > +   or
> > +     (gdb) disable $bkptno.$locno
> > +  These commands can be used inside the command list of a breakpoint to
> > +  automatically disable the just encountered breakpoint (or breakpoint
> > +  specific location).
> > +
> >  * New commands
> >  
> > 
> >  maintenance set ignore-prologue-end-flag on|off
> > @@ -30,6 +44,11 @@ maintenance info line-table
> >    entry corresponds to an address where a breakpoint should be placed
> >    to be at the first instruction past a function's prologue.
> >  
> > 
> > +* MI changes
> > +
> > + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> > +    locno giving the location number when the breakpoint has multiple locations.
> > +
> >  * Python API
> >  
> > 
> >    ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
> > diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
> > index 7623d0eb48d..58ed9e698f7 100644
> > --- a/gdb/ada-lang.c
> > +++ b/gdb/ada-lang.c
> > @@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
> >  
> > 
> >    uiout->text (b->disposition == disp_del
> >  	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    /* ada_exception_name_addr relies on the selected frame being the
> > diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
> > index 515a9577bb1..d7bc0625a74 100644
> > --- a/gdb/break-catch-syscall.c
> > +++ b/gdb/break-catch-syscall.c
> > @@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
> >  						: EXEC_ASYNC_SYSCALL_RETURN));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >  
> > 
> >    if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
> >      uiout->text (" (call to syscall ");
> > diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
> > index d98baf47d6d..7af37b4d2da 100644
> > --- a/gdb/break-catch-throw.c
> > +++ b/gdb/break-catch-throw.c
> > @@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
> >    bp_temp = b->disposition == disp_del;
> >    uiout->text (bp_temp ? "Temporary catchpoint "
> >  		       : "Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
> >  		: (kind == EX_EVENT_CATCH ? " (exception caught), "
> >  		   : " (exception rethrown), ")));
> > diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
> > index 1a227e5d120..a7d74d598db 100644
> > --- a/gdb/breakpoint.c
> > +++ b/gdb/breakpoint.c
> > @@ -687,6 +687,19 @@ get_breakpoint (int num)
> >    return nullptr;
> >  }
> >  
> > 
> > +/* Return TRUE if NUM refer to an existing breakpoint that has
> > +   multiple locations.  */
> > +
> > +static bool
> > +has_multiple_locations (int num)
> > +{
> > +  for (breakpoint *b : all_breakpoints ())
> > +    if (b->number == num)
> > +      return b->loc != nullptr && b->loc->next != nullptr;
> > +
> > +  return false;
> > +}
> > +
> >  \f
> >  
> > 
> >  /* Mark locations as "conditions have changed" in case the target supports
> > @@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
> >    return false;
> >  }
> >  
> > 
> > -/* Put in *NUM the breakpoint number of the first breakpoint we are
> > -   stopped at.  *BSP upon return is a bpstat which points to the
> > -   remaining breakpoints stopped at (but which is not guaranteed to be
> > -   good for anything but further calls to bpstat_num).
> > -
> > -   Return 0 if passed a bpstat which does not indicate any breakpoints.
> > -   Return -1 if stopped at a breakpoint that has been deleted since
> > -   we set it.
> > -   Return 1 otherwise.  */
> > +/* See breakpoint.h.  */
> >  
> > 
> >  int
> >  bpstat_num (bpstat **bsp, int *num)
> > @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
> >    return 1;
> >  }
> >  
> > 
> > +/* See breakpoint.h  */
> > +
> > +int
> > +bpstat_locno (bpstat *bs)
> > +{
> > +  const struct breakpoint *b = bs->breakpoint_at;
> > +  const struct bp_location *bl = bs->bp_location_at.get ();
> > +
> > +  int locno = 0;
> > +
> > +  if (b != nullptr && b->loc->next != nullptr)
> > +    {
> > +      const bp_location *bl_i;
> > +
> > +      for (bl_i = b->loc;
> > +	   bl_i != bl && bl_i->next != nullptr;
> > +	   bl_i = bl_i->next)
> > +	locno++;
> > +
> > +      if (bl_i == bl)
> > +	locno++;
> > +      else
> > +	{
> > +	  warning (_("location number not found for breakpoint %d address %p."),
> > +		   b->number, paddress (bl->gdbarch, bl->address));
> > +	  locno = 0;
> > +	}
> > +    }
> > +
> > +  return locno;
> > +}
> > +
> > +/* See breakpoint.h.  */
> > +
> > +void
> > +print_num_locno (bpstat *bs, struct ui_out *uiout)
> > +{
> > +  struct breakpoint *b = bs->breakpoint_at;
> > +
> > +  if (b == nullptr)
> > +    uiout->text (_("deleted breakpoint"));
> > +  else
> > +    {
> > +      uiout->field_signed ("bkptno", b->number);
> > +
> > +      int locno = bpstat_locno (bs);
> > +      if (locno != 0)
> > +	uiout->message (".%pF", signed_field ("locno", locno));
> > +    }
> > +}
> > +
> >  /* See breakpoint.h.  */
> >  
> > 
> >  void
> > @@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
> >      uiout->text ("Temporary catchpoint ");
> >    else
> >      uiout->text ("Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ("\n");
> >    if (uiout->is_mi_like_p ())
> >      uiout->field_string ("disp", bpdisp_text (b->disposition));
> > @@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
> >  		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> > @@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
> >  			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > +
> >    if (bp_temp)
> > -    uiout->message ("Temporary breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Temporary breakpoint ");
> >    else
> > -    uiout->message ("Breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Breakpoint ");
> > +  print_num_locno (bs, uiout);
> > +  uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> >  }
> > @@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
> >  	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
> >  
> > 
> >  	  if (bp_loc_range.first == bp_loc_range.second
> > -	      && bp_loc_range.first == 0)
> > +	      && (bp_loc_range.first == 0
> > +		  || (bp_loc_range.first == 1
> > +		      && bp_num_range.first == bp_num_range.second
> > +		      && !has_multiple_locations (bp_num_range.first))))
> >  	    {
> > -	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
> > +	      /* Handle breakpoint ids with formats 'x' or 'x-z'
> > +		 or 'y.1' where y has only one location.  */
> >  	      map_breakpoint_number_range (bp_num_range,
> >  					   enable
> >  					   ? enable_breakpoint
> > diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
> > index e412c4d4113..264ed5f1a4d 100644
> > --- a/gdb/breakpoint.h
> > +++ b/gdb/breakpoint.h
> > @@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
> >     Return 1 otherwise.  */
> >  extern int bpstat_num (bpstat **, int *);
> >  
> > 
> > +/* If BS indicates a breakpoint and this breakpoint has several locations,
> > +   return the location number of BS, otherwise return 0.  */
> > +
> > +extern int bpstat_locno (bpstat *bs);
> > +
> > +/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
> > +
> > +   For a breakpoint with only one location, outputs the signed field "bkpno"
> > +   breakpoint number of BS (as returned by bpstat_num).
> > +   If BS has several locations, outputs a '.' character followed by
> > +   the signed field "locno" (as returned by bpstat_locno).  */
> > +
> > +extern void print_num_locno (bpstat *bs, struct ui_out *);
> > +
> >  /* Perform actions associated with the stopped inferior.  Actually, we
> >     just use this for breakpoint commands.  Perhaps other actions will
> >     go here later, but this is executed at a late time (from the
> > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> > index c1e9b09e833..8408928648e 100644
> > --- a/gdb/doc/gdb.texinfo
> > +++ b/gdb/doc/gdb.texinfo
> > @@ -4338,9 +4338,15 @@ are operated on.
> >  @cindex latest breakpoint
> >  Breakpoints are set with the @code{break} command (abbreviated
> >  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> > -number of the breakpoint you've set most recently; see @ref{Convenience
> > -Vars,, Convenience Variables}, for a discussion of what you can do with
> > -convenience variables.
> > +number of the breakpoint you've set most recently.
> > +A breakpoint may be mapped to multiple locations for example with
> > +inlined functions, Ada generics, c++ templates or overloaded function names.
> > +
> > +When your program stops on a breakpoint, the convenience variables
> > +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> > +the encountered breakpoint and the number of the breakpoint location.
> > +You can typically use these variables in a breakpoint command list.
> > +(@pxref{Break Commands, ,Breakpoint Command Lists})
> >  
> > 
> >  @table @code
> >  @item break @var{location}
> > @@ -5724,6 +5730,18 @@ Expressions}).
> >  Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
> >  disabled within a @var{command-list}.
> >  
> > 
> > +Inside a command list, you can use the command
> > +@smallexample
> > +disable $bkptno
> > +@end smallexample
> > +to disable the encountered breakpoint.
> > +
> > +If your breakpoint has several locations, the command
> > +@smallexample
> > +disable $bkptno.$locno
> > +@end smallexample
> > +will disable the specific breakpoint location encountered.
> > +
> >  You can use breakpoint commands to start your program up again.  Simply
> >  use the @code{continue} command, or @code{step}, or any other command
> >  that resumes execution.
> > @@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
> >  specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
> >  ignored in all-stop mode.  If the @samp{--thread-group} options is
> >  specified, then all threads in that thread group are resumed.
> > +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> > +encountered has multiple locations, the field @samp{bkptno} is
> > +followed by the field @samp{locno}.
> >  
> > 
> >  @subsubheading @value{GDBN} Command
> >  
> > 
> > diff --git a/gdb/infrun.c b/gdb/infrun.c
> > index c311240b78c..62c61167dd4 100644
> > --- a/gdb/infrun.c
> > +++ b/gdb/infrun.c
> > @@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
> >       LOCATION: Print only location
> >       SRC_AND_LOC: Print location and source line.  */
> >    if (do_frame_printing)
> > -    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    {
> > +      if (tp->control.stop_bpstat != nullptr)
> > +	{
> > +	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
> > +
> > +	  if (b != nullptr)
> > +	    {
> > +	      int locno = bpstat_locno (tp->control.stop_bpstat);
> > +	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
> > +	      set_internalvar_integer (lookup_internalvar ("locno"),
> > +				       (locno > 0 ? locno : 1));
> > +	    }
> > +	}
> > +      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    }
> >  }
> >  
> > 
> >  /* See infrun.h.  */
> > diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > index 076e8c2425f..3f94c163819 100644
> > --- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > +++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > @@ -42,7 +42,7 @@ gdb_test "break read_small" \
> >  for {set i 0} {$i < 4} {incr i} {
> >      with_test_prefix "iteration $i" {
> >  	gdb_test "continue" \
> > -	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
> > +	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
> >  	    "stopped in read_small"
> >      }
> >  }
> > diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
> > index 655e7af479f..e3928419ed6 100644
> > --- a/gdb/testsuite/gdb.ada/operator_bp.exp
> > +++ b/gdb/testsuite/gdb.ada/operator_bp.exp
> > @@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to \"$op\""
> >  }
> >  
> > 
> > @@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to ops.\"$op\""
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > index b540df973a3..742315178e3 100644
> > --- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > +++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > @@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check our conditional breakpoints.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > @@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check that we hit enabled locations only.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
> > index 9c010f54d79..0b589a7d6e6 100644
> > --- a/gdb/testsuite/gdb.base/ctxobj.exp
> > +++ b/gdb/testsuite/gdb.base/ctxobj.exp
> > @@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
> >           "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
> >           "break in get_version functions"
> >  
> > 
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_1 \\(\\).*" \
> > -         "continue to get_version_1"
> > +global expect_out
> > +set test "continue to get_version_1"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  # Try printing "this_version_num".  There are two global variables
> >  # with that name, and some systems such as GNU/Linux merge them
> > @@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
> >          "print libctxobj1's this_version_num from symtab"
> >  
> > 
> >  # Do the same, but from get_version_2.
> > -
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_2 \\(\\).*" \
> > -         "continue to get_version_2"
> > +set test "continue to get_version_2"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  gdb_test "print this_version_num == v" \
> >           " = 1" \
> > diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > index 24925cf7185..ba5804f576f 100644
> > --- a/gdb/testsuite/gdb.base/ena-dis-br.exp
> > +++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > @@ -67,14 +67,21 @@ gdb_test "info break $bp" \
> >  # See the comments in condbreak.exp for "run until breakpoint at
> >  # marker1" for an explanation of the xfail below.
> >  set test "continue to break marker1"
> > +set bpno 0
> >  gdb_test_multiple "continue" "$test" {
> > -    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	pass "$test"
> >      }
> > -    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	xfail "$test"
> >      }
> >  }
> > +# Verify the $bkptno convenience variable is equal to the hit bpno.
> > +gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
> > +# Verify the $locno is 1, as there is only one location.
> > +gdb_test "print \$locno" " = 1" "$test \$locno is 1"
> >  
> > 
> >  gdb_test_no_output "delete $bp" "delete break marker1"
> >  
> > 
> > @@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
> >  }
> >  
> > 
> >  # Perform tests for disable/enable commands on multiple
> > -# locations and breakpoints.
> > +# locations and breakpoints.  If a breakpoint has only one location,
> > +# enable/disable num  and enable/disable num.1 should be equivalent.
> >  #
> >  # WHAT - the command to test (disable/enable).
> >  #
> > @@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
> >      global b3
> >      global b4
> >      global gdb_prompt
> > -    
> > +
> >      # OPPOS    - the command opposite to WHAT.
> >      # WHAT_RES - whether breakpoints are expected to end
> >      #            up enabled or disabled.
> > @@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
> >  	set p2 "pass"
> >      }
> >  
> > 
> > -    # Now enable(disable) $b.1 $b2.1.
> > +    # Now enable(disable) $b1.1 $b2.1.
> >      gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
> >      set test1 "${what}d \$b1.1 and \$b2.1"
> >  
> > 
> >      # Now $b1.1 and $b2.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > @@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
> >         "${what}d \$b1"
> >  
> > 
> >      gdb_test_no_output "$oppos $b3" "$oppos \$b3"
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    set test1 "${what}d \$b4 and \$b3"
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
> > +
> >      gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
> > -    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
> > +    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
> > +
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
> >  
> > 
> > -    # Now $b4 $b3.1 should be enabled(disabled) and
> > -    # $b3 should remain disabled(enabled).
> > -    gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p1 "$test1"
> > -       }
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p2 "$test1"
> > -       }
> > -    }
> >  
> > 
> >      # Now enable(disable) '$b4.1 fooobaar'.  This should error on
> >      # fooobaar.
> > @@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
> >  
> > 
> >      # $b4.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > index 986e46ecd61..6ddf6749511 100644
> > --- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > +++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > @@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
> >  # before re-running.
> >  
> > 
> >  proc do_follow_exec_mode_tests { mode cmd infswitch } {
> > -    global binfile srcfile srcfile2 testfile testfile2
> > +    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
> >      global gdb_prompt
> >  
> > 
> >      with_test_prefix "$mode,$cmd,$infswitch" {
> > @@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  	# Set up the output we expect to see after we execute past the exec.
> >  	#
> >  	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
> > -	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> > +	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> >  
> > 
> >  	# Set a breakpoint after the exec call if we aren't single-stepping
> >  	# past it.
> > @@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  		send_gdb "y\n"
> >  		exp_continue
> >  	    }
> > -	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
> > +	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
> >  		pass $test
> >  	    }
> >  	}
> > diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
> > index efc357d39a2..19e9d3a5537 100644
> > --- a/gdb/testsuite/gdb.base/pie-fork.exp
> > +++ b/gdb/testsuite/gdb.base/pie-fork.exp
> > @@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
> >  proc_with_prefix test_no_detach_on_fork {} {
> >      setup_test "off"
> >  
> > 
> > -    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
> >  	     "continue from thread 1.1"
> >      gdb_test "thread 2.1"
> > -    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
> >  	     "continue from thread 2.1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
> > index 936bb080e3b..143bcfa1a94 100644
> > --- a/gdb/testsuite/gdb.base/step-over-exit.exp
> > +++ b/gdb/testsuite/gdb.base/step-over-exit.exp
> > @@ -91,7 +91,7 @@ delete_breakpoints
> >  
> > 
> >  gdb_test "break marker"
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
> >      "continue to marker, first time"
> >  
> > 
> >  # Step 2, create a breakpoint which evaluates false, and force it
> > @@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
> >  # Switch back to the parent process, continue to the marker to
> >  # test GDBserver's state is still correct.
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
> >      "continue to marker, second time"
> > diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
> > index 47a2a5dcb7c..fa098602c31 100644
> > --- a/gdb/testsuite/gdb.cp/mb-inline.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-inline.exp
> > @@ -46,7 +46,7 @@ gdb_test "info break" \
> >      "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo \\(i=1\\).*" \
> > @@ -59,7 +59,7 @@ gdb_test "continue" \
> >  gdb_test_no_output "disable 1.2" "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  gdb_test_multiple "info break" "disabled breakpoint 1.2" {
> >      -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
> > index 6c988e7335e..0c0d46fcb7a 100644
> > --- a/gdb/testsuite/gdb.cp/mb-templates.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-templates.exp
> > @@ -42,7 +42,7 @@ gdb_run_cmd
> >  
> > 
> >  set test "initial condition: run to breakpoint"
> >  gdb_test_multiple "" $test {
> > -    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> > +    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> >  	pass $test
> >  	break
> >      }
> > @@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
> >      "separate condition: set condition"
> >      
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo<double> \\(i=1\\).*" \
> > @@ -79,7 +79,7 @@ gdb_test "continue" \
> >  gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  # Try disabling entire breakpoint
> >  gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
> > diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > index 2fc650e215f..98afe07d6b6 100644
> > --- a/gdb/testsuite/gdb.cp/ovldbreak.exp
> > +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > @@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
> >  
> > 
> >  # Run through each breakpoint.
> >  proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> > -    global gdb_prompt hex decimal srcfile
> > +    global gdb_prompt hex decimal srcfile bkptno_num_re
> >  
> > 
> >      if {$argument == ""} {
> >          set actuals ""
> > @@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> >      }
> >  
> > 
> >      gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              pass "continue to bp overloaded : $argtype"
> >          }
> >  
> > 
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              if $might_kfail {
> >                  kfail "c++/8130" "continue to bp overloaded : $argtype"
> >              } else {
> > diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
> > index 6db8bf0df50..30eb6038f3a 100644
> > --- a/gdb/testsuite/gdb.gdb/python-helper.exp
> > +++ b/gdb/testsuite/gdb.gdb/python-helper.exp
> > @@ -49,7 +49,7 @@ gdb_exit
> >  # The main test.  This is called by the self-test framework once GDB
> >  # has been started on a copy of itself.
> >  proc test_python_helper {} {
> > -    global py_helper_script decimal hex gdb_prompt
> > +    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
> >      global inferior_spawn_id
> >  
> > 
> >      # Source the python helper script.  This script registers the
> > @@ -233,7 +233,7 @@ proc test_python_helper {} {
> >      # GDB stopping at the value_print breakpoint again.
> >      send_inferior "ptype global_c\n"
> >      gdb_test_multiple "" "hit breakpoint in outer gdb again" {
> > -	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
> > +	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
> >  	    pass $gdb_test_name
> >  	}
> >      }
> > diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > index 19ccbe85e04..c080955049c 100644
> > --- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > +++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > @@ -69,7 +69,7 @@ if { $use_second_inferior } {
> >  	"\\^running.*" \
> >  	"run inferior 2"
> >  
> > 
> > -    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
> > +    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
> >  	"inferior i2 stops at all_threads_started"
> >  
> > 
> >      mi_send_resuming_command "exec-continue --thread-group i2" \
> > diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > index 9444ca5acf4..7435778473a 100644
> > --- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > +++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > @@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  	    # Consume MI event output.
> >  	    with_spawn_id $mi_spawn_id {
> > -		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > -		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		if { $inf == 1 } {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		} else {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
> > +		}
> >  	    }
> >  
> > 
> >  	    if { $mode == "all-stop" } {
> > @@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		    # Consume MI output.
> >  		    with_spawn_id $mi_spawn_id {
> > -			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			    "thread $inf.$thread stops MI"
> > +			if { $inf == 1} {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +				"thread $inf.$thread stops MI"
> > +			} else {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +				"thread $inf.$thread stops MI"
> > +			}
> >  		    }
> >  		}
> >  
> > 
> > @@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		# Consume MI output.
> >  		with_spawn_id $mi_spawn_id {
> > -		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			"thread $inf.2 stops MI"
> > +		    if { $inf == 1} {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    } else {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    }
> >  		}
> >  	    }
> >  	}
> > @@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
> >  
> > 
> >  	with_spawn_id $mi_spawn_id {
> >  	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
> > -		{"" "disp=\"del\""} "main stop"
> > +		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
> >  	}
> >  
> > 
> >  	# Consume CLI output.
> > diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > index a1496fb5571..dfdb746c65e 100644
> > --- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > +++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > @@ -148,6 +148,7 @@ proc build_executables { first_arch } {
> >  }
> >  
> > 
> >  proc do_test { first_arch mode selected_thread } {
> > +        global bkptno_numopt_re
> >  	set from_exec "$first_arch-multi-arch-exec"
> >  
> > 
> >  	clean_restart ${from_exec}
> > @@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
> >  
> > 
> >  	# Test that GDB updates the target description / arch successfuly
> >  	# after the exec.
> > -	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
> > +	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
> >  }
> >  
> > 
> >  # Test both arch1=>arch2 and arch2=>arch1.
> > diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > index fec2575f904..b94689d0bfa 100644
> > --- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > +++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > @@ -46,5 +46,5 @@ gdb_load $binfile
> >  if {[gdb_start_cmd] < 0} {
> >      fail "start the second inf"
> >  } else {
> > -    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
> > +    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
> >  }
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > index cbccba19d12..3c079facced 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > @@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
> >  # child.  Can be either "kill", "detach", or "exit" (to continue it to
> >  # normal exit).
> >  proc do_test {dispose} {
> > -    global binfile
> > +    global binfile bkptno_numopt_re
> >  
> > 
> >      clean_restart $binfile
> >  
> > 
> > @@ -77,7 +77,7 @@ proc do_test {dispose} {
> >      #  Command aborted.
> >      #  (gdb)
> >      #
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
> >  	"continue in inferior 1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > index e4329dca6c2..0fc1bee762f 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > @@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
> >  	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
> >  	"catch c on inferior 2"
> >  
> > 
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
> >  
> > 
> >      gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
> >  
> > 
> >      gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
> >  }
> >  
> > 
> > -gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
> > +gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
> > diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> > index 7c35fbb18c4..a53d929be02 100644
> > --- a/gdb/testsuite/lib/gdb.exp
> > +++ b/gdb/testsuite/lib/gdb.exp
> > @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
> >  # E.g., $1, $2, etc.
> >  set valnum_re "\\\$$decimal"
> >  
> > 
> > +# A regular expression that matches a breakpoint hit with a breakpoint
> > +# having several locations
> > +set bkptno_num_re "$decimal\\.$decimal"
> > +
> > +# A regular expression that matches a breakpoint hit
> > +# with one or several locations.
> > +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
> > +
> >  ### Only procedures should come after this point.
> >  
> > 
> >  #
> > @@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
> >  
> > 
> >  proc runto { linespec args } {
> >      global gdb_prompt
> > +    global bkptno_numopt_re
> >      global decimal
> >  
> > 
> >      delete_breakpoints
> > @@ -699,7 +708,13 @@ proc runto { linespec args } {
> >  	    }
> >  	    return 1
> >  	}
> > -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> > +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > +	    if { $print_pass } {
> > +		pass $test_name
> > +	    }
> > +	    return 1
> > +	}
> > +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> >  	    if { $print_pass } {
> >  		pass $test_name
> >  	    }
> > diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
> > index 857a04519cf..36a586f63a4 100644
> > --- a/gdb/testsuite/lib/mi-support.exp
> > +++ b/gdb/testsuite/lib/mi-support.exp
> > @@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
> >  # filename of a file without debug info.  ARGS should not include [] the
> >  # list of argument is enclosed in, and other regular expressions should
> >  # not include quotes.
> > -# If EXTRA is a list of one element, it's the regular expression
> > +# EXTRA can be a list of one, two or three elements.
> > +# The first element is the regular expression
> >  # for output expected right after *stopped, and before GDB prompt.
> > -# If EXTRA is a list of two elements, the first element is for
> > -# output right after *stopped, and the second element is output
> > -# right after reason field.  The regex after reason should not include
> > +# The third element is the regulation expression for the locno
> > +# right after bkptno field.  The locno regex should not include
> >  # the comma separating it from the following fields.
> >  #
> >  # When we fail to match output at all, -1 is returned.  If FILE does
> > @@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
> >  
> > 
> >      set after_stopped ""
> >      set after_reason ""
> > -    if { [llength $extra] == 2 } {
> > +    set locno ""
> > +    if { [llength $extra] == 3 } {
> > +	set after_stopped [lindex $extra 0]
> > +	set after_reason [lindex $extra 1]
> > +	set after_reason "${after_reason},"
> > +	set locno [lindex $extra 2]
> > +	set locno "${locno},"
> > +    } elseif { [llength $extra] == 2 } {
> >  	set after_stopped [lindex $extra 0]
> >  	set after_reason [lindex $extra 1]
> >  	set after_reason "${after_reason},"
> > @@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set ebn ""
> >      if { $reason == "breakpoint-hit" } {
> >  	set bn {bkptno="[0-9]+",}
> > +	set bn "${bn}${locno}"
> >      } elseif { $reason == "solib-event" } {
> >  	set bn ".*"
> >      } elseif { $reason == "exception-caught" } {
> >  	set ebn {bkptno="[0-9]+",}
> > +	set ebn "${ebn}${locno}"
> >  	set bn ".*"
> >  	set reason "breakpoint-hit"
> >      }
> > @@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set a $after_reason
> >  
> > 
> >      verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
> > +
> >      gdb_expect {
> >  	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
> >  	    pass "$test"
> 
> 



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-04-29 16:26 ` Philippe Waroquiers
                     ` (2 preceding siblings ...)
  2022-05-22 18:43   ` Philippe Waroquiers
@ 2022-05-30 19:08   ` Philippe Waroquiers
  2022-06-03 20:40     ` Keith Seitz
  3 siblings, 1 reply; 14+ messages in thread
From: Philippe Waroquiers @ 2022-05-30 19:08 UTC (permalink / raw)
  To: gdb-patches

Ping^5

Thanks

Philippe

On Fri, 2022-04-29 at 18:26 +0200, Philippe Waroquiers via Gdb-patches wrote:
> Ping ?
> (doc was reviewed by Eli already, I will handle his comments in V2).
> 
> In the meantime, I did a small "opinion poll" at my work about the display
> of breakpoint nr and location nr in the breakpoint hit message.
> 
> Below is the detailed feedback, summary is that everybody prefers
> to see the breakpoint and location number, and does not see a (real)
> need to have this configurable.
> 
> Thanks
> Philippe
>  
> 
> 
> GDB should always display 1.6:
> ------------------------------
> * because this is consistent with the output of info breakpoint
>   and obeys the Principle of Least Astonishment
> 
> * Same.
> 
> * Sounds good. Does not see why this should be user configurable
>   but does not object to have an option (with default on).
> 
> * always show information.
> 
> * always show information.
> 
> GDB should have a config option to display 1.6, default on:
> -----------------------------------------------------------
> * consistent with 'info breakpoint', immediately informs the user about
>   something in a way which is not confusing.
>   Option to control it might be useful if someone parses the 'breakpoint hit' messages
>   (but which is not something that should be done)
> 
> GDB should have a config option to display 1.6, default off:
> ------------------------------------------------------------
> 
> 
> On Sun, 2022-04-17 at 17:53 +0200, Philippe Waroquiers wrote:
> > Before this patch, when a breakpoint that has multiple locations is reached,
> > GDB printed:
> >   Thread 1 "zeoes" hit Breakpoint 1, some_func () at somefunc1.c:5
> > 
> > This patch changes the message so that bkpt_print_id prints the precise
> > encountered breakpoint:
> >   Thread 1 "zeoes" hit Breakpoint 1.2, some_func () at somefunc1.c:5
> > 
> > In mi mode, bkpt_print_id also (optionally) prints a new table field "locno":
> >   locno is printed when the breakpoint has more than one location.
> > Note that according to the GDB user manual node 'GDB/MI Development and Front
> > Ends', it is ok to add new fields without changing the MI version.
> > 
> > Also, when a breakpoint is reached, the convenience variables
> > $bkptno and $locno are set to the encountered breakpoint number
> > and location number.
> > 
> > $bkptno and $locno can a.o. be used in the command list of a breakpoint,
> > to disable the specific encountered breakpoint, e.g.
> >    disable $bkptno.$locno
> > 
> > In case the breakpoint has only one location, $locno is still set to
> > the value 1, so as to allow a command such as:
> >   disable $bkptno.$locno
> > even when the breakpoint has only one location.
> > 
> > This also fixes a strange behaviour: when a breakpoint X has only
> > one location,
> >   enable|disable X.1
> > is accepted but transforms the breakpoint in a multiple locations
> > breakpoint having only one location.
> > ---
> >  gdb/NEWS                                      | 19 ++++
> >  gdb/ada-lang.c                                |  2 +-
> >  gdb/break-catch-syscall.c                     |  2 +-
> >  gdb/break-catch-throw.c                       |  2 +-
> >  gdb/breakpoint.c                              | 95 +++++++++++++++----
> >  gdb/breakpoint.h                              | 14 +++
> >  gdb/doc/gdb.texinfo                           | 27 +++++-
> >  gdb/infrun.c                                  | 16 +++-
> >  gdb/testsuite/gdb.ada/bp_inlined_func.exp     |  2 +-
> >  gdb/testsuite/gdb.ada/operator_bp.exp         |  4 +-
> >  .../gdb.base/condbreak-multi-context.exp      |  8 +-
> >  gdb/testsuite/gdb.base/ctxobj.exp             | 26 +++--
> >  gdb/testsuite/gdb.base/ena-dis-br.exp         | 41 ++++----
> >  gdb/testsuite/gdb.base/foll-exec-mode.exp     |  6 +-
> >  gdb/testsuite/gdb.base/pie-fork.exp           |  4 +-
> >  gdb/testsuite/gdb.base/step-over-exit.exp     |  4 +-
> >  gdb/testsuite/gdb.cp/mb-inline.exp            |  4 +-
> >  gdb/testsuite/gdb.cp/mb-templates.exp         |  6 +-
> >  gdb/testsuite/gdb.cp/ovldbreak.exp            |  6 +-
> >  gdb/testsuite/gdb.gdb/python-helper.exp       |  4 +-
> >  .../gdb.mi/interrupt-thread-group.exp         |  2 +-
> >  .../gdb.mi/user-selected-context-sync.exp     | 35 +++++--
> >  gdb/testsuite/gdb.multi/multi-arch-exec.exp   |  3 +-
> >  .../gdb.multi/run-only-second-inf.exp         |  2 +-
> >  .../gdb.multi/watchpoint-multi-exit.exp       |  4 +-
> >  gdb/testsuite/gdb.multi/watchpoint-multi.exp  |  4 +-
> >  gdb/testsuite/lib/gdb.exp                     | 17 +++-
> >  gdb/testsuite/lib/mi-support.exp              | 20 +++-
> >  28 files changed, 284 insertions(+), 95 deletions(-)
> > 
> > diff --git a/gdb/NEWS b/gdb/NEWS
> > index 760cb2b7abc..673607dfbb3 100644
> > --- a/gdb/NEWS
> > +++ b/gdb/NEWS
> > @@ -14,6 +14,20 @@
> >    emit to indicate where a breakpoint should be placed to break in a function
> >    past its prologue.
> >  
> > 
> > +* When a breakpoint with multiple locations is hit, GDB now also prints the location
> > +  using the syntax <breakpoint_number>.<location_number> such as in:
> > +     Thread 1 "zeoes" hit Breakpoint 2.3, some_func () at zeoes.c:8
> > +
> > +* When a breakpoint is hit, GDB now sets the convenience variables $bkpno and
> > +  $locno to the hit breakpoint number and location number.
> > +  This allows to disable the last hit breakpoint using for example
> > +     (gdb) disable $bkptno
> > +   or
> > +     (gdb) disable $bkptno.$locno
> > +  These commands can be used inside the command list of a breakpoint to
> > +  automatically disable the just encountered breakpoint (or breakpoint
> > +  specific location).
> > +
> >  * New commands
> >  
> > 
> >  maintenance set ignore-prologue-end-flag on|off
> > @@ -30,6 +44,11 @@ maintenance info line-table
> >    entry corresponds to an address where a breakpoint should be placed
> >    to be at the first instruction past a function's prologue.
> >  
> > 
> > +* MI changes
> > +
> > + ** The 'breakpoint-hit' stopped reason async record now contains an optional field
> > +    locno giving the location number when the breakpoint has multiple locations.
> > +
> >  * Python API
> >  
> > 
> >    ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE),
> > diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
> > index 7623d0eb48d..58ed9e698f7 100644
> > --- a/gdb/ada-lang.c
> > +++ b/gdb/ada-lang.c
> > @@ -12306,7 +12306,7 @@ print_it_exception (bpstat *bs)
> >  
> > 
> >    uiout->text (b->disposition == disp_del
> >  	       ? "\nTemporary catchpoint " : "\nCatchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    /* ada_exception_name_addr relies on the selected frame being the
> > diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c
> > index 515a9577bb1..d7bc0625a74 100644
> > --- a/gdb/break-catch-syscall.c
> > +++ b/gdb/break-catch-syscall.c
> > @@ -206,7 +206,7 @@ print_it_catch_syscall (bpstat *bs)
> >  						: EXEC_ASYNC_SYSCALL_RETURN));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >  
> > 
> >    if (last.kind () == TARGET_WAITKIND_SYSCALL_ENTRY)
> >      uiout->text (" (call to syscall ");
> > diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
> > index d98baf47d6d..7af37b4d2da 100644
> > --- a/gdb/break-catch-throw.c
> > +++ b/gdb/break-catch-throw.c
> > @@ -240,7 +240,7 @@ print_it_exception_catchpoint (bpstat *bs)
> >    bp_temp = b->disposition == disp_del;
> >    uiout->text (bp_temp ? "Temporary catchpoint "
> >  		       : "Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
> >  		: (kind == EX_EVENT_CATCH ? " (exception caught), "
> >  		   : " (exception rethrown), ")));
> > diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
> > index 1a227e5d120..a7d74d598db 100644
> > --- a/gdb/breakpoint.c
> > +++ b/gdb/breakpoint.c
> > @@ -687,6 +687,19 @@ get_breakpoint (int num)
> >    return nullptr;
> >  }
> >  
> > 
> > +/* Return TRUE if NUM refer to an existing breakpoint that has
> > +   multiple locations.  */
> > +
> > +static bool
> > +has_multiple_locations (int num)
> > +{
> > +  for (breakpoint *b : all_breakpoints ())
> > +    if (b->number == num)
> > +      return b->loc != nullptr && b->loc->next != nullptr;
> > +
> > +  return false;
> > +}
> > +
> >  \f
> >  
> > 
> >  /* Mark locations as "conditions have changed" in case the target supports
> > @@ -4334,15 +4347,7 @@ bpstat_explains_signal (bpstat *bsp, enum gdb_signal sig)
> >    return false;
> >  }
> >  
> > 
> > -/* Put in *NUM the breakpoint number of the first breakpoint we are
> > -   stopped at.  *BSP upon return is a bpstat which points to the
> > -   remaining breakpoints stopped at (but which is not guaranteed to be
> > -   good for anything but further calls to bpstat_num).
> > -
> > -   Return 0 if passed a bpstat which does not indicate any breakpoints.
> > -   Return -1 if stopped at a breakpoint that has been deleted since
> > -   we set it.
> > -   Return 1 otherwise.  */
> > +/* See breakpoint.h.  */
> >  
> > 
> >  int
> >  bpstat_num (bpstat **bsp, int *num)
> > @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
> >    return 1;
> >  }
> >  
> > 
> > +/* See breakpoint.h  */
> > +
> > +int
> > +bpstat_locno (bpstat *bs)
> > +{
> > +  const struct breakpoint *b = bs->breakpoint_at;
> > +  const struct bp_location *bl = bs->bp_location_at.get ();
> > +
> > +  int locno = 0;
> > +
> > +  if (b != nullptr && b->loc->next != nullptr)
> > +    {
> > +      const bp_location *bl_i;
> > +
> > +      for (bl_i = b->loc;
> > +	   bl_i != bl && bl_i->next != nullptr;
> > +	   bl_i = bl_i->next)
> > +	locno++;
> > +
> > +      if (bl_i == bl)
> > +	locno++;
> > +      else
> > +	{
> > +	  warning (_("location number not found for breakpoint %d address %p."),
> > +		   b->number, paddress (bl->gdbarch, bl->address));
> > +	  locno = 0;
> > +	}
> > +    }
> > +
> > +  return locno;
> > +}
> > +
> > +/* See breakpoint.h.  */
> > +
> > +void
> > +print_num_locno (bpstat *bs, struct ui_out *uiout)
> > +{
> > +  struct breakpoint *b = bs->breakpoint_at;
> > +
> > +  if (b == nullptr)
> > +    uiout->text (_("deleted breakpoint"));
> > +  else
> > +    {
> > +      uiout->field_signed ("bkptno", b->number);
> > +
> > +      int locno = bpstat_locno (bs);
> > +      if (locno != 0)
> > +	uiout->message (".%pF", signed_field ("locno", locno));
> > +    }
> > +}
> > +
> >  /* See breakpoint.h.  */
> >  
> > 
> >  void
> > @@ -7829,7 +7885,7 @@ print_it_catch_solib (bpstat *bs)
> >      uiout->text ("Temporary catchpoint ");
> >    else
> >      uiout->text ("Catchpoint ");
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text ("\n");
> >    if (uiout->is_mi_like_p ())
> >      uiout->field_string ("disp", bpdisp_text (b->disposition));
> > @@ -9393,7 +9449,7 @@ print_it_ranged_breakpoint (bpstat *bs)
> >  		      async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > -  uiout->field_signed ("bkptno", b->number);
> > +  print_num_locno (bs, uiout);
> >    uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> > @@ -11978,12 +12034,13 @@ bkpt_print_it (bpstat *bs)
> >  			   async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
> >        uiout->field_string ("disp", bpdisp_text (b->disposition));
> >      }
> > +
> >    if (bp_temp)
> > -    uiout->message ("Temporary breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Temporary breakpoint ");
> >    else
> > -    uiout->message ("Breakpoint %pF, ",
> > -		    signed_field ("bkptno", b->number));
> > +    uiout->text ("Breakpoint ");
> > +  print_num_locno (bs, uiout);
> > +  uiout->text (", ");
> >  
> > 
> >    return PRINT_SRC_AND_LOC;
> >  }
> > @@ -13734,9 +13791,13 @@ enable_disable_command (const char *args, int from_tty, bool enable)
> >  	  extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
> >  
> > 
> >  	  if (bp_loc_range.first == bp_loc_range.second
> > -	      && bp_loc_range.first == 0)
> > +	      && (bp_loc_range.first == 0
> > +		  || (bp_loc_range.first == 1
> > +		      && bp_num_range.first == bp_num_range.second
> > +		      && !has_multiple_locations (bp_num_range.first))))
> >  	    {
> > -	      /* Handle breakpoint ids with formats 'x' or 'x-z'.  */
> > +	      /* Handle breakpoint ids with formats 'x' or 'x-z'
> > +		 or 'y.1' where y has only one location.  */
> >  	      map_breakpoint_number_range (bp_num_range,
> >  					   enable
> >  					   ? enable_breakpoint
> > diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
> > index e412c4d4113..264ed5f1a4d 100644
> > --- a/gdb/breakpoint.h
> > +++ b/gdb/breakpoint.h
> > @@ -1127,6 +1127,20 @@ extern enum print_stop_action bpstat_print (bpstat *, int);
> >     Return 1 otherwise.  */
> >  extern int bpstat_num (bpstat **, int *);
> >  
> > 
> > +/* If BS indicates a breakpoint and this breakpoint has several locations,
> > +   return the location number of BS, otherwise return 0.  */
> > +
> > +extern int bpstat_locno (bpstat *bs);
> > +
> > +/* Print BS breakpoint number optionally followed by a . and breakpoint locno.
> > +
> > +   For a breakpoint with only one location, outputs the signed field "bkpno"
> > +   breakpoint number of BS (as returned by bpstat_num).
> > +   If BS has several locations, outputs a '.' character followed by
> > +   the signed field "locno" (as returned by bpstat_locno).  */
> > +
> > +extern void print_num_locno (bpstat *bs, struct ui_out *);
> > +
> >  /* Perform actions associated with the stopped inferior.  Actually, we
> >     just use this for breakpoint commands.  Perhaps other actions will
> >     go here later, but this is executed at a late time (from the
> > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> > index c1e9b09e833..8408928648e 100644
> > --- a/gdb/doc/gdb.texinfo
> > +++ b/gdb/doc/gdb.texinfo
> > @@ -4338,9 +4338,15 @@ are operated on.
> >  @cindex latest breakpoint
> >  Breakpoints are set with the @code{break} command (abbreviated
> >  @code{b}).  The debugger convenience variable @samp{$bpnum} records the
> > -number of the breakpoint you've set most recently; see @ref{Convenience
> > -Vars,, Convenience Variables}, for a discussion of what you can do with
> > -convenience variables.
> > +number of the breakpoint you've set most recently.
> > +A breakpoint may be mapped to multiple locations for example with
> > +inlined functions, Ada generics, c++ templates or overloaded function names.
> > +
> > +When your program stops on a breakpoint, the convenience variables
> > +@samp{$bpkpno} and @samp{$locno} are respectively set to the number of
> > +the encountered breakpoint and the number of the breakpoint location.
> > +You can typically use these variables in a breakpoint command list.
> > +(@pxref{Break Commands, ,Breakpoint Command Lists})
> >  
> > 
> >  @table @code
> >  @item break @var{location}
> > @@ -5724,6 +5730,18 @@ Expressions}).
> >  Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
> >  disabled within a @var{command-list}.
> >  
> > 
> > +Inside a command list, you can use the command
> > +@smallexample
> > +disable $bkptno
> > +@end smallexample
> > +to disable the encountered breakpoint.
> > +
> > +If your breakpoint has several locations, the command
> > +@smallexample
> > +disable $bkptno.$locno
> > +@end smallexample
> > +will disable the specific breakpoint location encountered.
> > +
> >  You can use breakpoint commands to start your program up again.  Simply
> >  use the @code{continue} command, or @code{step}, or any other command
> >  that resumes execution.
> > @@ -32384,6 +32402,9 @@ value of the @samp{scheduler-locking} variable.  If @samp{--all} is
> >  specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
> >  ignored in all-stop mode.  If the @samp{--thread-group} options is
> >  specified, then all threads in that thread group are resumed.
> > +For a @samp{breakpoint-hit} stopped reason, when the breakpoint
> > +encountered has multiple locations, the field @samp{bkptno} is
> > +followed by the field @samp{locno}.
> >  
> > 
> >  @subsubheading @value{GDBN} Command
> >  
> > 
> > diff --git a/gdb/infrun.c b/gdb/infrun.c
> > index c311240b78c..62c61167dd4 100644
> > --- a/gdb/infrun.c
> > +++ b/gdb/infrun.c
> > @@ -8474,7 +8474,21 @@ print_stop_location (const target_waitstatus &ws)
> >       LOCATION: Print only location
> >       SRC_AND_LOC: Print location and source line.  */
> >    if (do_frame_printing)
> > -    print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    {
> > +      if (tp->control.stop_bpstat != nullptr)
> > +	{
> > +	  const struct breakpoint *b = tp->control.stop_bpstat->breakpoint_at;
> > +
> > +	  if (b != nullptr)
> > +	    {
> > +	      int locno = bpstat_locno (tp->control.stop_bpstat);
> > +	      set_internalvar_integer (lookup_internalvar ("bkptno"), b->number);
> > +	      set_internalvar_integer (lookup_internalvar ("locno"),
> > +				       (locno > 0 ? locno : 1));
> > +	    }
> > +	}
> > +      print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
> > +    }
> >  }
> >  
> > 
> >  /* See infrun.h.  */
> > diff --git a/gdb/testsuite/gdb.ada/bp_inlined_func.exp b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > index 076e8c2425f..3f94c163819 100644
> > --- a/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > +++ b/gdb/testsuite/gdb.ada/bp_inlined_func.exp
> > @@ -42,7 +42,7 @@ gdb_test "break read_small" \
> >  for {set i 0} {$i < 4} {incr i} {
> >      with_test_prefix "iteration $i" {
> >  	gdb_test "continue" \
> > -	    "Breakpoint $decimal, b\\.read_small \\(\\).*" \
> > +	    "Breakpoint $bkptno_num_re, b\\.read_small \\(\\).*" \
> >  	    "stopped in read_small"
> >      }
> >  }
> > diff --git a/gdb/testsuite/gdb.ada/operator_bp.exp b/gdb/testsuite/gdb.ada/operator_bp.exp
> > index 655e7af479f..e3928419ed6 100644
> > --- a/gdb/testsuite/gdb.ada/operator_bp.exp
> > +++ b/gdb/testsuite/gdb.ada/operator_bp.exp
> > @@ -56,7 +56,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to \"$op\""
> >  }
> >  
> > 
> > @@ -86,7 +86,7 @@ foreach op { "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&"
> >  foreach op { "+" "-" "*" "/" "mod" "rem" "**" "<" "<=" ">" ">=" "=" "and" "or" "xor" "&" "abs" "not"} {
> >      set op_re [string_to_regexp $op]
> >      gdb_test "continue" \
> > -             "Breakpoint $decimal, ops\\.\"$op_re\" .*"\
> > +             "Breakpoint $bkptno_numopt_re, ops\\.\"$op_re\" .*"\
> >               "continue to ops.\"$op\""
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/condbreak-multi-context.exp b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > index b540df973a3..742315178e3 100644
> > --- a/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > +++ b/gdb/testsuite/gdb.base/condbreak-multi-context.exp
> > @@ -140,11 +140,11 @@ with_test_prefix "scenario 1" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check our conditional breakpoints.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > @@ -208,11 +208,11 @@ with_test_prefix "scenario 2" {
> >      gdb_run_cmd
> >  
> > 
> >      # Check that we hit enabled locations only.
> > -    gdb_test "" ".*Breakpoint \[0-9\]+, A::func .*" \
> > +    gdb_test "" ".*Breakpoint $bkptno_num_re, A::func .*" \
> >  	"run until A::func"
> >      gdb_test "print a" " = 10"
> >  
> > 
> > -    gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, C::func .*" \
> > +    gdb_test "continue" "Continuing.*Breakpoint $bkptno_num_re, C::func .*" \
> >  	"run until C::func"
> >      gdb_test "print c" " = 30"
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/ctxobj.exp b/gdb/testsuite/gdb.base/ctxobj.exp
> > index 9c010f54d79..0b589a7d6e6 100644
> > --- a/gdb/testsuite/gdb.base/ctxobj.exp
> > +++ b/gdb/testsuite/gdb.base/ctxobj.exp
> > @@ -67,9 +67,16 @@ gdb_test "break ctxobj-f.c:$bp_location" \
> >           "Breakpoint \[0-9\]+ at 0x\[0-9a-fA-F\]+: .*" \
> >           "break in get_version functions"
> >  
> > 
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_1 \\(\\).*" \
> > -         "continue to get_version_1"
> > +global expect_out
> > +set test "continue to get_version_1"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_1 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  # Try printing "this_version_num".  There are two global variables
> >  # with that name, and some systems such as GNU/Linux merge them
> > @@ -100,10 +107,15 @@ gdb_test "print this_version_num == v" \
> >          "print libctxobj1's this_version_num from symtab"
> >  
> > 
> >  # Do the same, but from get_version_2.
> > -
> > -gdb_test "continue" \
> > -         "Breakpoint $decimal, get_version_2 \\(\\).*" \
> > -         "continue to get_version_2"
> > +set test "continue to get_version_2"
> > +gdb_test_multiple "continue" $test {
> > +    -re "Breakpoint ($bkptno_num_re), get_version_2 \\(\\).*" {
> > +	set bpno $expect_out(1,string)
> > +	pass $test
> > +    }
> > +}
> > +# Verify the $bkptno.$locno convenience variables are set to the hit bpno.
> > +gdb_test "printf \"%d.%d\\n\", \$bkptno, \$locno" "$bpno" "$test \$bkptno.\$locno is $bpno"
> >  
> > 
> >  gdb_test "print this_version_num == v" \
> >           " = 1" \
> > diff --git a/gdb/testsuite/gdb.base/ena-dis-br.exp b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > index 24925cf7185..ba5804f576f 100644
> > --- a/gdb/testsuite/gdb.base/ena-dis-br.exp
> > +++ b/gdb/testsuite/gdb.base/ena-dis-br.exp
> > @@ -67,14 +67,21 @@ gdb_test "info break $bp" \
> >  # See the comments in condbreak.exp for "run until breakpoint at
> >  # marker1" for an explanation of the xfail below.
> >  set test "continue to break marker1"
> > +set bpno 0
> >  gdb_test_multiple "continue" "$test" {
> > -    -re "Breakpoint \[0-9\]*, marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	pass "$test"
> >      }
> > -    -re "Breakpoint \[0-9\]*, $hex in marker1.*$gdb_prompt $" {
> > +    -re "Breakpoint (\[0-9\]*), $hex in marker1.*$gdb_prompt $" {
> > +	set bpno $expect_out(1,string)
> >  	xfail "$test"
> >      }
> >  }
> > +# Verify the $bkptno convenience variable is equal to the hit bpno.
> > +gdb_test "print \$bkptno" " = $bpno" "$test \$bkptno is $bpno"
> > +# Verify the $locno is 1, as there is only one location.
> > +gdb_test "print \$locno" " = 1" "$test \$locno is 1"
> >  
> > 
> >  gdb_test_no_output "delete $bp" "delete break marker1"
> >  
> > 
> > @@ -359,7 +366,8 @@ with_test_prefix "4th breakpoint" {
> >  }
> >  
> > 
> >  # Perform tests for disable/enable commands on multiple
> > -# locations and breakpoints.
> > +# locations and breakpoints.  If a breakpoint has only one location,
> > +# enable/disable num  and enable/disable num.1 should be equivalent.
> >  #
> >  # WHAT - the command to test (disable/enable).
> >  #
> > @@ -372,7 +380,7 @@ proc test_ena_dis_br { what } {
> >      global b3
> >      global b4
> >      global gdb_prompt
> > -    
> > +
> >      # OPPOS    - the command opposite to WHAT.
> >      # WHAT_RES - whether breakpoints are expected to end
> >      #            up enabled or disabled.
> > @@ -395,13 +403,13 @@ proc test_ena_dis_br { what } {
> >  	set p2 "pass"
> >      }
> >  
> > 
> > -    # Now enable(disable) $b.1 $b2.1.
> > +    # Now enable(disable) $b1.1 $b2.1.
> >      gdb_test_no_output "$what $b1.1 $b2.1" "$what \$b1.1 \$b2.1"
> >      set test1 "${what}d \$b1.1 and \$b2.1"
> >  
> > 
> >      # Now $b1.1 and $b2.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b1}.1)(\[^\n\r\]*)( n.*)(${b2}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +       -re "(${b1})(\[^\n\r\]*)( n.*)(${b2})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > @@ -420,19 +428,16 @@ proc test_ena_dis_br { what } {
> >         "${what}d \$b1"
> >  
> > 
> >      gdb_test_no_output "$oppos $b3" "$oppos \$b3"
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    set test1 "${what}d \$b4 and \$b3"
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $oppos_res.*).*(${b4})(\[^\n\r\]*)( $oppos_res.*)" "$test1"
> > +
> >      gdb_test_no_output "$what $b4 $b3.1" "$what \$b4 \$b3.1"
> > -    set test1 "${what}d \$b4 and \$b3.1,remain ${oppos}d \$b3"
> > +    set test1 "${what}d \$b4 and \$b3.1, changing \$b3"
> > +
> > +    # Now $b4 $b3 should be enabled(disabled)
> > +    gdb_test "info break" "(${b3})(\[^\n\r]*)( $what_res.*).*(${b4})(\[^\n\r\]*)( $what_res.*)" "$test1"
> >  
> > 
> > -    # Now $b4 $b3.1 should be enabled(disabled) and
> > -    # $b3 should remain disabled(enabled).
> > -    gdb_test_multiple "info break" "$test1" {
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b3}.1)(\[^\n\r\]*)( n.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p1 "$test1"
> > -       }
> > -       -re "(${b3})(\[^\n\r]*)( $oppos_res.*)(${b4})(\[^\n\r\]*)( $what_res.*)$gdb_prompt $" {
> > -           $p2 "$test1"
> > -       }
> > -    }
> >  
> > 
> >      # Now enable(disable) '$b4.1 fooobaar'.  This should error on
> >      # fooobaar.
> > @@ -443,7 +448,7 @@ proc test_ena_dis_br { what } {
> >  
> > 
> >      # $b4.1 should be enabled(disabled).
> >      gdb_test_multiple "info break" "$test1" {
> > -        -re "(${b4}.1)(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> > +        -re "(${b4})(\[^\n\r\]*)( n.*)$gdb_prompt $" {
> >             $p1 "$test1"
> >         }
> >         -re ".*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.base/foll-exec-mode.exp b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > index 986e46ecd61..6ddf6749511 100644
> > --- a/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > +++ b/gdb/testsuite/gdb.base/foll-exec-mode.exp
> > @@ -99,7 +99,7 @@ proc do_catch_exec_test { } {
> >  # before re-running.
> >  
> > 
> >  proc do_follow_exec_mode_tests { mode cmd infswitch } {
> > -    global binfile srcfile srcfile2 testfile testfile2
> > +    global binfile srcfile srcfile2 testfile testfile2 bkptno_numopt_re
> >      global gdb_prompt
> >  
> > 
> >      with_test_prefix "$mode,$cmd,$infswitch" {
> > @@ -125,7 +125,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  	# Set up the output we expect to see after we execute past the exec.
> >  	#
> >  	set execd_line [gdb_get_line_number "after-exec" $srcfile2]
> > -	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> > +	set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint ${bkptno_numopt_re},.*${srcfile2}:${execd_line}.*$gdb_prompt $"
> >  
> > 
> >  	# Set a breakpoint after the exec call if we aren't single-stepping
> >  	# past it.
> > @@ -189,7 +189,7 @@ proc do_follow_exec_mode_tests { mode cmd infswitch } {
> >  		send_gdb "y\n"
> >  		exp_continue
> >  	    }
> > -	    -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
> > +	    -re "Starting program: .*$expected_inf.*Breakpoint $bkptno_numopt_re,.*\r\n$gdb_prompt $" {
> >  		pass $test
> >  	    }
> >  	}
> > diff --git a/gdb/testsuite/gdb.base/pie-fork.exp b/gdb/testsuite/gdb.base/pie-fork.exp
> > index efc357d39a2..19e9d3a5537 100644
> > --- a/gdb/testsuite/gdb.base/pie-fork.exp
> > +++ b/gdb/testsuite/gdb.base/pie-fork.exp
> > @@ -54,10 +54,10 @@ proc_with_prefix test_detach_on_fork_follow_child {} {
> >  proc_with_prefix test_no_detach_on_fork {} {
> >      setup_test "off"
> >  
> > 
> > -    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 1.1 .* hit Breakpoint 2.1, break_here.*" \
> >  	     "continue from thread 1.1"
> >      gdb_test "thread 2.1"
> > -    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2, break_here.*" \
> > +    gdb_test "continue" "\r\nThread 2.1 .* hit Breakpoint 2.2, break_here.*" \
> >  	     "continue from thread 2.1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.base/step-over-exit.exp b/gdb/testsuite/gdb.base/step-over-exit.exp
> > index 936bb080e3b..143bcfa1a94 100644
> > --- a/gdb/testsuite/gdb.base/step-over-exit.exp
> > +++ b/gdb/testsuite/gdb.base/step-over-exit.exp
> > @@ -91,7 +91,7 @@ delete_breakpoints
> >  
> > 
> >  gdb_test "break marker"
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_num_re, .*" \
> >      "continue to marker, first time"
> >  
> > 
> >  # Step 2, create a breakpoint which evaluates false, and force it
> > @@ -120,5 +120,5 @@ gdb_test "inferior 1" ".*Switching to inferior 1.*" \
> >  # Switch back to the parent process, continue to the marker to
> >  # test GDBserver's state is still correct.
> >  
> > 
> > -gdb_test "continue" "Continuing\\..*Breakpoint $decimal, .*" \
> > +gdb_test "continue" "Continuing\\..*Breakpoint $bkptno_numopt_re, .*" \
> >      "continue to marker, second time"
> > diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
> > index 47a2a5dcb7c..fa098602c31 100644
> > --- a/gdb/testsuite/gdb.cp/mb-inline.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-inline.exp
> > @@ -46,7 +46,7 @@ gdb_test "info break" \
> >      "\[\r\n\]1\.1.* y .* at .*$hdrfile:$bp_location.*\[\r\n\]1\.2.* y .* at .*$hdrfile:$bp_location.*"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo \\(i=1\\).*" \
> > @@ -59,7 +59,7 @@ gdb_test "continue" \
> >  gdb_test_no_output "disable 1.2" "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo \\(i=0\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  gdb_test_multiple "info break" "disabled breakpoint 1.2" {
> >      -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
> > diff --git a/gdb/testsuite/gdb.cp/mb-templates.exp b/gdb/testsuite/gdb.cp/mb-templates.exp
> > index 6c988e7335e..0c0d46fcb7a 100644
> > --- a/gdb/testsuite/gdb.cp/mb-templates.exp
> > +++ b/gdb/testsuite/gdb.cp/mb-templates.exp
> > @@ -42,7 +42,7 @@ gdb_run_cmd
> >  
> > 
> >  set test "initial condition: run to breakpoint"
> >  gdb_test_multiple "" $test {
> > -    -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> > +    -re "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
> >  	pass $test
> >  	break
> >      }
> > @@ -67,7 +67,7 @@ gdb_test_no_output {condition $bpnum i==1} \
> >      "separate condition: set condition"
> >      
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
> >  
> > 
> >  gdb_test "continue" \
> >      ".*Breakpoint.*foo<double> \\(i=1\\).*" \
> > @@ -79,7 +79,7 @@ gdb_test "continue" \
> >  gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
> >  
> > 
> >  gdb_run_cmd
> > -gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> > +gdb_test "" "Breakpoint $bkptno_num_re,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
> >  
> > 
> >  # Try disabling entire breakpoint
> >  gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
> > diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > index 2fc650e215f..98afe07d6b6 100644
> > --- a/gdb/testsuite/gdb.cp/ovldbreak.exp
> > +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp
> > @@ -330,7 +330,7 @@ gdb_test "info break" $bptable "breakpoint info (after setting on all)"
> >  
> > 
> >  # Run through each breakpoint.
> >  proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> > -    global gdb_prompt hex decimal srcfile
> > +    global gdb_prompt hex decimal srcfile bkptno_num_re
> >  
> > 
> >      if {$argument == ""} {
> >          set actuals ""
> > @@ -348,11 +348,11 @@ proc continue_to_bp_overloaded {bpnumber might_fail line argtype argument} {
> >      }
> >  
> > 
> >      gdb_test_multiple "continue" "continue to bp overloaded : $argtype" {
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}(, )?$actuals\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              pass "continue to bp overloaded : $argtype"
> >          }
> >  
> > 
> > -        -re "Continuing.\r\n\r\nBreakpoint $bpnumber, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> > +        -re "Continuing.\r\n\r\nBreakpoint $bkptno_num_re, foo::overload1arg \\(this=${hex}, arg=.*\\) at .*$srcfile:$line\r\n$decimal\[\t \]+{ $body }.*$gdb_prompt $" {
> >              if $might_kfail {
> >                  kfail "c++/8130" "continue to bp overloaded : $argtype"
> >              } else {
> > diff --git a/gdb/testsuite/gdb.gdb/python-helper.exp b/gdb/testsuite/gdb.gdb/python-helper.exp
> > index 6db8bf0df50..30eb6038f3a 100644
> > --- a/gdb/testsuite/gdb.gdb/python-helper.exp
> > +++ b/gdb/testsuite/gdb.gdb/python-helper.exp
> > @@ -49,7 +49,7 @@ gdb_exit
> >  # The main test.  This is called by the self-test framework once GDB
> >  # has been started on a copy of itself.
> >  proc test_python_helper {} {
> > -    global py_helper_script decimal hex gdb_prompt
> > +    global py_helper_script decimal hex gdb_prompt bkptno_numopt_re
> >      global inferior_spawn_id
> >  
> > 
> >      # Source the python helper script.  This script registers the
> > @@ -233,7 +233,7 @@ proc test_python_helper {} {
> >      # GDB stopping at the value_print breakpoint again.
> >      send_inferior "ptype global_c\n"
> >      gdb_test_multiple "" "hit breakpoint in outer gdb again" {
> > -	-re "Breakpoint $decimal, c_print_type .*\\(outer-gdb\\) $" {
> > +	-re "Breakpoint $bkptno_numopt_re, c_print_type .*\\(outer-gdb\\) $" {
> >  	    pass $gdb_test_name
> >  	}
> >      }
> > diff --git a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > index 19ccbe85e04..c080955049c 100644
> > --- a/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > +++ b/gdb/testsuite/gdb.mi/interrupt-thread-group.exp
> > @@ -69,7 +69,7 @@ if { $use_second_inferior } {
> >  	"\\^running.*" \
> >  	"run inferior 2"
> >  
> > 
> > -    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\""} \
> > +    mi_expect_stop "breakpoint-hit" "all_threads_started" ".*" ".*" ".*" {"" "disp=\"keep\"" "locno=\"[0-9]+\""} \
> >  	"inferior i2 stops at all_threads_started"
> >  
> > 
> >      mi_send_resuming_command "exec-continue --thread-group i2" \
> > diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > index 9444ca5acf4..7435778473a 100644
> > --- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > +++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
> > @@ -307,8 +307,13 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  	    # Consume MI event output.
> >  	    with_spawn_id $mi_spawn_id {
> > -		mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > -		    "$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		if { $inf == 1 } {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\""} "stop at breakpoint in main"
> > +		} else {
> > +		    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" \
> > +			"$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} "stop at breakpoint in main"
> > +		}
> >  	    }
> >  
> > 
> >  	    if { $mode == "all-stop" } {
> > @@ -330,9 +335,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		    # Consume MI output.
> >  		    with_spawn_id $mi_spawn_id {
> > -			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			    "thread $inf.$thread stops MI"
> > +			if { $inf == 1} {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +				"thread $inf.$thread stops MI"
> > +			} else {
> > +			    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +				"" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +				"thread $inf.$thread stops MI"
> > +			}
> >  		    }
> >  		}
> >  
> > 
> > @@ -359,9 +370,15 @@ proc test_continue_to_start { mode inf } {
> >  
> > 
> >  		# Consume MI output.
> >  		with_spawn_id $mi_spawn_id {
> > -		    mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > -			"" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > -			"thread $inf.2 stops MI"
> > +		    if { $inf == 1} {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    } else {
> > +			mi_expect_stop "breakpoint-hit" "child_sub_function" \
> > +			    "" "$srcfile" "$decimal" {"" "disp=\"del\"" "locno=\"[0-9]+\""} \
> > +			    "thread $inf.2 stops MI"
> > +		    }
> >  		}
> >  	    }
> >  	}
> > @@ -434,7 +451,7 @@ proc_with_prefix test_setup { mode } {
> >  
> > 
> >  	with_spawn_id $mi_spawn_id {
> >  	    mi_expect_stop "breakpoint-hit" "main" "" "$srcfile" "$decimal" \
> > -		{"" "disp=\"del\""} "main stop"
> > +		{"" "disp=\"del\"" "locno=\"[0-9]+\""} "main stop"
> >  	}
> >  
> > 
> >  	# Consume CLI output.
> > diff --git a/gdb/testsuite/gdb.multi/multi-arch-exec.exp b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > index a1496fb5571..dfdb746c65e 100644
> > --- a/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > +++ b/gdb/testsuite/gdb.multi/multi-arch-exec.exp
> > @@ -148,6 +148,7 @@ proc build_executables { first_arch } {
> >  }
> >  
> > 
> >  proc do_test { first_arch mode selected_thread } {
> > +        global bkptno_numopt_re
> >  	set from_exec "$first_arch-multi-arch-exec"
> >  
> > 
> >  	clean_restart ${from_exec}
> > @@ -169,7 +170,7 @@ proc do_test { first_arch mode selected_thread } {
> >  
> > 
> >  	# Test that GDB updates the target description / arch successfuly
> >  	# after the exec.
> > -	gdb_test "continue" "Breakpoint 2, main.*" "continue across exec that changes architecture"
> > +	gdb_test "continue" "Breakpoint $bkptno_numopt_re, main.*" "continue across exec that changes architecture"
> >  }
> >  
> > 
> >  # Test both arch1=>arch2 and arch2=>arch1.
> > diff --git a/gdb/testsuite/gdb.multi/run-only-second-inf.exp b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > index fec2575f904..b94689d0bfa 100644
> > --- a/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > +++ b/gdb/testsuite/gdb.multi/run-only-second-inf.exp
> > @@ -46,5 +46,5 @@ gdb_load $binfile
> >  if {[gdb_start_cmd] < 0} {
> >      fail "start the second inf"
> >  } else {
> > -    gdb_test "" ".*reakpoint ., main .*${srcfile}.*" "start the second inf"
> > +    gdb_test "" ".*reakpoint $bkptno_numopt_re, main .*${srcfile}.*" "start the second inf"
> >  }
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > index cbccba19d12..3c079facced 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi-exit.exp
> > @@ -27,7 +27,7 @@ if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
> >  # child.  Can be either "kill", "detach", or "exit" (to continue it to
> >  # normal exit).
> >  proc do_test {dispose} {
> > -    global binfile
> > +    global binfile bkptno_numopt_re
> >  
> > 
> >      clean_restart $binfile
> >  
> > 
> > @@ -77,7 +77,7 @@ proc do_test {dispose} {
> >      #  Command aborted.
> >      #  (gdb)
> >      #
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker .*" \
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
> >  	"continue in inferior 1"
> >  }
> >  
> > 
> > diff --git a/gdb/testsuite/gdb.multi/watchpoint-multi.exp b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > index e4329dca6c2..0fc1bee762f 100644
> > --- a/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> > @@ -84,11 +84,11 @@ if [skip_hw_watchpoint_multi_tests] {
> >  	"Hardware access \\(read/write\\) watchpoint \[0-9\]+: c\r\n\r\nOld value = 0\r\nNew value = 3\r\n.*" \
> >  	"catch c on inferior 2"
> >  
> > 
> > -    gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 2"
> > +    gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 2"
> >  
> > 
> >      gdb_test "inferior 1" "witching to inferior 1 .*" "switch back to inferior 1 again"
> >  
> > 
> >      gdb_test "continue" "Hardware access \\(read/write\\) watchpoint \[0-9\]+: b\r\n\r\nOld value = 0\r\nNew value = 2\r\n.*" "catch b on inferior 1"
> >  }
> >  
> > 
> > -gdb_test "continue" "Breakpoint \[0-9\]+, marker_exit .*" "catch marker_exit in inferior 1"
> > +gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker_exit .*" "catch marker_exit in inferior 1"
> > diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> > index 7c35fbb18c4..a53d929be02 100644
> > --- a/gdb/testsuite/lib/gdb.exp
> > +++ b/gdb/testsuite/lib/gdb.exp
> > @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
> >  # E.g., $1, $2, etc.
> >  set valnum_re "\\\$$decimal"
> >  
> > 
> > +# A regular expression that matches a breakpoint hit with a breakpoint
> > +# having several locations
> > +set bkptno_num_re "$decimal\\.$decimal"
> > +
> > +# A regular expression that matches a breakpoint hit
> > +# with one or several locations.
> > +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
> > +
> >  ### Only procedures should come after this point.
> >  
> > 
> >  #
> > @@ -662,6 +670,7 @@ proc gdb_breakpoint { linespec args } {
> >  
> > 
> >  proc runto { linespec args } {
> >      global gdb_prompt
> > +    global bkptno_numopt_re
> >      global decimal
> >  
> > 
> >      delete_breakpoints
> > @@ -699,7 +708,13 @@ proc runto { linespec args } {
> >  	    }
> >  	    return 1
> >  	}
> > -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> > +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > +	    if { $print_pass } {
> > +		pass $test_name
> > +	    }
> > +	    return 1
> > +	}
> > +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
> >  	    if { $print_pass } {
> >  		pass $test_name
> >  	    }
> > diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
> > index 857a04519cf..36a586f63a4 100644
> > --- a/gdb/testsuite/lib/mi-support.exp
> > +++ b/gdb/testsuite/lib/mi-support.exp
> > @@ -1187,11 +1187,11 @@ proc mi_detect_async {} {
> >  # filename of a file without debug info.  ARGS should not include [] the
> >  # list of argument is enclosed in, and other regular expressions should
> >  # not include quotes.
> > -# If EXTRA is a list of one element, it's the regular expression
> > +# EXTRA can be a list of one, two or three elements.
> > +# The first element is the regular expression
> >  # for output expected right after *stopped, and before GDB prompt.
> > -# If EXTRA is a list of two elements, the first element is for
> > -# output right after *stopped, and the second element is output
> > -# right after reason field.  The regex after reason should not include
> > +# The third element is the regulation expression for the locno
> > +# right after bkptno field.  The locno regex should not include
> >  # the comma separating it from the following fields.
> >  #
> >  # When we fail to match output at all, -1 is returned.  If FILE does
> > @@ -1216,7 +1216,14 @@ proc mi_expect_stop { reason func args file line extra test } {
> >  
> > 
> >      set after_stopped ""
> >      set after_reason ""
> > -    if { [llength $extra] == 2 } {
> > +    set locno ""
> > +    if { [llength $extra] == 3 } {
> > +	set after_stopped [lindex $extra 0]
> > +	set after_reason [lindex $extra 1]
> > +	set after_reason "${after_reason},"
> > +	set locno [lindex $extra 2]
> > +	set locno "${locno},"
> > +    } elseif { [llength $extra] == 2 } {
> >  	set after_stopped [lindex $extra 0]
> >  	set after_reason [lindex $extra 1]
> >  	set after_reason "${after_reason},"
> > @@ -1290,10 +1297,12 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set ebn ""
> >      if { $reason == "breakpoint-hit" } {
> >  	set bn {bkptno="[0-9]+",}
> > +	set bn "${bn}${locno}"
> >      } elseif { $reason == "solib-event" } {
> >  	set bn ".*"
> >      } elseif { $reason == "exception-caught" } {
> >  	set ebn {bkptno="[0-9]+",}
> > +	set ebn "${ebn}${locno}"
> >  	set bn ".*"
> >  	set reason "breakpoint-hit"
> >      }
> > @@ -1307,6 +1316,7 @@ proc mi_expect_stop { reason func args file line extra test } {
> >      set a $after_reason
> >  
> > 
> >      verbose -log "mi_expect_stop: expecting: \\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
> > +
> >      gdb_expect {
> >  	-re "\\*stopped,${ebn}${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\",arch=\"$any\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
> >  	    pass "$test"
> 
> 



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-05-30 19:08   ` Philippe Waroquiers
@ 2022-06-03 20:40     ` Keith Seitz
  2022-06-04  6:23       ` Eli Zaretskii
  2022-06-04 17:37       ` Philippe Waroquiers
  0 siblings, 2 replies; 14+ messages in thread
From: Keith Seitz @ 2022-06-03 20:40 UTC (permalink / raw)
  To: Philippe Waroquiers, gdb-patches

On 5/30/22 12:08, Philippe Waroquiers via Gdb-patches wrote:
> Ping^5

Hi, I'm sorry it has taken so long for someone to look at this
because I think this is a really useful UI improvement. Thanks!

I've really only got some pretty minor questions to ask and a nit or
two to mention. Nothing serious.

>> Below is the detailed feedback, summary is that everybody prefers
>> to see the breakpoint and location number, and does not see a (real)
>> need to have this configurable.

I looked up the history of this patch a bit to understand the motivation
for querying co-workers... I see Eli commented in the original April
discussion:

> I'm not sure everyone will want to see the likes of
>
>  Thread 1 "foobar" hit breakpoint 10.42, some_func () at ...
>
> But that's MO; I'd be interested in opinions of others.

Well, I'm not a global maintainer, but I'll chime in with my opinion,
if everyone will permit me. [Ha! You're already reading it!]

I don't think it is a big deal to see ".42" in the output. Far more
irritating is not knowing exactly which of the many locations it hit.
I've always felt this was akin to ambiguous output by GDB. "You hit
breakpoint X." Oh, wait, that's one of fifty different real breakpoints.

I could make the argument for "2" vs "2.1" when there is only one location,
but you've addressed that case.

I admit, though, I am less critical of UI changes than many. I'd like
to reiterate Eli's suggestion and also encourage others to weigh in.

>>> Also, when a breakpoint is reached, the convenience variables
>>> $bkptno and $locno are set to the encountered breakpoint number
>>> and location number.

We have convenience variables for when we set breakpoints ($bpnum)
and tracepoints ($tpnum). Should we re-use those or would that lead
to user confusion? AFAICT, we only use those variables when a
{break,trace}point is created or modified. This seems like it could
be a natural extension of the utility of those variables.

I am not asking for any changes, I'm genuinely curious if reusing
these existing convenience vars would be desirable in your opinion.

>>> diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
>>> index 1a227e5d120..a7d74d598db 100644
>>> --- a/gdb/breakpoint.c
>>> +++ b/gdb/breakpoint.c
>>> @@ -687,6 +687,19 @@ get_breakpoint (int num)
>>>     return nullptr;
>>>   }
>>>   
>>>
>>> +/* Return TRUE if NUM refer to an existing breakpoint that has
>>> +   multiple locations.  */
>>> +
>>> +static bool
>>> +has_multiple_locations (int num)

At one time, we used to append "_p" to these types of predicate-
style functions. Are we abandoning this practice? [Mind you,
this is simply a meta-question. Again, I am not asking for
any changes.]

>>> +{
>>> +  for (breakpoint *b : all_breakpoints ())
>>> +    if (b->number == num)
>>> +      return b->loc != nullptr && b->loc->next != nullptr;
>>> +
>>> +  return false;
>>> +}
>>> +
>>>   \f
>>>   
>>>
>>>   /* Mark locations as "conditions have changed" in case the target supports
>>> @@ -4364,6 +4369,57 @@ bpstat_num (bpstat **bsp, int *num)
>>>     return 1;
>>>   }
>>>   
>>>
>>> +/* See breakpoint.h  */
>>> +
>>> +int
>>> +bpstat_locno (bpstat *bs)
>>> +{
>>> +  const struct breakpoint *b = bs->breakpoint_at;
>>> +  const struct bp_location *bl = bs->bp_location_at.get ();
>>> +
>>> +  int locno = 0;
>>> +
>>> +  if (b != nullptr && b->loc->next != nullptr)
>>> +    {
>>> +      const bp_location *bl_i;
>>> +
>>> +      for (bl_i = b->loc;
>>> +	   bl_i != bl && bl_i->next != nullptr;
>>> +	   bl_i = bl_i->next)
>>> +	locno++;
>>> +
>>> +      if (bl_i == bl)
>>> +	locno++;
>>> +      else
>>> +	{
>>> +	  warning (_("location number not found for breakpoint %d address %p."),
>>> +		   b->number, paddress (bl->gdbarch, bl->address));

Doesn't paddress require %s (or even nicer: %ps with a styled_string ())?

>>> +	  locno = 0;
>>> +	}
>>> +    }
>>> +
>>> +  return locno;
>>> +}
>>> +
>>> +/* See breakpoint.h.  */
>>> +
>>> +void
>>> +print_num_locno (bpstat *bs, struct ui_out *uiout)
>>> +{
>>> +  struct breakpoint *b = bs->breakpoint_at;
>>> +
>>> +  if (b == nullptr)
>>> +    uiout->text (_("deleted breakpoint"));
>>> +  else
>>> +    {
>>> +      uiout->field_signed ("bkptno", b->number);
>>> +
>>> +      int locno = bpstat_locno (bs);
>>> +      if (locno != 0)
>>> +	uiout->message (".%pF", signed_field ("locno", locno));
>>> +    }
>>> +}
>>> +
>>>   /* See breakpoint.h.  */
>>>   
>>>
>>>   void
>>> diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
>>> index 7c35fbb18c4..a53d929be02 100644
>>> --- a/gdb/testsuite/lib/gdb.exp
>>> +++ b/gdb/testsuite/lib/gdb.exp
>>> @@ -227,6 +227,14 @@ set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
>>>   # E.g., $1, $2, etc.
>>>   set valnum_re "\\\$$decimal"
>>>   
>>>
>>> +# A regular expression that matches a breakpoint hit with a breakpoint
>>> +# having several locations
>>> +set bkptno_num_re "$decimal\\.$decimal"
>>> +
>>> +# A regular expression that matches a breakpoint hit
>>> +# with one or several locations.
>>> +set bkptno_numopt_re "($decimal\\.$decimal|$decimal)"
>>> +

Nice! I've always thought this would be needed "one day." I guess that
day finally arrived.

>>>   ### Only procedures should come after this point.
>>>   
>>>
>>>   #
>>> @@ -699,7 +708,13 @@ proc runto { linespec args } {
>>>   	    }
>>>   	    return 1
>>>   	}
>>> -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
>>> +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
>>> +	    if { $print_pass } {
>>> +		pass $test_name
>>> +	    }
>>> +	    return 1
>>> +	}
>>> +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
>>>   	    if { $print_pass } {
>>>   		pass $test_name
>>>   	    }

It doesn't seem that we make a distinction here between the "Breakpoint N" vs "Breakpoint N.M"
cases. Is it possible to merge these two branches into one using bkptno_numopt_re?
[super super minor nit]

Thank you so much for your patience. I hope a global maintainer with approval
authority will follow-up.

Keith


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-06-03 20:40     ` Keith Seitz
@ 2022-06-04  6:23       ` Eli Zaretskii
  2022-06-04 17:27         ` Matt Rice
  2022-06-04 17:37       ` Philippe Waroquiers
  1 sibling, 1 reply; 14+ messages in thread
From: Eli Zaretskii @ 2022-06-04  6:23 UTC (permalink / raw)
  To: Keith Seitz; +Cc: philippe.waroquiers, gdb-patches

> Date: Fri, 3 Jun 2022 13:40:00 -0700
> From: Keith Seitz via Gdb-patches <gdb-patches@sourceware.org>
> 
> I looked up the history of this patch a bit to understand the motivation
> for querying co-workers... I see Eli commented in the original April
> discussion:
> 
> > I'm not sure everyone will want to see the likes of
> >
> >  Thread 1 "foobar" hit breakpoint 10.42, some_func () at ...
> >
> > But that's MO; I'd be interested in opinions of others.
> 
> Well, I'm not a global maintainer, but I'll chime in with my opinion,
> if everyone will permit me. [Ha! You're already reading it!]
> 
> I don't think it is a big deal to see ".42" in the output. Far more
> irritating is not knowing exactly which of the many locations it hit.
> I've always felt this was akin to ambiguous output by GDB. "You hit
> breakpoint X." Oh, wait, that's one of fifty different real breakpoints.

We show the source line where the breakpoint breaks right after this,
so at least some of the ambiguity is resolved by that.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-06-04  6:23       ` Eli Zaretskii
@ 2022-06-04 17:27         ` Matt Rice
  2022-06-04 17:45           ` Philippe Waroquiers
  0 siblings, 1 reply; 14+ messages in thread
From: Matt Rice @ 2022-06-04 17:27 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Keith Seitz, gdb-patches

On Sat, Jun 4, 2022 at 6:23 AM Eli Zaretskii via Gdb-patches
<gdb-patches@sourceware.org> wrote:
>
> > Date: Fri, 3 Jun 2022 13:40:00 -0700
> > From: Keith Seitz via Gdb-patches <gdb-patches@sourceware.org>
> >
> > I looked up the history of this patch a bit to understand the motivation
> > for querying co-workers... I see Eli commented in the original April
> > discussion:
> >
> > > I'm not sure everyone will want to see the likes of
> > >
> > >  Thread 1 "foobar" hit breakpoint 10.42, some_func () at ...
> > >
> > > But that's MO; I'd be interested in opinions of others.
> >
> > Well, I'm not a global maintainer, but I'll chime in with my opinion,
> > if everyone will permit me. [Ha! You're already reading it!]
> >
> > I don't think it is a big deal to see ".42" in the output. Far more
> > irritating is not knowing exactly which of the many locations it hit.
> > I've always felt this was akin to ambiguous output by GDB. "You hit
> > breakpoint X." Oh, wait, that's one of fifty different real breakpoints.
>
> We show the source line where the breakpoint breaks right after this,
> so at least some of the ambiguity is resolved by that.

My thoughts are that whether or not source line resolving ambiguity
printing the breakpoint locno
may be useful for instance, `disable 10.42` to disable that location,
you wouldn't have to do
info break and look through the what or address column of `info b`.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-06-03 20:40     ` Keith Seitz
  2022-06-04  6:23       ` Eli Zaretskii
@ 2022-06-04 17:37       ` Philippe Waroquiers
  1 sibling, 0 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-06-04 17:37 UTC (permalink / raw)
  To: Keith Seitz, gdb-patches

On Fri, 2022-06-03 at 13:40 -0700, Keith Seitz wrote:
> I've really only got some pretty minor questions to ask and a nit or
> two to mention. Nothing serious.
Thanks for the review.
> > > > Also, when a breakpoint is reached, the convenience variables
> > > > $bkptno and $locno are set to the encountered breakpoint number
> > > > and location number.
> 
> We have convenience variables for when we set breakpoints ($bpnum)
> and tracepoints ($tpnum). Should we re-use those or would that lead
> to user confusion? AFAICT, we only use those variables when a
> {break,trace}point is created or modified. This seems like it could
> be a natural extension of the utility of those variables.
> 
> I am not asking for any changes, I'm genuinely curious if reusing
> these existing convenience vars would be desirable in your opinion.
The drawback of re-using $bpnum is that this might break the logic of 
some existing scripts/command sequences, e.g. in the following case:
   add a breakpoint (so setting $bpnum)
   do whatever so that another breakpoint is encountered
   do whatever with $bpnum e.g. delete it or disable it.

If in the second step, $bpnum is changed, then the third step will change of
behaviour: instead of deleting or disabling the last set breakpoint,
it will delete or disable the last encountered breakpoint.

> 
> > > > +static bool
> > > > +has_multiple_locations (int num)
> 
> At one time, we used to append "_p" to these types of predicate-
> style functions. Are we abandoning this practice? [Mind you,
> this is simply a meta-question. Again, I am not asking for
> any changes.]
It looks to me that we now have a mix of functions with or without _p.
Maybe the _p convention was invented when bool functions were in fact returning an int ?

> > > > +	{
> > > > +	  warning (_("location number not found for breakpoint %d address %p."),
> > > > +		   b->number, paddress (bl->gdbarch, bl->address));
> 
> Doesn't paddress require %s (or even nicer: %ps with a styled_string ())?
The other usages of paddress use %s, I will fix this.

> > > >   #
> > > > @@ -699,7 +708,13 @@ proc runto { linespec args } {
> > > >   	    }
> > > >   	    return 1
> > > >   	}
> > > > -	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > > > +	-re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > > > +	    if { $print_pass } {
> > > > +		pass $test_name
> > > > +	    }
> > > > +	    return 1
> > > > +	}
> > > > +	-re "Breakpoint \[0-9\]*\.\[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
> > > >   	    if { $print_pass } {
> > > >   		pass $test_name
> > > >   	    }
> 
> It doesn't seem that we make a distinction here between the "Breakpoint N" vs "Breakpoint N.M"
> cases. Is it possible to merge these two branches into one using bkptno_numopt_re?
> [super super minor nit]
Will look at this.

> 
> Thank you so much for your patience. I hope a global maintainer with approval
> authority will follow-up.
Thanks for the review, I will prepare an RFA v2 handling your comments and the comments of
Eli.

Philippe



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno.
  2022-06-04 17:27         ` Matt Rice
@ 2022-06-04 17:45           ` Philippe Waroquiers
  0 siblings, 0 replies; 14+ messages in thread
From: Philippe Waroquiers @ 2022-06-04 17:45 UTC (permalink / raw)
  To: Matt Rice, Eli Zaretskii; +Cc: gdb-patches

On Sat, 2022-06-04 at 17:27 +0000, Matt Rice via Gdb-patches wrote:
> On Sat, Jun 4, 2022 at 6:23 AM Eli Zaretskii via Gdb-patches
> <gdb-patches@sourceware.org> wrote:
> > 
> > > Date: Fri, 3 Jun 2022 13:40:00 -0700
> > > From: Keith Seitz via Gdb-patches <gdb-patches@sourceware.org>
> > > 
> > > I looked up the history of this patch a bit to understand the motivation
> > > for querying co-workers... I see Eli commented in the original April
> > > discussion:
> > > 
> > > > I'm not sure everyone will want to see the likes of
> > > > 
> > > >  Thread 1 "foobar" hit breakpoint 10.42, some_func () at ...
> > > > 
> > > > But that's MO; I'd be interested in opinions of others.
> > > 
> > > Well, I'm not a global maintainer, but I'll chime in with my opinion,
> > > if everyone will permit me. [Ha! You're already reading it!]
> > > 
> > > I don't think it is a big deal to see ".42" in the output. Far more
> > > irritating is not knowing exactly which of the many locations it hit.
> > > I've always felt this was akin to ambiguous output by GDB. "You hit
> > > breakpoint X." Oh, wait, that's one of fifty different real breakpoints.
> > 
> > We show the source line where the breakpoint breaks right after this,
> > so at least some of the ambiguity is resolved by that.
> 
> My thoughts are that whether or not source line resolving ambiguity
> printing the breakpoint locno
> may be useful for instance, `disable 10.42` to disable that location,
> you wouldn't have to do
> info break and look through the what or address column of `info b`.
Yes, that was the main trigger to add this change.
As you indicate, if the breakpoint is in an inlined function,
then all locations have the same source and line nr
and the only differentiating aspect is then the address.

Philippe





^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-06-04 17:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-17 15:53 [RFA] Show locno for 'multi location' breakpoint hit msg+conv var $bkptno $locno Philippe Waroquiers
2022-04-17 16:14 ` Eli Zaretskii
2022-04-17 16:27   ` Philippe Waroquiers
2022-04-17 17:55     ` Eli Zaretskii
2022-04-29 16:26 ` Philippe Waroquiers
2022-05-07  5:44   ` Philippe Waroquiers
2022-05-13 16:49   ` Philippe Waroquiers
2022-05-22 18:43   ` Philippe Waroquiers
2022-05-30 19:08   ` Philippe Waroquiers
2022-06-03 20:40     ` Keith Seitz
2022-06-04  6:23       ` Eli Zaretskii
2022-06-04 17:27         ` Matt Rice
2022-06-04 17:45           ` Philippe Waroquiers
2022-06-04 17:37       ` Philippe Waroquiers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).