1 /* MI Command Set - breakpoint and watchpoint commands.
2 Copyright (C) 2000-2020 Free Software Foundation, Inc.
3 Contributed by Cygnus Solutions (a Red Hat company).
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
25 #include "breakpoint.h"
26 #include "mi-getopt.h"
27 #include "observable.h"
29 #include "mi-cmd-break.h"
33 #include "gdb_obstack.h"
35 #include "tracepoint.h"
42 /* True if MI breakpoint observers have been registered. */
44 static int mi_breakpoint_observers_installed
;
46 /* Control whether breakpoint_notify may act. */
48 static int mi_can_breakpoint_notify
;
50 /* Output a single breakpoint, when allowed. */
53 breakpoint_notify (struct breakpoint
*b
)
55 if (mi_can_breakpoint_notify
)
61 catch (const gdb_exception
&ex
)
63 exception_print (gdb_stderr
, ex
);
75 /* Arrange for all new breakpoints and catchpoints to be reported to
76 CURRENT_UIOUT until the destructor of the returned scoped_restore
79 Note that MI output will be probably invalid if more than one
80 breakpoint is created inside one MI command. */
82 scoped_restore_tmpl
<int>
83 setup_breakpoint_reporting (void)
85 if (! mi_breakpoint_observers_installed
)
87 gdb::observers::breakpoint_created
.attach (breakpoint_notify
);
88 mi_breakpoint_observers_installed
= 1;
91 return make_scoped_restore (&mi_can_breakpoint_notify
, 1);
95 /* Convert arguments in ARGV to the string in "format",argv,argv...
99 mi_argv_to_format (char **argv
, int argc
)
104 /* Convert ARGV[OIND + 1] to format string and save to FORMAT. */
106 for (i
= 0; i
< strlen (argv
[0]); i
++)
138 if (isprint (argv
[0][i
]))
139 result
+= argv
[0][i
];
144 xsnprintf (tmp
, sizeof (tmp
), "\\%o",
145 (unsigned char) argv
[0][i
]);
153 /* Apply other argv to FORMAT. */
154 for (i
= 1; i
< argc
; i
++)
163 /* Insert breakpoint.
164 If dprintf is true, it will insert dprintf.
165 If not, it will insert other type breakpoint. */
168 mi_cmd_break_insert_1 (int dprintf
, const char *command
, char **argv
, int argc
)
170 const char *address
= NULL
;
174 int ignore_count
= 0;
175 char *condition
= NULL
;
179 enum bptype type_wanted
;
180 event_location_up location
;
181 struct breakpoint_ops
*ops
;
183 struct explicit_location explicit_loc
;
184 std::string extra_string
;
188 HARDWARE_OPT
, TEMP_OPT
, CONDITION_OPT
,
189 IGNORE_COUNT_OPT
, THREAD_OPT
, PENDING_OPT
, DISABLE_OPT
,
191 EXPLICIT_SOURCE_OPT
, EXPLICIT_FUNC_OPT
,
192 EXPLICIT_LABEL_OPT
, EXPLICIT_LINE_OPT
194 static const struct mi_opt opts
[] =
196 {"h", HARDWARE_OPT
, 0},
198 {"c", CONDITION_OPT
, 1},
199 {"i", IGNORE_COUNT_OPT
, 1},
200 {"p", THREAD_OPT
, 1},
201 {"f", PENDING_OPT
, 0},
202 {"d", DISABLE_OPT
, 0},
203 {"a", TRACEPOINT_OPT
, 0},
204 {"-source" , EXPLICIT_SOURCE_OPT
, 1},
205 {"-function", EXPLICIT_FUNC_OPT
, 1},
206 {"-label", EXPLICIT_LABEL_OPT
, 1},
207 {"-line", EXPLICIT_LINE_OPT
, 1},
211 /* Parse arguments. It could be -r or -h or -t, <location> or ``--''
212 to denote the end of the option list. */
216 initialize_explicit_location (&explicit_loc
);
220 int opt
= mi_getopt ("-break-insert", argc
, argv
,
224 switch ((enum opt
) opt
)
235 case IGNORE_COUNT_OPT
:
236 ignore_count
= atol (oarg
);
239 thread
= atol (oarg
);
250 case EXPLICIT_SOURCE_OPT
:
252 explicit_loc
.source_filename
= oarg
;
254 case EXPLICIT_FUNC_OPT
:
256 explicit_loc
.function_name
= oarg
;
258 case EXPLICIT_LABEL_OPT
:
260 explicit_loc
.label_name
= oarg
;
262 case EXPLICIT_LINE_OPT
:
264 explicit_loc
.line_offset
= linespec_parse_line_offset (oarg
);
269 if (oind
>= argc
&& !is_explicit
)
270 error (_("-%s-insert: Missing <location>"),
271 dprintf
? "dprintf" : "break");
274 int format_num
= is_explicit
? oind
: oind
+ 1;
276 if (hardware
|| tracepoint
)
277 error (_("-dprintf-insert: does not support -h or -a"));
278 if (format_num
>= argc
)
279 error (_("-dprintf-insert: Missing <format>"));
281 extra_string
= mi_argv_to_format (argv
+ format_num
, argc
- format_num
);
282 address
= argv
[oind
];
289 error (_("-break-insert: Garbage following explicit location"));
294 error (_("-break-insert: Garbage following <location>"));
295 address
= argv
[oind
];
299 /* Now we have what we need, let's insert the breakpoint! */
300 scoped_restore restore_breakpoint_reporting
= setup_breakpoint_reporting ();
304 /* Note that to request a fast tracepoint, the client uses the
305 "hardware" flag, although there's nothing of hardware related to
306 fast tracepoints -- one can implement slow tracepoints with
307 hardware breakpoints, but fast tracepoints are always software.
308 "fast" is a misnomer, actually, "jump" would be more appropriate.
309 A simulator or an emulator could conceivably implement fast
310 regular non-jump based tracepoints. */
311 type_wanted
= hardware
? bp_fast_tracepoint
: bp_tracepoint
;
312 ops
= &tracepoint_breakpoint_ops
;
316 type_wanted
= bp_dprintf
;
317 ops
= &dprintf_breakpoint_ops
;
321 type_wanted
= hardware
? bp_hardware_breakpoint
: bp_breakpoint
;
322 ops
= &bkpt_breakpoint_ops
;
327 /* Error check -- we must have one of the other
328 parameters specified. */
329 if (explicit_loc
.source_filename
!= NULL
330 && explicit_loc
.function_name
== NULL
331 && explicit_loc
.label_name
== NULL
332 && explicit_loc
.line_offset
.sign
== LINE_OFFSET_UNKNOWN
)
333 error (_("-%s-insert: --source option requires --function, --label,"
334 " or --line"), dprintf
? "dprintf" : "break");
336 location
= new_explicit_location (&explicit_loc
);
340 location
= string_to_event_location_basic (&address
, current_language
,
341 symbol_name_match_type::WILD
);
343 error (_("Garbage '%s' at end of location"), address
);
346 create_breakpoint (get_current_arch (), location
.get (), condition
, thread
,
347 extra_string
.c_str (),
348 0 /* condition and thread are valid. */,
351 pending
? AUTO_BOOLEAN_TRUE
: AUTO_BOOLEAN_FALSE
,
352 ops
, 0, enabled
, 0, 0);
355 /* Implements the -break-insert command.
356 See the MI manual for the list of possible options. */
359 mi_cmd_break_insert (const char *command
, char **argv
, int argc
)
361 mi_cmd_break_insert_1 (0, command
, argv
, argc
);
364 /* Implements the -dprintf-insert command.
365 See the MI manual for the list of possible options. */
368 mi_cmd_dprintf_insert (const char *command
, char **argv
, int argc
)
370 mi_cmd_break_insert_1 (1, command
, argv
, argc
);
381 mi_cmd_break_passcount (const char *command
, char **argv
, int argc
)
385 struct tracepoint
*t
;
388 error (_("Usage: tracepoint-number passcount"));
392 t
= get_tracepoint (n
);
397 gdb::observers::breakpoint_modified
.notify (t
);
401 error (_("Could not find tracepoint %d"), n
);
405 /* Insert a watchpoint. The type of watchpoint is specified by the
407 -break-watch <expr> --> insert a regular wp.
408 -break-watch -r <expr> --> insert a read watchpoint.
409 -break-watch -a <expr> --> insert an access wp. */
412 mi_cmd_break_watch (const char *command
, char **argv
, int argc
)
415 enum wp_type type
= REG_WP
;
420 static const struct mi_opt opts
[] =
423 {"a", ACCESS_OPT
, 0},
427 /* Parse arguments. */
433 int opt
= mi_getopt ("-break-watch", argc
, argv
,
438 switch ((enum opt
) opt
)
449 error (_("-break-watch: Missing <expression>"));
451 error (_("-break-watch: Garbage following <expression>"));
454 /* Now we have what we need, let's insert the watchpoint! */
458 watch_command_wrapper (expr
, FROM_TTY
, 0);
461 rwatch_command_wrapper (expr
, FROM_TTY
, 0);
464 awatch_command_wrapper (expr
, FROM_TTY
, 0);
467 error (_("-break-watch: Unknown watchpoint type."));
472 mi_cmd_break_commands (const char *command
, char **argv
, int argc
)
474 counted_command_line break_command
;
477 struct breakpoint
*b
;
480 error (_("USAGE: %s <BKPT> [<COMMAND> [<COMMAND>...]]"), command
);
482 bnum
= strtol (argv
[0], &endptr
, 0);
483 if (endptr
== argv
[0])
484 error (_("breakpoint number argument \"%s\" is not a number."),
486 else if (*endptr
!= '\0')
487 error (_("junk at the end of breakpoint number argument \"%s\"."),
490 b
= get_breakpoint (bnum
);
492 error (_("breakpoint %d not found."), bnum
);
498 const char *result
= nullptr;
500 result
= argv
[count
++];
504 if (is_tracepoint (b
))
505 break_command
= read_command_lines_1 (reader
, 1,
506 [=] (const char *line
)
508 validate_actionline (line
, b
);
511 break_command
= read_command_lines_1 (reader
, 1, 0);
513 breakpoint_set_commands (b
, std::move (break_command
));