]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Everything about breakpoints, for GDB. |
8926118c | 2 | |
28e7fd62 | 3 | Copyright (C) 1986-2013 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
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 | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 10 | (at your option) any later version. |
c906108c | 11 | |
c5aa993b JM |
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. | |
c906108c | 16 | |
c5aa993b | 17 | You should have received a copy of the GNU General Public License |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
19 | |
20 | #include "defs.h" | |
a6d9a66e | 21 | #include "arch-utils.h" |
c906108c | 22 | #include <ctype.h> |
776592bf | 23 | #include "hashtab.h" |
c906108c SS |
24 | #include "symtab.h" |
25 | #include "frame.h" | |
26 | #include "breakpoint.h" | |
1042e4c0 | 27 | #include "tracepoint.h" |
c906108c SS |
28 | #include "gdbtypes.h" |
29 | #include "expression.h" | |
30 | #include "gdbcore.h" | |
31 | #include "gdbcmd.h" | |
32 | #include "value.h" | |
33 | #include "command.h" | |
34 | #include "inferior.h" | |
35 | #include "gdbthread.h" | |
36 | #include "target.h" | |
37 | #include "language.h" | |
38 | #include "gdb_string.h" | |
50f182aa | 39 | #include "gdb-demangle.h" |
0ba1096a | 40 | #include "filenames.h" |
c906108c SS |
41 | #include "annotate.h" |
42 | #include "symfile.h" | |
43 | #include "objfiles.h" | |
0378c332 | 44 | #include "source.h" |
c5f0f3d0 | 45 | #include "linespec.h" |
c94fdfd0 | 46 | #include "completer.h" |
5b7f31a4 | 47 | #include "gdb.h" |
8b93c638 | 48 | #include "ui-out.h" |
e1507482 | 49 | #include "cli/cli-script.h" |
0225421b | 50 | #include "gdb_assert.h" |
fe898f56 | 51 | #include "block.h" |
a77053c2 | 52 | #include "solib.h" |
84acb35a JJ |
53 | #include "solist.h" |
54 | #include "observer.h" | |
60250e8b | 55 | #include "exceptions.h" |
765dc015 | 56 | #include "memattr.h" |
f7f9143b | 57 | #include "ada-lang.h" |
d1aa2f50 | 58 | #include "top.h" |
79a45b7d | 59 | #include "valprint.h" |
4efc6507 | 60 | #include "jit.h" |
a96d9b2e | 61 | #include "xml-syscall.h" |
65d79d4b | 62 | #include "parser-defs.h" |
55aa24fb SDJ |
63 | #include "gdb_regex.h" |
64 | #include "probe.h" | |
e9cafbcc | 65 | #include "cli/cli-utils.h" |
be34f849 | 66 | #include "continuations.h" |
1bfeeb0f JL |
67 | #include "stack.h" |
68 | #include "skip.h" | |
edcc5120 | 69 | #include "gdb_regex.h" |
b775012e | 70 | #include "ax-gdb.h" |
e2e4d78b | 71 | #include "dummy-frame.h" |
c906108c | 72 | |
d3ce09f5 SS |
73 | #include "format.h" |
74 | ||
1042e4c0 SS |
75 | /* readline include files */ |
76 | #include "readline/readline.h" | |
77 | #include "readline/history.h" | |
78 | ||
79 | /* readline defines this. */ | |
80 | #undef savestring | |
81 | ||
034dad6f | 82 | #include "mi/mi-common.h" |
7371cf6d | 83 | #include "python/python.h" |
104c1213 | 84 | |
e7e8980f YQ |
85 | /* Enums for exception-handling support. */ |
86 | enum exception_event_kind | |
87 | { | |
88 | EX_EVENT_THROW, | |
591f19e8 | 89 | EX_EVENT_RETHROW, |
e7e8980f YQ |
90 | EX_EVENT_CATCH |
91 | }; | |
92 | ||
4a64f543 | 93 | /* Prototypes for local functions. */ |
c906108c | 94 | |
a14ed312 | 95 | static void enable_delete_command (char *, int); |
c906108c | 96 | |
a14ed312 | 97 | static void enable_once_command (char *, int); |
c906108c | 98 | |
816338b5 SS |
99 | static void enable_count_command (char *, int); |
100 | ||
a14ed312 | 101 | static void disable_command (char *, int); |
c906108c | 102 | |
a14ed312 | 103 | static void enable_command (char *, int); |
c906108c | 104 | |
95a42b64 TT |
105 | static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *, |
106 | void *), | |
107 | void *); | |
c906108c | 108 | |
a14ed312 | 109 | static void ignore_command (char *, int); |
c906108c | 110 | |
4efb68b1 | 111 | static int breakpoint_re_set_one (void *); |
c906108c | 112 | |
348d480f PA |
113 | static void breakpoint_re_set_default (struct breakpoint *); |
114 | ||
983af33b SDJ |
115 | static void create_sals_from_address_default (char **, |
116 | struct linespec_result *, | |
117 | enum bptype, char *, | |
118 | char **); | |
119 | ||
120 | static void create_breakpoints_sal_default (struct gdbarch *, | |
121 | struct linespec_result *, | |
122 | struct linespec_sals *, | |
e7e0cddf | 123 | char *, char *, enum bptype, |
983af33b SDJ |
124 | enum bpdisp, int, int, |
125 | int, | |
126 | const struct breakpoint_ops *, | |
44f238bb | 127 | int, int, int, unsigned); |
983af33b SDJ |
128 | |
129 | static void decode_linespec_default (struct breakpoint *, char **, | |
130 | struct symtabs_and_lines *); | |
131 | ||
a14ed312 | 132 | static void clear_command (char *, int); |
c906108c | 133 | |
a14ed312 | 134 | static void catch_command (char *, int); |
c906108c | 135 | |
a9634178 | 136 | static int can_use_hardware_watchpoint (struct value *); |
c906108c | 137 | |
98deb0da | 138 | static void break_command_1 (char *, int, int); |
c906108c | 139 | |
a14ed312 | 140 | static void mention (struct breakpoint *); |
c906108c | 141 | |
348d480f PA |
142 | static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *, |
143 | enum bptype, | |
c0a91b2b | 144 | const struct breakpoint_ops *); |
3742cc8b YQ |
145 | static struct bp_location *add_location_to_breakpoint (struct breakpoint *, |
146 | const struct symtab_and_line *); | |
147 | ||
4a64f543 MS |
148 | /* This function is used in gdbtk sources and thus can not be made |
149 | static. */ | |
63c252f8 | 150 | struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch, |
348d480f | 151 | struct symtab_and_line, |
c0a91b2b TT |
152 | enum bptype, |
153 | const struct breakpoint_ops *); | |
c906108c | 154 | |
06edf0c0 PA |
155 | static struct breakpoint * |
156 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
157 | enum bptype type, | |
c0a91b2b | 158 | const struct breakpoint_ops *ops); |
06edf0c0 | 159 | |
76897487 KB |
160 | static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int); |
161 | ||
a6d9a66e UW |
162 | static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch, |
163 | CORE_ADDR bpaddr, | |
88f7da05 | 164 | enum bptype bptype); |
76897487 | 165 | |
6c95b8df PA |
166 | static void describe_other_breakpoints (struct gdbarch *, |
167 | struct program_space *, CORE_ADDR, | |
5af949e3 | 168 | struct obj_section *, int); |
c906108c | 169 | |
6c95b8df PA |
170 | static int breakpoint_address_match (struct address_space *aspace1, |
171 | CORE_ADDR addr1, | |
172 | struct address_space *aspace2, | |
173 | CORE_ADDR addr2); | |
174 | ||
85d721b8 PA |
175 | static int watchpoint_locations_match (struct bp_location *loc1, |
176 | struct bp_location *loc2); | |
177 | ||
f1310107 TJB |
178 | static int breakpoint_location_address_match (struct bp_location *bl, |
179 | struct address_space *aspace, | |
180 | CORE_ADDR addr); | |
181 | ||
a14ed312 | 182 | static void breakpoints_info (char *, int); |
c906108c | 183 | |
d77f58be SS |
184 | static void watchpoints_info (char *, int); |
185 | ||
e5a67952 MS |
186 | static int breakpoint_1 (char *, int, |
187 | int (*) (const struct breakpoint *)); | |
c906108c | 188 | |
4efb68b1 | 189 | static int breakpoint_cond_eval (void *); |
c906108c | 190 | |
4efb68b1 | 191 | static void cleanup_executing_breakpoints (void *); |
c906108c | 192 | |
a14ed312 | 193 | static void commands_command (char *, int); |
c906108c | 194 | |
a14ed312 | 195 | static void condition_command (char *, int); |
c906108c | 196 | |
c5aa993b JM |
197 | typedef enum |
198 | { | |
199 | mark_inserted, | |
200 | mark_uninserted | |
201 | } | |
202 | insertion_state_t; | |
c906108c | 203 | |
0bde7532 | 204 | static int remove_breakpoint (struct bp_location *, insertion_state_t); |
6c95b8df | 205 | static int remove_breakpoint_1 (struct bp_location *, insertion_state_t); |
c906108c | 206 | |
e514a9d6 | 207 | static enum print_stop_action print_bp_stop_message (bpstat bs); |
c906108c | 208 | |
4efb68b1 | 209 | static int watchpoint_check (void *); |
c906108c | 210 | |
a14ed312 | 211 | static void maintenance_info_breakpoints (char *, int); |
c906108c | 212 | |
a14ed312 | 213 | static int hw_breakpoint_used_count (void); |
c906108c | 214 | |
a1398e0c PA |
215 | static int hw_watchpoint_use_count (struct breakpoint *); |
216 | ||
217 | static int hw_watchpoint_used_count_others (struct breakpoint *except, | |
218 | enum bptype type, | |
219 | int *other_type_used); | |
c906108c | 220 | |
a14ed312 | 221 | static void hbreak_command (char *, int); |
c906108c | 222 | |
a14ed312 | 223 | static void thbreak_command (char *, int); |
c906108c | 224 | |
816338b5 SS |
225 | static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp, |
226 | int count); | |
c906108c | 227 | |
a14ed312 | 228 | static void stop_command (char *arg, int from_tty); |
7a292a7a | 229 | |
a14ed312 | 230 | static void stopin_command (char *arg, int from_tty); |
7a292a7a | 231 | |
a14ed312 | 232 | static void stopat_command (char *arg, int from_tty); |
7a292a7a | 233 | |
a14ed312 | 234 | static void tcatch_command (char *arg, int from_tty); |
7a292a7a | 235 | |
d03285ec UW |
236 | static void detach_single_step_breakpoints (void); |
237 | ||
6c95b8df PA |
238 | static int single_step_breakpoint_inserted_here_p (struct address_space *, |
239 | CORE_ADDR pc); | |
1aafd4da | 240 | |
fe3f5fa8 | 241 | static void free_bp_location (struct bp_location *loc); |
f431efe5 PA |
242 | static void incref_bp_location (struct bp_location *loc); |
243 | static void decref_bp_location (struct bp_location **loc); | |
fe3f5fa8 | 244 | |
39d61571 | 245 | static struct bp_location *allocate_bp_location (struct breakpoint *bpt); |
a5606eee | 246 | |
b60e7edf | 247 | static void update_global_location_list (int); |
a5606eee | 248 | |
b60e7edf | 249 | static void update_global_location_list_nothrow (int); |
74960c60 | 250 | |
d77f58be | 251 | static int is_hardware_watchpoint (const struct breakpoint *bpt); |
74960c60 VP |
252 | |
253 | static void insert_breakpoint_locations (void); | |
a5606eee | 254 | |
a96d9b2e SDJ |
255 | static int syscall_catchpoint_p (struct breakpoint *b); |
256 | ||
1042e4c0 SS |
257 | static void tracepoints_info (char *, int); |
258 | ||
259 | static void delete_trace_command (char *, int); | |
260 | ||
261 | static void enable_trace_command (char *, int); | |
262 | ||
263 | static void disable_trace_command (char *, int); | |
264 | ||
265 | static void trace_pass_command (char *, int); | |
266 | ||
558a9d82 YQ |
267 | static void set_tracepoint_count (int num); |
268 | ||
9c06b0b4 TJB |
269 | static int is_masked_watchpoint (const struct breakpoint *b); |
270 | ||
b775012e LM |
271 | static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address); |
272 | ||
983af33b SDJ |
273 | /* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero |
274 | otherwise. */ | |
275 | ||
276 | static int strace_marker_p (struct breakpoint *b); | |
0fb4aa4b | 277 | |
2060206e PA |
278 | /* The abstract base class all breakpoint_ops structures inherit |
279 | from. */ | |
ab04a2af | 280 | struct breakpoint_ops base_breakpoint_ops; |
2060206e PA |
281 | |
282 | /* The breakpoint_ops structure to be inherited by all breakpoint_ops | |
283 | that are implemented on top of software or hardware breakpoints | |
284 | (user breakpoints, internal and momentary breakpoints, etc.). */ | |
285 | static struct breakpoint_ops bkpt_base_breakpoint_ops; | |
286 | ||
287 | /* Internal breakpoints class type. */ | |
06edf0c0 | 288 | static struct breakpoint_ops internal_breakpoint_ops; |
2060206e PA |
289 | |
290 | /* Momentary breakpoints class type. */ | |
06edf0c0 PA |
291 | static struct breakpoint_ops momentary_breakpoint_ops; |
292 | ||
e2e4d78b JK |
293 | /* Momentary breakpoints for bp_longjmp and bp_exception class type. */ |
294 | static struct breakpoint_ops longjmp_breakpoint_ops; | |
295 | ||
2060206e PA |
296 | /* The breakpoint_ops structure to be used in regular user created |
297 | breakpoints. */ | |
298 | struct breakpoint_ops bkpt_breakpoint_ops; | |
299 | ||
55aa24fb SDJ |
300 | /* Breakpoints set on probes. */ |
301 | static struct breakpoint_ops bkpt_probe_breakpoint_ops; | |
302 | ||
e7e0cddf SS |
303 | /* Dynamic printf class type. */ |
304 | static struct breakpoint_ops dprintf_breakpoint_ops; | |
305 | ||
d3ce09f5 SS |
306 | /* The style in which to perform a dynamic printf. This is a user |
307 | option because different output options have different tradeoffs; | |
308 | if GDB does the printing, there is better error handling if there | |
309 | is a problem with any of the arguments, but using an inferior | |
310 | function lets you have special-purpose printers and sending of | |
311 | output to the same place as compiled-in print functions. */ | |
312 | ||
313 | static const char dprintf_style_gdb[] = "gdb"; | |
314 | static const char dprintf_style_call[] = "call"; | |
315 | static const char dprintf_style_agent[] = "agent"; | |
316 | static const char *const dprintf_style_enums[] = { | |
317 | dprintf_style_gdb, | |
318 | dprintf_style_call, | |
319 | dprintf_style_agent, | |
320 | NULL | |
321 | }; | |
322 | static const char *dprintf_style = dprintf_style_gdb; | |
323 | ||
324 | /* The function to use for dynamic printf if the preferred style is to | |
325 | call into the inferior. The value is simply a string that is | |
326 | copied into the command, so it can be anything that GDB can | |
327 | evaluate to a callable address, not necessarily a function name. */ | |
328 | ||
329 | static char *dprintf_function = ""; | |
330 | ||
331 | /* The channel to use for dynamic printf if the preferred style is to | |
332 | call into the inferior; if a nonempty string, it will be passed to | |
333 | the call as the first argument, with the format string as the | |
334 | second. As with the dprintf function, this can be anything that | |
335 | GDB knows how to evaluate, so in addition to common choices like | |
336 | "stderr", this could be an app-specific expression like | |
337 | "mystreams[curlogger]". */ | |
338 | ||
339 | static char *dprintf_channel = ""; | |
340 | ||
341 | /* True if dprintf commands should continue to operate even if GDB | |
342 | has disconnected. */ | |
343 | static int disconnected_dprintf = 1; | |
344 | ||
5cea2a26 PA |
345 | /* A reference-counted struct command_line. This lets multiple |
346 | breakpoints share a single command list. */ | |
347 | struct counted_command_line | |
348 | { | |
349 | /* The reference count. */ | |
350 | int refc; | |
351 | ||
352 | /* The command list. */ | |
353 | struct command_line *commands; | |
354 | }; | |
355 | ||
356 | struct command_line * | |
357 | breakpoint_commands (struct breakpoint *b) | |
358 | { | |
359 | return b->commands ? b->commands->commands : NULL; | |
360 | } | |
3daf8fe5 | 361 | |
f3b1572e PA |
362 | /* Flag indicating that a command has proceeded the inferior past the |
363 | current breakpoint. */ | |
364 | ||
365 | static int breakpoint_proceeded; | |
366 | ||
956a9fb9 | 367 | const char * |
2cec12e5 AR |
368 | bpdisp_text (enum bpdisp disp) |
369 | { | |
4a64f543 MS |
370 | /* NOTE: the following values are a part of MI protocol and |
371 | represent values of 'disp' field returned when inferior stops at | |
372 | a breakpoint. */ | |
bc043ef3 | 373 | static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"}; |
cc59ec59 | 374 | |
2cec12e5 AR |
375 | return bpdisps[(int) disp]; |
376 | } | |
c906108c | 377 | |
4a64f543 | 378 | /* Prototypes for exported functions. */ |
c906108c | 379 | /* If FALSE, gdb will not use hardware support for watchpoints, even |
4a64f543 | 380 | if such is available. */ |
c906108c SS |
381 | static int can_use_hw_watchpoints; |
382 | ||
920d2a44 AC |
383 | static void |
384 | show_can_use_hw_watchpoints (struct ui_file *file, int from_tty, | |
385 | struct cmd_list_element *c, | |
386 | const char *value) | |
387 | { | |
3e43a32a MS |
388 | fprintf_filtered (file, |
389 | _("Debugger's willingness to use " | |
390 | "watchpoint hardware is %s.\n"), | |
920d2a44 AC |
391 | value); |
392 | } | |
393 | ||
fa8d40ab JJ |
394 | /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints. |
395 | If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints | |
4a64f543 | 396 | for unrecognized breakpoint locations. |
fa8d40ab JJ |
397 | If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */ |
398 | static enum auto_boolean pending_break_support; | |
920d2a44 AC |
399 | static void |
400 | show_pending_break_support (struct ui_file *file, int from_tty, | |
401 | struct cmd_list_element *c, | |
402 | const char *value) | |
403 | { | |
3e43a32a MS |
404 | fprintf_filtered (file, |
405 | _("Debugger's behavior regarding " | |
406 | "pending breakpoints is %s.\n"), | |
920d2a44 AC |
407 | value); |
408 | } | |
fa8d40ab | 409 | |
765dc015 | 410 | /* If 1, gdb will automatically use hardware breakpoints for breakpoints |
4a64f543 | 411 | set with "break" but falling in read-only memory. |
765dc015 VP |
412 | If 0, gdb will warn about such breakpoints, but won't automatically |
413 | use hardware breakpoints. */ | |
414 | static int automatic_hardware_breakpoints; | |
415 | static void | |
416 | show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty, | |
417 | struct cmd_list_element *c, | |
418 | const char *value) | |
419 | { | |
3e43a32a MS |
420 | fprintf_filtered (file, |
421 | _("Automatic usage of hardware breakpoints is %s.\n"), | |
765dc015 VP |
422 | value); |
423 | } | |
424 | ||
33e5cbd6 PA |
425 | /* If on, gdb will keep breakpoints inserted even as inferior is |
426 | stopped, and immediately insert any new breakpoints. If off, gdb | |
427 | will insert breakpoints into inferior only when resuming it, and | |
428 | will remove breakpoints upon stop. If auto, GDB will behave as ON | |
429 | if in non-stop mode, and as OFF if all-stop mode.*/ | |
430 | ||
72d0e2c5 YQ |
431 | static enum auto_boolean always_inserted_mode = AUTO_BOOLEAN_AUTO; |
432 | ||
33e5cbd6 | 433 | static void |
74960c60 | 434 | show_always_inserted_mode (struct ui_file *file, int from_tty, |
33e5cbd6 | 435 | struct cmd_list_element *c, const char *value) |
74960c60 | 436 | { |
72d0e2c5 | 437 | if (always_inserted_mode == AUTO_BOOLEAN_AUTO) |
3e43a32a MS |
438 | fprintf_filtered (file, |
439 | _("Always inserted breakpoint " | |
440 | "mode is %s (currently %s).\n"), | |
33e5cbd6 PA |
441 | value, |
442 | breakpoints_always_inserted_mode () ? "on" : "off"); | |
443 | else | |
3e43a32a MS |
444 | fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"), |
445 | value); | |
74960c60 VP |
446 | } |
447 | ||
33e5cbd6 PA |
448 | int |
449 | breakpoints_always_inserted_mode (void) | |
450 | { | |
72d0e2c5 YQ |
451 | return (always_inserted_mode == AUTO_BOOLEAN_TRUE |
452 | || (always_inserted_mode == AUTO_BOOLEAN_AUTO && non_stop)); | |
33e5cbd6 | 453 | } |
765dc015 | 454 | |
b775012e LM |
455 | static const char condition_evaluation_both[] = "host or target"; |
456 | ||
457 | /* Modes for breakpoint condition evaluation. */ | |
458 | static const char condition_evaluation_auto[] = "auto"; | |
459 | static const char condition_evaluation_host[] = "host"; | |
460 | static const char condition_evaluation_target[] = "target"; | |
461 | static const char *const condition_evaluation_enums[] = { | |
462 | condition_evaluation_auto, | |
463 | condition_evaluation_host, | |
464 | condition_evaluation_target, | |
465 | NULL | |
466 | }; | |
467 | ||
468 | /* Global that holds the current mode for breakpoint condition evaluation. */ | |
469 | static const char *condition_evaluation_mode_1 = condition_evaluation_auto; | |
470 | ||
471 | /* Global that we use to display information to the user (gets its value from | |
472 | condition_evaluation_mode_1. */ | |
473 | static const char *condition_evaluation_mode = condition_evaluation_auto; | |
474 | ||
475 | /* Translate a condition evaluation mode MODE into either "host" | |
476 | or "target". This is used mostly to translate from "auto" to the | |
477 | real setting that is being used. It returns the translated | |
478 | evaluation mode. */ | |
479 | ||
480 | static const char * | |
481 | translate_condition_evaluation_mode (const char *mode) | |
482 | { | |
483 | if (mode == condition_evaluation_auto) | |
484 | { | |
485 | if (target_supports_evaluation_of_breakpoint_conditions ()) | |
486 | return condition_evaluation_target; | |
487 | else | |
488 | return condition_evaluation_host; | |
489 | } | |
490 | else | |
491 | return mode; | |
492 | } | |
493 | ||
494 | /* Discovers what condition_evaluation_auto translates to. */ | |
495 | ||
496 | static const char * | |
497 | breakpoint_condition_evaluation_mode (void) | |
498 | { | |
499 | return translate_condition_evaluation_mode (condition_evaluation_mode); | |
500 | } | |
501 | ||
502 | /* Return true if GDB should evaluate breakpoint conditions or false | |
503 | otherwise. */ | |
504 | ||
505 | static int | |
506 | gdb_evaluates_breakpoint_condition_p (void) | |
507 | { | |
508 | const char *mode = breakpoint_condition_evaluation_mode (); | |
509 | ||
510 | return (mode == condition_evaluation_host); | |
511 | } | |
512 | ||
a14ed312 | 513 | void _initialize_breakpoint (void); |
c906108c | 514 | |
c906108c SS |
515 | /* Are we executing breakpoint commands? */ |
516 | static int executing_breakpoint_commands; | |
517 | ||
c02f5703 MS |
518 | /* Are overlay event breakpoints enabled? */ |
519 | static int overlay_events_enabled; | |
520 | ||
e09342b5 TJB |
521 | /* See description in breakpoint.h. */ |
522 | int target_exact_watchpoints = 0; | |
523 | ||
c906108c | 524 | /* Walk the following statement or block through all breakpoints. |
e5dd4106 | 525 | ALL_BREAKPOINTS_SAFE does so even if the statement deletes the |
4a64f543 | 526 | current breakpoint. */ |
c906108c | 527 | |
5c44784c | 528 | #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next) |
c906108c | 529 | |
5c44784c JM |
530 | #define ALL_BREAKPOINTS_SAFE(B,TMP) \ |
531 | for (B = breakpoint_chain; \ | |
532 | B ? (TMP=B->next, 1): 0; \ | |
533 | B = TMP) | |
c906108c | 534 | |
4a64f543 MS |
535 | /* Similar iterator for the low-level breakpoints. SAFE variant is |
536 | not provided so update_global_location_list must not be called | |
537 | while executing the block of ALL_BP_LOCATIONS. */ | |
7cc221ef | 538 | |
876fa593 JK |
539 | #define ALL_BP_LOCATIONS(B,BP_TMP) \ |
540 | for (BP_TMP = bp_location; \ | |
541 | BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \ | |
542 | BP_TMP++) | |
7cc221ef | 543 | |
b775012e LM |
544 | /* Iterates through locations with address ADDRESS for the currently selected |
545 | program space. BP_LOCP_TMP points to each object. BP_LOCP_START points | |
546 | to where the loop should start from. | |
547 | If BP_LOCP_START is a NULL pointer, the macro automatically seeks the | |
548 | appropriate location to start with. */ | |
549 | ||
550 | #define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \ | |
551 | for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \ | |
552 | BP_LOCP_TMP = BP_LOCP_START; \ | |
553 | BP_LOCP_START \ | |
554 | && (BP_LOCP_TMP < bp_location + bp_location_count \ | |
555 | && (*BP_LOCP_TMP)->address == ADDRESS); \ | |
556 | BP_LOCP_TMP++) | |
557 | ||
1042e4c0 SS |
558 | /* Iterator for tracepoints only. */ |
559 | ||
560 | #define ALL_TRACEPOINTS(B) \ | |
561 | for (B = breakpoint_chain; B; B = B->next) \ | |
d77f58be | 562 | if (is_tracepoint (B)) |
1042e4c0 | 563 | |
7cc221ef | 564 | /* Chains of all breakpoints defined. */ |
c906108c SS |
565 | |
566 | struct breakpoint *breakpoint_chain; | |
567 | ||
876fa593 JK |
568 | /* Array is sorted by bp_location_compare - primarily by the ADDRESS. */ |
569 | ||
570 | static struct bp_location **bp_location; | |
571 | ||
572 | /* Number of elements of BP_LOCATION. */ | |
573 | ||
574 | static unsigned bp_location_count; | |
575 | ||
4a64f543 MS |
576 | /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and |
577 | ADDRESS for the current elements of BP_LOCATION which get a valid | |
578 | result from bp_location_has_shadow. You can use it for roughly | |
579 | limiting the subrange of BP_LOCATION to scan for shadow bytes for | |
580 | an address you need to read. */ | |
876fa593 JK |
581 | |
582 | static CORE_ADDR bp_location_placed_address_before_address_max; | |
583 | ||
4a64f543 MS |
584 | /* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS |
585 | + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of | |
586 | BP_LOCATION which get a valid result from bp_location_has_shadow. | |
587 | You can use it for roughly limiting the subrange of BP_LOCATION to | |
588 | scan for shadow bytes for an address you need to read. */ | |
876fa593 JK |
589 | |
590 | static CORE_ADDR bp_location_shadow_len_after_address_max; | |
7cc221ef | 591 | |
4a64f543 MS |
592 | /* The locations that no longer correspond to any breakpoint, unlinked |
593 | from bp_location array, but for which a hit may still be reported | |
594 | by a target. */ | |
20874c92 VP |
595 | VEC(bp_location_p) *moribund_locations = NULL; |
596 | ||
c906108c SS |
597 | /* Number of last breakpoint made. */ |
598 | ||
95a42b64 TT |
599 | static int breakpoint_count; |
600 | ||
86b17b60 PA |
601 | /* The value of `breakpoint_count' before the last command that |
602 | created breakpoints. If the last (break-like) command created more | |
603 | than one breakpoint, then the difference between BREAKPOINT_COUNT | |
604 | and PREV_BREAKPOINT_COUNT is more than one. */ | |
605 | static int prev_breakpoint_count; | |
c906108c | 606 | |
1042e4c0 SS |
607 | /* Number of last tracepoint made. */ |
608 | ||
95a42b64 | 609 | static int tracepoint_count; |
1042e4c0 | 610 | |
6149aea9 PA |
611 | static struct cmd_list_element *breakpoint_set_cmdlist; |
612 | static struct cmd_list_element *breakpoint_show_cmdlist; | |
9291a0cd | 613 | struct cmd_list_element *save_cmdlist; |
6149aea9 | 614 | |
468d015d JJ |
615 | /* Return whether a breakpoint is an active enabled breakpoint. */ |
616 | static int | |
617 | breakpoint_enabled (struct breakpoint *b) | |
618 | { | |
0d381245 | 619 | return (b->enable_state == bp_enabled); |
468d015d JJ |
620 | } |
621 | ||
c906108c SS |
622 | /* Set breakpoint count to NUM. */ |
623 | ||
95a42b64 | 624 | static void |
fba45db2 | 625 | set_breakpoint_count (int num) |
c906108c | 626 | { |
86b17b60 | 627 | prev_breakpoint_count = breakpoint_count; |
c906108c | 628 | breakpoint_count = num; |
4fa62494 | 629 | set_internalvar_integer (lookup_internalvar ("bpnum"), num); |
c906108c SS |
630 | } |
631 | ||
86b17b60 PA |
632 | /* Used by `start_rbreak_breakpoints' below, to record the current |
633 | breakpoint count before "rbreak" creates any breakpoint. */ | |
634 | static int rbreak_start_breakpoint_count; | |
635 | ||
95a42b64 TT |
636 | /* Called at the start an "rbreak" command to record the first |
637 | breakpoint made. */ | |
86b17b60 | 638 | |
95a42b64 TT |
639 | void |
640 | start_rbreak_breakpoints (void) | |
641 | { | |
86b17b60 | 642 | rbreak_start_breakpoint_count = breakpoint_count; |
95a42b64 TT |
643 | } |
644 | ||
645 | /* Called at the end of an "rbreak" command to record the last | |
646 | breakpoint made. */ | |
86b17b60 | 647 | |
95a42b64 TT |
648 | void |
649 | end_rbreak_breakpoints (void) | |
650 | { | |
86b17b60 | 651 | prev_breakpoint_count = rbreak_start_breakpoint_count; |
95a42b64 TT |
652 | } |
653 | ||
4a64f543 | 654 | /* Used in run_command to zero the hit count when a new run starts. */ |
c906108c SS |
655 | |
656 | void | |
fba45db2 | 657 | clear_breakpoint_hit_counts (void) |
c906108c SS |
658 | { |
659 | struct breakpoint *b; | |
660 | ||
661 | ALL_BREAKPOINTS (b) | |
662 | b->hit_count = 0; | |
663 | } | |
664 | ||
9add0f1b TT |
665 | /* Allocate a new counted_command_line with reference count of 1. |
666 | The new structure owns COMMANDS. */ | |
667 | ||
668 | static struct counted_command_line * | |
669 | alloc_counted_command_line (struct command_line *commands) | |
670 | { | |
671 | struct counted_command_line *result | |
672 | = xmalloc (sizeof (struct counted_command_line)); | |
cc59ec59 | 673 | |
9add0f1b TT |
674 | result->refc = 1; |
675 | result->commands = commands; | |
676 | return result; | |
677 | } | |
678 | ||
679 | /* Increment reference count. This does nothing if CMD is NULL. */ | |
680 | ||
681 | static void | |
682 | incref_counted_command_line (struct counted_command_line *cmd) | |
683 | { | |
684 | if (cmd) | |
685 | ++cmd->refc; | |
686 | } | |
687 | ||
688 | /* Decrement reference count. If the reference count reaches 0, | |
689 | destroy the counted_command_line. Sets *CMDP to NULL. This does | |
690 | nothing if *CMDP is NULL. */ | |
691 | ||
692 | static void | |
693 | decref_counted_command_line (struct counted_command_line **cmdp) | |
694 | { | |
695 | if (*cmdp) | |
696 | { | |
697 | if (--(*cmdp)->refc == 0) | |
698 | { | |
699 | free_command_lines (&(*cmdp)->commands); | |
700 | xfree (*cmdp); | |
701 | } | |
702 | *cmdp = NULL; | |
703 | } | |
704 | } | |
705 | ||
706 | /* A cleanup function that calls decref_counted_command_line. */ | |
707 | ||
708 | static void | |
709 | do_cleanup_counted_command_line (void *arg) | |
710 | { | |
711 | decref_counted_command_line (arg); | |
712 | } | |
713 | ||
714 | /* Create a cleanup that calls decref_counted_command_line on the | |
715 | argument. */ | |
716 | ||
717 | static struct cleanup * | |
718 | make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp) | |
719 | { | |
720 | return make_cleanup (do_cleanup_counted_command_line, cmdp); | |
721 | } | |
722 | ||
c906108c | 723 | \f |
48cb2d85 VP |
724 | /* Return the breakpoint with the specified number, or NULL |
725 | if the number does not refer to an existing breakpoint. */ | |
726 | ||
727 | struct breakpoint * | |
728 | get_breakpoint (int num) | |
729 | { | |
730 | struct breakpoint *b; | |
731 | ||
732 | ALL_BREAKPOINTS (b) | |
733 | if (b->number == num) | |
734 | return b; | |
735 | ||
736 | return NULL; | |
737 | } | |
5c44784c | 738 | |
c906108c | 739 | \f |
adc36818 | 740 | |
b775012e LM |
741 | /* Mark locations as "conditions have changed" in case the target supports |
742 | evaluating conditions on its side. */ | |
743 | ||
744 | static void | |
745 | mark_breakpoint_modified (struct breakpoint *b) | |
746 | { | |
747 | struct bp_location *loc; | |
748 | ||
749 | /* This is only meaningful if the target is | |
750 | evaluating conditions and if the user has | |
751 | opted for condition evaluation on the target's | |
752 | side. */ | |
753 | if (gdb_evaluates_breakpoint_condition_p () | |
754 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
755 | return; | |
756 | ||
757 | if (!is_breakpoint (b)) | |
758 | return; | |
759 | ||
760 | for (loc = b->loc; loc; loc = loc->next) | |
761 | loc->condition_changed = condition_modified; | |
762 | } | |
763 | ||
764 | /* Mark location as "conditions have changed" in case the target supports | |
765 | evaluating conditions on its side. */ | |
766 | ||
767 | static void | |
768 | mark_breakpoint_location_modified (struct bp_location *loc) | |
769 | { | |
770 | /* This is only meaningful if the target is | |
771 | evaluating conditions and if the user has | |
772 | opted for condition evaluation on the target's | |
773 | side. */ | |
774 | if (gdb_evaluates_breakpoint_condition_p () | |
775 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
776 | ||
777 | return; | |
778 | ||
779 | if (!is_breakpoint (loc->owner)) | |
780 | return; | |
781 | ||
782 | loc->condition_changed = condition_modified; | |
783 | } | |
784 | ||
785 | /* Sets the condition-evaluation mode using the static global | |
786 | condition_evaluation_mode. */ | |
787 | ||
788 | static void | |
789 | set_condition_evaluation_mode (char *args, int from_tty, | |
790 | struct cmd_list_element *c) | |
791 | { | |
b775012e LM |
792 | const char *old_mode, *new_mode; |
793 | ||
794 | if ((condition_evaluation_mode_1 == condition_evaluation_target) | |
795 | && !target_supports_evaluation_of_breakpoint_conditions ()) | |
796 | { | |
797 | condition_evaluation_mode_1 = condition_evaluation_mode; | |
798 | warning (_("Target does not support breakpoint condition evaluation.\n" | |
799 | "Using host evaluation mode instead.")); | |
800 | return; | |
801 | } | |
802 | ||
803 | new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1); | |
804 | old_mode = translate_condition_evaluation_mode (condition_evaluation_mode); | |
805 | ||
abf1152a JK |
806 | /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the |
807 | settings was "auto". */ | |
808 | condition_evaluation_mode = condition_evaluation_mode_1; | |
809 | ||
b775012e LM |
810 | /* Only update the mode if the user picked a different one. */ |
811 | if (new_mode != old_mode) | |
812 | { | |
813 | struct bp_location *loc, **loc_tmp; | |
814 | /* If the user switched to a different evaluation mode, we | |
815 | need to synch the changes with the target as follows: | |
816 | ||
817 | "host" -> "target": Send all (valid) conditions to the target. | |
818 | "target" -> "host": Remove all the conditions from the target. | |
819 | */ | |
820 | ||
b775012e LM |
821 | if (new_mode == condition_evaluation_target) |
822 | { | |
823 | /* Mark everything modified and synch conditions with the | |
824 | target. */ | |
825 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
826 | mark_breakpoint_location_modified (loc); | |
827 | } | |
828 | else | |
829 | { | |
830 | /* Manually mark non-duplicate locations to synch conditions | |
831 | with the target. We do this to remove all the conditions the | |
832 | target knows about. */ | |
833 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
834 | if (is_breakpoint (loc->owner) && loc->inserted) | |
835 | loc->needs_update = 1; | |
836 | } | |
837 | ||
838 | /* Do the update. */ | |
839 | update_global_location_list (1); | |
840 | } | |
841 | ||
842 | return; | |
843 | } | |
844 | ||
845 | /* Shows the current mode of breakpoint condition evaluation. Explicitly shows | |
846 | what "auto" is translating to. */ | |
847 | ||
848 | static void | |
849 | show_condition_evaluation_mode (struct ui_file *file, int from_tty, | |
850 | struct cmd_list_element *c, const char *value) | |
851 | { | |
852 | if (condition_evaluation_mode == condition_evaluation_auto) | |
853 | fprintf_filtered (file, | |
854 | _("Breakpoint condition evaluation " | |
855 | "mode is %s (currently %s).\n"), | |
856 | value, | |
857 | breakpoint_condition_evaluation_mode ()); | |
858 | else | |
859 | fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"), | |
860 | value); | |
861 | } | |
862 | ||
863 | /* A comparison function for bp_location AP and BP that is used by | |
864 | bsearch. This comparison function only cares about addresses, unlike | |
865 | the more general bp_location_compare function. */ | |
866 | ||
867 | static int | |
868 | bp_location_compare_addrs (const void *ap, const void *bp) | |
869 | { | |
870 | struct bp_location *a = *(void **) ap; | |
871 | struct bp_location *b = *(void **) bp; | |
872 | ||
873 | if (a->address == b->address) | |
874 | return 0; | |
875 | else | |
876 | return ((a->address > b->address) - (a->address < b->address)); | |
877 | } | |
878 | ||
879 | /* Helper function to skip all bp_locations with addresses | |
880 | less than ADDRESS. It returns the first bp_location that | |
881 | is greater than or equal to ADDRESS. If none is found, just | |
882 | return NULL. */ | |
883 | ||
884 | static struct bp_location ** | |
885 | get_first_locp_gte_addr (CORE_ADDR address) | |
886 | { | |
887 | struct bp_location dummy_loc; | |
888 | struct bp_location *dummy_locp = &dummy_loc; | |
889 | struct bp_location **locp_found = NULL; | |
890 | ||
891 | /* Initialize the dummy location's address field. */ | |
892 | memset (&dummy_loc, 0, sizeof (struct bp_location)); | |
893 | dummy_loc.address = address; | |
894 | ||
895 | /* Find a close match to the first location at ADDRESS. */ | |
896 | locp_found = bsearch (&dummy_locp, bp_location, bp_location_count, | |
897 | sizeof (struct bp_location **), | |
898 | bp_location_compare_addrs); | |
899 | ||
900 | /* Nothing was found, nothing left to do. */ | |
901 | if (locp_found == NULL) | |
902 | return NULL; | |
903 | ||
904 | /* We may have found a location that is at ADDRESS but is not the first in the | |
905 | location's list. Go backwards (if possible) and locate the first one. */ | |
906 | while ((locp_found - 1) >= bp_location | |
907 | && (*(locp_found - 1))->address == address) | |
908 | locp_found--; | |
909 | ||
910 | return locp_found; | |
911 | } | |
912 | ||
adc36818 PM |
913 | void |
914 | set_breakpoint_condition (struct breakpoint *b, char *exp, | |
915 | int from_tty) | |
916 | { | |
3a5c3e22 PA |
917 | xfree (b->cond_string); |
918 | b->cond_string = NULL; | |
adc36818 | 919 | |
3a5c3e22 | 920 | if (is_watchpoint (b)) |
adc36818 | 921 | { |
3a5c3e22 PA |
922 | struct watchpoint *w = (struct watchpoint *) b; |
923 | ||
924 | xfree (w->cond_exp); | |
925 | w->cond_exp = NULL; | |
926 | } | |
927 | else | |
928 | { | |
929 | struct bp_location *loc; | |
930 | ||
931 | for (loc = b->loc; loc; loc = loc->next) | |
932 | { | |
933 | xfree (loc->cond); | |
934 | loc->cond = NULL; | |
b775012e LM |
935 | |
936 | /* No need to free the condition agent expression | |
937 | bytecode (if we have one). We will handle this | |
938 | when we go through update_global_location_list. */ | |
3a5c3e22 | 939 | } |
adc36818 | 940 | } |
adc36818 PM |
941 | |
942 | if (*exp == 0) | |
943 | { | |
944 | if (from_tty) | |
945 | printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number); | |
946 | } | |
947 | else | |
948 | { | |
bbc13ae3 | 949 | const char *arg = exp; |
cc59ec59 | 950 | |
adc36818 PM |
951 | /* I don't know if it matters whether this is the string the user |
952 | typed in or the decompiled expression. */ | |
953 | b->cond_string = xstrdup (arg); | |
954 | b->condition_not_parsed = 0; | |
955 | ||
956 | if (is_watchpoint (b)) | |
957 | { | |
3a5c3e22 PA |
958 | struct watchpoint *w = (struct watchpoint *) b; |
959 | ||
adc36818 PM |
960 | innermost_block = NULL; |
961 | arg = exp; | |
1bb9788d | 962 | w->cond_exp = parse_exp_1 (&arg, 0, 0, 0); |
adc36818 PM |
963 | if (*arg) |
964 | error (_("Junk at end of expression")); | |
3a5c3e22 | 965 | w->cond_exp_valid_block = innermost_block; |
adc36818 PM |
966 | } |
967 | else | |
968 | { | |
3a5c3e22 PA |
969 | struct bp_location *loc; |
970 | ||
adc36818 PM |
971 | for (loc = b->loc; loc; loc = loc->next) |
972 | { | |
973 | arg = exp; | |
974 | loc->cond = | |
1bb9788d TT |
975 | parse_exp_1 (&arg, loc->address, |
976 | block_for_pc (loc->address), 0); | |
adc36818 PM |
977 | if (*arg) |
978 | error (_("Junk at end of expression")); | |
979 | } | |
980 | } | |
981 | } | |
b775012e LM |
982 | mark_breakpoint_modified (b); |
983 | ||
8d3788bd | 984 | observer_notify_breakpoint_modified (b); |
adc36818 PM |
985 | } |
986 | ||
d55637df TT |
987 | /* Completion for the "condition" command. */ |
988 | ||
989 | static VEC (char_ptr) * | |
6f937416 PA |
990 | condition_completer (struct cmd_list_element *cmd, |
991 | const char *text, const char *word) | |
d55637df | 992 | { |
6f937416 | 993 | const char *space; |
d55637df | 994 | |
6f937416 PA |
995 | text = skip_spaces_const (text); |
996 | space = skip_to_space_const (text); | |
d55637df TT |
997 | if (*space == '\0') |
998 | { | |
999 | int len; | |
1000 | struct breakpoint *b; | |
1001 | VEC (char_ptr) *result = NULL; | |
1002 | ||
1003 | if (text[0] == '$') | |
1004 | { | |
1005 | /* We don't support completion of history indices. */ | |
1006 | if (isdigit (text[1])) | |
1007 | return NULL; | |
1008 | return complete_internalvar (&text[1]); | |
1009 | } | |
1010 | ||
1011 | /* We're completing the breakpoint number. */ | |
1012 | len = strlen (text); | |
1013 | ||
1014 | ALL_BREAKPOINTS (b) | |
1015 | { | |
1016 | int single = b->loc->next == NULL; | |
1017 | struct bp_location *loc; | |
1018 | int count = 1; | |
1019 | ||
1020 | for (loc = b->loc; loc; loc = loc->next) | |
1021 | { | |
1022 | char location[50]; | |
1023 | ||
1024 | if (single) | |
8c042590 | 1025 | xsnprintf (location, sizeof (location), "%d", b->number); |
d55637df | 1026 | else |
8c042590 PM |
1027 | xsnprintf (location, sizeof (location), "%d.%d", b->number, |
1028 | count); | |
d55637df TT |
1029 | |
1030 | if (strncmp (location, text, len) == 0) | |
1031 | VEC_safe_push (char_ptr, result, xstrdup (location)); | |
1032 | ||
1033 | ++count; | |
1034 | } | |
1035 | } | |
1036 | ||
1037 | return result; | |
1038 | } | |
1039 | ||
1040 | /* We're completing the expression part. */ | |
6f937416 | 1041 | text = skip_spaces_const (space); |
d55637df TT |
1042 | return expression_completer (cmd, text, word); |
1043 | } | |
1044 | ||
c906108c SS |
1045 | /* condition N EXP -- set break condition of breakpoint N to EXP. */ |
1046 | ||
1047 | static void | |
fba45db2 | 1048 | condition_command (char *arg, int from_tty) |
c906108c | 1049 | { |
52f0bd74 | 1050 | struct breakpoint *b; |
c906108c | 1051 | char *p; |
52f0bd74 | 1052 | int bnum; |
c906108c SS |
1053 | |
1054 | if (arg == 0) | |
e2e0b3e5 | 1055 | error_no_arg (_("breakpoint number")); |
c906108c SS |
1056 | |
1057 | p = arg; | |
1058 | bnum = get_number (&p); | |
5c44784c | 1059 | if (bnum == 0) |
8a3fe4f8 | 1060 | error (_("Bad breakpoint argument: '%s'"), arg); |
c906108c SS |
1061 | |
1062 | ALL_BREAKPOINTS (b) | |
1063 | if (b->number == bnum) | |
2f069f6f | 1064 | { |
7371cf6d PM |
1065 | /* Check if this breakpoint has a Python object assigned to |
1066 | it, and if it has a definition of the "stop" | |
1067 | method. This method and conditions entered into GDB from | |
1068 | the CLI are mutually exclusive. */ | |
1069 | if (b->py_bp_object | |
1070 | && gdbpy_breakpoint_has_py_cond (b->py_bp_object)) | |
1071 | error (_("Cannot set a condition where a Python 'stop' " | |
1072 | "method has been defined in the breakpoint.")); | |
2566ad2d | 1073 | set_breakpoint_condition (b, p, from_tty); |
b775012e LM |
1074 | |
1075 | if (is_breakpoint (b)) | |
1076 | update_global_location_list (1); | |
1077 | ||
2f069f6f JB |
1078 | return; |
1079 | } | |
c906108c | 1080 | |
8a3fe4f8 | 1081 | error (_("No breakpoint number %d."), bnum); |
c906108c SS |
1082 | } |
1083 | ||
a7bdde9e VP |
1084 | /* Check that COMMAND do not contain commands that are suitable |
1085 | only for tracepoints and not suitable for ordinary breakpoints. | |
4a64f543 MS |
1086 | Throw if any such commands is found. */ |
1087 | ||
a7bdde9e VP |
1088 | static void |
1089 | check_no_tracepoint_commands (struct command_line *commands) | |
1090 | { | |
1091 | struct command_line *c; | |
cc59ec59 | 1092 | |
a7bdde9e VP |
1093 | for (c = commands; c; c = c->next) |
1094 | { | |
1095 | int i; | |
1096 | ||
1097 | if (c->control_type == while_stepping_control) | |
3e43a32a MS |
1098 | error (_("The 'while-stepping' command can " |
1099 | "only be used for tracepoints")); | |
a7bdde9e VP |
1100 | |
1101 | for (i = 0; i < c->body_count; ++i) | |
1102 | check_no_tracepoint_commands ((c->body_list)[i]); | |
1103 | ||
1104 | /* Not that command parsing removes leading whitespace and comment | |
4a64f543 | 1105 | lines and also empty lines. So, we only need to check for |
a7bdde9e VP |
1106 | command directly. */ |
1107 | if (strstr (c->line, "collect ") == c->line) | |
1108 | error (_("The 'collect' command can only be used for tracepoints")); | |
1109 | ||
51661e93 VP |
1110 | if (strstr (c->line, "teval ") == c->line) |
1111 | error (_("The 'teval' command can only be used for tracepoints")); | |
a7bdde9e VP |
1112 | } |
1113 | } | |
1114 | ||
d77f58be SS |
1115 | /* Encapsulate tests for different types of tracepoints. */ |
1116 | ||
d9b3f62e PA |
1117 | static int |
1118 | is_tracepoint_type (enum bptype type) | |
1119 | { | |
1120 | return (type == bp_tracepoint | |
1121 | || type == bp_fast_tracepoint | |
1122 | || type == bp_static_tracepoint); | |
1123 | } | |
1124 | ||
a7bdde9e | 1125 | int |
d77f58be | 1126 | is_tracepoint (const struct breakpoint *b) |
a7bdde9e | 1127 | { |
d9b3f62e | 1128 | return is_tracepoint_type (b->type); |
a7bdde9e | 1129 | } |
d9b3f62e | 1130 | |
e5dd4106 | 1131 | /* A helper function that validates that COMMANDS are valid for a |
95a42b64 TT |
1132 | breakpoint. This function will throw an exception if a problem is |
1133 | found. */ | |
48cb2d85 | 1134 | |
95a42b64 TT |
1135 | static void |
1136 | validate_commands_for_breakpoint (struct breakpoint *b, | |
1137 | struct command_line *commands) | |
48cb2d85 | 1138 | { |
d77f58be | 1139 | if (is_tracepoint (b)) |
a7bdde9e | 1140 | { |
c9a6ce02 | 1141 | struct tracepoint *t = (struct tracepoint *) b; |
a7bdde9e VP |
1142 | struct command_line *c; |
1143 | struct command_line *while_stepping = 0; | |
c9a6ce02 PA |
1144 | |
1145 | /* Reset the while-stepping step count. The previous commands | |
1146 | might have included a while-stepping action, while the new | |
1147 | ones might not. */ | |
1148 | t->step_count = 0; | |
1149 | ||
1150 | /* We need to verify that each top-level element of commands is | |
1151 | valid for tracepoints, that there's at most one | |
1152 | while-stepping element, and that the while-stepping's body | |
1153 | has valid tracing commands excluding nested while-stepping. | |
1154 | We also need to validate the tracepoint action line in the | |
1155 | context of the tracepoint --- validate_actionline actually | |
1156 | has side effects, like setting the tracepoint's | |
1157 | while-stepping STEP_COUNT, in addition to checking if the | |
1158 | collect/teval actions parse and make sense in the | |
1159 | tracepoint's context. */ | |
a7bdde9e VP |
1160 | for (c = commands; c; c = c->next) |
1161 | { | |
a7bdde9e VP |
1162 | if (c->control_type == while_stepping_control) |
1163 | { | |
1164 | if (b->type == bp_fast_tracepoint) | |
3e43a32a MS |
1165 | error (_("The 'while-stepping' command " |
1166 | "cannot be used for fast tracepoint")); | |
0fb4aa4b | 1167 | else if (b->type == bp_static_tracepoint) |
3e43a32a MS |
1168 | error (_("The 'while-stepping' command " |
1169 | "cannot be used for static tracepoint")); | |
a7bdde9e VP |
1170 | |
1171 | if (while_stepping) | |
3e43a32a MS |
1172 | error (_("The 'while-stepping' command " |
1173 | "can be used only once")); | |
a7bdde9e VP |
1174 | else |
1175 | while_stepping = c; | |
1176 | } | |
c9a6ce02 PA |
1177 | |
1178 | validate_actionline (c->line, b); | |
a7bdde9e VP |
1179 | } |
1180 | if (while_stepping) | |
1181 | { | |
1182 | struct command_line *c2; | |
1183 | ||
1184 | gdb_assert (while_stepping->body_count == 1); | |
1185 | c2 = while_stepping->body_list[0]; | |
1186 | for (; c2; c2 = c2->next) | |
1187 | { | |
a7bdde9e VP |
1188 | if (c2->control_type == while_stepping_control) |
1189 | error (_("The 'while-stepping' command cannot be nested")); | |
1190 | } | |
1191 | } | |
1192 | } | |
1193 | else | |
1194 | { | |
1195 | check_no_tracepoint_commands (commands); | |
1196 | } | |
95a42b64 TT |
1197 | } |
1198 | ||
0fb4aa4b PA |
1199 | /* Return a vector of all the static tracepoints set at ADDR. The |
1200 | caller is responsible for releasing the vector. */ | |
1201 | ||
1202 | VEC(breakpoint_p) * | |
1203 | static_tracepoints_here (CORE_ADDR addr) | |
1204 | { | |
1205 | struct breakpoint *b; | |
1206 | VEC(breakpoint_p) *found = 0; | |
1207 | struct bp_location *loc; | |
1208 | ||
1209 | ALL_BREAKPOINTS (b) | |
1210 | if (b->type == bp_static_tracepoint) | |
1211 | { | |
1212 | for (loc = b->loc; loc; loc = loc->next) | |
1213 | if (loc->address == addr) | |
1214 | VEC_safe_push(breakpoint_p, found, b); | |
1215 | } | |
1216 | ||
1217 | return found; | |
1218 | } | |
1219 | ||
95a42b64 | 1220 | /* Set the command list of B to COMMANDS. If breakpoint is tracepoint, |
4a64f543 | 1221 | validate that only allowed commands are included. */ |
95a42b64 TT |
1222 | |
1223 | void | |
4a64f543 MS |
1224 | breakpoint_set_commands (struct breakpoint *b, |
1225 | struct command_line *commands) | |
95a42b64 TT |
1226 | { |
1227 | validate_commands_for_breakpoint (b, commands); | |
a7bdde9e | 1228 | |
9add0f1b TT |
1229 | decref_counted_command_line (&b->commands); |
1230 | b->commands = alloc_counted_command_line (commands); | |
8d3788bd | 1231 | observer_notify_breakpoint_modified (b); |
48cb2d85 VP |
1232 | } |
1233 | ||
45a43567 TT |
1234 | /* Set the internal `silent' flag on the breakpoint. Note that this |
1235 | is not the same as the "silent" that may appear in the breakpoint's | |
1236 | commands. */ | |
1237 | ||
1238 | void | |
1239 | breakpoint_set_silent (struct breakpoint *b, int silent) | |
1240 | { | |
1241 | int old_silent = b->silent; | |
1242 | ||
1243 | b->silent = silent; | |
1244 | if (old_silent != silent) | |
8d3788bd | 1245 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1246 | } |
1247 | ||
1248 | /* Set the thread for this breakpoint. If THREAD is -1, make the | |
1249 | breakpoint work for any thread. */ | |
1250 | ||
1251 | void | |
1252 | breakpoint_set_thread (struct breakpoint *b, int thread) | |
1253 | { | |
1254 | int old_thread = b->thread; | |
1255 | ||
1256 | b->thread = thread; | |
1257 | if (old_thread != thread) | |
8d3788bd | 1258 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1259 | } |
1260 | ||
1261 | /* Set the task for this breakpoint. If TASK is 0, make the | |
1262 | breakpoint work for any task. */ | |
1263 | ||
1264 | void | |
1265 | breakpoint_set_task (struct breakpoint *b, int task) | |
1266 | { | |
1267 | int old_task = b->task; | |
1268 | ||
1269 | b->task = task; | |
1270 | if (old_task != task) | |
8d3788bd | 1271 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1272 | } |
1273 | ||
95a42b64 TT |
1274 | void |
1275 | check_tracepoint_command (char *line, void *closure) | |
a7bdde9e VP |
1276 | { |
1277 | struct breakpoint *b = closure; | |
cc59ec59 | 1278 | |
6f937416 | 1279 | validate_actionline (line, b); |
a7bdde9e VP |
1280 | } |
1281 | ||
95a42b64 TT |
1282 | /* A structure used to pass information through |
1283 | map_breakpoint_numbers. */ | |
1284 | ||
1285 | struct commands_info | |
1286 | { | |
1287 | /* True if the command was typed at a tty. */ | |
1288 | int from_tty; | |
86b17b60 PA |
1289 | |
1290 | /* The breakpoint range spec. */ | |
1291 | char *arg; | |
1292 | ||
95a42b64 TT |
1293 | /* Non-NULL if the body of the commands are being read from this |
1294 | already-parsed command. */ | |
1295 | struct command_line *control; | |
86b17b60 | 1296 | |
95a42b64 TT |
1297 | /* The command lines read from the user, or NULL if they have not |
1298 | yet been read. */ | |
1299 | struct counted_command_line *cmd; | |
1300 | }; | |
1301 | ||
1302 | /* A callback for map_breakpoint_numbers that sets the commands for | |
1303 | commands_command. */ | |
1304 | ||
c906108c | 1305 | static void |
95a42b64 | 1306 | do_map_commands_command (struct breakpoint *b, void *data) |
c906108c | 1307 | { |
95a42b64 | 1308 | struct commands_info *info = data; |
c906108c | 1309 | |
95a42b64 TT |
1310 | if (info->cmd == NULL) |
1311 | { | |
1312 | struct command_line *l; | |
5c44784c | 1313 | |
95a42b64 TT |
1314 | if (info->control != NULL) |
1315 | l = copy_command_lines (info->control->body_list[0]); | |
1316 | else | |
86b17b60 PA |
1317 | { |
1318 | struct cleanup *old_chain; | |
1319 | char *str; | |
c5aa993b | 1320 | |
3e43a32a MS |
1321 | str = xstrprintf (_("Type commands for breakpoint(s) " |
1322 | "%s, one per line."), | |
86b17b60 PA |
1323 | info->arg); |
1324 | ||
1325 | old_chain = make_cleanup (xfree, str); | |
1326 | ||
1327 | l = read_command_lines (str, | |
1328 | info->from_tty, 1, | |
d77f58be | 1329 | (is_tracepoint (b) |
86b17b60 PA |
1330 | ? check_tracepoint_command : 0), |
1331 | b); | |
1332 | ||
1333 | do_cleanups (old_chain); | |
1334 | } | |
a7bdde9e | 1335 | |
95a42b64 TT |
1336 | info->cmd = alloc_counted_command_line (l); |
1337 | } | |
1338 | ||
1339 | /* If a breakpoint was on the list more than once, we don't need to | |
1340 | do anything. */ | |
1341 | if (b->commands != info->cmd) | |
1342 | { | |
1343 | validate_commands_for_breakpoint (b, info->cmd->commands); | |
1344 | incref_counted_command_line (info->cmd); | |
1345 | decref_counted_command_line (&b->commands); | |
1346 | b->commands = info->cmd; | |
8d3788bd | 1347 | observer_notify_breakpoint_modified (b); |
c5aa993b | 1348 | } |
95a42b64 TT |
1349 | } |
1350 | ||
1351 | static void | |
4a64f543 MS |
1352 | commands_command_1 (char *arg, int from_tty, |
1353 | struct command_line *control) | |
95a42b64 TT |
1354 | { |
1355 | struct cleanup *cleanups; | |
1356 | struct commands_info info; | |
1357 | ||
1358 | info.from_tty = from_tty; | |
1359 | info.control = control; | |
1360 | info.cmd = NULL; | |
1361 | /* If we read command lines from the user, then `info' will hold an | |
1362 | extra reference to the commands that we must clean up. */ | |
1363 | cleanups = make_cleanup_decref_counted_command_line (&info.cmd); | |
1364 | ||
1365 | if (arg == NULL || !*arg) | |
1366 | { | |
86b17b60 | 1367 | if (breakpoint_count - prev_breakpoint_count > 1) |
4a64f543 MS |
1368 | arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1, |
1369 | breakpoint_count); | |
95a42b64 TT |
1370 | else if (breakpoint_count > 0) |
1371 | arg = xstrprintf ("%d", breakpoint_count); | |
86b17b60 PA |
1372 | else |
1373 | { | |
1374 | /* So that we don't try to free the incoming non-NULL | |
1375 | argument in the cleanup below. Mapping breakpoint | |
1376 | numbers will fail in this case. */ | |
1377 | arg = NULL; | |
1378 | } | |
95a42b64 | 1379 | } |
9766ced4 SS |
1380 | else |
1381 | /* The command loop has some static state, so we need to preserve | |
1382 | our argument. */ | |
1383 | arg = xstrdup (arg); | |
86b17b60 PA |
1384 | |
1385 | if (arg != NULL) | |
1386 | make_cleanup (xfree, arg); | |
1387 | ||
1388 | info.arg = arg; | |
95a42b64 TT |
1389 | |
1390 | map_breakpoint_numbers (arg, do_map_commands_command, &info); | |
1391 | ||
1392 | if (info.cmd == NULL) | |
1393 | error (_("No breakpoints specified.")); | |
1394 | ||
1395 | do_cleanups (cleanups); | |
1396 | } | |
1397 | ||
1398 | static void | |
1399 | commands_command (char *arg, int from_tty) | |
1400 | { | |
1401 | commands_command_1 (arg, from_tty, NULL); | |
c906108c | 1402 | } |
40c03ae8 EZ |
1403 | |
1404 | /* Like commands_command, but instead of reading the commands from | |
1405 | input stream, takes them from an already parsed command structure. | |
1406 | ||
1407 | This is used by cli-script.c to DTRT with breakpoint commands | |
1408 | that are part of if and while bodies. */ | |
1409 | enum command_control_type | |
1410 | commands_from_control_command (char *arg, struct command_line *cmd) | |
1411 | { | |
95a42b64 TT |
1412 | commands_command_1 (arg, 0, cmd); |
1413 | return simple_control; | |
40c03ae8 | 1414 | } |
876fa593 JK |
1415 | |
1416 | /* Return non-zero if BL->TARGET_INFO contains valid information. */ | |
1417 | ||
1418 | static int | |
1419 | bp_location_has_shadow (struct bp_location *bl) | |
1420 | { | |
1421 | if (bl->loc_type != bp_loc_software_breakpoint) | |
1422 | return 0; | |
1423 | if (!bl->inserted) | |
1424 | return 0; | |
1425 | if (bl->target_info.shadow_len == 0) | |
e5dd4106 | 1426 | /* BL isn't valid, or doesn't shadow memory. */ |
876fa593 JK |
1427 | return 0; |
1428 | return 1; | |
1429 | } | |
1430 | ||
8defab1a | 1431 | /* Update BUF, which is LEN bytes read from the target address MEMADDR, |
876fa593 JK |
1432 | by replacing any memory breakpoints with their shadowed contents. |
1433 | ||
35c63cd8 JB |
1434 | If READBUF is not NULL, this buffer must not overlap with any of |
1435 | the breakpoint location's shadow_contents buffers. Otherwise, | |
1436 | a failed assertion internal error will be raised. | |
1437 | ||
876fa593 | 1438 | The range of shadowed area by each bp_location is: |
35df4500 TJB |
1439 | bl->address - bp_location_placed_address_before_address_max |
1440 | up to bl->address + bp_location_shadow_len_after_address_max | |
876fa593 JK |
1441 | The range we were requested to resolve shadows for is: |
1442 | memaddr ... memaddr + len | |
1443 | Thus the safe cutoff boundaries for performance optimization are | |
35df4500 TJB |
1444 | memaddr + len <= (bl->address |
1445 | - bp_location_placed_address_before_address_max) | |
876fa593 | 1446 | and: |
35df4500 | 1447 | bl->address + bp_location_shadow_len_after_address_max <= memaddr */ |
c906108c | 1448 | |
8defab1a | 1449 | void |
f0ba3972 PA |
1450 | breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf, |
1451 | const gdb_byte *writebuf_org, | |
1452 | ULONGEST memaddr, LONGEST len) | |
c906108c | 1453 | { |
4a64f543 MS |
1454 | /* Left boundary, right boundary and median element of our binary |
1455 | search. */ | |
876fa593 JK |
1456 | unsigned bc_l, bc_r, bc; |
1457 | ||
4a64f543 MS |
1458 | /* Find BC_L which is a leftmost element which may affect BUF |
1459 | content. It is safe to report lower value but a failure to | |
1460 | report higher one. */ | |
876fa593 JK |
1461 | |
1462 | bc_l = 0; | |
1463 | bc_r = bp_location_count; | |
1464 | while (bc_l + 1 < bc_r) | |
1465 | { | |
35df4500 | 1466 | struct bp_location *bl; |
876fa593 JK |
1467 | |
1468 | bc = (bc_l + bc_r) / 2; | |
35df4500 | 1469 | bl = bp_location[bc]; |
876fa593 | 1470 | |
4a64f543 MS |
1471 | /* Check first BL->ADDRESS will not overflow due to the added |
1472 | constant. Then advance the left boundary only if we are sure | |
1473 | the BC element can in no way affect the BUF content (MEMADDR | |
1474 | to MEMADDR + LEN range). | |
876fa593 | 1475 | |
4a64f543 MS |
1476 | Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety |
1477 | offset so that we cannot miss a breakpoint with its shadow | |
1478 | range tail still reaching MEMADDR. */ | |
c5aa993b | 1479 | |
35df4500 TJB |
1480 | if ((bl->address + bp_location_shadow_len_after_address_max |
1481 | >= bl->address) | |
1482 | && (bl->address + bp_location_shadow_len_after_address_max | |
1483 | <= memaddr)) | |
876fa593 JK |
1484 | bc_l = bc; |
1485 | else | |
1486 | bc_r = bc; | |
1487 | } | |
1488 | ||
128070bb PA |
1489 | /* Due to the binary search above, we need to make sure we pick the |
1490 | first location that's at BC_L's address. E.g., if there are | |
1491 | multiple locations at the same address, BC_L may end up pointing | |
1492 | at a duplicate location, and miss the "master"/"inserted" | |
1493 | location. Say, given locations L1, L2 and L3 at addresses A and | |
1494 | B: | |
1495 | ||
1496 | L1@A, L2@A, L3@B, ... | |
1497 | ||
1498 | BC_L could end up pointing at location L2, while the "master" | |
1499 | location could be L1. Since the `loc->inserted' flag is only set | |
1500 | on "master" locations, we'd forget to restore the shadow of L1 | |
1501 | and L2. */ | |
1502 | while (bc_l > 0 | |
1503 | && bp_location[bc_l]->address == bp_location[bc_l - 1]->address) | |
1504 | bc_l--; | |
1505 | ||
876fa593 JK |
1506 | /* Now do full processing of the found relevant range of elements. */ |
1507 | ||
1508 | for (bc = bc_l; bc < bp_location_count; bc++) | |
c5aa993b | 1509 | { |
35df4500 | 1510 | struct bp_location *bl = bp_location[bc]; |
876fa593 JK |
1511 | CORE_ADDR bp_addr = 0; |
1512 | int bp_size = 0; | |
1513 | int bptoffset = 0; | |
1514 | ||
35df4500 TJB |
1515 | /* bp_location array has BL->OWNER always non-NULL. */ |
1516 | if (bl->owner->type == bp_none) | |
8a3fe4f8 | 1517 | warning (_("reading through apparently deleted breakpoint #%d?"), |
35df4500 | 1518 | bl->owner->number); |
ffce0d52 | 1519 | |
e5dd4106 | 1520 | /* Performance optimization: any further element can no longer affect BUF |
876fa593 JK |
1521 | content. */ |
1522 | ||
35df4500 TJB |
1523 | if (bl->address >= bp_location_placed_address_before_address_max |
1524 | && memaddr + len <= (bl->address | |
1525 | - bp_location_placed_address_before_address_max)) | |
876fa593 JK |
1526 | break; |
1527 | ||
35df4500 | 1528 | if (!bp_location_has_shadow (bl)) |
c5aa993b | 1529 | continue; |
35df4500 | 1530 | if (!breakpoint_address_match (bl->target_info.placed_address_space, 0, |
6c95b8df PA |
1531 | current_program_space->aspace, 0)) |
1532 | continue; | |
1533 | ||
c5aa993b JM |
1534 | /* Addresses and length of the part of the breakpoint that |
1535 | we need to copy. */ | |
35df4500 TJB |
1536 | bp_addr = bl->target_info.placed_address; |
1537 | bp_size = bl->target_info.shadow_len; | |
8defab1a | 1538 | |
c5aa993b JM |
1539 | if (bp_addr + bp_size <= memaddr) |
1540 | /* The breakpoint is entirely before the chunk of memory we | |
1541 | are reading. */ | |
1542 | continue; | |
8defab1a | 1543 | |
c5aa993b JM |
1544 | if (bp_addr >= memaddr + len) |
1545 | /* The breakpoint is entirely after the chunk of memory we are | |
4a64f543 | 1546 | reading. */ |
c5aa993b | 1547 | continue; |
c5aa993b | 1548 | |
8defab1a DJ |
1549 | /* Offset within shadow_contents. */ |
1550 | if (bp_addr < memaddr) | |
1551 | { | |
1552 | /* Only copy the second part of the breakpoint. */ | |
1553 | bp_size -= memaddr - bp_addr; | |
1554 | bptoffset = memaddr - bp_addr; | |
1555 | bp_addr = memaddr; | |
1556 | } | |
c5aa993b | 1557 | |
8defab1a DJ |
1558 | if (bp_addr + bp_size > memaddr + len) |
1559 | { | |
1560 | /* Only copy the first part of the breakpoint. */ | |
1561 | bp_size -= (bp_addr + bp_size) - (memaddr + len); | |
1562 | } | |
c5aa993b | 1563 | |
f0ba3972 PA |
1564 | if (readbuf != NULL) |
1565 | { | |
35c63cd8 JB |
1566 | /* Verify that the readbuf buffer does not overlap with |
1567 | the shadow_contents buffer. */ | |
1568 | gdb_assert (bl->target_info.shadow_contents >= readbuf + len | |
1569 | || readbuf >= (bl->target_info.shadow_contents | |
1570 | + bl->target_info.shadow_len)); | |
1571 | ||
f0ba3972 PA |
1572 | /* Update the read buffer with this inserted breakpoint's |
1573 | shadow. */ | |
1574 | memcpy (readbuf + bp_addr - memaddr, | |
1575 | bl->target_info.shadow_contents + bptoffset, bp_size); | |
1576 | } | |
1577 | else | |
1578 | { | |
1579 | struct gdbarch *gdbarch = bl->gdbarch; | |
1580 | const unsigned char *bp; | |
1581 | CORE_ADDR placed_address = bl->target_info.placed_address; | |
20ced3e4 | 1582 | int placed_size = bl->target_info.placed_size; |
f0ba3972 PA |
1583 | |
1584 | /* Update the shadow with what we want to write to memory. */ | |
1585 | memcpy (bl->target_info.shadow_contents + bptoffset, | |
1586 | writebuf_org + bp_addr - memaddr, bp_size); | |
1587 | ||
1588 | /* Determine appropriate breakpoint contents and size for this | |
1589 | address. */ | |
1590 | bp = gdbarch_breakpoint_from_pc (gdbarch, &placed_address, &placed_size); | |
1591 | ||
1592 | /* Update the final write buffer with this inserted | |
1593 | breakpoint's INSN. */ | |
1594 | memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size); | |
1595 | } | |
c5aa993b | 1596 | } |
c906108c | 1597 | } |
c906108c | 1598 | \f |
c5aa993b | 1599 | |
b775012e LM |
1600 | /* Return true if BPT is either a software breakpoint or a hardware |
1601 | breakpoint. */ | |
1602 | ||
1603 | int | |
1604 | is_breakpoint (const struct breakpoint *bpt) | |
1605 | { | |
1606 | return (bpt->type == bp_breakpoint | |
e7e0cddf SS |
1607 | || bpt->type == bp_hardware_breakpoint |
1608 | || bpt->type == bp_dprintf); | |
b775012e LM |
1609 | } |
1610 | ||
60e1c644 PA |
1611 | /* Return true if BPT is of any hardware watchpoint kind. */ |
1612 | ||
a5606eee | 1613 | static int |
d77f58be | 1614 | is_hardware_watchpoint (const struct breakpoint *bpt) |
a5606eee VP |
1615 | { |
1616 | return (bpt->type == bp_hardware_watchpoint | |
1617 | || bpt->type == bp_read_watchpoint | |
1618 | || bpt->type == bp_access_watchpoint); | |
1619 | } | |
7270d8f2 | 1620 | |
60e1c644 PA |
1621 | /* Return true if BPT is of any watchpoint kind, hardware or |
1622 | software. */ | |
1623 | ||
3a5c3e22 | 1624 | int |
d77f58be | 1625 | is_watchpoint (const struct breakpoint *bpt) |
60e1c644 PA |
1626 | { |
1627 | return (is_hardware_watchpoint (bpt) | |
1628 | || bpt->type == bp_watchpoint); | |
1629 | } | |
1630 | ||
3a5c3e22 PA |
1631 | /* Returns true if the current thread and its running state are safe |
1632 | to evaluate or update watchpoint B. Watchpoints on local | |
1633 | expressions need to be evaluated in the context of the thread that | |
1634 | was current when the watchpoint was created, and, that thread needs | |
1635 | to be stopped to be able to select the correct frame context. | |
1636 | Watchpoints on global expressions can be evaluated on any thread, | |
1637 | and in any state. It is presently left to the target allowing | |
1638 | memory accesses when threads are running. */ | |
f6bc2008 PA |
1639 | |
1640 | static int | |
3a5c3e22 | 1641 | watchpoint_in_thread_scope (struct watchpoint *b) |
f6bc2008 | 1642 | { |
d0d8b0c6 JK |
1643 | return (b->base.pspace == current_program_space |
1644 | && (ptid_equal (b->watchpoint_thread, null_ptid) | |
1645 | || (ptid_equal (inferior_ptid, b->watchpoint_thread) | |
1646 | && !is_executing (inferior_ptid)))); | |
f6bc2008 PA |
1647 | } |
1648 | ||
d0fb5eae JK |
1649 | /* Set watchpoint B to disp_del_at_next_stop, even including its possible |
1650 | associated bp_watchpoint_scope breakpoint. */ | |
1651 | ||
1652 | static void | |
3a5c3e22 | 1653 | watchpoint_del_at_next_stop (struct watchpoint *w) |
d0fb5eae | 1654 | { |
3a5c3e22 | 1655 | struct breakpoint *b = &w->base; |
d0fb5eae JK |
1656 | |
1657 | if (b->related_breakpoint != b) | |
1658 | { | |
1659 | gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope); | |
1660 | gdb_assert (b->related_breakpoint->related_breakpoint == b); | |
1661 | b->related_breakpoint->disposition = disp_del_at_next_stop; | |
1662 | b->related_breakpoint->related_breakpoint = b->related_breakpoint; | |
1663 | b->related_breakpoint = b; | |
1664 | } | |
1665 | b->disposition = disp_del_at_next_stop; | |
1666 | } | |
1667 | ||
567e1b4e JB |
1668 | /* Assuming that B is a watchpoint: |
1669 | - Reparse watchpoint expression, if REPARSE is non-zero | |
a5606eee | 1670 | - Evaluate expression and store the result in B->val |
567e1b4e JB |
1671 | - Evaluate the condition if there is one, and store the result |
1672 | in b->loc->cond. | |
a5606eee VP |
1673 | - Update the list of values that must be watched in B->loc. |
1674 | ||
4a64f543 MS |
1675 | If the watchpoint disposition is disp_del_at_next_stop, then do |
1676 | nothing. If this is local watchpoint that is out of scope, delete | |
1677 | it. | |
1678 | ||
1679 | Even with `set breakpoint always-inserted on' the watchpoints are | |
1680 | removed + inserted on each stop here. Normal breakpoints must | |
1681 | never be removed because they might be missed by a running thread | |
1682 | when debugging in non-stop mode. On the other hand, hardware | |
1683 | watchpoints (is_hardware_watchpoint; processed here) are specific | |
1684 | to each LWP since they are stored in each LWP's hardware debug | |
1685 | registers. Therefore, such LWP must be stopped first in order to | |
1686 | be able to modify its hardware watchpoints. | |
1687 | ||
1688 | Hardware watchpoints must be reset exactly once after being | |
1689 | presented to the user. It cannot be done sooner, because it would | |
1690 | reset the data used to present the watchpoint hit to the user. And | |
1691 | it must not be done later because it could display the same single | |
1692 | watchpoint hit during multiple GDB stops. Note that the latter is | |
1693 | relevant only to the hardware watchpoint types bp_read_watchpoint | |
1694 | and bp_access_watchpoint. False hit by bp_hardware_watchpoint is | |
1695 | not user-visible - its hit is suppressed if the memory content has | |
1696 | not changed. | |
1697 | ||
1698 | The following constraints influence the location where we can reset | |
1699 | hardware watchpoints: | |
1700 | ||
1701 | * target_stopped_by_watchpoint and target_stopped_data_address are | |
1702 | called several times when GDB stops. | |
1703 | ||
1704 | [linux] | |
1705 | * Multiple hardware watchpoints can be hit at the same time, | |
1706 | causing GDB to stop. GDB only presents one hardware watchpoint | |
1707 | hit at a time as the reason for stopping, and all the other hits | |
1708 | are presented later, one after the other, each time the user | |
1709 | requests the execution to be resumed. Execution is not resumed | |
1710 | for the threads still having pending hit event stored in | |
1711 | LWP_INFO->STATUS. While the watchpoint is already removed from | |
1712 | the inferior on the first stop the thread hit event is kept being | |
1713 | reported from its cached value by linux_nat_stopped_data_address | |
1714 | until the real thread resume happens after the watchpoint gets | |
1715 | presented and thus its LWP_INFO->STATUS gets reset. | |
1716 | ||
1717 | Therefore the hardware watchpoint hit can get safely reset on the | |
1718 | watchpoint removal from inferior. */ | |
a79d3c27 | 1719 | |
b40ce68a | 1720 | static void |
3a5c3e22 | 1721 | update_watchpoint (struct watchpoint *b, int reparse) |
7270d8f2 | 1722 | { |
a5606eee | 1723 | int within_current_scope; |
a5606eee | 1724 | struct frame_id saved_frame_id; |
66076460 | 1725 | int frame_saved; |
a5606eee | 1726 | |
f6bc2008 PA |
1727 | /* If this is a local watchpoint, we only want to check if the |
1728 | watchpoint frame is in scope if the current thread is the thread | |
1729 | that was used to create the watchpoint. */ | |
1730 | if (!watchpoint_in_thread_scope (b)) | |
1731 | return; | |
1732 | ||
3a5c3e22 | 1733 | if (b->base.disposition == disp_del_at_next_stop) |
a5606eee VP |
1734 | return; |
1735 | ||
66076460 | 1736 | frame_saved = 0; |
a5606eee VP |
1737 | |
1738 | /* Determine if the watchpoint is within scope. */ | |
1739 | if (b->exp_valid_block == NULL) | |
1740 | within_current_scope = 1; | |
1741 | else | |
1742 | { | |
b5db5dfc UW |
1743 | struct frame_info *fi = get_current_frame (); |
1744 | struct gdbarch *frame_arch = get_frame_arch (fi); | |
1745 | CORE_ADDR frame_pc = get_frame_pc (fi); | |
1746 | ||
1747 | /* If we're in a function epilogue, unwinding may not work | |
1748 | properly, so do not attempt to recreate locations at this | |
1749 | point. See similar comments in watchpoint_check. */ | |
1750 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) | |
1751 | return; | |
66076460 DJ |
1752 | |
1753 | /* Save the current frame's ID so we can restore it after | |
1754 | evaluating the watchpoint expression on its own frame. */ | |
1755 | /* FIXME drow/2003-09-09: It would be nice if evaluate_expression | |
1756 | took a frame parameter, so that we didn't have to change the | |
1757 | selected frame. */ | |
1758 | frame_saved = 1; | |
1759 | saved_frame_id = get_frame_id (get_selected_frame (NULL)); | |
1760 | ||
a5606eee VP |
1761 | fi = frame_find_by_id (b->watchpoint_frame); |
1762 | within_current_scope = (fi != NULL); | |
1763 | if (within_current_scope) | |
1764 | select_frame (fi); | |
1765 | } | |
1766 | ||
b5db5dfc UW |
1767 | /* We don't free locations. They are stored in the bp_location array |
1768 | and update_global_location_list will eventually delete them and | |
1769 | remove breakpoints if needed. */ | |
3a5c3e22 | 1770 | b->base.loc = NULL; |
b5db5dfc | 1771 | |
a5606eee VP |
1772 | if (within_current_scope && reparse) |
1773 | { | |
bbc13ae3 | 1774 | const char *s; |
d63d0675 | 1775 | |
a5606eee VP |
1776 | if (b->exp) |
1777 | { | |
1778 | xfree (b->exp); | |
1779 | b->exp = NULL; | |
1780 | } | |
d63d0675 | 1781 | s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string; |
1bb9788d | 1782 | b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0); |
a5606eee VP |
1783 | /* If the meaning of expression itself changed, the old value is |
1784 | no longer relevant. We don't want to report a watchpoint hit | |
1785 | to the user when the old value and the new value may actually | |
1786 | be completely different objects. */ | |
1787 | value_free (b->val); | |
fa4727a6 DJ |
1788 | b->val = NULL; |
1789 | b->val_valid = 0; | |
60e1c644 PA |
1790 | |
1791 | /* Note that unlike with breakpoints, the watchpoint's condition | |
1792 | expression is stored in the breakpoint object, not in the | |
1793 | locations (re)created below. */ | |
3a5c3e22 | 1794 | if (b->base.cond_string != NULL) |
60e1c644 PA |
1795 | { |
1796 | if (b->cond_exp != NULL) | |
1797 | { | |
1798 | xfree (b->cond_exp); | |
1799 | b->cond_exp = NULL; | |
1800 | } | |
1801 | ||
3a5c3e22 | 1802 | s = b->base.cond_string; |
1bb9788d | 1803 | b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0); |
60e1c644 | 1804 | } |
a5606eee | 1805 | } |
a5606eee VP |
1806 | |
1807 | /* If we failed to parse the expression, for example because | |
1808 | it refers to a global variable in a not-yet-loaded shared library, | |
1809 | don't try to insert watchpoint. We don't automatically delete | |
1810 | such watchpoint, though, since failure to parse expression | |
1811 | is different from out-of-scope watchpoint. */ | |
2d134ed3 PA |
1812 | if ( !target_has_execution) |
1813 | { | |
1814 | /* Without execution, memory can't change. No use to try and | |
1815 | set watchpoint locations. The watchpoint will be reset when | |
1816 | the target gains execution, through breakpoint_re_set. */ | |
1817 | } | |
1818 | else if (within_current_scope && b->exp) | |
a5606eee | 1819 | { |
0cf6dd15 | 1820 | int pc = 0; |
fa4727a6 | 1821 | struct value *val_chain, *v, *result, *next; |
2d134ed3 | 1822 | struct program_space *frame_pspace; |
a5606eee | 1823 | |
0cf6dd15 | 1824 | fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain); |
a5606eee | 1825 | |
a5606eee VP |
1826 | /* Avoid setting b->val if it's already set. The meaning of |
1827 | b->val is 'the last value' user saw, and we should update | |
1828 | it only if we reported that last value to user. As it | |
9c06b0b4 TJB |
1829 | happens, the code that reports it updates b->val directly. |
1830 | We don't keep track of the memory value for masked | |
1831 | watchpoints. */ | |
3a5c3e22 | 1832 | if (!b->val_valid && !is_masked_watchpoint (&b->base)) |
fa4727a6 DJ |
1833 | { |
1834 | b->val = v; | |
1835 | b->val_valid = 1; | |
1836 | } | |
a5606eee | 1837 | |
2d134ed3 PA |
1838 | frame_pspace = get_frame_program_space (get_selected_frame (NULL)); |
1839 | ||
a5606eee | 1840 | /* Look at each value on the value chain. */ |
9fa40276 | 1841 | for (v = val_chain; v; v = value_next (v)) |
a5606eee VP |
1842 | { |
1843 | /* If it's a memory location, and GDB actually needed | |
1844 | its contents to evaluate the expression, then we | |
fa4727a6 DJ |
1845 | must watch it. If the first value returned is |
1846 | still lazy, that means an error occurred reading it; | |
1847 | watch it anyway in case it becomes readable. */ | |
a5606eee | 1848 | if (VALUE_LVAL (v) == lval_memory |
fa4727a6 | 1849 | && (v == val_chain || ! value_lazy (v))) |
a5606eee VP |
1850 | { |
1851 | struct type *vtype = check_typedef (value_type (v)); | |
7270d8f2 | 1852 | |
a5606eee VP |
1853 | /* We only watch structs and arrays if user asked |
1854 | for it explicitly, never if they just happen to | |
1855 | appear in the middle of some value chain. */ | |
fa4727a6 | 1856 | if (v == result |
a5606eee VP |
1857 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT |
1858 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
1859 | { | |
1860 | CORE_ADDR addr; | |
744a8059 | 1861 | int type; |
a5606eee VP |
1862 | struct bp_location *loc, **tmp; |
1863 | ||
42ae5230 | 1864 | addr = value_address (v); |
a5606eee | 1865 | type = hw_write; |
3a5c3e22 | 1866 | if (b->base.type == bp_read_watchpoint) |
a5606eee | 1867 | type = hw_read; |
3a5c3e22 | 1868 | else if (b->base.type == bp_access_watchpoint) |
a5606eee | 1869 | type = hw_access; |
3a5c3e22 PA |
1870 | |
1871 | loc = allocate_bp_location (&b->base); | |
1872 | for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next)) | |
a5606eee VP |
1873 | ; |
1874 | *tmp = loc; | |
a6d9a66e | 1875 | loc->gdbarch = get_type_arch (value_type (v)); |
6c95b8df PA |
1876 | |
1877 | loc->pspace = frame_pspace; | |
a5606eee | 1878 | loc->address = addr; |
744a8059 | 1879 | loc->length = TYPE_LENGTH (value_type (v)); |
a5606eee VP |
1880 | loc->watchpoint_type = type; |
1881 | } | |
1882 | } | |
9fa40276 TJB |
1883 | } |
1884 | ||
1885 | /* Change the type of breakpoint between hardware assisted or | |
1886 | an ordinary watchpoint depending on the hardware support | |
1887 | and free hardware slots. REPARSE is set when the inferior | |
1888 | is started. */ | |
a9634178 | 1889 | if (reparse) |
9fa40276 | 1890 | { |
e09342b5 | 1891 | int reg_cnt; |
9fa40276 TJB |
1892 | enum bp_loc_type loc_type; |
1893 | struct bp_location *bl; | |
a5606eee | 1894 | |
a9634178 | 1895 | reg_cnt = can_use_hardware_watchpoint (val_chain); |
e09342b5 TJB |
1896 | |
1897 | if (reg_cnt) | |
9fa40276 TJB |
1898 | { |
1899 | int i, target_resources_ok, other_type_used; | |
a1398e0c | 1900 | enum bptype type; |
9fa40276 | 1901 | |
a9634178 TJB |
1902 | /* Use an exact watchpoint when there's only one memory region to be |
1903 | watched, and only one debug register is needed to watch it. */ | |
1904 | b->exact = target_exact_watchpoints && reg_cnt == 1; | |
1905 | ||
9fa40276 | 1906 | /* We need to determine how many resources are already |
e09342b5 TJB |
1907 | used for all other hardware watchpoints plus this one |
1908 | to see if we still have enough resources to also fit | |
a1398e0c PA |
1909 | this watchpoint in as well. */ |
1910 | ||
1911 | /* If this is a software watchpoint, we try to turn it | |
1912 | to a hardware one -- count resources as if B was of | |
1913 | hardware watchpoint type. */ | |
1914 | type = b->base.type; | |
1915 | if (type == bp_watchpoint) | |
1916 | type = bp_hardware_watchpoint; | |
1917 | ||
1918 | /* This watchpoint may or may not have been placed on | |
1919 | the list yet at this point (it won't be in the list | |
1920 | if we're trying to create it for the first time, | |
1921 | through watch_command), so always account for it | |
1922 | manually. */ | |
1923 | ||
1924 | /* Count resources used by all watchpoints except B. */ | |
1925 | i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used); | |
1926 | ||
1927 | /* Add in the resources needed for B. */ | |
1928 | i += hw_watchpoint_use_count (&b->base); | |
1929 | ||
1930 | target_resources_ok | |
1931 | = target_can_use_hardware_watchpoint (type, i, other_type_used); | |
e09342b5 | 1932 | if (target_resources_ok <= 0) |
a9634178 | 1933 | { |
3a5c3e22 | 1934 | int sw_mode = b->base.ops->works_in_software_mode (&b->base); |
9c06b0b4 TJB |
1935 | |
1936 | if (target_resources_ok == 0 && !sw_mode) | |
a9634178 TJB |
1937 | error (_("Target does not support this type of " |
1938 | "hardware watchpoint.")); | |
9c06b0b4 TJB |
1939 | else if (target_resources_ok < 0 && !sw_mode) |
1940 | error (_("There are not enough available hardware " | |
1941 | "resources for this watchpoint.")); | |
a1398e0c PA |
1942 | |
1943 | /* Downgrade to software watchpoint. */ | |
1944 | b->base.type = bp_watchpoint; | |
1945 | } | |
1946 | else | |
1947 | { | |
1948 | /* If this was a software watchpoint, we've just | |
1949 | found we have enough resources to turn it to a | |
1950 | hardware watchpoint. Otherwise, this is a | |
1951 | nop. */ | |
1952 | b->base.type = type; | |
a9634178 | 1953 | } |
9fa40276 | 1954 | } |
3a5c3e22 | 1955 | else if (!b->base.ops->works_in_software_mode (&b->base)) |
a9634178 TJB |
1956 | error (_("Expression cannot be implemented with " |
1957 | "read/access watchpoint.")); | |
9fa40276 | 1958 | else |
3a5c3e22 | 1959 | b->base.type = bp_watchpoint; |
9fa40276 | 1960 | |
3a5c3e22 | 1961 | loc_type = (b->base.type == bp_watchpoint? bp_loc_other |
9fa40276 | 1962 | : bp_loc_hardware_watchpoint); |
3a5c3e22 | 1963 | for (bl = b->base.loc; bl; bl = bl->next) |
9fa40276 TJB |
1964 | bl->loc_type = loc_type; |
1965 | } | |
1966 | ||
1967 | for (v = val_chain; v; v = next) | |
1968 | { | |
a5606eee VP |
1969 | next = value_next (v); |
1970 | if (v != b->val) | |
1971 | value_free (v); | |
1972 | } | |
1973 | ||
c7437ca6 PA |
1974 | /* If a software watchpoint is not watching any memory, then the |
1975 | above left it without any location set up. But, | |
1976 | bpstat_stop_status requires a location to be able to report | |
1977 | stops, so make sure there's at least a dummy one. */ | |
3a5c3e22 | 1978 | if (b->base.type == bp_watchpoint && b->base.loc == NULL) |
c7437ca6 | 1979 | { |
3a5c3e22 PA |
1980 | struct breakpoint *base = &b->base; |
1981 | base->loc = allocate_bp_location (base); | |
1982 | base->loc->pspace = frame_pspace; | |
1983 | base->loc->address = -1; | |
1984 | base->loc->length = -1; | |
1985 | base->loc->watchpoint_type = -1; | |
c7437ca6 | 1986 | } |
a5606eee VP |
1987 | } |
1988 | else if (!within_current_scope) | |
7270d8f2 | 1989 | { |
ac74f770 MS |
1990 | printf_filtered (_("\ |
1991 | Watchpoint %d deleted because the program has left the block\n\ | |
1992 | in which its expression is valid.\n"), | |
3a5c3e22 | 1993 | b->base.number); |
d0fb5eae | 1994 | watchpoint_del_at_next_stop (b); |
7270d8f2 | 1995 | } |
a5606eee VP |
1996 | |
1997 | /* Restore the selected frame. */ | |
66076460 DJ |
1998 | if (frame_saved) |
1999 | select_frame (frame_find_by_id (saved_frame_id)); | |
7270d8f2 OF |
2000 | } |
2001 | ||
a5606eee | 2002 | |
74960c60 | 2003 | /* Returns 1 iff breakpoint location should be |
1e4d1764 YQ |
2004 | inserted in the inferior. We don't differentiate the type of BL's owner |
2005 | (breakpoint vs. tracepoint), although insert_location in tracepoint's | |
2006 | breakpoint_ops is not defined, because in insert_bp_location, | |
2007 | tracepoint's insert_location will not be called. */ | |
74960c60 | 2008 | static int |
35df4500 | 2009 | should_be_inserted (struct bp_location *bl) |
74960c60 | 2010 | { |
35df4500 | 2011 | if (bl->owner == NULL || !breakpoint_enabled (bl->owner)) |
74960c60 VP |
2012 | return 0; |
2013 | ||
35df4500 | 2014 | if (bl->owner->disposition == disp_del_at_next_stop) |
74960c60 VP |
2015 | return 0; |
2016 | ||
35df4500 | 2017 | if (!bl->enabled || bl->shlib_disabled || bl->duplicate) |
74960c60 VP |
2018 | return 0; |
2019 | ||
f8eba3c6 TT |
2020 | if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup) |
2021 | return 0; | |
2022 | ||
56710373 PA |
2023 | /* This is set for example, when we're attached to the parent of a |
2024 | vfork, and have detached from the child. The child is running | |
2025 | free, and we expect it to do an exec or exit, at which point the | |
2026 | OS makes the parent schedulable again (and the target reports | |
2027 | that the vfork is done). Until the child is done with the shared | |
2028 | memory region, do not insert breakpoints in the parent, otherwise | |
2029 | the child could still trip on the parent's breakpoints. Since | |
2030 | the parent is blocked anyway, it won't miss any breakpoint. */ | |
35df4500 | 2031 | if (bl->pspace->breakpoints_not_allowed) |
56710373 PA |
2032 | return 0; |
2033 | ||
74960c60 VP |
2034 | return 1; |
2035 | } | |
2036 | ||
934709f0 PW |
2037 | /* Same as should_be_inserted but does the check assuming |
2038 | that the location is not duplicated. */ | |
2039 | ||
2040 | static int | |
2041 | unduplicated_should_be_inserted (struct bp_location *bl) | |
2042 | { | |
2043 | int result; | |
2044 | const int save_duplicate = bl->duplicate; | |
2045 | ||
2046 | bl->duplicate = 0; | |
2047 | result = should_be_inserted (bl); | |
2048 | bl->duplicate = save_duplicate; | |
2049 | return result; | |
2050 | } | |
2051 | ||
b775012e LM |
2052 | /* Parses a conditional described by an expression COND into an |
2053 | agent expression bytecode suitable for evaluation | |
2054 | by the bytecode interpreter. Return NULL if there was | |
2055 | any error during parsing. */ | |
2056 | ||
2057 | static struct agent_expr * | |
2058 | parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond) | |
2059 | { | |
2060 | struct agent_expr *aexpr = NULL; | |
b775012e LM |
2061 | volatile struct gdb_exception ex; |
2062 | ||
2063 | if (!cond) | |
2064 | return NULL; | |
2065 | ||
2066 | /* We don't want to stop processing, so catch any errors | |
2067 | that may show up. */ | |
2068 | TRY_CATCH (ex, RETURN_MASK_ERROR) | |
2069 | { | |
2070 | aexpr = gen_eval_for_expr (scope, cond); | |
2071 | } | |
2072 | ||
2073 | if (ex.reason < 0) | |
2074 | { | |
2075 | /* If we got here, it means the condition could not be parsed to a valid | |
2076 | bytecode expression and thus can't be evaluated on the target's side. | |
2077 | It's no use iterating through the conditions. */ | |
2078 | return NULL; | |
2079 | } | |
2080 | ||
2081 | /* We have a valid agent expression. */ | |
2082 | return aexpr; | |
2083 | } | |
2084 | ||
2085 | /* Based on location BL, create a list of breakpoint conditions to be | |
2086 | passed on to the target. If we have duplicated locations with different | |
2087 | conditions, we will add such conditions to the list. The idea is that the | |
2088 | target will evaluate the list of conditions and will only notify GDB when | |
2089 | one of them is true. */ | |
2090 | ||
2091 | static void | |
2092 | build_target_condition_list (struct bp_location *bl) | |
2093 | { | |
2094 | struct bp_location **locp = NULL, **loc2p; | |
2095 | int null_condition_or_parse_error = 0; | |
2096 | int modified = bl->needs_update; | |
2097 | struct bp_location *loc; | |
2098 | ||
2099 | /* This is only meaningful if the target is | |
2100 | evaluating conditions and if the user has | |
2101 | opted for condition evaluation on the target's | |
2102 | side. */ | |
2103 | if (gdb_evaluates_breakpoint_condition_p () | |
2104 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
2105 | return; | |
2106 | ||
2107 | /* Do a first pass to check for locations with no assigned | |
2108 | conditions or conditions that fail to parse to a valid agent expression | |
2109 | bytecode. If any of these happen, then it's no use to send conditions | |
2110 | to the target since this location will always trigger and generate a | |
2111 | response back to GDB. */ | |
2112 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2113 | { | |
2114 | loc = (*loc2p); | |
2115 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2116 | { | |
2117 | if (modified) | |
2118 | { | |
2119 | struct agent_expr *aexpr; | |
2120 | ||
2121 | /* Re-parse the conditions since something changed. In that | |
2122 | case we already freed the condition bytecodes (see | |
2123 | force_breakpoint_reinsertion). We just | |
2124 | need to parse the condition to bytecodes again. */ | |
2125 | aexpr = parse_cond_to_aexpr (bl->address, loc->cond); | |
2126 | loc->cond_bytecode = aexpr; | |
2127 | ||
2128 | /* Check if we managed to parse the conditional expression | |
2129 | correctly. If not, we will not send this condition | |
2130 | to the target. */ | |
2131 | if (aexpr) | |
2132 | continue; | |
2133 | } | |
2134 | ||
2135 | /* If we have a NULL bytecode expression, it means something | |
2136 | went wrong or we have a null condition expression. */ | |
2137 | if (!loc->cond_bytecode) | |
2138 | { | |
2139 | null_condition_or_parse_error = 1; | |
2140 | break; | |
2141 | } | |
2142 | } | |
2143 | } | |
2144 | ||
2145 | /* If any of these happened, it means we will have to evaluate the conditions | |
2146 | for the location's address on gdb's side. It is no use keeping bytecodes | |
2147 | for all the other duplicate locations, thus we free all of them here. | |
2148 | ||
2149 | This is so we have a finer control over which locations' conditions are | |
2150 | being evaluated by GDB or the remote stub. */ | |
2151 | if (null_condition_or_parse_error) | |
2152 | { | |
2153 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2154 | { | |
2155 | loc = (*loc2p); | |
2156 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2157 | { | |
2158 | /* Only go as far as the first NULL bytecode is | |
2159 | located. */ | |
2160 | if (!loc->cond_bytecode) | |
2161 | return; | |
2162 | ||
2163 | free_agent_expr (loc->cond_bytecode); | |
2164 | loc->cond_bytecode = NULL; | |
2165 | } | |
2166 | } | |
2167 | } | |
2168 | ||
2169 | /* No NULL conditions or failed bytecode generation. Build a condition list | |
2170 | for this location's address. */ | |
2171 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2172 | { | |
2173 | loc = (*loc2p); | |
2174 | if (loc->cond | |
2175 | && is_breakpoint (loc->owner) | |
2176 | && loc->pspace->num == bl->pspace->num | |
2177 | && loc->owner->enable_state == bp_enabled | |
2178 | && loc->enabled) | |
2179 | /* Add the condition to the vector. This will be used later to send the | |
2180 | conditions to the target. */ | |
2181 | VEC_safe_push (agent_expr_p, bl->target_info.conditions, | |
2182 | loc->cond_bytecode); | |
2183 | } | |
2184 | ||
2185 | return; | |
2186 | } | |
2187 | ||
d3ce09f5 SS |
2188 | /* Parses a command described by string CMD into an agent expression |
2189 | bytecode suitable for evaluation by the bytecode interpreter. | |
2190 | Return NULL if there was any error during parsing. */ | |
2191 | ||
2192 | static struct agent_expr * | |
2193 | parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd) | |
2194 | { | |
2195 | struct cleanup *old_cleanups = 0; | |
2196 | struct expression *expr, **argvec; | |
2197 | struct agent_expr *aexpr = NULL; | |
d3ce09f5 | 2198 | volatile struct gdb_exception ex; |
bbc13ae3 KS |
2199 | const char *cmdrest; |
2200 | const char *format_start, *format_end; | |
d3ce09f5 SS |
2201 | struct format_piece *fpieces; |
2202 | int nargs; | |
2203 | struct gdbarch *gdbarch = get_current_arch (); | |
2204 | ||
2205 | if (!cmd) | |
2206 | return NULL; | |
2207 | ||
2208 | cmdrest = cmd; | |
2209 | ||
2210 | if (*cmdrest == ',') | |
2211 | ++cmdrest; | |
bbc13ae3 | 2212 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2213 | |
2214 | if (*cmdrest++ != '"') | |
2215 | error (_("No format string following the location")); | |
2216 | ||
2217 | format_start = cmdrest; | |
2218 | ||
2219 | fpieces = parse_format_string (&cmdrest); | |
2220 | ||
2221 | old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces); | |
2222 | ||
2223 | format_end = cmdrest; | |
2224 | ||
2225 | if (*cmdrest++ != '"') | |
2226 | error (_("Bad format string, non-terminated '\"'.")); | |
2227 | ||
bbc13ae3 | 2228 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2229 | |
2230 | if (!(*cmdrest == ',' || *cmdrest == '\0')) | |
2231 | error (_("Invalid argument syntax")); | |
2232 | ||
2233 | if (*cmdrest == ',') | |
2234 | cmdrest++; | |
bbc13ae3 | 2235 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2236 | |
2237 | /* For each argument, make an expression. */ | |
2238 | ||
2239 | argvec = (struct expression **) alloca (strlen (cmd) | |
2240 | * sizeof (struct expression *)); | |
2241 | ||
2242 | nargs = 0; | |
2243 | while (*cmdrest != '\0') | |
2244 | { | |
bbc13ae3 | 2245 | const char *cmd1; |
d3ce09f5 SS |
2246 | |
2247 | cmd1 = cmdrest; | |
2248 | expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1); | |
2249 | argvec[nargs++] = expr; | |
2250 | cmdrest = cmd1; | |
2251 | if (*cmdrest == ',') | |
2252 | ++cmdrest; | |
2253 | } | |
2254 | ||
2255 | /* We don't want to stop processing, so catch any errors | |
2256 | that may show up. */ | |
2257 | TRY_CATCH (ex, RETURN_MASK_ERROR) | |
2258 | { | |
2259 | aexpr = gen_printf (scope, gdbarch, 0, 0, | |
2260 | format_start, format_end - format_start, | |
2261 | fpieces, nargs, argvec); | |
2262 | } | |
2263 | ||
2264 | if (ex.reason < 0) | |
2265 | { | |
2266 | /* If we got here, it means the command could not be parsed to a valid | |
2267 | bytecode expression and thus can't be evaluated on the target's side. | |
2268 | It's no use iterating through the other commands. */ | |
2269 | return NULL; | |
2270 | } | |
2271 | ||
2272 | do_cleanups (old_cleanups); | |
2273 | ||
2274 | /* We have a valid agent expression, return it. */ | |
2275 | return aexpr; | |
2276 | } | |
2277 | ||
2278 | /* Based on location BL, create a list of breakpoint commands to be | |
2279 | passed on to the target. If we have duplicated locations with | |
2280 | different commands, we will add any such to the list. */ | |
2281 | ||
2282 | static void | |
2283 | build_target_command_list (struct bp_location *bl) | |
2284 | { | |
2285 | struct bp_location **locp = NULL, **loc2p; | |
2286 | int null_command_or_parse_error = 0; | |
2287 | int modified = bl->needs_update; | |
2288 | struct bp_location *loc; | |
2289 | ||
2290 | /* For now, limit to agent-style dprintf breakpoints. */ | |
2291 | if (bl->owner->type != bp_dprintf | |
2292 | || strcmp (dprintf_style, dprintf_style_agent) != 0) | |
2293 | return; | |
2294 | ||
2295 | if (!target_can_run_breakpoint_commands ()) | |
2296 | return; | |
2297 | ||
2298 | /* Do a first pass to check for locations with no assigned | |
2299 | conditions or conditions that fail to parse to a valid agent expression | |
2300 | bytecode. If any of these happen, then it's no use to send conditions | |
2301 | to the target since this location will always trigger and generate a | |
2302 | response back to GDB. */ | |
2303 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2304 | { | |
2305 | loc = (*loc2p); | |
2306 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2307 | { | |
2308 | if (modified) | |
2309 | { | |
2310 | struct agent_expr *aexpr; | |
2311 | ||
2312 | /* Re-parse the commands since something changed. In that | |
2313 | case we already freed the command bytecodes (see | |
2314 | force_breakpoint_reinsertion). We just | |
2315 | need to parse the command to bytecodes again. */ | |
2316 | aexpr = parse_cmd_to_aexpr (bl->address, | |
2317 | loc->owner->extra_string); | |
2318 | loc->cmd_bytecode = aexpr; | |
2319 | ||
2320 | if (!aexpr) | |
2321 | continue; | |
2322 | } | |
2323 | ||
2324 | /* If we have a NULL bytecode expression, it means something | |
2325 | went wrong or we have a null command expression. */ | |
2326 | if (!loc->cmd_bytecode) | |
2327 | { | |
2328 | null_command_or_parse_error = 1; | |
2329 | break; | |
2330 | } | |
2331 | } | |
2332 | } | |
2333 | ||
2334 | /* If anything failed, then we're not doing target-side commands, | |
2335 | and so clean up. */ | |
2336 | if (null_command_or_parse_error) | |
2337 | { | |
2338 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2339 | { | |
2340 | loc = (*loc2p); | |
2341 | if (is_breakpoint (loc->owner) | |
2342 | && loc->pspace->num == bl->pspace->num) | |
2343 | { | |
2344 | /* Only go as far as the first NULL bytecode is | |
2345 | located. */ | |
2346 | if (!loc->cond_bytecode) | |
2347 | return; | |
2348 | ||
2349 | free_agent_expr (loc->cond_bytecode); | |
2350 | loc->cond_bytecode = NULL; | |
2351 | } | |
2352 | } | |
2353 | } | |
2354 | ||
2355 | /* No NULL commands or failed bytecode generation. Build a command list | |
2356 | for this location's address. */ | |
2357 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2358 | { | |
2359 | loc = (*loc2p); | |
2360 | if (loc->owner->extra_string | |
2361 | && is_breakpoint (loc->owner) | |
2362 | && loc->pspace->num == bl->pspace->num | |
2363 | && loc->owner->enable_state == bp_enabled | |
2364 | && loc->enabled) | |
2365 | /* Add the command to the vector. This will be used later | |
2366 | to send the commands to the target. */ | |
2367 | VEC_safe_push (agent_expr_p, bl->target_info.tcommands, | |
2368 | loc->cmd_bytecode); | |
2369 | } | |
2370 | ||
2371 | bl->target_info.persist = 0; | |
2372 | /* Maybe flag this location as persistent. */ | |
2373 | if (bl->owner->type == bp_dprintf && disconnected_dprintf) | |
2374 | bl->target_info.persist = 1; | |
2375 | } | |
2376 | ||
35df4500 TJB |
2377 | /* Insert a low-level "breakpoint" of some type. BL is the breakpoint |
2378 | location. Any error messages are printed to TMP_ERROR_STREAM; and | |
3fbb6ffa | 2379 | DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems. |
c30eee59 TJB |
2380 | Returns 0 for success, 1 if the bp_location type is not supported or |
2381 | -1 for failure. | |
879bfdc2 | 2382 | |
4a64f543 MS |
2383 | NOTE drow/2003-09-09: This routine could be broken down to an |
2384 | object-style method for each breakpoint or catchpoint type. */ | |
26bb91f3 | 2385 | static int |
35df4500 | 2386 | insert_bp_location (struct bp_location *bl, |
26bb91f3 | 2387 | struct ui_file *tmp_error_stream, |
3fbb6ffa | 2388 | int *disabled_breaks, |
dd61ec5c MW |
2389 | int *hw_breakpoint_error, |
2390 | int *hw_bp_error_explained_already) | |
879bfdc2 DJ |
2391 | { |
2392 | int val = 0; | |
dd61ec5c MW |
2393 | char *hw_bp_err_string = NULL; |
2394 | struct gdb_exception e; | |
879bfdc2 | 2395 | |
b775012e | 2396 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2397 | return 0; |
2398 | ||
35c63cd8 JB |
2399 | /* Note we don't initialize bl->target_info, as that wipes out |
2400 | the breakpoint location's shadow_contents if the breakpoint | |
2401 | is still inserted at that location. This in turn breaks | |
2402 | target_read_memory which depends on these buffers when | |
2403 | a memory read is requested at the breakpoint location: | |
2404 | Once the target_info has been wiped, we fail to see that | |
2405 | we have a breakpoint inserted at that address and thus | |
2406 | read the breakpoint instead of returning the data saved in | |
2407 | the breakpoint location's shadow contents. */ | |
35df4500 TJB |
2408 | bl->target_info.placed_address = bl->address; |
2409 | bl->target_info.placed_address_space = bl->pspace->aspace; | |
f1310107 | 2410 | bl->target_info.length = bl->length; |
8181d85f | 2411 | |
b775012e LM |
2412 | /* When working with target-side conditions, we must pass all the conditions |
2413 | for the same breakpoint address down to the target since GDB will not | |
2414 | insert those locations. With a list of breakpoint conditions, the target | |
2415 | can decide when to stop and notify GDB. */ | |
2416 | ||
2417 | if (is_breakpoint (bl->owner)) | |
2418 | { | |
2419 | build_target_condition_list (bl); | |
d3ce09f5 SS |
2420 | build_target_command_list (bl); |
2421 | /* Reset the modification marker. */ | |
b775012e LM |
2422 | bl->needs_update = 0; |
2423 | } | |
2424 | ||
35df4500 TJB |
2425 | if (bl->loc_type == bp_loc_software_breakpoint |
2426 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
879bfdc2 | 2427 | { |
35df4500 | 2428 | if (bl->owner->type != bp_hardware_breakpoint) |
765dc015 VP |
2429 | { |
2430 | /* If the explicitly specified breakpoint type | |
2431 | is not hardware breakpoint, check the memory map to see | |
2432 | if the breakpoint address is in read only memory or not. | |
4a64f543 | 2433 | |
765dc015 VP |
2434 | Two important cases are: |
2435 | - location type is not hardware breakpoint, memory | |
2436 | is readonly. We change the type of the location to | |
2437 | hardware breakpoint. | |
4a64f543 MS |
2438 | - location type is hardware breakpoint, memory is |
2439 | read-write. This means we've previously made the | |
2440 | location hardware one, but then the memory map changed, | |
2441 | so we undo. | |
765dc015 | 2442 | |
4a64f543 MS |
2443 | When breakpoints are removed, remove_breakpoints will use |
2444 | location types we've just set here, the only possible | |
2445 | problem is that memory map has changed during running | |
2446 | program, but it's not going to work anyway with current | |
2447 | gdb. */ | |
765dc015 | 2448 | struct mem_region *mr |
35df4500 | 2449 | = lookup_mem_region (bl->target_info.placed_address); |
765dc015 VP |
2450 | |
2451 | if (mr) | |
2452 | { | |
2453 | if (automatic_hardware_breakpoints) | |
2454 | { | |
765dc015 VP |
2455 | enum bp_loc_type new_type; |
2456 | ||
2457 | if (mr->attrib.mode != MEM_RW) | |
2458 | new_type = bp_loc_hardware_breakpoint; | |
2459 | else | |
2460 | new_type = bp_loc_software_breakpoint; | |
2461 | ||
35df4500 | 2462 | if (new_type != bl->loc_type) |
765dc015 VP |
2463 | { |
2464 | static int said = 0; | |
cc59ec59 | 2465 | |
35df4500 | 2466 | bl->loc_type = new_type; |
765dc015 VP |
2467 | if (!said) |
2468 | { | |
3e43a32a MS |
2469 | fprintf_filtered (gdb_stdout, |
2470 | _("Note: automatically using " | |
2471 | "hardware breakpoints for " | |
2472 | "read-only addresses.\n")); | |
765dc015 VP |
2473 | said = 1; |
2474 | } | |
2475 | } | |
2476 | } | |
35df4500 | 2477 | else if (bl->loc_type == bp_loc_software_breakpoint |
765dc015 | 2478 | && mr->attrib.mode != MEM_RW) |
3e43a32a MS |
2479 | warning (_("cannot set software breakpoint " |
2480 | "at readonly address %s"), | |
35df4500 | 2481 | paddress (bl->gdbarch, bl->address)); |
765dc015 VP |
2482 | } |
2483 | } | |
2484 | ||
879bfdc2 DJ |
2485 | /* First check to see if we have to handle an overlay. */ |
2486 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
2487 | || bl->section == NULL |
2488 | || !(section_is_overlay (bl->section))) | |
879bfdc2 DJ |
2489 | { |
2490 | /* No overlay handling: just set the breakpoint. */ | |
dd61ec5c MW |
2491 | TRY_CATCH (e, RETURN_MASK_ALL) |
2492 | { | |
2493 | val = bl->owner->ops->insert_location (bl); | |
2494 | } | |
2495 | if (e.reason < 0) | |
2496 | { | |
2497 | val = 1; | |
2498 | hw_bp_err_string = (char *) e.message; | |
2499 | } | |
879bfdc2 DJ |
2500 | } |
2501 | else | |
2502 | { | |
4a64f543 | 2503 | /* This breakpoint is in an overlay section. |
879bfdc2 DJ |
2504 | Shall we set a breakpoint at the LMA? */ |
2505 | if (!overlay_events_enabled) | |
2506 | { | |
2507 | /* Yes -- overlay event support is not active, | |
2508 | so we must try to set a breakpoint at the LMA. | |
2509 | This will not work for a hardware breakpoint. */ | |
35df4500 | 2510 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
8a3fe4f8 | 2511 | warning (_("hardware breakpoint %d not supported in overlay!"), |
35df4500 | 2512 | bl->owner->number); |
879bfdc2 DJ |
2513 | else |
2514 | { | |
35df4500 TJB |
2515 | CORE_ADDR addr = overlay_unmapped_address (bl->address, |
2516 | bl->section); | |
879bfdc2 | 2517 | /* Set a software (trap) breakpoint at the LMA. */ |
35df4500 TJB |
2518 | bl->overlay_target_info = bl->target_info; |
2519 | bl->overlay_target_info.placed_address = addr; | |
2520 | val = target_insert_breakpoint (bl->gdbarch, | |
2521 | &bl->overlay_target_info); | |
879bfdc2 | 2522 | if (val != 0) |
99361f52 | 2523 | fprintf_unfiltered (tmp_error_stream, |
3e43a32a MS |
2524 | "Overlay breakpoint %d " |
2525 | "failed: in ROM?\n", | |
35df4500 | 2526 | bl->owner->number); |
879bfdc2 DJ |
2527 | } |
2528 | } | |
2529 | /* Shall we set a breakpoint at the VMA? */ | |
35df4500 | 2530 | if (section_is_mapped (bl->section)) |
879bfdc2 DJ |
2531 | { |
2532 | /* Yes. This overlay section is mapped into memory. */ | |
dd61ec5c MW |
2533 | TRY_CATCH (e, RETURN_MASK_ALL) |
2534 | { | |
2535 | val = bl->owner->ops->insert_location (bl); | |
2536 | } | |
2537 | if (e.reason < 0) | |
2538 | { | |
2539 | val = 1; | |
2540 | hw_bp_err_string = (char *) e.message; | |
2541 | } | |
879bfdc2 DJ |
2542 | } |
2543 | else | |
2544 | { | |
2545 | /* No. This breakpoint will not be inserted. | |
2546 | No error, but do not mark the bp as 'inserted'. */ | |
2547 | return 0; | |
2548 | } | |
2549 | } | |
2550 | ||
2551 | if (val) | |
2552 | { | |
2553 | /* Can't set the breakpoint. */ | |
35df4500 | 2554 | if (solib_name_from_address (bl->pspace, bl->address)) |
879bfdc2 | 2555 | { |
4a64f543 | 2556 | /* See also: disable_breakpoints_in_shlibs. */ |
879bfdc2 | 2557 | val = 0; |
35df4500 | 2558 | bl->shlib_disabled = 1; |
8d3788bd | 2559 | observer_notify_breakpoint_modified (bl->owner); |
3fbb6ffa TJB |
2560 | if (!*disabled_breaks) |
2561 | { | |
2562 | fprintf_unfiltered (tmp_error_stream, | |
2563 | "Cannot insert breakpoint %d.\n", | |
2564 | bl->owner->number); | |
2565 | fprintf_unfiltered (tmp_error_stream, | |
2566 | "Temporarily disabling shared " | |
2567 | "library breakpoints:\n"); | |
2568 | } | |
2569 | *disabled_breaks = 1; | |
879bfdc2 | 2570 | fprintf_unfiltered (tmp_error_stream, |
35df4500 | 2571 | "breakpoint #%d\n", bl->owner->number); |
879bfdc2 DJ |
2572 | } |
2573 | else | |
879bfdc2 | 2574 | { |
35df4500 | 2575 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
879bfdc2 | 2576 | { |
dd61ec5c MW |
2577 | *hw_breakpoint_error = 1; |
2578 | *hw_bp_error_explained_already = hw_bp_err_string != NULL; | |
2579 | fprintf_unfiltered (tmp_error_stream, | |
2580 | "Cannot insert hardware breakpoint %d%s", | |
2581 | bl->owner->number, hw_bp_err_string ? ":" : ".\n"); | |
2582 | if (hw_bp_err_string) | |
2583 | fprintf_unfiltered (tmp_error_stream, "%s.\n", hw_bp_err_string); | |
879bfdc2 DJ |
2584 | } |
2585 | else | |
2586 | { | |
2587 | fprintf_unfiltered (tmp_error_stream, | |
2588 | "Cannot insert breakpoint %d.\n", | |
35df4500 | 2589 | bl->owner->number); |
879bfdc2 DJ |
2590 | fprintf_filtered (tmp_error_stream, |
2591 | "Error accessing memory address "); | |
35df4500 | 2592 | fputs_filtered (paddress (bl->gdbarch, bl->address), |
5af949e3 | 2593 | tmp_error_stream); |
879bfdc2 DJ |
2594 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
2595 | safe_strerror (val)); | |
2596 | } | |
2597 | ||
2598 | } | |
2599 | } | |
2600 | else | |
35df4500 | 2601 | bl->inserted = 1; |
879bfdc2 DJ |
2602 | |
2603 | return val; | |
2604 | } | |
2605 | ||
35df4500 | 2606 | else if (bl->loc_type == bp_loc_hardware_watchpoint |
879bfdc2 | 2607 | /* NOTE drow/2003-09-08: This state only exists for removing |
4a64f543 | 2608 | watchpoints. It's not clear that it's necessary... */ |
35df4500 | 2609 | && bl->owner->disposition != disp_del_at_next_stop) |
879bfdc2 | 2610 | { |
77b06cd7 TJB |
2611 | gdb_assert (bl->owner->ops != NULL |
2612 | && bl->owner->ops->insert_location != NULL); | |
2613 | ||
2614 | val = bl->owner->ops->insert_location (bl); | |
85d721b8 PA |
2615 | |
2616 | /* If trying to set a read-watchpoint, and it turns out it's not | |
2617 | supported, try emulating one with an access watchpoint. */ | |
35df4500 | 2618 | if (val == 1 && bl->watchpoint_type == hw_read) |
85d721b8 PA |
2619 | { |
2620 | struct bp_location *loc, **loc_temp; | |
2621 | ||
2622 | /* But don't try to insert it, if there's already another | |
2623 | hw_access location that would be considered a duplicate | |
2624 | of this one. */ | |
2625 | ALL_BP_LOCATIONS (loc, loc_temp) | |
35df4500 | 2626 | if (loc != bl |
85d721b8 | 2627 | && loc->watchpoint_type == hw_access |
35df4500 | 2628 | && watchpoint_locations_match (bl, loc)) |
85d721b8 | 2629 | { |
35df4500 TJB |
2630 | bl->duplicate = 1; |
2631 | bl->inserted = 1; | |
2632 | bl->target_info = loc->target_info; | |
2633 | bl->watchpoint_type = hw_access; | |
85d721b8 PA |
2634 | val = 0; |
2635 | break; | |
2636 | } | |
2637 | ||
2638 | if (val == 1) | |
2639 | { | |
77b06cd7 TJB |
2640 | bl->watchpoint_type = hw_access; |
2641 | val = bl->owner->ops->insert_location (bl); | |
2642 | ||
2643 | if (val) | |
2644 | /* Back to the original value. */ | |
2645 | bl->watchpoint_type = hw_read; | |
85d721b8 PA |
2646 | } |
2647 | } | |
2648 | ||
35df4500 | 2649 | bl->inserted = (val == 0); |
879bfdc2 DJ |
2650 | } |
2651 | ||
35df4500 | 2652 | else if (bl->owner->type == bp_catchpoint) |
879bfdc2 | 2653 | { |
77b06cd7 TJB |
2654 | gdb_assert (bl->owner->ops != NULL |
2655 | && bl->owner->ops->insert_location != NULL); | |
2656 | ||
2657 | val = bl->owner->ops->insert_location (bl); | |
2658 | if (val) | |
2659 | { | |
2660 | bl->owner->enable_state = bp_disabled; | |
2661 | ||
2662 | if (val == 1) | |
2663 | warning (_("\ | |
2664 | Error inserting catchpoint %d: Your system does not support this type\n\ | |
2665 | of catchpoint."), bl->owner->number); | |
2666 | else | |
2667 | warning (_("Error inserting catchpoint %d."), bl->owner->number); | |
2668 | } | |
2669 | ||
2670 | bl->inserted = (val == 0); | |
1640b821 DJ |
2671 | |
2672 | /* We've already printed an error message if there was a problem | |
2673 | inserting this catchpoint, and we've disabled the catchpoint, | |
2674 | so just return success. */ | |
2675 | return 0; | |
879bfdc2 DJ |
2676 | } |
2677 | ||
2678 | return 0; | |
2679 | } | |
2680 | ||
6c95b8df PA |
2681 | /* This function is called when program space PSPACE is about to be |
2682 | deleted. It takes care of updating breakpoints to not reference | |
2683 | PSPACE anymore. */ | |
2684 | ||
2685 | void | |
2686 | breakpoint_program_space_exit (struct program_space *pspace) | |
2687 | { | |
2688 | struct breakpoint *b, *b_temp; | |
876fa593 | 2689 | struct bp_location *loc, **loc_temp; |
6c95b8df PA |
2690 | |
2691 | /* Remove any breakpoint that was set through this program space. */ | |
2692 | ALL_BREAKPOINTS_SAFE (b, b_temp) | |
2693 | { | |
2694 | if (b->pspace == pspace) | |
2695 | delete_breakpoint (b); | |
2696 | } | |
2697 | ||
2698 | /* Breakpoints set through other program spaces could have locations | |
2699 | bound to PSPACE as well. Remove those. */ | |
876fa593 | 2700 | ALL_BP_LOCATIONS (loc, loc_temp) |
6c95b8df PA |
2701 | { |
2702 | struct bp_location *tmp; | |
2703 | ||
2704 | if (loc->pspace == pspace) | |
2705 | { | |
2bdf28a0 | 2706 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
6c95b8df PA |
2707 | if (loc->owner->loc == loc) |
2708 | loc->owner->loc = loc->next; | |
2709 | else | |
2710 | for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next) | |
2711 | if (tmp->next == loc) | |
2712 | { | |
2713 | tmp->next = loc->next; | |
2714 | break; | |
2715 | } | |
2716 | } | |
2717 | } | |
2718 | ||
2719 | /* Now update the global location list to permanently delete the | |
2720 | removed locations above. */ | |
2721 | update_global_location_list (0); | |
2722 | } | |
2723 | ||
74960c60 VP |
2724 | /* Make sure all breakpoints are inserted in inferior. |
2725 | Throws exception on any error. | |
2726 | A breakpoint that is already inserted won't be inserted | |
2727 | again, so calling this function twice is safe. */ | |
2728 | void | |
2729 | insert_breakpoints (void) | |
2730 | { | |
2731 | struct breakpoint *bpt; | |
2732 | ||
2733 | ALL_BREAKPOINTS (bpt) | |
2734 | if (is_hardware_watchpoint (bpt)) | |
3a5c3e22 PA |
2735 | { |
2736 | struct watchpoint *w = (struct watchpoint *) bpt; | |
2737 | ||
2738 | update_watchpoint (w, 0 /* don't reparse. */); | |
2739 | } | |
74960c60 | 2740 | |
b60e7edf | 2741 | update_global_location_list (1); |
74960c60 | 2742 | |
c35b1492 PA |
2743 | /* update_global_location_list does not insert breakpoints when |
2744 | always_inserted_mode is not enabled. Explicitly insert them | |
2745 | now. */ | |
2746 | if (!breakpoints_always_inserted_mode ()) | |
74960c60 VP |
2747 | insert_breakpoint_locations (); |
2748 | } | |
2749 | ||
20388dd6 YQ |
2750 | /* Invoke CALLBACK for each of bp_location. */ |
2751 | ||
2752 | void | |
2753 | iterate_over_bp_locations (walk_bp_location_callback callback) | |
2754 | { | |
2755 | struct bp_location *loc, **loc_tmp; | |
2756 | ||
2757 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
2758 | { | |
2759 | callback (loc, NULL); | |
2760 | } | |
2761 | } | |
2762 | ||
b775012e LM |
2763 | /* This is used when we need to synch breakpoint conditions between GDB and the |
2764 | target. It is the case with deleting and disabling of breakpoints when using | |
2765 | always-inserted mode. */ | |
2766 | ||
2767 | static void | |
2768 | update_inserted_breakpoint_locations (void) | |
2769 | { | |
2770 | struct bp_location *bl, **blp_tmp; | |
2771 | int error_flag = 0; | |
2772 | int val = 0; | |
2773 | int disabled_breaks = 0; | |
2774 | int hw_breakpoint_error = 0; | |
dd61ec5c | 2775 | int hw_bp_details_reported = 0; |
b775012e LM |
2776 | |
2777 | struct ui_file *tmp_error_stream = mem_fileopen (); | |
2778 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); | |
2779 | ||
2780 | /* Explicitly mark the warning -- this will only be printed if | |
2781 | there was an error. */ | |
2782 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
2783 | ||
2784 | save_current_space_and_thread (); | |
2785 | ||
2786 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
2787 | { | |
2788 | /* We only want to update software breakpoints and hardware | |
2789 | breakpoints. */ | |
2790 | if (!is_breakpoint (bl->owner)) | |
2791 | continue; | |
2792 | ||
2793 | /* We only want to update locations that are already inserted | |
2794 | and need updating. This is to avoid unwanted insertion during | |
2795 | deletion of breakpoints. */ | |
2796 | if (!bl->inserted || (bl->inserted && !bl->needs_update)) | |
2797 | continue; | |
2798 | ||
2799 | switch_to_program_space_and_thread (bl->pspace); | |
2800 | ||
2801 | /* For targets that support global breakpoints, there's no need | |
2802 | to select an inferior to insert breakpoint to. In fact, even | |
2803 | if we aren't attached to any process yet, we should still | |
2804 | insert breakpoints. */ | |
f5656ead | 2805 | if (!gdbarch_has_global_breakpoints (target_gdbarch ()) |
b775012e LM |
2806 | && ptid_equal (inferior_ptid, null_ptid)) |
2807 | continue; | |
2808 | ||
2809 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, | |
dd61ec5c | 2810 | &hw_breakpoint_error, &hw_bp_details_reported); |
b775012e LM |
2811 | if (val) |
2812 | error_flag = val; | |
2813 | } | |
2814 | ||
2815 | if (error_flag) | |
2816 | { | |
2817 | target_terminal_ours_for_output (); | |
2818 | error_stream (tmp_error_stream); | |
2819 | } | |
2820 | ||
2821 | do_cleanups (cleanups); | |
2822 | } | |
2823 | ||
c30eee59 | 2824 | /* Used when starting or continuing the program. */ |
c906108c | 2825 | |
74960c60 VP |
2826 | static void |
2827 | insert_breakpoint_locations (void) | |
c906108c | 2828 | { |
a5606eee | 2829 | struct breakpoint *bpt; |
35df4500 | 2830 | struct bp_location *bl, **blp_tmp; |
eacd795a | 2831 | int error_flag = 0; |
c906108c | 2832 | int val = 0; |
3fbb6ffa | 2833 | int disabled_breaks = 0; |
81d0cc19 | 2834 | int hw_breakpoint_error = 0; |
dd61ec5c | 2835 | int hw_bp_error_explained_already = 0; |
c906108c | 2836 | |
81d0cc19 | 2837 | struct ui_file *tmp_error_stream = mem_fileopen (); |
f7545552 | 2838 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); |
74960c60 | 2839 | |
81d0cc19 GS |
2840 | /* Explicitly mark the warning -- this will only be printed if |
2841 | there was an error. */ | |
2842 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
6c95b8df PA |
2843 | |
2844 | save_current_space_and_thread (); | |
2845 | ||
35df4500 | 2846 | ALL_BP_LOCATIONS (bl, blp_tmp) |
879bfdc2 | 2847 | { |
b775012e | 2848 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2849 | continue; |
2850 | ||
4a64f543 MS |
2851 | /* There is no point inserting thread-specific breakpoints if |
2852 | the thread no longer exists. ALL_BP_LOCATIONS bp_location | |
2853 | has BL->OWNER always non-NULL. */ | |
35df4500 TJB |
2854 | if (bl->owner->thread != -1 |
2855 | && !valid_thread_id (bl->owner->thread)) | |
f365de73 AS |
2856 | continue; |
2857 | ||
35df4500 | 2858 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df PA |
2859 | |
2860 | /* For targets that support global breakpoints, there's no need | |
2861 | to select an inferior to insert breakpoint to. In fact, even | |
2862 | if we aren't attached to any process yet, we should still | |
2863 | insert breakpoints. */ | |
f5656ead | 2864 | if (!gdbarch_has_global_breakpoints (target_gdbarch ()) |
6c95b8df PA |
2865 | && ptid_equal (inferior_ptid, null_ptid)) |
2866 | continue; | |
2867 | ||
3fbb6ffa | 2868 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, |
dd61ec5c | 2869 | &hw_breakpoint_error, &hw_bp_error_explained_already); |
879bfdc2 | 2870 | if (val) |
eacd795a | 2871 | error_flag = val; |
879bfdc2 | 2872 | } |
c906108c | 2873 | |
4a64f543 MS |
2874 | /* If we failed to insert all locations of a watchpoint, remove |
2875 | them, as half-inserted watchpoint is of limited use. */ | |
a5606eee VP |
2876 | ALL_BREAKPOINTS (bpt) |
2877 | { | |
2878 | int some_failed = 0; | |
2879 | struct bp_location *loc; | |
2880 | ||
2881 | if (!is_hardware_watchpoint (bpt)) | |
2882 | continue; | |
2883 | ||
d6b74ac4 | 2884 | if (!breakpoint_enabled (bpt)) |
a5606eee | 2885 | continue; |
74960c60 VP |
2886 | |
2887 | if (bpt->disposition == disp_del_at_next_stop) | |
2888 | continue; | |
a5606eee VP |
2889 | |
2890 | for (loc = bpt->loc; loc; loc = loc->next) | |
56710373 | 2891 | if (!loc->inserted && should_be_inserted (loc)) |
a5606eee VP |
2892 | { |
2893 | some_failed = 1; | |
2894 | break; | |
2895 | } | |
2896 | if (some_failed) | |
2897 | { | |
2898 | for (loc = bpt->loc; loc; loc = loc->next) | |
2899 | if (loc->inserted) | |
2900 | remove_breakpoint (loc, mark_uninserted); | |
2901 | ||
2902 | hw_breakpoint_error = 1; | |
2903 | fprintf_unfiltered (tmp_error_stream, | |
2904 | "Could not insert hardware watchpoint %d.\n", | |
2905 | bpt->number); | |
eacd795a | 2906 | error_flag = -1; |
a5606eee VP |
2907 | } |
2908 | } | |
2909 | ||
eacd795a | 2910 | if (error_flag) |
81d0cc19 GS |
2911 | { |
2912 | /* If a hardware breakpoint or watchpoint was inserted, add a | |
2913 | message about possibly exhausted resources. */ | |
dd61ec5c | 2914 | if (hw_breakpoint_error && !hw_bp_error_explained_already) |
81d0cc19 | 2915 | { |
c6510018 MS |
2916 | fprintf_unfiltered (tmp_error_stream, |
2917 | "Could not insert hardware breakpoints:\n\ | |
2918 | You may have requested too many hardware breakpoints/watchpoints.\n"); | |
81d0cc19 | 2919 | } |
81d0cc19 GS |
2920 | target_terminal_ours_for_output (); |
2921 | error_stream (tmp_error_stream); | |
2922 | } | |
f7545552 TT |
2923 | |
2924 | do_cleanups (cleanups); | |
c906108c SS |
2925 | } |
2926 | ||
c30eee59 TJB |
2927 | /* Used when the program stops. |
2928 | Returns zero if successful, or non-zero if there was a problem | |
2929 | removing a breakpoint location. */ | |
2930 | ||
c906108c | 2931 | int |
fba45db2 | 2932 | remove_breakpoints (void) |
c906108c | 2933 | { |
35df4500 | 2934 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 2935 | int val = 0; |
c906108c | 2936 | |
35df4500 | 2937 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2938 | { |
1e4d1764 | 2939 | if (bl->inserted && !is_tracepoint (bl->owner)) |
35df4500 | 2940 | val |= remove_breakpoint (bl, mark_uninserted); |
c5aa993b | 2941 | } |
3a1bae8e | 2942 | return val; |
c906108c SS |
2943 | } |
2944 | ||
6c95b8df PA |
2945 | /* Remove breakpoints of process PID. */ |
2946 | ||
2947 | int | |
2948 | remove_breakpoints_pid (int pid) | |
2949 | { | |
35df4500 | 2950 | struct bp_location *bl, **blp_tmp; |
6c95b8df PA |
2951 | int val; |
2952 | struct inferior *inf = find_inferior_pid (pid); | |
2953 | ||
35df4500 | 2954 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 2955 | { |
35df4500 | 2956 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2957 | continue; |
2958 | ||
d3ce09f5 SS |
2959 | if (bl->owner->type == bp_dprintf) |
2960 | continue; | |
2961 | ||
35df4500 | 2962 | if (bl->inserted) |
6c95b8df | 2963 | { |
35df4500 | 2964 | val = remove_breakpoint (bl, mark_uninserted); |
6c95b8df PA |
2965 | if (val != 0) |
2966 | return val; | |
2967 | } | |
2968 | } | |
2969 | return 0; | |
2970 | } | |
2971 | ||
c906108c | 2972 | int |
fba45db2 | 2973 | reattach_breakpoints (int pid) |
c906108c | 2974 | { |
6c95b8df | 2975 | struct cleanup *old_chain; |
35df4500 | 2976 | struct bp_location *bl, **blp_tmp; |
c906108c | 2977 | int val; |
86b887df | 2978 | struct ui_file *tmp_error_stream; |
dd61ec5c | 2979 | int dummy1 = 0, dummy2 = 0, dummy3 = 0; |
6c95b8df PA |
2980 | struct inferior *inf; |
2981 | struct thread_info *tp; | |
2982 | ||
2983 | tp = any_live_thread_of_process (pid); | |
2984 | if (tp == NULL) | |
2985 | return 1; | |
2986 | ||
2987 | inf = find_inferior_pid (pid); | |
2988 | old_chain = save_inferior_ptid (); | |
2989 | ||
2990 | inferior_ptid = tp->ptid; | |
a4954f26 | 2991 | |
86b887df | 2992 | tmp_error_stream = mem_fileopen (); |
a4954f26 | 2993 | make_cleanup_ui_file_delete (tmp_error_stream); |
c906108c | 2994 | |
35df4500 | 2995 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2996 | { |
35df4500 | 2997 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2998 | continue; |
2999 | ||
35df4500 | 3000 | if (bl->inserted) |
c5aa993b | 3001 | { |
35df4500 | 3002 | bl->inserted = 0; |
dd61ec5c | 3003 | val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3); |
c5aa993b JM |
3004 | if (val != 0) |
3005 | { | |
ce696e05 | 3006 | do_cleanups (old_chain); |
c5aa993b JM |
3007 | return val; |
3008 | } | |
3009 | } | |
3010 | } | |
ce696e05 | 3011 | do_cleanups (old_chain); |
c906108c SS |
3012 | return 0; |
3013 | } | |
3014 | ||
e58b0e63 PA |
3015 | static int internal_breakpoint_number = -1; |
3016 | ||
84f4c1fe PM |
3017 | /* Set the breakpoint number of B, depending on the value of INTERNAL. |
3018 | If INTERNAL is non-zero, the breakpoint number will be populated | |
3019 | from internal_breakpoint_number and that variable decremented. | |
e5dd4106 | 3020 | Otherwise the breakpoint number will be populated from |
84f4c1fe PM |
3021 | breakpoint_count and that value incremented. Internal breakpoints |
3022 | do not set the internal var bpnum. */ | |
3023 | static void | |
3024 | set_breakpoint_number (int internal, struct breakpoint *b) | |
3025 | { | |
3026 | if (internal) | |
3027 | b->number = internal_breakpoint_number--; | |
3028 | else | |
3029 | { | |
3030 | set_breakpoint_count (breakpoint_count + 1); | |
3031 | b->number = breakpoint_count; | |
3032 | } | |
3033 | } | |
3034 | ||
e62c965a | 3035 | static struct breakpoint * |
a6d9a66e | 3036 | create_internal_breakpoint (struct gdbarch *gdbarch, |
06edf0c0 | 3037 | CORE_ADDR address, enum bptype type, |
c0a91b2b | 3038 | const struct breakpoint_ops *ops) |
e62c965a | 3039 | { |
e62c965a PP |
3040 | struct symtab_and_line sal; |
3041 | struct breakpoint *b; | |
3042 | ||
4a64f543 | 3043 | init_sal (&sal); /* Initialize to zeroes. */ |
e62c965a PP |
3044 | |
3045 | sal.pc = address; | |
3046 | sal.section = find_pc_overlay (sal.pc); | |
6c95b8df | 3047 | sal.pspace = current_program_space; |
e62c965a | 3048 | |
06edf0c0 | 3049 | b = set_raw_breakpoint (gdbarch, sal, type, ops); |
e62c965a PP |
3050 | b->number = internal_breakpoint_number--; |
3051 | b->disposition = disp_donttouch; | |
3052 | ||
3053 | return b; | |
3054 | } | |
3055 | ||
17450429 PP |
3056 | static const char *const longjmp_names[] = |
3057 | { | |
3058 | "longjmp", "_longjmp", "siglongjmp", "_siglongjmp" | |
3059 | }; | |
3060 | #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names) | |
3061 | ||
3062 | /* Per-objfile data private to breakpoint.c. */ | |
3063 | struct breakpoint_objfile_data | |
3064 | { | |
3065 | /* Minimal symbol for "_ovly_debug_event" (if any). */ | |
3066 | struct minimal_symbol *overlay_msym; | |
3067 | ||
3068 | /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */ | |
3069 | struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES]; | |
3070 | ||
28106bc2 SDJ |
3071 | /* True if we have looked for longjmp probes. */ |
3072 | int longjmp_searched; | |
3073 | ||
3074 | /* SystemTap probe points for longjmp (if any). */ | |
3075 | VEC (probe_p) *longjmp_probes; | |
3076 | ||
17450429 PP |
3077 | /* Minimal symbol for "std::terminate()" (if any). */ |
3078 | struct minimal_symbol *terminate_msym; | |
3079 | ||
3080 | /* Minimal symbol for "_Unwind_DebugHook" (if any). */ | |
3081 | struct minimal_symbol *exception_msym; | |
28106bc2 SDJ |
3082 | |
3083 | /* True if we have looked for exception probes. */ | |
3084 | int exception_searched; | |
3085 | ||
3086 | /* SystemTap probe points for unwinding (if any). */ | |
3087 | VEC (probe_p) *exception_probes; | |
17450429 PP |
3088 | }; |
3089 | ||
3090 | static const struct objfile_data *breakpoint_objfile_key; | |
3091 | ||
3092 | /* Minimal symbol not found sentinel. */ | |
3093 | static struct minimal_symbol msym_not_found; | |
3094 | ||
3095 | /* Returns TRUE if MSYM point to the "not found" sentinel. */ | |
3096 | ||
3097 | static int | |
3098 | msym_not_found_p (const struct minimal_symbol *msym) | |
3099 | { | |
3100 | return msym == &msym_not_found; | |
3101 | } | |
3102 | ||
3103 | /* Return per-objfile data needed by breakpoint.c. | |
3104 | Allocate the data if necessary. */ | |
3105 | ||
3106 | static struct breakpoint_objfile_data * | |
3107 | get_breakpoint_objfile_data (struct objfile *objfile) | |
3108 | { | |
3109 | struct breakpoint_objfile_data *bp_objfile_data; | |
3110 | ||
3111 | bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key); | |
3112 | if (bp_objfile_data == NULL) | |
3113 | { | |
3114 | bp_objfile_data = obstack_alloc (&objfile->objfile_obstack, | |
3115 | sizeof (*bp_objfile_data)); | |
3116 | ||
3117 | memset (bp_objfile_data, 0, sizeof (*bp_objfile_data)); | |
3118 | set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data); | |
3119 | } | |
3120 | return bp_objfile_data; | |
3121 | } | |
3122 | ||
28106bc2 SDJ |
3123 | static void |
3124 | free_breakpoint_probes (struct objfile *obj, void *data) | |
3125 | { | |
3126 | struct breakpoint_objfile_data *bp_objfile_data = data; | |
3127 | ||
3128 | VEC_free (probe_p, bp_objfile_data->longjmp_probes); | |
3129 | VEC_free (probe_p, bp_objfile_data->exception_probes); | |
3130 | } | |
3131 | ||
e62c965a | 3132 | static void |
af02033e | 3133 | create_overlay_event_breakpoint (void) |
e62c965a | 3134 | { |
69de3c6a | 3135 | struct objfile *objfile; |
af02033e | 3136 | const char *const func_name = "_ovly_debug_event"; |
e62c965a | 3137 | |
69de3c6a PP |
3138 | ALL_OBJFILES (objfile) |
3139 | { | |
3140 | struct breakpoint *b; | |
17450429 PP |
3141 | struct breakpoint_objfile_data *bp_objfile_data; |
3142 | CORE_ADDR addr; | |
69de3c6a | 3143 | |
17450429 PP |
3144 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
3145 | ||
3146 | if (msym_not_found_p (bp_objfile_data->overlay_msym)) | |
3147 | continue; | |
3148 | ||
3149 | if (bp_objfile_data->overlay_msym == NULL) | |
3150 | { | |
3151 | struct minimal_symbol *m; | |
3152 | ||
3153 | m = lookup_minimal_symbol_text (func_name, objfile); | |
3154 | if (m == NULL) | |
3155 | { | |
3156 | /* Avoid future lookups in this objfile. */ | |
3157 | bp_objfile_data->overlay_msym = &msym_not_found; | |
3158 | continue; | |
3159 | } | |
3160 | bp_objfile_data->overlay_msym = m; | |
3161 | } | |
e62c965a | 3162 | |
17450429 PP |
3163 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym); |
3164 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
3165 | bp_overlay_event, |
3166 | &internal_breakpoint_ops); | |
69de3c6a | 3167 | b->addr_string = xstrdup (func_name); |
e62c965a | 3168 | |
69de3c6a PP |
3169 | if (overlay_debugging == ovly_auto) |
3170 | { | |
3171 | b->enable_state = bp_enabled; | |
3172 | overlay_events_enabled = 1; | |
3173 | } | |
3174 | else | |
3175 | { | |
3176 | b->enable_state = bp_disabled; | |
3177 | overlay_events_enabled = 0; | |
3178 | } | |
e62c965a PP |
3179 | } |
3180 | update_global_location_list (1); | |
3181 | } | |
3182 | ||
0fd8e87f | 3183 | static void |
af02033e | 3184 | create_longjmp_master_breakpoint (void) |
0fd8e87f | 3185 | { |
6c95b8df | 3186 | struct program_space *pspace; |
6c95b8df PA |
3187 | struct cleanup *old_chain; |
3188 | ||
3189 | old_chain = save_current_program_space (); | |
0fd8e87f | 3190 | |
6c95b8df | 3191 | ALL_PSPACES (pspace) |
af02033e PP |
3192 | { |
3193 | struct objfile *objfile; | |
3194 | ||
3195 | set_current_program_space (pspace); | |
3196 | ||
3197 | ALL_OBJFILES (objfile) | |
0fd8e87f | 3198 | { |
af02033e PP |
3199 | int i; |
3200 | struct gdbarch *gdbarch; | |
17450429 | 3201 | struct breakpoint_objfile_data *bp_objfile_data; |
0fd8e87f | 3202 | |
af02033e PP |
3203 | gdbarch = get_objfile_arch (objfile); |
3204 | if (!gdbarch_get_longjmp_target_p (gdbarch)) | |
0fd8e87f UW |
3205 | continue; |
3206 | ||
17450429 PP |
3207 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
3208 | ||
28106bc2 SDJ |
3209 | if (!bp_objfile_data->longjmp_searched) |
3210 | { | |
3211 | bp_objfile_data->longjmp_probes | |
3212 | = find_probes_in_objfile (objfile, "libc", "longjmp"); | |
3213 | bp_objfile_data->longjmp_searched = 1; | |
3214 | } | |
3215 | ||
3216 | if (bp_objfile_data->longjmp_probes != NULL) | |
3217 | { | |
3218 | int i; | |
3219 | struct probe *probe; | |
3220 | struct gdbarch *gdbarch = get_objfile_arch (objfile); | |
3221 | ||
3222 | for (i = 0; | |
3223 | VEC_iterate (probe_p, | |
3224 | bp_objfile_data->longjmp_probes, | |
3225 | i, probe); | |
3226 | ++i) | |
3227 | { | |
3228 | struct breakpoint *b; | |
3229 | ||
3230 | b = create_internal_breakpoint (gdbarch, probe->address, | |
3231 | bp_longjmp_master, | |
3232 | &internal_breakpoint_ops); | |
3233 | b->addr_string = xstrdup ("-probe-stap libc:longjmp"); | |
3234 | b->enable_state = bp_disabled; | |
3235 | } | |
3236 | ||
3237 | continue; | |
3238 | } | |
3239 | ||
17450429 | 3240 | for (i = 0; i < NUM_LONGJMP_NAMES; i++) |
af02033e PP |
3241 | { |
3242 | struct breakpoint *b; | |
af02033e | 3243 | const char *func_name; |
17450429 | 3244 | CORE_ADDR addr; |
6c95b8df | 3245 | |
17450429 | 3246 | if (msym_not_found_p (bp_objfile_data->longjmp_msym[i])) |
af02033e | 3247 | continue; |
0fd8e87f | 3248 | |
17450429 PP |
3249 | func_name = longjmp_names[i]; |
3250 | if (bp_objfile_data->longjmp_msym[i] == NULL) | |
3251 | { | |
3252 | struct minimal_symbol *m; | |
3253 | ||
3254 | m = lookup_minimal_symbol_text (func_name, objfile); | |
3255 | if (m == NULL) | |
3256 | { | |
3257 | /* Prevent future lookups in this objfile. */ | |
3258 | bp_objfile_data->longjmp_msym[i] = &msym_not_found; | |
3259 | continue; | |
3260 | } | |
3261 | bp_objfile_data->longjmp_msym[i] = m; | |
3262 | } | |
3263 | ||
3264 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]); | |
06edf0c0 PA |
3265 | b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master, |
3266 | &internal_breakpoint_ops); | |
af02033e PP |
3267 | b->addr_string = xstrdup (func_name); |
3268 | b->enable_state = bp_disabled; | |
3269 | } | |
0fd8e87f | 3270 | } |
af02033e | 3271 | } |
0fd8e87f | 3272 | update_global_location_list (1); |
6c95b8df PA |
3273 | |
3274 | do_cleanups (old_chain); | |
0fd8e87f UW |
3275 | } |
3276 | ||
af02033e | 3277 | /* Create a master std::terminate breakpoint. */ |
aa7d318d | 3278 | static void |
af02033e | 3279 | create_std_terminate_master_breakpoint (void) |
aa7d318d TT |
3280 | { |
3281 | struct program_space *pspace; | |
aa7d318d | 3282 | struct cleanup *old_chain; |
af02033e | 3283 | const char *const func_name = "std::terminate()"; |
aa7d318d TT |
3284 | |
3285 | old_chain = save_current_program_space (); | |
3286 | ||
3287 | ALL_PSPACES (pspace) | |
17450429 PP |
3288 | { |
3289 | struct objfile *objfile; | |
3290 | CORE_ADDR addr; | |
3291 | ||
3292 | set_current_program_space (pspace); | |
3293 | ||
aa7d318d TT |
3294 | ALL_OBJFILES (objfile) |
3295 | { | |
3296 | struct breakpoint *b; | |
17450429 | 3297 | struct breakpoint_objfile_data *bp_objfile_data; |
aa7d318d | 3298 | |
17450429 | 3299 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
aa7d318d | 3300 | |
17450429 PP |
3301 | if (msym_not_found_p (bp_objfile_data->terminate_msym)) |
3302 | continue; | |
3303 | ||
3304 | if (bp_objfile_data->terminate_msym == NULL) | |
3305 | { | |
3306 | struct minimal_symbol *m; | |
3307 | ||
3308 | m = lookup_minimal_symbol (func_name, NULL, objfile); | |
3309 | if (m == NULL || (MSYMBOL_TYPE (m) != mst_text | |
3310 | && MSYMBOL_TYPE (m) != mst_file_text)) | |
3311 | { | |
3312 | /* Prevent future lookups in this objfile. */ | |
3313 | bp_objfile_data->terminate_msym = &msym_not_found; | |
3314 | continue; | |
3315 | } | |
3316 | bp_objfile_data->terminate_msym = m; | |
3317 | } | |
aa7d318d | 3318 | |
17450429 PP |
3319 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym); |
3320 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
3321 | bp_std_terminate_master, |
3322 | &internal_breakpoint_ops); | |
aa7d318d TT |
3323 | b->addr_string = xstrdup (func_name); |
3324 | b->enable_state = bp_disabled; | |
3325 | } | |
17450429 PP |
3326 | } |
3327 | ||
aa7d318d TT |
3328 | update_global_location_list (1); |
3329 | ||
3330 | do_cleanups (old_chain); | |
3331 | } | |
3332 | ||
186c406b TT |
3333 | /* Install a master breakpoint on the unwinder's debug hook. */ |
3334 | ||
70221824 | 3335 | static void |
186c406b TT |
3336 | create_exception_master_breakpoint (void) |
3337 | { | |
3338 | struct objfile *objfile; | |
17450429 | 3339 | const char *const func_name = "_Unwind_DebugHook"; |
186c406b TT |
3340 | |
3341 | ALL_OBJFILES (objfile) | |
3342 | { | |
17450429 PP |
3343 | struct breakpoint *b; |
3344 | struct gdbarch *gdbarch; | |
3345 | struct breakpoint_objfile_data *bp_objfile_data; | |
3346 | CORE_ADDR addr; | |
3347 | ||
3348 | bp_objfile_data = get_breakpoint_objfile_data (objfile); | |
3349 | ||
28106bc2 SDJ |
3350 | /* We prefer the SystemTap probe point if it exists. */ |
3351 | if (!bp_objfile_data->exception_searched) | |
3352 | { | |
3353 | bp_objfile_data->exception_probes | |
3354 | = find_probes_in_objfile (objfile, "libgcc", "unwind"); | |
3355 | bp_objfile_data->exception_searched = 1; | |
3356 | } | |
3357 | ||
3358 | if (bp_objfile_data->exception_probes != NULL) | |
3359 | { | |
3360 | struct gdbarch *gdbarch = get_objfile_arch (objfile); | |
3361 | int i; | |
3362 | struct probe *probe; | |
3363 | ||
3364 | for (i = 0; | |
3365 | VEC_iterate (probe_p, | |
3366 | bp_objfile_data->exception_probes, | |
3367 | i, probe); | |
3368 | ++i) | |
3369 | { | |
3370 | struct breakpoint *b; | |
3371 | ||
3372 | b = create_internal_breakpoint (gdbarch, probe->address, | |
3373 | bp_exception_master, | |
3374 | &internal_breakpoint_ops); | |
3375 | b->addr_string = xstrdup ("-probe-stap libgcc:unwind"); | |
3376 | b->enable_state = bp_disabled; | |
3377 | } | |
3378 | ||
3379 | continue; | |
3380 | } | |
3381 | ||
3382 | /* Otherwise, try the hook function. */ | |
3383 | ||
17450429 PP |
3384 | if (msym_not_found_p (bp_objfile_data->exception_msym)) |
3385 | continue; | |
3386 | ||
3387 | gdbarch = get_objfile_arch (objfile); | |
186c406b | 3388 | |
17450429 | 3389 | if (bp_objfile_data->exception_msym == NULL) |
186c406b | 3390 | { |
17450429 | 3391 | struct minimal_symbol *debug_hook; |
186c406b | 3392 | |
17450429 PP |
3393 | debug_hook = lookup_minimal_symbol (func_name, NULL, objfile); |
3394 | if (debug_hook == NULL) | |
3395 | { | |
3396 | bp_objfile_data->exception_msym = &msym_not_found; | |
3397 | continue; | |
3398 | } | |
3399 | ||
3400 | bp_objfile_data->exception_msym = debug_hook; | |
186c406b | 3401 | } |
17450429 PP |
3402 | |
3403 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym); | |
3404 | addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr, | |
3405 | ¤t_target); | |
06edf0c0 PA |
3406 | b = create_internal_breakpoint (gdbarch, addr, bp_exception_master, |
3407 | &internal_breakpoint_ops); | |
17450429 PP |
3408 | b->addr_string = xstrdup (func_name); |
3409 | b->enable_state = bp_disabled; | |
186c406b TT |
3410 | } |
3411 | ||
3412 | update_global_location_list (1); | |
3413 | } | |
3414 | ||
c906108c | 3415 | void |
fba45db2 | 3416 | update_breakpoints_after_exec (void) |
c906108c | 3417 | { |
35df4500 | 3418 | struct breakpoint *b, *b_tmp; |
876fa593 | 3419 | struct bp_location *bploc, **bplocp_tmp; |
c906108c | 3420 | |
25b22b0a PA |
3421 | /* We're about to delete breakpoints from GDB's lists. If the |
3422 | INSERTED flag is true, GDB will try to lift the breakpoints by | |
3423 | writing the breakpoints' "shadow contents" back into memory. The | |
3424 | "shadow contents" are NOT valid after an exec, so GDB should not | |
3425 | do that. Instead, the target is responsible from marking | |
3426 | breakpoints out as soon as it detects an exec. We don't do that | |
3427 | here instead, because there may be other attempts to delete | |
3428 | breakpoints after detecting an exec and before reaching here. */ | |
876fa593 | 3429 | ALL_BP_LOCATIONS (bploc, bplocp_tmp) |
6c95b8df PA |
3430 | if (bploc->pspace == current_program_space) |
3431 | gdb_assert (!bploc->inserted); | |
c906108c | 3432 | |
35df4500 | 3433 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3434 | { |
6c95b8df PA |
3435 | if (b->pspace != current_program_space) |
3436 | continue; | |
3437 | ||
4a64f543 | 3438 | /* Solib breakpoints must be explicitly reset after an exec(). */ |
c5aa993b JM |
3439 | if (b->type == bp_shlib_event) |
3440 | { | |
3441 | delete_breakpoint (b); | |
3442 | continue; | |
3443 | } | |
c906108c | 3444 | |
4a64f543 | 3445 | /* JIT breakpoints must be explicitly reset after an exec(). */ |
4efc6507 DE |
3446 | if (b->type == bp_jit_event) |
3447 | { | |
3448 | delete_breakpoint (b); | |
3449 | continue; | |
3450 | } | |
3451 | ||
1900040c | 3452 | /* Thread event breakpoints must be set anew after an exec(), |
0fd8e87f UW |
3453 | as must overlay event and longjmp master breakpoints. */ |
3454 | if (b->type == bp_thread_event || b->type == bp_overlay_event | |
186c406b TT |
3455 | || b->type == bp_longjmp_master || b->type == bp_std_terminate_master |
3456 | || b->type == bp_exception_master) | |
c4093a6a JM |
3457 | { |
3458 | delete_breakpoint (b); | |
3459 | continue; | |
3460 | } | |
3461 | ||
4a64f543 | 3462 | /* Step-resume breakpoints are meaningless after an exec(). */ |
2c03e5be | 3463 | if (b->type == bp_step_resume || b->type == bp_hp_step_resume) |
c5aa993b JM |
3464 | { |
3465 | delete_breakpoint (b); | |
3466 | continue; | |
3467 | } | |
3468 | ||
611c83ae PA |
3469 | /* Longjmp and longjmp-resume breakpoints are also meaningless |
3470 | after an exec. */ | |
186c406b | 3471 | if (b->type == bp_longjmp || b->type == bp_longjmp_resume |
e2e4d78b | 3472 | || b->type == bp_longjmp_call_dummy |
186c406b | 3473 | || b->type == bp_exception || b->type == bp_exception_resume) |
611c83ae PA |
3474 | { |
3475 | delete_breakpoint (b); | |
3476 | continue; | |
3477 | } | |
3478 | ||
ce78b96d JB |
3479 | if (b->type == bp_catchpoint) |
3480 | { | |
3481 | /* For now, none of the bp_catchpoint breakpoints need to | |
3482 | do anything at this point. In the future, if some of | |
3483 | the catchpoints need to something, we will need to add | |
3484 | a new method, and call this method from here. */ | |
3485 | continue; | |
3486 | } | |
3487 | ||
c5aa993b JM |
3488 | /* bp_finish is a special case. The only way we ought to be able |
3489 | to see one of these when an exec() has happened, is if the user | |
3490 | caught a vfork, and then said "finish". Ordinarily a finish just | |
3491 | carries them to the call-site of the current callee, by setting | |
3492 | a temporary bp there and resuming. But in this case, the finish | |
3493 | will carry them entirely through the vfork & exec. | |
3494 | ||
3495 | We don't want to allow a bp_finish to remain inserted now. But | |
3496 | we can't safely delete it, 'cause finish_command has a handle to | |
3497 | the bp on a bpstat, and will later want to delete it. There's a | |
3498 | chance (and I've seen it happen) that if we delete the bp_finish | |
3499 | here, that its storage will get reused by the time finish_command | |
3500 | gets 'round to deleting the "use to be a bp_finish" breakpoint. | |
3501 | We really must allow finish_command to delete a bp_finish. | |
3502 | ||
e5dd4106 | 3503 | In the absence of a general solution for the "how do we know |
53a5351d JM |
3504 | it's safe to delete something others may have handles to?" |
3505 | problem, what we'll do here is just uninsert the bp_finish, and | |
3506 | let finish_command delete it. | |
3507 | ||
3508 | (We know the bp_finish is "doomed" in the sense that it's | |
3509 | momentary, and will be deleted as soon as finish_command sees | |
3510 | the inferior stopped. So it doesn't matter that the bp's | |
3511 | address is probably bogus in the new a.out, unlike e.g., the | |
3512 | solib breakpoints.) */ | |
c5aa993b | 3513 | |
c5aa993b JM |
3514 | if (b->type == bp_finish) |
3515 | { | |
3516 | continue; | |
3517 | } | |
3518 | ||
3519 | /* Without a symbolic address, we have little hope of the | |
3520 | pre-exec() address meaning the same thing in the post-exec() | |
4a64f543 | 3521 | a.out. */ |
c5aa993b JM |
3522 | if (b->addr_string == NULL) |
3523 | { | |
3524 | delete_breakpoint (b); | |
3525 | continue; | |
3526 | } | |
c5aa993b | 3527 | } |
1900040c | 3528 | /* FIXME what about longjmp breakpoints? Re-create them here? */ |
af02033e PP |
3529 | create_overlay_event_breakpoint (); |
3530 | create_longjmp_master_breakpoint (); | |
3531 | create_std_terminate_master_breakpoint (); | |
186c406b | 3532 | create_exception_master_breakpoint (); |
c906108c SS |
3533 | } |
3534 | ||
3535 | int | |
d80ee84f | 3536 | detach_breakpoints (ptid_t ptid) |
c906108c | 3537 | { |
35df4500 | 3538 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 3539 | int val = 0; |
ce696e05 | 3540 | struct cleanup *old_chain = save_inferior_ptid (); |
6c95b8df | 3541 | struct inferior *inf = current_inferior (); |
c5aa993b | 3542 | |
d80ee84f | 3543 | if (PIDGET (ptid) == PIDGET (inferior_ptid)) |
8a3fe4f8 | 3544 | error (_("Cannot detach breakpoints of inferior_ptid")); |
c5aa993b | 3545 | |
6c95b8df | 3546 | /* Set inferior_ptid; remove_breakpoint_1 uses this global. */ |
d80ee84f | 3547 | inferior_ptid = ptid; |
35df4500 | 3548 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3549 | { |
35df4500 | 3550 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
3551 | continue; |
3552 | ||
35df4500 TJB |
3553 | if (bl->inserted) |
3554 | val |= remove_breakpoint_1 (bl, mark_inserted); | |
c5aa993b | 3555 | } |
d03285ec UW |
3556 | |
3557 | /* Detach single-step breakpoints as well. */ | |
3558 | detach_single_step_breakpoints (); | |
3559 | ||
ce696e05 | 3560 | do_cleanups (old_chain); |
3a1bae8e | 3561 | return val; |
c906108c SS |
3562 | } |
3563 | ||
35df4500 | 3564 | /* Remove the breakpoint location BL from the current address space. |
6c95b8df PA |
3565 | Note that this is used to detach breakpoints from a child fork. |
3566 | When we get here, the child isn't in the inferior list, and neither | |
3567 | do we have objects to represent its address space --- we should | |
35df4500 | 3568 | *not* look at bl->pspace->aspace here. */ |
6c95b8df | 3569 | |
c906108c | 3570 | static int |
35df4500 | 3571 | remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is) |
c906108c SS |
3572 | { |
3573 | int val; | |
c5aa993b | 3574 | |
35df4500 TJB |
3575 | /* BL is never in moribund_locations by our callers. */ |
3576 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3577 | |
35df4500 | 3578 | if (bl->owner->enable_state == bp_permanent) |
c2c6d25f JM |
3579 | /* Permanent breakpoints cannot be inserted or removed. */ |
3580 | return 0; | |
3581 | ||
74960c60 VP |
3582 | /* The type of none suggests that owner is actually deleted. |
3583 | This should not ever happen. */ | |
35df4500 | 3584 | gdb_assert (bl->owner->type != bp_none); |
0bde7532 | 3585 | |
35df4500 TJB |
3586 | if (bl->loc_type == bp_loc_software_breakpoint |
3587 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
c906108c | 3588 | { |
c02f5703 MS |
3589 | /* "Normal" instruction breakpoint: either the standard |
3590 | trap-instruction bp (bp_breakpoint), or a | |
3591 | bp_hardware_breakpoint. */ | |
3592 | ||
3593 | /* First check to see if we have to handle an overlay. */ | |
3594 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
3595 | || bl->section == NULL |
3596 | || !(section_is_overlay (bl->section))) | |
c02f5703 MS |
3597 | { |
3598 | /* No overlay handling: just remove the breakpoint. */ | |
348d480f | 3599 | val = bl->owner->ops->remove_location (bl); |
c02f5703 | 3600 | } |
c906108c SS |
3601 | else |
3602 | { | |
4a64f543 | 3603 | /* This breakpoint is in an overlay section. |
c02f5703 MS |
3604 | Did we set a breakpoint at the LMA? */ |
3605 | if (!overlay_events_enabled) | |
3606 | { | |
3607 | /* Yes -- overlay event support is not active, so we | |
3608 | should have set a breakpoint at the LMA. Remove it. | |
3609 | */ | |
c02f5703 MS |
3610 | /* Ignore any failures: if the LMA is in ROM, we will |
3611 | have already warned when we failed to insert it. */ | |
35df4500 TJB |
3612 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
3613 | target_remove_hw_breakpoint (bl->gdbarch, | |
3614 | &bl->overlay_target_info); | |
c02f5703 | 3615 | else |
35df4500 TJB |
3616 | target_remove_breakpoint (bl->gdbarch, |
3617 | &bl->overlay_target_info); | |
c02f5703 MS |
3618 | } |
3619 | /* Did we set a breakpoint at the VMA? | |
3620 | If so, we will have marked the breakpoint 'inserted'. */ | |
35df4500 | 3621 | if (bl->inserted) |
c906108c | 3622 | { |
c02f5703 MS |
3623 | /* Yes -- remove it. Previously we did not bother to |
3624 | remove the breakpoint if the section had been | |
3625 | unmapped, but let's not rely on that being safe. We | |
3626 | don't know what the overlay manager might do. */ | |
aa67235e UW |
3627 | |
3628 | /* However, we should remove *software* breakpoints only | |
3629 | if the section is still mapped, or else we overwrite | |
3630 | wrong code with the saved shadow contents. */ | |
348d480f PA |
3631 | if (bl->loc_type == bp_loc_hardware_breakpoint |
3632 | || section_is_mapped (bl->section)) | |
3633 | val = bl->owner->ops->remove_location (bl); | |
aa67235e UW |
3634 | else |
3635 | val = 0; | |
c906108c | 3636 | } |
c02f5703 MS |
3637 | else |
3638 | { | |
3639 | /* No -- not inserted, so no need to remove. No error. */ | |
3640 | val = 0; | |
3641 | } | |
c906108c | 3642 | } |
879d1e6b UW |
3643 | |
3644 | /* In some cases, we might not be able to remove a breakpoint | |
3645 | in a shared library that has already been removed, but we | |
3646 | have not yet processed the shlib unload event. */ | |
35df4500 | 3647 | if (val && solib_name_from_address (bl->pspace, bl->address)) |
879d1e6b UW |
3648 | val = 0; |
3649 | ||
c906108c SS |
3650 | if (val) |
3651 | return val; | |
35df4500 | 3652 | bl->inserted = (is == mark_inserted); |
c906108c | 3653 | } |
35df4500 | 3654 | else if (bl->loc_type == bp_loc_hardware_watchpoint) |
c906108c | 3655 | { |
77b06cd7 TJB |
3656 | gdb_assert (bl->owner->ops != NULL |
3657 | && bl->owner->ops->remove_location != NULL); | |
3658 | ||
35df4500 | 3659 | bl->inserted = (is == mark_inserted); |
77b06cd7 | 3660 | bl->owner->ops->remove_location (bl); |
2e70b7b9 | 3661 | |
c906108c | 3662 | /* Failure to remove any of the hardware watchpoints comes here. */ |
35df4500 | 3663 | if ((is == mark_uninserted) && (bl->inserted)) |
8a3fe4f8 | 3664 | warning (_("Could not remove hardware watchpoint %d."), |
35df4500 | 3665 | bl->owner->number); |
c906108c | 3666 | } |
35df4500 TJB |
3667 | else if (bl->owner->type == bp_catchpoint |
3668 | && breakpoint_enabled (bl->owner) | |
3669 | && !bl->duplicate) | |
ce78b96d | 3670 | { |
77b06cd7 TJB |
3671 | gdb_assert (bl->owner->ops != NULL |
3672 | && bl->owner->ops->remove_location != NULL); | |
ce78b96d | 3673 | |
77b06cd7 | 3674 | val = bl->owner->ops->remove_location (bl); |
ce78b96d JB |
3675 | if (val) |
3676 | return val; | |
77b06cd7 | 3677 | |
35df4500 | 3678 | bl->inserted = (is == mark_inserted); |
ce78b96d | 3679 | } |
c906108c SS |
3680 | |
3681 | return 0; | |
3682 | } | |
3683 | ||
6c95b8df | 3684 | static int |
35df4500 | 3685 | remove_breakpoint (struct bp_location *bl, insertion_state_t is) |
6c95b8df PA |
3686 | { |
3687 | int ret; | |
3688 | struct cleanup *old_chain; | |
3689 | ||
35df4500 TJB |
3690 | /* BL is never in moribund_locations by our callers. */ |
3691 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3692 | |
35df4500 | 3693 | if (bl->owner->enable_state == bp_permanent) |
6c95b8df PA |
3694 | /* Permanent breakpoints cannot be inserted or removed. */ |
3695 | return 0; | |
3696 | ||
3697 | /* The type of none suggests that owner is actually deleted. | |
3698 | This should not ever happen. */ | |
35df4500 | 3699 | gdb_assert (bl->owner->type != bp_none); |
6c95b8df PA |
3700 | |
3701 | old_chain = save_current_space_and_thread (); | |
3702 | ||
35df4500 | 3703 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df | 3704 | |
35df4500 | 3705 | ret = remove_breakpoint_1 (bl, is); |
6c95b8df PA |
3706 | |
3707 | do_cleanups (old_chain); | |
3708 | return ret; | |
3709 | } | |
3710 | ||
c906108c SS |
3711 | /* Clear the "inserted" flag in all breakpoints. */ |
3712 | ||
25b22b0a | 3713 | void |
fba45db2 | 3714 | mark_breakpoints_out (void) |
c906108c | 3715 | { |
35df4500 | 3716 | struct bp_location *bl, **blp_tmp; |
c906108c | 3717 | |
35df4500 TJB |
3718 | ALL_BP_LOCATIONS (bl, blp_tmp) |
3719 | if (bl->pspace == current_program_space) | |
3720 | bl->inserted = 0; | |
c906108c SS |
3721 | } |
3722 | ||
53a5351d JM |
3723 | /* Clear the "inserted" flag in all breakpoints and delete any |
3724 | breakpoints which should go away between runs of the program. | |
c906108c SS |
3725 | |
3726 | Plus other such housekeeping that has to be done for breakpoints | |
3727 | between runs. | |
3728 | ||
53a5351d JM |
3729 | Note: this function gets called at the end of a run (by |
3730 | generic_mourn_inferior) and when a run begins (by | |
4a64f543 | 3731 | init_wait_for_inferior). */ |
c906108c SS |
3732 | |
3733 | ||
3734 | ||
3735 | void | |
fba45db2 | 3736 | breakpoint_init_inferior (enum inf_context context) |
c906108c | 3737 | { |
35df4500 TJB |
3738 | struct breakpoint *b, *b_tmp; |
3739 | struct bp_location *bl, **blp_tmp; | |
1c5cfe86 | 3740 | int ix; |
6c95b8df | 3741 | struct program_space *pspace = current_program_space; |
c906108c | 3742 | |
50c71eaf PA |
3743 | /* If breakpoint locations are shared across processes, then there's |
3744 | nothing to do. */ | |
f5656ead | 3745 | if (gdbarch_has_global_breakpoints (target_gdbarch ())) |
50c71eaf PA |
3746 | return; |
3747 | ||
35df4500 | 3748 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 3749 | { |
35df4500 TJB |
3750 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
3751 | if (bl->pspace == pspace | |
3752 | && bl->owner->enable_state != bp_permanent) | |
3753 | bl->inserted = 0; | |
6c95b8df | 3754 | } |
075f6582 | 3755 | |
35df4500 | 3756 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3757 | { |
6c95b8df PA |
3758 | if (b->loc && b->loc->pspace != pspace) |
3759 | continue; | |
3760 | ||
c5aa993b JM |
3761 | switch (b->type) |
3762 | { | |
3763 | case bp_call_dummy: | |
e2e4d78b | 3764 | case bp_longjmp_call_dummy: |
c906108c | 3765 | |
c5aa993b | 3766 | /* If the call dummy breakpoint is at the entry point it will |
ab92d69b PA |
3767 | cause problems when the inferior is rerun, so we better get |
3768 | rid of it. */ | |
3769 | ||
3770 | case bp_watchpoint_scope: | |
3771 | ||
3772 | /* Also get rid of scope breakpoints. */ | |
3773 | ||
3774 | case bp_shlib_event: | |
3775 | ||
3776 | /* Also remove solib event breakpoints. Their addresses may | |
3777 | have changed since the last time we ran the program. | |
3778 | Actually we may now be debugging against different target; | |
3779 | and so the solib backend that installed this breakpoint may | |
3780 | not be used in by the target. E.g., | |
3781 | ||
3782 | (gdb) file prog-linux | |
3783 | (gdb) run # native linux target | |
3784 | ... | |
3785 | (gdb) kill | |
3786 | (gdb) file prog-win.exe | |
3787 | (gdb) tar rem :9999 # remote Windows gdbserver. | |
3788 | */ | |
c906108c | 3789 | |
f59f708a PA |
3790 | case bp_step_resume: |
3791 | ||
3792 | /* Also remove step-resume breakpoints. */ | |
3793 | ||
c5aa993b JM |
3794 | delete_breakpoint (b); |
3795 | break; | |
c906108c | 3796 | |
c5aa993b JM |
3797 | case bp_watchpoint: |
3798 | case bp_hardware_watchpoint: | |
3799 | case bp_read_watchpoint: | |
3800 | case bp_access_watchpoint: | |
3a5c3e22 PA |
3801 | { |
3802 | struct watchpoint *w = (struct watchpoint *) b; | |
c906108c | 3803 | |
3a5c3e22 PA |
3804 | /* Likewise for watchpoints on local expressions. */ |
3805 | if (w->exp_valid_block != NULL) | |
3806 | delete_breakpoint (b); | |
3807 | else if (context == inf_starting) | |
3808 | { | |
3809 | /* Reset val field to force reread of starting value in | |
3810 | insert_breakpoints. */ | |
3811 | if (w->val) | |
3812 | value_free (w->val); | |
3813 | w->val = NULL; | |
3814 | w->val_valid = 0; | |
c860120c | 3815 | } |
3a5c3e22 | 3816 | } |
c5aa993b JM |
3817 | break; |
3818 | default: | |
c5aa993b JM |
3819 | break; |
3820 | } | |
3821 | } | |
1c5cfe86 PA |
3822 | |
3823 | /* Get rid of the moribund locations. */ | |
35df4500 TJB |
3824 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix) |
3825 | decref_bp_location (&bl); | |
1c5cfe86 | 3826 | VEC_free (bp_location_p, moribund_locations); |
c906108c SS |
3827 | } |
3828 | ||
6c95b8df PA |
3829 | /* These functions concern about actual breakpoints inserted in the |
3830 | target --- to e.g. check if we need to do decr_pc adjustment or if | |
3831 | we need to hop over the bkpt --- so we check for address space | |
3832 | match, not program space. */ | |
3833 | ||
c2c6d25f JM |
3834 | /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint |
3835 | exists at PC. It returns ordinary_breakpoint_here if it's an | |
3836 | ordinary breakpoint, or permanent_breakpoint_here if it's a | |
3837 | permanent breakpoint. | |
3838 | - When continuing from a location with an ordinary breakpoint, we | |
3839 | actually single step once before calling insert_breakpoints. | |
e5dd4106 | 3840 | - When continuing from a location with a permanent breakpoint, we |
c2c6d25f JM |
3841 | need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by |
3842 | the target, to advance the PC past the breakpoint. */ | |
c906108c | 3843 | |
c2c6d25f | 3844 | enum breakpoint_here |
6c95b8df | 3845 | breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
c906108c | 3846 | { |
35df4500 | 3847 | struct bp_location *bl, **blp_tmp; |
c2c6d25f | 3848 | int any_breakpoint_here = 0; |
c906108c | 3849 | |
35df4500 | 3850 | ALL_BP_LOCATIONS (bl, blp_tmp) |
075f6582 | 3851 | { |
35df4500 TJB |
3852 | if (bl->loc_type != bp_loc_software_breakpoint |
3853 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3854 | continue; |
3855 | ||
f1310107 | 3856 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
35df4500 TJB |
3857 | if ((breakpoint_enabled (bl->owner) |
3858 | || bl->owner->enable_state == bp_permanent) | |
f1310107 | 3859 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3860 | { |
3861 | if (overlay_debugging | |
35df4500 TJB |
3862 | && section_is_overlay (bl->section) |
3863 | && !section_is_mapped (bl->section)) | |
075f6582 | 3864 | continue; /* unmapped overlay -- can't be a match */ |
35df4500 | 3865 | else if (bl->owner->enable_state == bp_permanent) |
075f6582 DJ |
3866 | return permanent_breakpoint_here; |
3867 | else | |
3868 | any_breakpoint_here = 1; | |
3869 | } | |
3870 | } | |
c906108c | 3871 | |
c2c6d25f | 3872 | return any_breakpoint_here ? ordinary_breakpoint_here : 0; |
c906108c SS |
3873 | } |
3874 | ||
1c5cfe86 PA |
3875 | /* Return true if there's a moribund breakpoint at PC. */ |
3876 | ||
3877 | int | |
6c95b8df | 3878 | moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
1c5cfe86 PA |
3879 | { |
3880 | struct bp_location *loc; | |
3881 | int ix; | |
3882 | ||
3883 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
f1310107 | 3884 | if (breakpoint_location_address_match (loc, aspace, pc)) |
1c5cfe86 PA |
3885 | return 1; |
3886 | ||
3887 | return 0; | |
3888 | } | |
c2c6d25f | 3889 | |
c36b740a | 3890 | /* Returns non-zero if there's a breakpoint inserted at PC, which is |
4a64f543 MS |
3891 | inserted using regular breakpoint_chain / bp_location array |
3892 | mechanism. This does not check for single-step breakpoints, which | |
3893 | are inserted and removed using direct target manipulation. */ | |
c906108c SS |
3894 | |
3895 | int | |
4a64f543 MS |
3896 | regular_breakpoint_inserted_here_p (struct address_space *aspace, |
3897 | CORE_ADDR pc) | |
c906108c | 3898 | { |
35df4500 | 3899 | struct bp_location *bl, **blp_tmp; |
c906108c | 3900 | |
35df4500 | 3901 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3902 | { |
35df4500 TJB |
3903 | if (bl->loc_type != bp_loc_software_breakpoint |
3904 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3905 | continue; |
3906 | ||
35df4500 | 3907 | if (bl->inserted |
f1310107 | 3908 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3909 | { |
3910 | if (overlay_debugging | |
35df4500 TJB |
3911 | && section_is_overlay (bl->section) |
3912 | && !section_is_mapped (bl->section)) | |
075f6582 DJ |
3913 | continue; /* unmapped overlay -- can't be a match */ |
3914 | else | |
3915 | return 1; | |
3916 | } | |
c5aa993b | 3917 | } |
c36b740a VP |
3918 | return 0; |
3919 | } | |
3920 | ||
3921 | /* Returns non-zero iff there's either regular breakpoint | |
3922 | or a single step breakpoint inserted at PC. */ | |
3923 | ||
3924 | int | |
6c95b8df | 3925 | breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc) |
c36b740a | 3926 | { |
6c95b8df | 3927 | if (regular_breakpoint_inserted_here_p (aspace, pc)) |
c36b740a | 3928 | return 1; |
c906108c | 3929 | |
6c95b8df | 3930 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3931 | return 1; |
3932 | ||
c906108c SS |
3933 | return 0; |
3934 | } | |
3935 | ||
4fa8626c DJ |
3936 | /* This function returns non-zero iff there is a software breakpoint |
3937 | inserted at PC. */ | |
3938 | ||
3939 | int | |
3e43a32a MS |
3940 | software_breakpoint_inserted_here_p (struct address_space *aspace, |
3941 | CORE_ADDR pc) | |
4fa8626c | 3942 | { |
35df4500 | 3943 | struct bp_location *bl, **blp_tmp; |
4fa8626c | 3944 | |
35df4500 | 3945 | ALL_BP_LOCATIONS (bl, blp_tmp) |
4fa8626c | 3946 | { |
35df4500 | 3947 | if (bl->loc_type != bp_loc_software_breakpoint) |
4fa8626c DJ |
3948 | continue; |
3949 | ||
35df4500 TJB |
3950 | if (bl->inserted |
3951 | && breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6c95b8df | 3952 | aspace, pc)) |
4fa8626c DJ |
3953 | { |
3954 | if (overlay_debugging | |
35df4500 TJB |
3955 | && section_is_overlay (bl->section) |
3956 | && !section_is_mapped (bl->section)) | |
4fa8626c DJ |
3957 | continue; /* unmapped overlay -- can't be a match */ |
3958 | else | |
3959 | return 1; | |
3960 | } | |
3961 | } | |
3962 | ||
1aafd4da | 3963 | /* Also check for software single-step breakpoints. */ |
6c95b8df | 3964 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3965 | return 1; |
3966 | ||
4fa8626c DJ |
3967 | return 0; |
3968 | } | |
3969 | ||
9093389c PA |
3970 | int |
3971 | hardware_watchpoint_inserted_in_range (struct address_space *aspace, | |
3972 | CORE_ADDR addr, ULONGEST len) | |
3973 | { | |
3974 | struct breakpoint *bpt; | |
3975 | ||
3976 | ALL_BREAKPOINTS (bpt) | |
3977 | { | |
3978 | struct bp_location *loc; | |
3979 | ||
3980 | if (bpt->type != bp_hardware_watchpoint | |
3981 | && bpt->type != bp_access_watchpoint) | |
3982 | continue; | |
3983 | ||
3984 | if (!breakpoint_enabled (bpt)) | |
3985 | continue; | |
3986 | ||
3987 | for (loc = bpt->loc; loc; loc = loc->next) | |
3988 | if (loc->pspace->aspace == aspace && loc->inserted) | |
3989 | { | |
3990 | CORE_ADDR l, h; | |
3991 | ||
3992 | /* Check for intersection. */ | |
3993 | l = max (loc->address, addr); | |
3994 | h = min (loc->address + loc->length, addr + len); | |
3995 | if (l < h) | |
3996 | return 1; | |
3997 | } | |
3998 | } | |
3999 | return 0; | |
4000 | } | |
4001 | ||
075f6582 DJ |
4002 | /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at |
4003 | PC is valid for process/thread PTID. */ | |
c906108c SS |
4004 | |
4005 | int | |
6c95b8df PA |
4006 | breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc, |
4007 | ptid_t ptid) | |
c906108c | 4008 | { |
35df4500 | 4009 | struct bp_location *bl, **blp_tmp; |
4a306c9a | 4010 | /* The thread and task IDs associated to PTID, computed lazily. */ |
a6f1cd96 | 4011 | int thread = -1; |
4a306c9a | 4012 | int task = 0; |
a6f1cd96 | 4013 | |
35df4500 | 4014 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 4015 | { |
35df4500 TJB |
4016 | if (bl->loc_type != bp_loc_software_breakpoint |
4017 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
4018 | continue; |
4019 | ||
35df4500 TJB |
4020 | /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */ |
4021 | if (!breakpoint_enabled (bl->owner) | |
4022 | && bl->owner->enable_state != bp_permanent) | |
a6f1cd96 JB |
4023 | continue; |
4024 | ||
f1310107 | 4025 | if (!breakpoint_location_address_match (bl, aspace, pc)) |
a6f1cd96 JB |
4026 | continue; |
4027 | ||
35df4500 | 4028 | if (bl->owner->thread != -1) |
075f6582 | 4029 | { |
a6f1cd96 JB |
4030 | /* This is a thread-specific breakpoint. Check that ptid |
4031 | matches that thread. If thread hasn't been computed yet, | |
4032 | it is now time to do so. */ | |
4033 | if (thread == -1) | |
4034 | thread = pid_to_thread_id (ptid); | |
35df4500 | 4035 | if (bl->owner->thread != thread) |
a6f1cd96 | 4036 | continue; |
075f6582 | 4037 | } |
a6f1cd96 | 4038 | |
35df4500 | 4039 | if (bl->owner->task != 0) |
4a306c9a JB |
4040 | { |
4041 | /* This is a task-specific breakpoint. Check that ptid | |
4042 | matches that task. If task hasn't been computed yet, | |
4043 | it is now time to do so. */ | |
4044 | if (task == 0) | |
4045 | task = ada_get_task_number (ptid); | |
35df4500 | 4046 | if (bl->owner->task != task) |
4a306c9a JB |
4047 | continue; |
4048 | } | |
4049 | ||
a6f1cd96 | 4050 | if (overlay_debugging |
35df4500 TJB |
4051 | && section_is_overlay (bl->section) |
4052 | && !section_is_mapped (bl->section)) | |
a6f1cd96 JB |
4053 | continue; /* unmapped overlay -- can't be a match */ |
4054 | ||
4055 | return 1; | |
c5aa993b | 4056 | } |
c906108c SS |
4057 | |
4058 | return 0; | |
4059 | } | |
c906108c | 4060 | \f |
c5aa993b | 4061 | |
c906108c SS |
4062 | /* bpstat stuff. External routines' interfaces are documented |
4063 | in breakpoint.h. */ | |
4064 | ||
4065 | int | |
c326b90e | 4066 | is_catchpoint (struct breakpoint *ep) |
c906108c | 4067 | { |
533be4dd | 4068 | return (ep->type == bp_catchpoint); |
c906108c SS |
4069 | } |
4070 | ||
f431efe5 PA |
4071 | /* Frees any storage that is part of a bpstat. Does not walk the |
4072 | 'next' chain. */ | |
4073 | ||
4074 | static void | |
198757a8 VP |
4075 | bpstat_free (bpstat bs) |
4076 | { | |
4077 | if (bs->old_val != NULL) | |
4078 | value_free (bs->old_val); | |
9add0f1b | 4079 | decref_counted_command_line (&bs->commands); |
f431efe5 | 4080 | decref_bp_location (&bs->bp_location_at); |
198757a8 VP |
4081 | xfree (bs); |
4082 | } | |
4083 | ||
c906108c SS |
4084 | /* Clear a bpstat so that it says we are not at any breakpoint. |
4085 | Also free any storage that is part of a bpstat. */ | |
4086 | ||
4087 | void | |
fba45db2 | 4088 | bpstat_clear (bpstat *bsp) |
c906108c SS |
4089 | { |
4090 | bpstat p; | |
4091 | bpstat q; | |
4092 | ||
4093 | if (bsp == 0) | |
4094 | return; | |
4095 | p = *bsp; | |
4096 | while (p != NULL) | |
4097 | { | |
4098 | q = p->next; | |
198757a8 | 4099 | bpstat_free (p); |
c906108c SS |
4100 | p = q; |
4101 | } | |
4102 | *bsp = NULL; | |
4103 | } | |
4104 | ||
4105 | /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that | |
4106 | is part of the bpstat is copied as well. */ | |
4107 | ||
4108 | bpstat | |
fba45db2 | 4109 | bpstat_copy (bpstat bs) |
c906108c SS |
4110 | { |
4111 | bpstat p = NULL; | |
4112 | bpstat tmp; | |
4113 | bpstat retval = NULL; | |
4114 | ||
4115 | if (bs == NULL) | |
4116 | return bs; | |
4117 | ||
4118 | for (; bs != NULL; bs = bs->next) | |
4119 | { | |
4120 | tmp = (bpstat) xmalloc (sizeof (*tmp)); | |
4121 | memcpy (tmp, bs, sizeof (*tmp)); | |
9add0f1b | 4122 | incref_counted_command_line (tmp->commands); |
f431efe5 | 4123 | incref_bp_location (tmp->bp_location_at); |
31cc81e9 | 4124 | if (bs->old_val != NULL) |
3c3185ac JK |
4125 | { |
4126 | tmp->old_val = value_copy (bs->old_val); | |
4127 | release_value (tmp->old_val); | |
4128 | } | |
31cc81e9 | 4129 | |
c906108c SS |
4130 | if (p == NULL) |
4131 | /* This is the first thing in the chain. */ | |
4132 | retval = tmp; | |
4133 | else | |
4134 | p->next = tmp; | |
4135 | p = tmp; | |
4136 | } | |
4137 | p->next = NULL; | |
4138 | return retval; | |
4139 | } | |
4140 | ||
4a64f543 | 4141 | /* Find the bpstat associated with this breakpoint. */ |
c906108c SS |
4142 | |
4143 | bpstat | |
fba45db2 | 4144 | bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint) |
c906108c | 4145 | { |
c5aa993b JM |
4146 | if (bsp == NULL) |
4147 | return NULL; | |
c906108c | 4148 | |
c5aa993b JM |
4149 | for (; bsp != NULL; bsp = bsp->next) |
4150 | { | |
f431efe5 | 4151 | if (bsp->breakpoint_at == breakpoint) |
c5aa993b JM |
4152 | return bsp; |
4153 | } | |
c906108c SS |
4154 | return NULL; |
4155 | } | |
4156 | ||
ab04a2af TT |
4157 | /* See breakpoint.h. */ |
4158 | ||
4159 | enum bpstat_signal_value | |
4160 | bpstat_explains_signal (bpstat bsp) | |
4161 | { | |
4162 | enum bpstat_signal_value result = BPSTAT_SIGNAL_NO; | |
4163 | ||
4164 | for (; bsp != NULL; bsp = bsp->next) | |
4165 | { | |
4166 | /* Ensure that, if we ever entered this loop, then we at least | |
4167 | return BPSTAT_SIGNAL_HIDE. */ | |
4168 | enum bpstat_signal_value newval = BPSTAT_SIGNAL_HIDE; | |
4169 | ||
4170 | if (bsp->breakpoint_at != NULL) | |
4171 | newval = bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at); | |
4172 | ||
4173 | if (newval > result) | |
4174 | result = newval; | |
4175 | } | |
4176 | ||
4177 | return result; | |
4178 | } | |
4179 | ||
4a64f543 MS |
4180 | /* Put in *NUM the breakpoint number of the first breakpoint we are |
4181 | stopped at. *BSP upon return is a bpstat which points to the | |
4182 | remaining breakpoints stopped at (but which is not guaranteed to be | |
4183 | good for anything but further calls to bpstat_num). | |
4184 | ||
8671a17b PA |
4185 | Return 0 if passed a bpstat which does not indicate any breakpoints. |
4186 | Return -1 if stopped at a breakpoint that has been deleted since | |
4187 | we set it. | |
4188 | Return 1 otherwise. */ | |
c906108c SS |
4189 | |
4190 | int | |
8671a17b | 4191 | bpstat_num (bpstat *bsp, int *num) |
c906108c SS |
4192 | { |
4193 | struct breakpoint *b; | |
4194 | ||
4195 | if ((*bsp) == NULL) | |
4196 | return 0; /* No more breakpoint values */ | |
8671a17b | 4197 | |
4a64f543 MS |
4198 | /* We assume we'll never have several bpstats that correspond to a |
4199 | single breakpoint -- otherwise, this function might return the | |
4200 | same number more than once and this will look ugly. */ | |
f431efe5 | 4201 | b = (*bsp)->breakpoint_at; |
8671a17b PA |
4202 | *bsp = (*bsp)->next; |
4203 | if (b == NULL) | |
4204 | return -1; /* breakpoint that's been deleted since */ | |
4205 | ||
4206 | *num = b->number; /* We have its number */ | |
4207 | return 1; | |
c906108c SS |
4208 | } |
4209 | ||
e93ca019 | 4210 | /* See breakpoint.h. */ |
c906108c SS |
4211 | |
4212 | void | |
e93ca019 | 4213 | bpstat_clear_actions (void) |
c906108c | 4214 | { |
e93ca019 JK |
4215 | struct thread_info *tp; |
4216 | bpstat bs; | |
4217 | ||
4218 | if (ptid_equal (inferior_ptid, null_ptid)) | |
4219 | return; | |
4220 | ||
4221 | tp = find_thread_ptid (inferior_ptid); | |
4222 | if (tp == NULL) | |
4223 | return; | |
4224 | ||
4225 | for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next) | |
c906108c | 4226 | { |
9add0f1b | 4227 | decref_counted_command_line (&bs->commands); |
abf85f46 | 4228 | |
c906108c SS |
4229 | if (bs->old_val != NULL) |
4230 | { | |
4231 | value_free (bs->old_val); | |
4232 | bs->old_val = NULL; | |
4233 | } | |
4234 | } | |
4235 | } | |
4236 | ||
f3b1572e PA |
4237 | /* Called when a command is about to proceed the inferior. */ |
4238 | ||
4239 | static void | |
4240 | breakpoint_about_to_proceed (void) | |
4241 | { | |
4242 | if (!ptid_equal (inferior_ptid, null_ptid)) | |
4243 | { | |
4244 | struct thread_info *tp = inferior_thread (); | |
4245 | ||
4246 | /* Allow inferior function calls in breakpoint commands to not | |
4247 | interrupt the command list. When the call finishes | |
4248 | successfully, the inferior will be standing at the same | |
4249 | breakpoint as if nothing happened. */ | |
16c381f0 | 4250 | if (tp->control.in_infcall) |
f3b1572e PA |
4251 | return; |
4252 | } | |
4253 | ||
4254 | breakpoint_proceeded = 1; | |
4255 | } | |
4256 | ||
4a64f543 MS |
4257 | /* Stub for cleaning up our state if we error-out of a breakpoint |
4258 | command. */ | |
c906108c | 4259 | static void |
4efb68b1 | 4260 | cleanup_executing_breakpoints (void *ignore) |
c906108c SS |
4261 | { |
4262 | executing_breakpoint_commands = 0; | |
4263 | } | |
4264 | ||
abf85f46 JK |
4265 | /* Return non-zero iff CMD as the first line of a command sequence is `silent' |
4266 | or its equivalent. */ | |
4267 | ||
4268 | static int | |
4269 | command_line_is_silent (struct command_line *cmd) | |
4270 | { | |
4271 | return cmd && (strcmp ("silent", cmd->line) == 0 | |
4272 | || (xdb_commands && strcmp ("Q", cmd->line) == 0)); | |
4273 | } | |
4274 | ||
4a64f543 MS |
4275 | /* Execute all the commands associated with all the breakpoints at |
4276 | this location. Any of these commands could cause the process to | |
4277 | proceed beyond this point, etc. We look out for such changes by | |
4278 | checking the global "breakpoint_proceeded" after each command. | |
c906108c | 4279 | |
347bddb7 PA |
4280 | Returns true if a breakpoint command resumed the inferior. In that |
4281 | case, it is the caller's responsibility to recall it again with the | |
4282 | bpstat of the current thread. */ | |
4283 | ||
4284 | static int | |
4285 | bpstat_do_actions_1 (bpstat *bsp) | |
c906108c SS |
4286 | { |
4287 | bpstat bs; | |
4288 | struct cleanup *old_chain; | |
347bddb7 | 4289 | int again = 0; |
c906108c SS |
4290 | |
4291 | /* Avoid endless recursion if a `source' command is contained | |
4292 | in bs->commands. */ | |
4293 | if (executing_breakpoint_commands) | |
347bddb7 | 4294 | return 0; |
c906108c SS |
4295 | |
4296 | executing_breakpoint_commands = 1; | |
4297 | old_chain = make_cleanup (cleanup_executing_breakpoints, 0); | |
4298 | ||
cf6c5ffb TT |
4299 | prevent_dont_repeat (); |
4300 | ||
4a64f543 | 4301 | /* This pointer will iterate over the list of bpstat's. */ |
c906108c SS |
4302 | bs = *bsp; |
4303 | ||
4304 | breakpoint_proceeded = 0; | |
4305 | for (; bs != NULL; bs = bs->next) | |
4306 | { | |
9add0f1b | 4307 | struct counted_command_line *ccmd; |
6c50ab1c JB |
4308 | struct command_line *cmd; |
4309 | struct cleanup *this_cmd_tree_chain; | |
4310 | ||
4311 | /* Take ownership of the BSP's command tree, if it has one. | |
4312 | ||
4313 | The command tree could legitimately contain commands like | |
4314 | 'step' and 'next', which call clear_proceed_status, which | |
4315 | frees stop_bpstat's command tree. To make sure this doesn't | |
4316 | free the tree we're executing out from under us, we need to | |
4317 | take ownership of the tree ourselves. Since a given bpstat's | |
4318 | commands are only executed once, we don't need to copy it; we | |
4319 | can clear the pointer in the bpstat, and make sure we free | |
4320 | the tree when we're done. */ | |
9add0f1b TT |
4321 | ccmd = bs->commands; |
4322 | bs->commands = NULL; | |
abf85f46 JK |
4323 | this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd); |
4324 | cmd = ccmd ? ccmd->commands : NULL; | |
4325 | if (command_line_is_silent (cmd)) | |
4326 | { | |
4327 | /* The action has been already done by bpstat_stop_status. */ | |
4328 | cmd = cmd->next; | |
4329 | } | |
6c50ab1c | 4330 | |
c906108c SS |
4331 | while (cmd != NULL) |
4332 | { | |
4333 | execute_control_command (cmd); | |
4334 | ||
4335 | if (breakpoint_proceeded) | |
4336 | break; | |
4337 | else | |
4338 | cmd = cmd->next; | |
4339 | } | |
6c50ab1c JB |
4340 | |
4341 | /* We can free this command tree now. */ | |
4342 | do_cleanups (this_cmd_tree_chain); | |
4343 | ||
c906108c | 4344 | if (breakpoint_proceeded) |
32c1e744 VP |
4345 | { |
4346 | if (target_can_async_p ()) | |
347bddb7 PA |
4347 | /* If we are in async mode, then the target might be still |
4348 | running, not stopped at any breakpoint, so nothing for | |
4349 | us to do here -- just return to the event loop. */ | |
4350 | ; | |
32c1e744 VP |
4351 | else |
4352 | /* In sync mode, when execute_control_command returns | |
4353 | we're already standing on the next breakpoint. | |
347bddb7 PA |
4354 | Breakpoint commands for that stop were not run, since |
4355 | execute_command does not run breakpoint commands -- | |
4356 | only command_line_handler does, but that one is not | |
4357 | involved in execution of breakpoint commands. So, we | |
4358 | can now execute breakpoint commands. It should be | |
4359 | noted that making execute_command do bpstat actions is | |
4360 | not an option -- in this case we'll have recursive | |
4361 | invocation of bpstat for each breakpoint with a | |
4362 | command, and can easily blow up GDB stack. Instead, we | |
4363 | return true, which will trigger the caller to recall us | |
4364 | with the new stop_bpstat. */ | |
4365 | again = 1; | |
4366 | break; | |
32c1e744 | 4367 | } |
c906108c | 4368 | } |
c2b8ed2c | 4369 | do_cleanups (old_chain); |
347bddb7 PA |
4370 | return again; |
4371 | } | |
4372 | ||
4373 | void | |
4374 | bpstat_do_actions (void) | |
4375 | { | |
353d1d73 JK |
4376 | struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup (); |
4377 | ||
347bddb7 PA |
4378 | /* Do any commands attached to breakpoint we are stopped at. */ |
4379 | while (!ptid_equal (inferior_ptid, null_ptid) | |
4380 | && target_has_execution | |
4381 | && !is_exited (inferior_ptid) | |
4382 | && !is_executing (inferior_ptid)) | |
4383 | /* Since in sync mode, bpstat_do_actions may resume the inferior, | |
4384 | and only return when it is stopped at the next breakpoint, we | |
4385 | keep doing breakpoint actions until it returns false to | |
4386 | indicate the inferior was not resumed. */ | |
16c381f0 | 4387 | if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat)) |
347bddb7 | 4388 | break; |
353d1d73 JK |
4389 | |
4390 | discard_cleanups (cleanup_if_error); | |
c906108c SS |
4391 | } |
4392 | ||
fa4727a6 DJ |
4393 | /* Print out the (old or new) value associated with a watchpoint. */ |
4394 | ||
4395 | static void | |
4396 | watchpoint_value_print (struct value *val, struct ui_file *stream) | |
4397 | { | |
4398 | if (val == NULL) | |
4399 | fprintf_unfiltered (stream, _("<unreadable>")); | |
4400 | else | |
79a45b7d TT |
4401 | { |
4402 | struct value_print_options opts; | |
4403 | get_user_print_options (&opts); | |
4404 | value_print (val, stream, &opts); | |
4405 | } | |
fa4727a6 DJ |
4406 | } |
4407 | ||
e514a9d6 | 4408 | /* Generic routine for printing messages indicating why we |
4a64f543 | 4409 | stopped. The behavior of this function depends on the value |
e514a9d6 JM |
4410 | 'print_it' in the bpstat structure. Under some circumstances we |
4411 | may decide not to print anything here and delegate the task to | |
4a64f543 | 4412 | normal_stop(). */ |
e514a9d6 JM |
4413 | |
4414 | static enum print_stop_action | |
4415 | print_bp_stop_message (bpstat bs) | |
4416 | { | |
4417 | switch (bs->print_it) | |
4418 | { | |
4419 | case print_it_noop: | |
4a64f543 | 4420 | /* Nothing should be printed for this bpstat entry. */ |
e514a9d6 JM |
4421 | return PRINT_UNKNOWN; |
4422 | break; | |
4423 | ||
4424 | case print_it_done: | |
4425 | /* We still want to print the frame, but we already printed the | |
4a64f543 | 4426 | relevant messages. */ |
e514a9d6 JM |
4427 | return PRINT_SRC_AND_LOC; |
4428 | break; | |
4429 | ||
4430 | case print_it_normal: | |
4f8d1dc6 | 4431 | { |
f431efe5 PA |
4432 | struct breakpoint *b = bs->breakpoint_at; |
4433 | ||
1a6a67de TJB |
4434 | /* bs->breakpoint_at can be NULL if it was a momentary breakpoint |
4435 | which has since been deleted. */ | |
4436 | if (b == NULL) | |
4437 | return PRINT_UNKNOWN; | |
4438 | ||
348d480f PA |
4439 | /* Normal case. Call the breakpoint's print_it method. */ |
4440 | return b->ops->print_it (bs); | |
4f8d1dc6 | 4441 | } |
348d480f | 4442 | break; |
3086aeae | 4443 | |
e514a9d6 | 4444 | default: |
8e65ff28 | 4445 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 4446 | _("print_bp_stop_message: unrecognized enum value")); |
e514a9d6 | 4447 | break; |
c906108c | 4448 | } |
c906108c SS |
4449 | } |
4450 | ||
edcc5120 TT |
4451 | /* A helper function that prints a shared library stopped event. */ |
4452 | ||
4453 | static void | |
4454 | print_solib_event (int is_catchpoint) | |
4455 | { | |
4456 | int any_deleted | |
4457 | = !VEC_empty (char_ptr, current_program_space->deleted_solibs); | |
4458 | int any_added | |
4459 | = !VEC_empty (so_list_ptr, current_program_space->added_solibs); | |
4460 | ||
4461 | if (!is_catchpoint) | |
4462 | { | |
4463 | if (any_added || any_deleted) | |
4464 | ui_out_text (current_uiout, | |
4465 | _("Stopped due to shared library event:\n")); | |
4466 | else | |
4467 | ui_out_text (current_uiout, | |
4468 | _("Stopped due to shared library event (no " | |
4469 | "libraries added or removed)\n")); | |
4470 | } | |
4471 | ||
4472 | if (ui_out_is_mi_like_p (current_uiout)) | |
4473 | ui_out_field_string (current_uiout, "reason", | |
4474 | async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT)); | |
4475 | ||
4476 | if (any_deleted) | |
4477 | { | |
4478 | struct cleanup *cleanup; | |
4479 | char *name; | |
4480 | int ix; | |
4481 | ||
4482 | ui_out_text (current_uiout, _(" Inferior unloaded ")); | |
4483 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4484 | "removed"); | |
4485 | for (ix = 0; | |
4486 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
4487 | ix, name); | |
4488 | ++ix) | |
4489 | { | |
4490 | if (ix > 0) | |
4491 | ui_out_text (current_uiout, " "); | |
4492 | ui_out_field_string (current_uiout, "library", name); | |
4493 | ui_out_text (current_uiout, "\n"); | |
4494 | } | |
4495 | ||
4496 | do_cleanups (cleanup); | |
4497 | } | |
4498 | ||
4499 | if (any_added) | |
4500 | { | |
4501 | struct so_list *iter; | |
4502 | int ix; | |
4503 | struct cleanup *cleanup; | |
4504 | ||
4505 | ui_out_text (current_uiout, _(" Inferior loaded ")); | |
4506 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4507 | "added"); | |
4508 | for (ix = 0; | |
4509 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
4510 | ix, iter); | |
4511 | ++ix) | |
4512 | { | |
4513 | if (ix > 0) | |
4514 | ui_out_text (current_uiout, " "); | |
4515 | ui_out_field_string (current_uiout, "library", iter->so_name); | |
4516 | ui_out_text (current_uiout, "\n"); | |
4517 | } | |
4518 | ||
4519 | do_cleanups (cleanup); | |
4520 | } | |
4521 | } | |
4522 | ||
e514a9d6 JM |
4523 | /* Print a message indicating what happened. This is called from |
4524 | normal_stop(). The input to this routine is the head of the bpstat | |
36dfb11c TT |
4525 | list - a list of the eventpoints that caused this stop. KIND is |
4526 | the target_waitkind for the stopping event. This | |
e514a9d6 JM |
4527 | routine calls the generic print routine for printing a message |
4528 | about reasons for stopping. This will print (for example) the | |
4529 | "Breakpoint n," part of the output. The return value of this | |
4530 | routine is one of: | |
c906108c | 4531 | |
4a64f543 | 4532 | PRINT_UNKNOWN: Means we printed nothing. |
917317f4 | 4533 | PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent |
4a64f543 | 4534 | code to print the location. An example is |
c5aa993b JM |
4535 | "Breakpoint 1, " which should be followed by |
4536 | the location. | |
917317f4 | 4537 | PRINT_SRC_ONLY: Means we printed something, but there is no need |
c5aa993b JM |
4538 | to also print the location part of the message. |
4539 | An example is the catch/throw messages, which | |
4a64f543 | 4540 | don't require a location appended to the end. |
917317f4 | 4541 | PRINT_NOTHING: We have done some printing and we don't need any |
4a64f543 | 4542 | further info to be printed. */ |
c906108c | 4543 | |
917317f4 | 4544 | enum print_stop_action |
36dfb11c | 4545 | bpstat_print (bpstat bs, int kind) |
c906108c SS |
4546 | { |
4547 | int val; | |
c5aa993b | 4548 | |
c906108c | 4549 | /* Maybe another breakpoint in the chain caused us to stop. |
53a5351d JM |
4550 | (Currently all watchpoints go on the bpstat whether hit or not. |
4551 | That probably could (should) be changed, provided care is taken | |
c906108c | 4552 | with respect to bpstat_explains_signal). */ |
e514a9d6 JM |
4553 | for (; bs; bs = bs->next) |
4554 | { | |
4555 | val = print_bp_stop_message (bs); | |
4556 | if (val == PRINT_SRC_ONLY | |
4557 | || val == PRINT_SRC_AND_LOC | |
4558 | || val == PRINT_NOTHING) | |
4559 | return val; | |
4560 | } | |
c906108c | 4561 | |
36dfb11c TT |
4562 | /* If we had hit a shared library event breakpoint, |
4563 | print_bp_stop_message would print out this message. If we hit an | |
4564 | OS-level shared library event, do the same thing. */ | |
4565 | if (kind == TARGET_WAITKIND_LOADED) | |
4566 | { | |
edcc5120 | 4567 | print_solib_event (0); |
36dfb11c TT |
4568 | return PRINT_NOTHING; |
4569 | } | |
4570 | ||
e514a9d6 | 4571 | /* We reached the end of the chain, or we got a null BS to start |
4a64f543 | 4572 | with and nothing was printed. */ |
917317f4 | 4573 | return PRINT_UNKNOWN; |
c906108c SS |
4574 | } |
4575 | ||
4a64f543 MS |
4576 | /* Evaluate the expression EXP and return 1 if value is zero. This is |
4577 | used inside a catch_errors to evaluate the breakpoint condition. | |
4578 | The argument is a "struct expression *" that has been cast to a | |
4579 | "char *" to make it pass through catch_errors. */ | |
c906108c SS |
4580 | |
4581 | static int | |
4efb68b1 | 4582 | breakpoint_cond_eval (void *exp) |
c906108c | 4583 | { |
278cd55f | 4584 | struct value *mark = value_mark (); |
c5aa993b | 4585 | int i = !value_true (evaluate_expression ((struct expression *) exp)); |
cc59ec59 | 4586 | |
c906108c SS |
4587 | value_free_to_mark (mark); |
4588 | return i; | |
4589 | } | |
4590 | ||
5760d0ab | 4591 | /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */ |
c906108c SS |
4592 | |
4593 | static bpstat | |
5760d0ab | 4594 | bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer) |
c906108c SS |
4595 | { |
4596 | bpstat bs; | |
4597 | ||
4598 | bs = (bpstat) xmalloc (sizeof (*bs)); | |
5760d0ab JK |
4599 | bs->next = NULL; |
4600 | **bs_link_pointer = bs; | |
4601 | *bs_link_pointer = &bs->next; | |
f431efe5 PA |
4602 | bs->breakpoint_at = bl->owner; |
4603 | bs->bp_location_at = bl; | |
4604 | incref_bp_location (bl); | |
c906108c SS |
4605 | /* If the condition is false, etc., don't do the commands. */ |
4606 | bs->commands = NULL; | |
4607 | bs->old_val = NULL; | |
4608 | bs->print_it = print_it_normal; | |
4609 | return bs; | |
4610 | } | |
4611 | \f | |
d983da9c DJ |
4612 | /* The target has stopped with waitstatus WS. Check if any hardware |
4613 | watchpoints have triggered, according to the target. */ | |
4614 | ||
4615 | int | |
4616 | watchpoints_triggered (struct target_waitstatus *ws) | |
4617 | { | |
d92524f1 | 4618 | int stopped_by_watchpoint = target_stopped_by_watchpoint (); |
d983da9c DJ |
4619 | CORE_ADDR addr; |
4620 | struct breakpoint *b; | |
4621 | ||
4622 | if (!stopped_by_watchpoint) | |
4623 | { | |
4624 | /* We were not stopped by a watchpoint. Mark all watchpoints | |
4625 | as not triggered. */ | |
4626 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4627 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4628 | { |
4629 | struct watchpoint *w = (struct watchpoint *) b; | |
4630 | ||
4631 | w->watchpoint_triggered = watch_triggered_no; | |
4632 | } | |
d983da9c DJ |
4633 | |
4634 | return 0; | |
4635 | } | |
4636 | ||
4637 | if (!target_stopped_data_address (¤t_target, &addr)) | |
4638 | { | |
4639 | /* We were stopped by a watchpoint, but we don't know where. | |
4640 | Mark all watchpoints as unknown. */ | |
4641 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4642 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4643 | { |
4644 | struct watchpoint *w = (struct watchpoint *) b; | |
4645 | ||
4646 | w->watchpoint_triggered = watch_triggered_unknown; | |
4647 | } | |
d983da9c DJ |
4648 | |
4649 | return stopped_by_watchpoint; | |
4650 | } | |
4651 | ||
4652 | /* The target could report the data address. Mark watchpoints | |
4653 | affected by this data address as triggered, and all others as not | |
4654 | triggered. */ | |
4655 | ||
4656 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4657 | if (is_hardware_watchpoint (b)) |
d983da9c | 4658 | { |
3a5c3e22 | 4659 | struct watchpoint *w = (struct watchpoint *) b; |
a5606eee | 4660 | struct bp_location *loc; |
d983da9c | 4661 | |
3a5c3e22 | 4662 | w->watchpoint_triggered = watch_triggered_no; |
a5606eee | 4663 | for (loc = b->loc; loc; loc = loc->next) |
9c06b0b4 | 4664 | { |
3a5c3e22 | 4665 | if (is_masked_watchpoint (b)) |
9c06b0b4 | 4666 | { |
3a5c3e22 PA |
4667 | CORE_ADDR newaddr = addr & w->hw_wp_mask; |
4668 | CORE_ADDR start = loc->address & w->hw_wp_mask; | |
9c06b0b4 TJB |
4669 | |
4670 | if (newaddr == start) | |
4671 | { | |
3a5c3e22 | 4672 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4673 | break; |
4674 | } | |
4675 | } | |
4676 | /* Exact match not required. Within range is sufficient. */ | |
4677 | else if (target_watchpoint_addr_within_range (¤t_target, | |
4678 | addr, loc->address, | |
4679 | loc->length)) | |
4680 | { | |
3a5c3e22 | 4681 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4682 | break; |
4683 | } | |
4684 | } | |
d983da9c DJ |
4685 | } |
4686 | ||
4687 | return 1; | |
4688 | } | |
4689 | ||
c906108c SS |
4690 | /* Possible return values for watchpoint_check (this can't be an enum |
4691 | because of check_errors). */ | |
4692 | /* The watchpoint has been deleted. */ | |
4693 | #define WP_DELETED 1 | |
4694 | /* The value has changed. */ | |
4695 | #define WP_VALUE_CHANGED 2 | |
4696 | /* The value has not changed. */ | |
4697 | #define WP_VALUE_NOT_CHANGED 3 | |
60e1c644 PA |
4698 | /* Ignore this watchpoint, no matter if the value changed or not. */ |
4699 | #define WP_IGNORE 4 | |
c906108c SS |
4700 | |
4701 | #define BP_TEMPFLAG 1 | |
4702 | #define BP_HARDWAREFLAG 2 | |
4703 | ||
4a64f543 MS |
4704 | /* Evaluate watchpoint condition expression and check if its value |
4705 | changed. | |
553e4c11 JB |
4706 | |
4707 | P should be a pointer to struct bpstat, but is defined as a void * | |
4708 | in order for this function to be usable with catch_errors. */ | |
c906108c SS |
4709 | |
4710 | static int | |
4efb68b1 | 4711 | watchpoint_check (void *p) |
c906108c SS |
4712 | { |
4713 | bpstat bs = (bpstat) p; | |
3a5c3e22 | 4714 | struct watchpoint *b; |
c906108c SS |
4715 | struct frame_info *fr; |
4716 | int within_current_scope; | |
4717 | ||
f431efe5 | 4718 | /* BS is built from an existing struct breakpoint. */ |
2bdf28a0 | 4719 | gdb_assert (bs->breakpoint_at != NULL); |
3a5c3e22 | 4720 | b = (struct watchpoint *) bs->breakpoint_at; |
d0fb5eae | 4721 | |
f6bc2008 PA |
4722 | /* If this is a local watchpoint, we only want to check if the |
4723 | watchpoint frame is in scope if the current thread is the thread | |
4724 | that was used to create the watchpoint. */ | |
4725 | if (!watchpoint_in_thread_scope (b)) | |
60e1c644 | 4726 | return WP_IGNORE; |
f6bc2008 | 4727 | |
c906108c SS |
4728 | if (b->exp_valid_block == NULL) |
4729 | within_current_scope = 1; | |
4730 | else | |
4731 | { | |
edb3359d DJ |
4732 | struct frame_info *frame = get_current_frame (); |
4733 | struct gdbarch *frame_arch = get_frame_arch (frame); | |
4734 | CORE_ADDR frame_pc = get_frame_pc (frame); | |
4735 | ||
4a64f543 MS |
4736 | /* in_function_epilogue_p() returns a non-zero value if we're |
4737 | still in the function but the stack frame has already been | |
4738 | invalidated. Since we can't rely on the values of local | |
4739 | variables after the stack has been destroyed, we are treating | |
4740 | the watchpoint in that state as `not changed' without further | |
4741 | checking. Don't mark watchpoints as changed if the current | |
4742 | frame is in an epilogue - even if they are in some other | |
4743 | frame, our view of the stack is likely to be wrong and | |
4744 | frame_find_by_id could error out. */ | |
a0f49112 | 4745 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) |
60e1c644 | 4746 | return WP_IGNORE; |
a0f49112 | 4747 | |
101dcfbe | 4748 | fr = frame_find_by_id (b->watchpoint_frame); |
c906108c | 4749 | within_current_scope = (fr != NULL); |
69fbadd5 DJ |
4750 | |
4751 | /* If we've gotten confused in the unwinder, we might have | |
4752 | returned a frame that can't describe this variable. */ | |
edb3359d DJ |
4753 | if (within_current_scope) |
4754 | { | |
4755 | struct symbol *function; | |
4756 | ||
4757 | function = get_frame_function (fr); | |
4758 | if (function == NULL | |
4759 | || !contained_in (b->exp_valid_block, | |
4760 | SYMBOL_BLOCK_VALUE (function))) | |
4761 | within_current_scope = 0; | |
4762 | } | |
69fbadd5 | 4763 | |
edb3359d | 4764 | if (within_current_scope) |
c906108c SS |
4765 | /* If we end up stopping, the current frame will get selected |
4766 | in normal_stop. So this call to select_frame won't affect | |
4767 | the user. */ | |
0f7d239c | 4768 | select_frame (fr); |
c906108c | 4769 | } |
c5aa993b | 4770 | |
c906108c SS |
4771 | if (within_current_scope) |
4772 | { | |
4a64f543 MS |
4773 | /* We use value_{,free_to_}mark because it could be a *long* |
4774 | time before we return to the command level and call | |
4775 | free_all_values. We can't call free_all_values because we | |
4776 | might be in the middle of evaluating a function call. */ | |
c906108c | 4777 | |
0cf6dd15 | 4778 | int pc = 0; |
9c06b0b4 | 4779 | struct value *mark; |
fa4727a6 DJ |
4780 | struct value *new_val; |
4781 | ||
3a5c3e22 | 4782 | if (is_masked_watchpoint (&b->base)) |
9c06b0b4 TJB |
4783 | /* Since we don't know the exact trigger address (from |
4784 | stopped_data_address), just tell the user we've triggered | |
4785 | a mask watchpoint. */ | |
4786 | return WP_VALUE_CHANGED; | |
4787 | ||
4788 | mark = value_mark (); | |
0cf6dd15 | 4789 | fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL); |
218d2fc6 | 4790 | |
4a64f543 MS |
4791 | /* We use value_equal_contents instead of value_equal because |
4792 | the latter coerces an array to a pointer, thus comparing just | |
4793 | the address of the array instead of its contents. This is | |
4794 | not what we want. */ | |
fa4727a6 | 4795 | if ((b->val != NULL) != (new_val != NULL) |
218d2fc6 | 4796 | || (b->val != NULL && !value_equal_contents (b->val, new_val))) |
c906108c | 4797 | { |
fa4727a6 DJ |
4798 | if (new_val != NULL) |
4799 | { | |
4800 | release_value (new_val); | |
4801 | value_free_to_mark (mark); | |
4802 | } | |
c906108c SS |
4803 | bs->old_val = b->val; |
4804 | b->val = new_val; | |
fa4727a6 | 4805 | b->val_valid = 1; |
c906108c SS |
4806 | return WP_VALUE_CHANGED; |
4807 | } | |
4808 | else | |
4809 | { | |
60e1c644 | 4810 | /* Nothing changed. */ |
c906108c | 4811 | value_free_to_mark (mark); |
c906108c SS |
4812 | return WP_VALUE_NOT_CHANGED; |
4813 | } | |
4814 | } | |
4815 | else | |
4816 | { | |
79a45e25 PA |
4817 | struct ui_out *uiout = current_uiout; |
4818 | ||
c906108c | 4819 | /* This seems like the only logical thing to do because |
c5aa993b JM |
4820 | if we temporarily ignored the watchpoint, then when |
4821 | we reenter the block in which it is valid it contains | |
4822 | garbage (in the case of a function, it may have two | |
4823 | garbage values, one before and one after the prologue). | |
4824 | So we can't even detect the first assignment to it and | |
4825 | watch after that (since the garbage may or may not equal | |
4826 | the first value assigned). */ | |
348d480f PA |
4827 | /* We print all the stop information in |
4828 | breakpoint_ops->print_it, but in this case, by the time we | |
4829 | call breakpoint_ops->print_it this bp will be deleted | |
4830 | already. So we have no choice but print the information | |
4831 | here. */ | |
9dc5e2a9 | 4832 | if (ui_out_is_mi_like_p (uiout)) |
034dad6f BR |
4833 | ui_out_field_string |
4834 | (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE)); | |
8b93c638 | 4835 | ui_out_text (uiout, "\nWatchpoint "); |
3a5c3e22 | 4836 | ui_out_field_int (uiout, "wpnum", b->base.number); |
3e43a32a MS |
4837 | ui_out_text (uiout, |
4838 | " deleted because the program has left the block in\n\ | |
8b93c638 | 4839 | which its expression is valid.\n"); |
4ce44c66 | 4840 | |
cdac0397 | 4841 | /* Make sure the watchpoint's commands aren't executed. */ |
3a5c3e22 | 4842 | decref_counted_command_line (&b->base.commands); |
d0fb5eae | 4843 | watchpoint_del_at_next_stop (b); |
c906108c SS |
4844 | |
4845 | return WP_DELETED; | |
4846 | } | |
4847 | } | |
4848 | ||
18a18393 | 4849 | /* Return true if it looks like target has stopped due to hitting |
348d480f PA |
4850 | breakpoint location BL. This function does not check if we should |
4851 | stop, only if BL explains the stop. */ | |
4852 | ||
18a18393 | 4853 | static int |
6c95b8df | 4854 | bpstat_check_location (const struct bp_location *bl, |
09ac7c10 TT |
4855 | struct address_space *aspace, CORE_ADDR bp_addr, |
4856 | const struct target_waitstatus *ws) | |
18a18393 VP |
4857 | { |
4858 | struct breakpoint *b = bl->owner; | |
4859 | ||
348d480f | 4860 | /* BL is from an existing breakpoint. */ |
2bdf28a0 JK |
4861 | gdb_assert (b != NULL); |
4862 | ||
09ac7c10 | 4863 | return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws); |
18a18393 VP |
4864 | } |
4865 | ||
3a5c3e22 PA |
4866 | /* Determine if the watched values have actually changed, and we |
4867 | should stop. If not, set BS->stop to 0. */ | |
4868 | ||
18a18393 VP |
4869 | static void |
4870 | bpstat_check_watchpoint (bpstat bs) | |
4871 | { | |
2bdf28a0 | 4872 | const struct bp_location *bl; |
3a5c3e22 | 4873 | struct watchpoint *b; |
2bdf28a0 JK |
4874 | |
4875 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 4876 | bl = bs->bp_location_at; |
2bdf28a0 | 4877 | gdb_assert (bl != NULL); |
3a5c3e22 | 4878 | b = (struct watchpoint *) bs->breakpoint_at; |
2bdf28a0 | 4879 | gdb_assert (b != NULL); |
18a18393 | 4880 | |
18a18393 | 4881 | { |
18a18393 VP |
4882 | int must_check_value = 0; |
4883 | ||
3a5c3e22 | 4884 | if (b->base.type == bp_watchpoint) |
18a18393 VP |
4885 | /* For a software watchpoint, we must always check the |
4886 | watched value. */ | |
4887 | must_check_value = 1; | |
4888 | else if (b->watchpoint_triggered == watch_triggered_yes) | |
4889 | /* We have a hardware watchpoint (read, write, or access) | |
4890 | and the target earlier reported an address watched by | |
4891 | this watchpoint. */ | |
4892 | must_check_value = 1; | |
4893 | else if (b->watchpoint_triggered == watch_triggered_unknown | |
3a5c3e22 | 4894 | && b->base.type == bp_hardware_watchpoint) |
18a18393 VP |
4895 | /* We were stopped by a hardware watchpoint, but the target could |
4896 | not report the data address. We must check the watchpoint's | |
4897 | value. Access and read watchpoints are out of luck; without | |
4898 | a data address, we can't figure it out. */ | |
4899 | must_check_value = 1; | |
3a5c3e22 | 4900 | |
18a18393 VP |
4901 | if (must_check_value) |
4902 | { | |
3e43a32a MS |
4903 | char *message |
4904 | = xstrprintf ("Error evaluating expression for watchpoint %d\n", | |
3a5c3e22 | 4905 | b->base.number); |
18a18393 VP |
4906 | struct cleanup *cleanups = make_cleanup (xfree, message); |
4907 | int e = catch_errors (watchpoint_check, bs, message, | |
4908 | RETURN_MASK_ALL); | |
4909 | do_cleanups (cleanups); | |
4910 | switch (e) | |
4911 | { | |
4912 | case WP_DELETED: | |
4913 | /* We've already printed what needs to be printed. */ | |
4914 | bs->print_it = print_it_done; | |
4915 | /* Stop. */ | |
4916 | break; | |
60e1c644 PA |
4917 | case WP_IGNORE: |
4918 | bs->print_it = print_it_noop; | |
4919 | bs->stop = 0; | |
4920 | break; | |
18a18393 | 4921 | case WP_VALUE_CHANGED: |
3a5c3e22 | 4922 | if (b->base.type == bp_read_watchpoint) |
18a18393 | 4923 | { |
85d721b8 PA |
4924 | /* There are two cases to consider here: |
4925 | ||
4a64f543 | 4926 | 1. We're watching the triggered memory for reads. |
85d721b8 PA |
4927 | In that case, trust the target, and always report |
4928 | the watchpoint hit to the user. Even though | |
4929 | reads don't cause value changes, the value may | |
4930 | have changed since the last time it was read, and | |
4931 | since we're not trapping writes, we will not see | |
4932 | those, and as such we should ignore our notion of | |
4933 | old value. | |
4934 | ||
4a64f543 | 4935 | 2. We're watching the triggered memory for both |
85d721b8 PA |
4936 | reads and writes. There are two ways this may |
4937 | happen: | |
4938 | ||
4a64f543 | 4939 | 2.1. This is a target that can't break on data |
85d721b8 PA |
4940 | reads only, but can break on accesses (reads or |
4941 | writes), such as e.g., x86. We detect this case | |
4942 | at the time we try to insert read watchpoints. | |
4943 | ||
4a64f543 | 4944 | 2.2. Otherwise, the target supports read |
85d721b8 PA |
4945 | watchpoints, but, the user set an access or write |
4946 | watchpoint watching the same memory as this read | |
4947 | watchpoint. | |
4948 | ||
4949 | If we're watching memory writes as well as reads, | |
4950 | ignore watchpoint hits when we find that the | |
4951 | value hasn't changed, as reads don't cause | |
4952 | changes. This still gives false positives when | |
4953 | the program writes the same value to memory as | |
4954 | what there was already in memory (we will confuse | |
4955 | it for a read), but it's much better than | |
4956 | nothing. */ | |
4957 | ||
4958 | int other_write_watchpoint = 0; | |
4959 | ||
4960 | if (bl->watchpoint_type == hw_read) | |
4961 | { | |
4962 | struct breakpoint *other_b; | |
4963 | ||
4964 | ALL_BREAKPOINTS (other_b) | |
3a5c3e22 PA |
4965 | if (other_b->type == bp_hardware_watchpoint |
4966 | || other_b->type == bp_access_watchpoint) | |
85d721b8 | 4967 | { |
3a5c3e22 PA |
4968 | struct watchpoint *other_w = |
4969 | (struct watchpoint *) other_b; | |
4970 | ||
4971 | if (other_w->watchpoint_triggered | |
4972 | == watch_triggered_yes) | |
4973 | { | |
4974 | other_write_watchpoint = 1; | |
4975 | break; | |
4976 | } | |
85d721b8 PA |
4977 | } |
4978 | } | |
4979 | ||
4980 | if (other_write_watchpoint | |
4981 | || bl->watchpoint_type == hw_access) | |
4982 | { | |
4983 | /* We're watching the same memory for writes, | |
4984 | and the value changed since the last time we | |
4985 | updated it, so this trap must be for a write. | |
4986 | Ignore it. */ | |
4987 | bs->print_it = print_it_noop; | |
4988 | bs->stop = 0; | |
4989 | } | |
18a18393 VP |
4990 | } |
4991 | break; | |
4992 | case WP_VALUE_NOT_CHANGED: | |
3a5c3e22 PA |
4993 | if (b->base.type == bp_hardware_watchpoint |
4994 | || b->base.type == bp_watchpoint) | |
18a18393 VP |
4995 | { |
4996 | /* Don't stop: write watchpoints shouldn't fire if | |
4997 | the value hasn't changed. */ | |
4998 | bs->print_it = print_it_noop; | |
4999 | bs->stop = 0; | |
5000 | } | |
5001 | /* Stop. */ | |
5002 | break; | |
5003 | default: | |
5004 | /* Can't happen. */ | |
5005 | case 0: | |
5006 | /* Error from catch_errors. */ | |
3a5c3e22 | 5007 | printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number); |
d0fb5eae | 5008 | watchpoint_del_at_next_stop (b); |
18a18393 VP |
5009 | /* We've already printed what needs to be printed. */ |
5010 | bs->print_it = print_it_done; | |
5011 | break; | |
5012 | } | |
5013 | } | |
5014 | else /* must_check_value == 0 */ | |
5015 | { | |
5016 | /* This is a case where some watchpoint(s) triggered, but | |
5017 | not at the address of this watchpoint, or else no | |
5018 | watchpoint triggered after all. So don't print | |
5019 | anything for this watchpoint. */ | |
5020 | bs->print_it = print_it_noop; | |
5021 | bs->stop = 0; | |
5022 | } | |
5023 | } | |
5024 | } | |
5025 | ||
5026 | ||
5027 | /* Check conditions (condition proper, frame, thread and ignore count) | |
5028 | of breakpoint referred to by BS. If we should not stop for this | |
5029 | breakpoint, set BS->stop to 0. */ | |
f431efe5 | 5030 | |
18a18393 VP |
5031 | static void |
5032 | bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid) | |
5033 | { | |
5034 | int thread_id = pid_to_thread_id (ptid); | |
2bdf28a0 JK |
5035 | const struct bp_location *bl; |
5036 | struct breakpoint *b; | |
5037 | ||
5038 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 5039 | bl = bs->bp_location_at; |
2bdf28a0 | 5040 | gdb_assert (bl != NULL); |
f431efe5 | 5041 | b = bs->breakpoint_at; |
2bdf28a0 | 5042 | gdb_assert (b != NULL); |
18a18393 | 5043 | |
b775012e LM |
5044 | /* Even if the target evaluated the condition on its end and notified GDB, we |
5045 | need to do so again since GDB does not know if we stopped due to a | |
5046 | breakpoint or a single step breakpoint. */ | |
5047 | ||
18a18393 | 5048 | if (frame_id_p (b->frame_id) |
edb3359d | 5049 | && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ()))) |
18a18393 VP |
5050 | bs->stop = 0; |
5051 | else if (bs->stop) | |
5052 | { | |
5053 | int value_is_zero = 0; | |
60e1c644 PA |
5054 | struct expression *cond; |
5055 | ||
7371cf6d PM |
5056 | /* Evaluate Python breakpoints that have a "stop" |
5057 | method implemented. */ | |
5058 | if (b->py_bp_object) | |
5059 | bs->stop = gdbpy_should_stop (b->py_bp_object); | |
5060 | ||
60e1c644 | 5061 | if (is_watchpoint (b)) |
3a5c3e22 PA |
5062 | { |
5063 | struct watchpoint *w = (struct watchpoint *) b; | |
5064 | ||
5065 | cond = w->cond_exp; | |
5066 | } | |
60e1c644 PA |
5067 | else |
5068 | cond = bl->cond; | |
5069 | ||
f431efe5 | 5070 | if (cond && b->disposition != disp_del_at_next_stop) |
18a18393 | 5071 | { |
60e1c644 | 5072 | int within_current_scope = 1; |
3a5c3e22 | 5073 | struct watchpoint * w; |
60e1c644 | 5074 | |
c5bc3a77 DJ |
5075 | /* We use value_mark and value_free_to_mark because it could |
5076 | be a long time before we return to the command level and | |
5077 | call free_all_values. We can't call free_all_values | |
5078 | because we might be in the middle of evaluating a | |
5079 | function call. */ | |
5080 | struct value *mark = value_mark (); | |
5081 | ||
3a5c3e22 PA |
5082 | if (is_watchpoint (b)) |
5083 | w = (struct watchpoint *) b; | |
5084 | else | |
5085 | w = NULL; | |
5086 | ||
edb3359d DJ |
5087 | /* Need to select the frame, with all that implies so that |
5088 | the conditions will have the right context. Because we | |
5089 | use the frame, we will not see an inlined function's | |
5090 | variables when we arrive at a breakpoint at the start | |
5091 | of the inlined function; the current frame will be the | |
5092 | call site. */ | |
3a5c3e22 | 5093 | if (w == NULL || w->cond_exp_valid_block == NULL) |
60e1c644 PA |
5094 | select_frame (get_current_frame ()); |
5095 | else | |
5096 | { | |
5097 | struct frame_info *frame; | |
5098 | ||
5099 | /* For local watchpoint expressions, which particular | |
5100 | instance of a local is being watched matters, so we | |
5101 | keep track of the frame to evaluate the expression | |
5102 | in. To evaluate the condition however, it doesn't | |
5103 | really matter which instantiation of the function | |
5104 | where the condition makes sense triggers the | |
5105 | watchpoint. This allows an expression like "watch | |
5106 | global if q > 10" set in `func', catch writes to | |
5107 | global on all threads that call `func', or catch | |
5108 | writes on all recursive calls of `func' by a single | |
5109 | thread. We simply always evaluate the condition in | |
5110 | the innermost frame that's executing where it makes | |
5111 | sense to evaluate the condition. It seems | |
5112 | intuitive. */ | |
3a5c3e22 | 5113 | frame = block_innermost_frame (w->cond_exp_valid_block); |
60e1c644 PA |
5114 | if (frame != NULL) |
5115 | select_frame (frame); | |
5116 | else | |
5117 | within_current_scope = 0; | |
5118 | } | |
5119 | if (within_current_scope) | |
5120 | value_is_zero | |
5121 | = catch_errors (breakpoint_cond_eval, cond, | |
5122 | "Error in testing breakpoint condition:\n", | |
5123 | RETURN_MASK_ALL); | |
5124 | else | |
5125 | { | |
5126 | warning (_("Watchpoint condition cannot be tested " | |
5127 | "in the current scope")); | |
5128 | /* If we failed to set the right context for this | |
5129 | watchpoint, unconditionally report it. */ | |
5130 | value_is_zero = 0; | |
5131 | } | |
4a64f543 | 5132 | /* FIXME-someday, should give breakpoint #. */ |
c5bc3a77 | 5133 | value_free_to_mark (mark); |
18a18393 | 5134 | } |
60e1c644 PA |
5135 | |
5136 | if (cond && value_is_zero) | |
18a18393 VP |
5137 | { |
5138 | bs->stop = 0; | |
5139 | } | |
5140 | else if (b->thread != -1 && b->thread != thread_id) | |
5141 | { | |
5142 | bs->stop = 0; | |
5143 | } | |
5144 | else if (b->ignore_count > 0) | |
5145 | { | |
5146 | b->ignore_count--; | |
18a18393 | 5147 | bs->stop = 0; |
4a64f543 | 5148 | /* Increase the hit count even though we don't stop. */ |
18a18393 | 5149 | ++(b->hit_count); |
8d3788bd | 5150 | observer_notify_breakpoint_modified (b); |
18a18393 VP |
5151 | } |
5152 | } | |
5153 | } | |
5154 | ||
5155 | ||
9709f61c | 5156 | /* Get a bpstat associated with having just stopped at address |
d983da9c | 5157 | BP_ADDR in thread PTID. |
c906108c | 5158 | |
d983da9c | 5159 | Determine whether we stopped at a breakpoint, etc, or whether we |
4a64f543 MS |
5160 | don't understand this stop. Result is a chain of bpstat's such |
5161 | that: | |
c906108c | 5162 | |
c5aa993b | 5163 | if we don't understand the stop, the result is a null pointer. |
c906108c | 5164 | |
c5aa993b | 5165 | if we understand why we stopped, the result is not null. |
c906108c | 5166 | |
c5aa993b JM |
5167 | Each element of the chain refers to a particular breakpoint or |
5168 | watchpoint at which we have stopped. (We may have stopped for | |
5169 | several reasons concurrently.) | |
c906108c | 5170 | |
c5aa993b JM |
5171 | Each element of the chain has valid next, breakpoint_at, |
5172 | commands, FIXME??? fields. */ | |
c906108c SS |
5173 | |
5174 | bpstat | |
6c95b8df | 5175 | bpstat_stop_status (struct address_space *aspace, |
09ac7c10 TT |
5176 | CORE_ADDR bp_addr, ptid_t ptid, |
5177 | const struct target_waitstatus *ws) | |
c906108c | 5178 | { |
0d381245 | 5179 | struct breakpoint *b = NULL; |
afe38095 | 5180 | struct bp_location *bl; |
20874c92 | 5181 | struct bp_location *loc; |
5760d0ab JK |
5182 | /* First item of allocated bpstat's. */ |
5183 | bpstat bs_head = NULL, *bs_link = &bs_head; | |
c906108c | 5184 | /* Pointer to the last thing in the chain currently. */ |
5760d0ab | 5185 | bpstat bs; |
20874c92 | 5186 | int ix; |
429374b8 | 5187 | int need_remove_insert; |
f431efe5 | 5188 | int removed_any; |
c906108c | 5189 | |
f431efe5 PA |
5190 | /* First, build the bpstat chain with locations that explain a |
5191 | target stop, while being careful to not set the target running, | |
5192 | as that may invalidate locations (in particular watchpoint | |
5193 | locations are recreated). Resuming will happen here with | |
5194 | breakpoint conditions or watchpoint expressions that include | |
5195 | inferior function calls. */ | |
c5aa993b | 5196 | |
429374b8 JK |
5197 | ALL_BREAKPOINTS (b) |
5198 | { | |
5199 | if (!breakpoint_enabled (b) && b->enable_state != bp_permanent) | |
5200 | continue; | |
a5606eee | 5201 | |
429374b8 JK |
5202 | for (bl = b->loc; bl != NULL; bl = bl->next) |
5203 | { | |
4a64f543 MS |
5204 | /* For hardware watchpoints, we look only at the first |
5205 | location. The watchpoint_check function will work on the | |
5206 | entire expression, not the individual locations. For | |
5207 | read watchpoints, the watchpoints_triggered function has | |
5208 | checked all locations already. */ | |
429374b8 JK |
5209 | if (b->type == bp_hardware_watchpoint && bl != b->loc) |
5210 | break; | |
18a18393 | 5211 | |
f6592439 | 5212 | if (!bl->enabled || bl->shlib_disabled) |
429374b8 | 5213 | continue; |
c5aa993b | 5214 | |
09ac7c10 | 5215 | if (!bpstat_check_location (bl, aspace, bp_addr, ws)) |
429374b8 | 5216 | continue; |
c5aa993b | 5217 | |
4a64f543 MS |
5218 | /* Come here if it's a watchpoint, or if the break address |
5219 | matches. */ | |
c5aa993b | 5220 | |
4a64f543 MS |
5221 | bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to |
5222 | explain stop. */ | |
c5aa993b | 5223 | |
f431efe5 PA |
5224 | /* Assume we stop. Should we find a watchpoint that is not |
5225 | actually triggered, or if the condition of the breakpoint | |
5226 | evaluates as false, we'll reset 'stop' to 0. */ | |
429374b8 JK |
5227 | bs->stop = 1; |
5228 | bs->print = 1; | |
d983da9c | 5229 | |
f431efe5 PA |
5230 | /* If this is a scope breakpoint, mark the associated |
5231 | watchpoint as triggered so that we will handle the | |
5232 | out-of-scope event. We'll get to the watchpoint next | |
5233 | iteration. */ | |
d0fb5eae | 5234 | if (b->type == bp_watchpoint_scope && b->related_breakpoint != b) |
3a5c3e22 PA |
5235 | { |
5236 | struct watchpoint *w = (struct watchpoint *) b->related_breakpoint; | |
5237 | ||
5238 | w->watchpoint_triggered = watch_triggered_yes; | |
5239 | } | |
f431efe5 PA |
5240 | } |
5241 | } | |
5242 | ||
5243 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
5244 | { | |
f1310107 | 5245 | if (breakpoint_location_address_match (loc, aspace, bp_addr)) |
f431efe5 | 5246 | { |
5760d0ab | 5247 | bs = bpstat_alloc (loc, &bs_link); |
f431efe5 PA |
5248 | /* For hits of moribund locations, we should just proceed. */ |
5249 | bs->stop = 0; | |
5250 | bs->print = 0; | |
5251 | bs->print_it = print_it_noop; | |
5252 | } | |
5253 | } | |
5254 | ||
edcc5120 TT |
5255 | /* A bit of special processing for shlib breakpoints. We need to |
5256 | process solib loading here, so that the lists of loaded and | |
5257 | unloaded libraries are correct before we handle "catch load" and | |
5258 | "catch unload". */ | |
5259 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
5260 | { | |
5d268276 | 5261 | if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event) |
edcc5120 TT |
5262 | { |
5263 | handle_solib_event (); | |
5264 | break; | |
5265 | } | |
5266 | } | |
5267 | ||
f431efe5 PA |
5268 | /* Now go through the locations that caused the target to stop, and |
5269 | check whether we're interested in reporting this stop to higher | |
5270 | layers, or whether we should resume the target transparently. */ | |
5271 | ||
5272 | removed_any = 0; | |
5273 | ||
5760d0ab | 5274 | for (bs = bs_head; bs != NULL; bs = bs->next) |
f431efe5 PA |
5275 | { |
5276 | if (!bs->stop) | |
5277 | continue; | |
5278 | ||
f431efe5 | 5279 | b = bs->breakpoint_at; |
348d480f PA |
5280 | b->ops->check_status (bs); |
5281 | if (bs->stop) | |
28010a5d | 5282 | { |
348d480f | 5283 | bpstat_check_breakpoint_conditions (bs, ptid); |
f431efe5 | 5284 | |
429374b8 JK |
5285 | if (bs->stop) |
5286 | { | |
5287 | ++(b->hit_count); | |
8d3788bd | 5288 | observer_notify_breakpoint_modified (b); |
c906108c | 5289 | |
4a64f543 | 5290 | /* We will stop here. */ |
429374b8 JK |
5291 | if (b->disposition == disp_disable) |
5292 | { | |
816338b5 SS |
5293 | --(b->enable_count); |
5294 | if (b->enable_count <= 0 | |
5295 | && b->enable_state != bp_permanent) | |
429374b8 | 5296 | b->enable_state = bp_disabled; |
f431efe5 | 5297 | removed_any = 1; |
429374b8 JK |
5298 | } |
5299 | if (b->silent) | |
5300 | bs->print = 0; | |
5301 | bs->commands = b->commands; | |
9add0f1b | 5302 | incref_counted_command_line (bs->commands); |
abf85f46 JK |
5303 | if (command_line_is_silent (bs->commands |
5304 | ? bs->commands->commands : NULL)) | |
5305 | bs->print = 0; | |
429374b8 JK |
5306 | } |
5307 | ||
348d480f | 5308 | } |
a9b3a50f PA |
5309 | |
5310 | /* Print nothing for this entry if we don't stop or don't | |
5311 | print. */ | |
5312 | if (!bs->stop || !bs->print) | |
5313 | bs->print_it = print_it_noop; | |
429374b8 | 5314 | } |
876fa593 | 5315 | |
d983da9c DJ |
5316 | /* If we aren't stopping, the value of some hardware watchpoint may |
5317 | not have changed, but the intermediate memory locations we are | |
5318 | watching may have. Don't bother if we're stopping; this will get | |
5319 | done later. */ | |
d832cb68 | 5320 | need_remove_insert = 0; |
5760d0ab JK |
5321 | if (! bpstat_causes_stop (bs_head)) |
5322 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
d983da9c | 5323 | if (!bs->stop |
f431efe5 PA |
5324 | && bs->breakpoint_at |
5325 | && is_hardware_watchpoint (bs->breakpoint_at)) | |
d983da9c | 5326 | { |
3a5c3e22 PA |
5327 | struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at; |
5328 | ||
5329 | update_watchpoint (w, 0 /* don't reparse. */); | |
d832cb68 | 5330 | need_remove_insert = 1; |
d983da9c DJ |
5331 | } |
5332 | ||
d832cb68 | 5333 | if (need_remove_insert) |
2d134ed3 | 5334 | update_global_location_list (1); |
f431efe5 PA |
5335 | else if (removed_any) |
5336 | update_global_location_list (0); | |
d832cb68 | 5337 | |
5760d0ab | 5338 | return bs_head; |
c906108c | 5339 | } |
628fe4e4 JK |
5340 | |
5341 | static void | |
5342 | handle_jit_event (void) | |
5343 | { | |
5344 | struct frame_info *frame; | |
5345 | struct gdbarch *gdbarch; | |
5346 | ||
5347 | /* Switch terminal for any messages produced by | |
5348 | breakpoint_re_set. */ | |
5349 | target_terminal_ours_for_output (); | |
5350 | ||
5351 | frame = get_current_frame (); | |
5352 | gdbarch = get_frame_arch (frame); | |
5353 | ||
5354 | jit_event_handler (gdbarch); | |
5355 | ||
5356 | target_terminal_inferior (); | |
5357 | } | |
5358 | ||
edcc5120 TT |
5359 | /* Handle an solib event by calling solib_add. */ |
5360 | ||
5361 | void | |
5362 | handle_solib_event (void) | |
5363 | { | |
5364 | clear_program_space_solib_cache (current_inferior ()->pspace); | |
5365 | ||
5366 | /* Check for any newly added shared libraries if we're supposed to | |
5367 | be adding them automatically. Switch terminal for any messages | |
5368 | produced by breakpoint_re_set. */ | |
5369 | target_terminal_ours_for_output (); | |
5370 | #ifdef SOLIB_ADD | |
5371 | SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add); | |
5372 | #else | |
5373 | solib_add (NULL, 0, ¤t_target, auto_solib_add); | |
5374 | #endif | |
5375 | target_terminal_inferior (); | |
5376 | } | |
5377 | ||
628fe4e4 JK |
5378 | /* Prepare WHAT final decision for infrun. */ |
5379 | ||
5380 | /* Decide what infrun needs to do with this bpstat. */ | |
5381 | ||
c906108c | 5382 | struct bpstat_what |
0e30163f | 5383 | bpstat_what (bpstat bs_head) |
c906108c | 5384 | { |
c906108c | 5385 | struct bpstat_what retval; |
628fe4e4 | 5386 | int jit_event = 0; |
0e30163f | 5387 | bpstat bs; |
c906108c | 5388 | |
628fe4e4 | 5389 | retval.main_action = BPSTAT_WHAT_KEEP_CHECKING; |
aa7d318d | 5390 | retval.call_dummy = STOP_NONE; |
186c406b | 5391 | retval.is_longjmp = 0; |
628fe4e4 | 5392 | |
0e30163f | 5393 | for (bs = bs_head; bs != NULL; bs = bs->next) |
c906108c | 5394 | { |
628fe4e4 JK |
5395 | /* Extract this BS's action. After processing each BS, we check |
5396 | if its action overrides all we've seem so far. */ | |
5397 | enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
5398 | enum bptype bptype; | |
5399 | ||
c906108c | 5400 | if (bs->breakpoint_at == NULL) |
628fe4e4 JK |
5401 | { |
5402 | /* I suspect this can happen if it was a momentary | |
5403 | breakpoint which has since been deleted. */ | |
5404 | bptype = bp_none; | |
5405 | } | |
20874c92 | 5406 | else |
f431efe5 | 5407 | bptype = bs->breakpoint_at->type; |
628fe4e4 JK |
5408 | |
5409 | switch (bptype) | |
c906108c SS |
5410 | { |
5411 | case bp_none: | |
628fe4e4 | 5412 | break; |
c906108c SS |
5413 | case bp_breakpoint: |
5414 | case bp_hardware_breakpoint: | |
5415 | case bp_until: | |
5416 | case bp_finish: | |
a9b3a50f | 5417 | case bp_shlib_event: |
c906108c SS |
5418 | if (bs->stop) |
5419 | { | |
5420 | if (bs->print) | |
628fe4e4 | 5421 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c906108c | 5422 | else |
628fe4e4 | 5423 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c SS |
5424 | } |
5425 | else | |
628fe4e4 | 5426 | this_action = BPSTAT_WHAT_SINGLE; |
c906108c SS |
5427 | break; |
5428 | case bp_watchpoint: | |
5429 | case bp_hardware_watchpoint: | |
5430 | case bp_read_watchpoint: | |
5431 | case bp_access_watchpoint: | |
5432 | if (bs->stop) | |
5433 | { | |
5434 | if (bs->print) | |
628fe4e4 | 5435 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c906108c | 5436 | else |
628fe4e4 | 5437 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c SS |
5438 | } |
5439 | else | |
628fe4e4 JK |
5440 | { |
5441 | /* There was a watchpoint, but we're not stopping. | |
5442 | This requires no further action. */ | |
5443 | } | |
c906108c SS |
5444 | break; |
5445 | case bp_longjmp: | |
e2e4d78b | 5446 | case bp_longjmp_call_dummy: |
186c406b | 5447 | case bp_exception: |
628fe4e4 | 5448 | this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME; |
e2e4d78b | 5449 | retval.is_longjmp = bptype != bp_exception; |
c906108c SS |
5450 | break; |
5451 | case bp_longjmp_resume: | |
186c406b | 5452 | case bp_exception_resume: |
628fe4e4 | 5453 | this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME; |
186c406b | 5454 | retval.is_longjmp = bptype == bp_longjmp_resume; |
c906108c SS |
5455 | break; |
5456 | case bp_step_resume: | |
5457 | if (bs->stop) | |
628fe4e4 JK |
5458 | this_action = BPSTAT_WHAT_STEP_RESUME; |
5459 | else | |
c906108c | 5460 | { |
628fe4e4 JK |
5461 | /* It is for the wrong frame. */ |
5462 | this_action = BPSTAT_WHAT_SINGLE; | |
c906108c | 5463 | } |
c906108c | 5464 | break; |
2c03e5be PA |
5465 | case bp_hp_step_resume: |
5466 | if (bs->stop) | |
5467 | this_action = BPSTAT_WHAT_HP_STEP_RESUME; | |
5468 | else | |
5469 | { | |
5470 | /* It is for the wrong frame. */ | |
5471 | this_action = BPSTAT_WHAT_SINGLE; | |
5472 | } | |
5473 | break; | |
c906108c | 5474 | case bp_watchpoint_scope: |
c4093a6a | 5475 | case bp_thread_event: |
1900040c | 5476 | case bp_overlay_event: |
0fd8e87f | 5477 | case bp_longjmp_master: |
aa7d318d | 5478 | case bp_std_terminate_master: |
186c406b | 5479 | case bp_exception_master: |
628fe4e4 | 5480 | this_action = BPSTAT_WHAT_SINGLE; |
c4093a6a | 5481 | break; |
ce78b96d | 5482 | case bp_catchpoint: |
c5aa993b JM |
5483 | if (bs->stop) |
5484 | { | |
5485 | if (bs->print) | |
628fe4e4 | 5486 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c5aa993b | 5487 | else |
628fe4e4 | 5488 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c5aa993b JM |
5489 | } |
5490 | else | |
628fe4e4 JK |
5491 | { |
5492 | /* There was a catchpoint, but we're not stopping. | |
5493 | This requires no further action. */ | |
5494 | } | |
5495 | break; | |
628fe4e4 JK |
5496 | case bp_jit_event: |
5497 | jit_event = 1; | |
5498 | this_action = BPSTAT_WHAT_SINGLE; | |
c5aa993b | 5499 | break; |
c906108c | 5500 | case bp_call_dummy: |
53a5351d JM |
5501 | /* Make sure the action is stop (silent or noisy), |
5502 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5503 | retval.call_dummy = STOP_STACK_DUMMY; |
628fe4e4 | 5504 | this_action = BPSTAT_WHAT_STOP_SILENT; |
aa7d318d TT |
5505 | break; |
5506 | case bp_std_terminate: | |
5507 | /* Make sure the action is stop (silent or noisy), | |
5508 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5509 | retval.call_dummy = STOP_STD_TERMINATE; |
628fe4e4 | 5510 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c | 5511 | break; |
1042e4c0 | 5512 | case bp_tracepoint: |
7a697b8d | 5513 | case bp_fast_tracepoint: |
0fb4aa4b | 5514 | case bp_static_tracepoint: |
1042e4c0 SS |
5515 | /* Tracepoint hits should not be reported back to GDB, and |
5516 | if one got through somehow, it should have been filtered | |
5517 | out already. */ | |
5518 | internal_error (__FILE__, __LINE__, | |
7a697b8d | 5519 | _("bpstat_what: tracepoint encountered")); |
0e30163f JK |
5520 | break; |
5521 | case bp_gnu_ifunc_resolver: | |
5522 | /* Step over it (and insert bp_gnu_ifunc_resolver_return). */ | |
5523 | this_action = BPSTAT_WHAT_SINGLE; | |
5524 | break; | |
5525 | case bp_gnu_ifunc_resolver_return: | |
5526 | /* The breakpoint will be removed, execution will restart from the | |
5527 | PC of the former breakpoint. */ | |
5528 | this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
5529 | break; | |
e7e0cddf SS |
5530 | |
5531 | case bp_dprintf: | |
5532 | this_action = BPSTAT_WHAT_STOP_SILENT; | |
5533 | break; | |
5534 | ||
628fe4e4 JK |
5535 | default: |
5536 | internal_error (__FILE__, __LINE__, | |
5537 | _("bpstat_what: unhandled bptype %d"), (int) bptype); | |
c906108c | 5538 | } |
628fe4e4 JK |
5539 | |
5540 | retval.main_action = max (retval.main_action, this_action); | |
c906108c | 5541 | } |
628fe4e4 | 5542 | |
0e30163f JK |
5543 | /* These operations may affect the bs->breakpoint_at state so they are |
5544 | delayed after MAIN_ACTION is decided above. */ | |
5545 | ||
628fe4e4 JK |
5546 | if (jit_event) |
5547 | { | |
5548 | if (debug_infrun) | |
5549 | fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n"); | |
5550 | ||
5551 | handle_jit_event (); | |
5552 | } | |
5553 | ||
0e30163f JK |
5554 | for (bs = bs_head; bs != NULL; bs = bs->next) |
5555 | { | |
5556 | struct breakpoint *b = bs->breakpoint_at; | |
5557 | ||
5558 | if (b == NULL) | |
5559 | continue; | |
5560 | switch (b->type) | |
5561 | { | |
5562 | case bp_gnu_ifunc_resolver: | |
5563 | gnu_ifunc_resolver_stop (b); | |
5564 | break; | |
5565 | case bp_gnu_ifunc_resolver_return: | |
5566 | gnu_ifunc_resolver_return_stop (b); | |
5567 | break; | |
5568 | } | |
5569 | } | |
5570 | ||
c906108c SS |
5571 | return retval; |
5572 | } | |
5573 | ||
5574 | /* Nonzero if we should step constantly (e.g. watchpoints on machines | |
5575 | without hardware support). This isn't related to a specific bpstat, | |
5576 | just to things like whether watchpoints are set. */ | |
5577 | ||
c5aa993b | 5578 | int |
fba45db2 | 5579 | bpstat_should_step (void) |
c906108c SS |
5580 | { |
5581 | struct breakpoint *b; | |
cc59ec59 | 5582 | |
c906108c | 5583 | ALL_BREAKPOINTS (b) |
717a8278 | 5584 | if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL) |
3172dc30 | 5585 | return 1; |
c906108c SS |
5586 | return 0; |
5587 | } | |
5588 | ||
67822962 PA |
5589 | int |
5590 | bpstat_causes_stop (bpstat bs) | |
5591 | { | |
5592 | for (; bs != NULL; bs = bs->next) | |
5593 | if (bs->stop) | |
5594 | return 1; | |
5595 | ||
5596 | return 0; | |
5597 | } | |
5598 | ||
c906108c | 5599 | \f |
c5aa993b | 5600 | |
170b53b2 UW |
5601 | /* Compute a string of spaces suitable to indent the next line |
5602 | so it starts at the position corresponding to the table column | |
5603 | named COL_NAME in the currently active table of UIOUT. */ | |
5604 | ||
5605 | static char * | |
5606 | wrap_indent_at_field (struct ui_out *uiout, const char *col_name) | |
5607 | { | |
5608 | static char wrap_indent[80]; | |
5609 | int i, total_width, width, align; | |
5610 | char *text; | |
5611 | ||
5612 | total_width = 0; | |
5613 | for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++) | |
5614 | { | |
5615 | if (strcmp (text, col_name) == 0) | |
5616 | { | |
5617 | gdb_assert (total_width < sizeof wrap_indent); | |
5618 | memset (wrap_indent, ' ', total_width); | |
5619 | wrap_indent[total_width] = 0; | |
5620 | ||
5621 | return wrap_indent; | |
5622 | } | |
5623 | ||
5624 | total_width += width + 1; | |
5625 | } | |
5626 | ||
5627 | return NULL; | |
5628 | } | |
5629 | ||
b775012e LM |
5630 | /* Determine if the locations of this breakpoint will have their conditions |
5631 | evaluated by the target, host or a mix of both. Returns the following: | |
5632 | ||
5633 | "host": Host evals condition. | |
5634 | "host or target": Host or Target evals condition. | |
5635 | "target": Target evals condition. | |
5636 | */ | |
5637 | ||
5638 | static const char * | |
5639 | bp_condition_evaluator (struct breakpoint *b) | |
5640 | { | |
5641 | struct bp_location *bl; | |
5642 | char host_evals = 0; | |
5643 | char target_evals = 0; | |
5644 | ||
5645 | if (!b) | |
5646 | return NULL; | |
5647 | ||
5648 | if (!is_breakpoint (b)) | |
5649 | return NULL; | |
5650 | ||
5651 | if (gdb_evaluates_breakpoint_condition_p () | |
5652 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5653 | return condition_evaluation_host; | |
5654 | ||
5655 | for (bl = b->loc; bl; bl = bl->next) | |
5656 | { | |
5657 | if (bl->cond_bytecode) | |
5658 | target_evals++; | |
5659 | else | |
5660 | host_evals++; | |
5661 | } | |
5662 | ||
5663 | if (host_evals && target_evals) | |
5664 | return condition_evaluation_both; | |
5665 | else if (target_evals) | |
5666 | return condition_evaluation_target; | |
5667 | else | |
5668 | return condition_evaluation_host; | |
5669 | } | |
5670 | ||
5671 | /* Determine the breakpoint location's condition evaluator. This is | |
5672 | similar to bp_condition_evaluator, but for locations. */ | |
5673 | ||
5674 | static const char * | |
5675 | bp_location_condition_evaluator (struct bp_location *bl) | |
5676 | { | |
5677 | if (bl && !is_breakpoint (bl->owner)) | |
5678 | return NULL; | |
5679 | ||
5680 | if (gdb_evaluates_breakpoint_condition_p () | |
5681 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5682 | return condition_evaluation_host; | |
5683 | ||
5684 | if (bl && bl->cond_bytecode) | |
5685 | return condition_evaluation_target; | |
5686 | else | |
5687 | return condition_evaluation_host; | |
5688 | } | |
5689 | ||
859825b8 JK |
5690 | /* Print the LOC location out of the list of B->LOC locations. */ |
5691 | ||
170b53b2 UW |
5692 | static void |
5693 | print_breakpoint_location (struct breakpoint *b, | |
5694 | struct bp_location *loc) | |
0d381245 | 5695 | { |
79a45e25 | 5696 | struct ui_out *uiout = current_uiout; |
6c95b8df PA |
5697 | struct cleanup *old_chain = save_current_program_space (); |
5698 | ||
859825b8 JK |
5699 | if (loc != NULL && loc->shlib_disabled) |
5700 | loc = NULL; | |
5701 | ||
6c95b8df PA |
5702 | if (loc != NULL) |
5703 | set_current_program_space (loc->pspace); | |
5704 | ||
56435ebe TT |
5705 | if (b->display_canonical) |
5706 | ui_out_field_string (uiout, "what", b->addr_string); | |
2f202fde | 5707 | else if (loc && loc->symtab) |
0d381245 VP |
5708 | { |
5709 | struct symbol *sym | |
5710 | = find_pc_sect_function (loc->address, loc->section); | |
5711 | if (sym) | |
5712 | { | |
5713 | ui_out_text (uiout, "in "); | |
5714 | ui_out_field_string (uiout, "func", | |
5715 | SYMBOL_PRINT_NAME (sym)); | |
170b53b2 UW |
5716 | ui_out_text (uiout, " "); |
5717 | ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what")); | |
5718 | ui_out_text (uiout, "at "); | |
0d381245 | 5719 | } |
05cba821 JK |
5720 | ui_out_field_string (uiout, "file", |
5721 | symtab_to_filename_for_display (loc->symtab)); | |
0d381245 | 5722 | ui_out_text (uiout, ":"); |
05cba821 | 5723 | |
0d381245 | 5724 | if (ui_out_is_mi_like_p (uiout)) |
2f202fde JK |
5725 | ui_out_field_string (uiout, "fullname", |
5726 | symtab_to_fullname (loc->symtab)); | |
0d381245 | 5727 | |
f8eba3c6 | 5728 | ui_out_field_int (uiout, "line", loc->line_number); |
0d381245 | 5729 | } |
859825b8 | 5730 | else if (loc) |
0d381245 | 5731 | { |
f99d8bf4 PA |
5732 | struct ui_file *stb = mem_fileopen (); |
5733 | struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb); | |
170b53b2 | 5734 | |
f99d8bf4 | 5735 | print_address_symbolic (loc->gdbarch, loc->address, stb, |
22e722e1 | 5736 | demangle, ""); |
0d381245 | 5737 | ui_out_field_stream (uiout, "at", stb); |
170b53b2 UW |
5738 | |
5739 | do_cleanups (stb_chain); | |
0d381245 | 5740 | } |
859825b8 JK |
5741 | else |
5742 | ui_out_field_string (uiout, "pending", b->addr_string); | |
6c95b8df | 5743 | |
b775012e LM |
5744 | if (loc && is_breakpoint (b) |
5745 | && breakpoint_condition_evaluation_mode () == condition_evaluation_target | |
5746 | && bp_condition_evaluator (b) == condition_evaluation_both) | |
5747 | { | |
5748 | ui_out_text (uiout, " ("); | |
5749 | ui_out_field_string (uiout, "evaluated-by", | |
5750 | bp_location_condition_evaluator (loc)); | |
5751 | ui_out_text (uiout, ")"); | |
5752 | } | |
5753 | ||
6c95b8df | 5754 | do_cleanups (old_chain); |
0d381245 VP |
5755 | } |
5756 | ||
269b11a2 PA |
5757 | static const char * |
5758 | bptype_string (enum bptype type) | |
c906108c | 5759 | { |
c4093a6a JM |
5760 | struct ep_type_description |
5761 | { | |
5762 | enum bptype type; | |
5763 | char *description; | |
5764 | }; | |
5765 | static struct ep_type_description bptypes[] = | |
c906108c | 5766 | { |
c5aa993b JM |
5767 | {bp_none, "?deleted?"}, |
5768 | {bp_breakpoint, "breakpoint"}, | |
c906108c | 5769 | {bp_hardware_breakpoint, "hw breakpoint"}, |
c5aa993b JM |
5770 | {bp_until, "until"}, |
5771 | {bp_finish, "finish"}, | |
5772 | {bp_watchpoint, "watchpoint"}, | |
c906108c | 5773 | {bp_hardware_watchpoint, "hw watchpoint"}, |
c5aa993b JM |
5774 | {bp_read_watchpoint, "read watchpoint"}, |
5775 | {bp_access_watchpoint, "acc watchpoint"}, | |
5776 | {bp_longjmp, "longjmp"}, | |
5777 | {bp_longjmp_resume, "longjmp resume"}, | |
e2e4d78b | 5778 | {bp_longjmp_call_dummy, "longjmp for call dummy"}, |
186c406b TT |
5779 | {bp_exception, "exception"}, |
5780 | {bp_exception_resume, "exception resume"}, | |
c5aa993b | 5781 | {bp_step_resume, "step resume"}, |
2c03e5be | 5782 | {bp_hp_step_resume, "high-priority step resume"}, |
c5aa993b JM |
5783 | {bp_watchpoint_scope, "watchpoint scope"}, |
5784 | {bp_call_dummy, "call dummy"}, | |
aa7d318d | 5785 | {bp_std_terminate, "std::terminate"}, |
c5aa993b | 5786 | {bp_shlib_event, "shlib events"}, |
c4093a6a | 5787 | {bp_thread_event, "thread events"}, |
1900040c | 5788 | {bp_overlay_event, "overlay events"}, |
0fd8e87f | 5789 | {bp_longjmp_master, "longjmp master"}, |
aa7d318d | 5790 | {bp_std_terminate_master, "std::terminate master"}, |
186c406b | 5791 | {bp_exception_master, "exception master"}, |
ce78b96d | 5792 | {bp_catchpoint, "catchpoint"}, |
1042e4c0 | 5793 | {bp_tracepoint, "tracepoint"}, |
7a697b8d | 5794 | {bp_fast_tracepoint, "fast tracepoint"}, |
0fb4aa4b | 5795 | {bp_static_tracepoint, "static tracepoint"}, |
e7e0cddf | 5796 | {bp_dprintf, "dprintf"}, |
4efc6507 | 5797 | {bp_jit_event, "jit events"}, |
0e30163f JK |
5798 | {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"}, |
5799 | {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"}, | |
c5aa993b | 5800 | }; |
269b11a2 PA |
5801 | |
5802 | if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0]))) | |
5803 | || ((int) type != bptypes[(int) type].type)) | |
5804 | internal_error (__FILE__, __LINE__, | |
5805 | _("bptypes table does not describe type #%d."), | |
5806 | (int) type); | |
5807 | ||
5808 | return bptypes[(int) type].description; | |
5809 | } | |
5810 | ||
998580f1 MK |
5811 | DEF_VEC_I(int); |
5812 | ||
5813 | /* For MI, output a field named 'thread-groups' with a list as the value. | |
5814 | For CLI, prefix the list with the string 'inf'. */ | |
5815 | ||
5816 | static void | |
5817 | output_thread_groups (struct ui_out *uiout, | |
5818 | const char *field_name, | |
5819 | VEC(int) *inf_num, | |
5820 | int mi_only) | |
5821 | { | |
5822 | struct cleanup *back_to = make_cleanup_ui_out_list_begin_end (uiout, | |
5823 | field_name); | |
5824 | int is_mi = ui_out_is_mi_like_p (uiout); | |
5825 | int inf; | |
5826 | int i; | |
5827 | ||
5828 | /* For backward compatibility, don't display inferiors in CLI unless | |
5829 | there are several. Always display them for MI. */ | |
5830 | if (!is_mi && mi_only) | |
5831 | return; | |
5832 | ||
5833 | for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i) | |
5834 | { | |
5835 | if (is_mi) | |
5836 | { | |
5837 | char mi_group[10]; | |
5838 | ||
5839 | xsnprintf (mi_group, sizeof (mi_group), "i%d", inf); | |
5840 | ui_out_field_string (uiout, NULL, mi_group); | |
5841 | } | |
5842 | else | |
5843 | { | |
5844 | if (i == 0) | |
5845 | ui_out_text (uiout, " inf "); | |
5846 | else | |
5847 | ui_out_text (uiout, ", "); | |
5848 | ||
5849 | ui_out_text (uiout, plongest (inf)); | |
5850 | } | |
5851 | } | |
5852 | ||
5853 | do_cleanups (back_to); | |
5854 | } | |
5855 | ||
269b11a2 PA |
5856 | /* Print B to gdb_stdout. */ |
5857 | ||
5858 | static void | |
5859 | print_one_breakpoint_location (struct breakpoint *b, | |
5860 | struct bp_location *loc, | |
5861 | int loc_number, | |
5862 | struct bp_location **last_loc, | |
269b11a2 PA |
5863 | int allflag) |
5864 | { | |
5865 | struct command_line *l; | |
c2c6d25f | 5866 | static char bpenables[] = "nynny"; |
c906108c | 5867 | |
79a45e25 | 5868 | struct ui_out *uiout = current_uiout; |
0d381245 VP |
5869 | int header_of_multiple = 0; |
5870 | int part_of_multiple = (loc != NULL); | |
79a45b7d TT |
5871 | struct value_print_options opts; |
5872 | ||
5873 | get_user_print_options (&opts); | |
0d381245 VP |
5874 | |
5875 | gdb_assert (!loc || loc_number != 0); | |
4a64f543 MS |
5876 | /* See comment in print_one_breakpoint concerning treatment of |
5877 | breakpoints with single disabled location. */ | |
0d381245 VP |
5878 | if (loc == NULL |
5879 | && (b->loc != NULL | |
5880 | && (b->loc->next != NULL || !b->loc->enabled))) | |
5881 | header_of_multiple = 1; | |
5882 | if (loc == NULL) | |
5883 | loc = b->loc; | |
5884 | ||
c4093a6a JM |
5885 | annotate_record (); |
5886 | ||
5887 | /* 1 */ | |
5888 | annotate_field (0); | |
0d381245 VP |
5889 | if (part_of_multiple) |
5890 | { | |
5891 | char *formatted; | |
0c6773c1 | 5892 | formatted = xstrprintf ("%d.%d", b->number, loc_number); |
0d381245 VP |
5893 | ui_out_field_string (uiout, "number", formatted); |
5894 | xfree (formatted); | |
5895 | } | |
5896 | else | |
5897 | { | |
5898 | ui_out_field_int (uiout, "number", b->number); | |
5899 | } | |
c4093a6a JM |
5900 | |
5901 | /* 2 */ | |
5902 | annotate_field (1); | |
0d381245 VP |
5903 | if (part_of_multiple) |
5904 | ui_out_field_skip (uiout, "type"); | |
269b11a2 PA |
5905 | else |
5906 | ui_out_field_string (uiout, "type", bptype_string (b->type)); | |
c4093a6a JM |
5907 | |
5908 | /* 3 */ | |
5909 | annotate_field (2); | |
0d381245 VP |
5910 | if (part_of_multiple) |
5911 | ui_out_field_skip (uiout, "disp"); | |
5912 | else | |
2cec12e5 | 5913 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); |
0d381245 | 5914 | |
c4093a6a JM |
5915 | |
5916 | /* 4 */ | |
5917 | annotate_field (3); | |
0d381245 | 5918 | if (part_of_multiple) |
54e52265 | 5919 | ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n"); |
0d381245 | 5920 | else |
4a64f543 MS |
5921 | ui_out_field_fmt (uiout, "enabled", "%c", |
5922 | bpenables[(int) b->enable_state]); | |
54e52265 | 5923 | ui_out_spaces (uiout, 2); |
0d381245 | 5924 | |
c4093a6a JM |
5925 | |
5926 | /* 5 and 6 */ | |
3086aeae | 5927 | if (b->ops != NULL && b->ops->print_one != NULL) |
0d381245 | 5928 | { |
4a64f543 MS |
5929 | /* Although the print_one can possibly print all locations, |
5930 | calling it here is not likely to get any nice result. So, | |
5931 | make sure there's just one location. */ | |
0d381245 | 5932 | gdb_assert (b->loc == NULL || b->loc->next == NULL); |
a6d9a66e | 5933 | b->ops->print_one (b, last_loc); |
0d381245 | 5934 | } |
3086aeae DJ |
5935 | else |
5936 | switch (b->type) | |
5937 | { | |
5938 | case bp_none: | |
5939 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 | 5940 | _("print_one_breakpoint: bp_none encountered\n")); |
3086aeae | 5941 | break; |
c906108c | 5942 | |
3086aeae DJ |
5943 | case bp_watchpoint: |
5944 | case bp_hardware_watchpoint: | |
5945 | case bp_read_watchpoint: | |
5946 | case bp_access_watchpoint: | |
3a5c3e22 PA |
5947 | { |
5948 | struct watchpoint *w = (struct watchpoint *) b; | |
5949 | ||
5950 | /* Field 4, the address, is omitted (which makes the columns | |
5951 | not line up too nicely with the headers, but the effect | |
5952 | is relatively readable). */ | |
5953 | if (opts.addressprint) | |
5954 | ui_out_field_skip (uiout, "addr"); | |
5955 | annotate_field (5); | |
5956 | ui_out_field_string (uiout, "what", w->exp_string); | |
5957 | } | |
3086aeae DJ |
5958 | break; |
5959 | ||
3086aeae DJ |
5960 | case bp_breakpoint: |
5961 | case bp_hardware_breakpoint: | |
5962 | case bp_until: | |
5963 | case bp_finish: | |
5964 | case bp_longjmp: | |
5965 | case bp_longjmp_resume: | |
e2e4d78b | 5966 | case bp_longjmp_call_dummy: |
186c406b TT |
5967 | case bp_exception: |
5968 | case bp_exception_resume: | |
3086aeae | 5969 | case bp_step_resume: |
2c03e5be | 5970 | case bp_hp_step_resume: |
3086aeae DJ |
5971 | case bp_watchpoint_scope: |
5972 | case bp_call_dummy: | |
aa7d318d | 5973 | case bp_std_terminate: |
3086aeae DJ |
5974 | case bp_shlib_event: |
5975 | case bp_thread_event: | |
5976 | case bp_overlay_event: | |
0fd8e87f | 5977 | case bp_longjmp_master: |
aa7d318d | 5978 | case bp_std_terminate_master: |
186c406b | 5979 | case bp_exception_master: |
1042e4c0 | 5980 | case bp_tracepoint: |
7a697b8d | 5981 | case bp_fast_tracepoint: |
0fb4aa4b | 5982 | case bp_static_tracepoint: |
e7e0cddf | 5983 | case bp_dprintf: |
4efc6507 | 5984 | case bp_jit_event: |
0e30163f JK |
5985 | case bp_gnu_ifunc_resolver: |
5986 | case bp_gnu_ifunc_resolver_return: | |
79a45b7d | 5987 | if (opts.addressprint) |
3086aeae DJ |
5988 | { |
5989 | annotate_field (4); | |
54e52265 | 5990 | if (header_of_multiple) |
0d381245 | 5991 | ui_out_field_string (uiout, "addr", "<MULTIPLE>"); |
e9bbd7c5 | 5992 | else if (b->loc == NULL || loc->shlib_disabled) |
54e52265 | 5993 | ui_out_field_string (uiout, "addr", "<PENDING>"); |
0101ce28 | 5994 | else |
5af949e3 UW |
5995 | ui_out_field_core_addr (uiout, "addr", |
5996 | loc->gdbarch, loc->address); | |
3086aeae DJ |
5997 | } |
5998 | annotate_field (5); | |
0d381245 | 5999 | if (!header_of_multiple) |
170b53b2 | 6000 | print_breakpoint_location (b, loc); |
0d381245 | 6001 | if (b->loc) |
a6d9a66e | 6002 | *last_loc = b->loc; |
3086aeae DJ |
6003 | break; |
6004 | } | |
c906108c | 6005 | |
6c95b8df | 6006 | |
998580f1 | 6007 | if (loc != NULL && !header_of_multiple) |
6c95b8df PA |
6008 | { |
6009 | struct inferior *inf; | |
998580f1 MK |
6010 | VEC(int) *inf_num = NULL; |
6011 | int mi_only = 1; | |
6c95b8df | 6012 | |
998580f1 | 6013 | ALL_INFERIORS (inf) |
6c95b8df PA |
6014 | { |
6015 | if (inf->pspace == loc->pspace) | |
998580f1 | 6016 | VEC_safe_push (int, inf_num, inf->num); |
6c95b8df | 6017 | } |
998580f1 MK |
6018 | |
6019 | /* For backward compatibility, don't display inferiors in CLI unless | |
6020 | there are several. Always display for MI. */ | |
6021 | if (allflag | |
6022 | || (!gdbarch_has_global_breakpoints (target_gdbarch ()) | |
6023 | && (number_of_program_spaces () > 1 | |
6024 | || number_of_inferiors () > 1) | |
6025 | /* LOC is for existing B, it cannot be in | |
6026 | moribund_locations and thus having NULL OWNER. */ | |
6027 | && loc->owner->type != bp_catchpoint)) | |
6028 | mi_only = 0; | |
6029 | output_thread_groups (uiout, "thread-groups", inf_num, mi_only); | |
6030 | VEC_free (int, inf_num); | |
6c95b8df PA |
6031 | } |
6032 | ||
4a306c9a | 6033 | if (!part_of_multiple) |
c4093a6a | 6034 | { |
4a306c9a JB |
6035 | if (b->thread != -1) |
6036 | { | |
6037 | /* FIXME: This seems to be redundant and lost here; see the | |
4a64f543 | 6038 | "stop only in" line a little further down. */ |
4a306c9a JB |
6039 | ui_out_text (uiout, " thread "); |
6040 | ui_out_field_int (uiout, "thread", b->thread); | |
6041 | } | |
6042 | else if (b->task != 0) | |
6043 | { | |
6044 | ui_out_text (uiout, " task "); | |
6045 | ui_out_field_int (uiout, "task", b->task); | |
6046 | } | |
c4093a6a | 6047 | } |
f1310107 | 6048 | |
8b93c638 | 6049 | ui_out_text (uiout, "\n"); |
f1310107 | 6050 | |
348d480f | 6051 | if (!part_of_multiple) |
f1310107 TJB |
6052 | b->ops->print_one_detail (b, uiout); |
6053 | ||
0d381245 | 6054 | if (part_of_multiple && frame_id_p (b->frame_id)) |
c4093a6a JM |
6055 | { |
6056 | annotate_field (6); | |
8b93c638 | 6057 | ui_out_text (uiout, "\tstop only in stack frame at "); |
e5dd4106 | 6058 | /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside |
818dd999 | 6059 | the frame ID. */ |
5af949e3 UW |
6060 | ui_out_field_core_addr (uiout, "frame", |
6061 | b->gdbarch, b->frame_id.stack_addr); | |
8b93c638 | 6062 | ui_out_text (uiout, "\n"); |
c4093a6a JM |
6063 | } |
6064 | ||
28010a5d | 6065 | if (!part_of_multiple && b->cond_string) |
c4093a6a JM |
6066 | { |
6067 | annotate_field (7); | |
d77f58be | 6068 | if (is_tracepoint (b)) |
1042e4c0 SS |
6069 | ui_out_text (uiout, "\ttrace only if "); |
6070 | else | |
6071 | ui_out_text (uiout, "\tstop only if "); | |
0101ce28 | 6072 | ui_out_field_string (uiout, "cond", b->cond_string); |
b775012e LM |
6073 | |
6074 | /* Print whether the target is doing the breakpoint's condition | |
6075 | evaluation. If GDB is doing the evaluation, don't print anything. */ | |
6076 | if (is_breakpoint (b) | |
6077 | && breakpoint_condition_evaluation_mode () | |
6078 | == condition_evaluation_target) | |
6079 | { | |
6080 | ui_out_text (uiout, " ("); | |
6081 | ui_out_field_string (uiout, "evaluated-by", | |
6082 | bp_condition_evaluator (b)); | |
6083 | ui_out_text (uiout, " evals)"); | |
6084 | } | |
0101ce28 JJ |
6085 | ui_out_text (uiout, "\n"); |
6086 | } | |
6087 | ||
0d381245 | 6088 | if (!part_of_multiple && b->thread != -1) |
c4093a6a | 6089 | { |
4a64f543 | 6090 | /* FIXME should make an annotation for this. */ |
8b93c638 JM |
6091 | ui_out_text (uiout, "\tstop only in thread "); |
6092 | ui_out_field_int (uiout, "thread", b->thread); | |
6093 | ui_out_text (uiout, "\n"); | |
c4093a6a JM |
6094 | } |
6095 | ||
556ec64d YQ |
6096 | if (!part_of_multiple) |
6097 | { | |
6098 | if (b->hit_count) | |
31f56a27 YQ |
6099 | { |
6100 | /* FIXME should make an annotation for this. */ | |
6101 | if (is_catchpoint (b)) | |
6102 | ui_out_text (uiout, "\tcatchpoint"); | |
6103 | else if (is_tracepoint (b)) | |
6104 | ui_out_text (uiout, "\ttracepoint"); | |
6105 | else | |
6106 | ui_out_text (uiout, "\tbreakpoint"); | |
6107 | ui_out_text (uiout, " already hit "); | |
6108 | ui_out_field_int (uiout, "times", b->hit_count); | |
6109 | if (b->hit_count == 1) | |
6110 | ui_out_text (uiout, " time\n"); | |
6111 | else | |
6112 | ui_out_text (uiout, " times\n"); | |
6113 | } | |
556ec64d YQ |
6114 | else |
6115 | { | |
31f56a27 YQ |
6116 | /* Output the count also if it is zero, but only if this is mi. */ |
6117 | if (ui_out_is_mi_like_p (uiout)) | |
6118 | ui_out_field_int (uiout, "times", b->hit_count); | |
556ec64d YQ |
6119 | } |
6120 | } | |
8b93c638 | 6121 | |
0d381245 | 6122 | if (!part_of_multiple && b->ignore_count) |
c4093a6a JM |
6123 | { |
6124 | annotate_field (8); | |
8b93c638 JM |
6125 | ui_out_text (uiout, "\tignore next "); |
6126 | ui_out_field_int (uiout, "ignore", b->ignore_count); | |
6127 | ui_out_text (uiout, " hits\n"); | |
c4093a6a | 6128 | } |
059fb39f | 6129 | |
816338b5 SS |
6130 | /* Note that an enable count of 1 corresponds to "enable once" |
6131 | behavior, which is reported by the combination of enablement and | |
6132 | disposition, so we don't need to mention it here. */ | |
6133 | if (!part_of_multiple && b->enable_count > 1) | |
6134 | { | |
6135 | annotate_field (8); | |
6136 | ui_out_text (uiout, "\tdisable after "); | |
6137 | /* Tweak the wording to clarify that ignore and enable counts | |
6138 | are distinct, and have additive effect. */ | |
6139 | if (b->ignore_count) | |
6140 | ui_out_text (uiout, "additional "); | |
6141 | else | |
6142 | ui_out_text (uiout, "next "); | |
6143 | ui_out_field_int (uiout, "enable", b->enable_count); | |
6144 | ui_out_text (uiout, " hits\n"); | |
6145 | } | |
6146 | ||
f196051f SS |
6147 | if (!part_of_multiple && is_tracepoint (b)) |
6148 | { | |
6149 | struct tracepoint *tp = (struct tracepoint *) b; | |
6150 | ||
6151 | if (tp->traceframe_usage) | |
6152 | { | |
6153 | ui_out_text (uiout, "\ttrace buffer usage "); | |
6154 | ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage); | |
6155 | ui_out_text (uiout, " bytes\n"); | |
6156 | } | |
6157 | } | |
d3ce09f5 | 6158 | |
9add0f1b | 6159 | l = b->commands ? b->commands->commands : NULL; |
059fb39f | 6160 | if (!part_of_multiple && l) |
c4093a6a | 6161 | { |
3b31d625 EZ |
6162 | struct cleanup *script_chain; |
6163 | ||
c4093a6a | 6164 | annotate_field (9); |
3b31d625 | 6165 | script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script"); |
8b93c638 | 6166 | print_command_lines (uiout, l, 4); |
3b31d625 | 6167 | do_cleanups (script_chain); |
c4093a6a | 6168 | } |
d24317b4 | 6169 | |
d9b3f62e | 6170 | if (is_tracepoint (b)) |
1042e4c0 | 6171 | { |
d9b3f62e PA |
6172 | struct tracepoint *t = (struct tracepoint *) b; |
6173 | ||
6174 | if (!part_of_multiple && t->pass_count) | |
6175 | { | |
6176 | annotate_field (10); | |
6177 | ui_out_text (uiout, "\tpass count "); | |
6178 | ui_out_field_int (uiout, "pass", t->pass_count); | |
6179 | ui_out_text (uiout, " \n"); | |
6180 | } | |
f2a8bc8a YQ |
6181 | |
6182 | /* Don't display it when tracepoint or tracepoint location is | |
6183 | pending. */ | |
6184 | if (!header_of_multiple && loc != NULL && !loc->shlib_disabled) | |
6185 | { | |
6186 | annotate_field (11); | |
6187 | ||
6188 | if (ui_out_is_mi_like_p (uiout)) | |
6189 | ui_out_field_string (uiout, "installed", | |
6190 | loc->inserted ? "y" : "n"); | |
6191 | else | |
6192 | { | |
6193 | if (loc->inserted) | |
6194 | ui_out_text (uiout, "\t"); | |
6195 | else | |
6196 | ui_out_text (uiout, "\tnot "); | |
6197 | ui_out_text (uiout, "installed on target\n"); | |
6198 | } | |
6199 | } | |
1042e4c0 SS |
6200 | } |
6201 | ||
d24317b4 VP |
6202 | if (ui_out_is_mi_like_p (uiout) && !part_of_multiple) |
6203 | { | |
3a5c3e22 PA |
6204 | if (is_watchpoint (b)) |
6205 | { | |
6206 | struct watchpoint *w = (struct watchpoint *) b; | |
6207 | ||
6208 | ui_out_field_string (uiout, "original-location", w->exp_string); | |
6209 | } | |
6210 | else if (b->addr_string) | |
d24317b4 | 6211 | ui_out_field_string (uiout, "original-location", b->addr_string); |
d24317b4 | 6212 | } |
c4093a6a | 6213 | } |
c5aa993b | 6214 | |
0d381245 VP |
6215 | static void |
6216 | print_one_breakpoint (struct breakpoint *b, | |
4a64f543 | 6217 | struct bp_location **last_loc, |
6c95b8df | 6218 | int allflag) |
0d381245 | 6219 | { |
8d3788bd | 6220 | struct cleanup *bkpt_chain; |
79a45e25 | 6221 | struct ui_out *uiout = current_uiout; |
8d3788bd VP |
6222 | |
6223 | bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt"); | |
6224 | ||
12c5a436 | 6225 | print_one_breakpoint_location (b, NULL, 0, last_loc, allflag); |
8d3788bd | 6226 | do_cleanups (bkpt_chain); |
0d381245 VP |
6227 | |
6228 | /* If this breakpoint has custom print function, | |
6229 | it's already printed. Otherwise, print individual | |
6230 | locations, if any. */ | |
6231 | if (b->ops == NULL || b->ops->print_one == NULL) | |
6232 | { | |
4a64f543 MS |
6233 | /* If breakpoint has a single location that is disabled, we |
6234 | print it as if it had several locations, since otherwise it's | |
6235 | hard to represent "breakpoint enabled, location disabled" | |
6236 | situation. | |
6237 | ||
6238 | Note that while hardware watchpoints have several locations | |
a3be7890 | 6239 | internally, that's not a property exposed to user. */ |
0d381245 | 6240 | if (b->loc |
a5606eee | 6241 | && !is_hardware_watchpoint (b) |
8d3788bd | 6242 | && (b->loc->next || !b->loc->enabled)) |
0d381245 VP |
6243 | { |
6244 | struct bp_location *loc; | |
6245 | int n = 1; | |
8d3788bd | 6246 | |
0d381245 | 6247 | for (loc = b->loc; loc; loc = loc->next, ++n) |
8d3788bd VP |
6248 | { |
6249 | struct cleanup *inner2 = | |
6250 | make_cleanup_ui_out_tuple_begin_end (uiout, NULL); | |
6251 | print_one_breakpoint_location (b, loc, n, last_loc, allflag); | |
6252 | do_cleanups (inner2); | |
6253 | } | |
0d381245 VP |
6254 | } |
6255 | } | |
6256 | } | |
6257 | ||
a6d9a66e UW |
6258 | static int |
6259 | breakpoint_address_bits (struct breakpoint *b) | |
6260 | { | |
6261 | int print_address_bits = 0; | |
6262 | struct bp_location *loc; | |
6263 | ||
6264 | for (loc = b->loc; loc; loc = loc->next) | |
6265 | { | |
c7437ca6 PA |
6266 | int addr_bit; |
6267 | ||
6268 | /* Software watchpoints that aren't watching memory don't have | |
6269 | an address to print. */ | |
6270 | if (b->type == bp_watchpoint && loc->watchpoint_type == -1) | |
6271 | continue; | |
6272 | ||
6273 | addr_bit = gdbarch_addr_bit (loc->gdbarch); | |
a6d9a66e UW |
6274 | if (addr_bit > print_address_bits) |
6275 | print_address_bits = addr_bit; | |
6276 | } | |
6277 | ||
6278 | return print_address_bits; | |
6279 | } | |
0d381245 | 6280 | |
c4093a6a JM |
6281 | struct captured_breakpoint_query_args |
6282 | { | |
6283 | int bnum; | |
6284 | }; | |
c5aa993b | 6285 | |
c4093a6a | 6286 | static int |
2b65245e | 6287 | do_captured_breakpoint_query (struct ui_out *uiout, void *data) |
c4093a6a JM |
6288 | { |
6289 | struct captured_breakpoint_query_args *args = data; | |
52f0bd74 | 6290 | struct breakpoint *b; |
a6d9a66e | 6291 | struct bp_location *dummy_loc = NULL; |
cc59ec59 | 6292 | |
c4093a6a JM |
6293 | ALL_BREAKPOINTS (b) |
6294 | { | |
6295 | if (args->bnum == b->number) | |
c5aa993b | 6296 | { |
12c5a436 | 6297 | print_one_breakpoint (b, &dummy_loc, 0); |
c4093a6a | 6298 | return GDB_RC_OK; |
c5aa993b | 6299 | } |
c4093a6a JM |
6300 | } |
6301 | return GDB_RC_NONE; | |
6302 | } | |
c5aa993b | 6303 | |
c4093a6a | 6304 | enum gdb_rc |
4a64f543 MS |
6305 | gdb_breakpoint_query (struct ui_out *uiout, int bnum, |
6306 | char **error_message) | |
c4093a6a JM |
6307 | { |
6308 | struct captured_breakpoint_query_args args; | |
cc59ec59 | 6309 | |
c4093a6a JM |
6310 | args.bnum = bnum; |
6311 | /* For the moment we don't trust print_one_breakpoint() to not throw | |
4a64f543 | 6312 | an error. */ |
b0b13bb4 DJ |
6313 | if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, |
6314 | error_message, RETURN_MASK_ALL) < 0) | |
6315 | return GDB_RC_FAIL; | |
6316 | else | |
6317 | return GDB_RC_OK; | |
c4093a6a | 6318 | } |
c5aa993b | 6319 | |
09d682a4 TT |
6320 | /* Return true if this breakpoint was set by the user, false if it is |
6321 | internal or momentary. */ | |
6322 | ||
6323 | int | |
6324 | user_breakpoint_p (struct breakpoint *b) | |
6325 | { | |
46c6471b | 6326 | return b->number > 0; |
09d682a4 TT |
6327 | } |
6328 | ||
7f3b0473 | 6329 | /* Print information on user settable breakpoint (watchpoint, etc) |
d77f58be SS |
6330 | number BNUM. If BNUM is -1 print all user-settable breakpoints. |
6331 | If ALLFLAG is non-zero, include non-user-settable breakpoints. If | |
6332 | FILTER is non-NULL, call it on each breakpoint and only include the | |
6333 | ones for which it returns non-zero. Return the total number of | |
6334 | breakpoints listed. */ | |
c906108c | 6335 | |
d77f58be | 6336 | static int |
e5a67952 | 6337 | breakpoint_1 (char *args, int allflag, |
4a64f543 | 6338 | int (*filter) (const struct breakpoint *)) |
c4093a6a | 6339 | { |
52f0bd74 | 6340 | struct breakpoint *b; |
a6d9a66e | 6341 | struct bp_location *last_loc = NULL; |
7f3b0473 | 6342 | int nr_printable_breakpoints; |
3b31d625 | 6343 | struct cleanup *bkpttbl_chain; |
79a45b7d | 6344 | struct value_print_options opts; |
a6d9a66e | 6345 | int print_address_bits = 0; |
269b11a2 | 6346 | int print_type_col_width = 14; |
79a45e25 | 6347 | struct ui_out *uiout = current_uiout; |
269b11a2 | 6348 | |
79a45b7d TT |
6349 | get_user_print_options (&opts); |
6350 | ||
4a64f543 MS |
6351 | /* Compute the number of rows in the table, as well as the size |
6352 | required for address fields. */ | |
7f3b0473 AC |
6353 | nr_printable_breakpoints = 0; |
6354 | ALL_BREAKPOINTS (b) | |
e5a67952 MS |
6355 | { |
6356 | /* If we have a filter, only list the breakpoints it accepts. */ | |
6357 | if (filter && !filter (b)) | |
6358 | continue; | |
6359 | ||
6360 | /* If we have an "args" string, it is a list of breakpoints to | |
6361 | accept. Skip the others. */ | |
6362 | if (args != NULL && *args != '\0') | |
6363 | { | |
6364 | if (allflag && parse_and_eval_long (args) != b->number) | |
6365 | continue; | |
6366 | if (!allflag && !number_is_in_list (args, b->number)) | |
6367 | continue; | |
6368 | } | |
269b11a2 | 6369 | |
e5a67952 MS |
6370 | if (allflag || user_breakpoint_p (b)) |
6371 | { | |
6372 | int addr_bit, type_len; | |
a6d9a66e | 6373 | |
e5a67952 MS |
6374 | addr_bit = breakpoint_address_bits (b); |
6375 | if (addr_bit > print_address_bits) | |
6376 | print_address_bits = addr_bit; | |
269b11a2 | 6377 | |
e5a67952 MS |
6378 | type_len = strlen (bptype_string (b->type)); |
6379 | if (type_len > print_type_col_width) | |
6380 | print_type_col_width = type_len; | |
6381 | ||
6382 | nr_printable_breakpoints++; | |
6383 | } | |
6384 | } | |
7f3b0473 | 6385 | |
79a45b7d | 6386 | if (opts.addressprint) |
3b31d625 | 6387 | bkpttbl_chain |
3e43a32a MS |
6388 | = make_cleanup_ui_out_table_begin_end (uiout, 6, |
6389 | nr_printable_breakpoints, | |
3b31d625 | 6390 | "BreakpointTable"); |
8b93c638 | 6391 | else |
3b31d625 | 6392 | bkpttbl_chain |
3e43a32a MS |
6393 | = make_cleanup_ui_out_table_begin_end (uiout, 5, |
6394 | nr_printable_breakpoints, | |
3b31d625 | 6395 | "BreakpointTable"); |
8b93c638 | 6396 | |
7f3b0473 | 6397 | if (nr_printable_breakpoints > 0) |
d7faa9e7 AC |
6398 | annotate_breakpoints_headers (); |
6399 | if (nr_printable_breakpoints > 0) | |
6400 | annotate_field (0); | |
4a64f543 | 6401 | ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */ |
d7faa9e7 AC |
6402 | if (nr_printable_breakpoints > 0) |
6403 | annotate_field (1); | |
269b11a2 | 6404 | ui_out_table_header (uiout, print_type_col_width, ui_left, |
4a64f543 | 6405 | "type", "Type"); /* 2 */ |
d7faa9e7 AC |
6406 | if (nr_printable_breakpoints > 0) |
6407 | annotate_field (2); | |
4a64f543 | 6408 | ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */ |
d7faa9e7 AC |
6409 | if (nr_printable_breakpoints > 0) |
6410 | annotate_field (3); | |
54e52265 | 6411 | ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */ |
79a45b7d | 6412 | if (opts.addressprint) |
e5a67952 MS |
6413 | { |
6414 | if (nr_printable_breakpoints > 0) | |
6415 | annotate_field (4); | |
6416 | if (print_address_bits <= 32) | |
6417 | ui_out_table_header (uiout, 10, ui_left, | |
6418 | "addr", "Address"); /* 5 */ | |
6419 | else | |
6420 | ui_out_table_header (uiout, 18, ui_left, | |
6421 | "addr", "Address"); /* 5 */ | |
6422 | } | |
d7faa9e7 AC |
6423 | if (nr_printable_breakpoints > 0) |
6424 | annotate_field (5); | |
6425 | ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */ | |
6426 | ui_out_table_body (uiout); | |
6427 | if (nr_printable_breakpoints > 0) | |
6428 | annotate_breakpoints_table (); | |
7f3b0473 | 6429 | |
c4093a6a | 6430 | ALL_BREAKPOINTS (b) |
e5a67952 MS |
6431 | { |
6432 | QUIT; | |
6433 | /* If we have a filter, only list the breakpoints it accepts. */ | |
6434 | if (filter && !filter (b)) | |
6435 | continue; | |
6436 | ||
6437 | /* If we have an "args" string, it is a list of breakpoints to | |
6438 | accept. Skip the others. */ | |
6439 | ||
6440 | if (args != NULL && *args != '\0') | |
6441 | { | |
6442 | if (allflag) /* maintenance info breakpoint */ | |
6443 | { | |
6444 | if (parse_and_eval_long (args) != b->number) | |
6445 | continue; | |
6446 | } | |
6447 | else /* all others */ | |
6448 | { | |
6449 | if (!number_is_in_list (args, b->number)) | |
6450 | continue; | |
6451 | } | |
6452 | } | |
6453 | /* We only print out user settable breakpoints unless the | |
6454 | allflag is set. */ | |
6455 | if (allflag || user_breakpoint_p (b)) | |
12c5a436 | 6456 | print_one_breakpoint (b, &last_loc, allflag); |
e5a67952 MS |
6457 | } |
6458 | ||
3b31d625 | 6459 | do_cleanups (bkpttbl_chain); |
698384cd | 6460 | |
7f3b0473 | 6461 | if (nr_printable_breakpoints == 0) |
c906108c | 6462 | { |
4a64f543 MS |
6463 | /* If there's a filter, let the caller decide how to report |
6464 | empty list. */ | |
d77f58be SS |
6465 | if (!filter) |
6466 | { | |
e5a67952 | 6467 | if (args == NULL || *args == '\0') |
d77f58be SS |
6468 | ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n"); |
6469 | else | |
4a64f543 | 6470 | ui_out_message (uiout, 0, |
e5a67952 MS |
6471 | "No breakpoint or watchpoint matching '%s'.\n", |
6472 | args); | |
d77f58be | 6473 | } |
c906108c SS |
6474 | } |
6475 | else | |
c4093a6a | 6476 | { |
a6d9a66e UW |
6477 | if (last_loc && !server_command) |
6478 | set_next_address (last_loc->gdbarch, last_loc->address); | |
c4093a6a | 6479 | } |
c906108c | 6480 | |
4a64f543 | 6481 | /* FIXME? Should this be moved up so that it is only called when |
c4093a6a | 6482 | there have been breakpoints? */ |
c906108c | 6483 | annotate_breakpoints_table_end (); |
d77f58be SS |
6484 | |
6485 | return nr_printable_breakpoints; | |
c906108c SS |
6486 | } |
6487 | ||
ad443146 SS |
6488 | /* Display the value of default-collect in a way that is generally |
6489 | compatible with the breakpoint list. */ | |
6490 | ||
6491 | static void | |
6492 | default_collect_info (void) | |
6493 | { | |
79a45e25 PA |
6494 | struct ui_out *uiout = current_uiout; |
6495 | ||
ad443146 SS |
6496 | /* If it has no value (which is frequently the case), say nothing; a |
6497 | message like "No default-collect." gets in user's face when it's | |
6498 | not wanted. */ | |
6499 | if (!*default_collect) | |
6500 | return; | |
6501 | ||
6502 | /* The following phrase lines up nicely with per-tracepoint collect | |
6503 | actions. */ | |
6504 | ui_out_text (uiout, "default collect "); | |
6505 | ui_out_field_string (uiout, "default-collect", default_collect); | |
6506 | ui_out_text (uiout, " \n"); | |
6507 | } | |
6508 | ||
c906108c | 6509 | static void |
e5a67952 | 6510 | breakpoints_info (char *args, int from_tty) |
c906108c | 6511 | { |
e5a67952 | 6512 | breakpoint_1 (args, 0, NULL); |
ad443146 SS |
6513 | |
6514 | default_collect_info (); | |
d77f58be SS |
6515 | } |
6516 | ||
6517 | static void | |
e5a67952 | 6518 | watchpoints_info (char *args, int from_tty) |
d77f58be | 6519 | { |
e5a67952 | 6520 | int num_printed = breakpoint_1 (args, 0, is_watchpoint); |
79a45e25 | 6521 | struct ui_out *uiout = current_uiout; |
d77f58be SS |
6522 | |
6523 | if (num_printed == 0) | |
6524 | { | |
e5a67952 | 6525 | if (args == NULL || *args == '\0') |
d77f58be SS |
6526 | ui_out_message (uiout, 0, "No watchpoints.\n"); |
6527 | else | |
e5a67952 | 6528 | ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args); |
d77f58be | 6529 | } |
c906108c SS |
6530 | } |
6531 | ||
7a292a7a | 6532 | static void |
e5a67952 | 6533 | maintenance_info_breakpoints (char *args, int from_tty) |
c906108c | 6534 | { |
e5a67952 | 6535 | breakpoint_1 (args, 1, NULL); |
ad443146 SS |
6536 | |
6537 | default_collect_info (); | |
c906108c SS |
6538 | } |
6539 | ||
0d381245 | 6540 | static int |
714835d5 | 6541 | breakpoint_has_pc (struct breakpoint *b, |
6c95b8df | 6542 | struct program_space *pspace, |
714835d5 | 6543 | CORE_ADDR pc, struct obj_section *section) |
0d381245 VP |
6544 | { |
6545 | struct bp_location *bl = b->loc; | |
cc59ec59 | 6546 | |
0d381245 VP |
6547 | for (; bl; bl = bl->next) |
6548 | { | |
6c95b8df PA |
6549 | if (bl->pspace == pspace |
6550 | && bl->address == pc | |
0d381245 VP |
6551 | && (!overlay_debugging || bl->section == section)) |
6552 | return 1; | |
6553 | } | |
6554 | return 0; | |
6555 | } | |
6556 | ||
672f9b60 | 6557 | /* Print a message describing any user-breakpoints set at PC. This |
6c95b8df PA |
6558 | concerns with logical breakpoints, so we match program spaces, not |
6559 | address spaces. */ | |
c906108c SS |
6560 | |
6561 | static void | |
6c95b8df PA |
6562 | describe_other_breakpoints (struct gdbarch *gdbarch, |
6563 | struct program_space *pspace, CORE_ADDR pc, | |
5af949e3 | 6564 | struct obj_section *section, int thread) |
c906108c | 6565 | { |
52f0bd74 AC |
6566 | int others = 0; |
6567 | struct breakpoint *b; | |
c906108c SS |
6568 | |
6569 | ALL_BREAKPOINTS (b) | |
672f9b60 KP |
6570 | others += (user_breakpoint_p (b) |
6571 | && breakpoint_has_pc (b, pspace, pc, section)); | |
c906108c SS |
6572 | if (others > 0) |
6573 | { | |
a3f17187 AC |
6574 | if (others == 1) |
6575 | printf_filtered (_("Note: breakpoint ")); | |
6576 | else /* if (others == ???) */ | |
6577 | printf_filtered (_("Note: breakpoints ")); | |
c906108c | 6578 | ALL_BREAKPOINTS (b) |
672f9b60 | 6579 | if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section)) |
0d381245 VP |
6580 | { |
6581 | others--; | |
6582 | printf_filtered ("%d", b->number); | |
6583 | if (b->thread == -1 && thread != -1) | |
6584 | printf_filtered (" (all threads)"); | |
6585 | else if (b->thread != -1) | |
6586 | printf_filtered (" (thread %d)", b->thread); | |
6587 | printf_filtered ("%s%s ", | |
059fb39f | 6588 | ((b->enable_state == bp_disabled |
f8eba3c6 | 6589 | || b->enable_state == bp_call_disabled) |
0d381245 VP |
6590 | ? " (disabled)" |
6591 | : b->enable_state == bp_permanent | |
6592 | ? " (permanent)" | |
6593 | : ""), | |
6594 | (others > 1) ? "," | |
6595 | : ((others == 1) ? " and" : "")); | |
6596 | } | |
a3f17187 | 6597 | printf_filtered (_("also set at pc ")); |
5af949e3 | 6598 | fputs_filtered (paddress (gdbarch, pc), gdb_stdout); |
c906108c SS |
6599 | printf_filtered (".\n"); |
6600 | } | |
6601 | } | |
6602 | \f | |
c906108c | 6603 | |
e4f237da KB |
6604 | /* Return true iff it is meaningful to use the address member of |
6605 | BPT. For some breakpoint types, the address member is irrelevant | |
6606 | and it makes no sense to attempt to compare it to other addresses | |
6607 | (or use it for any other purpose either). | |
6608 | ||
4a64f543 MS |
6609 | More specifically, each of the following breakpoint types will |
6610 | always have a zero valued address and we don't want to mark | |
6611 | breakpoints of any of these types to be a duplicate of an actual | |
6612 | breakpoint at address zero: | |
e4f237da KB |
6613 | |
6614 | bp_watchpoint | |
2d134ed3 PA |
6615 | bp_catchpoint |
6616 | ||
6617 | */ | |
e4f237da KB |
6618 | |
6619 | static int | |
6620 | breakpoint_address_is_meaningful (struct breakpoint *bpt) | |
6621 | { | |
6622 | enum bptype type = bpt->type; | |
6623 | ||
2d134ed3 PA |
6624 | return (type != bp_watchpoint && type != bp_catchpoint); |
6625 | } | |
6626 | ||
6627 | /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns | |
6628 | true if LOC1 and LOC2 represent the same watchpoint location. */ | |
6629 | ||
6630 | static int | |
4a64f543 MS |
6631 | watchpoint_locations_match (struct bp_location *loc1, |
6632 | struct bp_location *loc2) | |
2d134ed3 | 6633 | { |
3a5c3e22 PA |
6634 | struct watchpoint *w1 = (struct watchpoint *) loc1->owner; |
6635 | struct watchpoint *w2 = (struct watchpoint *) loc2->owner; | |
6636 | ||
6637 | /* Both of them must exist. */ | |
6638 | gdb_assert (w1 != NULL); | |
6639 | gdb_assert (w2 != NULL); | |
2bdf28a0 | 6640 | |
4a64f543 MS |
6641 | /* If the target can evaluate the condition expression in hardware, |
6642 | then we we need to insert both watchpoints even if they are at | |
6643 | the same place. Otherwise the watchpoint will only trigger when | |
6644 | the condition of whichever watchpoint was inserted evaluates to | |
6645 | true, not giving a chance for GDB to check the condition of the | |
6646 | other watchpoint. */ | |
3a5c3e22 | 6647 | if ((w1->cond_exp |
4a64f543 MS |
6648 | && target_can_accel_watchpoint_condition (loc1->address, |
6649 | loc1->length, | |
0cf6dd15 | 6650 | loc1->watchpoint_type, |
3a5c3e22 PA |
6651 | w1->cond_exp)) |
6652 | || (w2->cond_exp | |
4a64f543 MS |
6653 | && target_can_accel_watchpoint_condition (loc2->address, |
6654 | loc2->length, | |
0cf6dd15 | 6655 | loc2->watchpoint_type, |
3a5c3e22 | 6656 | w2->cond_exp))) |
0cf6dd15 TJB |
6657 | return 0; |
6658 | ||
85d721b8 PA |
6659 | /* Note that this checks the owner's type, not the location's. In |
6660 | case the target does not support read watchpoints, but does | |
6661 | support access watchpoints, we'll have bp_read_watchpoint | |
6662 | watchpoints with hw_access locations. Those should be considered | |
6663 | duplicates of hw_read locations. The hw_read locations will | |
6664 | become hw_access locations later. */ | |
2d134ed3 PA |
6665 | return (loc1->owner->type == loc2->owner->type |
6666 | && loc1->pspace->aspace == loc2->pspace->aspace | |
6667 | && loc1->address == loc2->address | |
6668 | && loc1->length == loc2->length); | |
e4f237da KB |
6669 | } |
6670 | ||
6c95b8df PA |
6671 | /* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the |
6672 | same breakpoint location. In most targets, this can only be true | |
6673 | if ASPACE1 matches ASPACE2. On targets that have global | |
6674 | breakpoints, the address space doesn't really matter. */ | |
6675 | ||
6676 | static int | |
6677 | breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1, | |
6678 | struct address_space *aspace2, CORE_ADDR addr2) | |
6679 | { | |
f5656ead | 6680 | return ((gdbarch_has_global_breakpoints (target_gdbarch ()) |
6c95b8df PA |
6681 | || aspace1 == aspace2) |
6682 | && addr1 == addr2); | |
6683 | } | |
6684 | ||
f1310107 TJB |
6685 | /* Returns true if {ASPACE2,ADDR2} falls within the range determined by |
6686 | {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1 | |
6687 | matches ASPACE2. On targets that have global breakpoints, the address | |
6688 | space doesn't really matter. */ | |
6689 | ||
6690 | static int | |
6691 | breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1, | |
6692 | int len1, struct address_space *aspace2, | |
6693 | CORE_ADDR addr2) | |
6694 | { | |
f5656ead | 6695 | return ((gdbarch_has_global_breakpoints (target_gdbarch ()) |
f1310107 TJB |
6696 | || aspace1 == aspace2) |
6697 | && addr2 >= addr1 && addr2 < addr1 + len1); | |
6698 | } | |
6699 | ||
6700 | /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be | |
6701 | a ranged breakpoint. In most targets, a match happens only if ASPACE | |
6702 | matches the breakpoint's address space. On targets that have global | |
6703 | breakpoints, the address space doesn't really matter. */ | |
6704 | ||
6705 | static int | |
6706 | breakpoint_location_address_match (struct bp_location *bl, | |
6707 | struct address_space *aspace, | |
6708 | CORE_ADDR addr) | |
6709 | { | |
6710 | return (breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6711 | aspace, addr) | |
6712 | || (bl->length | |
6713 | && breakpoint_address_match_range (bl->pspace->aspace, | |
6714 | bl->address, bl->length, | |
6715 | aspace, addr))); | |
6716 | } | |
6717 | ||
1e4d1764 YQ |
6718 | /* If LOC1 and LOC2's owners are not tracepoints, returns false directly. |
6719 | Then, if LOC1 and LOC2 represent the same tracepoint location, returns | |
6720 | true, otherwise returns false. */ | |
6721 | ||
6722 | static int | |
6723 | tracepoint_locations_match (struct bp_location *loc1, | |
6724 | struct bp_location *loc2) | |
6725 | { | |
6726 | if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner)) | |
6727 | /* Since tracepoint locations are never duplicated with others', tracepoint | |
6728 | locations at the same address of different tracepoints are regarded as | |
6729 | different locations. */ | |
6730 | return (loc1->address == loc2->address && loc1->owner == loc2->owner); | |
6731 | else | |
6732 | return 0; | |
6733 | } | |
6734 | ||
2d134ed3 PA |
6735 | /* Assuming LOC1 and LOC2's types' have meaningful target addresses |
6736 | (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2 | |
6737 | represent the same location. */ | |
6738 | ||
6739 | static int | |
4a64f543 MS |
6740 | breakpoint_locations_match (struct bp_location *loc1, |
6741 | struct bp_location *loc2) | |
2d134ed3 | 6742 | { |
2bdf28a0 JK |
6743 | int hw_point1, hw_point2; |
6744 | ||
6745 | /* Both of them must not be in moribund_locations. */ | |
6746 | gdb_assert (loc1->owner != NULL); | |
6747 | gdb_assert (loc2->owner != NULL); | |
6748 | ||
6749 | hw_point1 = is_hardware_watchpoint (loc1->owner); | |
6750 | hw_point2 = is_hardware_watchpoint (loc2->owner); | |
2d134ed3 PA |
6751 | |
6752 | if (hw_point1 != hw_point2) | |
6753 | return 0; | |
6754 | else if (hw_point1) | |
6755 | return watchpoint_locations_match (loc1, loc2); | |
1e4d1764 YQ |
6756 | else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner)) |
6757 | return tracepoint_locations_match (loc1, loc2); | |
2d134ed3 | 6758 | else |
f1310107 TJB |
6759 | /* We compare bp_location.length in order to cover ranged breakpoints. */ |
6760 | return (breakpoint_address_match (loc1->pspace->aspace, loc1->address, | |
6761 | loc2->pspace->aspace, loc2->address) | |
6762 | && loc1->length == loc2->length); | |
2d134ed3 PA |
6763 | } |
6764 | ||
76897487 KB |
6765 | static void |
6766 | breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr, | |
6767 | int bnum, int have_bnum) | |
6768 | { | |
f63fbe86 MS |
6769 | /* The longest string possibly returned by hex_string_custom |
6770 | is 50 chars. These must be at least that big for safety. */ | |
6771 | char astr1[64]; | |
6772 | char astr2[64]; | |
76897487 | 6773 | |
bb599908 PH |
6774 | strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8)); |
6775 | strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8)); | |
76897487 | 6776 | if (have_bnum) |
8a3fe4f8 | 6777 | warning (_("Breakpoint %d address previously adjusted from %s to %s."), |
76897487 KB |
6778 | bnum, astr1, astr2); |
6779 | else | |
8a3fe4f8 | 6780 | warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2); |
76897487 KB |
6781 | } |
6782 | ||
4a64f543 MS |
6783 | /* Adjust a breakpoint's address to account for architectural |
6784 | constraints on breakpoint placement. Return the adjusted address. | |
6785 | Note: Very few targets require this kind of adjustment. For most | |
6786 | targets, this function is simply the identity function. */ | |
76897487 KB |
6787 | |
6788 | static CORE_ADDR | |
a6d9a66e UW |
6789 | adjust_breakpoint_address (struct gdbarch *gdbarch, |
6790 | CORE_ADDR bpaddr, enum bptype bptype) | |
76897487 | 6791 | { |
a6d9a66e | 6792 | if (!gdbarch_adjust_breakpoint_address_p (gdbarch)) |
76897487 KB |
6793 | { |
6794 | /* Very few targets need any kind of breakpoint adjustment. */ | |
6795 | return bpaddr; | |
6796 | } | |
88f7da05 KB |
6797 | else if (bptype == bp_watchpoint |
6798 | || bptype == bp_hardware_watchpoint | |
6799 | || bptype == bp_read_watchpoint | |
6800 | || bptype == bp_access_watchpoint | |
fe798b75 | 6801 | || bptype == bp_catchpoint) |
88f7da05 KB |
6802 | { |
6803 | /* Watchpoints and the various bp_catch_* eventpoints should not | |
6804 | have their addresses modified. */ | |
6805 | return bpaddr; | |
6806 | } | |
76897487 KB |
6807 | else |
6808 | { | |
6809 | CORE_ADDR adjusted_bpaddr; | |
6810 | ||
6811 | /* Some targets have architectural constraints on the placement | |
6812 | of breakpoint instructions. Obtain the adjusted address. */ | |
a6d9a66e | 6813 | adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr); |
76897487 KB |
6814 | |
6815 | /* An adjusted breakpoint address can significantly alter | |
6816 | a user's expectations. Print a warning if an adjustment | |
6817 | is required. */ | |
6818 | if (adjusted_bpaddr != bpaddr) | |
6819 | breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0); | |
6820 | ||
6821 | return adjusted_bpaddr; | |
6822 | } | |
6823 | } | |
6824 | ||
28010a5d PA |
6825 | void |
6826 | init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops, | |
6827 | struct breakpoint *owner) | |
7cc221ef | 6828 | { |
7cc221ef DJ |
6829 | memset (loc, 0, sizeof (*loc)); |
6830 | ||
348d480f PA |
6831 | gdb_assert (ops != NULL); |
6832 | ||
28010a5d PA |
6833 | loc->ops = ops; |
6834 | loc->owner = owner; | |
511a6cd4 | 6835 | loc->cond = NULL; |
b775012e | 6836 | loc->cond_bytecode = NULL; |
0d381245 VP |
6837 | loc->shlib_disabled = 0; |
6838 | loc->enabled = 1; | |
e049a4b5 | 6839 | |
28010a5d | 6840 | switch (owner->type) |
e049a4b5 DJ |
6841 | { |
6842 | case bp_breakpoint: | |
6843 | case bp_until: | |
6844 | case bp_finish: | |
6845 | case bp_longjmp: | |
6846 | case bp_longjmp_resume: | |
e2e4d78b | 6847 | case bp_longjmp_call_dummy: |
186c406b TT |
6848 | case bp_exception: |
6849 | case bp_exception_resume: | |
e049a4b5 | 6850 | case bp_step_resume: |
2c03e5be | 6851 | case bp_hp_step_resume: |
e049a4b5 DJ |
6852 | case bp_watchpoint_scope: |
6853 | case bp_call_dummy: | |
aa7d318d | 6854 | case bp_std_terminate: |
e049a4b5 DJ |
6855 | case bp_shlib_event: |
6856 | case bp_thread_event: | |
6857 | case bp_overlay_event: | |
4efc6507 | 6858 | case bp_jit_event: |
0fd8e87f | 6859 | case bp_longjmp_master: |
aa7d318d | 6860 | case bp_std_terminate_master: |
186c406b | 6861 | case bp_exception_master: |
0e30163f JK |
6862 | case bp_gnu_ifunc_resolver: |
6863 | case bp_gnu_ifunc_resolver_return: | |
e7e0cddf | 6864 | case bp_dprintf: |
e049a4b5 | 6865 | loc->loc_type = bp_loc_software_breakpoint; |
b775012e | 6866 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6867 | break; |
6868 | case bp_hardware_breakpoint: | |
6869 | loc->loc_type = bp_loc_hardware_breakpoint; | |
b775012e | 6870 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6871 | break; |
6872 | case bp_hardware_watchpoint: | |
6873 | case bp_read_watchpoint: | |
6874 | case bp_access_watchpoint: | |
6875 | loc->loc_type = bp_loc_hardware_watchpoint; | |
6876 | break; | |
6877 | case bp_watchpoint: | |
ce78b96d | 6878 | case bp_catchpoint: |
15c3d785 PA |
6879 | case bp_tracepoint: |
6880 | case bp_fast_tracepoint: | |
0fb4aa4b | 6881 | case bp_static_tracepoint: |
e049a4b5 DJ |
6882 | loc->loc_type = bp_loc_other; |
6883 | break; | |
6884 | default: | |
e2e0b3e5 | 6885 | internal_error (__FILE__, __LINE__, _("unknown breakpoint type")); |
e049a4b5 DJ |
6886 | } |
6887 | ||
f431efe5 | 6888 | loc->refc = 1; |
28010a5d PA |
6889 | } |
6890 | ||
6891 | /* Allocate a struct bp_location. */ | |
6892 | ||
6893 | static struct bp_location * | |
6894 | allocate_bp_location (struct breakpoint *bpt) | |
6895 | { | |
348d480f PA |
6896 | return bpt->ops->allocate_location (bpt); |
6897 | } | |
7cc221ef | 6898 | |
f431efe5 PA |
6899 | static void |
6900 | free_bp_location (struct bp_location *loc) | |
fe3f5fa8 | 6901 | { |
348d480f | 6902 | loc->ops->dtor (loc); |
fe3f5fa8 VP |
6903 | xfree (loc); |
6904 | } | |
6905 | ||
f431efe5 PA |
6906 | /* Increment reference count. */ |
6907 | ||
6908 | static void | |
6909 | incref_bp_location (struct bp_location *bl) | |
6910 | { | |
6911 | ++bl->refc; | |
6912 | } | |
6913 | ||
6914 | /* Decrement reference count. If the reference count reaches 0, | |
6915 | destroy the bp_location. Sets *BLP to NULL. */ | |
6916 | ||
6917 | static void | |
6918 | decref_bp_location (struct bp_location **blp) | |
6919 | { | |
0807b50c PA |
6920 | gdb_assert ((*blp)->refc > 0); |
6921 | ||
f431efe5 PA |
6922 | if (--(*blp)->refc == 0) |
6923 | free_bp_location (*blp); | |
6924 | *blp = NULL; | |
6925 | } | |
6926 | ||
346774a9 | 6927 | /* Add breakpoint B at the end of the global breakpoint chain. */ |
c906108c | 6928 | |
346774a9 PA |
6929 | static void |
6930 | add_to_breakpoint_chain (struct breakpoint *b) | |
c906108c | 6931 | { |
346774a9 | 6932 | struct breakpoint *b1; |
c906108c | 6933 | |
346774a9 PA |
6934 | /* Add this breakpoint to the end of the chain so that a list of |
6935 | breakpoints will come out in order of increasing numbers. */ | |
6936 | ||
6937 | b1 = breakpoint_chain; | |
6938 | if (b1 == 0) | |
6939 | breakpoint_chain = b; | |
6940 | else | |
6941 | { | |
6942 | while (b1->next) | |
6943 | b1 = b1->next; | |
6944 | b1->next = b; | |
6945 | } | |
6946 | } | |
6947 | ||
6948 | /* Initializes breakpoint B with type BPTYPE and no locations yet. */ | |
6949 | ||
6950 | static void | |
6951 | init_raw_breakpoint_without_location (struct breakpoint *b, | |
6952 | struct gdbarch *gdbarch, | |
28010a5d | 6953 | enum bptype bptype, |
c0a91b2b | 6954 | const struct breakpoint_ops *ops) |
346774a9 | 6955 | { |
c906108c | 6956 | memset (b, 0, sizeof (*b)); |
2219d63c | 6957 | |
348d480f PA |
6958 | gdb_assert (ops != NULL); |
6959 | ||
28010a5d | 6960 | b->ops = ops; |
4d28f7a8 | 6961 | b->type = bptype; |
a6d9a66e | 6962 | b->gdbarch = gdbarch; |
c906108c SS |
6963 | b->language = current_language->la_language; |
6964 | b->input_radix = input_radix; | |
6965 | b->thread = -1; | |
b5de0fa7 | 6966 | b->enable_state = bp_enabled; |
c906108c SS |
6967 | b->next = 0; |
6968 | b->silent = 0; | |
6969 | b->ignore_count = 0; | |
6970 | b->commands = NULL; | |
818dd999 | 6971 | b->frame_id = null_frame_id; |
0d381245 | 6972 | b->condition_not_parsed = 0; |
84f4c1fe | 6973 | b->py_bp_object = NULL; |
d0fb5eae | 6974 | b->related_breakpoint = b; |
346774a9 PA |
6975 | } |
6976 | ||
6977 | /* Helper to set_raw_breakpoint below. Creates a breakpoint | |
6978 | that has type BPTYPE and has no locations as yet. */ | |
346774a9 PA |
6979 | |
6980 | static struct breakpoint * | |
6981 | set_raw_breakpoint_without_location (struct gdbarch *gdbarch, | |
348d480f | 6982 | enum bptype bptype, |
c0a91b2b | 6983 | const struct breakpoint_ops *ops) |
346774a9 PA |
6984 | { |
6985 | struct breakpoint *b = XNEW (struct breakpoint); | |
6986 | ||
348d480f | 6987 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
c56053d2 | 6988 | add_to_breakpoint_chain (b); |
0d381245 VP |
6989 | return b; |
6990 | } | |
6991 | ||
0e30163f JK |
6992 | /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function |
6993 | resolutions should be made as the user specified the location explicitly | |
6994 | enough. */ | |
6995 | ||
0d381245 | 6996 | static void |
0e30163f | 6997 | set_breakpoint_location_function (struct bp_location *loc, int explicit_loc) |
0d381245 | 6998 | { |
2bdf28a0 JK |
6999 | gdb_assert (loc->owner != NULL); |
7000 | ||
0d381245 | 7001 | if (loc->owner->type == bp_breakpoint |
1042e4c0 | 7002 | || loc->owner->type == bp_hardware_breakpoint |
d77f58be | 7003 | || is_tracepoint (loc->owner)) |
0d381245 | 7004 | { |
0e30163f | 7005 | int is_gnu_ifunc; |
2c02bd72 | 7006 | const char *function_name; |
6a3a010b | 7007 | CORE_ADDR func_addr; |
0e30163f | 7008 | |
2c02bd72 | 7009 | find_pc_partial_function_gnu_ifunc (loc->address, &function_name, |
6a3a010b | 7010 | &func_addr, NULL, &is_gnu_ifunc); |
0e30163f JK |
7011 | |
7012 | if (is_gnu_ifunc && !explicit_loc) | |
7013 | { | |
7014 | struct breakpoint *b = loc->owner; | |
7015 | ||
7016 | gdb_assert (loc->pspace == current_program_space); | |
2c02bd72 | 7017 | if (gnu_ifunc_resolve_name (function_name, |
0e30163f JK |
7018 | &loc->requested_address)) |
7019 | { | |
7020 | /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */ | |
7021 | loc->address = adjust_breakpoint_address (loc->gdbarch, | |
7022 | loc->requested_address, | |
7023 | b->type); | |
7024 | } | |
7025 | else if (b->type == bp_breakpoint && b->loc == loc | |
7026 | && loc->next == NULL && b->related_breakpoint == b) | |
7027 | { | |
7028 | /* Create only the whole new breakpoint of this type but do not | |
7029 | mess more complicated breakpoints with multiple locations. */ | |
7030 | b->type = bp_gnu_ifunc_resolver; | |
6a3a010b MR |
7031 | /* Remember the resolver's address for use by the return |
7032 | breakpoint. */ | |
7033 | loc->related_address = func_addr; | |
0e30163f JK |
7034 | } |
7035 | } | |
7036 | ||
2c02bd72 DE |
7037 | if (function_name) |
7038 | loc->function_name = xstrdup (function_name); | |
0d381245 VP |
7039 | } |
7040 | } | |
7041 | ||
a6d9a66e | 7042 | /* Attempt to determine architecture of location identified by SAL. */ |
1bfeeb0f | 7043 | struct gdbarch * |
a6d9a66e UW |
7044 | get_sal_arch (struct symtab_and_line sal) |
7045 | { | |
7046 | if (sal.section) | |
7047 | return get_objfile_arch (sal.section->objfile); | |
7048 | if (sal.symtab) | |
7049 | return get_objfile_arch (sal.symtab->objfile); | |
7050 | ||
7051 | return NULL; | |
7052 | } | |
7053 | ||
346774a9 PA |
7054 | /* Low level routine for partially initializing a breakpoint of type |
7055 | BPTYPE. The newly created breakpoint's address, section, source | |
c56053d2 | 7056 | file name, and line number are provided by SAL. |
0d381245 VP |
7057 | |
7058 | It is expected that the caller will complete the initialization of | |
7059 | the newly created breakpoint struct as well as output any status | |
c56053d2 | 7060 | information regarding the creation of a new breakpoint. */ |
0d381245 | 7061 | |
346774a9 PA |
7062 | static void |
7063 | init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch, | |
28010a5d | 7064 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 7065 | const struct breakpoint_ops *ops) |
0d381245 | 7066 | { |
28010a5d | 7067 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
346774a9 | 7068 | |
3742cc8b | 7069 | add_location_to_breakpoint (b, &sal); |
0d381245 | 7070 | |
6c95b8df PA |
7071 | if (bptype != bp_catchpoint) |
7072 | gdb_assert (sal.pspace != NULL); | |
7073 | ||
f8eba3c6 TT |
7074 | /* Store the program space that was used to set the breakpoint, |
7075 | except for ordinary breakpoints, which are independent of the | |
7076 | program space. */ | |
7077 | if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint) | |
7078 | b->pspace = sal.pspace; | |
346774a9 | 7079 | } |
c906108c | 7080 | |
346774a9 PA |
7081 | /* set_raw_breakpoint is a low level routine for allocating and |
7082 | partially initializing a breakpoint of type BPTYPE. The newly | |
7083 | created breakpoint's address, section, source file name, and line | |
7084 | number are provided by SAL. The newly created and partially | |
7085 | initialized breakpoint is added to the breakpoint chain and | |
7086 | is also returned as the value of this function. | |
7087 | ||
7088 | It is expected that the caller will complete the initialization of | |
7089 | the newly created breakpoint struct as well as output any status | |
7090 | information regarding the creation of a new breakpoint. In | |
7091 | particular, set_raw_breakpoint does NOT set the breakpoint | |
7092 | number! Care should be taken to not allow an error to occur | |
7093 | prior to completing the initialization of the breakpoint. If this | |
7094 | should happen, a bogus breakpoint will be left on the chain. */ | |
7095 | ||
7096 | struct breakpoint * | |
7097 | set_raw_breakpoint (struct gdbarch *gdbarch, | |
348d480f | 7098 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 7099 | const struct breakpoint_ops *ops) |
346774a9 PA |
7100 | { |
7101 | struct breakpoint *b = XNEW (struct breakpoint); | |
7102 | ||
348d480f | 7103 | init_raw_breakpoint (b, gdbarch, sal, bptype, ops); |
c56053d2 | 7104 | add_to_breakpoint_chain (b); |
c906108c SS |
7105 | return b; |
7106 | } | |
7107 | ||
c2c6d25f JM |
7108 | |
7109 | /* Note that the breakpoint object B describes a permanent breakpoint | |
7110 | instruction, hard-wired into the inferior's code. */ | |
7111 | void | |
7112 | make_breakpoint_permanent (struct breakpoint *b) | |
7113 | { | |
0d381245 | 7114 | struct bp_location *bl; |
cc59ec59 | 7115 | |
b5de0fa7 | 7116 | b->enable_state = bp_permanent; |
c2c6d25f | 7117 | |
4a64f543 MS |
7118 | /* By definition, permanent breakpoints are already present in the |
7119 | code. Mark all locations as inserted. For now, | |
7120 | make_breakpoint_permanent is called in just one place, so it's | |
7121 | hard to say if it's reasonable to have permanent breakpoint with | |
e5dd4106 | 7122 | multiple locations or not, but it's easy to implement. */ |
0d381245 VP |
7123 | for (bl = b->loc; bl; bl = bl->next) |
7124 | bl->inserted = 1; | |
c2c6d25f JM |
7125 | } |
7126 | ||
53a5351d | 7127 | /* Call this routine when stepping and nexting to enable a breakpoint |
186c406b TT |
7128 | if we do a longjmp() or 'throw' in TP. FRAME is the frame which |
7129 | initiated the operation. */ | |
c906108c SS |
7130 | |
7131 | void | |
186c406b | 7132 | set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame) |
c906108c | 7133 | { |
35df4500 | 7134 | struct breakpoint *b, *b_tmp; |
186c406b | 7135 | int thread = tp->num; |
0fd8e87f UW |
7136 | |
7137 | /* To avoid having to rescan all objfile symbols at every step, | |
7138 | we maintain a list of continually-inserted but always disabled | |
7139 | longjmp "master" breakpoints. Here, we simply create momentary | |
7140 | clones of those and enable them for the requested thread. */ | |
35df4500 | 7141 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df | 7142 | if (b->pspace == current_program_space |
186c406b TT |
7143 | && (b->type == bp_longjmp_master |
7144 | || b->type == bp_exception_master)) | |
0fd8e87f | 7145 | { |
06edf0c0 PA |
7146 | enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception; |
7147 | struct breakpoint *clone; | |
cc59ec59 | 7148 | |
e2e4d78b JK |
7149 | /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again |
7150 | after their removal. */ | |
06edf0c0 | 7151 | clone = momentary_breakpoint_from_master (b, type, |
e2e4d78b | 7152 | &longjmp_breakpoint_ops); |
0fd8e87f UW |
7153 | clone->thread = thread; |
7154 | } | |
186c406b TT |
7155 | |
7156 | tp->initiating_frame = frame; | |
c906108c SS |
7157 | } |
7158 | ||
611c83ae | 7159 | /* Delete all longjmp breakpoints from THREAD. */ |
c906108c | 7160 | void |
611c83ae | 7161 | delete_longjmp_breakpoint (int thread) |
c906108c | 7162 | { |
35df4500 | 7163 | struct breakpoint *b, *b_tmp; |
c906108c | 7164 | |
35df4500 | 7165 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
186c406b | 7166 | if (b->type == bp_longjmp || b->type == bp_exception) |
611c83ae PA |
7167 | { |
7168 | if (b->thread == thread) | |
7169 | delete_breakpoint (b); | |
7170 | } | |
c906108c SS |
7171 | } |
7172 | ||
f59f708a PA |
7173 | void |
7174 | delete_longjmp_breakpoint_at_next_stop (int thread) | |
7175 | { | |
7176 | struct breakpoint *b, *b_tmp; | |
7177 | ||
7178 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7179 | if (b->type == bp_longjmp || b->type == bp_exception) | |
7180 | { | |
7181 | if (b->thread == thread) | |
7182 | b->disposition = disp_del_at_next_stop; | |
7183 | } | |
7184 | } | |
7185 | ||
e2e4d78b JK |
7186 | /* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for |
7187 | INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return | |
7188 | pointer to any of them. Return NULL if this system cannot place longjmp | |
7189 | breakpoints. */ | |
7190 | ||
7191 | struct breakpoint * | |
7192 | set_longjmp_breakpoint_for_call_dummy (void) | |
7193 | { | |
7194 | struct breakpoint *b, *retval = NULL; | |
7195 | ||
7196 | ALL_BREAKPOINTS (b) | |
7197 | if (b->pspace == current_program_space && b->type == bp_longjmp_master) | |
7198 | { | |
7199 | struct breakpoint *new_b; | |
7200 | ||
7201 | new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy, | |
7202 | &momentary_breakpoint_ops); | |
7203 | new_b->thread = pid_to_thread_id (inferior_ptid); | |
7204 | ||
7205 | /* Link NEW_B into the chain of RETVAL breakpoints. */ | |
7206 | ||
7207 | gdb_assert (new_b->related_breakpoint == new_b); | |
7208 | if (retval == NULL) | |
7209 | retval = new_b; | |
7210 | new_b->related_breakpoint = retval; | |
7211 | while (retval->related_breakpoint != new_b->related_breakpoint) | |
7212 | retval = retval->related_breakpoint; | |
7213 | retval->related_breakpoint = new_b; | |
7214 | } | |
7215 | ||
7216 | return retval; | |
7217 | } | |
7218 | ||
7219 | /* Verify all existing dummy frames and their associated breakpoints for | |
7220 | THREAD. Remove those which can no longer be found in the current frame | |
7221 | stack. | |
7222 | ||
7223 | You should call this function only at places where it is safe to currently | |
7224 | unwind the whole stack. Failed stack unwind would discard live dummy | |
7225 | frames. */ | |
7226 | ||
7227 | void | |
7228 | check_longjmp_breakpoint_for_call_dummy (int thread) | |
7229 | { | |
7230 | struct breakpoint *b, *b_tmp; | |
7231 | ||
7232 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7233 | if (b->type == bp_longjmp_call_dummy && b->thread == thread) | |
7234 | { | |
7235 | struct breakpoint *dummy_b = b->related_breakpoint; | |
7236 | ||
7237 | while (dummy_b != b && dummy_b->type != bp_call_dummy) | |
7238 | dummy_b = dummy_b->related_breakpoint; | |
7239 | if (dummy_b->type != bp_call_dummy | |
7240 | || frame_find_by_id (dummy_b->frame_id) != NULL) | |
7241 | continue; | |
7242 | ||
7243 | dummy_frame_discard (dummy_b->frame_id); | |
7244 | ||
7245 | while (b->related_breakpoint != b) | |
7246 | { | |
7247 | if (b_tmp == b->related_breakpoint) | |
7248 | b_tmp = b->related_breakpoint->next; | |
7249 | delete_breakpoint (b->related_breakpoint); | |
7250 | } | |
7251 | delete_breakpoint (b); | |
7252 | } | |
7253 | } | |
7254 | ||
1900040c MS |
7255 | void |
7256 | enable_overlay_breakpoints (void) | |
7257 | { | |
52f0bd74 | 7258 | struct breakpoint *b; |
1900040c MS |
7259 | |
7260 | ALL_BREAKPOINTS (b) | |
7261 | if (b->type == bp_overlay_event) | |
7262 | { | |
7263 | b->enable_state = bp_enabled; | |
b60e7edf | 7264 | update_global_location_list (1); |
c02f5703 | 7265 | overlay_events_enabled = 1; |
1900040c MS |
7266 | } |
7267 | } | |
7268 | ||
7269 | void | |
7270 | disable_overlay_breakpoints (void) | |
7271 | { | |
52f0bd74 | 7272 | struct breakpoint *b; |
1900040c MS |
7273 | |
7274 | ALL_BREAKPOINTS (b) | |
7275 | if (b->type == bp_overlay_event) | |
7276 | { | |
7277 | b->enable_state = bp_disabled; | |
b60e7edf | 7278 | update_global_location_list (0); |
c02f5703 | 7279 | overlay_events_enabled = 0; |
1900040c MS |
7280 | } |
7281 | } | |
7282 | ||
aa7d318d TT |
7283 | /* Set an active std::terminate breakpoint for each std::terminate |
7284 | master breakpoint. */ | |
7285 | void | |
7286 | set_std_terminate_breakpoint (void) | |
7287 | { | |
35df4500 | 7288 | struct breakpoint *b, *b_tmp; |
aa7d318d | 7289 | |
35df4500 | 7290 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
7291 | if (b->pspace == current_program_space |
7292 | && b->type == bp_std_terminate_master) | |
7293 | { | |
06edf0c0 PA |
7294 | momentary_breakpoint_from_master (b, bp_std_terminate, |
7295 | &momentary_breakpoint_ops); | |
aa7d318d TT |
7296 | } |
7297 | } | |
7298 | ||
7299 | /* Delete all the std::terminate breakpoints. */ | |
7300 | void | |
7301 | delete_std_terminate_breakpoint (void) | |
7302 | { | |
35df4500 | 7303 | struct breakpoint *b, *b_tmp; |
aa7d318d | 7304 | |
35df4500 | 7305 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
7306 | if (b->type == bp_std_terminate) |
7307 | delete_breakpoint (b); | |
7308 | } | |
7309 | ||
c4093a6a | 7310 | struct breakpoint * |
a6d9a66e | 7311 | create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
c4093a6a JM |
7312 | { |
7313 | struct breakpoint *b; | |
c4093a6a | 7314 | |
06edf0c0 PA |
7315 | b = create_internal_breakpoint (gdbarch, address, bp_thread_event, |
7316 | &internal_breakpoint_ops); | |
7317 | ||
b5de0fa7 | 7318 | b->enable_state = bp_enabled; |
c4093a6a | 7319 | /* addr_string has to be used or breakpoint_re_set will delete me. */ |
5af949e3 UW |
7320 | b->addr_string |
7321 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
c4093a6a | 7322 | |
b60e7edf | 7323 | update_global_location_list_nothrow (1); |
74960c60 | 7324 | |
c4093a6a JM |
7325 | return b; |
7326 | } | |
7327 | ||
7328 | void | |
7329 | remove_thread_event_breakpoints (void) | |
7330 | { | |
35df4500 | 7331 | struct breakpoint *b, *b_tmp; |
c4093a6a | 7332 | |
35df4500 | 7333 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
7334 | if (b->type == bp_thread_event |
7335 | && b->loc->pspace == current_program_space) | |
c4093a6a JM |
7336 | delete_breakpoint (b); |
7337 | } | |
7338 | ||
0101ce28 JJ |
7339 | struct lang_and_radix |
7340 | { | |
7341 | enum language lang; | |
7342 | int radix; | |
7343 | }; | |
7344 | ||
4efc6507 DE |
7345 | /* Create a breakpoint for JIT code registration and unregistration. */ |
7346 | ||
7347 | struct breakpoint * | |
7348 | create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) | |
7349 | { | |
7350 | struct breakpoint *b; | |
7351 | ||
06edf0c0 PA |
7352 | b = create_internal_breakpoint (gdbarch, address, bp_jit_event, |
7353 | &internal_breakpoint_ops); | |
4efc6507 DE |
7354 | update_global_location_list_nothrow (1); |
7355 | return b; | |
7356 | } | |
0101ce28 | 7357 | |
03673fc7 PP |
7358 | /* Remove JIT code registration and unregistration breakpoint(s). */ |
7359 | ||
7360 | void | |
7361 | remove_jit_event_breakpoints (void) | |
7362 | { | |
7363 | struct breakpoint *b, *b_tmp; | |
7364 | ||
7365 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7366 | if (b->type == bp_jit_event | |
7367 | && b->loc->pspace == current_program_space) | |
7368 | delete_breakpoint (b); | |
7369 | } | |
7370 | ||
cae688ec JJ |
7371 | void |
7372 | remove_solib_event_breakpoints (void) | |
7373 | { | |
35df4500 | 7374 | struct breakpoint *b, *b_tmp; |
cae688ec | 7375 | |
35df4500 | 7376 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
7377 | if (b->type == bp_shlib_event |
7378 | && b->loc->pspace == current_program_space) | |
cae688ec JJ |
7379 | delete_breakpoint (b); |
7380 | } | |
7381 | ||
7382 | struct breakpoint * | |
a6d9a66e | 7383 | create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
cae688ec JJ |
7384 | { |
7385 | struct breakpoint *b; | |
7386 | ||
06edf0c0 PA |
7387 | b = create_internal_breakpoint (gdbarch, address, bp_shlib_event, |
7388 | &internal_breakpoint_ops); | |
b60e7edf | 7389 | update_global_location_list_nothrow (1); |
cae688ec JJ |
7390 | return b; |
7391 | } | |
7392 | ||
7393 | /* Disable any breakpoints that are on code in shared libraries. Only | |
7394 | apply to enabled breakpoints, disabled ones can just stay disabled. */ | |
7395 | ||
7396 | void | |
cb851954 | 7397 | disable_breakpoints_in_shlibs (void) |
cae688ec | 7398 | { |
876fa593 | 7399 | struct bp_location *loc, **locp_tmp; |
cae688ec | 7400 | |
876fa593 | 7401 | ALL_BP_LOCATIONS (loc, locp_tmp) |
cae688ec | 7402 | { |
2bdf28a0 | 7403 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 7404 | struct breakpoint *b = loc->owner; |
2bdf28a0 | 7405 | |
4a64f543 MS |
7406 | /* We apply the check to all breakpoints, including disabled for |
7407 | those with loc->duplicate set. This is so that when breakpoint | |
7408 | becomes enabled, or the duplicate is removed, gdb will try to | |
7409 | insert all breakpoints. If we don't set shlib_disabled here, | |
7410 | we'll try to insert those breakpoints and fail. */ | |
1042e4c0 | 7411 | if (((b->type == bp_breakpoint) |
508ccb1f | 7412 | || (b->type == bp_jit_event) |
1042e4c0 | 7413 | || (b->type == bp_hardware_breakpoint) |
d77f58be | 7414 | || (is_tracepoint (b))) |
6c95b8df | 7415 | && loc->pspace == current_program_space |
0d381245 | 7416 | && !loc->shlib_disabled |
a77053c2 | 7417 | #ifdef PC_SOLIB |
0d381245 | 7418 | && PC_SOLIB (loc->address) |
a77053c2 | 7419 | #else |
6c95b8df | 7420 | && solib_name_from_address (loc->pspace, loc->address) |
a77053c2 MK |
7421 | #endif |
7422 | ) | |
0d381245 VP |
7423 | { |
7424 | loc->shlib_disabled = 1; | |
7425 | } | |
cae688ec JJ |
7426 | } |
7427 | } | |
7428 | ||
1e4d1764 YQ |
7429 | /* Disable any breakpoints and tracepoints that are in an unloaded shared |
7430 | library. Only apply to enabled breakpoints, disabled ones can just stay | |
4a64f543 | 7431 | disabled. */ |
84acb35a | 7432 | |
75149521 | 7433 | static void |
84acb35a JJ |
7434 | disable_breakpoints_in_unloaded_shlib (struct so_list *solib) |
7435 | { | |
876fa593 | 7436 | struct bp_location *loc, **locp_tmp; |
84acb35a JJ |
7437 | int disabled_shlib_breaks = 0; |
7438 | ||
c86cf029 VP |
7439 | /* SunOS a.out shared libraries are always mapped, so do not |
7440 | disable breakpoints; they will only be reported as unloaded | |
7441 | through clear_solib when GDB discards its shared library | |
7442 | list. See clear_solib for more information. */ | |
7443 | if (exec_bfd != NULL | |
7444 | && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour) | |
7445 | return; | |
7446 | ||
876fa593 | 7447 | ALL_BP_LOCATIONS (loc, locp_tmp) |
84acb35a | 7448 | { |
2bdf28a0 | 7449 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 7450 | struct breakpoint *b = loc->owner; |
cc59ec59 | 7451 | |
1e4d1764 | 7452 | if (solib->pspace == loc->pspace |
e2dd7057 | 7453 | && !loc->shlib_disabled |
1e4d1764 YQ |
7454 | && (((b->type == bp_breakpoint |
7455 | || b->type == bp_jit_event | |
7456 | || b->type == bp_hardware_breakpoint) | |
7457 | && (loc->loc_type == bp_loc_hardware_breakpoint | |
7458 | || loc->loc_type == bp_loc_software_breakpoint)) | |
7459 | || is_tracepoint (b)) | |
e2dd7057 | 7460 | && solib_contains_address_p (solib, loc->address)) |
84acb35a | 7461 | { |
e2dd7057 PP |
7462 | loc->shlib_disabled = 1; |
7463 | /* At this point, we cannot rely on remove_breakpoint | |
7464 | succeeding so we must mark the breakpoint as not inserted | |
7465 | to prevent future errors occurring in remove_breakpoints. */ | |
7466 | loc->inserted = 0; | |
8d3788bd VP |
7467 | |
7468 | /* This may cause duplicate notifications for the same breakpoint. */ | |
7469 | observer_notify_breakpoint_modified (b); | |
7470 | ||
e2dd7057 PP |
7471 | if (!disabled_shlib_breaks) |
7472 | { | |
7473 | target_terminal_ours_for_output (); | |
3e43a32a MS |
7474 | warning (_("Temporarily disabling breakpoints " |
7475 | "for unloaded shared library \"%s\""), | |
e2dd7057 | 7476 | solib->so_name); |
84acb35a | 7477 | } |
e2dd7057 | 7478 | disabled_shlib_breaks = 1; |
84acb35a JJ |
7479 | } |
7480 | } | |
84acb35a JJ |
7481 | } |
7482 | ||
ce78b96d JB |
7483 | /* FORK & VFORK catchpoints. */ |
7484 | ||
e29a4733 PA |
7485 | /* An instance of this type is used to represent a fork or vfork |
7486 | catchpoint. It includes a "struct breakpoint" as a kind of base | |
7487 | class; users downcast to "struct breakpoint *" when needed. A | |
7488 | breakpoint is really of this type iff its ops pointer points to | |
7489 | CATCH_FORK_BREAKPOINT_OPS. */ | |
7490 | ||
7491 | struct fork_catchpoint | |
7492 | { | |
7493 | /* The base class. */ | |
7494 | struct breakpoint base; | |
7495 | ||
7496 | /* Process id of a child process whose forking triggered this | |
7497 | catchpoint. This field is only valid immediately after this | |
7498 | catchpoint has triggered. */ | |
7499 | ptid_t forked_inferior_pid; | |
7500 | }; | |
7501 | ||
4a64f543 MS |
7502 | /* Implement the "insert" breakpoint_ops method for fork |
7503 | catchpoints. */ | |
ce78b96d | 7504 | |
77b06cd7 TJB |
7505 | static int |
7506 | insert_catch_fork (struct bp_location *bl) | |
ce78b96d | 7507 | { |
77b06cd7 | 7508 | return target_insert_fork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
7509 | } |
7510 | ||
4a64f543 MS |
7511 | /* Implement the "remove" breakpoint_ops method for fork |
7512 | catchpoints. */ | |
ce78b96d JB |
7513 | |
7514 | static int | |
77b06cd7 | 7515 | remove_catch_fork (struct bp_location *bl) |
ce78b96d JB |
7516 | { |
7517 | return target_remove_fork_catchpoint (PIDGET (inferior_ptid)); | |
7518 | } | |
7519 | ||
7520 | /* Implement the "breakpoint_hit" breakpoint_ops method for fork | |
7521 | catchpoints. */ | |
7522 | ||
7523 | static int | |
f1310107 | 7524 | breakpoint_hit_catch_fork (const struct bp_location *bl, |
09ac7c10 TT |
7525 | struct address_space *aspace, CORE_ADDR bp_addr, |
7526 | const struct target_waitstatus *ws) | |
ce78b96d | 7527 | { |
e29a4733 PA |
7528 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
7529 | ||
f90263c1 TT |
7530 | if (ws->kind != TARGET_WAITKIND_FORKED) |
7531 | return 0; | |
7532 | ||
7533 | c->forked_inferior_pid = ws->value.related_pid; | |
7534 | return 1; | |
ce78b96d JB |
7535 | } |
7536 | ||
4a64f543 MS |
7537 | /* Implement the "print_it" breakpoint_ops method for fork |
7538 | catchpoints. */ | |
ce78b96d JB |
7539 | |
7540 | static enum print_stop_action | |
348d480f | 7541 | print_it_catch_fork (bpstat bs) |
ce78b96d | 7542 | { |
36dfb11c | 7543 | struct ui_out *uiout = current_uiout; |
348d480f PA |
7544 | struct breakpoint *b = bs->breakpoint_at; |
7545 | struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at; | |
e29a4733 | 7546 | |
ce78b96d | 7547 | annotate_catchpoint (b->number); |
36dfb11c TT |
7548 | if (b->disposition == disp_del) |
7549 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7550 | else | |
7551 | ui_out_text (uiout, "\nCatchpoint "); | |
7552 | if (ui_out_is_mi_like_p (uiout)) | |
7553 | { | |
7554 | ui_out_field_string (uiout, "reason", | |
7555 | async_reason_lookup (EXEC_ASYNC_FORK)); | |
7556 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7557 | } | |
7558 | ui_out_field_int (uiout, "bkptno", b->number); | |
7559 | ui_out_text (uiout, " (forked process "); | |
7560 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
7561 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
7562 | return PRINT_SRC_AND_LOC; |
7563 | } | |
7564 | ||
4a64f543 MS |
7565 | /* Implement the "print_one" breakpoint_ops method for fork |
7566 | catchpoints. */ | |
ce78b96d JB |
7567 | |
7568 | static void | |
a6d9a66e | 7569 | print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 7570 | { |
e29a4733 | 7571 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 7572 | struct value_print_options opts; |
79a45e25 | 7573 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
7574 | |
7575 | get_user_print_options (&opts); | |
7576 | ||
4a64f543 MS |
7577 | /* Field 4, the address, is omitted (which makes the columns not |
7578 | line up too nicely with the headers, but the effect is relatively | |
7579 | readable). */ | |
79a45b7d | 7580 | if (opts.addressprint) |
ce78b96d JB |
7581 | ui_out_field_skip (uiout, "addr"); |
7582 | annotate_field (5); | |
7583 | ui_out_text (uiout, "fork"); | |
e29a4733 | 7584 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
7585 | { |
7586 | ui_out_text (uiout, ", process "); | |
7587 | ui_out_field_int (uiout, "what", | |
e29a4733 | 7588 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
7589 | ui_out_spaces (uiout, 1); |
7590 | } | |
8ac3646f TT |
7591 | |
7592 | if (ui_out_is_mi_like_p (uiout)) | |
7593 | ui_out_field_string (uiout, "catch-type", "fork"); | |
ce78b96d JB |
7594 | } |
7595 | ||
7596 | /* Implement the "print_mention" breakpoint_ops method for fork | |
7597 | catchpoints. */ | |
7598 | ||
7599 | static void | |
7600 | print_mention_catch_fork (struct breakpoint *b) | |
7601 | { | |
7602 | printf_filtered (_("Catchpoint %d (fork)"), b->number); | |
7603 | } | |
7604 | ||
6149aea9 PA |
7605 | /* Implement the "print_recreate" breakpoint_ops method for fork |
7606 | catchpoints. */ | |
7607 | ||
7608 | static void | |
7609 | print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp) | |
7610 | { | |
7611 | fprintf_unfiltered (fp, "catch fork"); | |
d9b3f62e | 7612 | print_recreate_thread (b, fp); |
6149aea9 PA |
7613 | } |
7614 | ||
ce78b96d JB |
7615 | /* The breakpoint_ops structure to be used in fork catchpoints. */ |
7616 | ||
2060206e | 7617 | static struct breakpoint_ops catch_fork_breakpoint_ops; |
ce78b96d | 7618 | |
4a64f543 MS |
7619 | /* Implement the "insert" breakpoint_ops method for vfork |
7620 | catchpoints. */ | |
ce78b96d | 7621 | |
77b06cd7 TJB |
7622 | static int |
7623 | insert_catch_vfork (struct bp_location *bl) | |
ce78b96d | 7624 | { |
77b06cd7 | 7625 | return target_insert_vfork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
7626 | } |
7627 | ||
4a64f543 MS |
7628 | /* Implement the "remove" breakpoint_ops method for vfork |
7629 | catchpoints. */ | |
ce78b96d JB |
7630 | |
7631 | static int | |
77b06cd7 | 7632 | remove_catch_vfork (struct bp_location *bl) |
ce78b96d JB |
7633 | { |
7634 | return target_remove_vfork_catchpoint (PIDGET (inferior_ptid)); | |
7635 | } | |
7636 | ||
7637 | /* Implement the "breakpoint_hit" breakpoint_ops method for vfork | |
7638 | catchpoints. */ | |
7639 | ||
7640 | static int | |
f1310107 | 7641 | breakpoint_hit_catch_vfork (const struct bp_location *bl, |
09ac7c10 TT |
7642 | struct address_space *aspace, CORE_ADDR bp_addr, |
7643 | const struct target_waitstatus *ws) | |
ce78b96d | 7644 | { |
e29a4733 PA |
7645 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
7646 | ||
f90263c1 TT |
7647 | if (ws->kind != TARGET_WAITKIND_VFORKED) |
7648 | return 0; | |
7649 | ||
7650 | c->forked_inferior_pid = ws->value.related_pid; | |
7651 | return 1; | |
ce78b96d JB |
7652 | } |
7653 | ||
4a64f543 MS |
7654 | /* Implement the "print_it" breakpoint_ops method for vfork |
7655 | catchpoints. */ | |
ce78b96d JB |
7656 | |
7657 | static enum print_stop_action | |
348d480f | 7658 | print_it_catch_vfork (bpstat bs) |
ce78b96d | 7659 | { |
36dfb11c | 7660 | struct ui_out *uiout = current_uiout; |
348d480f | 7661 | struct breakpoint *b = bs->breakpoint_at; |
e29a4733 PA |
7662 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
7663 | ||
ce78b96d | 7664 | annotate_catchpoint (b->number); |
36dfb11c TT |
7665 | if (b->disposition == disp_del) |
7666 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7667 | else | |
7668 | ui_out_text (uiout, "\nCatchpoint "); | |
7669 | if (ui_out_is_mi_like_p (uiout)) | |
7670 | { | |
7671 | ui_out_field_string (uiout, "reason", | |
7672 | async_reason_lookup (EXEC_ASYNC_VFORK)); | |
7673 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7674 | } | |
7675 | ui_out_field_int (uiout, "bkptno", b->number); | |
7676 | ui_out_text (uiout, " (vforked process "); | |
7677 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
7678 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
7679 | return PRINT_SRC_AND_LOC; |
7680 | } | |
7681 | ||
4a64f543 MS |
7682 | /* Implement the "print_one" breakpoint_ops method for vfork |
7683 | catchpoints. */ | |
ce78b96d JB |
7684 | |
7685 | static void | |
a6d9a66e | 7686 | print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 7687 | { |
e29a4733 | 7688 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 7689 | struct value_print_options opts; |
79a45e25 | 7690 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
7691 | |
7692 | get_user_print_options (&opts); | |
4a64f543 MS |
7693 | /* Field 4, the address, is omitted (which makes the columns not |
7694 | line up too nicely with the headers, but the effect is relatively | |
7695 | readable). */ | |
79a45b7d | 7696 | if (opts.addressprint) |
ce78b96d JB |
7697 | ui_out_field_skip (uiout, "addr"); |
7698 | annotate_field (5); | |
7699 | ui_out_text (uiout, "vfork"); | |
e29a4733 | 7700 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
7701 | { |
7702 | ui_out_text (uiout, ", process "); | |
7703 | ui_out_field_int (uiout, "what", | |
e29a4733 | 7704 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
7705 | ui_out_spaces (uiout, 1); |
7706 | } | |
8ac3646f TT |
7707 | |
7708 | if (ui_out_is_mi_like_p (uiout)) | |
7709 | ui_out_field_string (uiout, "catch-type", "vfork"); | |
ce78b96d JB |
7710 | } |
7711 | ||
7712 | /* Implement the "print_mention" breakpoint_ops method for vfork | |
7713 | catchpoints. */ | |
7714 | ||
7715 | static void | |
7716 | print_mention_catch_vfork (struct breakpoint *b) | |
7717 | { | |
7718 | printf_filtered (_("Catchpoint %d (vfork)"), b->number); | |
7719 | } | |
7720 | ||
6149aea9 PA |
7721 | /* Implement the "print_recreate" breakpoint_ops method for vfork |
7722 | catchpoints. */ | |
7723 | ||
7724 | static void | |
7725 | print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp) | |
7726 | { | |
7727 | fprintf_unfiltered (fp, "catch vfork"); | |
d9b3f62e | 7728 | print_recreate_thread (b, fp); |
6149aea9 PA |
7729 | } |
7730 | ||
ce78b96d JB |
7731 | /* The breakpoint_ops structure to be used in vfork catchpoints. */ |
7732 | ||
2060206e | 7733 | static struct breakpoint_ops catch_vfork_breakpoint_ops; |
ce78b96d | 7734 | |
edcc5120 TT |
7735 | /* An instance of this type is used to represent an solib catchpoint. |
7736 | It includes a "struct breakpoint" as a kind of base class; users | |
7737 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
7738 | really of this type iff its ops pointer points to | |
7739 | CATCH_SOLIB_BREAKPOINT_OPS. */ | |
7740 | ||
7741 | struct solib_catchpoint | |
7742 | { | |
7743 | /* The base class. */ | |
7744 | struct breakpoint base; | |
7745 | ||
7746 | /* True for "catch load", false for "catch unload". */ | |
7747 | unsigned char is_load; | |
7748 | ||
7749 | /* Regular expression to match, if any. COMPILED is only valid when | |
7750 | REGEX is non-NULL. */ | |
7751 | char *regex; | |
7752 | regex_t compiled; | |
7753 | }; | |
7754 | ||
7755 | static void | |
7756 | dtor_catch_solib (struct breakpoint *b) | |
7757 | { | |
7758 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7759 | ||
7760 | if (self->regex) | |
7761 | regfree (&self->compiled); | |
7762 | xfree (self->regex); | |
7763 | ||
7764 | base_breakpoint_ops.dtor (b); | |
7765 | } | |
7766 | ||
7767 | static int | |
7768 | insert_catch_solib (struct bp_location *ignore) | |
7769 | { | |
7770 | return 0; | |
7771 | } | |
7772 | ||
7773 | static int | |
7774 | remove_catch_solib (struct bp_location *ignore) | |
7775 | { | |
7776 | return 0; | |
7777 | } | |
7778 | ||
7779 | static int | |
7780 | breakpoint_hit_catch_solib (const struct bp_location *bl, | |
7781 | struct address_space *aspace, | |
7782 | CORE_ADDR bp_addr, | |
7783 | const struct target_waitstatus *ws) | |
7784 | { | |
7785 | struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner; | |
7786 | struct breakpoint *other; | |
7787 | ||
7788 | if (ws->kind == TARGET_WAITKIND_LOADED) | |
7789 | return 1; | |
7790 | ||
7791 | ALL_BREAKPOINTS (other) | |
7792 | { | |
7793 | struct bp_location *other_bl; | |
7794 | ||
7795 | if (other == bl->owner) | |
7796 | continue; | |
7797 | ||
7798 | if (other->type != bp_shlib_event) | |
7799 | continue; | |
7800 | ||
7801 | if (self->base.pspace != NULL && other->pspace != self->base.pspace) | |
7802 | continue; | |
7803 | ||
7804 | for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next) | |
7805 | { | |
7806 | if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws)) | |
7807 | return 1; | |
7808 | } | |
7809 | } | |
7810 | ||
7811 | return 0; | |
7812 | } | |
7813 | ||
7814 | static void | |
7815 | check_status_catch_solib (struct bpstats *bs) | |
7816 | { | |
7817 | struct solib_catchpoint *self | |
7818 | = (struct solib_catchpoint *) bs->breakpoint_at; | |
7819 | int ix; | |
7820 | ||
7821 | if (self->is_load) | |
7822 | { | |
7823 | struct so_list *iter; | |
7824 | ||
7825 | for (ix = 0; | |
7826 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
7827 | ix, iter); | |
7828 | ++ix) | |
7829 | { | |
7830 | if (!self->regex | |
7831 | || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0) | |
7832 | return; | |
7833 | } | |
7834 | } | |
7835 | else | |
7836 | { | |
7837 | char *iter; | |
7838 | ||
7839 | for (ix = 0; | |
7840 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
7841 | ix, iter); | |
7842 | ++ix) | |
7843 | { | |
7844 | if (!self->regex | |
7845 | || regexec (&self->compiled, iter, 0, NULL, 0) == 0) | |
7846 | return; | |
7847 | } | |
7848 | } | |
7849 | ||
7850 | bs->stop = 0; | |
7851 | bs->print_it = print_it_noop; | |
7852 | } | |
7853 | ||
7854 | static enum print_stop_action | |
7855 | print_it_catch_solib (bpstat bs) | |
7856 | { | |
7857 | struct breakpoint *b = bs->breakpoint_at; | |
7858 | struct ui_out *uiout = current_uiout; | |
7859 | ||
7860 | annotate_catchpoint (b->number); | |
7861 | if (b->disposition == disp_del) | |
7862 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7863 | else | |
7864 | ui_out_text (uiout, "\nCatchpoint "); | |
7865 | ui_out_field_int (uiout, "bkptno", b->number); | |
7866 | ui_out_text (uiout, "\n"); | |
7867 | if (ui_out_is_mi_like_p (uiout)) | |
7868 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7869 | print_solib_event (1); | |
7870 | return PRINT_SRC_AND_LOC; | |
7871 | } | |
7872 | ||
7873 | static void | |
7874 | print_one_catch_solib (struct breakpoint *b, struct bp_location **locs) | |
7875 | { | |
7876 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7877 | struct value_print_options opts; | |
7878 | struct ui_out *uiout = current_uiout; | |
7879 | char *msg; | |
7880 | ||
7881 | get_user_print_options (&opts); | |
7882 | /* Field 4, the address, is omitted (which makes the columns not | |
7883 | line up too nicely with the headers, but the effect is relatively | |
7884 | readable). */ | |
7885 | if (opts.addressprint) | |
7886 | { | |
7887 | annotate_field (4); | |
7888 | ui_out_field_skip (uiout, "addr"); | |
7889 | } | |
7890 | ||
7891 | annotate_field (5); | |
7892 | if (self->is_load) | |
7893 | { | |
7894 | if (self->regex) | |
7895 | msg = xstrprintf (_("load of library matching %s"), self->regex); | |
7896 | else | |
7897 | msg = xstrdup (_("load of library")); | |
7898 | } | |
7899 | else | |
7900 | { | |
7901 | if (self->regex) | |
7902 | msg = xstrprintf (_("unload of library matching %s"), self->regex); | |
7903 | else | |
7904 | msg = xstrdup (_("unload of library")); | |
7905 | } | |
7906 | ui_out_field_string (uiout, "what", msg); | |
7907 | xfree (msg); | |
8ac3646f TT |
7908 | |
7909 | if (ui_out_is_mi_like_p (uiout)) | |
7910 | ui_out_field_string (uiout, "catch-type", | |
7911 | self->is_load ? "load" : "unload"); | |
edcc5120 TT |
7912 | } |
7913 | ||
7914 | static void | |
7915 | print_mention_catch_solib (struct breakpoint *b) | |
7916 | { | |
7917 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7918 | ||
7919 | printf_filtered (_("Catchpoint %d (%s)"), b->number, | |
7920 | self->is_load ? "load" : "unload"); | |
7921 | } | |
7922 | ||
7923 | static void | |
7924 | print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp) | |
7925 | { | |
7926 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7927 | ||
7928 | fprintf_unfiltered (fp, "%s %s", | |
7929 | b->disposition == disp_del ? "tcatch" : "catch", | |
7930 | self->is_load ? "load" : "unload"); | |
7931 | if (self->regex) | |
7932 | fprintf_unfiltered (fp, " %s", self->regex); | |
7933 | fprintf_unfiltered (fp, "\n"); | |
7934 | } | |
7935 | ||
7936 | static struct breakpoint_ops catch_solib_breakpoint_ops; | |
7937 | ||
91985142 MG |
7938 | /* Shared helper function (MI and CLI) for creating and installing |
7939 | a shared object event catchpoint. If IS_LOAD is non-zero then | |
7940 | the events to be caught are load events, otherwise they are | |
7941 | unload events. If IS_TEMP is non-zero the catchpoint is a | |
7942 | temporary one. If ENABLED is non-zero the catchpoint is | |
7943 | created in an enabled state. */ | |
edcc5120 | 7944 | |
91985142 MG |
7945 | void |
7946 | add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled) | |
edcc5120 TT |
7947 | { |
7948 | struct solib_catchpoint *c; | |
7949 | struct gdbarch *gdbarch = get_current_arch (); | |
edcc5120 TT |
7950 | struct cleanup *cleanup; |
7951 | ||
edcc5120 TT |
7952 | if (!arg) |
7953 | arg = ""; | |
7954 | arg = skip_spaces (arg); | |
7955 | ||
7956 | c = XCNEW (struct solib_catchpoint); | |
7957 | cleanup = make_cleanup (xfree, c); | |
7958 | ||
7959 | if (*arg != '\0') | |
7960 | { | |
7961 | int errcode; | |
7962 | ||
7963 | errcode = regcomp (&c->compiled, arg, REG_NOSUB); | |
7964 | if (errcode != 0) | |
7965 | { | |
7966 | char *err = get_regcomp_error (errcode, &c->compiled); | |
7967 | ||
7968 | make_cleanup (xfree, err); | |
7969 | error (_("Invalid regexp (%s): %s"), err, arg); | |
7970 | } | |
7971 | c->regex = xstrdup (arg); | |
7972 | } | |
7973 | ||
7974 | c->is_load = is_load; | |
91985142 | 7975 | init_catchpoint (&c->base, gdbarch, is_temp, NULL, |
edcc5120 TT |
7976 | &catch_solib_breakpoint_ops); |
7977 | ||
91985142 MG |
7978 | c->base.enable_state = enabled ? bp_enabled : bp_disabled; |
7979 | ||
edcc5120 TT |
7980 | discard_cleanups (cleanup); |
7981 | install_breakpoint (0, &c->base, 1); | |
7982 | } | |
7983 | ||
91985142 MG |
7984 | /* A helper function that does all the work for "catch load" and |
7985 | "catch unload". */ | |
7986 | ||
7987 | static void | |
7988 | catch_load_or_unload (char *arg, int from_tty, int is_load, | |
7989 | struct cmd_list_element *command) | |
7990 | { | |
7991 | int tempflag; | |
7992 | const int enabled = 1; | |
7993 | ||
7994 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
7995 | ||
7996 | add_solib_catchpoint (arg, is_load, tempflag, enabled); | |
7997 | } | |
7998 | ||
edcc5120 TT |
7999 | static void |
8000 | catch_load_command_1 (char *arg, int from_tty, | |
8001 | struct cmd_list_element *command) | |
8002 | { | |
8003 | catch_load_or_unload (arg, from_tty, 1, command); | |
8004 | } | |
8005 | ||
8006 | static void | |
8007 | catch_unload_command_1 (char *arg, int from_tty, | |
8008 | struct cmd_list_element *command) | |
8009 | { | |
8010 | catch_load_or_unload (arg, from_tty, 0, command); | |
8011 | } | |
8012 | ||
be5c67c1 PA |
8013 | /* An instance of this type is used to represent a syscall catchpoint. |
8014 | It includes a "struct breakpoint" as a kind of base class; users | |
8015 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
8016 | really of this type iff its ops pointer points to | |
8017 | CATCH_SYSCALL_BREAKPOINT_OPS. */ | |
8018 | ||
8019 | struct syscall_catchpoint | |
8020 | { | |
8021 | /* The base class. */ | |
8022 | struct breakpoint base; | |
8023 | ||
8024 | /* Syscall numbers used for the 'catch syscall' feature. If no | |
8025 | syscall has been specified for filtering, its value is NULL. | |
8026 | Otherwise, it holds a list of all syscalls to be caught. The | |
8027 | list elements are allocated with xmalloc. */ | |
8028 | VEC(int) *syscalls_to_be_caught; | |
8029 | }; | |
8030 | ||
8031 | /* Implement the "dtor" breakpoint_ops method for syscall | |
8032 | catchpoints. */ | |
8033 | ||
8034 | static void | |
8035 | dtor_catch_syscall (struct breakpoint *b) | |
8036 | { | |
8037 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; | |
8038 | ||
8039 | VEC_free (int, c->syscalls_to_be_caught); | |
348d480f | 8040 | |
2060206e | 8041 | base_breakpoint_ops.dtor (b); |
be5c67c1 PA |
8042 | } |
8043 | ||
fa3064dd YQ |
8044 | static const struct inferior_data *catch_syscall_inferior_data = NULL; |
8045 | ||
8046 | struct catch_syscall_inferior_data | |
8047 | { | |
8048 | /* We keep a count of the number of times the user has requested a | |
8049 | particular syscall to be tracked, and pass this information to the | |
8050 | target. This lets capable targets implement filtering directly. */ | |
8051 | ||
8052 | /* Number of times that "any" syscall is requested. */ | |
8053 | int any_syscall_count; | |
8054 | ||
8055 | /* Count of each system call. */ | |
8056 | VEC(int) *syscalls_counts; | |
8057 | ||
8058 | /* This counts all syscall catch requests, so we can readily determine | |
8059 | if any catching is necessary. */ | |
8060 | int total_syscalls_count; | |
8061 | }; | |
8062 | ||
8063 | static struct catch_syscall_inferior_data* | |
8064 | get_catch_syscall_inferior_data (struct inferior *inf) | |
8065 | { | |
8066 | struct catch_syscall_inferior_data *inf_data; | |
8067 | ||
8068 | inf_data = inferior_data (inf, catch_syscall_inferior_data); | |
8069 | if (inf_data == NULL) | |
8070 | { | |
8071 | inf_data = XZALLOC (struct catch_syscall_inferior_data); | |
8072 | set_inferior_data (inf, catch_syscall_inferior_data, inf_data); | |
8073 | } | |
8074 | ||
8075 | return inf_data; | |
8076 | } | |
8077 | ||
8078 | static void | |
8079 | catch_syscall_inferior_data_cleanup (struct inferior *inf, void *arg) | |
8080 | { | |
8081 | xfree (arg); | |
8082 | } | |
8083 | ||
8084 | ||
a96d9b2e SDJ |
8085 | /* Implement the "insert" breakpoint_ops method for syscall |
8086 | catchpoints. */ | |
8087 | ||
77b06cd7 TJB |
8088 | static int |
8089 | insert_catch_syscall (struct bp_location *bl) | |
a96d9b2e | 8090 | { |
be5c67c1 | 8091 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 8092 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
8093 | struct catch_syscall_inferior_data *inf_data |
8094 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 8095 | |
fa3064dd | 8096 | ++inf_data->total_syscalls_count; |
be5c67c1 | 8097 | if (!c->syscalls_to_be_caught) |
fa3064dd | 8098 | ++inf_data->any_syscall_count; |
a96d9b2e SDJ |
8099 | else |
8100 | { | |
8101 | int i, iter; | |
cc59ec59 | 8102 | |
a96d9b2e | 8103 | for (i = 0; |
be5c67c1 | 8104 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8105 | i++) |
8106 | { | |
8107 | int elem; | |
cc59ec59 | 8108 | |
fa3064dd | 8109 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e | 8110 | { |
fa3064dd | 8111 | int old_size = VEC_length (int, inf_data->syscalls_counts); |
3e43a32a MS |
8112 | uintptr_t vec_addr_offset |
8113 | = old_size * ((uintptr_t) sizeof (int)); | |
a96d9b2e | 8114 | uintptr_t vec_addr; |
fa3064dd YQ |
8115 | VEC_safe_grow (int, inf_data->syscalls_counts, iter + 1); |
8116 | vec_addr = ((uintptr_t) VEC_address (int, | |
8117 | inf_data->syscalls_counts) | |
8118 | + vec_addr_offset); | |
a96d9b2e SDJ |
8119 | memset ((void *) vec_addr, 0, |
8120 | (iter + 1 - old_size) * sizeof (int)); | |
8121 | } | |
fa3064dd YQ |
8122 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
8123 | VEC_replace (int, inf_data->syscalls_counts, iter, ++elem); | |
a96d9b2e SDJ |
8124 | } |
8125 | } | |
8126 | ||
77b06cd7 | 8127 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), |
fa3064dd YQ |
8128 | inf_data->total_syscalls_count != 0, |
8129 | inf_data->any_syscall_count, | |
8130 | VEC_length (int, | |
8131 | inf_data->syscalls_counts), | |
8132 | VEC_address (int, | |
8133 | inf_data->syscalls_counts)); | |
a96d9b2e SDJ |
8134 | } |
8135 | ||
8136 | /* Implement the "remove" breakpoint_ops method for syscall | |
8137 | catchpoints. */ | |
8138 | ||
8139 | static int | |
77b06cd7 | 8140 | remove_catch_syscall (struct bp_location *bl) |
a96d9b2e | 8141 | { |
be5c67c1 | 8142 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 8143 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
8144 | struct catch_syscall_inferior_data *inf_data |
8145 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 8146 | |
fa3064dd | 8147 | --inf_data->total_syscalls_count; |
be5c67c1 | 8148 | if (!c->syscalls_to_be_caught) |
fa3064dd | 8149 | --inf_data->any_syscall_count; |
a96d9b2e SDJ |
8150 | else |
8151 | { | |
8152 | int i, iter; | |
cc59ec59 | 8153 | |
a96d9b2e | 8154 | for (i = 0; |
be5c67c1 | 8155 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8156 | i++) |
8157 | { | |
8158 | int elem; | |
fa3064dd | 8159 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e SDJ |
8160 | /* Shouldn't happen. */ |
8161 | continue; | |
fa3064dd YQ |
8162 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
8163 | VEC_replace (int, inf_data->syscalls_counts, iter, --elem); | |
a96d9b2e SDJ |
8164 | } |
8165 | } | |
8166 | ||
8167 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), | |
fa3064dd YQ |
8168 | inf_data->total_syscalls_count != 0, |
8169 | inf_data->any_syscall_count, | |
8170 | VEC_length (int, | |
8171 | inf_data->syscalls_counts), | |
3e43a32a | 8172 | VEC_address (int, |
fa3064dd | 8173 | inf_data->syscalls_counts)); |
a96d9b2e SDJ |
8174 | } |
8175 | ||
8176 | /* Implement the "breakpoint_hit" breakpoint_ops method for syscall | |
8177 | catchpoints. */ | |
8178 | ||
8179 | static int | |
f1310107 | 8180 | breakpoint_hit_catch_syscall (const struct bp_location *bl, |
09ac7c10 TT |
8181 | struct address_space *aspace, CORE_ADDR bp_addr, |
8182 | const struct target_waitstatus *ws) | |
a96d9b2e | 8183 | { |
4a64f543 MS |
8184 | /* We must check if we are catching specific syscalls in this |
8185 | breakpoint. If we are, then we must guarantee that the called | |
8186 | syscall is the same syscall we are catching. */ | |
a96d9b2e | 8187 | int syscall_number = 0; |
be5c67c1 PA |
8188 | const struct syscall_catchpoint *c |
8189 | = (const struct syscall_catchpoint *) bl->owner; | |
a96d9b2e | 8190 | |
f90263c1 TT |
8191 | if (ws->kind != TARGET_WAITKIND_SYSCALL_ENTRY |
8192 | && ws->kind != TARGET_WAITKIND_SYSCALL_RETURN) | |
a96d9b2e SDJ |
8193 | return 0; |
8194 | ||
f90263c1 TT |
8195 | syscall_number = ws->value.syscall_number; |
8196 | ||
a96d9b2e | 8197 | /* Now, checking if the syscall is the same. */ |
be5c67c1 | 8198 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
8199 | { |
8200 | int i, iter; | |
cc59ec59 | 8201 | |
a96d9b2e | 8202 | for (i = 0; |
be5c67c1 | 8203 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8204 | i++) |
8205 | if (syscall_number == iter) | |
8206 | break; | |
8207 | /* Not the same. */ | |
8208 | if (!iter) | |
8209 | return 0; | |
8210 | } | |
8211 | ||
8212 | return 1; | |
8213 | } | |
8214 | ||
8215 | /* Implement the "print_it" breakpoint_ops method for syscall | |
8216 | catchpoints. */ | |
8217 | ||
8218 | static enum print_stop_action | |
348d480f | 8219 | print_it_catch_syscall (bpstat bs) |
a96d9b2e | 8220 | { |
36dfb11c | 8221 | struct ui_out *uiout = current_uiout; |
348d480f | 8222 | struct breakpoint *b = bs->breakpoint_at; |
a96d9b2e SDJ |
8223 | /* These are needed because we want to know in which state a |
8224 | syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY | |
8225 | or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we | |
8226 | must print "called syscall" or "returned from syscall". */ | |
8227 | ptid_t ptid; | |
8228 | struct target_waitstatus last; | |
8229 | struct syscall s; | |
a96d9b2e SDJ |
8230 | |
8231 | get_last_target_status (&ptid, &last); | |
8232 | ||
8233 | get_syscall_by_number (last.value.syscall_number, &s); | |
8234 | ||
8235 | annotate_catchpoint (b->number); | |
8236 | ||
36dfb11c TT |
8237 | if (b->disposition == disp_del) |
8238 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
a96d9b2e | 8239 | else |
36dfb11c TT |
8240 | ui_out_text (uiout, "\nCatchpoint "); |
8241 | if (ui_out_is_mi_like_p (uiout)) | |
8242 | { | |
8243 | ui_out_field_string (uiout, "reason", | |
8244 | async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY | |
8245 | ? EXEC_ASYNC_SYSCALL_ENTRY | |
8246 | : EXEC_ASYNC_SYSCALL_RETURN)); | |
8247 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
8248 | } | |
8249 | ui_out_field_int (uiout, "bkptno", b->number); | |
a96d9b2e SDJ |
8250 | |
8251 | if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY) | |
36dfb11c TT |
8252 | ui_out_text (uiout, " (call to syscall "); |
8253 | else | |
8254 | ui_out_text (uiout, " (returned from syscall "); | |
a96d9b2e | 8255 | |
36dfb11c TT |
8256 | if (s.name == NULL || ui_out_is_mi_like_p (uiout)) |
8257 | ui_out_field_int (uiout, "syscall-number", last.value.syscall_number); | |
8258 | if (s.name != NULL) | |
8259 | ui_out_field_string (uiout, "syscall-name", s.name); | |
8260 | ||
8261 | ui_out_text (uiout, "), "); | |
a96d9b2e SDJ |
8262 | |
8263 | return PRINT_SRC_AND_LOC; | |
8264 | } | |
8265 | ||
8266 | /* Implement the "print_one" breakpoint_ops method for syscall | |
8267 | catchpoints. */ | |
8268 | ||
8269 | static void | |
8270 | print_one_catch_syscall (struct breakpoint *b, | |
f1310107 | 8271 | struct bp_location **last_loc) |
a96d9b2e | 8272 | { |
be5c67c1 | 8273 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
a96d9b2e | 8274 | struct value_print_options opts; |
79a45e25 | 8275 | struct ui_out *uiout = current_uiout; |
a96d9b2e SDJ |
8276 | |
8277 | get_user_print_options (&opts); | |
4a64f543 MS |
8278 | /* Field 4, the address, is omitted (which makes the columns not |
8279 | line up too nicely with the headers, but the effect is relatively | |
8280 | readable). */ | |
a96d9b2e SDJ |
8281 | if (opts.addressprint) |
8282 | ui_out_field_skip (uiout, "addr"); | |
8283 | annotate_field (5); | |
8284 | ||
be5c67c1 PA |
8285 | if (c->syscalls_to_be_caught |
8286 | && VEC_length (int, c->syscalls_to_be_caught) > 1) | |
a96d9b2e SDJ |
8287 | ui_out_text (uiout, "syscalls \""); |
8288 | else | |
8289 | ui_out_text (uiout, "syscall \""); | |
8290 | ||
be5c67c1 | 8291 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
8292 | { |
8293 | int i, iter; | |
8294 | char *text = xstrprintf ("%s", ""); | |
cc59ec59 | 8295 | |
a96d9b2e | 8296 | for (i = 0; |
be5c67c1 | 8297 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8298 | i++) |
8299 | { | |
8300 | char *x = text; | |
8301 | struct syscall s; | |
8302 | get_syscall_by_number (iter, &s); | |
8303 | ||
8304 | if (s.name != NULL) | |
8305 | text = xstrprintf ("%s%s, ", text, s.name); | |
8306 | else | |
8307 | text = xstrprintf ("%s%d, ", text, iter); | |
8308 | ||
8309 | /* We have to xfree the last 'text' (now stored at 'x') | |
e5dd4106 | 8310 | because xstrprintf dynamically allocates new space for it |
a96d9b2e SDJ |
8311 | on every call. */ |
8312 | xfree (x); | |
8313 | } | |
8314 | /* Remove the last comma. */ | |
8315 | text[strlen (text) - 2] = '\0'; | |
8316 | ui_out_field_string (uiout, "what", text); | |
8317 | } | |
8318 | else | |
8319 | ui_out_field_string (uiout, "what", "<any syscall>"); | |
8320 | ui_out_text (uiout, "\" "); | |
8ac3646f TT |
8321 | |
8322 | if (ui_out_is_mi_like_p (uiout)) | |
8323 | ui_out_field_string (uiout, "catch-type", "syscall"); | |
a96d9b2e SDJ |
8324 | } |
8325 | ||
8326 | /* Implement the "print_mention" breakpoint_ops method for syscall | |
8327 | catchpoints. */ | |
8328 | ||
8329 | static void | |
8330 | print_mention_catch_syscall (struct breakpoint *b) | |
8331 | { | |
be5c67c1 PA |
8332 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
8333 | ||
8334 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
8335 | { |
8336 | int i, iter; | |
8337 | ||
be5c67c1 | 8338 | if (VEC_length (int, c->syscalls_to_be_caught) > 1) |
a96d9b2e SDJ |
8339 | printf_filtered (_("Catchpoint %d (syscalls"), b->number); |
8340 | else | |
8341 | printf_filtered (_("Catchpoint %d (syscall"), b->number); | |
8342 | ||
8343 | for (i = 0; | |
be5c67c1 | 8344 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8345 | i++) |
8346 | { | |
8347 | struct syscall s; | |
8348 | get_syscall_by_number (iter, &s); | |
8349 | ||
8350 | if (s.name) | |
8351 | printf_filtered (" '%s' [%d]", s.name, s.number); | |
8352 | else | |
8353 | printf_filtered (" %d", s.number); | |
8354 | } | |
8355 | printf_filtered (")"); | |
8356 | } | |
8357 | else | |
8358 | printf_filtered (_("Catchpoint %d (any syscall)"), | |
8359 | b->number); | |
8360 | } | |
8361 | ||
6149aea9 PA |
8362 | /* Implement the "print_recreate" breakpoint_ops method for syscall |
8363 | catchpoints. */ | |
8364 | ||
8365 | static void | |
8366 | print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp) | |
8367 | { | |
be5c67c1 PA |
8368 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
8369 | ||
6149aea9 PA |
8370 | fprintf_unfiltered (fp, "catch syscall"); |
8371 | ||
be5c67c1 | 8372 | if (c->syscalls_to_be_caught) |
6149aea9 PA |
8373 | { |
8374 | int i, iter; | |
8375 | ||
8376 | for (i = 0; | |
be5c67c1 | 8377 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
6149aea9 PA |
8378 | i++) |
8379 | { | |
8380 | struct syscall s; | |
8381 | ||
8382 | get_syscall_by_number (iter, &s); | |
8383 | if (s.name) | |
8384 | fprintf_unfiltered (fp, " %s", s.name); | |
8385 | else | |
8386 | fprintf_unfiltered (fp, " %d", s.number); | |
8387 | } | |
8388 | } | |
d9b3f62e | 8389 | print_recreate_thread (b, fp); |
6149aea9 PA |
8390 | } |
8391 | ||
a96d9b2e SDJ |
8392 | /* The breakpoint_ops structure to be used in syscall catchpoints. */ |
8393 | ||
2060206e | 8394 | static struct breakpoint_ops catch_syscall_breakpoint_ops; |
a96d9b2e SDJ |
8395 | |
8396 | /* Returns non-zero if 'b' is a syscall catchpoint. */ | |
8397 | ||
8398 | static int | |
8399 | syscall_catchpoint_p (struct breakpoint *b) | |
8400 | { | |
8401 | return (b->ops == &catch_syscall_breakpoint_ops); | |
8402 | } | |
8403 | ||
346774a9 PA |
8404 | /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG |
8405 | is non-zero, then make the breakpoint temporary. If COND_STRING is | |
8406 | not NULL, then store it in the breakpoint. OPS, if not NULL, is | |
8407 | the breakpoint_ops structure associated to the catchpoint. */ | |
ce78b96d | 8408 | |
ab04a2af | 8409 | void |
346774a9 PA |
8410 | init_catchpoint (struct breakpoint *b, |
8411 | struct gdbarch *gdbarch, int tempflag, | |
8412 | char *cond_string, | |
c0a91b2b | 8413 | const struct breakpoint_ops *ops) |
c906108c | 8414 | { |
c5aa993b | 8415 | struct symtab_and_line sal; |
346774a9 | 8416 | |
fe39c653 | 8417 | init_sal (&sal); |
6c95b8df | 8418 | sal.pspace = current_program_space; |
c5aa993b | 8419 | |
28010a5d | 8420 | init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops); |
ce78b96d | 8421 | |
1b36a34b | 8422 | b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string); |
b5de0fa7 | 8423 | b->disposition = tempflag ? disp_del : disp_donttouch; |
346774a9 PA |
8424 | } |
8425 | ||
28010a5d | 8426 | void |
3ea46bff | 8427 | install_breakpoint (int internal, struct breakpoint *b, int update_gll) |
c56053d2 PA |
8428 | { |
8429 | add_to_breakpoint_chain (b); | |
3a5c3e22 | 8430 | set_breakpoint_number (internal, b); |
558a9d82 YQ |
8431 | if (is_tracepoint (b)) |
8432 | set_tracepoint_count (breakpoint_count); | |
3a5c3e22 PA |
8433 | if (!internal) |
8434 | mention (b); | |
c56053d2 | 8435 | observer_notify_breakpoint_created (b); |
3ea46bff YQ |
8436 | |
8437 | if (update_gll) | |
8438 | update_global_location_list (1); | |
c56053d2 PA |
8439 | } |
8440 | ||
9b70b993 | 8441 | static void |
a6d9a66e UW |
8442 | create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch, |
8443 | int tempflag, char *cond_string, | |
c0a91b2b | 8444 | const struct breakpoint_ops *ops) |
c906108c | 8445 | { |
e29a4733 | 8446 | struct fork_catchpoint *c = XNEW (struct fork_catchpoint); |
ce78b96d | 8447 | |
e29a4733 PA |
8448 | init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops); |
8449 | ||
8450 | c->forked_inferior_pid = null_ptid; | |
8451 | ||
3ea46bff | 8452 | install_breakpoint (0, &c->base, 1); |
c906108c SS |
8453 | } |
8454 | ||
fe798b75 JB |
8455 | /* Exec catchpoints. */ |
8456 | ||
b4d90040 PA |
8457 | /* An instance of this type is used to represent an exec catchpoint. |
8458 | It includes a "struct breakpoint" as a kind of base class; users | |
8459 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
8460 | really of this type iff its ops pointer points to | |
8461 | CATCH_EXEC_BREAKPOINT_OPS. */ | |
8462 | ||
8463 | struct exec_catchpoint | |
8464 | { | |
8465 | /* The base class. */ | |
8466 | struct breakpoint base; | |
8467 | ||
8468 | /* Filename of a program whose exec triggered this catchpoint. | |
8469 | This field is only valid immediately after this catchpoint has | |
8470 | triggered. */ | |
8471 | char *exec_pathname; | |
8472 | }; | |
8473 | ||
8474 | /* Implement the "dtor" breakpoint_ops method for exec | |
8475 | catchpoints. */ | |
8476 | ||
8477 | static void | |
8478 | dtor_catch_exec (struct breakpoint *b) | |
8479 | { | |
8480 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; | |
8481 | ||
8482 | xfree (c->exec_pathname); | |
348d480f | 8483 | |
2060206e | 8484 | base_breakpoint_ops.dtor (b); |
b4d90040 PA |
8485 | } |
8486 | ||
77b06cd7 TJB |
8487 | static int |
8488 | insert_catch_exec (struct bp_location *bl) | |
c906108c | 8489 | { |
77b06cd7 | 8490 | return target_insert_exec_catchpoint (PIDGET (inferior_ptid)); |
fe798b75 | 8491 | } |
c906108c | 8492 | |
fe798b75 | 8493 | static int |
77b06cd7 | 8494 | remove_catch_exec (struct bp_location *bl) |
fe798b75 JB |
8495 | { |
8496 | return target_remove_exec_catchpoint (PIDGET (inferior_ptid)); | |
8497 | } | |
c906108c | 8498 | |
fe798b75 | 8499 | static int |
f1310107 | 8500 | breakpoint_hit_catch_exec (const struct bp_location *bl, |
09ac7c10 TT |
8501 | struct address_space *aspace, CORE_ADDR bp_addr, |
8502 | const struct target_waitstatus *ws) | |
fe798b75 | 8503 | { |
b4d90040 PA |
8504 | struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner; |
8505 | ||
f90263c1 TT |
8506 | if (ws->kind != TARGET_WAITKIND_EXECD) |
8507 | return 0; | |
8508 | ||
8509 | c->exec_pathname = xstrdup (ws->value.execd_pathname); | |
8510 | return 1; | |
fe798b75 | 8511 | } |
c906108c | 8512 | |
fe798b75 | 8513 | static enum print_stop_action |
348d480f | 8514 | print_it_catch_exec (bpstat bs) |
fe798b75 | 8515 | { |
36dfb11c | 8516 | struct ui_out *uiout = current_uiout; |
348d480f | 8517 | struct breakpoint *b = bs->breakpoint_at; |
b4d90040 PA |
8518 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
8519 | ||
fe798b75 | 8520 | annotate_catchpoint (b->number); |
36dfb11c TT |
8521 | if (b->disposition == disp_del) |
8522 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
8523 | else | |
8524 | ui_out_text (uiout, "\nCatchpoint "); | |
8525 | if (ui_out_is_mi_like_p (uiout)) | |
8526 | { | |
8527 | ui_out_field_string (uiout, "reason", | |
8528 | async_reason_lookup (EXEC_ASYNC_EXEC)); | |
8529 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
8530 | } | |
8531 | ui_out_field_int (uiout, "bkptno", b->number); | |
8532 | ui_out_text (uiout, " (exec'd "); | |
8533 | ui_out_field_string (uiout, "new-exec", c->exec_pathname); | |
8534 | ui_out_text (uiout, "), "); | |
8535 | ||
fe798b75 | 8536 | return PRINT_SRC_AND_LOC; |
c906108c SS |
8537 | } |
8538 | ||
fe798b75 | 8539 | static void |
a6d9a66e | 8540 | print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc) |
fe798b75 | 8541 | { |
b4d90040 | 8542 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
fe798b75 | 8543 | struct value_print_options opts; |
79a45e25 | 8544 | struct ui_out *uiout = current_uiout; |
fe798b75 JB |
8545 | |
8546 | get_user_print_options (&opts); | |
8547 | ||
8548 | /* Field 4, the address, is omitted (which makes the columns | |
8549 | not line up too nicely with the headers, but the effect | |
8550 | is relatively readable). */ | |
8551 | if (opts.addressprint) | |
8552 | ui_out_field_skip (uiout, "addr"); | |
8553 | annotate_field (5); | |
8554 | ui_out_text (uiout, "exec"); | |
b4d90040 | 8555 | if (c->exec_pathname != NULL) |
fe798b75 JB |
8556 | { |
8557 | ui_out_text (uiout, ", program \""); | |
b4d90040 | 8558 | ui_out_field_string (uiout, "what", c->exec_pathname); |
fe798b75 JB |
8559 | ui_out_text (uiout, "\" "); |
8560 | } | |
8ac3646f TT |
8561 | |
8562 | if (ui_out_is_mi_like_p (uiout)) | |
8563 | ui_out_field_string (uiout, "catch-type", "exec"); | |
fe798b75 JB |
8564 | } |
8565 | ||
8566 | static void | |
8567 | print_mention_catch_exec (struct breakpoint *b) | |
8568 | { | |
8569 | printf_filtered (_("Catchpoint %d (exec)"), b->number); | |
8570 | } | |
8571 | ||
6149aea9 PA |
8572 | /* Implement the "print_recreate" breakpoint_ops method for exec |
8573 | catchpoints. */ | |
8574 | ||
8575 | static void | |
8576 | print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp) | |
8577 | { | |
8578 | fprintf_unfiltered (fp, "catch exec"); | |
d9b3f62e | 8579 | print_recreate_thread (b, fp); |
6149aea9 PA |
8580 | } |
8581 | ||
2060206e | 8582 | static struct breakpoint_ops catch_exec_breakpoint_ops; |
fe798b75 | 8583 | |
a96d9b2e SDJ |
8584 | static void |
8585 | create_syscall_event_catchpoint (int tempflag, VEC(int) *filter, | |
c0a91b2b | 8586 | const struct breakpoint_ops *ops) |
a96d9b2e | 8587 | { |
be5c67c1 | 8588 | struct syscall_catchpoint *c; |
a96d9b2e | 8589 | struct gdbarch *gdbarch = get_current_arch (); |
a96d9b2e | 8590 | |
be5c67c1 PA |
8591 | c = XNEW (struct syscall_catchpoint); |
8592 | init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops); | |
8593 | c->syscalls_to_be_caught = filter; | |
a96d9b2e | 8594 | |
3ea46bff | 8595 | install_breakpoint (0, &c->base, 1); |
a96d9b2e SDJ |
8596 | } |
8597 | ||
c906108c | 8598 | static int |
fba45db2 | 8599 | hw_breakpoint_used_count (void) |
c906108c | 8600 | { |
c906108c | 8601 | int i = 0; |
f1310107 TJB |
8602 | struct breakpoint *b; |
8603 | struct bp_location *bl; | |
c906108c SS |
8604 | |
8605 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8606 | { |
d6b74ac4 | 8607 | if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b)) |
f1310107 TJB |
8608 | for (bl = b->loc; bl; bl = bl->next) |
8609 | { | |
8610 | /* Special types of hardware breakpoints may use more than | |
8611 | one register. */ | |
348d480f | 8612 | i += b->ops->resources_needed (bl); |
f1310107 | 8613 | } |
c5aa993b | 8614 | } |
c906108c SS |
8615 | |
8616 | return i; | |
8617 | } | |
8618 | ||
a1398e0c PA |
8619 | /* Returns the resources B would use if it were a hardware |
8620 | watchpoint. */ | |
8621 | ||
c906108c | 8622 | static int |
a1398e0c | 8623 | hw_watchpoint_use_count (struct breakpoint *b) |
c906108c | 8624 | { |
c906108c | 8625 | int i = 0; |
e09342b5 | 8626 | struct bp_location *bl; |
c906108c | 8627 | |
a1398e0c PA |
8628 | if (!breakpoint_enabled (b)) |
8629 | return 0; | |
8630 | ||
8631 | for (bl = b->loc; bl; bl = bl->next) | |
8632 | { | |
8633 | /* Special types of hardware watchpoints may use more than | |
8634 | one register. */ | |
8635 | i += b->ops->resources_needed (bl); | |
8636 | } | |
8637 | ||
8638 | return i; | |
8639 | } | |
8640 | ||
8641 | /* Returns the sum the used resources of all hardware watchpoints of | |
8642 | type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED | |
8643 | the sum of the used resources of all hardware watchpoints of other | |
8644 | types _not_ TYPE. */ | |
8645 | ||
8646 | static int | |
8647 | hw_watchpoint_used_count_others (struct breakpoint *except, | |
8648 | enum bptype type, int *other_type_used) | |
8649 | { | |
8650 | int i = 0; | |
8651 | struct breakpoint *b; | |
8652 | ||
c906108c SS |
8653 | *other_type_used = 0; |
8654 | ALL_BREAKPOINTS (b) | |
e09342b5 | 8655 | { |
a1398e0c PA |
8656 | if (b == except) |
8657 | continue; | |
e09342b5 TJB |
8658 | if (!breakpoint_enabled (b)) |
8659 | continue; | |
8660 | ||
a1398e0c PA |
8661 | if (b->type == type) |
8662 | i += hw_watchpoint_use_count (b); | |
8663 | else if (is_hardware_watchpoint (b)) | |
8664 | *other_type_used = 1; | |
e09342b5 TJB |
8665 | } |
8666 | ||
c906108c SS |
8667 | return i; |
8668 | } | |
8669 | ||
c906108c | 8670 | void |
fba45db2 | 8671 | disable_watchpoints_before_interactive_call_start (void) |
c906108c | 8672 | { |
c5aa993b | 8673 | struct breakpoint *b; |
c906108c SS |
8674 | |
8675 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8676 | { |
cc60f2e3 | 8677 | if (is_watchpoint (b) && breakpoint_enabled (b)) |
c5aa993b | 8678 | { |
b5de0fa7 | 8679 | b->enable_state = bp_call_disabled; |
b60e7edf | 8680 | update_global_location_list (0); |
c5aa993b JM |
8681 | } |
8682 | } | |
c906108c SS |
8683 | } |
8684 | ||
8685 | void | |
fba45db2 | 8686 | enable_watchpoints_after_interactive_call_stop (void) |
c906108c | 8687 | { |
c5aa993b | 8688 | struct breakpoint *b; |
c906108c SS |
8689 | |
8690 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8691 | { |
cc60f2e3 | 8692 | if (is_watchpoint (b) && b->enable_state == bp_call_disabled) |
c5aa993b | 8693 | { |
b5de0fa7 | 8694 | b->enable_state = bp_enabled; |
b60e7edf | 8695 | update_global_location_list (1); |
c5aa993b JM |
8696 | } |
8697 | } | |
c906108c SS |
8698 | } |
8699 | ||
8bea4e01 UW |
8700 | void |
8701 | disable_breakpoints_before_startup (void) | |
8702 | { | |
6c95b8df | 8703 | current_program_space->executing_startup = 1; |
f8eba3c6 | 8704 | update_global_location_list (0); |
8bea4e01 UW |
8705 | } |
8706 | ||
8707 | void | |
8708 | enable_breakpoints_after_startup (void) | |
8709 | { | |
6c95b8df | 8710 | current_program_space->executing_startup = 0; |
f8eba3c6 | 8711 | breakpoint_re_set (); |
8bea4e01 UW |
8712 | } |
8713 | ||
c906108c SS |
8714 | |
8715 | /* Set a breakpoint that will evaporate an end of command | |
8716 | at address specified by SAL. | |
8717 | Restrict it to frame FRAME if FRAME is nonzero. */ | |
8718 | ||
8719 | struct breakpoint * | |
a6d9a66e UW |
8720 | set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal, |
8721 | struct frame_id frame_id, enum bptype type) | |
c906108c | 8722 | { |
52f0bd74 | 8723 | struct breakpoint *b; |
edb3359d | 8724 | |
193facb3 JK |
8725 | /* If FRAME_ID is valid, it should be a real frame, not an inlined or |
8726 | tail-called one. */ | |
8727 | gdb_assert (!frame_id_artificial_p (frame_id)); | |
edb3359d | 8728 | |
06edf0c0 | 8729 | b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops); |
b5de0fa7 EZ |
8730 | b->enable_state = bp_enabled; |
8731 | b->disposition = disp_donttouch; | |
818dd999 | 8732 | b->frame_id = frame_id; |
c906108c | 8733 | |
4a64f543 MS |
8734 | /* If we're debugging a multi-threaded program, then we want |
8735 | momentary breakpoints to be active in only a single thread of | |
8736 | control. */ | |
39f77062 KB |
8737 | if (in_thread_list (inferior_ptid)) |
8738 | b->thread = pid_to_thread_id (inferior_ptid); | |
c906108c | 8739 | |
b60e7edf | 8740 | update_global_location_list_nothrow (1); |
74960c60 | 8741 | |
c906108c SS |
8742 | return b; |
8743 | } | |
611c83ae | 8744 | |
06edf0c0 PA |
8745 | /* Make a momentary breakpoint based on the master breakpoint ORIG. |
8746 | The new breakpoint will have type TYPE, and use OPS as it | |
8747 | breakpoint_ops. */ | |
e58b0e63 | 8748 | |
06edf0c0 PA |
8749 | static struct breakpoint * |
8750 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
8751 | enum bptype type, | |
c0a91b2b | 8752 | const struct breakpoint_ops *ops) |
e58b0e63 PA |
8753 | { |
8754 | struct breakpoint *copy; | |
8755 | ||
06edf0c0 | 8756 | copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops); |
e58b0e63 | 8757 | copy->loc = allocate_bp_location (copy); |
0e30163f | 8758 | set_breakpoint_location_function (copy->loc, 1); |
e58b0e63 | 8759 | |
a6d9a66e | 8760 | copy->loc->gdbarch = orig->loc->gdbarch; |
e58b0e63 PA |
8761 | copy->loc->requested_address = orig->loc->requested_address; |
8762 | copy->loc->address = orig->loc->address; | |
8763 | copy->loc->section = orig->loc->section; | |
6c95b8df | 8764 | copy->loc->pspace = orig->loc->pspace; |
55aa24fb | 8765 | copy->loc->probe = orig->loc->probe; |
f8eba3c6 | 8766 | copy->loc->line_number = orig->loc->line_number; |
2f202fde | 8767 | copy->loc->symtab = orig->loc->symtab; |
e58b0e63 PA |
8768 | copy->frame_id = orig->frame_id; |
8769 | copy->thread = orig->thread; | |
6c95b8df | 8770 | copy->pspace = orig->pspace; |
e58b0e63 PA |
8771 | |
8772 | copy->enable_state = bp_enabled; | |
8773 | copy->disposition = disp_donttouch; | |
8774 | copy->number = internal_breakpoint_number--; | |
8775 | ||
8776 | update_global_location_list_nothrow (0); | |
8777 | return copy; | |
8778 | } | |
8779 | ||
06edf0c0 PA |
8780 | /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if |
8781 | ORIG is NULL. */ | |
8782 | ||
8783 | struct breakpoint * | |
8784 | clone_momentary_breakpoint (struct breakpoint *orig) | |
8785 | { | |
8786 | /* If there's nothing to clone, then return nothing. */ | |
8787 | if (orig == NULL) | |
8788 | return NULL; | |
8789 | ||
8790 | return momentary_breakpoint_from_master (orig, orig->type, orig->ops); | |
8791 | } | |
8792 | ||
611c83ae | 8793 | struct breakpoint * |
a6d9a66e UW |
8794 | set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc, |
8795 | enum bptype type) | |
611c83ae PA |
8796 | { |
8797 | struct symtab_and_line sal; | |
8798 | ||
8799 | sal = find_pc_line (pc, 0); | |
8800 | sal.pc = pc; | |
8801 | sal.section = find_pc_overlay (pc); | |
8802 | sal.explicit_pc = 1; | |
8803 | ||
a6d9a66e | 8804 | return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type); |
611c83ae | 8805 | } |
c906108c | 8806 | \f |
c5aa993b | 8807 | |
c906108c SS |
8808 | /* Tell the user we have just set a breakpoint B. */ |
8809 | ||
8810 | static void | |
fba45db2 | 8811 | mention (struct breakpoint *b) |
c906108c | 8812 | { |
348d480f | 8813 | b->ops->print_mention (b); |
79a45e25 | 8814 | if (ui_out_is_mi_like_p (current_uiout)) |
fb40c209 | 8815 | return; |
c906108c SS |
8816 | printf_filtered ("\n"); |
8817 | } | |
c906108c | 8818 | \f |
c5aa993b | 8819 | |
0d381245 | 8820 | static struct bp_location * |
39d61571 | 8821 | add_location_to_breakpoint (struct breakpoint *b, |
0d381245 VP |
8822 | const struct symtab_and_line *sal) |
8823 | { | |
8824 | struct bp_location *loc, **tmp; | |
3742cc8b YQ |
8825 | CORE_ADDR adjusted_address; |
8826 | struct gdbarch *loc_gdbarch = get_sal_arch (*sal); | |
8827 | ||
8828 | if (loc_gdbarch == NULL) | |
8829 | loc_gdbarch = b->gdbarch; | |
8830 | ||
8831 | /* Adjust the breakpoint's address prior to allocating a location. | |
8832 | Once we call allocate_bp_location(), that mostly uninitialized | |
8833 | location will be placed on the location chain. Adjustment of the | |
8834 | breakpoint may cause target_read_memory() to be called and we do | |
8835 | not want its scan of the location chain to find a breakpoint and | |
8836 | location that's only been partially initialized. */ | |
8837 | adjusted_address = adjust_breakpoint_address (loc_gdbarch, | |
8838 | sal->pc, b->type); | |
0d381245 | 8839 | |
d30113d4 | 8840 | /* Sort the locations by their ADDRESS. */ |
39d61571 | 8841 | loc = allocate_bp_location (b); |
d30113d4 JK |
8842 | for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address; |
8843 | tmp = &((*tmp)->next)) | |
0d381245 | 8844 | ; |
d30113d4 | 8845 | loc->next = *tmp; |
0d381245 | 8846 | *tmp = loc; |
3742cc8b | 8847 | |
0d381245 | 8848 | loc->requested_address = sal->pc; |
3742cc8b | 8849 | loc->address = adjusted_address; |
6c95b8df | 8850 | loc->pspace = sal->pspace; |
55aa24fb | 8851 | loc->probe = sal->probe; |
6c95b8df | 8852 | gdb_assert (loc->pspace != NULL); |
0d381245 | 8853 | loc->section = sal->section; |
3742cc8b | 8854 | loc->gdbarch = loc_gdbarch; |
f8eba3c6 | 8855 | loc->line_number = sal->line; |
2f202fde | 8856 | loc->symtab = sal->symtab; |
f8eba3c6 | 8857 | |
0e30163f JK |
8858 | set_breakpoint_location_function (loc, |
8859 | sal->explicit_pc || sal->explicit_line); | |
0d381245 VP |
8860 | return loc; |
8861 | } | |
514f746b AR |
8862 | \f |
8863 | ||
8864 | /* Return 1 if LOC is pointing to a permanent breakpoint, | |
8865 | return 0 otherwise. */ | |
8866 | ||
8867 | static int | |
8868 | bp_loc_is_permanent (struct bp_location *loc) | |
8869 | { | |
8870 | int len; | |
8871 | CORE_ADDR addr; | |
1afeeb75 | 8872 | const gdb_byte *bpoint; |
514f746b | 8873 | gdb_byte *target_mem; |
939c61fa JK |
8874 | struct cleanup *cleanup; |
8875 | int retval = 0; | |
514f746b AR |
8876 | |
8877 | gdb_assert (loc != NULL); | |
8878 | ||
8879 | addr = loc->address; | |
1afeeb75 | 8880 | bpoint = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len); |
514f746b | 8881 | |
939c61fa | 8882 | /* Software breakpoints unsupported? */ |
1afeeb75 | 8883 | if (bpoint == NULL) |
939c61fa JK |
8884 | return 0; |
8885 | ||
514f746b AR |
8886 | target_mem = alloca (len); |
8887 | ||
939c61fa JK |
8888 | /* Enable the automatic memory restoration from breakpoints while |
8889 | we read the memory. Otherwise we could say about our temporary | |
8890 | breakpoints they are permanent. */ | |
6c95b8df PA |
8891 | cleanup = save_current_space_and_thread (); |
8892 | ||
8893 | switch_to_program_space_and_thread (loc->pspace); | |
8894 | make_show_memory_breakpoints_cleanup (0); | |
939c61fa | 8895 | |
514f746b | 8896 | if (target_read_memory (loc->address, target_mem, len) == 0 |
1afeeb75 | 8897 | && memcmp (target_mem, bpoint, len) == 0) |
939c61fa | 8898 | retval = 1; |
514f746b | 8899 | |
939c61fa JK |
8900 | do_cleanups (cleanup); |
8901 | ||
8902 | return retval; | |
514f746b AR |
8903 | } |
8904 | ||
e7e0cddf SS |
8905 | /* Build a command list for the dprintf corresponding to the current |
8906 | settings of the dprintf style options. */ | |
8907 | ||
8908 | static void | |
8909 | update_dprintf_command_list (struct breakpoint *b) | |
8910 | { | |
8911 | char *dprintf_args = b->extra_string; | |
8912 | char *printf_line = NULL; | |
8913 | ||
8914 | if (!dprintf_args) | |
8915 | return; | |
8916 | ||
8917 | dprintf_args = skip_spaces (dprintf_args); | |
8918 | ||
8919 | /* Allow a comma, as it may have terminated a location, but don't | |
8920 | insist on it. */ | |
8921 | if (*dprintf_args == ',') | |
8922 | ++dprintf_args; | |
8923 | dprintf_args = skip_spaces (dprintf_args); | |
8924 | ||
8925 | if (*dprintf_args != '"') | |
8926 | error (_("Bad format string, missing '\"'.")); | |
8927 | ||
d3ce09f5 | 8928 | if (strcmp (dprintf_style, dprintf_style_gdb) == 0) |
e7e0cddf | 8929 | printf_line = xstrprintf ("printf %s", dprintf_args); |
d3ce09f5 | 8930 | else if (strcmp (dprintf_style, dprintf_style_call) == 0) |
e7e0cddf SS |
8931 | { |
8932 | if (!dprintf_function) | |
8933 | error (_("No function supplied for dprintf call")); | |
8934 | ||
8935 | if (dprintf_channel && strlen (dprintf_channel) > 0) | |
8936 | printf_line = xstrprintf ("call (void) %s (%s,%s)", | |
8937 | dprintf_function, | |
8938 | dprintf_channel, | |
8939 | dprintf_args); | |
8940 | else | |
8941 | printf_line = xstrprintf ("call (void) %s (%s)", | |
8942 | dprintf_function, | |
8943 | dprintf_args); | |
8944 | } | |
d3ce09f5 SS |
8945 | else if (strcmp (dprintf_style, dprintf_style_agent) == 0) |
8946 | { | |
8947 | if (target_can_run_breakpoint_commands ()) | |
8948 | printf_line = xstrprintf ("agent-printf %s", dprintf_args); | |
8949 | else | |
8950 | { | |
8951 | warning (_("Target cannot run dprintf commands, falling back to GDB printf")); | |
8952 | printf_line = xstrprintf ("printf %s", dprintf_args); | |
8953 | } | |
8954 | } | |
e7e0cddf SS |
8955 | else |
8956 | internal_error (__FILE__, __LINE__, | |
8957 | _("Invalid dprintf style.")); | |
8958 | ||
f28045c2 | 8959 | gdb_assert (printf_line != NULL); |
e7e0cddf | 8960 | /* Manufacture a printf/continue sequence. */ |
f28045c2 YQ |
8961 | { |
8962 | struct command_line *printf_cmd_line, *cont_cmd_line = NULL; | |
e7e0cddf | 8963 | |
f28045c2 YQ |
8964 | if (strcmp (dprintf_style, dprintf_style_agent) != 0) |
8965 | { | |
8966 | cont_cmd_line = xmalloc (sizeof (struct command_line)); | |
8967 | cont_cmd_line->control_type = simple_control; | |
8968 | cont_cmd_line->body_count = 0; | |
8969 | cont_cmd_line->body_list = NULL; | |
8970 | cont_cmd_line->next = NULL; | |
8971 | cont_cmd_line->line = xstrdup ("continue"); | |
8972 | } | |
e7e0cddf | 8973 | |
f28045c2 YQ |
8974 | printf_cmd_line = xmalloc (sizeof (struct command_line)); |
8975 | printf_cmd_line->control_type = simple_control; | |
8976 | printf_cmd_line->body_count = 0; | |
8977 | printf_cmd_line->body_list = NULL; | |
8978 | printf_cmd_line->next = cont_cmd_line; | |
8979 | printf_cmd_line->line = printf_line; | |
e7e0cddf | 8980 | |
f28045c2 YQ |
8981 | breakpoint_set_commands (b, printf_cmd_line); |
8982 | } | |
e7e0cddf SS |
8983 | } |
8984 | ||
8985 | /* Update all dprintf commands, making their command lists reflect | |
8986 | current style settings. */ | |
8987 | ||
8988 | static void | |
8989 | update_dprintf_commands (char *args, int from_tty, | |
8990 | struct cmd_list_element *c) | |
8991 | { | |
8992 | struct breakpoint *b; | |
8993 | ||
8994 | ALL_BREAKPOINTS (b) | |
8995 | { | |
8996 | if (b->type == bp_dprintf) | |
8997 | update_dprintf_command_list (b); | |
8998 | } | |
8999 | } | |
c3f6f71d | 9000 | |
018d34a4 VP |
9001 | /* Create a breakpoint with SAL as location. Use ADDR_STRING |
9002 | as textual description of the location, and COND_STRING | |
db107f19 | 9003 | as condition expression. */ |
018d34a4 VP |
9004 | |
9005 | static void | |
d9b3f62e PA |
9006 | init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch, |
9007 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 9008 | char *filter, char *cond_string, |
e7e0cddf | 9009 | char *extra_string, |
d9b3f62e PA |
9010 | enum bptype type, enum bpdisp disposition, |
9011 | int thread, int task, int ignore_count, | |
c0a91b2b | 9012 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
9013 | int enabled, int internal, unsigned flags, |
9014 | int display_canonical) | |
018d34a4 | 9015 | { |
0d381245 | 9016 | int i; |
018d34a4 VP |
9017 | |
9018 | if (type == bp_hardware_breakpoint) | |
9019 | { | |
fbbd034e AS |
9020 | int target_resources_ok; |
9021 | ||
9022 | i = hw_breakpoint_used_count (); | |
9023 | target_resources_ok = | |
9024 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
018d34a4 VP |
9025 | i + 1, 0); |
9026 | if (target_resources_ok == 0) | |
9027 | error (_("No hardware breakpoint support in the target.")); | |
9028 | else if (target_resources_ok < 0) | |
9029 | error (_("Hardware breakpoints used exceeds limit.")); | |
9030 | } | |
9031 | ||
6c95b8df PA |
9032 | gdb_assert (sals.nelts > 0); |
9033 | ||
0d381245 VP |
9034 | for (i = 0; i < sals.nelts; ++i) |
9035 | { | |
9036 | struct symtab_and_line sal = sals.sals[i]; | |
9037 | struct bp_location *loc; | |
9038 | ||
9039 | if (from_tty) | |
5af949e3 UW |
9040 | { |
9041 | struct gdbarch *loc_gdbarch = get_sal_arch (sal); | |
9042 | if (!loc_gdbarch) | |
9043 | loc_gdbarch = gdbarch; | |
9044 | ||
9045 | describe_other_breakpoints (loc_gdbarch, | |
6c95b8df | 9046 | sal.pspace, sal.pc, sal.section, thread); |
5af949e3 | 9047 | } |
0d381245 VP |
9048 | |
9049 | if (i == 0) | |
9050 | { | |
d9b3f62e | 9051 | init_raw_breakpoint (b, gdbarch, sal, type, ops); |
0d381245 | 9052 | b->thread = thread; |
4a306c9a | 9053 | b->task = task; |
855a6e68 | 9054 | |
0d381245 | 9055 | b->cond_string = cond_string; |
e7e0cddf | 9056 | b->extra_string = extra_string; |
0d381245 | 9057 | b->ignore_count = ignore_count; |
41447f92 | 9058 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
0d381245 | 9059 | b->disposition = disposition; |
6c95b8df | 9060 | |
44f238bb PA |
9061 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
9062 | b->loc->inserted = 1; | |
9063 | ||
0fb4aa4b PA |
9064 | if (type == bp_static_tracepoint) |
9065 | { | |
d9b3f62e | 9066 | struct tracepoint *t = (struct tracepoint *) b; |
0fb4aa4b PA |
9067 | struct static_tracepoint_marker marker; |
9068 | ||
983af33b | 9069 | if (strace_marker_p (b)) |
0fb4aa4b PA |
9070 | { |
9071 | /* We already know the marker exists, otherwise, we | |
9072 | wouldn't see a sal for it. */ | |
9073 | char *p = &addr_string[3]; | |
9074 | char *endp; | |
9075 | char *marker_str; | |
0fb4aa4b | 9076 | |
e9cafbcc | 9077 | p = skip_spaces (p); |
0fb4aa4b | 9078 | |
e9cafbcc | 9079 | endp = skip_to_space (p); |
0fb4aa4b PA |
9080 | |
9081 | marker_str = savestring (p, endp - p); | |
d9b3f62e | 9082 | t->static_trace_marker_id = marker_str; |
0fb4aa4b | 9083 | |
3e43a32a MS |
9084 | printf_filtered (_("Probed static tracepoint " |
9085 | "marker \"%s\"\n"), | |
d9b3f62e | 9086 | t->static_trace_marker_id); |
0fb4aa4b PA |
9087 | } |
9088 | else if (target_static_tracepoint_marker_at (sal.pc, &marker)) | |
9089 | { | |
d9b3f62e | 9090 | t->static_trace_marker_id = xstrdup (marker.str_id); |
0fb4aa4b PA |
9091 | release_static_tracepoint_marker (&marker); |
9092 | ||
3e43a32a MS |
9093 | printf_filtered (_("Probed static tracepoint " |
9094 | "marker \"%s\"\n"), | |
d9b3f62e | 9095 | t->static_trace_marker_id); |
0fb4aa4b PA |
9096 | } |
9097 | else | |
3e43a32a MS |
9098 | warning (_("Couldn't determine the static " |
9099 | "tracepoint marker to probe")); | |
0fb4aa4b PA |
9100 | } |
9101 | ||
0d381245 VP |
9102 | loc = b->loc; |
9103 | } | |
9104 | else | |
018d34a4 | 9105 | { |
39d61571 | 9106 | loc = add_location_to_breakpoint (b, &sal); |
44f238bb PA |
9107 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
9108 | loc->inserted = 1; | |
0d381245 VP |
9109 | } |
9110 | ||
514f746b AR |
9111 | if (bp_loc_is_permanent (loc)) |
9112 | make_breakpoint_permanent (b); | |
9113 | ||
0d381245 VP |
9114 | if (b->cond_string) |
9115 | { | |
bbc13ae3 KS |
9116 | const char *arg = b->cond_string; |
9117 | ||
1bb9788d TT |
9118 | loc->cond = parse_exp_1 (&arg, loc->address, |
9119 | block_for_pc (loc->address), 0); | |
0d381245 | 9120 | if (*arg) |
588ae58c | 9121 | error (_("Garbage '%s' follows condition"), arg); |
018d34a4 | 9122 | } |
e7e0cddf SS |
9123 | |
9124 | /* Dynamic printf requires and uses additional arguments on the | |
9125 | command line, otherwise it's an error. */ | |
9126 | if (type == bp_dprintf) | |
9127 | { | |
9128 | if (b->extra_string) | |
9129 | update_dprintf_command_list (b); | |
9130 | else | |
9131 | error (_("Format string required")); | |
9132 | } | |
9133 | else if (b->extra_string) | |
588ae58c | 9134 | error (_("Garbage '%s' at end of command"), b->extra_string); |
855a6e68 | 9135 | } |
018d34a4 | 9136 | |
56435ebe | 9137 | b->display_canonical = display_canonical; |
018d34a4 VP |
9138 | if (addr_string) |
9139 | b->addr_string = addr_string; | |
9140 | else | |
9141 | /* addr_string has to be used or breakpoint_re_set will delete | |
9142 | me. */ | |
5af949e3 UW |
9143 | b->addr_string |
9144 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
f8eba3c6 | 9145 | b->filter = filter; |
d9b3f62e | 9146 | } |
018d34a4 | 9147 | |
d9b3f62e PA |
9148 | static void |
9149 | create_breakpoint_sal (struct gdbarch *gdbarch, | |
9150 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 9151 | char *filter, char *cond_string, |
e7e0cddf | 9152 | char *extra_string, |
d9b3f62e PA |
9153 | enum bptype type, enum bpdisp disposition, |
9154 | int thread, int task, int ignore_count, | |
c0a91b2b | 9155 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
9156 | int enabled, int internal, unsigned flags, |
9157 | int display_canonical) | |
d9b3f62e PA |
9158 | { |
9159 | struct breakpoint *b; | |
9160 | struct cleanup *old_chain; | |
9161 | ||
9162 | if (is_tracepoint_type (type)) | |
9163 | { | |
9164 | struct tracepoint *t; | |
9165 | ||
9166 | t = XCNEW (struct tracepoint); | |
9167 | b = &t->base; | |
9168 | } | |
9169 | else | |
9170 | b = XNEW (struct breakpoint); | |
9171 | ||
9172 | old_chain = make_cleanup (xfree, b); | |
9173 | ||
9174 | init_breakpoint_sal (b, gdbarch, | |
9175 | sals, addr_string, | |
e7e0cddf | 9176 | filter, cond_string, extra_string, |
d9b3f62e PA |
9177 | type, disposition, |
9178 | thread, task, ignore_count, | |
9179 | ops, from_tty, | |
44f238bb PA |
9180 | enabled, internal, flags, |
9181 | display_canonical); | |
d9b3f62e PA |
9182 | discard_cleanups (old_chain); |
9183 | ||
3ea46bff | 9184 | install_breakpoint (internal, b, 0); |
018d34a4 VP |
9185 | } |
9186 | ||
9187 | /* Add SALS.nelts breakpoints to the breakpoint table. For each | |
9188 | SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i] | |
9189 | value. COND_STRING, if not NULL, specified the condition to be | |
9190 | used for all breakpoints. Essentially the only case where | |
9191 | SALS.nelts is not 1 is when we set a breakpoint on an overloaded | |
9192 | function. In that case, it's still not possible to specify | |
9193 | separate conditions for different overloaded functions, so | |
9194 | we take just a single condition string. | |
9195 | ||
c3f6f71d | 9196 | NOTE: If the function succeeds, the caller is expected to cleanup |
018d34a4 | 9197 | the arrays ADDR_STRING, COND_STRING, and SALS (but not the |
c3f6f71d JM |
9198 | array contents). If the function fails (error() is called), the |
9199 | caller is expected to cleanups both the ADDR_STRING, COND_STRING, | |
4a64f543 | 9200 | COND and SALS arrays and each of those arrays contents. */ |
c906108c SS |
9201 | |
9202 | static void | |
8cdf0e15 | 9203 | create_breakpoints_sal (struct gdbarch *gdbarch, |
7efd8fc2 | 9204 | struct linespec_result *canonical, |
e7e0cddf | 9205 | char *cond_string, char *extra_string, |
8cdf0e15 VP |
9206 | enum bptype type, enum bpdisp disposition, |
9207 | int thread, int task, int ignore_count, | |
c0a91b2b | 9208 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb | 9209 | int enabled, int internal, unsigned flags) |
c906108c | 9210 | { |
018d34a4 | 9211 | int i; |
f8eba3c6 | 9212 | struct linespec_sals *lsal; |
cc59ec59 | 9213 | |
f8eba3c6 TT |
9214 | if (canonical->pre_expanded) |
9215 | gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1); | |
9216 | ||
9217 | for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i) | |
c3f6f71d | 9218 | { |
f8eba3c6 TT |
9219 | /* Note that 'addr_string' can be NULL in the case of a plain |
9220 | 'break', without arguments. */ | |
9221 | char *addr_string = (canonical->addr_string | |
9222 | ? xstrdup (canonical->addr_string) | |
9223 | : NULL); | |
9224 | char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL; | |
9225 | struct cleanup *inner = make_cleanup (xfree, addr_string); | |
0d381245 | 9226 | |
f8eba3c6 TT |
9227 | make_cleanup (xfree, filter_string); |
9228 | create_breakpoint_sal (gdbarch, lsal->sals, | |
9229 | addr_string, | |
9230 | filter_string, | |
e7e0cddf SS |
9231 | cond_string, extra_string, |
9232 | type, disposition, | |
84f4c1fe | 9233 | thread, task, ignore_count, ops, |
44f238bb | 9234 | from_tty, enabled, internal, flags, |
56435ebe | 9235 | canonical->special_display); |
f8eba3c6 | 9236 | discard_cleanups (inner); |
c3f6f71d | 9237 | } |
c3f6f71d | 9238 | } |
c906108c | 9239 | |
9998af43 | 9240 | /* Parse ADDRESS which is assumed to be a SAL specification possibly |
c3f6f71d | 9241 | followed by conditionals. On return, SALS contains an array of SAL |
4a64f543 | 9242 | addresses found. ADDR_STRING contains a vector of (canonical) |
9998af43 TJB |
9243 | address strings. ADDRESS points to the end of the SAL. |
9244 | ||
9245 | The array and the line spec strings are allocated on the heap, it is | |
9246 | the caller's responsibility to free them. */ | |
c906108c | 9247 | |
b9362cc7 | 9248 | static void |
c3f6f71d | 9249 | parse_breakpoint_sals (char **address, |
58438ac1 | 9250 | struct linespec_result *canonical) |
c3f6f71d | 9251 | { |
c3f6f71d | 9252 | /* If no arg given, or if first arg is 'if ', use the default |
4a64f543 | 9253 | breakpoint. */ |
c3f6f71d JM |
9254 | if ((*address) == NULL |
9255 | || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2]))) | |
c906108c | 9256 | { |
1bfeeb0f JL |
9257 | /* The last displayed codepoint, if it's valid, is our default breakpoint |
9258 | address. */ | |
9259 | if (last_displayed_sal_is_valid ()) | |
c906108c | 9260 | { |
f8eba3c6 | 9261 | struct linespec_sals lsal; |
c3f6f71d | 9262 | struct symtab_and_line sal; |
1c8cdcb1 | 9263 | CORE_ADDR pc; |
cc59ec59 | 9264 | |
4a64f543 | 9265 | init_sal (&sal); /* Initialize to zeroes. */ |
f8eba3c6 | 9266 | lsal.sals.sals = (struct symtab_and_line *) |
c906108c | 9267 | xmalloc (sizeof (struct symtab_and_line)); |
1bfeeb0f JL |
9268 | |
9269 | /* Set sal's pspace, pc, symtab, and line to the values | |
1c8cdcb1 JK |
9270 | corresponding to the last call to print_frame_info. |
9271 | Be sure to reinitialize LINE with NOTCURRENT == 0 | |
9272 | as the breakpoint line number is inappropriate otherwise. | |
9273 | find_pc_line would adjust PC, re-set it back. */ | |
1bfeeb0f | 9274 | get_last_displayed_sal (&sal); |
1c8cdcb1 JK |
9275 | pc = sal.pc; |
9276 | sal = find_pc_line (pc, 0); | |
00903456 | 9277 | |
4a64f543 | 9278 | /* "break" without arguments is equivalent to "break *PC" |
1bfeeb0f JL |
9279 | where PC is the last displayed codepoint's address. So |
9280 | make sure to set sal.explicit_pc to prevent GDB from | |
9281 | trying to expand the list of sals to include all other | |
9282 | instances with the same symtab and line. */ | |
1c8cdcb1 | 9283 | sal.pc = pc; |
00903456 JK |
9284 | sal.explicit_pc = 1; |
9285 | ||
f8eba3c6 TT |
9286 | lsal.sals.sals[0] = sal; |
9287 | lsal.sals.nelts = 1; | |
9288 | lsal.canonical = NULL; | |
9289 | ||
9290 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
c906108c SS |
9291 | } |
9292 | else | |
8a3fe4f8 | 9293 | error (_("No default breakpoint address now.")); |
c906108c SS |
9294 | } |
9295 | else | |
9296 | { | |
cc80f267 JK |
9297 | struct symtab_and_line cursal = get_current_source_symtab_and_line (); |
9298 | ||
c906108c | 9299 | /* Force almost all breakpoints to be in terms of the |
4a64f543 MS |
9300 | current_source_symtab (which is decode_line_1's default). |
9301 | This should produce the results we want almost all of the | |
cc80f267 JK |
9302 | time while leaving default_breakpoint_* alone. |
9303 | ||
9304 | ObjC: However, don't match an Objective-C method name which | |
9305 | may have a '+' or '-' succeeded by a '['. */ | |
9306 | if (last_displayed_sal_is_valid () | |
9307 | && (!cursal.symtab | |
9308 | || ((strchr ("+-", (*address)[0]) != NULL) | |
9309 | && ((*address)[1] != '[')))) | |
f8eba3c6 TT |
9310 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, |
9311 | get_last_displayed_symtab (), | |
9312 | get_last_displayed_line (), | |
9313 | canonical, NULL, NULL); | |
c906108c | 9314 | else |
f8eba3c6 | 9315 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, |
cc80f267 | 9316 | cursal.symtab, cursal.line, canonical, NULL, NULL); |
c906108c | 9317 | } |
c3f6f71d | 9318 | } |
c906108c | 9319 | |
c906108c | 9320 | |
c3f6f71d | 9321 | /* Convert each SAL into a real PC. Verify that the PC can be |
4a64f543 | 9322 | inserted as a breakpoint. If it can't throw an error. */ |
c906108c | 9323 | |
b9362cc7 | 9324 | static void |
23e7acfb | 9325 | breakpoint_sals_to_pc (struct symtabs_and_lines *sals) |
c3f6f71d JM |
9326 | { |
9327 | int i; | |
cc59ec59 | 9328 | |
c3f6f71d | 9329 | for (i = 0; i < sals->nelts; i++) |
ee53e872 | 9330 | resolve_sal_pc (&sals->sals[i]); |
c3f6f71d JM |
9331 | } |
9332 | ||
7a697b8d SS |
9333 | /* Fast tracepoints may have restrictions on valid locations. For |
9334 | instance, a fast tracepoint using a jump instead of a trap will | |
9335 | likely have to overwrite more bytes than a trap would, and so can | |
9336 | only be placed where the instruction is longer than the jump, or a | |
9337 | multi-instruction sequence does not have a jump into the middle of | |
9338 | it, etc. */ | |
9339 | ||
9340 | static void | |
9341 | check_fast_tracepoint_sals (struct gdbarch *gdbarch, | |
9342 | struct symtabs_and_lines *sals) | |
9343 | { | |
9344 | int i, rslt; | |
9345 | struct symtab_and_line *sal; | |
9346 | char *msg; | |
9347 | struct cleanup *old_chain; | |
9348 | ||
9349 | for (i = 0; i < sals->nelts; i++) | |
9350 | { | |
f8eba3c6 TT |
9351 | struct gdbarch *sarch; |
9352 | ||
7a697b8d SS |
9353 | sal = &sals->sals[i]; |
9354 | ||
f8eba3c6 TT |
9355 | sarch = get_sal_arch (*sal); |
9356 | /* We fall back to GDBARCH if there is no architecture | |
9357 | associated with SAL. */ | |
9358 | if (sarch == NULL) | |
9359 | sarch = gdbarch; | |
9360 | rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, | |
7a697b8d SS |
9361 | NULL, &msg); |
9362 | old_chain = make_cleanup (xfree, msg); | |
9363 | ||
9364 | if (!rslt) | |
9365 | error (_("May not have a fast tracepoint at 0x%s%s"), | |
f8eba3c6 | 9366 | paddress (sarch, sal->pc), (msg ? msg : "")); |
7a697b8d SS |
9367 | |
9368 | do_cleanups (old_chain); | |
9369 | } | |
9370 | } | |
9371 | ||
af4908ba KS |
9372 | /* Issue an invalid thread ID error. */ |
9373 | ||
9374 | static void ATTRIBUTE_NORETURN | |
9375 | invalid_thread_id_error (int id) | |
9376 | { | |
9377 | error (_("Unknown thread %d."), id); | |
9378 | } | |
9379 | ||
018d34a4 VP |
9380 | /* Given TOK, a string specification of condition and thread, as |
9381 | accepted by the 'break' command, extract the condition | |
9382 | string and thread number and set *COND_STRING and *THREAD. | |
4a64f543 | 9383 | PC identifies the context at which the condition should be parsed. |
018d34a4 VP |
9384 | If no condition is found, *COND_STRING is set to NULL. |
9385 | If no thread is found, *THREAD is set to -1. */ | |
d634f2de JB |
9386 | |
9387 | static void | |
bbc13ae3 | 9388 | find_condition_and_thread (const char *tok, CORE_ADDR pc, |
e7e0cddf SS |
9389 | char **cond_string, int *thread, int *task, |
9390 | char **rest) | |
018d34a4 VP |
9391 | { |
9392 | *cond_string = NULL; | |
9393 | *thread = -1; | |
ed1d1739 KS |
9394 | *task = 0; |
9395 | *rest = NULL; | |
9396 | ||
018d34a4 VP |
9397 | while (tok && *tok) |
9398 | { | |
bbc13ae3 | 9399 | const char *end_tok; |
018d34a4 | 9400 | int toklen; |
bbc13ae3 KS |
9401 | const char *cond_start = NULL; |
9402 | const char *cond_end = NULL; | |
cc59ec59 | 9403 | |
bbc13ae3 | 9404 | tok = skip_spaces_const (tok); |
e7e0cddf SS |
9405 | |
9406 | if ((*tok == '"' || *tok == ',') && rest) | |
9407 | { | |
9408 | *rest = savestring (tok, strlen (tok)); | |
9409 | return; | |
9410 | } | |
9411 | ||
bbc13ae3 | 9412 | end_tok = skip_to_space_const (tok); |
d634f2de | 9413 | |
018d34a4 | 9414 | toklen = end_tok - tok; |
d634f2de | 9415 | |
018d34a4 VP |
9416 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) |
9417 | { | |
f7545552 TT |
9418 | struct expression *expr; |
9419 | ||
018d34a4 | 9420 | tok = cond_start = end_tok + 1; |
1bb9788d | 9421 | expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0); |
f7545552 | 9422 | xfree (expr); |
018d34a4 | 9423 | cond_end = tok; |
d634f2de | 9424 | *cond_string = savestring (cond_start, cond_end - cond_start); |
018d34a4 VP |
9425 | } |
9426 | else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0) | |
9427 | { | |
9428 | char *tmptok; | |
d634f2de | 9429 | |
018d34a4 | 9430 | tok = end_tok + 1; |
bbc13ae3 | 9431 | *thread = strtol (tok, &tmptok, 0); |
018d34a4 VP |
9432 | if (tok == tmptok) |
9433 | error (_("Junk after thread keyword.")); | |
9434 | if (!valid_thread_id (*thread)) | |
af4908ba | 9435 | invalid_thread_id_error (*thread); |
bbc13ae3 | 9436 | tok = tmptok; |
018d34a4 | 9437 | } |
4a306c9a JB |
9438 | else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0) |
9439 | { | |
9440 | char *tmptok; | |
9441 | ||
9442 | tok = end_tok + 1; | |
bbc13ae3 | 9443 | *task = strtol (tok, &tmptok, 0); |
4a306c9a JB |
9444 | if (tok == tmptok) |
9445 | error (_("Junk after task keyword.")); | |
9446 | if (!valid_task_id (*task)) | |
b6199126 | 9447 | error (_("Unknown task %d."), *task); |
bbc13ae3 | 9448 | tok = tmptok; |
4a306c9a | 9449 | } |
e7e0cddf SS |
9450 | else if (rest) |
9451 | { | |
9452 | *rest = savestring (tok, strlen (tok)); | |
ccab2054 | 9453 | return; |
e7e0cddf | 9454 | } |
018d34a4 VP |
9455 | else |
9456 | error (_("Junk at end of arguments.")); | |
9457 | } | |
9458 | } | |
9459 | ||
0fb4aa4b PA |
9460 | /* Decode a static tracepoint marker spec. */ |
9461 | ||
9462 | static struct symtabs_and_lines | |
9463 | decode_static_tracepoint_spec (char **arg_p) | |
9464 | { | |
9465 | VEC(static_tracepoint_marker_p) *markers = NULL; | |
9466 | struct symtabs_and_lines sals; | |
0fb4aa4b PA |
9467 | struct cleanup *old_chain; |
9468 | char *p = &(*arg_p)[3]; | |
9469 | char *endp; | |
9470 | char *marker_str; | |
9471 | int i; | |
9472 | ||
e9cafbcc | 9473 | p = skip_spaces (p); |
0fb4aa4b | 9474 | |
e9cafbcc | 9475 | endp = skip_to_space (p); |
0fb4aa4b PA |
9476 | |
9477 | marker_str = savestring (p, endp - p); | |
9478 | old_chain = make_cleanup (xfree, marker_str); | |
9479 | ||
9480 | markers = target_static_tracepoint_markers_by_strid (marker_str); | |
9481 | if (VEC_empty(static_tracepoint_marker_p, markers)) | |
9482 | error (_("No known static tracepoint marker named %s"), marker_str); | |
9483 | ||
9484 | sals.nelts = VEC_length(static_tracepoint_marker_p, markers); | |
9485 | sals.sals = xmalloc (sizeof *sals.sals * sals.nelts); | |
9486 | ||
9487 | for (i = 0; i < sals.nelts; i++) | |
9488 | { | |
9489 | struct static_tracepoint_marker *marker; | |
9490 | ||
9491 | marker = VEC_index (static_tracepoint_marker_p, markers, i); | |
9492 | ||
9493 | init_sal (&sals.sals[i]); | |
9494 | ||
9495 | sals.sals[i] = find_pc_line (marker->address, 0); | |
9496 | sals.sals[i].pc = marker->address; | |
9497 | ||
9498 | release_static_tracepoint_marker (marker); | |
9499 | } | |
9500 | ||
9501 | do_cleanups (old_chain); | |
9502 | ||
9503 | *arg_p = endp; | |
9504 | return sals; | |
9505 | } | |
9506 | ||
fd9b8c24 PA |
9507 | /* Set a breakpoint. This function is shared between CLI and MI |
9508 | functions for setting a breakpoint. This function has two major | |
f6de8ec2 PA |
9509 | modes of operations, selected by the PARSE_ARG parameter. If |
9510 | non-zero, the function will parse ARG, extracting location, | |
9511 | condition, thread and extra string. Otherwise, ARG is just the | |
9512 | breakpoint's location, with condition, thread, and extra string | |
9513 | specified by the COND_STRING, THREAD and EXTRA_STRING parameters. | |
9514 | If INTERNAL is non-zero, the breakpoint number will be allocated | |
9515 | from the internal breakpoint count. Returns true if any breakpoint | |
9516 | was created; false otherwise. */ | |
0101ce28 | 9517 | |
8cdf0e15 VP |
9518 | int |
9519 | create_breakpoint (struct gdbarch *gdbarch, | |
e7e0cddf SS |
9520 | char *arg, char *cond_string, |
9521 | int thread, char *extra_string, | |
f6de8ec2 | 9522 | int parse_arg, |
0fb4aa4b | 9523 | int tempflag, enum bptype type_wanted, |
8cdf0e15 VP |
9524 | int ignore_count, |
9525 | enum auto_boolean pending_break_support, | |
c0a91b2b | 9526 | const struct breakpoint_ops *ops, |
44f238bb PA |
9527 | int from_tty, int enabled, int internal, |
9528 | unsigned flags) | |
c3f6f71d | 9529 | { |
b78a6381 | 9530 | volatile struct gdb_exception e; |
f8eba3c6 | 9531 | char *copy_arg = NULL; |
c3f6f71d | 9532 | char *addr_start = arg; |
7efd8fc2 | 9533 | struct linespec_result canonical; |
c3f6f71d | 9534 | struct cleanup *old_chain; |
80c99de1 | 9535 | struct cleanup *bkpt_chain = NULL; |
0101ce28 | 9536 | int pending = 0; |
4a306c9a | 9537 | int task = 0; |
86b17b60 | 9538 | int prev_bkpt_count = breakpoint_count; |
c3f6f71d | 9539 | |
348d480f PA |
9540 | gdb_assert (ops != NULL); |
9541 | ||
7efd8fc2 | 9542 | init_linespec_result (&canonical); |
c3f6f71d | 9543 | |
b78a6381 TT |
9544 | TRY_CATCH (e, RETURN_MASK_ALL) |
9545 | { | |
983af33b SDJ |
9546 | ops->create_sals_from_address (&arg, &canonical, type_wanted, |
9547 | addr_start, ©_arg); | |
b78a6381 | 9548 | } |
0101ce28 JJ |
9549 | |
9550 | /* If caller is interested in rc value from parse, set value. */ | |
05ff989b | 9551 | switch (e.reason) |
0101ce28 | 9552 | { |
983af33b SDJ |
9553 | case GDB_NO_ERROR: |
9554 | if (VEC_empty (linespec_sals, canonical.sals)) | |
9555 | return 0; | |
9556 | break; | |
05ff989b AC |
9557 | case RETURN_ERROR: |
9558 | switch (e.error) | |
0101ce28 | 9559 | { |
05ff989b | 9560 | case NOT_FOUND_ERROR: |
0101ce28 | 9561 | |
05ff989b AC |
9562 | /* If pending breakpoint support is turned off, throw |
9563 | error. */ | |
fa8d40ab JJ |
9564 | |
9565 | if (pending_break_support == AUTO_BOOLEAN_FALSE) | |
723a2275 VP |
9566 | throw_exception (e); |
9567 | ||
9568 | exception_print (gdb_stderr, e); | |
fa8d40ab | 9569 | |
05ff989b AC |
9570 | /* If pending breakpoint support is auto query and the user |
9571 | selects no, then simply return the error code. */ | |
059fb39f | 9572 | if (pending_break_support == AUTO_BOOLEAN_AUTO |
bfccc43c YQ |
9573 | && !nquery (_("Make %s pending on future shared library load? "), |
9574 | bptype_string (type_wanted))) | |
fd9b8c24 | 9575 | return 0; |
fa8d40ab | 9576 | |
05ff989b AC |
9577 | /* At this point, either the user was queried about setting |
9578 | a pending breakpoint and selected yes, or pending | |
9579 | breakpoint behavior is on and thus a pending breakpoint | |
9580 | is defaulted on behalf of the user. */ | |
f8eba3c6 TT |
9581 | { |
9582 | struct linespec_sals lsal; | |
9583 | ||
9584 | copy_arg = xstrdup (addr_start); | |
9585 | lsal.canonical = xstrdup (copy_arg); | |
9586 | lsal.sals.nelts = 1; | |
9587 | lsal.sals.sals = XNEW (struct symtab_and_line); | |
9588 | init_sal (&lsal.sals.sals[0]); | |
9589 | pending = 1; | |
9590 | VEC_safe_push (linespec_sals, canonical.sals, &lsal); | |
9591 | } | |
05ff989b AC |
9592 | break; |
9593 | default: | |
98deb0da | 9594 | throw_exception (e); |
0101ce28 | 9595 | } |
2abae994 | 9596 | break; |
05ff989b | 9597 | default: |
983af33b | 9598 | throw_exception (e); |
0101ce28 | 9599 | } |
c3f6f71d | 9600 | |
4a64f543 | 9601 | /* Create a chain of things that always need to be cleaned up. */ |
f8eba3c6 | 9602 | old_chain = make_cleanup_destroy_linespec_result (&canonical); |
c3f6f71d | 9603 | |
c3f6f71d JM |
9604 | /* ----------------------------- SNIP ----------------------------- |
9605 | Anything added to the cleanup chain beyond this point is assumed | |
9606 | to be part of a breakpoint. If the breakpoint create succeeds | |
80c99de1 PA |
9607 | then the memory is not reclaimed. */ |
9608 | bkpt_chain = make_cleanup (null_cleanup, 0); | |
c3f6f71d | 9609 | |
c3f6f71d JM |
9610 | /* Resolve all line numbers to PC's and verify that the addresses |
9611 | are ok for the target. */ | |
0101ce28 | 9612 | if (!pending) |
f8eba3c6 TT |
9613 | { |
9614 | int ix; | |
9615 | struct linespec_sals *iter; | |
9616 | ||
9617 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
9618 | breakpoint_sals_to_pc (&iter->sals); | |
9619 | } | |
c3f6f71d | 9620 | |
7a697b8d | 9621 | /* Fast tracepoints may have additional restrictions on location. */ |
bfccc43c | 9622 | if (!pending && type_wanted == bp_fast_tracepoint) |
f8eba3c6 TT |
9623 | { |
9624 | int ix; | |
9625 | struct linespec_sals *iter; | |
9626 | ||
9627 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
9628 | check_fast_tracepoint_sals (gdbarch, &iter->sals); | |
9629 | } | |
7a697b8d | 9630 | |
c3f6f71d JM |
9631 | /* Verify that condition can be parsed, before setting any |
9632 | breakpoints. Allocate a separate condition expression for each | |
4a64f543 | 9633 | breakpoint. */ |
0101ce28 | 9634 | if (!pending) |
c3f6f71d | 9635 | { |
f8eba3c6 TT |
9636 | struct linespec_sals *lsal; |
9637 | ||
9638 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
9639 | ||
f6de8ec2 | 9640 | if (parse_arg) |
72b2ff0e | 9641 | { |
e7e0cddf | 9642 | char *rest; |
72b2ff0e VP |
9643 | /* Here we only parse 'arg' to separate condition |
9644 | from thread number, so parsing in context of first | |
9645 | sal is OK. When setting the breakpoint we'll | |
9646 | re-parse it in context of each sal. */ | |
ed1d1739 | 9647 | |
f8eba3c6 | 9648 | find_condition_and_thread (arg, lsal->sals.sals[0].pc, &cond_string, |
e7e0cddf | 9649 | &thread, &task, &rest); |
72b2ff0e VP |
9650 | if (cond_string) |
9651 | make_cleanup (xfree, cond_string); | |
e7e0cddf SS |
9652 | if (rest) |
9653 | make_cleanup (xfree, rest); | |
9654 | if (rest) | |
9655 | extra_string = rest; | |
72b2ff0e | 9656 | } |
2f069f6f | 9657 | else |
72b2ff0e | 9658 | { |
f6de8ec2 PA |
9659 | if (*arg != '\0') |
9660 | error (_("Garbage '%s' at end of location"), arg); | |
9661 | ||
72b2ff0e VP |
9662 | /* Create a private copy of condition string. */ |
9663 | if (cond_string) | |
9664 | { | |
9665 | cond_string = xstrdup (cond_string); | |
9666 | make_cleanup (xfree, cond_string); | |
9667 | } | |
e7e0cddf SS |
9668 | /* Create a private copy of any extra string. */ |
9669 | if (extra_string) | |
9670 | { | |
9671 | extra_string = xstrdup (extra_string); | |
9672 | make_cleanup (xfree, extra_string); | |
9673 | } | |
72b2ff0e | 9674 | } |
0fb4aa4b | 9675 | |
983af33b | 9676 | ops->create_breakpoints_sal (gdbarch, &canonical, lsal, |
e7e0cddf | 9677 | cond_string, extra_string, type_wanted, |
d9b3f62e PA |
9678 | tempflag ? disp_del : disp_donttouch, |
9679 | thread, task, ignore_count, ops, | |
44f238bb | 9680 | from_tty, enabled, internal, flags); |
c906108c | 9681 | } |
0101ce28 JJ |
9682 | else |
9683 | { | |
0101ce28 JJ |
9684 | struct breakpoint *b; |
9685 | ||
0101ce28 JJ |
9686 | make_cleanup (xfree, copy_arg); |
9687 | ||
bfccc43c YQ |
9688 | if (is_tracepoint_type (type_wanted)) |
9689 | { | |
9690 | struct tracepoint *t; | |
9691 | ||
9692 | t = XCNEW (struct tracepoint); | |
9693 | b = &t->base; | |
9694 | } | |
9695 | else | |
9696 | b = XNEW (struct breakpoint); | |
9697 | ||
9698 | init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops); | |
9699 | ||
f8eba3c6 | 9700 | b->addr_string = copy_arg; |
f6de8ec2 | 9701 | if (parse_arg) |
e12c7713 MK |
9702 | b->cond_string = NULL; |
9703 | else | |
9704 | { | |
9705 | /* Create a private copy of condition string. */ | |
9706 | if (cond_string) | |
9707 | { | |
9708 | cond_string = xstrdup (cond_string); | |
9709 | make_cleanup (xfree, cond_string); | |
9710 | } | |
9711 | b->cond_string = cond_string; | |
9712 | } | |
e7e0cddf | 9713 | b->extra_string = NULL; |
0101ce28 | 9714 | b->ignore_count = ignore_count; |
0101ce28 | 9715 | b->disposition = tempflag ? disp_del : disp_donttouch; |
0d381245 | 9716 | b->condition_not_parsed = 1; |
41447f92 | 9717 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
cc72b2a2 KP |
9718 | if ((type_wanted != bp_breakpoint |
9719 | && type_wanted != bp_hardware_breakpoint) || thread != -1) | |
f8eba3c6 | 9720 | b->pspace = current_program_space; |
8bea4e01 | 9721 | |
bfccc43c | 9722 | install_breakpoint (internal, b, 0); |
0101ce28 JJ |
9723 | } |
9724 | ||
f8eba3c6 | 9725 | if (VEC_length (linespec_sals, canonical.sals) > 1) |
95a42b64 | 9726 | { |
3e43a32a MS |
9727 | warning (_("Multiple breakpoints were set.\nUse the " |
9728 | "\"delete\" command to delete unwanted breakpoints.")); | |
86b17b60 | 9729 | prev_breakpoint_count = prev_bkpt_count; |
95a42b64 TT |
9730 | } |
9731 | ||
80c99de1 PA |
9732 | /* That's it. Discard the cleanups for data inserted into the |
9733 | breakpoint. */ | |
9734 | discard_cleanups (bkpt_chain); | |
9735 | /* But cleanup everything else. */ | |
c3f6f71d | 9736 | do_cleanups (old_chain); |
217dc9e2 | 9737 | |
80c99de1 | 9738 | /* error call may happen here - have BKPT_CHAIN already discarded. */ |
217dc9e2 | 9739 | update_global_location_list (1); |
fd9b8c24 PA |
9740 | |
9741 | return 1; | |
c3f6f71d | 9742 | } |
c906108c | 9743 | |
348d480f | 9744 | /* Set a breakpoint. |
72b2ff0e VP |
9745 | ARG is a string describing breakpoint address, |
9746 | condition, and thread. | |
9747 | FLAG specifies if a breakpoint is hardware on, | |
9748 | and if breakpoint is temporary, using BP_HARDWARE_FLAG | |
9749 | and BP_TEMPFLAG. */ | |
348d480f | 9750 | |
98deb0da | 9751 | static void |
72b2ff0e | 9752 | break_command_1 (char *arg, int flag, int from_tty) |
c3f6f71d | 9753 | { |
72b2ff0e | 9754 | int tempflag = flag & BP_TEMPFLAG; |
0fb4aa4b PA |
9755 | enum bptype type_wanted = (flag & BP_HARDWAREFLAG |
9756 | ? bp_hardware_breakpoint | |
9757 | : bp_breakpoint); | |
55aa24fb SDJ |
9758 | struct breakpoint_ops *ops; |
9759 | const char *arg_cp = arg; | |
9760 | ||
9761 | /* Matching breakpoints on probes. */ | |
9762 | if (arg && probe_linespec_to_ops (&arg_cp) != NULL) | |
9763 | ops = &bkpt_probe_breakpoint_ops; | |
9764 | else | |
9765 | ops = &bkpt_breakpoint_ops; | |
c3f6f71d | 9766 | |
8cdf0e15 VP |
9767 | create_breakpoint (get_current_arch (), |
9768 | arg, | |
e7e0cddf | 9769 | NULL, 0, NULL, 1 /* parse arg */, |
0fb4aa4b | 9770 | tempflag, type_wanted, |
8cdf0e15 VP |
9771 | 0 /* Ignore count */, |
9772 | pending_break_support, | |
55aa24fb | 9773 | ops, |
8cdf0e15 | 9774 | from_tty, |
84f4c1fe | 9775 | 1 /* enabled */, |
44f238bb PA |
9776 | 0 /* internal */, |
9777 | 0); | |
c906108c SS |
9778 | } |
9779 | ||
c906108c SS |
9780 | /* Helper function for break_command_1 and disassemble_command. */ |
9781 | ||
9782 | void | |
fba45db2 | 9783 | resolve_sal_pc (struct symtab_and_line *sal) |
c906108c SS |
9784 | { |
9785 | CORE_ADDR pc; | |
9786 | ||
9787 | if (sal->pc == 0 && sal->symtab != NULL) | |
9788 | { | |
9789 | if (!find_line_pc (sal->symtab, sal->line, &pc)) | |
8a3fe4f8 | 9790 | error (_("No line %d in file \"%s\"."), |
05cba821 | 9791 | sal->line, symtab_to_filename_for_display (sal->symtab)); |
c906108c | 9792 | sal->pc = pc; |
6a048695 | 9793 | |
4a64f543 MS |
9794 | /* If this SAL corresponds to a breakpoint inserted using a line |
9795 | number, then skip the function prologue if necessary. */ | |
6a048695 | 9796 | if (sal->explicit_line) |
059acae7 | 9797 | skip_prologue_sal (sal); |
c906108c SS |
9798 | } |
9799 | ||
9800 | if (sal->section == 0 && sal->symtab != NULL) | |
9801 | { | |
9802 | struct blockvector *bv; | |
c5aa993b JM |
9803 | struct block *b; |
9804 | struct symbol *sym; | |
c906108c | 9805 | |
801e3a5b | 9806 | bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab); |
c906108c SS |
9807 | if (bv != NULL) |
9808 | { | |
7f0df278 | 9809 | sym = block_linkage_function (b); |
c906108c SS |
9810 | if (sym != NULL) |
9811 | { | |
9812 | fixup_symbol_section (sym, sal->symtab->objfile); | |
e27d198c | 9813 | sal->section = SYMBOL_OBJ_SECTION (sal->symtab->objfile, sym); |
c906108c SS |
9814 | } |
9815 | else | |
9816 | { | |
4a64f543 MS |
9817 | /* It really is worthwhile to have the section, so we'll |
9818 | just have to look harder. This case can be executed | |
9819 | if we have line numbers but no functions (as can | |
9820 | happen in assembly source). */ | |
c906108c | 9821 | |
7cbd4a93 | 9822 | struct bound_minimal_symbol msym; |
6c95b8df PA |
9823 | struct cleanup *old_chain = save_current_space_and_thread (); |
9824 | ||
9825 | switch_to_program_space_and_thread (sal->pspace); | |
c906108c SS |
9826 | |
9827 | msym = lookup_minimal_symbol_by_pc (sal->pc); | |
7cbd4a93 | 9828 | if (msym.minsym) |
e27d198c | 9829 | sal->section = SYMBOL_OBJ_SECTION (msym.objfile, msym.minsym); |
6c95b8df PA |
9830 | |
9831 | do_cleanups (old_chain); | |
c906108c SS |
9832 | } |
9833 | } | |
9834 | } | |
9835 | } | |
9836 | ||
9837 | void | |
fba45db2 | 9838 | break_command (char *arg, int from_tty) |
c906108c | 9839 | { |
db107f19 | 9840 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9841 | } |
9842 | ||
c906108c | 9843 | void |
fba45db2 | 9844 | tbreak_command (char *arg, int from_tty) |
c906108c | 9845 | { |
db107f19 | 9846 | break_command_1 (arg, BP_TEMPFLAG, from_tty); |
c906108c SS |
9847 | } |
9848 | ||
c906108c | 9849 | static void |
fba45db2 | 9850 | hbreak_command (char *arg, int from_tty) |
c906108c | 9851 | { |
db107f19 | 9852 | break_command_1 (arg, BP_HARDWAREFLAG, from_tty); |
c906108c SS |
9853 | } |
9854 | ||
9855 | static void | |
fba45db2 | 9856 | thbreak_command (char *arg, int from_tty) |
c906108c | 9857 | { |
db107f19 | 9858 | break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty); |
c906108c SS |
9859 | } |
9860 | ||
9861 | static void | |
fba45db2 | 9862 | stop_command (char *arg, int from_tty) |
c906108c | 9863 | { |
a3f17187 | 9864 | printf_filtered (_("Specify the type of breakpoint to set.\n\ |
c906108c | 9865 | Usage: stop in <function | address>\n\ |
a3f17187 | 9866 | stop at <line>\n")); |
c906108c SS |
9867 | } |
9868 | ||
9869 | static void | |
fba45db2 | 9870 | stopin_command (char *arg, int from_tty) |
c906108c SS |
9871 | { |
9872 | int badInput = 0; | |
9873 | ||
c5aa993b | 9874 | if (arg == (char *) NULL) |
c906108c SS |
9875 | badInput = 1; |
9876 | else if (*arg != '*') | |
9877 | { | |
9878 | char *argptr = arg; | |
9879 | int hasColon = 0; | |
9880 | ||
4a64f543 | 9881 | /* Look for a ':'. If this is a line number specification, then |
53a5351d | 9882 | say it is bad, otherwise, it should be an address or |
4a64f543 | 9883 | function/method name. */ |
c906108c | 9884 | while (*argptr && !hasColon) |
c5aa993b JM |
9885 | { |
9886 | hasColon = (*argptr == ':'); | |
9887 | argptr++; | |
9888 | } | |
c906108c SS |
9889 | |
9890 | if (hasColon) | |
c5aa993b | 9891 | badInput = (*argptr != ':'); /* Not a class::method */ |
c906108c | 9892 | else |
c5aa993b | 9893 | badInput = isdigit (*arg); /* a simple line number */ |
c906108c SS |
9894 | } |
9895 | ||
9896 | if (badInput) | |
a3f17187 | 9897 | printf_filtered (_("Usage: stop in <function | address>\n")); |
c906108c | 9898 | else |
db107f19 | 9899 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9900 | } |
9901 | ||
9902 | static void | |
fba45db2 | 9903 | stopat_command (char *arg, int from_tty) |
c906108c SS |
9904 | { |
9905 | int badInput = 0; | |
9906 | ||
c5aa993b | 9907 | if (arg == (char *) NULL || *arg == '*') /* no line number */ |
c906108c SS |
9908 | badInput = 1; |
9909 | else | |
9910 | { | |
9911 | char *argptr = arg; | |
9912 | int hasColon = 0; | |
9913 | ||
4a64f543 MS |
9914 | /* Look for a ':'. If there is a '::' then get out, otherwise |
9915 | it is probably a line number. */ | |
c906108c | 9916 | while (*argptr && !hasColon) |
c5aa993b JM |
9917 | { |
9918 | hasColon = (*argptr == ':'); | |
9919 | argptr++; | |
9920 | } | |
c906108c SS |
9921 | |
9922 | if (hasColon) | |
c5aa993b | 9923 | badInput = (*argptr == ':'); /* we have class::method */ |
c906108c | 9924 | else |
c5aa993b | 9925 | badInput = !isdigit (*arg); /* not a line number */ |
c906108c SS |
9926 | } |
9927 | ||
9928 | if (badInput) | |
a3f17187 | 9929 | printf_filtered (_("Usage: stop at <line>\n")); |
c906108c | 9930 | else |
db107f19 | 9931 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9932 | } |
9933 | ||
e7e0cddf SS |
9934 | /* The dynamic printf command is mostly like a regular breakpoint, but |
9935 | with a prewired command list consisting of a single output command, | |
9936 | built from extra arguments supplied on the dprintf command | |
9937 | line. */ | |
9938 | ||
da821c7b | 9939 | static void |
e7e0cddf SS |
9940 | dprintf_command (char *arg, int from_tty) |
9941 | { | |
9942 | create_breakpoint (get_current_arch (), | |
9943 | arg, | |
9944 | NULL, 0, NULL, 1 /* parse arg */, | |
9945 | 0, bp_dprintf, | |
9946 | 0 /* Ignore count */, | |
9947 | pending_break_support, | |
9948 | &dprintf_breakpoint_ops, | |
9949 | from_tty, | |
9950 | 1 /* enabled */, | |
9951 | 0 /* internal */, | |
9952 | 0); | |
9953 | } | |
9954 | ||
d3ce09f5 SS |
9955 | static void |
9956 | agent_printf_command (char *arg, int from_tty) | |
9957 | { | |
9958 | error (_("May only run agent-printf on the target")); | |
9959 | } | |
9960 | ||
f1310107 TJB |
9961 | /* Implement the "breakpoint_hit" breakpoint_ops method for |
9962 | ranged breakpoints. */ | |
9963 | ||
9964 | static int | |
9965 | breakpoint_hit_ranged_breakpoint (const struct bp_location *bl, | |
9966 | struct address_space *aspace, | |
09ac7c10 TT |
9967 | CORE_ADDR bp_addr, |
9968 | const struct target_waitstatus *ws) | |
f1310107 | 9969 | { |
09ac7c10 | 9970 | if (ws->kind != TARGET_WAITKIND_STOPPED |
a493e3e2 | 9971 | || ws->value.sig != GDB_SIGNAL_TRAP) |
09ac7c10 TT |
9972 | return 0; |
9973 | ||
f1310107 TJB |
9974 | return breakpoint_address_match_range (bl->pspace->aspace, bl->address, |
9975 | bl->length, aspace, bp_addr); | |
9976 | } | |
9977 | ||
9978 | /* Implement the "resources_needed" breakpoint_ops method for | |
9979 | ranged breakpoints. */ | |
9980 | ||
9981 | static int | |
9982 | resources_needed_ranged_breakpoint (const struct bp_location *bl) | |
9983 | { | |
9984 | return target_ranged_break_num_registers (); | |
9985 | } | |
9986 | ||
9987 | /* Implement the "print_it" breakpoint_ops method for | |
9988 | ranged breakpoints. */ | |
9989 | ||
9990 | static enum print_stop_action | |
348d480f | 9991 | print_it_ranged_breakpoint (bpstat bs) |
f1310107 | 9992 | { |
348d480f | 9993 | struct breakpoint *b = bs->breakpoint_at; |
f1310107 | 9994 | struct bp_location *bl = b->loc; |
79a45e25 | 9995 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
9996 | |
9997 | gdb_assert (b->type == bp_hardware_breakpoint); | |
9998 | ||
9999 | /* Ranged breakpoints have only one location. */ | |
10000 | gdb_assert (bl && bl->next == NULL); | |
10001 | ||
10002 | annotate_breakpoint (b->number); | |
10003 | if (b->disposition == disp_del) | |
10004 | ui_out_text (uiout, "\nTemporary ranged breakpoint "); | |
10005 | else | |
10006 | ui_out_text (uiout, "\nRanged breakpoint "); | |
10007 | if (ui_out_is_mi_like_p (uiout)) | |
10008 | { | |
10009 | ui_out_field_string (uiout, "reason", | |
10010 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
10011 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
10012 | } | |
10013 | ui_out_field_int (uiout, "bkptno", b->number); | |
10014 | ui_out_text (uiout, ", "); | |
10015 | ||
10016 | return PRINT_SRC_AND_LOC; | |
10017 | } | |
10018 | ||
10019 | /* Implement the "print_one" breakpoint_ops method for | |
10020 | ranged breakpoints. */ | |
10021 | ||
10022 | static void | |
10023 | print_one_ranged_breakpoint (struct breakpoint *b, | |
10024 | struct bp_location **last_loc) | |
10025 | { | |
10026 | struct bp_location *bl = b->loc; | |
10027 | struct value_print_options opts; | |
79a45e25 | 10028 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
10029 | |
10030 | /* Ranged breakpoints have only one location. */ | |
10031 | gdb_assert (bl && bl->next == NULL); | |
10032 | ||
10033 | get_user_print_options (&opts); | |
10034 | ||
10035 | if (opts.addressprint) | |
10036 | /* We don't print the address range here, it will be printed later | |
10037 | by print_one_detail_ranged_breakpoint. */ | |
10038 | ui_out_field_skip (uiout, "addr"); | |
10039 | annotate_field (5); | |
10040 | print_breakpoint_location (b, bl); | |
10041 | *last_loc = bl; | |
10042 | } | |
10043 | ||
10044 | /* Implement the "print_one_detail" breakpoint_ops method for | |
10045 | ranged breakpoints. */ | |
10046 | ||
10047 | static void | |
10048 | print_one_detail_ranged_breakpoint (const struct breakpoint *b, | |
10049 | struct ui_out *uiout) | |
10050 | { | |
10051 | CORE_ADDR address_start, address_end; | |
10052 | struct bp_location *bl = b->loc; | |
f99d8bf4 PA |
10053 | struct ui_file *stb = mem_fileopen (); |
10054 | struct cleanup *cleanup = make_cleanup_ui_file_delete (stb); | |
f1310107 TJB |
10055 | |
10056 | gdb_assert (bl); | |
10057 | ||
10058 | address_start = bl->address; | |
10059 | address_end = address_start + bl->length - 1; | |
10060 | ||
10061 | ui_out_text (uiout, "\taddress range: "); | |
f99d8bf4 | 10062 | fprintf_unfiltered (stb, "[%s, %s]", |
f1310107 TJB |
10063 | print_core_address (bl->gdbarch, address_start), |
10064 | print_core_address (bl->gdbarch, address_end)); | |
10065 | ui_out_field_stream (uiout, "addr", stb); | |
10066 | ui_out_text (uiout, "\n"); | |
10067 | ||
10068 | do_cleanups (cleanup); | |
10069 | } | |
10070 | ||
10071 | /* Implement the "print_mention" breakpoint_ops method for | |
10072 | ranged breakpoints. */ | |
10073 | ||
10074 | static void | |
10075 | print_mention_ranged_breakpoint (struct breakpoint *b) | |
10076 | { | |
10077 | struct bp_location *bl = b->loc; | |
79a45e25 | 10078 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
10079 | |
10080 | gdb_assert (bl); | |
10081 | gdb_assert (b->type == bp_hardware_breakpoint); | |
10082 | ||
10083 | if (ui_out_is_mi_like_p (uiout)) | |
10084 | return; | |
10085 | ||
10086 | printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."), | |
10087 | b->number, paddress (bl->gdbarch, bl->address), | |
10088 | paddress (bl->gdbarch, bl->address + bl->length - 1)); | |
10089 | } | |
10090 | ||
10091 | /* Implement the "print_recreate" breakpoint_ops method for | |
10092 | ranged breakpoints. */ | |
10093 | ||
10094 | static void | |
10095 | print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp) | |
10096 | { | |
10097 | fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string, | |
10098 | b->addr_string_range_end); | |
d9b3f62e | 10099 | print_recreate_thread (b, fp); |
f1310107 TJB |
10100 | } |
10101 | ||
10102 | /* The breakpoint_ops structure to be used in ranged breakpoints. */ | |
10103 | ||
2060206e | 10104 | static struct breakpoint_ops ranged_breakpoint_ops; |
f1310107 TJB |
10105 | |
10106 | /* Find the address where the end of the breakpoint range should be | |
10107 | placed, given the SAL of the end of the range. This is so that if | |
10108 | the user provides a line number, the end of the range is set to the | |
10109 | last instruction of the given line. */ | |
10110 | ||
10111 | static CORE_ADDR | |
10112 | find_breakpoint_range_end (struct symtab_and_line sal) | |
10113 | { | |
10114 | CORE_ADDR end; | |
10115 | ||
10116 | /* If the user provided a PC value, use it. Otherwise, | |
10117 | find the address of the end of the given location. */ | |
10118 | if (sal.explicit_pc) | |
10119 | end = sal.pc; | |
10120 | else | |
10121 | { | |
10122 | int ret; | |
10123 | CORE_ADDR start; | |
10124 | ||
10125 | ret = find_line_pc_range (sal, &start, &end); | |
10126 | if (!ret) | |
10127 | error (_("Could not find location of the end of the range.")); | |
10128 | ||
10129 | /* find_line_pc_range returns the start of the next line. */ | |
10130 | end--; | |
10131 | } | |
10132 | ||
10133 | return end; | |
10134 | } | |
10135 | ||
10136 | /* Implement the "break-range" CLI command. */ | |
10137 | ||
10138 | static void | |
10139 | break_range_command (char *arg, int from_tty) | |
10140 | { | |
10141 | char *arg_start, *addr_string_start, *addr_string_end; | |
10142 | struct linespec_result canonical_start, canonical_end; | |
10143 | int bp_count, can_use_bp, length; | |
10144 | CORE_ADDR end; | |
10145 | struct breakpoint *b; | |
10146 | struct symtab_and_line sal_start, sal_end; | |
f1310107 | 10147 | struct cleanup *cleanup_bkpt; |
f8eba3c6 | 10148 | struct linespec_sals *lsal_start, *lsal_end; |
f1310107 TJB |
10149 | |
10150 | /* We don't support software ranged breakpoints. */ | |
10151 | if (target_ranged_break_num_registers () < 0) | |
10152 | error (_("This target does not support hardware ranged breakpoints.")); | |
10153 | ||
10154 | bp_count = hw_breakpoint_used_count (); | |
10155 | bp_count += target_ranged_break_num_registers (); | |
10156 | can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
10157 | bp_count, 0); | |
10158 | if (can_use_bp < 0) | |
10159 | error (_("Hardware breakpoints used exceeds limit.")); | |
10160 | ||
f8eba3c6 | 10161 | arg = skip_spaces (arg); |
f1310107 TJB |
10162 | if (arg == NULL || arg[0] == '\0') |
10163 | error(_("No address range specified.")); | |
10164 | ||
f1310107 TJB |
10165 | init_linespec_result (&canonical_start); |
10166 | ||
f8eba3c6 TT |
10167 | arg_start = arg; |
10168 | parse_breakpoint_sals (&arg, &canonical_start); | |
f1310107 | 10169 | |
f8eba3c6 | 10170 | cleanup_bkpt = make_cleanup_destroy_linespec_result (&canonical_start); |
f1310107 TJB |
10171 | |
10172 | if (arg[0] != ',') | |
10173 | error (_("Too few arguments.")); | |
f8eba3c6 | 10174 | else if (VEC_empty (linespec_sals, canonical_start.sals)) |
f1310107 | 10175 | error (_("Could not find location of the beginning of the range.")); |
f8eba3c6 TT |
10176 | |
10177 | lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0); | |
10178 | ||
10179 | if (VEC_length (linespec_sals, canonical_start.sals) > 1 | |
10180 | || lsal_start->sals.nelts != 1) | |
f1310107 TJB |
10181 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
10182 | ||
f8eba3c6 TT |
10183 | sal_start = lsal_start->sals.sals[0]; |
10184 | addr_string_start = savestring (arg_start, arg - arg_start); | |
10185 | make_cleanup (xfree, addr_string_start); | |
f1310107 TJB |
10186 | |
10187 | arg++; /* Skip the comma. */ | |
f8eba3c6 | 10188 | arg = skip_spaces (arg); |
f1310107 TJB |
10189 | |
10190 | /* Parse the end location. */ | |
10191 | ||
f1310107 TJB |
10192 | init_linespec_result (&canonical_end); |
10193 | arg_start = arg; | |
10194 | ||
f8eba3c6 | 10195 | /* We call decode_line_full directly here instead of using |
f1310107 TJB |
10196 | parse_breakpoint_sals because we need to specify the start location's |
10197 | symtab and line as the default symtab and line for the end of the | |
10198 | range. This makes it possible to have ranges like "foo.c:27, +14", | |
10199 | where +14 means 14 lines from the start location. */ | |
f8eba3c6 TT |
10200 | decode_line_full (&arg, DECODE_LINE_FUNFIRSTLINE, |
10201 | sal_start.symtab, sal_start.line, | |
10202 | &canonical_end, NULL, NULL); | |
10203 | ||
10204 | make_cleanup_destroy_linespec_result (&canonical_end); | |
f1310107 | 10205 | |
f8eba3c6 | 10206 | if (VEC_empty (linespec_sals, canonical_end.sals)) |
f1310107 | 10207 | error (_("Could not find location of the end of the range.")); |
f8eba3c6 TT |
10208 | |
10209 | lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0); | |
10210 | if (VEC_length (linespec_sals, canonical_end.sals) > 1 | |
10211 | || lsal_end->sals.nelts != 1) | |
f1310107 TJB |
10212 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
10213 | ||
f8eba3c6 TT |
10214 | sal_end = lsal_end->sals.sals[0]; |
10215 | addr_string_end = savestring (arg_start, arg - arg_start); | |
10216 | make_cleanup (xfree, addr_string_end); | |
f1310107 TJB |
10217 | |
10218 | end = find_breakpoint_range_end (sal_end); | |
10219 | if (sal_start.pc > end) | |
177b42fe | 10220 | error (_("Invalid address range, end precedes start.")); |
f1310107 TJB |
10221 | |
10222 | length = end - sal_start.pc + 1; | |
10223 | if (length < 0) | |
10224 | /* Length overflowed. */ | |
10225 | error (_("Address range too large.")); | |
10226 | else if (length == 1) | |
10227 | { | |
10228 | /* This range is simple enough to be handled by | |
10229 | the `hbreak' command. */ | |
10230 | hbreak_command (addr_string_start, 1); | |
10231 | ||
10232 | do_cleanups (cleanup_bkpt); | |
10233 | ||
10234 | return; | |
10235 | } | |
10236 | ||
10237 | /* Now set up the breakpoint. */ | |
10238 | b = set_raw_breakpoint (get_current_arch (), sal_start, | |
348d480f | 10239 | bp_hardware_breakpoint, &ranged_breakpoint_ops); |
f1310107 TJB |
10240 | set_breakpoint_count (breakpoint_count + 1); |
10241 | b->number = breakpoint_count; | |
10242 | b->disposition = disp_donttouch; | |
f8eba3c6 TT |
10243 | b->addr_string = xstrdup (addr_string_start); |
10244 | b->addr_string_range_end = xstrdup (addr_string_end); | |
f1310107 TJB |
10245 | b->loc->length = length; |
10246 | ||
f8eba3c6 | 10247 | do_cleanups (cleanup_bkpt); |
f1310107 TJB |
10248 | |
10249 | mention (b); | |
8d3788bd | 10250 | observer_notify_breakpoint_created (b); |
f1310107 TJB |
10251 | update_global_location_list (1); |
10252 | } | |
10253 | ||
4a64f543 MS |
10254 | /* Return non-zero if EXP is verified as constant. Returned zero |
10255 | means EXP is variable. Also the constant detection may fail for | |
10256 | some constant expressions and in such case still falsely return | |
10257 | zero. */ | |
2e6e3d9c | 10258 | |
65d79d4b SDJ |
10259 | static int |
10260 | watchpoint_exp_is_const (const struct expression *exp) | |
10261 | { | |
10262 | int i = exp->nelts; | |
10263 | ||
10264 | while (i > 0) | |
10265 | { | |
10266 | int oplenp, argsp; | |
10267 | ||
10268 | /* We are only interested in the descriptor of each element. */ | |
10269 | operator_length (exp, i, &oplenp, &argsp); | |
10270 | i -= oplenp; | |
10271 | ||
10272 | switch (exp->elts[i].opcode) | |
10273 | { | |
10274 | case BINOP_ADD: | |
10275 | case BINOP_SUB: | |
10276 | case BINOP_MUL: | |
10277 | case BINOP_DIV: | |
10278 | case BINOP_REM: | |
10279 | case BINOP_MOD: | |
10280 | case BINOP_LSH: | |
10281 | case BINOP_RSH: | |
10282 | case BINOP_LOGICAL_AND: | |
10283 | case BINOP_LOGICAL_OR: | |
10284 | case BINOP_BITWISE_AND: | |
10285 | case BINOP_BITWISE_IOR: | |
10286 | case BINOP_BITWISE_XOR: | |
10287 | case BINOP_EQUAL: | |
10288 | case BINOP_NOTEQUAL: | |
10289 | case BINOP_LESS: | |
10290 | case BINOP_GTR: | |
10291 | case BINOP_LEQ: | |
10292 | case BINOP_GEQ: | |
10293 | case BINOP_REPEAT: | |
10294 | case BINOP_COMMA: | |
10295 | case BINOP_EXP: | |
10296 | case BINOP_MIN: | |
10297 | case BINOP_MAX: | |
10298 | case BINOP_INTDIV: | |
10299 | case BINOP_CONCAT: | |
10300 | case BINOP_IN: | |
10301 | case BINOP_RANGE: | |
10302 | case TERNOP_COND: | |
10303 | case TERNOP_SLICE: | |
65d79d4b SDJ |
10304 | |
10305 | case OP_LONG: | |
10306 | case OP_DOUBLE: | |
10307 | case OP_DECFLOAT: | |
10308 | case OP_LAST: | |
10309 | case OP_COMPLEX: | |
10310 | case OP_STRING: | |
65d79d4b SDJ |
10311 | case OP_ARRAY: |
10312 | case OP_TYPE: | |
608b4967 TT |
10313 | case OP_TYPEOF: |
10314 | case OP_DECLTYPE: | |
6e72ca20 | 10315 | case OP_TYPEID: |
65d79d4b SDJ |
10316 | case OP_NAME: |
10317 | case OP_OBJC_NSSTRING: | |
10318 | ||
10319 | case UNOP_NEG: | |
10320 | case UNOP_LOGICAL_NOT: | |
10321 | case UNOP_COMPLEMENT: | |
10322 | case UNOP_ADDR: | |
10323 | case UNOP_HIGH: | |
aeaa2474 | 10324 | case UNOP_CAST: |
9eaf6705 TT |
10325 | |
10326 | case UNOP_CAST_TYPE: | |
10327 | case UNOP_REINTERPRET_CAST: | |
10328 | case UNOP_DYNAMIC_CAST: | |
4a64f543 MS |
10329 | /* Unary, binary and ternary operators: We have to check |
10330 | their operands. If they are constant, then so is the | |
10331 | result of that operation. For instance, if A and B are | |
10332 | determined to be constants, then so is "A + B". | |
10333 | ||
10334 | UNOP_IND is one exception to the rule above, because the | |
10335 | value of *ADDR is not necessarily a constant, even when | |
10336 | ADDR is. */ | |
65d79d4b SDJ |
10337 | break; |
10338 | ||
10339 | case OP_VAR_VALUE: | |
10340 | /* Check whether the associated symbol is a constant. | |
4a64f543 | 10341 | |
65d79d4b | 10342 | We use SYMBOL_CLASS rather than TYPE_CONST because it's |
4a64f543 MS |
10343 | possible that a buggy compiler could mark a variable as |
10344 | constant even when it is not, and TYPE_CONST would return | |
10345 | true in this case, while SYMBOL_CLASS wouldn't. | |
10346 | ||
10347 | We also have to check for function symbols because they | |
10348 | are always constant. */ | |
65d79d4b SDJ |
10349 | { |
10350 | struct symbol *s = exp->elts[i + 2].symbol; | |
10351 | ||
10352 | if (SYMBOL_CLASS (s) != LOC_BLOCK | |
10353 | && SYMBOL_CLASS (s) != LOC_CONST | |
10354 | && SYMBOL_CLASS (s) != LOC_CONST_BYTES) | |
10355 | return 0; | |
10356 | break; | |
10357 | } | |
10358 | ||
10359 | /* The default action is to return 0 because we are using | |
10360 | the optimistic approach here: If we don't know something, | |
10361 | then it is not a constant. */ | |
10362 | default: | |
10363 | return 0; | |
10364 | } | |
10365 | } | |
10366 | ||
10367 | return 1; | |
10368 | } | |
10369 | ||
3a5c3e22 PA |
10370 | /* Implement the "dtor" breakpoint_ops method for watchpoints. */ |
10371 | ||
10372 | static void | |
10373 | dtor_watchpoint (struct breakpoint *self) | |
10374 | { | |
10375 | struct watchpoint *w = (struct watchpoint *) self; | |
10376 | ||
10377 | xfree (w->cond_exp); | |
10378 | xfree (w->exp); | |
10379 | xfree (w->exp_string); | |
10380 | xfree (w->exp_string_reparse); | |
10381 | value_free (w->val); | |
10382 | ||
10383 | base_breakpoint_ops.dtor (self); | |
10384 | } | |
10385 | ||
348d480f PA |
10386 | /* Implement the "re_set" breakpoint_ops method for watchpoints. */ |
10387 | ||
10388 | static void | |
10389 | re_set_watchpoint (struct breakpoint *b) | |
10390 | { | |
3a5c3e22 PA |
10391 | struct watchpoint *w = (struct watchpoint *) b; |
10392 | ||
348d480f PA |
10393 | /* Watchpoint can be either on expression using entirely global |
10394 | variables, or it can be on local variables. | |
10395 | ||
10396 | Watchpoints of the first kind are never auto-deleted, and even | |
10397 | persist across program restarts. Since they can use variables | |
10398 | from shared libraries, we need to reparse expression as libraries | |
10399 | are loaded and unloaded. | |
10400 | ||
10401 | Watchpoints on local variables can also change meaning as result | |
10402 | of solib event. For example, if a watchpoint uses both a local | |
10403 | and a global variables in expression, it's a local watchpoint, | |
10404 | but unloading of a shared library will make the expression | |
10405 | invalid. This is not a very common use case, but we still | |
10406 | re-evaluate expression, to avoid surprises to the user. | |
10407 | ||
10408 | Note that for local watchpoints, we re-evaluate it only if | |
10409 | watchpoints frame id is still valid. If it's not, it means the | |
10410 | watchpoint is out of scope and will be deleted soon. In fact, | |
10411 | I'm not sure we'll ever be called in this case. | |
10412 | ||
10413 | If a local watchpoint's frame id is still valid, then | |
3a5c3e22 | 10414 | w->exp_valid_block is likewise valid, and we can safely use it. |
348d480f | 10415 | |
3a5c3e22 PA |
10416 | Don't do anything about disabled watchpoints, since they will be |
10417 | reevaluated again when enabled. */ | |
10418 | update_watchpoint (w, 1 /* reparse */); | |
348d480f PA |
10419 | } |
10420 | ||
77b06cd7 TJB |
10421 | /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */ |
10422 | ||
10423 | static int | |
10424 | insert_watchpoint (struct bp_location *bl) | |
10425 | { | |
3a5c3e22 PA |
10426 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10427 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
10428 | |
10429 | return target_insert_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 10430 | w->cond_exp); |
77b06cd7 TJB |
10431 | } |
10432 | ||
10433 | /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */ | |
10434 | ||
10435 | static int | |
10436 | remove_watchpoint (struct bp_location *bl) | |
10437 | { | |
3a5c3e22 PA |
10438 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10439 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
10440 | |
10441 | return target_remove_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 10442 | w->cond_exp); |
e09342b5 TJB |
10443 | } |
10444 | ||
e09342b5 | 10445 | static int |
348d480f | 10446 | breakpoint_hit_watchpoint (const struct bp_location *bl, |
09ac7c10 TT |
10447 | struct address_space *aspace, CORE_ADDR bp_addr, |
10448 | const struct target_waitstatus *ws) | |
e09342b5 | 10449 | { |
348d480f | 10450 | struct breakpoint *b = bl->owner; |
3a5c3e22 | 10451 | struct watchpoint *w = (struct watchpoint *) b; |
77b06cd7 | 10452 | |
348d480f PA |
10453 | /* Continuable hardware watchpoints are treated as non-existent if the |
10454 | reason we stopped wasn't a hardware watchpoint (we didn't stop on | |
10455 | some data address). Otherwise gdb won't stop on a break instruction | |
10456 | in the code (not from a breakpoint) when a hardware watchpoint has | |
10457 | been defined. Also skip watchpoints which we know did not trigger | |
10458 | (did not match the data address). */ | |
10459 | if (is_hardware_watchpoint (b) | |
3a5c3e22 | 10460 | && w->watchpoint_triggered == watch_triggered_no) |
348d480f | 10461 | return 0; |
9c06b0b4 | 10462 | |
348d480f | 10463 | return 1; |
9c06b0b4 TJB |
10464 | } |
10465 | ||
348d480f PA |
10466 | static void |
10467 | check_status_watchpoint (bpstat bs) | |
9c06b0b4 | 10468 | { |
348d480f | 10469 | gdb_assert (is_watchpoint (bs->breakpoint_at)); |
9c06b0b4 | 10470 | |
348d480f | 10471 | bpstat_check_watchpoint (bs); |
9c06b0b4 TJB |
10472 | } |
10473 | ||
10474 | /* Implement the "resources_needed" breakpoint_ops method for | |
348d480f | 10475 | hardware watchpoints. */ |
9c06b0b4 TJB |
10476 | |
10477 | static int | |
348d480f | 10478 | resources_needed_watchpoint (const struct bp_location *bl) |
9c06b0b4 | 10479 | { |
3a5c3e22 PA |
10480 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10481 | int length = w->exact? 1 : bl->length; | |
348d480f PA |
10482 | |
10483 | return target_region_ok_for_hw_watchpoint (bl->address, length); | |
9c06b0b4 TJB |
10484 | } |
10485 | ||
10486 | /* Implement the "works_in_software_mode" breakpoint_ops method for | |
348d480f | 10487 | hardware watchpoints. */ |
9c06b0b4 TJB |
10488 | |
10489 | static int | |
348d480f | 10490 | works_in_software_mode_watchpoint (const struct breakpoint *b) |
9c06b0b4 | 10491 | { |
efa80663 PA |
10492 | /* Read and access watchpoints only work with hardware support. */ |
10493 | return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint; | |
9c06b0b4 TJB |
10494 | } |
10495 | ||
9c06b0b4 | 10496 | static enum print_stop_action |
348d480f | 10497 | print_it_watchpoint (bpstat bs) |
9c06b0b4 | 10498 | { |
348d480f PA |
10499 | struct cleanup *old_chain; |
10500 | struct breakpoint *b; | |
f99d8bf4 | 10501 | struct ui_file *stb; |
348d480f | 10502 | enum print_stop_action result; |
3a5c3e22 | 10503 | struct watchpoint *w; |
79a45e25 | 10504 | struct ui_out *uiout = current_uiout; |
348d480f PA |
10505 | |
10506 | gdb_assert (bs->bp_location_at != NULL); | |
10507 | ||
348d480f | 10508 | b = bs->breakpoint_at; |
3a5c3e22 | 10509 | w = (struct watchpoint *) b; |
348d480f | 10510 | |
f99d8bf4 PA |
10511 | stb = mem_fileopen (); |
10512 | old_chain = make_cleanup_ui_file_delete (stb); | |
9c06b0b4 TJB |
10513 | |
10514 | switch (b->type) | |
10515 | { | |
348d480f | 10516 | case bp_watchpoint: |
9c06b0b4 TJB |
10517 | case bp_hardware_watchpoint: |
10518 | annotate_watchpoint (b->number); | |
10519 | if (ui_out_is_mi_like_p (uiout)) | |
10520 | ui_out_field_string | |
10521 | (uiout, "reason", | |
10522 | async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER)); | |
348d480f PA |
10523 | mention (b); |
10524 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10525 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 10526 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
10527 | ui_out_field_stream (uiout, "old", stb); |
10528 | ui_out_text (uiout, "\nNew value = "); | |
f99d8bf4 | 10529 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10530 | ui_out_field_stream (uiout, "new", stb); |
10531 | ui_out_text (uiout, "\n"); | |
10532 | /* More than one watchpoint may have been triggered. */ | |
10533 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10534 | break; |
10535 | ||
10536 | case bp_read_watchpoint: | |
10537 | if (ui_out_is_mi_like_p (uiout)) | |
10538 | ui_out_field_string | |
10539 | (uiout, "reason", | |
10540 | async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER)); | |
348d480f PA |
10541 | mention (b); |
10542 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10543 | ui_out_text (uiout, "\nValue = "); | |
f99d8bf4 | 10544 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10545 | ui_out_field_stream (uiout, "value", stb); |
10546 | ui_out_text (uiout, "\n"); | |
10547 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10548 | break; |
10549 | ||
10550 | case bp_access_watchpoint: | |
348d480f PA |
10551 | if (bs->old_val != NULL) |
10552 | { | |
10553 | annotate_watchpoint (b->number); | |
10554 | if (ui_out_is_mi_like_p (uiout)) | |
10555 | ui_out_field_string | |
10556 | (uiout, "reason", | |
10557 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
10558 | mention (b); | |
10559 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10560 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 10561 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
10562 | ui_out_field_stream (uiout, "old", stb); |
10563 | ui_out_text (uiout, "\nNew value = "); | |
10564 | } | |
10565 | else | |
10566 | { | |
10567 | mention (b); | |
10568 | if (ui_out_is_mi_like_p (uiout)) | |
10569 | ui_out_field_string | |
10570 | (uiout, "reason", | |
10571 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
10572 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10573 | ui_out_text (uiout, "\nValue = "); | |
10574 | } | |
f99d8bf4 | 10575 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10576 | ui_out_field_stream (uiout, "new", stb); |
10577 | ui_out_text (uiout, "\n"); | |
10578 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10579 | break; |
10580 | default: | |
348d480f | 10581 | result = PRINT_UNKNOWN; |
9c06b0b4 TJB |
10582 | } |
10583 | ||
348d480f PA |
10584 | do_cleanups (old_chain); |
10585 | return result; | |
10586 | } | |
10587 | ||
10588 | /* Implement the "print_mention" breakpoint_ops method for hardware | |
10589 | watchpoints. */ | |
10590 | ||
10591 | static void | |
10592 | print_mention_watchpoint (struct breakpoint *b) | |
10593 | { | |
10594 | struct cleanup *ui_out_chain; | |
3a5c3e22 | 10595 | struct watchpoint *w = (struct watchpoint *) b; |
79a45e25 | 10596 | struct ui_out *uiout = current_uiout; |
348d480f PA |
10597 | |
10598 | switch (b->type) | |
10599 | { | |
10600 | case bp_watchpoint: | |
10601 | ui_out_text (uiout, "Watchpoint "); | |
10602 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
10603 | break; | |
10604 | case bp_hardware_watchpoint: | |
10605 | ui_out_text (uiout, "Hardware watchpoint "); | |
10606 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
10607 | break; | |
10608 | case bp_read_watchpoint: | |
10609 | ui_out_text (uiout, "Hardware read watchpoint "); | |
10610 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
10611 | break; | |
10612 | case bp_access_watchpoint: | |
10613 | ui_out_text (uiout, "Hardware access (read/write) watchpoint "); | |
10614 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
10615 | break; | |
10616 | default: | |
10617 | internal_error (__FILE__, __LINE__, | |
10618 | _("Invalid hardware watchpoint type.")); | |
10619 | } | |
10620 | ||
10621 | ui_out_field_int (uiout, "number", b->number); | |
10622 | ui_out_text (uiout, ": "); | |
3a5c3e22 | 10623 | ui_out_field_string (uiout, "exp", w->exp_string); |
348d480f PA |
10624 | do_cleanups (ui_out_chain); |
10625 | } | |
10626 | ||
10627 | /* Implement the "print_recreate" breakpoint_ops method for | |
10628 | watchpoints. */ | |
10629 | ||
10630 | static void | |
10631 | print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp) | |
10632 | { | |
3a5c3e22 PA |
10633 | struct watchpoint *w = (struct watchpoint *) b; |
10634 | ||
348d480f PA |
10635 | switch (b->type) |
10636 | { | |
10637 | case bp_watchpoint: | |
10638 | case bp_hardware_watchpoint: | |
10639 | fprintf_unfiltered (fp, "watch"); | |
10640 | break; | |
10641 | case bp_read_watchpoint: | |
10642 | fprintf_unfiltered (fp, "rwatch"); | |
10643 | break; | |
10644 | case bp_access_watchpoint: | |
10645 | fprintf_unfiltered (fp, "awatch"); | |
10646 | break; | |
10647 | default: | |
10648 | internal_error (__FILE__, __LINE__, | |
10649 | _("Invalid watchpoint type.")); | |
10650 | } | |
10651 | ||
3a5c3e22 | 10652 | fprintf_unfiltered (fp, " %s", w->exp_string); |
d9b3f62e | 10653 | print_recreate_thread (b, fp); |
348d480f PA |
10654 | } |
10655 | ||
10656 | /* The breakpoint_ops structure to be used in hardware watchpoints. */ | |
10657 | ||
2060206e | 10658 | static struct breakpoint_ops watchpoint_breakpoint_ops; |
348d480f PA |
10659 | |
10660 | /* Implement the "insert" breakpoint_ops method for | |
10661 | masked hardware watchpoints. */ | |
10662 | ||
10663 | static int | |
10664 | insert_masked_watchpoint (struct bp_location *bl) | |
10665 | { | |
3a5c3e22 PA |
10666 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10667 | ||
10668 | return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask, | |
348d480f PA |
10669 | bl->watchpoint_type); |
10670 | } | |
10671 | ||
10672 | /* Implement the "remove" breakpoint_ops method for | |
10673 | masked hardware watchpoints. */ | |
10674 | ||
10675 | static int | |
10676 | remove_masked_watchpoint (struct bp_location *bl) | |
10677 | { | |
3a5c3e22 PA |
10678 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10679 | ||
10680 | return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask, | |
348d480f PA |
10681 | bl->watchpoint_type); |
10682 | } | |
10683 | ||
10684 | /* Implement the "resources_needed" breakpoint_ops method for | |
10685 | masked hardware watchpoints. */ | |
10686 | ||
10687 | static int | |
10688 | resources_needed_masked_watchpoint (const struct bp_location *bl) | |
10689 | { | |
3a5c3e22 PA |
10690 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10691 | ||
10692 | return target_masked_watch_num_registers (bl->address, w->hw_wp_mask); | |
348d480f PA |
10693 | } |
10694 | ||
10695 | /* Implement the "works_in_software_mode" breakpoint_ops method for | |
10696 | masked hardware watchpoints. */ | |
10697 | ||
10698 | static int | |
10699 | works_in_software_mode_masked_watchpoint (const struct breakpoint *b) | |
10700 | { | |
10701 | return 0; | |
10702 | } | |
10703 | ||
10704 | /* Implement the "print_it" breakpoint_ops method for | |
10705 | masked hardware watchpoints. */ | |
10706 | ||
10707 | static enum print_stop_action | |
10708 | print_it_masked_watchpoint (bpstat bs) | |
10709 | { | |
10710 | struct breakpoint *b = bs->breakpoint_at; | |
79a45e25 | 10711 | struct ui_out *uiout = current_uiout; |
348d480f PA |
10712 | |
10713 | /* Masked watchpoints have only one location. */ | |
10714 | gdb_assert (b->loc && b->loc->next == NULL); | |
10715 | ||
10716 | switch (b->type) | |
10717 | { | |
10718 | case bp_hardware_watchpoint: | |
10719 | annotate_watchpoint (b->number); | |
10720 | if (ui_out_is_mi_like_p (uiout)) | |
10721 | ui_out_field_string | |
10722 | (uiout, "reason", | |
10723 | async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER)); | |
10724 | break; | |
10725 | ||
10726 | case bp_read_watchpoint: | |
10727 | if (ui_out_is_mi_like_p (uiout)) | |
10728 | ui_out_field_string | |
10729 | (uiout, "reason", | |
10730 | async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER)); | |
10731 | break; | |
10732 | ||
10733 | case bp_access_watchpoint: | |
10734 | if (ui_out_is_mi_like_p (uiout)) | |
10735 | ui_out_field_string | |
10736 | (uiout, "reason", | |
10737 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
10738 | break; | |
10739 | default: | |
10740 | internal_error (__FILE__, __LINE__, | |
10741 | _("Invalid hardware watchpoint type.")); | |
10742 | } | |
10743 | ||
10744 | mention (b); | |
9c06b0b4 TJB |
10745 | ui_out_text (uiout, _("\n\ |
10746 | Check the underlying instruction at PC for the memory\n\ | |
10747 | address and value which triggered this watchpoint.\n")); | |
10748 | ui_out_text (uiout, "\n"); | |
10749 | ||
10750 | /* More than one watchpoint may have been triggered. */ | |
10751 | return PRINT_UNKNOWN; | |
10752 | } | |
10753 | ||
10754 | /* Implement the "print_one_detail" breakpoint_ops method for | |
10755 | masked hardware watchpoints. */ | |
10756 | ||
10757 | static void | |
10758 | print_one_detail_masked_watchpoint (const struct breakpoint *b, | |
10759 | struct ui_out *uiout) | |
10760 | { | |
3a5c3e22 PA |
10761 | struct watchpoint *w = (struct watchpoint *) b; |
10762 | ||
9c06b0b4 TJB |
10763 | /* Masked watchpoints have only one location. */ |
10764 | gdb_assert (b->loc && b->loc->next == NULL); | |
10765 | ||
10766 | ui_out_text (uiout, "\tmask "); | |
3a5c3e22 | 10767 | ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask); |
9c06b0b4 TJB |
10768 | ui_out_text (uiout, "\n"); |
10769 | } | |
10770 | ||
10771 | /* Implement the "print_mention" breakpoint_ops method for | |
10772 | masked hardware watchpoints. */ | |
10773 | ||
10774 | static void | |
10775 | print_mention_masked_watchpoint (struct breakpoint *b) | |
10776 | { | |
3a5c3e22 | 10777 | struct watchpoint *w = (struct watchpoint *) b; |
79a45e25 | 10778 | struct ui_out *uiout = current_uiout; |
9c06b0b4 TJB |
10779 | struct cleanup *ui_out_chain; |
10780 | ||
10781 | switch (b->type) | |
10782 | { | |
10783 | case bp_hardware_watchpoint: | |
10784 | ui_out_text (uiout, "Masked hardware watchpoint "); | |
10785 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
10786 | break; | |
10787 | case bp_read_watchpoint: | |
10788 | ui_out_text (uiout, "Masked hardware read watchpoint "); | |
10789 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
10790 | break; | |
10791 | case bp_access_watchpoint: | |
10792 | ui_out_text (uiout, "Masked hardware access (read/write) watchpoint "); | |
10793 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
10794 | break; | |
10795 | default: | |
10796 | internal_error (__FILE__, __LINE__, | |
10797 | _("Invalid hardware watchpoint type.")); | |
10798 | } | |
10799 | ||
10800 | ui_out_field_int (uiout, "number", b->number); | |
10801 | ui_out_text (uiout, ": "); | |
3a5c3e22 | 10802 | ui_out_field_string (uiout, "exp", w->exp_string); |
9c06b0b4 TJB |
10803 | do_cleanups (ui_out_chain); |
10804 | } | |
10805 | ||
10806 | /* Implement the "print_recreate" breakpoint_ops method for | |
10807 | masked hardware watchpoints. */ | |
10808 | ||
10809 | static void | |
10810 | print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp) | |
10811 | { | |
3a5c3e22 | 10812 | struct watchpoint *w = (struct watchpoint *) b; |
9c06b0b4 TJB |
10813 | char tmp[40]; |
10814 | ||
10815 | switch (b->type) | |
10816 | { | |
10817 | case bp_hardware_watchpoint: | |
10818 | fprintf_unfiltered (fp, "watch"); | |
10819 | break; | |
10820 | case bp_read_watchpoint: | |
10821 | fprintf_unfiltered (fp, "rwatch"); | |
10822 | break; | |
10823 | case bp_access_watchpoint: | |
10824 | fprintf_unfiltered (fp, "awatch"); | |
10825 | break; | |
10826 | default: | |
10827 | internal_error (__FILE__, __LINE__, | |
10828 | _("Invalid hardware watchpoint type.")); | |
10829 | } | |
10830 | ||
3a5c3e22 PA |
10831 | sprintf_vma (tmp, w->hw_wp_mask); |
10832 | fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp); | |
d9b3f62e | 10833 | print_recreate_thread (b, fp); |
9c06b0b4 TJB |
10834 | } |
10835 | ||
10836 | /* The breakpoint_ops structure to be used in masked hardware watchpoints. */ | |
10837 | ||
2060206e | 10838 | static struct breakpoint_ops masked_watchpoint_breakpoint_ops; |
9c06b0b4 TJB |
10839 | |
10840 | /* Tell whether the given watchpoint is a masked hardware watchpoint. */ | |
10841 | ||
10842 | static int | |
10843 | is_masked_watchpoint (const struct breakpoint *b) | |
10844 | { | |
10845 | return b->ops == &masked_watchpoint_breakpoint_ops; | |
10846 | } | |
10847 | ||
53a5351d JM |
10848 | /* accessflag: hw_write: watch write, |
10849 | hw_read: watch read, | |
10850 | hw_access: watch access (read or write) */ | |
c906108c | 10851 | static void |
bbc13ae3 | 10852 | watch_command_1 (const char *arg, int accessflag, int from_tty, |
84f4c1fe | 10853 | int just_location, int internal) |
c906108c | 10854 | { |
a9634178 | 10855 | volatile struct gdb_exception e; |
d983da9c | 10856 | struct breakpoint *b, *scope_breakpoint = NULL; |
c906108c | 10857 | struct expression *exp; |
270140bd | 10858 | const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL; |
a1442452 | 10859 | struct value *val, *mark, *result; |
c906108c | 10860 | struct frame_info *frame; |
bbc13ae3 KS |
10861 | const char *exp_start = NULL; |
10862 | const char *exp_end = NULL; | |
10863 | const char *tok, *end_tok; | |
9c06b0b4 | 10864 | int toklen = -1; |
bbc13ae3 KS |
10865 | const char *cond_start = NULL; |
10866 | const char *cond_end = NULL; | |
c906108c | 10867 | enum bptype bp_type; |
37e4754d | 10868 | int thread = -1; |
0cf6dd15 | 10869 | int pc = 0; |
9c06b0b4 TJB |
10870 | /* Flag to indicate whether we are going to use masks for |
10871 | the hardware watchpoint. */ | |
10872 | int use_mask = 0; | |
10873 | CORE_ADDR mask = 0; | |
3a5c3e22 | 10874 | struct watchpoint *w; |
bbc13ae3 KS |
10875 | char *expression; |
10876 | struct cleanup *back_to; | |
c906108c | 10877 | |
37e4754d LM |
10878 | /* Make sure that we actually have parameters to parse. */ |
10879 | if (arg != NULL && arg[0] != '\0') | |
10880 | { | |
bbc13ae3 KS |
10881 | const char *value_start; |
10882 | ||
10883 | exp_end = arg + strlen (arg); | |
37e4754d | 10884 | |
9c06b0b4 TJB |
10885 | /* Look for "parameter value" pairs at the end |
10886 | of the arguments string. */ | |
bbc13ae3 | 10887 | for (tok = exp_end - 1; tok > arg; tok--) |
9c06b0b4 TJB |
10888 | { |
10889 | /* Skip whitespace at the end of the argument list. */ | |
10890 | while (tok > arg && (*tok == ' ' || *tok == '\t')) | |
10891 | tok--; | |
10892 | ||
10893 | /* Find the beginning of the last token. | |
10894 | This is the value of the parameter. */ | |
10895 | while (tok > arg && (*tok != ' ' && *tok != '\t')) | |
10896 | tok--; | |
10897 | value_start = tok + 1; | |
10898 | ||
10899 | /* Skip whitespace. */ | |
10900 | while (tok > arg && (*tok == ' ' || *tok == '\t')) | |
10901 | tok--; | |
10902 | ||
10903 | end_tok = tok; | |
10904 | ||
10905 | /* Find the beginning of the second to last token. | |
10906 | This is the parameter itself. */ | |
10907 | while (tok > arg && (*tok != ' ' && *tok != '\t')) | |
10908 | tok--; | |
10909 | tok++; | |
10910 | toklen = end_tok - tok + 1; | |
10911 | ||
10912 | if (toklen == 6 && !strncmp (tok, "thread", 6)) | |
10913 | { | |
10914 | /* At this point we've found a "thread" token, which means | |
10915 | the user is trying to set a watchpoint that triggers | |
10916 | only in a specific thread. */ | |
10917 | char *endp; | |
37e4754d | 10918 | |
9c06b0b4 TJB |
10919 | if (thread != -1) |
10920 | error(_("You can specify only one thread.")); | |
37e4754d | 10921 | |
9c06b0b4 TJB |
10922 | /* Extract the thread ID from the next token. */ |
10923 | thread = strtol (value_start, &endp, 0); | |
37e4754d | 10924 | |
9c06b0b4 TJB |
10925 | /* Check if the user provided a valid numeric value for the |
10926 | thread ID. */ | |
10927 | if (*endp != ' ' && *endp != '\t' && *endp != '\0') | |
10928 | error (_("Invalid thread ID specification %s."), value_start); | |
10929 | ||
10930 | /* Check if the thread actually exists. */ | |
10931 | if (!valid_thread_id (thread)) | |
af4908ba | 10932 | invalid_thread_id_error (thread); |
9c06b0b4 TJB |
10933 | } |
10934 | else if (toklen == 4 && !strncmp (tok, "mask", 4)) | |
10935 | { | |
10936 | /* We've found a "mask" token, which means the user wants to | |
10937 | create a hardware watchpoint that is going to have the mask | |
10938 | facility. */ | |
10939 | struct value *mask_value, *mark; | |
37e4754d | 10940 | |
9c06b0b4 TJB |
10941 | if (use_mask) |
10942 | error(_("You can specify only one mask.")); | |
37e4754d | 10943 | |
9c06b0b4 | 10944 | use_mask = just_location = 1; |
37e4754d | 10945 | |
9c06b0b4 TJB |
10946 | mark = value_mark (); |
10947 | mask_value = parse_to_comma_and_eval (&value_start); | |
10948 | mask = value_as_address (mask_value); | |
10949 | value_free_to_mark (mark); | |
10950 | } | |
10951 | else | |
10952 | /* We didn't recognize what we found. We should stop here. */ | |
10953 | break; | |
37e4754d | 10954 | |
9c06b0b4 TJB |
10955 | /* Truncate the string and get rid of the "parameter value" pair before |
10956 | the arguments string is parsed by the parse_exp_1 function. */ | |
bbc13ae3 | 10957 | exp_end = tok; |
9c06b0b4 | 10958 | } |
37e4754d | 10959 | } |
bbc13ae3 KS |
10960 | else |
10961 | exp_end = arg; | |
37e4754d | 10962 | |
bbc13ae3 KS |
10963 | /* Parse the rest of the arguments. From here on out, everything |
10964 | is in terms of a newly allocated string instead of the original | |
10965 | ARG. */ | |
c906108c | 10966 | innermost_block = NULL; |
bbc13ae3 KS |
10967 | expression = savestring (arg, exp_end - arg); |
10968 | back_to = make_cleanup (xfree, expression); | |
10969 | exp_start = arg = expression; | |
1bb9788d | 10970 | exp = parse_exp_1 (&arg, 0, 0, 0); |
c906108c | 10971 | exp_end = arg; |
fa8a61dc TT |
10972 | /* Remove trailing whitespace from the expression before saving it. |
10973 | This makes the eventual display of the expression string a bit | |
10974 | prettier. */ | |
10975 | while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t')) | |
10976 | --exp_end; | |
10977 | ||
65d79d4b SDJ |
10978 | /* Checking if the expression is not constant. */ |
10979 | if (watchpoint_exp_is_const (exp)) | |
10980 | { | |
10981 | int len; | |
10982 | ||
10983 | len = exp_end - exp_start; | |
10984 | while (len > 0 && isspace (exp_start[len - 1])) | |
10985 | len--; | |
10986 | error (_("Cannot watch constant value `%.*s'."), len, exp_start); | |
10987 | } | |
10988 | ||
c906108c SS |
10989 | exp_valid_block = innermost_block; |
10990 | mark = value_mark (); | |
a1442452 | 10991 | fetch_subexp_value (exp, &pc, &val, &result, NULL); |
06a64a0b TT |
10992 | |
10993 | if (just_location) | |
10994 | { | |
9c06b0b4 TJB |
10995 | int ret; |
10996 | ||
06a64a0b | 10997 | exp_valid_block = NULL; |
a1442452 | 10998 | val = value_addr (result); |
06a64a0b TT |
10999 | release_value (val); |
11000 | value_free_to_mark (mark); | |
9c06b0b4 TJB |
11001 | |
11002 | if (use_mask) | |
11003 | { | |
11004 | ret = target_masked_watch_num_registers (value_as_address (val), | |
11005 | mask); | |
11006 | if (ret == -1) | |
11007 | error (_("This target does not support masked watchpoints.")); | |
11008 | else if (ret == -2) | |
11009 | error (_("Invalid mask or memory region.")); | |
11010 | } | |
06a64a0b TT |
11011 | } |
11012 | else if (val != NULL) | |
fa4727a6 | 11013 | release_value (val); |
c906108c | 11014 | |
bbc13ae3 KS |
11015 | tok = skip_spaces_const (arg); |
11016 | end_tok = skip_to_space_const (tok); | |
c906108c SS |
11017 | |
11018 | toklen = end_tok - tok; | |
11019 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) | |
11020 | { | |
2d134ed3 PA |
11021 | struct expression *cond; |
11022 | ||
60e1c644 | 11023 | innermost_block = NULL; |
c906108c | 11024 | tok = cond_start = end_tok + 1; |
1bb9788d | 11025 | cond = parse_exp_1 (&tok, 0, 0, 0); |
60e1c644 PA |
11026 | |
11027 | /* The watchpoint expression may not be local, but the condition | |
11028 | may still be. E.g.: `watch global if local > 0'. */ | |
11029 | cond_exp_valid_block = innermost_block; | |
11030 | ||
2d134ed3 | 11031 | xfree (cond); |
c906108c SS |
11032 | cond_end = tok; |
11033 | } | |
11034 | if (*tok) | |
8a3fe4f8 | 11035 | error (_("Junk at end of command.")); |
c906108c | 11036 | |
53a5351d | 11037 | if (accessflag == hw_read) |
c5aa993b | 11038 | bp_type = bp_read_watchpoint; |
53a5351d | 11039 | else if (accessflag == hw_access) |
c5aa993b JM |
11040 | bp_type = bp_access_watchpoint; |
11041 | else | |
11042 | bp_type = bp_hardware_watchpoint; | |
c906108c | 11043 | |
d983da9c | 11044 | frame = block_innermost_frame (exp_valid_block); |
d983da9c DJ |
11045 | |
11046 | /* If the expression is "local", then set up a "watchpoint scope" | |
11047 | breakpoint at the point where we've left the scope of the watchpoint | |
11048 | expression. Create the scope breakpoint before the watchpoint, so | |
11049 | that we will encounter it first in bpstat_stop_status. */ | |
60e1c644 | 11050 | if (exp_valid_block && frame) |
d983da9c | 11051 | { |
edb3359d DJ |
11052 | if (frame_id_p (frame_unwind_caller_id (frame))) |
11053 | { | |
11054 | scope_breakpoint | |
a6d9a66e UW |
11055 | = create_internal_breakpoint (frame_unwind_caller_arch (frame), |
11056 | frame_unwind_caller_pc (frame), | |
06edf0c0 PA |
11057 | bp_watchpoint_scope, |
11058 | &momentary_breakpoint_ops); | |
d983da9c | 11059 | |
edb3359d | 11060 | scope_breakpoint->enable_state = bp_enabled; |
d983da9c | 11061 | |
edb3359d DJ |
11062 | /* Automatically delete the breakpoint when it hits. */ |
11063 | scope_breakpoint->disposition = disp_del; | |
d983da9c | 11064 | |
edb3359d DJ |
11065 | /* Only break in the proper frame (help with recursion). */ |
11066 | scope_breakpoint->frame_id = frame_unwind_caller_id (frame); | |
d983da9c | 11067 | |
edb3359d | 11068 | /* Set the address at which we will stop. */ |
a6d9a66e UW |
11069 | scope_breakpoint->loc->gdbarch |
11070 | = frame_unwind_caller_arch (frame); | |
edb3359d DJ |
11071 | scope_breakpoint->loc->requested_address |
11072 | = frame_unwind_caller_pc (frame); | |
11073 | scope_breakpoint->loc->address | |
a6d9a66e UW |
11074 | = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch, |
11075 | scope_breakpoint->loc->requested_address, | |
edb3359d DJ |
11076 | scope_breakpoint->type); |
11077 | } | |
d983da9c DJ |
11078 | } |
11079 | ||
c906108c | 11080 | /* Now set up the breakpoint. */ |
3a5c3e22 PA |
11081 | |
11082 | w = XCNEW (struct watchpoint); | |
11083 | b = &w->base; | |
348d480f | 11084 | if (use_mask) |
3a5c3e22 PA |
11085 | init_raw_breakpoint_without_location (b, NULL, bp_type, |
11086 | &masked_watchpoint_breakpoint_ops); | |
348d480f | 11087 | else |
3a5c3e22 PA |
11088 | init_raw_breakpoint_without_location (b, NULL, bp_type, |
11089 | &watchpoint_breakpoint_ops); | |
37e4754d | 11090 | b->thread = thread; |
b5de0fa7 | 11091 | b->disposition = disp_donttouch; |
348d480f | 11092 | b->pspace = current_program_space; |
3a5c3e22 PA |
11093 | w->exp = exp; |
11094 | w->exp_valid_block = exp_valid_block; | |
11095 | w->cond_exp_valid_block = cond_exp_valid_block; | |
06a64a0b TT |
11096 | if (just_location) |
11097 | { | |
11098 | struct type *t = value_type (val); | |
11099 | CORE_ADDR addr = value_as_address (val); | |
11100 | char *name; | |
11101 | ||
11102 | t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t))); | |
11103 | name = type_to_string (t); | |
11104 | ||
3a5c3e22 | 11105 | w->exp_string_reparse = xstrprintf ("* (%s *) %s", name, |
d63d0675 | 11106 | core_addr_to_string (addr)); |
06a64a0b TT |
11107 | xfree (name); |
11108 | ||
3a5c3e22 | 11109 | w->exp_string = xstrprintf ("-location %.*s", |
d63d0675 JK |
11110 | (int) (exp_end - exp_start), exp_start); |
11111 | ||
06a64a0b TT |
11112 | /* The above expression is in C. */ |
11113 | b->language = language_c; | |
11114 | } | |
11115 | else | |
3a5c3e22 | 11116 | w->exp_string = savestring (exp_start, exp_end - exp_start); |
9c06b0b4 TJB |
11117 | |
11118 | if (use_mask) | |
11119 | { | |
3a5c3e22 | 11120 | w->hw_wp_mask = mask; |
9c06b0b4 TJB |
11121 | } |
11122 | else | |
11123 | { | |
3a5c3e22 PA |
11124 | w->val = val; |
11125 | w->val_valid = 1; | |
9c06b0b4 | 11126 | } |
77b06cd7 | 11127 | |
c906108c SS |
11128 | if (cond_start) |
11129 | b->cond_string = savestring (cond_start, cond_end - cond_start); | |
11130 | else | |
11131 | b->cond_string = 0; | |
c5aa993b | 11132 | |
c906108c | 11133 | if (frame) |
f6bc2008 | 11134 | { |
3a5c3e22 PA |
11135 | w->watchpoint_frame = get_frame_id (frame); |
11136 | w->watchpoint_thread = inferior_ptid; | |
f6bc2008 | 11137 | } |
c906108c | 11138 | else |
f6bc2008 | 11139 | { |
3a5c3e22 PA |
11140 | w->watchpoint_frame = null_frame_id; |
11141 | w->watchpoint_thread = null_ptid; | |
f6bc2008 | 11142 | } |
c906108c | 11143 | |
d983da9c | 11144 | if (scope_breakpoint != NULL) |
c906108c | 11145 | { |
d983da9c DJ |
11146 | /* The scope breakpoint is related to the watchpoint. We will |
11147 | need to act on them together. */ | |
11148 | b->related_breakpoint = scope_breakpoint; | |
11149 | scope_breakpoint->related_breakpoint = b; | |
c906108c | 11150 | } |
d983da9c | 11151 | |
06a64a0b TT |
11152 | if (!just_location) |
11153 | value_free_to_mark (mark); | |
2d134ed3 | 11154 | |
a9634178 TJB |
11155 | TRY_CATCH (e, RETURN_MASK_ALL) |
11156 | { | |
11157 | /* Finally update the new watchpoint. This creates the locations | |
11158 | that should be inserted. */ | |
3a5c3e22 | 11159 | update_watchpoint (w, 1); |
a9634178 TJB |
11160 | } |
11161 | if (e.reason < 0) | |
11162 | { | |
11163 | delete_breakpoint (b); | |
11164 | throw_exception (e); | |
11165 | } | |
11166 | ||
3ea46bff | 11167 | install_breakpoint (internal, b, 1); |
bbc13ae3 | 11168 | do_cleanups (back_to); |
c906108c SS |
11169 | } |
11170 | ||
e09342b5 | 11171 | /* Return count of debug registers needed to watch the given expression. |
e09342b5 | 11172 | If the watchpoint cannot be handled in hardware return zero. */ |
c906108c | 11173 | |
c906108c | 11174 | static int |
a9634178 | 11175 | can_use_hardware_watchpoint (struct value *v) |
c906108c SS |
11176 | { |
11177 | int found_memory_cnt = 0; | |
2e70b7b9 | 11178 | struct value *head = v; |
c906108c SS |
11179 | |
11180 | /* Did the user specifically forbid us to use hardware watchpoints? */ | |
c5aa993b | 11181 | if (!can_use_hw_watchpoints) |
c906108c | 11182 | return 0; |
c5aa993b | 11183 | |
5c44784c JM |
11184 | /* Make sure that the value of the expression depends only upon |
11185 | memory contents, and values computed from them within GDB. If we | |
11186 | find any register references or function calls, we can't use a | |
11187 | hardware watchpoint. | |
11188 | ||
11189 | The idea here is that evaluating an expression generates a series | |
11190 | of values, one holding the value of every subexpression. (The | |
11191 | expression a*b+c has five subexpressions: a, b, a*b, c, and | |
11192 | a*b+c.) GDB's values hold almost enough information to establish | |
11193 | the criteria given above --- they identify memory lvalues, | |
11194 | register lvalues, computed values, etcetera. So we can evaluate | |
11195 | the expression, and then scan the chain of values that leaves | |
11196 | behind to decide whether we can detect any possible change to the | |
11197 | expression's final value using only hardware watchpoints. | |
11198 | ||
11199 | However, I don't think that the values returned by inferior | |
11200 | function calls are special in any way. So this function may not | |
11201 | notice that an expression involving an inferior function call | |
11202 | can't be watched with hardware watchpoints. FIXME. */ | |
17cf0ecd | 11203 | for (; v; v = value_next (v)) |
c906108c | 11204 | { |
5c44784c | 11205 | if (VALUE_LVAL (v) == lval_memory) |
c906108c | 11206 | { |
8464be76 DJ |
11207 | if (v != head && value_lazy (v)) |
11208 | /* A lazy memory lvalue in the chain is one that GDB never | |
11209 | needed to fetch; we either just used its address (e.g., | |
11210 | `a' in `a.b') or we never needed it at all (e.g., `a' | |
11211 | in `a,b'). This doesn't apply to HEAD; if that is | |
11212 | lazy then it was not readable, but watch it anyway. */ | |
5c44784c | 11213 | ; |
53a5351d | 11214 | else |
5c44784c JM |
11215 | { |
11216 | /* Ahh, memory we actually used! Check if we can cover | |
11217 | it with hardware watchpoints. */ | |
df407dfe | 11218 | struct type *vtype = check_typedef (value_type (v)); |
2e70b7b9 MS |
11219 | |
11220 | /* We only watch structs and arrays if user asked for it | |
11221 | explicitly, never if they just happen to appear in a | |
11222 | middle of some value chain. */ | |
11223 | if (v == head | |
11224 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT | |
11225 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
11226 | { | |
42ae5230 | 11227 | CORE_ADDR vaddr = value_address (v); |
e09342b5 TJB |
11228 | int len; |
11229 | int num_regs; | |
11230 | ||
a9634178 | 11231 | len = (target_exact_watchpoints |
e09342b5 TJB |
11232 | && is_scalar_type_recursive (vtype))? |
11233 | 1 : TYPE_LENGTH (value_type (v)); | |
2e70b7b9 | 11234 | |
e09342b5 TJB |
11235 | num_regs = target_region_ok_for_hw_watchpoint (vaddr, len); |
11236 | if (!num_regs) | |
2e70b7b9 MS |
11237 | return 0; |
11238 | else | |
e09342b5 | 11239 | found_memory_cnt += num_regs; |
2e70b7b9 | 11240 | } |
5c44784c | 11241 | } |
c5aa993b | 11242 | } |
5086187c AC |
11243 | else if (VALUE_LVAL (v) != not_lval |
11244 | && deprecated_value_modifiable (v) == 0) | |
38b6c3b3 | 11245 | return 0; /* These are values from the history (e.g., $1). */ |
5086187c | 11246 | else if (VALUE_LVAL (v) == lval_register) |
38b6c3b3 | 11247 | return 0; /* Cannot watch a register with a HW watchpoint. */ |
c906108c SS |
11248 | } |
11249 | ||
11250 | /* The expression itself looks suitable for using a hardware | |
11251 | watchpoint, but give the target machine a chance to reject it. */ | |
11252 | return found_memory_cnt; | |
11253 | } | |
11254 | ||
8b93c638 | 11255 | void |
84f4c1fe | 11256 | watch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 11257 | { |
84f4c1fe | 11258 | watch_command_1 (arg, hw_write, from_tty, 0, internal); |
06a64a0b TT |
11259 | } |
11260 | ||
06a64a0b TT |
11261 | /* A helper function that looks for the "-location" argument and then |
11262 | calls watch_command_1. */ | |
11263 | ||
11264 | static void | |
11265 | watch_maybe_just_location (char *arg, int accessflag, int from_tty) | |
11266 | { | |
11267 | int just_location = 0; | |
11268 | ||
11269 | if (arg | |
11270 | && (check_for_argument (&arg, "-location", sizeof ("-location") - 1) | |
11271 | || check_for_argument (&arg, "-l", sizeof ("-l") - 1))) | |
11272 | { | |
e9cafbcc | 11273 | arg = skip_spaces (arg); |
06a64a0b TT |
11274 | just_location = 1; |
11275 | } | |
11276 | ||
84f4c1fe | 11277 | watch_command_1 (arg, accessflag, from_tty, just_location, 0); |
8b93c638 | 11278 | } |
8926118c | 11279 | |
c5aa993b | 11280 | static void |
fba45db2 | 11281 | watch_command (char *arg, int from_tty) |
c906108c | 11282 | { |
06a64a0b | 11283 | watch_maybe_just_location (arg, hw_write, from_tty); |
c906108c SS |
11284 | } |
11285 | ||
8b93c638 | 11286 | void |
84f4c1fe | 11287 | rwatch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 11288 | { |
84f4c1fe | 11289 | watch_command_1 (arg, hw_read, from_tty, 0, internal); |
8b93c638 | 11290 | } |
8926118c | 11291 | |
c5aa993b | 11292 | static void |
fba45db2 | 11293 | rwatch_command (char *arg, int from_tty) |
c906108c | 11294 | { |
06a64a0b | 11295 | watch_maybe_just_location (arg, hw_read, from_tty); |
c906108c SS |
11296 | } |
11297 | ||
8b93c638 | 11298 | void |
84f4c1fe | 11299 | awatch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 11300 | { |
84f4c1fe | 11301 | watch_command_1 (arg, hw_access, from_tty, 0, internal); |
8b93c638 | 11302 | } |
8926118c | 11303 | |
c5aa993b | 11304 | static void |
fba45db2 | 11305 | awatch_command (char *arg, int from_tty) |
c906108c | 11306 | { |
06a64a0b | 11307 | watch_maybe_just_location (arg, hw_access, from_tty); |
c906108c | 11308 | } |
c906108c | 11309 | \f |
c5aa993b | 11310 | |
43ff13b4 | 11311 | /* Helper routines for the until_command routine in infcmd.c. Here |
c906108c SS |
11312 | because it uses the mechanisms of breakpoints. */ |
11313 | ||
bfec99b2 PA |
11314 | struct until_break_command_continuation_args |
11315 | { | |
11316 | struct breakpoint *breakpoint; | |
11317 | struct breakpoint *breakpoint2; | |
186c406b | 11318 | int thread_num; |
bfec99b2 PA |
11319 | }; |
11320 | ||
43ff13b4 | 11321 | /* This function is called by fetch_inferior_event via the |
4a64f543 | 11322 | cmd_continuation pointer, to complete the until command. It takes |
43ff13b4 | 11323 | care of cleaning up the temporary breakpoints set up by the until |
4a64f543 | 11324 | command. */ |
c2c6d25f | 11325 | static void |
fa4cd53f | 11326 | until_break_command_continuation (void *arg, int err) |
43ff13b4 | 11327 | { |
bfec99b2 PA |
11328 | struct until_break_command_continuation_args *a = arg; |
11329 | ||
11330 | delete_breakpoint (a->breakpoint); | |
11331 | if (a->breakpoint2) | |
11332 | delete_breakpoint (a->breakpoint2); | |
186c406b | 11333 | delete_longjmp_breakpoint (a->thread_num); |
43ff13b4 JM |
11334 | } |
11335 | ||
c906108c | 11336 | void |
ae66c1fc | 11337 | until_break_command (char *arg, int from_tty, int anywhere) |
c906108c SS |
11338 | { |
11339 | struct symtabs_and_lines sals; | |
11340 | struct symtab_and_line sal; | |
8556afb4 PA |
11341 | struct frame_info *frame; |
11342 | struct gdbarch *frame_gdbarch; | |
11343 | struct frame_id stack_frame_id; | |
11344 | struct frame_id caller_frame_id; | |
c906108c | 11345 | struct breakpoint *breakpoint; |
f107f563 | 11346 | struct breakpoint *breakpoint2 = NULL; |
c906108c | 11347 | struct cleanup *old_chain; |
186c406b TT |
11348 | int thread; |
11349 | struct thread_info *tp; | |
c906108c SS |
11350 | |
11351 | clear_proceed_status (); | |
11352 | ||
11353 | /* Set a breakpoint where the user wants it and at return from | |
4a64f543 | 11354 | this function. */ |
c5aa993b | 11355 | |
1bfeeb0f | 11356 | if (last_displayed_sal_is_valid ()) |
f8eba3c6 | 11357 | sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE, |
1bfeeb0f | 11358 | get_last_displayed_symtab (), |
f8eba3c6 | 11359 | get_last_displayed_line ()); |
c906108c | 11360 | else |
f8eba3c6 TT |
11361 | sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE, |
11362 | (struct symtab *) NULL, 0); | |
c5aa993b | 11363 | |
c906108c | 11364 | if (sals.nelts != 1) |
8a3fe4f8 | 11365 | error (_("Couldn't get information on specified line.")); |
c5aa993b | 11366 | |
c906108c | 11367 | sal = sals.sals[0]; |
4a64f543 | 11368 | xfree (sals.sals); /* malloc'd, so freed. */ |
c5aa993b | 11369 | |
c906108c | 11370 | if (*arg) |
8a3fe4f8 | 11371 | error (_("Junk at end of arguments.")); |
c5aa993b | 11372 | |
c906108c | 11373 | resolve_sal_pc (&sal); |
c5aa993b | 11374 | |
186c406b TT |
11375 | tp = inferior_thread (); |
11376 | thread = tp->num; | |
11377 | ||
883bc8d1 PA |
11378 | old_chain = make_cleanup (null_cleanup, NULL); |
11379 | ||
8556afb4 PA |
11380 | /* Note linespec handling above invalidates the frame chain. |
11381 | Installing a breakpoint also invalidates the frame chain (as it | |
11382 | may need to switch threads), so do any frame handling before | |
11383 | that. */ | |
11384 | ||
11385 | frame = get_selected_frame (NULL); | |
11386 | frame_gdbarch = get_frame_arch (frame); | |
11387 | stack_frame_id = get_stack_frame_id (frame); | |
11388 | caller_frame_id = frame_unwind_caller_id (frame); | |
883bc8d1 | 11389 | |
ae66c1fc EZ |
11390 | /* Keep within the current frame, or in frames called by the current |
11391 | one. */ | |
edb3359d | 11392 | |
883bc8d1 | 11393 | if (frame_id_p (caller_frame_id)) |
c906108c | 11394 | { |
883bc8d1 PA |
11395 | struct symtab_and_line sal2; |
11396 | ||
11397 | sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0); | |
11398 | sal2.pc = frame_unwind_caller_pc (frame); | |
a6d9a66e | 11399 | breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame), |
883bc8d1 PA |
11400 | sal2, |
11401 | caller_frame_id, | |
f107f563 VP |
11402 | bp_until); |
11403 | make_cleanup_delete_breakpoint (breakpoint2); | |
186c406b | 11404 | |
883bc8d1 | 11405 | set_longjmp_breakpoint (tp, caller_frame_id); |
186c406b | 11406 | make_cleanup (delete_longjmp_breakpoint_cleanup, &thread); |
c906108c | 11407 | } |
c5aa993b | 11408 | |
c70a6932 JK |
11409 | /* set_momentary_breakpoint could invalidate FRAME. */ |
11410 | frame = NULL; | |
11411 | ||
883bc8d1 PA |
11412 | if (anywhere) |
11413 | /* If the user told us to continue until a specified location, | |
11414 | we don't specify a frame at which we need to stop. */ | |
11415 | breakpoint = set_momentary_breakpoint (frame_gdbarch, sal, | |
11416 | null_frame_id, bp_until); | |
11417 | else | |
11418 | /* Otherwise, specify the selected frame, because we want to stop | |
11419 | only at the very same frame. */ | |
11420 | breakpoint = set_momentary_breakpoint (frame_gdbarch, sal, | |
11421 | stack_frame_id, bp_until); | |
11422 | make_cleanup_delete_breakpoint (breakpoint); | |
11423 | ||
a493e3e2 | 11424 | proceed (-1, GDB_SIGNAL_DEFAULT, 0); |
f107f563 | 11425 | |
4a64f543 MS |
11426 | /* If we are running asynchronously, and proceed call above has |
11427 | actually managed to start the target, arrange for breakpoints to | |
11428 | be deleted when the target stops. Otherwise, we're already | |
11429 | stopped and delete breakpoints via cleanup chain. */ | |
f107f563 | 11430 | |
8ea051c5 | 11431 | if (target_can_async_p () && is_running (inferior_ptid)) |
f107f563 | 11432 | { |
bfec99b2 PA |
11433 | struct until_break_command_continuation_args *args; |
11434 | args = xmalloc (sizeof (*args)); | |
f107f563 | 11435 | |
bfec99b2 PA |
11436 | args->breakpoint = breakpoint; |
11437 | args->breakpoint2 = breakpoint2; | |
186c406b | 11438 | args->thread_num = thread; |
f107f563 VP |
11439 | |
11440 | discard_cleanups (old_chain); | |
95e54da7 PA |
11441 | add_continuation (inferior_thread (), |
11442 | until_break_command_continuation, args, | |
604ead4a | 11443 | xfree); |
f107f563 VP |
11444 | } |
11445 | else | |
c5aa993b | 11446 | do_cleanups (old_chain); |
c906108c | 11447 | } |
ae66c1fc | 11448 | |
c906108c SS |
11449 | /* This function attempts to parse an optional "if <cond>" clause |
11450 | from the arg string. If one is not found, it returns NULL. | |
c5aa993b | 11451 | |
c906108c SS |
11452 | Else, it returns a pointer to the condition string. (It does not |
11453 | attempt to evaluate the string against a particular block.) And, | |
11454 | it updates arg to point to the first character following the parsed | |
4a64f543 | 11455 | if clause in the arg string. */ |
53a5351d | 11456 | |
916703c0 | 11457 | char * |
fba45db2 | 11458 | ep_parse_optional_if_clause (char **arg) |
c906108c | 11459 | { |
c5aa993b JM |
11460 | char *cond_string; |
11461 | ||
11462 | if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2])) | |
c906108c | 11463 | return NULL; |
c5aa993b | 11464 | |
4a64f543 | 11465 | /* Skip the "if" keyword. */ |
c906108c | 11466 | (*arg) += 2; |
c5aa993b | 11467 | |
c906108c | 11468 | /* Skip any extra leading whitespace, and record the start of the |
4a64f543 | 11469 | condition string. */ |
e9cafbcc | 11470 | *arg = skip_spaces (*arg); |
c906108c | 11471 | cond_string = *arg; |
c5aa993b | 11472 | |
4a64f543 MS |
11473 | /* Assume that the condition occupies the remainder of the arg |
11474 | string. */ | |
c906108c | 11475 | (*arg) += strlen (cond_string); |
c5aa993b | 11476 | |
c906108c SS |
11477 | return cond_string; |
11478 | } | |
c5aa993b | 11479 | |
c906108c SS |
11480 | /* Commands to deal with catching events, such as signals, exceptions, |
11481 | process start/exit, etc. */ | |
c5aa993b JM |
11482 | |
11483 | typedef enum | |
11484 | { | |
44feb3ce TT |
11485 | catch_fork_temporary, catch_vfork_temporary, |
11486 | catch_fork_permanent, catch_vfork_permanent | |
c5aa993b JM |
11487 | } |
11488 | catch_fork_kind; | |
11489 | ||
c906108c | 11490 | static void |
cc59ec59 MS |
11491 | catch_fork_command_1 (char *arg, int from_tty, |
11492 | struct cmd_list_element *command) | |
c906108c | 11493 | { |
a6d9a66e | 11494 | struct gdbarch *gdbarch = get_current_arch (); |
c5aa993b | 11495 | char *cond_string = NULL; |
44feb3ce TT |
11496 | catch_fork_kind fork_kind; |
11497 | int tempflag; | |
11498 | ||
11499 | fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command); | |
11500 | tempflag = (fork_kind == catch_fork_temporary | |
11501 | || fork_kind == catch_vfork_temporary); | |
c5aa993b | 11502 | |
44feb3ce TT |
11503 | if (!arg) |
11504 | arg = ""; | |
e9cafbcc | 11505 | arg = skip_spaces (arg); |
c5aa993b | 11506 | |
c906108c | 11507 | /* The allowed syntax is: |
c5aa993b JM |
11508 | catch [v]fork |
11509 | catch [v]fork if <cond> | |
11510 | ||
4a64f543 | 11511 | First, check if there's an if clause. */ |
c906108c | 11512 | cond_string = ep_parse_optional_if_clause (&arg); |
c5aa993b | 11513 | |
c906108c | 11514 | if ((*arg != '\0') && !isspace (*arg)) |
8a3fe4f8 | 11515 | error (_("Junk at end of arguments.")); |
c5aa993b | 11516 | |
c906108c | 11517 | /* If this target supports it, create a fork or vfork catchpoint |
4a64f543 | 11518 | and enable reporting of such events. */ |
c5aa993b JM |
11519 | switch (fork_kind) |
11520 | { | |
44feb3ce TT |
11521 | case catch_fork_temporary: |
11522 | case catch_fork_permanent: | |
a6d9a66e | 11523 | create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string, |
ce78b96d | 11524 | &catch_fork_breakpoint_ops); |
c906108c | 11525 | break; |
44feb3ce TT |
11526 | case catch_vfork_temporary: |
11527 | case catch_vfork_permanent: | |
a6d9a66e | 11528 | create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string, |
ce78b96d | 11529 | &catch_vfork_breakpoint_ops); |
c906108c | 11530 | break; |
c5aa993b | 11531 | default: |
8a3fe4f8 | 11532 | error (_("unsupported or unknown fork kind; cannot catch it")); |
c906108c | 11533 | break; |
c5aa993b | 11534 | } |
c906108c SS |
11535 | } |
11536 | ||
11537 | static void | |
cc59ec59 MS |
11538 | catch_exec_command_1 (char *arg, int from_tty, |
11539 | struct cmd_list_element *command) | |
c906108c | 11540 | { |
b4d90040 | 11541 | struct exec_catchpoint *c; |
a6d9a66e | 11542 | struct gdbarch *gdbarch = get_current_arch (); |
44feb3ce | 11543 | int tempflag; |
c5aa993b | 11544 | char *cond_string = NULL; |
c906108c | 11545 | |
44feb3ce TT |
11546 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; |
11547 | ||
11548 | if (!arg) | |
11549 | arg = ""; | |
e9cafbcc | 11550 | arg = skip_spaces (arg); |
c906108c SS |
11551 | |
11552 | /* The allowed syntax is: | |
c5aa993b JM |
11553 | catch exec |
11554 | catch exec if <cond> | |
c906108c | 11555 | |
4a64f543 | 11556 | First, check if there's an if clause. */ |
c906108c SS |
11557 | cond_string = ep_parse_optional_if_clause (&arg); |
11558 | ||
11559 | if ((*arg != '\0') && !isspace (*arg)) | |
8a3fe4f8 | 11560 | error (_("Junk at end of arguments.")); |
c906108c | 11561 | |
b4d90040 PA |
11562 | c = XNEW (struct exec_catchpoint); |
11563 | init_catchpoint (&c->base, gdbarch, tempflag, cond_string, | |
11564 | &catch_exec_breakpoint_ops); | |
11565 | c->exec_pathname = NULL; | |
11566 | ||
3ea46bff | 11567 | install_breakpoint (0, &c->base, 1); |
c906108c | 11568 | } |
c5aa993b | 11569 | |
9ac4176b | 11570 | void |
28010a5d PA |
11571 | init_ada_exception_breakpoint (struct breakpoint *b, |
11572 | struct gdbarch *gdbarch, | |
11573 | struct symtab_and_line sal, | |
11574 | char *addr_string, | |
c0a91b2b | 11575 | const struct breakpoint_ops *ops, |
28010a5d PA |
11576 | int tempflag, |
11577 | int from_tty) | |
f7f9143b | 11578 | { |
f7f9143b JB |
11579 | if (from_tty) |
11580 | { | |
5af949e3 UW |
11581 | struct gdbarch *loc_gdbarch = get_sal_arch (sal); |
11582 | if (!loc_gdbarch) | |
11583 | loc_gdbarch = gdbarch; | |
11584 | ||
6c95b8df PA |
11585 | describe_other_breakpoints (loc_gdbarch, |
11586 | sal.pspace, sal.pc, sal.section, -1); | |
f7f9143b JB |
11587 | /* FIXME: brobecker/2006-12-28: Actually, re-implement a special |
11588 | version for exception catchpoints, because two catchpoints | |
11589 | used for different exception names will use the same address. | |
11590 | In this case, a "breakpoint ... also set at..." warning is | |
4a64f543 | 11591 | unproductive. Besides, the warning phrasing is also a bit |
e5dd4106 | 11592 | inappropriate, we should use the word catchpoint, and tell |
f7f9143b JB |
11593 | the user what type of catchpoint it is. The above is good |
11594 | enough for now, though. */ | |
11595 | } | |
11596 | ||
28010a5d | 11597 | init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops); |
f7f9143b JB |
11598 | |
11599 | b->enable_state = bp_enabled; | |
11600 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
f7f9143b JB |
11601 | b->addr_string = addr_string; |
11602 | b->language = language_ada; | |
f7f9143b JB |
11603 | } |
11604 | ||
a96d9b2e SDJ |
11605 | /* Splits the argument using space as delimiter. Returns an xmalloc'd |
11606 | filter list, or NULL if no filtering is required. */ | |
11607 | static VEC(int) * | |
11608 | catch_syscall_split_args (char *arg) | |
11609 | { | |
11610 | VEC(int) *result = NULL; | |
29d0bb3d | 11611 | struct cleanup *cleanup = make_cleanup (VEC_cleanup (int), &result); |
a96d9b2e SDJ |
11612 | |
11613 | while (*arg != '\0') | |
11614 | { | |
11615 | int i, syscall_number; | |
11616 | char *endptr; | |
11617 | char cur_name[128]; | |
11618 | struct syscall s; | |
11619 | ||
11620 | /* Skip whitespace. */ | |
529480d0 | 11621 | arg = skip_spaces (arg); |
a96d9b2e SDJ |
11622 | |
11623 | for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i) | |
11624 | cur_name[i] = arg[i]; | |
11625 | cur_name[i] = '\0'; | |
11626 | arg += i; | |
11627 | ||
11628 | /* Check if the user provided a syscall name or a number. */ | |
11629 | syscall_number = (int) strtol (cur_name, &endptr, 0); | |
11630 | if (*endptr == '\0') | |
bccd0dd2 | 11631 | get_syscall_by_number (syscall_number, &s); |
a96d9b2e SDJ |
11632 | else |
11633 | { | |
11634 | /* We have a name. Let's check if it's valid and convert it | |
11635 | to a number. */ | |
11636 | get_syscall_by_name (cur_name, &s); | |
11637 | ||
11638 | if (s.number == UNKNOWN_SYSCALL) | |
4a64f543 MS |
11639 | /* Here we have to issue an error instead of a warning, |
11640 | because GDB cannot do anything useful if there's no | |
11641 | syscall number to be caught. */ | |
a96d9b2e SDJ |
11642 | error (_("Unknown syscall name '%s'."), cur_name); |
11643 | } | |
11644 | ||
11645 | /* Ok, it's valid. */ | |
11646 | VEC_safe_push (int, result, s.number); | |
11647 | } | |
11648 | ||
11649 | discard_cleanups (cleanup); | |
11650 | return result; | |
11651 | } | |
11652 | ||
11653 | /* Implement the "catch syscall" command. */ | |
11654 | ||
11655 | static void | |
cc59ec59 MS |
11656 | catch_syscall_command_1 (char *arg, int from_tty, |
11657 | struct cmd_list_element *command) | |
a96d9b2e SDJ |
11658 | { |
11659 | int tempflag; | |
11660 | VEC(int) *filter; | |
11661 | struct syscall s; | |
11662 | struct gdbarch *gdbarch = get_current_arch (); | |
11663 | ||
11664 | /* Checking if the feature if supported. */ | |
11665 | if (gdbarch_get_syscall_number_p (gdbarch) == 0) | |
11666 | error (_("The feature 'catch syscall' is not supported on \ | |
ea666128 | 11667 | this architecture yet.")); |
a96d9b2e SDJ |
11668 | |
11669 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
11670 | ||
e9cafbcc | 11671 | arg = skip_spaces (arg); |
a96d9b2e SDJ |
11672 | |
11673 | /* We need to do this first "dummy" translation in order | |
11674 | to get the syscall XML file loaded or, most important, | |
11675 | to display a warning to the user if there's no XML file | |
11676 | for his/her architecture. */ | |
11677 | get_syscall_by_number (0, &s); | |
11678 | ||
11679 | /* The allowed syntax is: | |
11680 | catch syscall | |
11681 | catch syscall <name | number> [<name | number> ... <name | number>] | |
11682 | ||
11683 | Let's check if there's a syscall name. */ | |
11684 | ||
11685 | if (arg != NULL) | |
11686 | filter = catch_syscall_split_args (arg); | |
11687 | else | |
11688 | filter = NULL; | |
11689 | ||
11690 | create_syscall_event_catchpoint (tempflag, filter, | |
11691 | &catch_syscall_breakpoint_ops); | |
11692 | } | |
11693 | ||
c906108c | 11694 | static void |
fba45db2 | 11695 | catch_command (char *arg, int from_tty) |
c906108c | 11696 | { |
44feb3ce | 11697 | error (_("Catch requires an event name.")); |
c906108c SS |
11698 | } |
11699 | \f | |
11700 | ||
11701 | static void | |
fba45db2 | 11702 | tcatch_command (char *arg, int from_tty) |
c906108c | 11703 | { |
44feb3ce | 11704 | error (_("Catch requires an event name.")); |
c906108c SS |
11705 | } |
11706 | ||
8a2c437b TT |
11707 | /* A qsort comparison function that sorts breakpoints in order. */ |
11708 | ||
11709 | static int | |
11710 | compare_breakpoints (const void *a, const void *b) | |
11711 | { | |
11712 | const breakpoint_p *ba = a; | |
11713 | uintptr_t ua = (uintptr_t) *ba; | |
11714 | const breakpoint_p *bb = b; | |
11715 | uintptr_t ub = (uintptr_t) *bb; | |
11716 | ||
11717 | if ((*ba)->number < (*bb)->number) | |
11718 | return -1; | |
11719 | else if ((*ba)->number > (*bb)->number) | |
11720 | return 1; | |
11721 | ||
11722 | /* Now sort by address, in case we see, e..g, two breakpoints with | |
11723 | the number 0. */ | |
11724 | if (ua < ub) | |
11725 | return -1; | |
94b0e70d | 11726 | return ua > ub ? 1 : 0; |
8a2c437b TT |
11727 | } |
11728 | ||
80f8a6eb | 11729 | /* Delete breakpoints by address or line. */ |
c906108c SS |
11730 | |
11731 | static void | |
fba45db2 | 11732 | clear_command (char *arg, int from_tty) |
c906108c | 11733 | { |
8a2c437b | 11734 | struct breakpoint *b, *prev; |
d6e956e5 VP |
11735 | VEC(breakpoint_p) *found = 0; |
11736 | int ix; | |
c906108c SS |
11737 | int default_match; |
11738 | struct symtabs_and_lines sals; | |
11739 | struct symtab_and_line sal; | |
c906108c | 11740 | int i; |
8a2c437b | 11741 | struct cleanup *cleanups = make_cleanup (null_cleanup, NULL); |
c906108c SS |
11742 | |
11743 | if (arg) | |
11744 | { | |
39cf75f7 DE |
11745 | sals = decode_line_with_current_source (arg, |
11746 | (DECODE_LINE_FUNFIRSTLINE | |
11747 | | DECODE_LINE_LIST_MODE)); | |
cf4ded82 | 11748 | make_cleanup (xfree, sals.sals); |
c906108c SS |
11749 | default_match = 0; |
11750 | } | |
11751 | else | |
11752 | { | |
c5aa993b | 11753 | sals.sals = (struct symtab_and_line *) |
c906108c | 11754 | xmalloc (sizeof (struct symtab_and_line)); |
80f8a6eb | 11755 | make_cleanup (xfree, sals.sals); |
4a64f543 | 11756 | init_sal (&sal); /* Initialize to zeroes. */ |
1bfeeb0f JL |
11757 | |
11758 | /* Set sal's line, symtab, pc, and pspace to the values | |
11759 | corresponding to the last call to print_frame_info. If the | |
11760 | codepoint is not valid, this will set all the fields to 0. */ | |
11761 | get_last_displayed_sal (&sal); | |
c906108c | 11762 | if (sal.symtab == 0) |
8a3fe4f8 | 11763 | error (_("No source file specified.")); |
c906108c SS |
11764 | |
11765 | sals.sals[0] = sal; | |
11766 | sals.nelts = 1; | |
11767 | ||
11768 | default_match = 1; | |
11769 | } | |
11770 | ||
4a64f543 MS |
11771 | /* We don't call resolve_sal_pc here. That's not as bad as it |
11772 | seems, because all existing breakpoints typically have both | |
11773 | file/line and pc set. So, if clear is given file/line, we can | |
11774 | match this to existing breakpoint without obtaining pc at all. | |
ed0616c6 VP |
11775 | |
11776 | We only support clearing given the address explicitly | |
11777 | present in breakpoint table. Say, we've set breakpoint | |
4a64f543 | 11778 | at file:line. There were several PC values for that file:line, |
ed0616c6 | 11779 | due to optimization, all in one block. |
4a64f543 MS |
11780 | |
11781 | We've picked one PC value. If "clear" is issued with another | |
ed0616c6 VP |
11782 | PC corresponding to the same file:line, the breakpoint won't |
11783 | be cleared. We probably can still clear the breakpoint, but | |
11784 | since the other PC value is never presented to user, user | |
11785 | can only find it by guessing, and it does not seem important | |
11786 | to support that. */ | |
11787 | ||
4a64f543 MS |
11788 | /* For each line spec given, delete bps which correspond to it. Do |
11789 | it in two passes, solely to preserve the current behavior that | |
11790 | from_tty is forced true if we delete more than one | |
11791 | breakpoint. */ | |
c906108c | 11792 | |
80f8a6eb | 11793 | found = NULL; |
8a2c437b | 11794 | make_cleanup (VEC_cleanup (breakpoint_p), &found); |
c906108c SS |
11795 | for (i = 0; i < sals.nelts; i++) |
11796 | { | |
05cba821 JK |
11797 | const char *sal_fullname; |
11798 | ||
c906108c | 11799 | /* If exact pc given, clear bpts at that pc. |
c5aa993b JM |
11800 | If line given (pc == 0), clear all bpts on specified line. |
11801 | If defaulting, clear all bpts on default line | |
c906108c | 11802 | or at default pc. |
c5aa993b JM |
11803 | |
11804 | defaulting sal.pc != 0 tests to do | |
11805 | ||
11806 | 0 1 pc | |
11807 | 1 1 pc _and_ line | |
11808 | 0 0 line | |
11809 | 1 0 <can't happen> */ | |
c906108c SS |
11810 | |
11811 | sal = sals.sals[i]; | |
05cba821 JK |
11812 | sal_fullname = (sal.symtab == NULL |
11813 | ? NULL : symtab_to_fullname (sal.symtab)); | |
c906108c | 11814 | |
4a64f543 | 11815 | /* Find all matching breakpoints and add them to 'found'. */ |
d6e956e5 | 11816 | ALL_BREAKPOINTS (b) |
c5aa993b | 11817 | { |
0d381245 | 11818 | int match = 0; |
4a64f543 | 11819 | /* Are we going to delete b? */ |
cc60f2e3 | 11820 | if (b->type != bp_none && !is_watchpoint (b)) |
0d381245 VP |
11821 | { |
11822 | struct bp_location *loc = b->loc; | |
11823 | for (; loc; loc = loc->next) | |
11824 | { | |
f8eba3c6 TT |
11825 | /* If the user specified file:line, don't allow a PC |
11826 | match. This matches historical gdb behavior. */ | |
11827 | int pc_match = (!sal.explicit_line | |
11828 | && sal.pc | |
11829 | && (loc->pspace == sal.pspace) | |
11830 | && (loc->address == sal.pc) | |
11831 | && (!section_is_overlay (loc->section) | |
11832 | || loc->section == sal.section)); | |
4aac40c8 TT |
11833 | int line_match = 0; |
11834 | ||
11835 | if ((default_match || sal.explicit_line) | |
2f202fde | 11836 | && loc->symtab != NULL |
05cba821 | 11837 | && sal_fullname != NULL |
4aac40c8 | 11838 | && sal.pspace == loc->pspace |
05cba821 JK |
11839 | && loc->line_number == sal.line |
11840 | && filename_cmp (symtab_to_fullname (loc->symtab), | |
11841 | sal_fullname) == 0) | |
11842 | line_match = 1; | |
4aac40c8 | 11843 | |
0d381245 VP |
11844 | if (pc_match || line_match) |
11845 | { | |
11846 | match = 1; | |
11847 | break; | |
11848 | } | |
11849 | } | |
11850 | } | |
11851 | ||
11852 | if (match) | |
d6e956e5 | 11853 | VEC_safe_push(breakpoint_p, found, b); |
c906108c | 11854 | } |
80f8a6eb | 11855 | } |
8a2c437b | 11856 | |
80f8a6eb | 11857 | /* Now go thru the 'found' chain and delete them. */ |
d6e956e5 | 11858 | if (VEC_empty(breakpoint_p, found)) |
80f8a6eb MS |
11859 | { |
11860 | if (arg) | |
8a3fe4f8 | 11861 | error (_("No breakpoint at %s."), arg); |
80f8a6eb | 11862 | else |
8a3fe4f8 | 11863 | error (_("No breakpoint at this line.")); |
80f8a6eb | 11864 | } |
c906108c | 11865 | |
8a2c437b TT |
11866 | /* Remove duplicates from the vec. */ |
11867 | qsort (VEC_address (breakpoint_p, found), | |
11868 | VEC_length (breakpoint_p, found), | |
11869 | sizeof (breakpoint_p), | |
11870 | compare_breakpoints); | |
11871 | prev = VEC_index (breakpoint_p, found, 0); | |
11872 | for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix) | |
11873 | { | |
11874 | if (b == prev) | |
11875 | { | |
11876 | VEC_ordered_remove (breakpoint_p, found, ix); | |
11877 | --ix; | |
11878 | } | |
11879 | } | |
11880 | ||
d6e956e5 | 11881 | if (VEC_length(breakpoint_p, found) > 1) |
4a64f543 | 11882 | from_tty = 1; /* Always report if deleted more than one. */ |
80f8a6eb | 11883 | if (from_tty) |
a3f17187 | 11884 | { |
d6e956e5 | 11885 | if (VEC_length(breakpoint_p, found) == 1) |
a3f17187 AC |
11886 | printf_unfiltered (_("Deleted breakpoint ")); |
11887 | else | |
11888 | printf_unfiltered (_("Deleted breakpoints ")); | |
11889 | } | |
d6e956e5 VP |
11890 | |
11891 | for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++) | |
80f8a6eb | 11892 | { |
c5aa993b | 11893 | if (from_tty) |
d6e956e5 VP |
11894 | printf_unfiltered ("%d ", b->number); |
11895 | delete_breakpoint (b); | |
c906108c | 11896 | } |
80f8a6eb MS |
11897 | if (from_tty) |
11898 | putchar_unfiltered ('\n'); | |
8a2c437b TT |
11899 | |
11900 | do_cleanups (cleanups); | |
c906108c SS |
11901 | } |
11902 | \f | |
11903 | /* Delete breakpoint in BS if they are `delete' breakpoints and | |
11904 | all breakpoints that are marked for deletion, whether hit or not. | |
11905 | This is called after any breakpoint is hit, or after errors. */ | |
11906 | ||
11907 | void | |
fba45db2 | 11908 | breakpoint_auto_delete (bpstat bs) |
c906108c | 11909 | { |
35df4500 | 11910 | struct breakpoint *b, *b_tmp; |
c906108c SS |
11911 | |
11912 | for (; bs; bs = bs->next) | |
f431efe5 PA |
11913 | if (bs->breakpoint_at |
11914 | && bs->breakpoint_at->disposition == disp_del | |
c906108c | 11915 | && bs->stop) |
f431efe5 | 11916 | delete_breakpoint (bs->breakpoint_at); |
c906108c | 11917 | |
35df4500 | 11918 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 11919 | { |
b5de0fa7 | 11920 | if (b->disposition == disp_del_at_next_stop) |
c5aa993b JM |
11921 | delete_breakpoint (b); |
11922 | } | |
c906108c SS |
11923 | } |
11924 | ||
4a64f543 MS |
11925 | /* A comparison function for bp_location AP and BP being interfaced to |
11926 | qsort. Sort elements primarily by their ADDRESS (no matter what | |
11927 | does breakpoint_address_is_meaningful say for its OWNER), | |
11928 | secondarily by ordering first bp_permanent OWNERed elements and | |
11929 | terciarily just ensuring the array is sorted stable way despite | |
e5dd4106 | 11930 | qsort being an unstable algorithm. */ |
876fa593 JK |
11931 | |
11932 | static int | |
494cfb0f | 11933 | bp_location_compare (const void *ap, const void *bp) |
876fa593 | 11934 | { |
494cfb0f JK |
11935 | struct bp_location *a = *(void **) ap; |
11936 | struct bp_location *b = *(void **) bp; | |
2bdf28a0 | 11937 | /* A and B come from existing breakpoints having non-NULL OWNER. */ |
876fa593 JK |
11938 | int a_perm = a->owner->enable_state == bp_permanent; |
11939 | int b_perm = b->owner->enable_state == bp_permanent; | |
11940 | ||
11941 | if (a->address != b->address) | |
11942 | return (a->address > b->address) - (a->address < b->address); | |
11943 | ||
dea2aa5f LM |
11944 | /* Sort locations at the same address by their pspace number, keeping |
11945 | locations of the same inferior (in a multi-inferior environment) | |
11946 | grouped. */ | |
11947 | ||
11948 | if (a->pspace->num != b->pspace->num) | |
11949 | return ((a->pspace->num > b->pspace->num) | |
11950 | - (a->pspace->num < b->pspace->num)); | |
11951 | ||
876fa593 JK |
11952 | /* Sort permanent breakpoints first. */ |
11953 | if (a_perm != b_perm) | |
11954 | return (a_perm < b_perm) - (a_perm > b_perm); | |
11955 | ||
c56a97f9 JK |
11956 | /* Make the internal GDB representation stable across GDB runs |
11957 | where A and B memory inside GDB can differ. Breakpoint locations of | |
11958 | the same type at the same address can be sorted in arbitrary order. */ | |
876fa593 JK |
11959 | |
11960 | if (a->owner->number != b->owner->number) | |
c56a97f9 JK |
11961 | return ((a->owner->number > b->owner->number) |
11962 | - (a->owner->number < b->owner->number)); | |
876fa593 JK |
11963 | |
11964 | return (a > b) - (a < b); | |
11965 | } | |
11966 | ||
876fa593 | 11967 | /* Set bp_location_placed_address_before_address_max and |
4a64f543 MS |
11968 | bp_location_shadow_len_after_address_max according to the current |
11969 | content of the bp_location array. */ | |
f7545552 TT |
11970 | |
11971 | static void | |
876fa593 | 11972 | bp_location_target_extensions_update (void) |
f7545552 | 11973 | { |
876fa593 JK |
11974 | struct bp_location *bl, **blp_tmp; |
11975 | ||
11976 | bp_location_placed_address_before_address_max = 0; | |
11977 | bp_location_shadow_len_after_address_max = 0; | |
11978 | ||
11979 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
11980 | { | |
11981 | CORE_ADDR start, end, addr; | |
11982 | ||
11983 | if (!bp_location_has_shadow (bl)) | |
11984 | continue; | |
11985 | ||
11986 | start = bl->target_info.placed_address; | |
11987 | end = start + bl->target_info.shadow_len; | |
11988 | ||
11989 | gdb_assert (bl->address >= start); | |
11990 | addr = bl->address - start; | |
11991 | if (addr > bp_location_placed_address_before_address_max) | |
11992 | bp_location_placed_address_before_address_max = addr; | |
11993 | ||
11994 | /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */ | |
11995 | ||
11996 | gdb_assert (bl->address < end); | |
11997 | addr = end - bl->address; | |
11998 | if (addr > bp_location_shadow_len_after_address_max) | |
11999 | bp_location_shadow_len_after_address_max = addr; | |
12000 | } | |
f7545552 TT |
12001 | } |
12002 | ||
1e4d1764 YQ |
12003 | /* Download tracepoint locations if they haven't been. */ |
12004 | ||
12005 | static void | |
12006 | download_tracepoint_locations (void) | |
12007 | { | |
7ed2c994 | 12008 | struct breakpoint *b; |
1e4d1764 YQ |
12009 | struct cleanup *old_chain; |
12010 | ||
12011 | if (!target_can_download_tracepoint ()) | |
12012 | return; | |
12013 | ||
12014 | old_chain = save_current_space_and_thread (); | |
12015 | ||
7ed2c994 | 12016 | ALL_TRACEPOINTS (b) |
1e4d1764 | 12017 | { |
7ed2c994 | 12018 | struct bp_location *bl; |
1e4d1764 | 12019 | struct tracepoint *t; |
f2a8bc8a | 12020 | int bp_location_downloaded = 0; |
1e4d1764 | 12021 | |
7ed2c994 | 12022 | if ((b->type == bp_fast_tracepoint |
1e4d1764 YQ |
12023 | ? !may_insert_fast_tracepoints |
12024 | : !may_insert_tracepoints)) | |
12025 | continue; | |
12026 | ||
7ed2c994 YQ |
12027 | for (bl = b->loc; bl; bl = bl->next) |
12028 | { | |
12029 | /* In tracepoint, locations are _never_ duplicated, so | |
12030 | should_be_inserted is equivalent to | |
12031 | unduplicated_should_be_inserted. */ | |
12032 | if (!should_be_inserted (bl) || bl->inserted) | |
12033 | continue; | |
1e4d1764 | 12034 | |
7ed2c994 | 12035 | switch_to_program_space_and_thread (bl->pspace); |
1e4d1764 | 12036 | |
7ed2c994 | 12037 | target_download_tracepoint (bl); |
1e4d1764 | 12038 | |
7ed2c994 | 12039 | bl->inserted = 1; |
f2a8bc8a | 12040 | bp_location_downloaded = 1; |
7ed2c994 YQ |
12041 | } |
12042 | t = (struct tracepoint *) b; | |
12043 | t->number_on_target = b->number; | |
f2a8bc8a YQ |
12044 | if (bp_location_downloaded) |
12045 | observer_notify_breakpoint_modified (b); | |
1e4d1764 YQ |
12046 | } |
12047 | ||
12048 | do_cleanups (old_chain); | |
12049 | } | |
12050 | ||
934709f0 PW |
12051 | /* Swap the insertion/duplication state between two locations. */ |
12052 | ||
12053 | static void | |
12054 | swap_insertion (struct bp_location *left, struct bp_location *right) | |
12055 | { | |
12056 | const int left_inserted = left->inserted; | |
12057 | const int left_duplicate = left->duplicate; | |
b775012e | 12058 | const int left_needs_update = left->needs_update; |
934709f0 PW |
12059 | const struct bp_target_info left_target_info = left->target_info; |
12060 | ||
1e4d1764 YQ |
12061 | /* Locations of tracepoints can never be duplicated. */ |
12062 | if (is_tracepoint (left->owner)) | |
12063 | gdb_assert (!left->duplicate); | |
12064 | if (is_tracepoint (right->owner)) | |
12065 | gdb_assert (!right->duplicate); | |
12066 | ||
934709f0 PW |
12067 | left->inserted = right->inserted; |
12068 | left->duplicate = right->duplicate; | |
b775012e | 12069 | left->needs_update = right->needs_update; |
934709f0 PW |
12070 | left->target_info = right->target_info; |
12071 | right->inserted = left_inserted; | |
12072 | right->duplicate = left_duplicate; | |
b775012e | 12073 | right->needs_update = left_needs_update; |
934709f0 PW |
12074 | right->target_info = left_target_info; |
12075 | } | |
12076 | ||
b775012e LM |
12077 | /* Force the re-insertion of the locations at ADDRESS. This is called |
12078 | once a new/deleted/modified duplicate location is found and we are evaluating | |
12079 | conditions on the target's side. Such conditions need to be updated on | |
12080 | the target. */ | |
12081 | ||
12082 | static void | |
12083 | force_breakpoint_reinsertion (struct bp_location *bl) | |
12084 | { | |
12085 | struct bp_location **locp = NULL, **loc2p; | |
12086 | struct bp_location *loc; | |
12087 | CORE_ADDR address = 0; | |
12088 | int pspace_num; | |
12089 | ||
12090 | address = bl->address; | |
12091 | pspace_num = bl->pspace->num; | |
12092 | ||
12093 | /* This is only meaningful if the target is | |
12094 | evaluating conditions and if the user has | |
12095 | opted for condition evaluation on the target's | |
12096 | side. */ | |
12097 | if (gdb_evaluates_breakpoint_condition_p () | |
12098 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
12099 | return; | |
12100 | ||
12101 | /* Flag all breakpoint locations with this address and | |
12102 | the same program space as the location | |
12103 | as "its condition has changed". We need to | |
12104 | update the conditions on the target's side. */ | |
12105 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address) | |
12106 | { | |
12107 | loc = *loc2p; | |
12108 | ||
12109 | if (!is_breakpoint (loc->owner) | |
12110 | || pspace_num != loc->pspace->num) | |
12111 | continue; | |
12112 | ||
12113 | /* Flag the location appropriately. We use a different state to | |
12114 | let everyone know that we already updated the set of locations | |
12115 | with addr bl->address and program space bl->pspace. This is so | |
12116 | we don't have to keep calling these functions just to mark locations | |
12117 | that have already been marked. */ | |
12118 | loc->condition_changed = condition_updated; | |
12119 | ||
12120 | /* Free the agent expression bytecode as well. We will compute | |
12121 | it later on. */ | |
12122 | if (loc->cond_bytecode) | |
12123 | { | |
12124 | free_agent_expr (loc->cond_bytecode); | |
12125 | loc->cond_bytecode = NULL; | |
12126 | } | |
12127 | } | |
12128 | } | |
12129 | ||
4cd9bd08 | 12130 | /* If SHOULD_INSERT is false, do not insert any breakpoint locations |
b60e7edf PA |
12131 | into the inferior, only remove already-inserted locations that no |
12132 | longer should be inserted. Functions that delete a breakpoint or | |
12133 | breakpoints should pass false, so that deleting a breakpoint | |
12134 | doesn't have the side effect of inserting the locations of other | |
12135 | breakpoints that are marked not-inserted, but should_be_inserted | |
12136 | returns true on them. | |
12137 | ||
12138 | This behaviour is useful is situations close to tear-down -- e.g., | |
12139 | after an exec, while the target still has execution, but breakpoint | |
12140 | shadows of the previous executable image should *NOT* be restored | |
12141 | to the new image; or before detaching, where the target still has | |
12142 | execution and wants to delete breakpoints from GDB's lists, and all | |
12143 | breakpoints had already been removed from the inferior. */ | |
12144 | ||
0d381245 | 12145 | static void |
b60e7edf | 12146 | update_global_location_list (int should_insert) |
0d381245 | 12147 | { |
74960c60 | 12148 | struct breakpoint *b; |
876fa593 | 12149 | struct bp_location **locp, *loc; |
f7545552 | 12150 | struct cleanup *cleanups; |
b775012e LM |
12151 | /* Last breakpoint location address that was marked for update. */ |
12152 | CORE_ADDR last_addr = 0; | |
12153 | /* Last breakpoint location program space that was marked for update. */ | |
12154 | int last_pspace_num = -1; | |
f7545552 | 12155 | |
2d134ed3 PA |
12156 | /* Used in the duplicates detection below. When iterating over all |
12157 | bp_locations, points to the first bp_location of a given address. | |
12158 | Breakpoints and watchpoints of different types are never | |
12159 | duplicates of each other. Keep one pointer for each type of | |
12160 | breakpoint/watchpoint, so we only need to loop over all locations | |
12161 | once. */ | |
12162 | struct bp_location *bp_loc_first; /* breakpoint */ | |
12163 | struct bp_location *wp_loc_first; /* hardware watchpoint */ | |
12164 | struct bp_location *awp_loc_first; /* access watchpoint */ | |
12165 | struct bp_location *rwp_loc_first; /* read watchpoint */ | |
876fa593 | 12166 | |
4a64f543 MS |
12167 | /* Saved former bp_location array which we compare against the newly |
12168 | built bp_location from the current state of ALL_BREAKPOINTS. */ | |
876fa593 JK |
12169 | struct bp_location **old_location, **old_locp; |
12170 | unsigned old_location_count; | |
12171 | ||
12172 | old_location = bp_location; | |
12173 | old_location_count = bp_location_count; | |
12174 | bp_location = NULL; | |
12175 | bp_location_count = 0; | |
12176 | cleanups = make_cleanup (xfree, old_location); | |
0d381245 | 12177 | |
74960c60 | 12178 | ALL_BREAKPOINTS (b) |
876fa593 JK |
12179 | for (loc = b->loc; loc; loc = loc->next) |
12180 | bp_location_count++; | |
12181 | ||
12182 | bp_location = xmalloc (sizeof (*bp_location) * bp_location_count); | |
12183 | locp = bp_location; | |
12184 | ALL_BREAKPOINTS (b) | |
12185 | for (loc = b->loc; loc; loc = loc->next) | |
12186 | *locp++ = loc; | |
12187 | qsort (bp_location, bp_location_count, sizeof (*bp_location), | |
494cfb0f | 12188 | bp_location_compare); |
876fa593 JK |
12189 | |
12190 | bp_location_target_extensions_update (); | |
74960c60 | 12191 | |
4a64f543 MS |
12192 | /* Identify bp_location instances that are no longer present in the |
12193 | new list, and therefore should be freed. Note that it's not | |
12194 | necessary that those locations should be removed from inferior -- | |
12195 | if there's another location at the same address (previously | |
12196 | marked as duplicate), we don't need to remove/insert the | |
12197 | location. | |
876fa593 | 12198 | |
4a64f543 MS |
12199 | LOCP is kept in sync with OLD_LOCP, each pointing to the current |
12200 | and former bp_location array state respectively. */ | |
876fa593 JK |
12201 | |
12202 | locp = bp_location; | |
12203 | for (old_locp = old_location; old_locp < old_location + old_location_count; | |
12204 | old_locp++) | |
74960c60 | 12205 | { |
876fa593 | 12206 | struct bp_location *old_loc = *old_locp; |
c7d46a38 | 12207 | struct bp_location **loc2p; |
876fa593 | 12208 | |
e5dd4106 | 12209 | /* Tells if 'old_loc' is found among the new locations. If |
4a64f543 | 12210 | not, we have to free it. */ |
c7d46a38 | 12211 | int found_object = 0; |
20874c92 VP |
12212 | /* Tells if the location should remain inserted in the target. */ |
12213 | int keep_in_target = 0; | |
12214 | int removed = 0; | |
876fa593 | 12215 | |
4a64f543 MS |
12216 | /* Skip LOCP entries which will definitely never be needed. |
12217 | Stop either at or being the one matching OLD_LOC. */ | |
876fa593 | 12218 | while (locp < bp_location + bp_location_count |
c7d46a38 | 12219 | && (*locp)->address < old_loc->address) |
876fa593 | 12220 | locp++; |
c7d46a38 PA |
12221 | |
12222 | for (loc2p = locp; | |
12223 | (loc2p < bp_location + bp_location_count | |
12224 | && (*loc2p)->address == old_loc->address); | |
12225 | loc2p++) | |
12226 | { | |
b775012e LM |
12227 | /* Check if this is a new/duplicated location or a duplicated |
12228 | location that had its condition modified. If so, we want to send | |
12229 | its condition to the target if evaluation of conditions is taking | |
12230 | place there. */ | |
12231 | if ((*loc2p)->condition_changed == condition_modified | |
12232 | && (last_addr != old_loc->address | |
12233 | || last_pspace_num != old_loc->pspace->num)) | |
c7d46a38 | 12234 | { |
b775012e LM |
12235 | force_breakpoint_reinsertion (*loc2p); |
12236 | last_pspace_num = old_loc->pspace->num; | |
c7d46a38 | 12237 | } |
b775012e LM |
12238 | |
12239 | if (*loc2p == old_loc) | |
12240 | found_object = 1; | |
c7d46a38 | 12241 | } |
74960c60 | 12242 | |
b775012e LM |
12243 | /* We have already handled this address, update it so that we don't |
12244 | have to go through updates again. */ | |
12245 | last_addr = old_loc->address; | |
12246 | ||
12247 | /* Target-side condition evaluation: Handle deleted locations. */ | |
12248 | if (!found_object) | |
12249 | force_breakpoint_reinsertion (old_loc); | |
12250 | ||
4a64f543 MS |
12251 | /* If this location is no longer present, and inserted, look if |
12252 | there's maybe a new location at the same address. If so, | |
12253 | mark that one inserted, and don't remove this one. This is | |
12254 | needed so that we don't have a time window where a breakpoint | |
12255 | at certain location is not inserted. */ | |
74960c60 | 12256 | |
876fa593 | 12257 | if (old_loc->inserted) |
0d381245 | 12258 | { |
4a64f543 MS |
12259 | /* If the location is inserted now, we might have to remove |
12260 | it. */ | |
74960c60 | 12261 | |
876fa593 | 12262 | if (found_object && should_be_inserted (old_loc)) |
74960c60 | 12263 | { |
4a64f543 MS |
12264 | /* The location is still present in the location list, |
12265 | and still should be inserted. Don't do anything. */ | |
20874c92 | 12266 | keep_in_target = 1; |
74960c60 VP |
12267 | } |
12268 | else | |
12269 | { | |
b775012e LM |
12270 | /* This location still exists, but it won't be kept in the |
12271 | target since it may have been disabled. We proceed to | |
12272 | remove its target-side condition. */ | |
12273 | ||
4a64f543 MS |
12274 | /* The location is either no longer present, or got |
12275 | disabled. See if there's another location at the | |
12276 | same address, in which case we don't need to remove | |
12277 | this one from the target. */ | |
876fa593 | 12278 | |
2bdf28a0 | 12279 | /* OLD_LOC comes from existing struct breakpoint. */ |
876fa593 JK |
12280 | if (breakpoint_address_is_meaningful (old_loc->owner)) |
12281 | { | |
876fa593 | 12282 | for (loc2p = locp; |
c7d46a38 PA |
12283 | (loc2p < bp_location + bp_location_count |
12284 | && (*loc2p)->address == old_loc->address); | |
876fa593 JK |
12285 | loc2p++) |
12286 | { | |
12287 | struct bp_location *loc2 = *loc2p; | |
12288 | ||
2d134ed3 | 12289 | if (breakpoint_locations_match (loc2, old_loc)) |
c7d46a38 | 12290 | { |
85d721b8 PA |
12291 | /* Read watchpoint locations are switched to |
12292 | access watchpoints, if the former are not | |
12293 | supported, but the latter are. */ | |
12294 | if (is_hardware_watchpoint (old_loc->owner)) | |
12295 | { | |
12296 | gdb_assert (is_hardware_watchpoint (loc2->owner)); | |
12297 | loc2->watchpoint_type = old_loc->watchpoint_type; | |
12298 | } | |
12299 | ||
934709f0 PW |
12300 | /* loc2 is a duplicated location. We need to check |
12301 | if it should be inserted in case it will be | |
12302 | unduplicated. */ | |
12303 | if (loc2 != old_loc | |
12304 | && unduplicated_should_be_inserted (loc2)) | |
c7d46a38 | 12305 | { |
934709f0 | 12306 | swap_insertion (old_loc, loc2); |
c7d46a38 PA |
12307 | keep_in_target = 1; |
12308 | break; | |
12309 | } | |
876fa593 JK |
12310 | } |
12311 | } | |
12312 | } | |
74960c60 VP |
12313 | } |
12314 | ||
20874c92 VP |
12315 | if (!keep_in_target) |
12316 | { | |
876fa593 | 12317 | if (remove_breakpoint (old_loc, mark_uninserted)) |
20874c92 | 12318 | { |
4a64f543 MS |
12319 | /* This is just about all we can do. We could keep |
12320 | this location on the global list, and try to | |
12321 | remove it next time, but there's no particular | |
12322 | reason why we will succeed next time. | |
20874c92 | 12323 | |
4a64f543 MS |
12324 | Note that at this point, old_loc->owner is still |
12325 | valid, as delete_breakpoint frees the breakpoint | |
12326 | only after calling us. */ | |
3e43a32a MS |
12327 | printf_filtered (_("warning: Error removing " |
12328 | "breakpoint %d\n"), | |
876fa593 | 12329 | old_loc->owner->number); |
20874c92 VP |
12330 | } |
12331 | removed = 1; | |
12332 | } | |
0d381245 | 12333 | } |
74960c60 VP |
12334 | |
12335 | if (!found_object) | |
1c5cfe86 | 12336 | { |
db82e815 PA |
12337 | if (removed && non_stop |
12338 | && breakpoint_address_is_meaningful (old_loc->owner) | |
12339 | && !is_hardware_watchpoint (old_loc->owner)) | |
20874c92 | 12340 | { |
db82e815 PA |
12341 | /* This location was removed from the target. In |
12342 | non-stop mode, a race condition is possible where | |
12343 | we've removed a breakpoint, but stop events for that | |
12344 | breakpoint are already queued and will arrive later. | |
12345 | We apply an heuristic to be able to distinguish such | |
12346 | SIGTRAPs from other random SIGTRAPs: we keep this | |
12347 | breakpoint location for a bit, and will retire it | |
12348 | after we see some number of events. The theory here | |
12349 | is that reporting of events should, "on the average", | |
12350 | be fair, so after a while we'll see events from all | |
12351 | threads that have anything of interest, and no longer | |
12352 | need to keep this breakpoint location around. We | |
12353 | don't hold locations forever so to reduce chances of | |
12354 | mistaking a non-breakpoint SIGTRAP for a breakpoint | |
12355 | SIGTRAP. | |
12356 | ||
12357 | The heuristic failing can be disastrous on | |
12358 | decr_pc_after_break targets. | |
12359 | ||
12360 | On decr_pc_after_break targets, like e.g., x86-linux, | |
12361 | if we fail to recognize a late breakpoint SIGTRAP, | |
12362 | because events_till_retirement has reached 0 too | |
12363 | soon, we'll fail to do the PC adjustment, and report | |
12364 | a random SIGTRAP to the user. When the user resumes | |
12365 | the inferior, it will most likely immediately crash | |
2dec564e | 12366 | with SIGILL/SIGBUS/SIGSEGV, or worse, get silently |
db82e815 PA |
12367 | corrupted, because of being resumed e.g., in the |
12368 | middle of a multi-byte instruction, or skipped a | |
12369 | one-byte instruction. This was actually seen happen | |
12370 | on native x86-linux, and should be less rare on | |
12371 | targets that do not support new thread events, like | |
12372 | remote, due to the heuristic depending on | |
12373 | thread_count. | |
12374 | ||
12375 | Mistaking a random SIGTRAP for a breakpoint trap | |
12376 | causes similar symptoms (PC adjustment applied when | |
12377 | it shouldn't), but then again, playing with SIGTRAPs | |
12378 | behind the debugger's back is asking for trouble. | |
12379 | ||
12380 | Since hardware watchpoint traps are always | |
12381 | distinguishable from other traps, so we don't need to | |
12382 | apply keep hardware watchpoint moribund locations | |
12383 | around. We simply always ignore hardware watchpoint | |
12384 | traps we can no longer explain. */ | |
12385 | ||
876fa593 JK |
12386 | old_loc->events_till_retirement = 3 * (thread_count () + 1); |
12387 | old_loc->owner = NULL; | |
20874c92 | 12388 | |
876fa593 | 12389 | VEC_safe_push (bp_location_p, moribund_locations, old_loc); |
1c5cfe86 PA |
12390 | } |
12391 | else | |
f431efe5 PA |
12392 | { |
12393 | old_loc->owner = NULL; | |
12394 | decref_bp_location (&old_loc); | |
12395 | } | |
20874c92 | 12396 | } |
74960c60 | 12397 | } |
1c5cfe86 | 12398 | |
348d480f PA |
12399 | /* Rescan breakpoints at the same address and section, marking the |
12400 | first one as "first" and any others as "duplicates". This is so | |
12401 | that the bpt instruction is only inserted once. If we have a | |
12402 | permanent breakpoint at the same place as BPT, make that one the | |
12403 | official one, and the rest as duplicates. Permanent breakpoints | |
12404 | are sorted first for the same address. | |
12405 | ||
12406 | Do the same for hardware watchpoints, but also considering the | |
12407 | watchpoint's type (regular/access/read) and length. */ | |
12408 | ||
12409 | bp_loc_first = NULL; | |
12410 | wp_loc_first = NULL; | |
12411 | awp_loc_first = NULL; | |
12412 | rwp_loc_first = NULL; | |
12413 | ALL_BP_LOCATIONS (loc, locp) | |
12414 | { | |
12415 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always | |
12416 | non-NULL. */ | |
348d480f | 12417 | struct bp_location **loc_first_p; |
d3fbdd86 | 12418 | b = loc->owner; |
348d480f | 12419 | |
6f380991 | 12420 | if (!unduplicated_should_be_inserted (loc) |
348d480f | 12421 | || !breakpoint_address_is_meaningful (b) |
1e4d1764 YQ |
12422 | /* Don't detect duplicate for tracepoint locations because they are |
12423 | never duplicated. See the comments in field `duplicate' of | |
12424 | `struct bp_location'. */ | |
348d480f | 12425 | || is_tracepoint (b)) |
b775012e LM |
12426 | { |
12427 | /* Clear the condition modification flag. */ | |
12428 | loc->condition_changed = condition_unchanged; | |
12429 | continue; | |
12430 | } | |
348d480f PA |
12431 | |
12432 | /* Permanent breakpoint should always be inserted. */ | |
12433 | if (b->enable_state == bp_permanent && ! loc->inserted) | |
12434 | internal_error (__FILE__, __LINE__, | |
12435 | _("allegedly permanent breakpoint is not " | |
12436 | "actually inserted")); | |
12437 | ||
12438 | if (b->type == bp_hardware_watchpoint) | |
12439 | loc_first_p = &wp_loc_first; | |
12440 | else if (b->type == bp_read_watchpoint) | |
12441 | loc_first_p = &rwp_loc_first; | |
12442 | else if (b->type == bp_access_watchpoint) | |
12443 | loc_first_p = &awp_loc_first; | |
12444 | else | |
12445 | loc_first_p = &bp_loc_first; | |
12446 | ||
12447 | if (*loc_first_p == NULL | |
12448 | || (overlay_debugging && loc->section != (*loc_first_p)->section) | |
12449 | || !breakpoint_locations_match (loc, *loc_first_p)) | |
12450 | { | |
12451 | *loc_first_p = loc; | |
12452 | loc->duplicate = 0; | |
b775012e LM |
12453 | |
12454 | if (is_breakpoint (loc->owner) && loc->condition_changed) | |
12455 | { | |
12456 | loc->needs_update = 1; | |
12457 | /* Clear the condition modification flag. */ | |
12458 | loc->condition_changed = condition_unchanged; | |
12459 | } | |
348d480f PA |
12460 | continue; |
12461 | } | |
12462 | ||
934709f0 PW |
12463 | |
12464 | /* This and the above ensure the invariant that the first location | |
12465 | is not duplicated, and is the inserted one. | |
12466 | All following are marked as duplicated, and are not inserted. */ | |
12467 | if (loc->inserted) | |
12468 | swap_insertion (loc, *loc_first_p); | |
348d480f PA |
12469 | loc->duplicate = 1; |
12470 | ||
b775012e LM |
12471 | /* Clear the condition modification flag. */ |
12472 | loc->condition_changed = condition_unchanged; | |
12473 | ||
348d480f PA |
12474 | if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted |
12475 | && b->enable_state != bp_permanent) | |
12476 | internal_error (__FILE__, __LINE__, | |
12477 | _("another breakpoint was inserted on top of " | |
12478 | "a permanent breakpoint")); | |
12479 | } | |
12480 | ||
b775012e | 12481 | if (breakpoints_always_inserted_mode () |
348d480f | 12482 | && (have_live_inferiors () |
f5656ead | 12483 | || (gdbarch_has_global_breakpoints (target_gdbarch ())))) |
b775012e LM |
12484 | { |
12485 | if (should_insert) | |
12486 | insert_breakpoint_locations (); | |
12487 | else | |
12488 | { | |
12489 | /* Though should_insert is false, we may need to update conditions | |
12490 | on the target's side if it is evaluating such conditions. We | |
12491 | only update conditions for locations that are marked | |
12492 | "needs_update". */ | |
12493 | update_inserted_breakpoint_locations (); | |
12494 | } | |
12495 | } | |
348d480f | 12496 | |
1e4d1764 YQ |
12497 | if (should_insert) |
12498 | download_tracepoint_locations (); | |
12499 | ||
348d480f PA |
12500 | do_cleanups (cleanups); |
12501 | } | |
12502 | ||
12503 | void | |
12504 | breakpoint_retire_moribund (void) | |
12505 | { | |
12506 | struct bp_location *loc; | |
12507 | int ix; | |
12508 | ||
12509 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
12510 | if (--(loc->events_till_retirement) == 0) | |
12511 | { | |
12512 | decref_bp_location (&loc); | |
12513 | VEC_unordered_remove (bp_location_p, moribund_locations, ix); | |
12514 | --ix; | |
12515 | } | |
12516 | } | |
12517 | ||
12518 | static void | |
12519 | update_global_location_list_nothrow (int inserting) | |
12520 | { | |
bfd189b1 | 12521 | volatile struct gdb_exception e; |
348d480f PA |
12522 | |
12523 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
12524 | update_global_location_list (inserting); | |
12525 | } | |
12526 | ||
12527 | /* Clear BKP from a BPS. */ | |
12528 | ||
12529 | static void | |
12530 | bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt) | |
12531 | { | |
12532 | bpstat bs; | |
12533 | ||
12534 | for (bs = bps; bs; bs = bs->next) | |
12535 | if (bs->breakpoint_at == bpt) | |
12536 | { | |
12537 | bs->breakpoint_at = NULL; | |
12538 | bs->old_val = NULL; | |
12539 | /* bs->commands will be freed later. */ | |
12540 | } | |
12541 | } | |
12542 | ||
12543 | /* Callback for iterate_over_threads. */ | |
12544 | static int | |
12545 | bpstat_remove_breakpoint_callback (struct thread_info *th, void *data) | |
12546 | { | |
12547 | struct breakpoint *bpt = data; | |
12548 | ||
12549 | bpstat_remove_bp_location (th->control.stop_bpstat, bpt); | |
12550 | return 0; | |
12551 | } | |
12552 | ||
12553 | /* Helper for breakpoint and tracepoint breakpoint_ops->mention | |
12554 | callbacks. */ | |
12555 | ||
12556 | static void | |
12557 | say_where (struct breakpoint *b) | |
12558 | { | |
12559 | struct value_print_options opts; | |
12560 | ||
12561 | get_user_print_options (&opts); | |
12562 | ||
12563 | /* i18n: cagney/2005-02-11: Below needs to be merged into a | |
12564 | single string. */ | |
12565 | if (b->loc == NULL) | |
12566 | { | |
12567 | printf_filtered (_(" (%s) pending."), b->addr_string); | |
12568 | } | |
12569 | else | |
12570 | { | |
2f202fde | 12571 | if (opts.addressprint || b->loc->symtab == NULL) |
348d480f PA |
12572 | { |
12573 | printf_filtered (" at "); | |
12574 | fputs_filtered (paddress (b->loc->gdbarch, b->loc->address), | |
12575 | gdb_stdout); | |
12576 | } | |
2f202fde | 12577 | if (b->loc->symtab != NULL) |
f8eba3c6 TT |
12578 | { |
12579 | /* If there is a single location, we can print the location | |
12580 | more nicely. */ | |
12581 | if (b->loc->next == NULL) | |
12582 | printf_filtered (": file %s, line %d.", | |
05cba821 JK |
12583 | symtab_to_filename_for_display (b->loc->symtab), |
12584 | b->loc->line_number); | |
f8eba3c6 TT |
12585 | else |
12586 | /* This is not ideal, but each location may have a | |
12587 | different file name, and this at least reflects the | |
12588 | real situation somewhat. */ | |
12589 | printf_filtered (": %s.", b->addr_string); | |
12590 | } | |
348d480f PA |
12591 | |
12592 | if (b->loc->next) | |
12593 | { | |
12594 | struct bp_location *loc = b->loc; | |
12595 | int n = 0; | |
12596 | for (; loc; loc = loc->next) | |
12597 | ++n; | |
12598 | printf_filtered (" (%d locations)", n); | |
12599 | } | |
12600 | } | |
12601 | } | |
12602 | ||
348d480f PA |
12603 | /* Default bp_location_ops methods. */ |
12604 | ||
12605 | static void | |
12606 | bp_location_dtor (struct bp_location *self) | |
12607 | { | |
12608 | xfree (self->cond); | |
b775012e LM |
12609 | if (self->cond_bytecode) |
12610 | free_agent_expr (self->cond_bytecode); | |
348d480f PA |
12611 | xfree (self->function_name); |
12612 | } | |
12613 | ||
12614 | static const struct bp_location_ops bp_location_ops = | |
12615 | { | |
12616 | bp_location_dtor | |
12617 | }; | |
12618 | ||
2060206e PA |
12619 | /* Default breakpoint_ops methods all breakpoint_ops ultimately |
12620 | inherit from. */ | |
348d480f | 12621 | |
2060206e PA |
12622 | static void |
12623 | base_breakpoint_dtor (struct breakpoint *self) | |
348d480f PA |
12624 | { |
12625 | decref_counted_command_line (&self->commands); | |
12626 | xfree (self->cond_string); | |
fb81d016 | 12627 | xfree (self->extra_string); |
348d480f | 12628 | xfree (self->addr_string); |
f8eba3c6 | 12629 | xfree (self->filter); |
348d480f | 12630 | xfree (self->addr_string_range_end); |
348d480f PA |
12631 | } |
12632 | ||
2060206e PA |
12633 | static struct bp_location * |
12634 | base_breakpoint_allocate_location (struct breakpoint *self) | |
348d480f PA |
12635 | { |
12636 | struct bp_location *loc; | |
12637 | ||
12638 | loc = XNEW (struct bp_location); | |
12639 | init_bp_location (loc, &bp_location_ops, self); | |
12640 | return loc; | |
12641 | } | |
12642 | ||
2060206e PA |
12643 | static void |
12644 | base_breakpoint_re_set (struct breakpoint *b) | |
12645 | { | |
12646 | /* Nothing to re-set. */ | |
12647 | } | |
12648 | ||
12649 | #define internal_error_pure_virtual_called() \ | |
12650 | gdb_assert_not_reached ("pure virtual function called") | |
12651 | ||
12652 | static int | |
12653 | base_breakpoint_insert_location (struct bp_location *bl) | |
12654 | { | |
12655 | internal_error_pure_virtual_called (); | |
12656 | } | |
12657 | ||
12658 | static int | |
12659 | base_breakpoint_remove_location (struct bp_location *bl) | |
12660 | { | |
12661 | internal_error_pure_virtual_called (); | |
12662 | } | |
12663 | ||
12664 | static int | |
12665 | base_breakpoint_breakpoint_hit (const struct bp_location *bl, | |
12666 | struct address_space *aspace, | |
09ac7c10 TT |
12667 | CORE_ADDR bp_addr, |
12668 | const struct target_waitstatus *ws) | |
2060206e PA |
12669 | { |
12670 | internal_error_pure_virtual_called (); | |
12671 | } | |
12672 | ||
12673 | static void | |
12674 | base_breakpoint_check_status (bpstat bs) | |
12675 | { | |
12676 | /* Always stop. */ | |
12677 | } | |
12678 | ||
12679 | /* A "works_in_software_mode" breakpoint_ops method that just internal | |
12680 | errors. */ | |
12681 | ||
12682 | static int | |
12683 | base_breakpoint_works_in_software_mode (const struct breakpoint *b) | |
12684 | { | |
12685 | internal_error_pure_virtual_called (); | |
12686 | } | |
12687 | ||
12688 | /* A "resources_needed" breakpoint_ops method that just internal | |
12689 | errors. */ | |
12690 | ||
12691 | static int | |
12692 | base_breakpoint_resources_needed (const struct bp_location *bl) | |
12693 | { | |
12694 | internal_error_pure_virtual_called (); | |
12695 | } | |
12696 | ||
12697 | static enum print_stop_action | |
12698 | base_breakpoint_print_it (bpstat bs) | |
12699 | { | |
12700 | internal_error_pure_virtual_called (); | |
12701 | } | |
12702 | ||
12703 | static void | |
12704 | base_breakpoint_print_one_detail (const struct breakpoint *self, | |
12705 | struct ui_out *uiout) | |
12706 | { | |
12707 | /* nothing */ | |
12708 | } | |
12709 | ||
12710 | static void | |
12711 | base_breakpoint_print_mention (struct breakpoint *b) | |
12712 | { | |
12713 | internal_error_pure_virtual_called (); | |
12714 | } | |
12715 | ||
12716 | static void | |
12717 | base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp) | |
12718 | { | |
12719 | internal_error_pure_virtual_called (); | |
12720 | } | |
12721 | ||
983af33b SDJ |
12722 | static void |
12723 | base_breakpoint_create_sals_from_address (char **arg, | |
12724 | struct linespec_result *canonical, | |
12725 | enum bptype type_wanted, | |
12726 | char *addr_start, | |
12727 | char **copy_arg) | |
12728 | { | |
12729 | internal_error_pure_virtual_called (); | |
12730 | } | |
12731 | ||
12732 | static void | |
12733 | base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12734 | struct linespec_result *c, | |
12735 | struct linespec_sals *lsal, | |
12736 | char *cond_string, | |
e7e0cddf | 12737 | char *extra_string, |
983af33b SDJ |
12738 | enum bptype type_wanted, |
12739 | enum bpdisp disposition, | |
12740 | int thread, | |
12741 | int task, int ignore_count, | |
12742 | const struct breakpoint_ops *o, | |
12743 | int from_tty, int enabled, | |
44f238bb | 12744 | int internal, unsigned flags) |
983af33b SDJ |
12745 | { |
12746 | internal_error_pure_virtual_called (); | |
12747 | } | |
12748 | ||
12749 | static void | |
12750 | base_breakpoint_decode_linespec (struct breakpoint *b, char **s, | |
12751 | struct symtabs_and_lines *sals) | |
12752 | { | |
12753 | internal_error_pure_virtual_called (); | |
12754 | } | |
12755 | ||
ab04a2af TT |
12756 | /* The default 'explains_signal' method. */ |
12757 | ||
12758 | static enum bpstat_signal_value | |
12759 | base_breakpoint_explains_signal (struct breakpoint *b) | |
12760 | { | |
12761 | return BPSTAT_SIGNAL_HIDE; | |
12762 | } | |
12763 | ||
12764 | struct breakpoint_ops base_breakpoint_ops = | |
2060206e PA |
12765 | { |
12766 | base_breakpoint_dtor, | |
12767 | base_breakpoint_allocate_location, | |
12768 | base_breakpoint_re_set, | |
12769 | base_breakpoint_insert_location, | |
12770 | base_breakpoint_remove_location, | |
12771 | base_breakpoint_breakpoint_hit, | |
12772 | base_breakpoint_check_status, | |
12773 | base_breakpoint_resources_needed, | |
12774 | base_breakpoint_works_in_software_mode, | |
12775 | base_breakpoint_print_it, | |
12776 | NULL, | |
12777 | base_breakpoint_print_one_detail, | |
12778 | base_breakpoint_print_mention, | |
983af33b SDJ |
12779 | base_breakpoint_print_recreate, |
12780 | base_breakpoint_create_sals_from_address, | |
12781 | base_breakpoint_create_breakpoints_sal, | |
12782 | base_breakpoint_decode_linespec, | |
ab04a2af | 12783 | base_breakpoint_explains_signal |
2060206e PA |
12784 | }; |
12785 | ||
12786 | /* Default breakpoint_ops methods. */ | |
12787 | ||
12788 | static void | |
348d480f PA |
12789 | bkpt_re_set (struct breakpoint *b) |
12790 | { | |
06edf0c0 PA |
12791 | /* FIXME: is this still reachable? */ |
12792 | if (b->addr_string == NULL) | |
12793 | { | |
12794 | /* Anything without a string can't be re-set. */ | |
348d480f | 12795 | delete_breakpoint (b); |
06edf0c0 | 12796 | return; |
348d480f | 12797 | } |
06edf0c0 PA |
12798 | |
12799 | breakpoint_re_set_default (b); | |
348d480f PA |
12800 | } |
12801 | ||
2060206e | 12802 | static int |
348d480f PA |
12803 | bkpt_insert_location (struct bp_location *bl) |
12804 | { | |
12805 | if (bl->loc_type == bp_loc_hardware_breakpoint) | |
12806 | return target_insert_hw_breakpoint (bl->gdbarch, | |
12807 | &bl->target_info); | |
12808 | else | |
12809 | return target_insert_breakpoint (bl->gdbarch, | |
12810 | &bl->target_info); | |
12811 | } | |
12812 | ||
2060206e | 12813 | static int |
348d480f PA |
12814 | bkpt_remove_location (struct bp_location *bl) |
12815 | { | |
12816 | if (bl->loc_type == bp_loc_hardware_breakpoint) | |
12817 | return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info); | |
12818 | else | |
12819 | return target_remove_breakpoint (bl->gdbarch, &bl->target_info); | |
12820 | } | |
12821 | ||
2060206e | 12822 | static int |
348d480f | 12823 | bkpt_breakpoint_hit (const struct bp_location *bl, |
09ac7c10 TT |
12824 | struct address_space *aspace, CORE_ADDR bp_addr, |
12825 | const struct target_waitstatus *ws) | |
348d480f | 12826 | { |
09ac7c10 | 12827 | if (ws->kind != TARGET_WAITKIND_STOPPED |
a493e3e2 | 12828 | || ws->value.sig != GDB_SIGNAL_TRAP) |
09ac7c10 TT |
12829 | return 0; |
12830 | ||
348d480f PA |
12831 | if (!breakpoint_address_match (bl->pspace->aspace, bl->address, |
12832 | aspace, bp_addr)) | |
12833 | return 0; | |
12834 | ||
12835 | if (overlay_debugging /* unmapped overlay section */ | |
12836 | && section_is_overlay (bl->section) | |
12837 | && !section_is_mapped (bl->section)) | |
12838 | return 0; | |
12839 | ||
12840 | return 1; | |
12841 | } | |
12842 | ||
2060206e | 12843 | static int |
348d480f PA |
12844 | bkpt_resources_needed (const struct bp_location *bl) |
12845 | { | |
12846 | gdb_assert (bl->owner->type == bp_hardware_breakpoint); | |
12847 | ||
12848 | return 1; | |
12849 | } | |
12850 | ||
2060206e | 12851 | static enum print_stop_action |
348d480f PA |
12852 | bkpt_print_it (bpstat bs) |
12853 | { | |
348d480f PA |
12854 | struct breakpoint *b; |
12855 | const struct bp_location *bl; | |
001c8c33 | 12856 | int bp_temp; |
79a45e25 | 12857 | struct ui_out *uiout = current_uiout; |
348d480f PA |
12858 | |
12859 | gdb_assert (bs->bp_location_at != NULL); | |
12860 | ||
12861 | bl = bs->bp_location_at; | |
12862 | b = bs->breakpoint_at; | |
12863 | ||
001c8c33 PA |
12864 | bp_temp = b->disposition == disp_del; |
12865 | if (bl->address != bl->requested_address) | |
12866 | breakpoint_adjustment_warning (bl->requested_address, | |
12867 | bl->address, | |
12868 | b->number, 1); | |
12869 | annotate_breakpoint (b->number); | |
12870 | if (bp_temp) | |
12871 | ui_out_text (uiout, "\nTemporary breakpoint "); | |
12872 | else | |
12873 | ui_out_text (uiout, "\nBreakpoint "); | |
12874 | if (ui_out_is_mi_like_p (uiout)) | |
348d480f | 12875 | { |
001c8c33 PA |
12876 | ui_out_field_string (uiout, "reason", |
12877 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
12878 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
06edf0c0 | 12879 | } |
001c8c33 PA |
12880 | ui_out_field_int (uiout, "bkptno", b->number); |
12881 | ui_out_text (uiout, ", "); | |
06edf0c0 | 12882 | |
001c8c33 | 12883 | return PRINT_SRC_AND_LOC; |
06edf0c0 PA |
12884 | } |
12885 | ||
2060206e | 12886 | static void |
06edf0c0 PA |
12887 | bkpt_print_mention (struct breakpoint *b) |
12888 | { | |
79a45e25 | 12889 | if (ui_out_is_mi_like_p (current_uiout)) |
06edf0c0 PA |
12890 | return; |
12891 | ||
12892 | switch (b->type) | |
12893 | { | |
12894 | case bp_breakpoint: | |
12895 | case bp_gnu_ifunc_resolver: | |
12896 | if (b->disposition == disp_del) | |
12897 | printf_filtered (_("Temporary breakpoint")); | |
12898 | else | |
12899 | printf_filtered (_("Breakpoint")); | |
12900 | printf_filtered (_(" %d"), b->number); | |
12901 | if (b->type == bp_gnu_ifunc_resolver) | |
12902 | printf_filtered (_(" at gnu-indirect-function resolver")); | |
12903 | break; | |
12904 | case bp_hardware_breakpoint: | |
12905 | printf_filtered (_("Hardware assisted breakpoint %d"), b->number); | |
12906 | break; | |
e7e0cddf SS |
12907 | case bp_dprintf: |
12908 | printf_filtered (_("Dprintf %d"), b->number); | |
12909 | break; | |
06edf0c0 PA |
12910 | } |
12911 | ||
12912 | say_where (b); | |
12913 | } | |
12914 | ||
2060206e | 12915 | static void |
06edf0c0 PA |
12916 | bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp) |
12917 | { | |
12918 | if (tp->type == bp_breakpoint && tp->disposition == disp_del) | |
12919 | fprintf_unfiltered (fp, "tbreak"); | |
12920 | else if (tp->type == bp_breakpoint) | |
12921 | fprintf_unfiltered (fp, "break"); | |
12922 | else if (tp->type == bp_hardware_breakpoint | |
12923 | && tp->disposition == disp_del) | |
12924 | fprintf_unfiltered (fp, "thbreak"); | |
12925 | else if (tp->type == bp_hardware_breakpoint) | |
12926 | fprintf_unfiltered (fp, "hbreak"); | |
12927 | else | |
12928 | internal_error (__FILE__, __LINE__, | |
12929 | _("unhandled breakpoint type %d"), (int) tp->type); | |
12930 | ||
2060206e | 12931 | fprintf_unfiltered (fp, " %s", tp->addr_string); |
dd11a36c | 12932 | print_recreate_thread (tp, fp); |
06edf0c0 PA |
12933 | } |
12934 | ||
983af33b SDJ |
12935 | static void |
12936 | bkpt_create_sals_from_address (char **arg, | |
12937 | struct linespec_result *canonical, | |
12938 | enum bptype type_wanted, | |
12939 | char *addr_start, char **copy_arg) | |
12940 | { | |
12941 | create_sals_from_address_default (arg, canonical, type_wanted, | |
12942 | addr_start, copy_arg); | |
12943 | } | |
12944 | ||
12945 | static void | |
12946 | bkpt_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12947 | struct linespec_result *canonical, | |
12948 | struct linespec_sals *lsal, | |
12949 | char *cond_string, | |
e7e0cddf | 12950 | char *extra_string, |
983af33b SDJ |
12951 | enum bptype type_wanted, |
12952 | enum bpdisp disposition, | |
12953 | int thread, | |
12954 | int task, int ignore_count, | |
12955 | const struct breakpoint_ops *ops, | |
12956 | int from_tty, int enabled, | |
44f238bb | 12957 | int internal, unsigned flags) |
983af33b SDJ |
12958 | { |
12959 | create_breakpoints_sal_default (gdbarch, canonical, lsal, | |
e7e0cddf SS |
12960 | cond_string, extra_string, |
12961 | type_wanted, | |
983af33b SDJ |
12962 | disposition, thread, task, |
12963 | ignore_count, ops, from_tty, | |
44f238bb | 12964 | enabled, internal, flags); |
983af33b SDJ |
12965 | } |
12966 | ||
12967 | static void | |
12968 | bkpt_decode_linespec (struct breakpoint *b, char **s, | |
12969 | struct symtabs_and_lines *sals) | |
12970 | { | |
12971 | decode_linespec_default (b, s, sals); | |
12972 | } | |
12973 | ||
06edf0c0 PA |
12974 | /* Virtual table for internal breakpoints. */ |
12975 | ||
12976 | static void | |
12977 | internal_bkpt_re_set (struct breakpoint *b) | |
12978 | { | |
12979 | switch (b->type) | |
12980 | { | |
12981 | /* Delete overlay event and longjmp master breakpoints; they | |
12982 | will be reset later by breakpoint_re_set. */ | |
12983 | case bp_overlay_event: | |
12984 | case bp_longjmp_master: | |
12985 | case bp_std_terminate_master: | |
12986 | case bp_exception_master: | |
12987 | delete_breakpoint (b); | |
12988 | break; | |
12989 | ||
12990 | /* This breakpoint is special, it's set up when the inferior | |
12991 | starts and we really don't want to touch it. */ | |
12992 | case bp_shlib_event: | |
12993 | ||
12994 | /* Like bp_shlib_event, this breakpoint type is special. Once | |
12995 | it is set up, we do not want to touch it. */ | |
12996 | case bp_thread_event: | |
12997 | break; | |
12998 | } | |
12999 | } | |
13000 | ||
13001 | static void | |
13002 | internal_bkpt_check_status (bpstat bs) | |
13003 | { | |
a9b3a50f PA |
13004 | if (bs->breakpoint_at->type == bp_shlib_event) |
13005 | { | |
13006 | /* If requested, stop when the dynamic linker notifies GDB of | |
13007 | events. This allows the user to get control and place | |
13008 | breakpoints in initializer routines for dynamically loaded | |
13009 | objects (among other things). */ | |
13010 | bs->stop = stop_on_solib_events; | |
13011 | bs->print = stop_on_solib_events; | |
13012 | } | |
13013 | else | |
13014 | bs->stop = 0; | |
06edf0c0 PA |
13015 | } |
13016 | ||
13017 | static enum print_stop_action | |
13018 | internal_bkpt_print_it (bpstat bs) | |
13019 | { | |
06edf0c0 | 13020 | struct breakpoint *b; |
06edf0c0 | 13021 | |
06edf0c0 PA |
13022 | b = bs->breakpoint_at; |
13023 | ||
06edf0c0 PA |
13024 | switch (b->type) |
13025 | { | |
348d480f PA |
13026 | case bp_shlib_event: |
13027 | /* Did we stop because the user set the stop_on_solib_events | |
13028 | variable? (If so, we report this as a generic, "Stopped due | |
13029 | to shlib event" message.) */ | |
edcc5120 | 13030 | print_solib_event (0); |
348d480f PA |
13031 | break; |
13032 | ||
13033 | case bp_thread_event: | |
13034 | /* Not sure how we will get here. | |
13035 | GDB should not stop for these breakpoints. */ | |
13036 | printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
13037 | break; |
13038 | ||
13039 | case bp_overlay_event: | |
13040 | /* By analogy with the thread event, GDB should not stop for these. */ | |
13041 | printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
13042 | break; |
13043 | ||
13044 | case bp_longjmp_master: | |
13045 | /* These should never be enabled. */ | |
13046 | printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
13047 | break; |
13048 | ||
13049 | case bp_std_terminate_master: | |
13050 | /* These should never be enabled. */ | |
13051 | printf_filtered (_("std::terminate Master Breakpoint: " | |
13052 | "gdb should not stop!\n")); | |
348d480f PA |
13053 | break; |
13054 | ||
13055 | case bp_exception_master: | |
13056 | /* These should never be enabled. */ | |
13057 | printf_filtered (_("Exception Master Breakpoint: " | |
13058 | "gdb should not stop!\n")); | |
06edf0c0 PA |
13059 | break; |
13060 | } | |
13061 | ||
001c8c33 | 13062 | return PRINT_NOTHING; |
06edf0c0 PA |
13063 | } |
13064 | ||
13065 | static void | |
13066 | internal_bkpt_print_mention (struct breakpoint *b) | |
13067 | { | |
13068 | /* Nothing to mention. These breakpoints are internal. */ | |
13069 | } | |
13070 | ||
06edf0c0 PA |
13071 | /* Virtual table for momentary breakpoints */ |
13072 | ||
13073 | static void | |
13074 | momentary_bkpt_re_set (struct breakpoint *b) | |
13075 | { | |
13076 | /* Keep temporary breakpoints, which can be encountered when we step | |
13077 | over a dlopen call and SOLIB_ADD is resetting the breakpoints. | |
13078 | Otherwise these should have been blown away via the cleanup chain | |
13079 | or by breakpoint_init_inferior when we rerun the executable. */ | |
13080 | } | |
13081 | ||
13082 | static void | |
13083 | momentary_bkpt_check_status (bpstat bs) | |
13084 | { | |
13085 | /* Nothing. The point of these breakpoints is causing a stop. */ | |
13086 | } | |
13087 | ||
13088 | static enum print_stop_action | |
13089 | momentary_bkpt_print_it (bpstat bs) | |
13090 | { | |
79a45e25 PA |
13091 | struct ui_out *uiout = current_uiout; |
13092 | ||
001c8c33 | 13093 | if (ui_out_is_mi_like_p (uiout)) |
06edf0c0 | 13094 | { |
001c8c33 | 13095 | struct breakpoint *b = bs->breakpoint_at; |
348d480f | 13096 | |
001c8c33 PA |
13097 | switch (b->type) |
13098 | { | |
13099 | case bp_finish: | |
13100 | ui_out_field_string | |
13101 | (uiout, "reason", | |
13102 | async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED)); | |
13103 | break; | |
348d480f | 13104 | |
001c8c33 PA |
13105 | case bp_until: |
13106 | ui_out_field_string | |
13107 | (uiout, "reason", | |
13108 | async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED)); | |
13109 | break; | |
13110 | } | |
348d480f PA |
13111 | } |
13112 | ||
001c8c33 | 13113 | return PRINT_UNKNOWN; |
348d480f PA |
13114 | } |
13115 | ||
06edf0c0 PA |
13116 | static void |
13117 | momentary_bkpt_print_mention (struct breakpoint *b) | |
348d480f | 13118 | { |
06edf0c0 | 13119 | /* Nothing to mention. These breakpoints are internal. */ |
348d480f PA |
13120 | } |
13121 | ||
e2e4d78b JK |
13122 | /* Ensure INITIATING_FRAME is cleared when no such breakpoint exists. |
13123 | ||
13124 | It gets cleared already on the removal of the first one of such placed | |
13125 | breakpoints. This is OK as they get all removed altogether. */ | |
13126 | ||
13127 | static void | |
13128 | longjmp_bkpt_dtor (struct breakpoint *self) | |
13129 | { | |
13130 | struct thread_info *tp = find_thread_id (self->thread); | |
13131 | ||
13132 | if (tp) | |
13133 | tp->initiating_frame = null_frame_id; | |
13134 | ||
13135 | momentary_breakpoint_ops.dtor (self); | |
13136 | } | |
13137 | ||
55aa24fb SDJ |
13138 | /* Specific methods for probe breakpoints. */ |
13139 | ||
13140 | static int | |
13141 | bkpt_probe_insert_location (struct bp_location *bl) | |
13142 | { | |
13143 | int v = bkpt_insert_location (bl); | |
13144 | ||
13145 | if (v == 0) | |
13146 | { | |
13147 | /* The insertion was successful, now let's set the probe's semaphore | |
13148 | if needed. */ | |
13149 | bl->probe->pops->set_semaphore (bl->probe, bl->gdbarch); | |
13150 | } | |
13151 | ||
13152 | return v; | |
13153 | } | |
13154 | ||
13155 | static int | |
13156 | bkpt_probe_remove_location (struct bp_location *bl) | |
13157 | { | |
13158 | /* Let's clear the semaphore before removing the location. */ | |
13159 | bl->probe->pops->clear_semaphore (bl->probe, bl->gdbarch); | |
13160 | ||
13161 | return bkpt_remove_location (bl); | |
13162 | } | |
13163 | ||
13164 | static void | |
13165 | bkpt_probe_create_sals_from_address (char **arg, | |
13166 | struct linespec_result *canonical, | |
13167 | enum bptype type_wanted, | |
13168 | char *addr_start, char **copy_arg) | |
13169 | { | |
13170 | struct linespec_sals lsal; | |
13171 | ||
13172 | lsal.sals = parse_probes (arg, canonical); | |
13173 | ||
13174 | *copy_arg = xstrdup (canonical->addr_string); | |
13175 | lsal.canonical = xstrdup (*copy_arg); | |
13176 | ||
13177 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
13178 | } | |
13179 | ||
13180 | static void | |
13181 | bkpt_probe_decode_linespec (struct breakpoint *b, char **s, | |
13182 | struct symtabs_and_lines *sals) | |
13183 | { | |
13184 | *sals = parse_probes (s, NULL); | |
13185 | if (!sals->sals) | |
13186 | error (_("probe not found")); | |
13187 | } | |
13188 | ||
348d480f | 13189 | /* The breakpoint_ops structure to be used in tracepoints. */ |
876fa593 | 13190 | |
348d480f PA |
13191 | static void |
13192 | tracepoint_re_set (struct breakpoint *b) | |
13193 | { | |
13194 | breakpoint_re_set_default (b); | |
13195 | } | |
876fa593 | 13196 | |
348d480f PA |
13197 | static int |
13198 | tracepoint_breakpoint_hit (const struct bp_location *bl, | |
09ac7c10 TT |
13199 | struct address_space *aspace, CORE_ADDR bp_addr, |
13200 | const struct target_waitstatus *ws) | |
348d480f PA |
13201 | { |
13202 | /* By definition, the inferior does not report stops at | |
13203 | tracepoints. */ | |
13204 | return 0; | |
74960c60 VP |
13205 | } |
13206 | ||
13207 | static void | |
348d480f PA |
13208 | tracepoint_print_one_detail (const struct breakpoint *self, |
13209 | struct ui_out *uiout) | |
74960c60 | 13210 | { |
d9b3f62e PA |
13211 | struct tracepoint *tp = (struct tracepoint *) self; |
13212 | if (tp->static_trace_marker_id) | |
348d480f PA |
13213 | { |
13214 | gdb_assert (self->type == bp_static_tracepoint); | |
cc59ec59 | 13215 | |
348d480f PA |
13216 | ui_out_text (uiout, "\tmarker id is "); |
13217 | ui_out_field_string (uiout, "static-tracepoint-marker-string-id", | |
d9b3f62e | 13218 | tp->static_trace_marker_id); |
348d480f PA |
13219 | ui_out_text (uiout, "\n"); |
13220 | } | |
0d381245 VP |
13221 | } |
13222 | ||
a474d7c2 | 13223 | static void |
348d480f | 13224 | tracepoint_print_mention (struct breakpoint *b) |
a474d7c2 | 13225 | { |
79a45e25 | 13226 | if (ui_out_is_mi_like_p (current_uiout)) |
348d480f | 13227 | return; |
cc59ec59 | 13228 | |
348d480f PA |
13229 | switch (b->type) |
13230 | { | |
13231 | case bp_tracepoint: | |
13232 | printf_filtered (_("Tracepoint")); | |
13233 | printf_filtered (_(" %d"), b->number); | |
13234 | break; | |
13235 | case bp_fast_tracepoint: | |
13236 | printf_filtered (_("Fast tracepoint")); | |
13237 | printf_filtered (_(" %d"), b->number); | |
13238 | break; | |
13239 | case bp_static_tracepoint: | |
13240 | printf_filtered (_("Static tracepoint")); | |
13241 | printf_filtered (_(" %d"), b->number); | |
13242 | break; | |
13243 | default: | |
13244 | internal_error (__FILE__, __LINE__, | |
13245 | _("unhandled tracepoint type %d"), (int) b->type); | |
13246 | } | |
13247 | ||
13248 | say_where (b); | |
a474d7c2 PA |
13249 | } |
13250 | ||
348d480f | 13251 | static void |
d9b3f62e | 13252 | tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp) |
a474d7c2 | 13253 | { |
d9b3f62e PA |
13254 | struct tracepoint *tp = (struct tracepoint *) self; |
13255 | ||
13256 | if (self->type == bp_fast_tracepoint) | |
348d480f | 13257 | fprintf_unfiltered (fp, "ftrace"); |
d9b3f62e | 13258 | if (self->type == bp_static_tracepoint) |
348d480f | 13259 | fprintf_unfiltered (fp, "strace"); |
d9b3f62e | 13260 | else if (self->type == bp_tracepoint) |
348d480f PA |
13261 | fprintf_unfiltered (fp, "trace"); |
13262 | else | |
13263 | internal_error (__FILE__, __LINE__, | |
d9b3f62e | 13264 | _("unhandled tracepoint type %d"), (int) self->type); |
cc59ec59 | 13265 | |
d9b3f62e PA |
13266 | fprintf_unfiltered (fp, " %s", self->addr_string); |
13267 | print_recreate_thread (self, fp); | |
13268 | ||
13269 | if (tp->pass_count) | |
13270 | fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count); | |
a474d7c2 PA |
13271 | } |
13272 | ||
983af33b SDJ |
13273 | static void |
13274 | tracepoint_create_sals_from_address (char **arg, | |
13275 | struct linespec_result *canonical, | |
13276 | enum bptype type_wanted, | |
13277 | char *addr_start, char **copy_arg) | |
13278 | { | |
13279 | create_sals_from_address_default (arg, canonical, type_wanted, | |
13280 | addr_start, copy_arg); | |
13281 | } | |
13282 | ||
13283 | static void | |
13284 | tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch, | |
13285 | struct linespec_result *canonical, | |
13286 | struct linespec_sals *lsal, | |
13287 | char *cond_string, | |
e7e0cddf | 13288 | char *extra_string, |
983af33b SDJ |
13289 | enum bptype type_wanted, |
13290 | enum bpdisp disposition, | |
13291 | int thread, | |
13292 | int task, int ignore_count, | |
13293 | const struct breakpoint_ops *ops, | |
13294 | int from_tty, int enabled, | |
44f238bb | 13295 | int internal, unsigned flags) |
983af33b SDJ |
13296 | { |
13297 | create_breakpoints_sal_default (gdbarch, canonical, lsal, | |
e7e0cddf SS |
13298 | cond_string, extra_string, |
13299 | type_wanted, | |
983af33b SDJ |
13300 | disposition, thread, task, |
13301 | ignore_count, ops, from_tty, | |
44f238bb | 13302 | enabled, internal, flags); |
983af33b SDJ |
13303 | } |
13304 | ||
13305 | static void | |
13306 | tracepoint_decode_linespec (struct breakpoint *b, char **s, | |
13307 | struct symtabs_and_lines *sals) | |
13308 | { | |
13309 | decode_linespec_default (b, s, sals); | |
13310 | } | |
13311 | ||
2060206e | 13312 | struct breakpoint_ops tracepoint_breakpoint_ops; |
348d480f | 13313 | |
55aa24fb SDJ |
13314 | /* The breakpoint_ops structure to be use on tracepoints placed in a |
13315 | static probe. */ | |
13316 | ||
13317 | static void | |
13318 | tracepoint_probe_create_sals_from_address (char **arg, | |
13319 | struct linespec_result *canonical, | |
13320 | enum bptype type_wanted, | |
13321 | char *addr_start, char **copy_arg) | |
13322 | { | |
13323 | /* We use the same method for breakpoint on probes. */ | |
13324 | bkpt_probe_create_sals_from_address (arg, canonical, type_wanted, | |
13325 | addr_start, copy_arg); | |
13326 | } | |
13327 | ||
13328 | static void | |
13329 | tracepoint_probe_decode_linespec (struct breakpoint *b, char **s, | |
13330 | struct symtabs_and_lines *sals) | |
13331 | { | |
13332 | /* We use the same method for breakpoint on probes. */ | |
13333 | bkpt_probe_decode_linespec (b, s, sals); | |
13334 | } | |
13335 | ||
13336 | static struct breakpoint_ops tracepoint_probe_breakpoint_ops; | |
13337 | ||
5c2b4418 HZ |
13338 | /* Dprintf breakpoint_ops methods. */ |
13339 | ||
13340 | static void | |
13341 | dprintf_re_set (struct breakpoint *b) | |
13342 | { | |
13343 | breakpoint_re_set_default (b); | |
13344 | ||
13345 | /* This breakpoint could have been pending, and be resolved now, and | |
13346 | if so, we should now have the extra string. If we don't, the | |
13347 | dprintf was malformed when created, but we couldn't tell because | |
13348 | we can't extract the extra string until the location is | |
13349 | resolved. */ | |
13350 | if (b->loc != NULL && b->extra_string == NULL) | |
13351 | error (_("Format string required")); | |
13352 | ||
13353 | /* 1 - connect to target 1, that can run breakpoint commands. | |
13354 | 2 - create a dprintf, which resolves fine. | |
13355 | 3 - disconnect from target 1 | |
13356 | 4 - connect to target 2, that can NOT run breakpoint commands. | |
13357 | ||
13358 | After steps #3/#4, you'll want the dprintf command list to | |
13359 | be updated, because target 1 and 2 may well return different | |
13360 | answers for target_can_run_breakpoint_commands(). | |
13361 | Given absence of finer grained resetting, we get to do | |
13362 | it all the time. */ | |
13363 | if (b->extra_string != NULL) | |
13364 | update_dprintf_command_list (b); | |
13365 | } | |
13366 | ||
2d9442cc HZ |
13367 | /* Implement the "print_recreate" breakpoint_ops method for dprintf. */ |
13368 | ||
13369 | static void | |
13370 | dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp) | |
13371 | { | |
13372 | fprintf_unfiltered (fp, "dprintf %s%s", tp->addr_string, | |
13373 | tp->extra_string); | |
13374 | print_recreate_thread (tp, fp); | |
13375 | } | |
13376 | ||
983af33b SDJ |
13377 | /* The breakpoint_ops structure to be used on static tracepoints with |
13378 | markers (`-m'). */ | |
13379 | ||
13380 | static void | |
13381 | strace_marker_create_sals_from_address (char **arg, | |
13382 | struct linespec_result *canonical, | |
13383 | enum bptype type_wanted, | |
13384 | char *addr_start, char **copy_arg) | |
13385 | { | |
13386 | struct linespec_sals lsal; | |
13387 | ||
13388 | lsal.sals = decode_static_tracepoint_spec (arg); | |
13389 | ||
13390 | *copy_arg = savestring (addr_start, *arg - addr_start); | |
13391 | ||
13392 | canonical->addr_string = xstrdup (*copy_arg); | |
13393 | lsal.canonical = xstrdup (*copy_arg); | |
13394 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
13395 | } | |
13396 | ||
13397 | static void | |
13398 | strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch, | |
13399 | struct linespec_result *canonical, | |
13400 | struct linespec_sals *lsal, | |
13401 | char *cond_string, | |
e7e0cddf | 13402 | char *extra_string, |
983af33b SDJ |
13403 | enum bptype type_wanted, |
13404 | enum bpdisp disposition, | |
13405 | int thread, | |
13406 | int task, int ignore_count, | |
13407 | const struct breakpoint_ops *ops, | |
13408 | int from_tty, int enabled, | |
44f238bb | 13409 | int internal, unsigned flags) |
983af33b SDJ |
13410 | { |
13411 | int i; | |
13412 | ||
13413 | /* If the user is creating a static tracepoint by marker id | |
13414 | (strace -m MARKER_ID), then store the sals index, so that | |
13415 | breakpoint_re_set can try to match up which of the newly | |
13416 | found markers corresponds to this one, and, don't try to | |
13417 | expand multiple locations for each sal, given than SALS | |
13418 | already should contain all sals for MARKER_ID. */ | |
13419 | ||
13420 | for (i = 0; i < lsal->sals.nelts; ++i) | |
13421 | { | |
13422 | struct symtabs_and_lines expanded; | |
13423 | struct tracepoint *tp; | |
13424 | struct cleanup *old_chain; | |
13425 | char *addr_string; | |
13426 | ||
13427 | expanded.nelts = 1; | |
13428 | expanded.sals = &lsal->sals.sals[i]; | |
13429 | ||
13430 | addr_string = xstrdup (canonical->addr_string); | |
13431 | old_chain = make_cleanup (xfree, addr_string); | |
13432 | ||
13433 | tp = XCNEW (struct tracepoint); | |
13434 | init_breakpoint_sal (&tp->base, gdbarch, expanded, | |
13435 | addr_string, NULL, | |
e7e0cddf SS |
13436 | cond_string, extra_string, |
13437 | type_wanted, disposition, | |
983af33b | 13438 | thread, task, ignore_count, ops, |
44f238bb | 13439 | from_tty, enabled, internal, flags, |
983af33b SDJ |
13440 | canonical->special_display); |
13441 | /* Given that its possible to have multiple markers with | |
13442 | the same string id, if the user is creating a static | |
13443 | tracepoint by marker id ("strace -m MARKER_ID"), then | |
13444 | store the sals index, so that breakpoint_re_set can | |
13445 | try to match up which of the newly found markers | |
13446 | corresponds to this one */ | |
13447 | tp->static_trace_marker_id_idx = i; | |
13448 | ||
13449 | install_breakpoint (internal, &tp->base, 0); | |
13450 | ||
13451 | discard_cleanups (old_chain); | |
13452 | } | |
13453 | } | |
13454 | ||
13455 | static void | |
13456 | strace_marker_decode_linespec (struct breakpoint *b, char **s, | |
13457 | struct symtabs_and_lines *sals) | |
13458 | { | |
13459 | struct tracepoint *tp = (struct tracepoint *) b; | |
13460 | ||
13461 | *sals = decode_static_tracepoint_spec (s); | |
13462 | if (sals->nelts > tp->static_trace_marker_id_idx) | |
13463 | { | |
13464 | sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx]; | |
13465 | sals->nelts = 1; | |
13466 | } | |
13467 | else | |
13468 | error (_("marker %s not found"), tp->static_trace_marker_id); | |
13469 | } | |
13470 | ||
13471 | static struct breakpoint_ops strace_marker_breakpoint_ops; | |
13472 | ||
13473 | static int | |
13474 | strace_marker_p (struct breakpoint *b) | |
13475 | { | |
13476 | return b->ops == &strace_marker_breakpoint_ops; | |
13477 | } | |
13478 | ||
53a5351d | 13479 | /* Delete a breakpoint and clean up all traces of it in the data |
f431efe5 | 13480 | structures. */ |
c906108c SS |
13481 | |
13482 | void | |
fba45db2 | 13483 | delete_breakpoint (struct breakpoint *bpt) |
c906108c | 13484 | { |
52f0bd74 | 13485 | struct breakpoint *b; |
c906108c | 13486 | |
8a3fe4f8 | 13487 | gdb_assert (bpt != NULL); |
c906108c | 13488 | |
4a64f543 MS |
13489 | /* Has this bp already been deleted? This can happen because |
13490 | multiple lists can hold pointers to bp's. bpstat lists are | |
13491 | especial culprits. | |
13492 | ||
13493 | One example of this happening is a watchpoint's scope bp. When | |
13494 | the scope bp triggers, we notice that the watchpoint is out of | |
13495 | scope, and delete it. We also delete its scope bp. But the | |
13496 | scope bp is marked "auto-deleting", and is already on a bpstat. | |
13497 | That bpstat is then checked for auto-deleting bp's, which are | |
13498 | deleted. | |
13499 | ||
13500 | A real solution to this problem might involve reference counts in | |
13501 | bp's, and/or giving them pointers back to their referencing | |
13502 | bpstat's, and teaching delete_breakpoint to only free a bp's | |
13503 | storage when no more references were extent. A cheaper bandaid | |
13504 | was chosen. */ | |
c906108c SS |
13505 | if (bpt->type == bp_none) |
13506 | return; | |
13507 | ||
4a64f543 MS |
13508 | /* At least avoid this stale reference until the reference counting |
13509 | of breakpoints gets resolved. */ | |
d0fb5eae | 13510 | if (bpt->related_breakpoint != bpt) |
e5a0a904 | 13511 | { |
d0fb5eae | 13512 | struct breakpoint *related; |
3a5c3e22 | 13513 | struct watchpoint *w; |
d0fb5eae JK |
13514 | |
13515 | if (bpt->type == bp_watchpoint_scope) | |
3a5c3e22 | 13516 | w = (struct watchpoint *) bpt->related_breakpoint; |
d0fb5eae | 13517 | else if (bpt->related_breakpoint->type == bp_watchpoint_scope) |
3a5c3e22 PA |
13518 | w = (struct watchpoint *) bpt; |
13519 | else | |
13520 | w = NULL; | |
13521 | if (w != NULL) | |
13522 | watchpoint_del_at_next_stop (w); | |
d0fb5eae JK |
13523 | |
13524 | /* Unlink bpt from the bpt->related_breakpoint ring. */ | |
13525 | for (related = bpt; related->related_breakpoint != bpt; | |
13526 | related = related->related_breakpoint); | |
13527 | related->related_breakpoint = bpt->related_breakpoint; | |
13528 | bpt->related_breakpoint = bpt; | |
e5a0a904 JK |
13529 | } |
13530 | ||
a9634178 TJB |
13531 | /* watch_command_1 creates a watchpoint but only sets its number if |
13532 | update_watchpoint succeeds in creating its bp_locations. If there's | |
13533 | a problem in that process, we'll be asked to delete the half-created | |
13534 | watchpoint. In that case, don't announce the deletion. */ | |
13535 | if (bpt->number) | |
13536 | observer_notify_breakpoint_deleted (bpt); | |
c906108c | 13537 | |
c906108c SS |
13538 | if (breakpoint_chain == bpt) |
13539 | breakpoint_chain = bpt->next; | |
13540 | ||
c906108c SS |
13541 | ALL_BREAKPOINTS (b) |
13542 | if (b->next == bpt) | |
c5aa993b JM |
13543 | { |
13544 | b->next = bpt->next; | |
13545 | break; | |
13546 | } | |
c906108c | 13547 | |
f431efe5 PA |
13548 | /* Be sure no bpstat's are pointing at the breakpoint after it's |
13549 | been freed. */ | |
13550 | /* FIXME, how can we find all bpstat's? We just check stop_bpstat | |
e5dd4106 | 13551 | in all threads for now. Note that we cannot just remove bpstats |
f431efe5 PA |
13552 | pointing at bpt from the stop_bpstat list entirely, as breakpoint |
13553 | commands are associated with the bpstat; if we remove it here, | |
13554 | then the later call to bpstat_do_actions (&stop_bpstat); in | |
13555 | event-top.c won't do anything, and temporary breakpoints with | |
13556 | commands won't work. */ | |
13557 | ||
13558 | iterate_over_threads (bpstat_remove_breakpoint_callback, bpt); | |
13559 | ||
4a64f543 MS |
13560 | /* Now that breakpoint is removed from breakpoint list, update the |
13561 | global location list. This will remove locations that used to | |
13562 | belong to this breakpoint. Do this before freeing the breakpoint | |
13563 | itself, since remove_breakpoint looks at location's owner. It | |
13564 | might be better design to have location completely | |
13565 | self-contained, but it's not the case now. */ | |
b60e7edf | 13566 | update_global_location_list (0); |
74960c60 | 13567 | |
348d480f | 13568 | bpt->ops->dtor (bpt); |
4a64f543 MS |
13569 | /* On the chance that someone will soon try again to delete this |
13570 | same bp, we mark it as deleted before freeing its storage. */ | |
c906108c | 13571 | bpt->type = bp_none; |
b8c9b27d | 13572 | xfree (bpt); |
c906108c SS |
13573 | } |
13574 | ||
4d6140d9 AC |
13575 | static void |
13576 | do_delete_breakpoint_cleanup (void *b) | |
13577 | { | |
13578 | delete_breakpoint (b); | |
13579 | } | |
13580 | ||
13581 | struct cleanup * | |
13582 | make_cleanup_delete_breakpoint (struct breakpoint *b) | |
13583 | { | |
13584 | return make_cleanup (do_delete_breakpoint_cleanup, b); | |
13585 | } | |
13586 | ||
51be5b68 PA |
13587 | /* Iterator function to call a user-provided callback function once |
13588 | for each of B and its related breakpoints. */ | |
13589 | ||
13590 | static void | |
13591 | iterate_over_related_breakpoints (struct breakpoint *b, | |
13592 | void (*function) (struct breakpoint *, | |
13593 | void *), | |
13594 | void *data) | |
13595 | { | |
13596 | struct breakpoint *related; | |
13597 | ||
13598 | related = b; | |
13599 | do | |
13600 | { | |
13601 | struct breakpoint *next; | |
13602 | ||
13603 | /* FUNCTION may delete RELATED. */ | |
13604 | next = related->related_breakpoint; | |
13605 | ||
13606 | if (next == related) | |
13607 | { | |
13608 | /* RELATED is the last ring entry. */ | |
13609 | function (related, data); | |
13610 | ||
13611 | /* FUNCTION may have deleted it, so we'd never reach back to | |
13612 | B. There's nothing left to do anyway, so just break | |
13613 | out. */ | |
13614 | break; | |
13615 | } | |
13616 | else | |
13617 | function (related, data); | |
13618 | ||
13619 | related = next; | |
13620 | } | |
13621 | while (related != b); | |
13622 | } | |
95a42b64 TT |
13623 | |
13624 | static void | |
13625 | do_delete_breakpoint (struct breakpoint *b, void *ignore) | |
13626 | { | |
13627 | delete_breakpoint (b); | |
13628 | } | |
13629 | ||
51be5b68 PA |
13630 | /* A callback for map_breakpoint_numbers that calls |
13631 | delete_breakpoint. */ | |
13632 | ||
13633 | static void | |
13634 | do_map_delete_breakpoint (struct breakpoint *b, void *ignore) | |
13635 | { | |
13636 | iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL); | |
13637 | } | |
13638 | ||
c906108c | 13639 | void |
fba45db2 | 13640 | delete_command (char *arg, int from_tty) |
c906108c | 13641 | { |
35df4500 | 13642 | struct breakpoint *b, *b_tmp; |
c906108c | 13643 | |
ea9365bb TT |
13644 | dont_repeat (); |
13645 | ||
c906108c SS |
13646 | if (arg == 0) |
13647 | { | |
13648 | int breaks_to_delete = 0; | |
13649 | ||
46c6471b PA |
13650 | /* Delete all breakpoints if no argument. Do not delete |
13651 | internal breakpoints, these have to be deleted with an | |
13652 | explicit breakpoint number argument. */ | |
c5aa993b | 13653 | ALL_BREAKPOINTS (b) |
46c6471b | 13654 | if (user_breakpoint_p (b)) |
973d738b DJ |
13655 | { |
13656 | breaks_to_delete = 1; | |
13657 | break; | |
13658 | } | |
c906108c SS |
13659 | |
13660 | /* Ask user only if there are some breakpoints to delete. */ | |
13661 | if (!from_tty | |
e2e0b3e5 | 13662 | || (breaks_to_delete && query (_("Delete all breakpoints? ")))) |
c906108c | 13663 | { |
35df4500 | 13664 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
46c6471b | 13665 | if (user_breakpoint_p (b)) |
c5aa993b | 13666 | delete_breakpoint (b); |
c906108c SS |
13667 | } |
13668 | } | |
13669 | else | |
51be5b68 | 13670 | map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL); |
c906108c SS |
13671 | } |
13672 | ||
0d381245 VP |
13673 | static int |
13674 | all_locations_are_pending (struct bp_location *loc) | |
fe3f5fa8 | 13675 | { |
0d381245 | 13676 | for (; loc; loc = loc->next) |
8645ff69 UW |
13677 | if (!loc->shlib_disabled |
13678 | && !loc->pspace->executing_startup) | |
0d381245 VP |
13679 | return 0; |
13680 | return 1; | |
fe3f5fa8 VP |
13681 | } |
13682 | ||
776592bf DE |
13683 | /* Subroutine of update_breakpoint_locations to simplify it. |
13684 | Return non-zero if multiple fns in list LOC have the same name. | |
13685 | Null names are ignored. */ | |
13686 | ||
13687 | static int | |
13688 | ambiguous_names_p (struct bp_location *loc) | |
13689 | { | |
13690 | struct bp_location *l; | |
13691 | htab_t htab = htab_create_alloc (13, htab_hash_string, | |
cc59ec59 MS |
13692 | (int (*) (const void *, |
13693 | const void *)) streq, | |
776592bf DE |
13694 | NULL, xcalloc, xfree); |
13695 | ||
13696 | for (l = loc; l != NULL; l = l->next) | |
13697 | { | |
13698 | const char **slot; | |
13699 | const char *name = l->function_name; | |
13700 | ||
13701 | /* Allow for some names to be NULL, ignore them. */ | |
13702 | if (name == NULL) | |
13703 | continue; | |
13704 | ||
13705 | slot = (const char **) htab_find_slot (htab, (const void *) name, | |
13706 | INSERT); | |
4a64f543 MS |
13707 | /* NOTE: We can assume slot != NULL here because xcalloc never |
13708 | returns NULL. */ | |
776592bf DE |
13709 | if (*slot != NULL) |
13710 | { | |
13711 | htab_delete (htab); | |
13712 | return 1; | |
13713 | } | |
13714 | *slot = name; | |
13715 | } | |
13716 | ||
13717 | htab_delete (htab); | |
13718 | return 0; | |
13719 | } | |
13720 | ||
0fb4aa4b PA |
13721 | /* When symbols change, it probably means the sources changed as well, |
13722 | and it might mean the static tracepoint markers are no longer at | |
13723 | the same address or line numbers they used to be at last we | |
13724 | checked. Losing your static tracepoints whenever you rebuild is | |
13725 | undesirable. This function tries to resync/rematch gdb static | |
13726 | tracepoints with the markers on the target, for static tracepoints | |
13727 | that have not been set by marker id. Static tracepoint that have | |
13728 | been set by marker id are reset by marker id in breakpoint_re_set. | |
13729 | The heuristic is: | |
13730 | ||
13731 | 1) For a tracepoint set at a specific address, look for a marker at | |
13732 | the old PC. If one is found there, assume to be the same marker. | |
13733 | If the name / string id of the marker found is different from the | |
13734 | previous known name, assume that means the user renamed the marker | |
13735 | in the sources, and output a warning. | |
13736 | ||
13737 | 2) For a tracepoint set at a given line number, look for a marker | |
13738 | at the new address of the old line number. If one is found there, | |
13739 | assume to be the same marker. If the name / string id of the | |
13740 | marker found is different from the previous known name, assume that | |
13741 | means the user renamed the marker in the sources, and output a | |
13742 | warning. | |
13743 | ||
13744 | 3) If a marker is no longer found at the same address or line, it | |
13745 | may mean the marker no longer exists. But it may also just mean | |
13746 | the code changed a bit. Maybe the user added a few lines of code | |
13747 | that made the marker move up or down (in line number terms). Ask | |
13748 | the target for info about the marker with the string id as we knew | |
13749 | it. If found, update line number and address in the matching | |
13750 | static tracepoint. This will get confused if there's more than one | |
13751 | marker with the same ID (possible in UST, although unadvised | |
13752 | precisely because it confuses tools). */ | |
13753 | ||
13754 | static struct symtab_and_line | |
13755 | update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal) | |
13756 | { | |
d9b3f62e | 13757 | struct tracepoint *tp = (struct tracepoint *) b; |
0fb4aa4b PA |
13758 | struct static_tracepoint_marker marker; |
13759 | CORE_ADDR pc; | |
0fb4aa4b PA |
13760 | |
13761 | pc = sal.pc; | |
13762 | if (sal.line) | |
13763 | find_line_pc (sal.symtab, sal.line, &pc); | |
13764 | ||
13765 | if (target_static_tracepoint_marker_at (pc, &marker)) | |
13766 | { | |
d9b3f62e | 13767 | if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0) |
0fb4aa4b PA |
13768 | warning (_("static tracepoint %d changed probed marker from %s to %s"), |
13769 | b->number, | |
d9b3f62e | 13770 | tp->static_trace_marker_id, marker.str_id); |
0fb4aa4b | 13771 | |
d9b3f62e PA |
13772 | xfree (tp->static_trace_marker_id); |
13773 | tp->static_trace_marker_id = xstrdup (marker.str_id); | |
0fb4aa4b PA |
13774 | release_static_tracepoint_marker (&marker); |
13775 | ||
13776 | return sal; | |
13777 | } | |
13778 | ||
13779 | /* Old marker wasn't found on target at lineno. Try looking it up | |
13780 | by string ID. */ | |
13781 | if (!sal.explicit_pc | |
13782 | && sal.line != 0 | |
13783 | && sal.symtab != NULL | |
d9b3f62e | 13784 | && tp->static_trace_marker_id != NULL) |
0fb4aa4b PA |
13785 | { |
13786 | VEC(static_tracepoint_marker_p) *markers; | |
13787 | ||
13788 | markers | |
d9b3f62e | 13789 | = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id); |
0fb4aa4b PA |
13790 | |
13791 | if (!VEC_empty(static_tracepoint_marker_p, markers)) | |
13792 | { | |
80e1d417 | 13793 | struct symtab_and_line sal2; |
0fb4aa4b | 13794 | struct symbol *sym; |
80e1d417 | 13795 | struct static_tracepoint_marker *tpmarker; |
79a45e25 | 13796 | struct ui_out *uiout = current_uiout; |
0fb4aa4b | 13797 | |
80e1d417 | 13798 | tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0); |
0fb4aa4b | 13799 | |
d9b3f62e | 13800 | xfree (tp->static_trace_marker_id); |
80e1d417 | 13801 | tp->static_trace_marker_id = xstrdup (tpmarker->str_id); |
0fb4aa4b PA |
13802 | |
13803 | warning (_("marker for static tracepoint %d (%s) not " | |
13804 | "found at previous line number"), | |
d9b3f62e | 13805 | b->number, tp->static_trace_marker_id); |
0fb4aa4b | 13806 | |
80e1d417 | 13807 | init_sal (&sal2); |
0fb4aa4b | 13808 | |
80e1d417 | 13809 | sal2.pc = tpmarker->address; |
0fb4aa4b | 13810 | |
80e1d417 AS |
13811 | sal2 = find_pc_line (tpmarker->address, 0); |
13812 | sym = find_pc_sect_function (tpmarker->address, NULL); | |
0fb4aa4b PA |
13813 | ui_out_text (uiout, "Now in "); |
13814 | if (sym) | |
13815 | { | |
13816 | ui_out_field_string (uiout, "func", | |
13817 | SYMBOL_PRINT_NAME (sym)); | |
13818 | ui_out_text (uiout, " at "); | |
13819 | } | |
05cba821 JK |
13820 | ui_out_field_string (uiout, "file", |
13821 | symtab_to_filename_for_display (sal2.symtab)); | |
0fb4aa4b PA |
13822 | ui_out_text (uiout, ":"); |
13823 | ||
13824 | if (ui_out_is_mi_like_p (uiout)) | |
13825 | { | |
0b0865da | 13826 | const char *fullname = symtab_to_fullname (sal2.symtab); |
0fb4aa4b | 13827 | |
f35a17b5 | 13828 | ui_out_field_string (uiout, "fullname", fullname); |
0fb4aa4b PA |
13829 | } |
13830 | ||
80e1d417 | 13831 | ui_out_field_int (uiout, "line", sal2.line); |
0fb4aa4b PA |
13832 | ui_out_text (uiout, "\n"); |
13833 | ||
80e1d417 | 13834 | b->loc->line_number = sal2.line; |
2f202fde | 13835 | b->loc->symtab = sym != NULL ? sal2.symtab : NULL; |
0fb4aa4b PA |
13836 | |
13837 | xfree (b->addr_string); | |
13838 | b->addr_string = xstrprintf ("%s:%d", | |
05cba821 | 13839 | symtab_to_filename_for_display (sal2.symtab), |
f8eba3c6 | 13840 | b->loc->line_number); |
0fb4aa4b PA |
13841 | |
13842 | /* Might be nice to check if function changed, and warn if | |
13843 | so. */ | |
13844 | ||
80e1d417 | 13845 | release_static_tracepoint_marker (tpmarker); |
0fb4aa4b PA |
13846 | } |
13847 | } | |
13848 | return sal; | |
13849 | } | |
13850 | ||
8d3788bd VP |
13851 | /* Returns 1 iff locations A and B are sufficiently same that |
13852 | we don't need to report breakpoint as changed. */ | |
13853 | ||
13854 | static int | |
13855 | locations_are_equal (struct bp_location *a, struct bp_location *b) | |
13856 | { | |
13857 | while (a && b) | |
13858 | { | |
13859 | if (a->address != b->address) | |
13860 | return 0; | |
13861 | ||
13862 | if (a->shlib_disabled != b->shlib_disabled) | |
13863 | return 0; | |
13864 | ||
13865 | if (a->enabled != b->enabled) | |
13866 | return 0; | |
13867 | ||
13868 | a = a->next; | |
13869 | b = b->next; | |
13870 | } | |
13871 | ||
13872 | if ((a == NULL) != (b == NULL)) | |
13873 | return 0; | |
13874 | ||
13875 | return 1; | |
13876 | } | |
13877 | ||
f1310107 TJB |
13878 | /* Create new breakpoint locations for B (a hardware or software breakpoint) |
13879 | based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is | |
13880 | a ranged breakpoint. */ | |
13881 | ||
0e30163f | 13882 | void |
0d381245 | 13883 | update_breakpoint_locations (struct breakpoint *b, |
f1310107 TJB |
13884 | struct symtabs_and_lines sals, |
13885 | struct symtabs_and_lines sals_end) | |
fe3f5fa8 VP |
13886 | { |
13887 | int i; | |
0d381245 VP |
13888 | struct bp_location *existing_locations = b->loc; |
13889 | ||
f8eba3c6 TT |
13890 | if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1)) |
13891 | { | |
13892 | /* Ranged breakpoints have only one start location and one end | |
13893 | location. */ | |
13894 | b->enable_state = bp_disabled; | |
13895 | update_global_location_list (1); | |
13896 | printf_unfiltered (_("Could not reset ranged breakpoint %d: " | |
13897 | "multiple locations found\n"), | |
13898 | b->number); | |
13899 | return; | |
13900 | } | |
f1310107 | 13901 | |
4a64f543 MS |
13902 | /* If there's no new locations, and all existing locations are |
13903 | pending, don't do anything. This optimizes the common case where | |
13904 | all locations are in the same shared library, that was unloaded. | |
13905 | We'd like to retain the location, so that when the library is | |
13906 | loaded again, we don't loose the enabled/disabled status of the | |
13907 | individual locations. */ | |
0d381245 | 13908 | if (all_locations_are_pending (existing_locations) && sals.nelts == 0) |
fe3f5fa8 VP |
13909 | return; |
13910 | ||
fe3f5fa8 VP |
13911 | b->loc = NULL; |
13912 | ||
0d381245 | 13913 | for (i = 0; i < sals.nelts; ++i) |
fe3f5fa8 | 13914 | { |
f8eba3c6 TT |
13915 | struct bp_location *new_loc; |
13916 | ||
13917 | switch_to_program_space_and_thread (sals.sals[i].pspace); | |
13918 | ||
13919 | new_loc = add_location_to_breakpoint (b, &(sals.sals[i])); | |
fe3f5fa8 | 13920 | |
0d381245 VP |
13921 | /* Reparse conditions, they might contain references to the |
13922 | old symtab. */ | |
13923 | if (b->cond_string != NULL) | |
13924 | { | |
bbc13ae3 | 13925 | const char *s; |
bfd189b1 | 13926 | volatile struct gdb_exception e; |
fe3f5fa8 | 13927 | |
0d381245 VP |
13928 | s = b->cond_string; |
13929 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
13930 | { | |
1bb9788d TT |
13931 | new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc, |
13932 | block_for_pc (sals.sals[i].pc), | |
0d381245 VP |
13933 | 0); |
13934 | } | |
13935 | if (e.reason < 0) | |
13936 | { | |
3e43a32a MS |
13937 | warning (_("failed to reevaluate condition " |
13938 | "for breakpoint %d: %s"), | |
0d381245 VP |
13939 | b->number, e.message); |
13940 | new_loc->enabled = 0; | |
13941 | } | |
13942 | } | |
fe3f5fa8 | 13943 | |
f1310107 TJB |
13944 | if (sals_end.nelts) |
13945 | { | |
13946 | CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]); | |
13947 | ||
13948 | new_loc->length = end - sals.sals[0].pc + 1; | |
13949 | } | |
0d381245 | 13950 | } |
fe3f5fa8 | 13951 | |
514f746b AR |
13952 | /* Update locations of permanent breakpoints. */ |
13953 | if (b->enable_state == bp_permanent) | |
13954 | make_breakpoint_permanent (b); | |
13955 | ||
4a64f543 MS |
13956 | /* If possible, carry over 'disable' status from existing |
13957 | breakpoints. */ | |
0d381245 VP |
13958 | { |
13959 | struct bp_location *e = existing_locations; | |
776592bf DE |
13960 | /* If there are multiple breakpoints with the same function name, |
13961 | e.g. for inline functions, comparing function names won't work. | |
13962 | Instead compare pc addresses; this is just a heuristic as things | |
13963 | may have moved, but in practice it gives the correct answer | |
13964 | often enough until a better solution is found. */ | |
13965 | int have_ambiguous_names = ambiguous_names_p (b->loc); | |
13966 | ||
0d381245 VP |
13967 | for (; e; e = e->next) |
13968 | { | |
13969 | if (!e->enabled && e->function_name) | |
13970 | { | |
13971 | struct bp_location *l = b->loc; | |
776592bf DE |
13972 | if (have_ambiguous_names) |
13973 | { | |
13974 | for (; l; l = l->next) | |
f1310107 | 13975 | if (breakpoint_locations_match (e, l)) |
776592bf DE |
13976 | { |
13977 | l->enabled = 0; | |
13978 | break; | |
13979 | } | |
13980 | } | |
13981 | else | |
13982 | { | |
13983 | for (; l; l = l->next) | |
13984 | if (l->function_name | |
13985 | && strcmp (e->function_name, l->function_name) == 0) | |
13986 | { | |
13987 | l->enabled = 0; | |
13988 | break; | |
13989 | } | |
13990 | } | |
0d381245 VP |
13991 | } |
13992 | } | |
13993 | } | |
fe3f5fa8 | 13994 | |
8d3788bd VP |
13995 | if (!locations_are_equal (existing_locations, b->loc)) |
13996 | observer_notify_breakpoint_modified (b); | |
13997 | ||
b60e7edf | 13998 | update_global_location_list (1); |
fe3f5fa8 VP |
13999 | } |
14000 | ||
ef23e705 TJB |
14001 | /* Find the SaL locations corresponding to the given ADDR_STRING. |
14002 | On return, FOUND will be 1 if any SaL was found, zero otherwise. */ | |
14003 | ||
14004 | static struct symtabs_and_lines | |
14005 | addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found) | |
14006 | { | |
14007 | char *s; | |
02d20e4a | 14008 | struct symtabs_and_lines sals = {0}; |
f8eba3c6 | 14009 | volatile struct gdb_exception e; |
ef23e705 | 14010 | |
983af33b | 14011 | gdb_assert (b->ops != NULL); |
ef23e705 | 14012 | s = addr_string; |
ef23e705 TJB |
14013 | |
14014 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
14015 | { | |
983af33b | 14016 | b->ops->decode_linespec (b, &s, &sals); |
ef23e705 TJB |
14017 | } |
14018 | if (e.reason < 0) | |
14019 | { | |
14020 | int not_found_and_ok = 0; | |
14021 | /* For pending breakpoints, it's expected that parsing will | |
14022 | fail until the right shared library is loaded. User has | |
14023 | already told to create pending breakpoints and don't need | |
14024 | extra messages. If breakpoint is in bp_shlib_disabled | |
14025 | state, then user already saw the message about that | |
14026 | breakpoint being disabled, and don't want to see more | |
14027 | errors. */ | |
58438ac1 | 14028 | if (e.error == NOT_FOUND_ERROR |
ef23e705 TJB |
14029 | && (b->condition_not_parsed |
14030 | || (b->loc && b->loc->shlib_disabled) | |
f8eba3c6 | 14031 | || (b->loc && b->loc->pspace->executing_startup) |
ef23e705 TJB |
14032 | || b->enable_state == bp_disabled)) |
14033 | not_found_and_ok = 1; | |
14034 | ||
14035 | if (!not_found_and_ok) | |
14036 | { | |
14037 | /* We surely don't want to warn about the same breakpoint | |
14038 | 10 times. One solution, implemented here, is disable | |
14039 | the breakpoint on error. Another solution would be to | |
14040 | have separate 'warning emitted' flag. Since this | |
14041 | happens only when a binary has changed, I don't know | |
14042 | which approach is better. */ | |
14043 | b->enable_state = bp_disabled; | |
14044 | throw_exception (e); | |
14045 | } | |
14046 | } | |
14047 | ||
58438ac1 | 14048 | if (e.reason == 0 || e.error != NOT_FOUND_ERROR) |
ef23e705 | 14049 | { |
f8eba3c6 | 14050 | int i; |
ef23e705 | 14051 | |
f8eba3c6 TT |
14052 | for (i = 0; i < sals.nelts; ++i) |
14053 | resolve_sal_pc (&sals.sals[i]); | |
ef23e705 TJB |
14054 | if (b->condition_not_parsed && s && s[0]) |
14055 | { | |
ed1d1739 KS |
14056 | char *cond_string, *extra_string; |
14057 | int thread, task; | |
ef23e705 TJB |
14058 | |
14059 | find_condition_and_thread (s, sals.sals[0].pc, | |
e7e0cddf SS |
14060 | &cond_string, &thread, &task, |
14061 | &extra_string); | |
ef23e705 TJB |
14062 | if (cond_string) |
14063 | b->cond_string = cond_string; | |
14064 | b->thread = thread; | |
14065 | b->task = task; | |
e7e0cddf SS |
14066 | if (extra_string) |
14067 | b->extra_string = extra_string; | |
ef23e705 TJB |
14068 | b->condition_not_parsed = 0; |
14069 | } | |
14070 | ||
983af33b | 14071 | if (b->type == bp_static_tracepoint && !strace_marker_p (b)) |
ef23e705 | 14072 | sals.sals[0] = update_static_tracepoint (b, sals.sals[0]); |
ef23e705 | 14073 | |
58438ac1 TT |
14074 | *found = 1; |
14075 | } | |
14076 | else | |
14077 | *found = 0; | |
ef23e705 TJB |
14078 | |
14079 | return sals; | |
14080 | } | |
14081 | ||
348d480f PA |
14082 | /* The default re_set method, for typical hardware or software |
14083 | breakpoints. Reevaluate the breakpoint and recreate its | |
14084 | locations. */ | |
14085 | ||
14086 | static void | |
28010a5d | 14087 | breakpoint_re_set_default (struct breakpoint *b) |
ef23e705 TJB |
14088 | { |
14089 | int found; | |
f1310107 | 14090 | struct symtabs_and_lines sals, sals_end; |
ef23e705 | 14091 | struct symtabs_and_lines expanded = {0}; |
f1310107 | 14092 | struct symtabs_and_lines expanded_end = {0}; |
ef23e705 TJB |
14093 | |
14094 | sals = addr_string_to_sals (b, b->addr_string, &found); | |
14095 | if (found) | |
14096 | { | |
14097 | make_cleanup (xfree, sals.sals); | |
f8eba3c6 | 14098 | expanded = sals; |
ef23e705 TJB |
14099 | } |
14100 | ||
f1310107 TJB |
14101 | if (b->addr_string_range_end) |
14102 | { | |
14103 | sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found); | |
14104 | if (found) | |
14105 | { | |
14106 | make_cleanup (xfree, sals_end.sals); | |
f8eba3c6 | 14107 | expanded_end = sals_end; |
f1310107 TJB |
14108 | } |
14109 | } | |
14110 | ||
14111 | update_breakpoint_locations (b, expanded, expanded_end); | |
28010a5d PA |
14112 | } |
14113 | ||
983af33b SDJ |
14114 | /* Default method for creating SALs from an address string. It basically |
14115 | calls parse_breakpoint_sals. Return 1 for success, zero for failure. */ | |
14116 | ||
14117 | static void | |
14118 | create_sals_from_address_default (char **arg, | |
14119 | struct linespec_result *canonical, | |
14120 | enum bptype type_wanted, | |
14121 | char *addr_start, char **copy_arg) | |
14122 | { | |
14123 | parse_breakpoint_sals (arg, canonical); | |
14124 | } | |
14125 | ||
14126 | /* Call create_breakpoints_sal for the given arguments. This is the default | |
14127 | function for the `create_breakpoints_sal' method of | |
14128 | breakpoint_ops. */ | |
14129 | ||
14130 | static void | |
14131 | create_breakpoints_sal_default (struct gdbarch *gdbarch, | |
14132 | struct linespec_result *canonical, | |
14133 | struct linespec_sals *lsal, | |
14134 | char *cond_string, | |
e7e0cddf | 14135 | char *extra_string, |
983af33b SDJ |
14136 | enum bptype type_wanted, |
14137 | enum bpdisp disposition, | |
14138 | int thread, | |
14139 | int task, int ignore_count, | |
14140 | const struct breakpoint_ops *ops, | |
14141 | int from_tty, int enabled, | |
44f238bb | 14142 | int internal, unsigned flags) |
983af33b SDJ |
14143 | { |
14144 | create_breakpoints_sal (gdbarch, canonical, cond_string, | |
e7e0cddf | 14145 | extra_string, |
983af33b SDJ |
14146 | type_wanted, disposition, |
14147 | thread, task, ignore_count, ops, from_tty, | |
44f238bb | 14148 | enabled, internal, flags); |
983af33b SDJ |
14149 | } |
14150 | ||
14151 | /* Decode the line represented by S by calling decode_line_full. This is the | |
14152 | default function for the `decode_linespec' method of breakpoint_ops. */ | |
14153 | ||
14154 | static void | |
14155 | decode_linespec_default (struct breakpoint *b, char **s, | |
14156 | struct symtabs_and_lines *sals) | |
14157 | { | |
14158 | struct linespec_result canonical; | |
14159 | ||
14160 | init_linespec_result (&canonical); | |
14161 | decode_line_full (s, DECODE_LINE_FUNFIRSTLINE, | |
14162 | (struct symtab *) NULL, 0, | |
14163 | &canonical, multiple_symbols_all, | |
14164 | b->filter); | |
14165 | ||
14166 | /* We should get 0 or 1 resulting SALs. */ | |
14167 | gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2); | |
14168 | ||
14169 | if (VEC_length (linespec_sals, canonical.sals) > 0) | |
14170 | { | |
14171 | struct linespec_sals *lsal; | |
14172 | ||
14173 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
14174 | *sals = lsal->sals; | |
14175 | /* Arrange it so the destructor does not free the | |
14176 | contents. */ | |
14177 | lsal->sals.sals = NULL; | |
14178 | } | |
14179 | ||
14180 | destroy_linespec_result (&canonical); | |
14181 | } | |
14182 | ||
28010a5d PA |
14183 | /* Prepare the global context for a re-set of breakpoint B. */ |
14184 | ||
14185 | static struct cleanup * | |
14186 | prepare_re_set_context (struct breakpoint *b) | |
14187 | { | |
14188 | struct cleanup *cleanups; | |
14189 | ||
14190 | input_radix = b->input_radix; | |
14191 | cleanups = save_current_space_and_thread (); | |
f8eba3c6 TT |
14192 | if (b->pspace != NULL) |
14193 | switch_to_program_space_and_thread (b->pspace); | |
28010a5d PA |
14194 | set_language (b->language); |
14195 | ||
14196 | return cleanups; | |
ef23e705 TJB |
14197 | } |
14198 | ||
c906108c SS |
14199 | /* Reset a breakpoint given it's struct breakpoint * BINT. |
14200 | The value we return ends up being the return value from catch_errors. | |
14201 | Unused in this case. */ | |
14202 | ||
14203 | static int | |
4efb68b1 | 14204 | breakpoint_re_set_one (void *bint) |
c906108c | 14205 | { |
4a64f543 | 14206 | /* Get past catch_errs. */ |
53a5351d | 14207 | struct breakpoint *b = (struct breakpoint *) bint; |
348d480f | 14208 | struct cleanup *cleanups; |
c906108c | 14209 | |
348d480f PA |
14210 | cleanups = prepare_re_set_context (b); |
14211 | b->ops->re_set (b); | |
14212 | do_cleanups (cleanups); | |
c906108c SS |
14213 | return 0; |
14214 | } | |
14215 | ||
69de3c6a | 14216 | /* Re-set all breakpoints after symbols have been re-loaded. */ |
c906108c | 14217 | void |
69de3c6a | 14218 | breakpoint_re_set (void) |
c906108c | 14219 | { |
35df4500 | 14220 | struct breakpoint *b, *b_tmp; |
c906108c SS |
14221 | enum language save_language; |
14222 | int save_input_radix; | |
6c95b8df | 14223 | struct cleanup *old_chain; |
c5aa993b | 14224 | |
c906108c SS |
14225 | save_language = current_language->la_language; |
14226 | save_input_radix = input_radix; | |
6c95b8df PA |
14227 | old_chain = save_current_program_space (); |
14228 | ||
35df4500 | 14229 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 14230 | { |
4a64f543 | 14231 | /* Format possible error msg. */ |
fe3f5fa8 | 14232 | char *message = xstrprintf ("Error in re-setting breakpoint %d: ", |
9ebf4acf AC |
14233 | b->number); |
14234 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
c5aa993b | 14235 | catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL); |
9ebf4acf | 14236 | do_cleanups (cleanups); |
c5aa993b | 14237 | } |
c906108c SS |
14238 | set_language (save_language); |
14239 | input_radix = save_input_radix; | |
e62c965a | 14240 | |
0756c555 | 14241 | jit_breakpoint_re_set (); |
4efc6507 | 14242 | |
6c95b8df PA |
14243 | do_cleanups (old_chain); |
14244 | ||
af02033e PP |
14245 | create_overlay_event_breakpoint (); |
14246 | create_longjmp_master_breakpoint (); | |
14247 | create_std_terminate_master_breakpoint (); | |
186c406b | 14248 | create_exception_master_breakpoint (); |
c906108c SS |
14249 | } |
14250 | \f | |
c906108c SS |
14251 | /* Reset the thread number of this breakpoint: |
14252 | ||
14253 | - If the breakpoint is for all threads, leave it as-is. | |
4a64f543 | 14254 | - Else, reset it to the current thread for inferior_ptid. */ |
c906108c | 14255 | void |
fba45db2 | 14256 | breakpoint_re_set_thread (struct breakpoint *b) |
c906108c SS |
14257 | { |
14258 | if (b->thread != -1) | |
14259 | { | |
39f77062 KB |
14260 | if (in_thread_list (inferior_ptid)) |
14261 | b->thread = pid_to_thread_id (inferior_ptid); | |
6c95b8df PA |
14262 | |
14263 | /* We're being called after following a fork. The new fork is | |
14264 | selected as current, and unless this was a vfork will have a | |
14265 | different program space from the original thread. Reset that | |
14266 | as well. */ | |
14267 | b->loc->pspace = current_program_space; | |
c906108c SS |
14268 | } |
14269 | } | |
14270 | ||
03ac34d5 MS |
14271 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
14272 | If from_tty is nonzero, it prints a message to that effect, | |
14273 | which ends with a period (no newline). */ | |
14274 | ||
c906108c | 14275 | void |
fba45db2 | 14276 | set_ignore_count (int bptnum, int count, int from_tty) |
c906108c | 14277 | { |
52f0bd74 | 14278 | struct breakpoint *b; |
c906108c SS |
14279 | |
14280 | if (count < 0) | |
14281 | count = 0; | |
14282 | ||
14283 | ALL_BREAKPOINTS (b) | |
14284 | if (b->number == bptnum) | |
c5aa993b | 14285 | { |
d77f58be SS |
14286 | if (is_tracepoint (b)) |
14287 | { | |
14288 | if (from_tty && count != 0) | |
14289 | printf_filtered (_("Ignore count ignored for tracepoint %d."), | |
14290 | bptnum); | |
14291 | return; | |
14292 | } | |
14293 | ||
c5aa993b | 14294 | b->ignore_count = count; |
221ea385 KS |
14295 | if (from_tty) |
14296 | { | |
14297 | if (count == 0) | |
3e43a32a MS |
14298 | printf_filtered (_("Will stop next time " |
14299 | "breakpoint %d is reached."), | |
221ea385 KS |
14300 | bptnum); |
14301 | else if (count == 1) | |
a3f17187 | 14302 | printf_filtered (_("Will ignore next crossing of breakpoint %d."), |
221ea385 KS |
14303 | bptnum); |
14304 | else | |
3e43a32a MS |
14305 | printf_filtered (_("Will ignore next %d " |
14306 | "crossings of breakpoint %d."), | |
221ea385 KS |
14307 | count, bptnum); |
14308 | } | |
8d3788bd | 14309 | observer_notify_breakpoint_modified (b); |
c5aa993b JM |
14310 | return; |
14311 | } | |
c906108c | 14312 | |
8a3fe4f8 | 14313 | error (_("No breakpoint number %d."), bptnum); |
c906108c SS |
14314 | } |
14315 | ||
c906108c SS |
14316 | /* Command to set ignore-count of breakpoint N to COUNT. */ |
14317 | ||
14318 | static void | |
fba45db2 | 14319 | ignore_command (char *args, int from_tty) |
c906108c SS |
14320 | { |
14321 | char *p = args; | |
52f0bd74 | 14322 | int num; |
c906108c SS |
14323 | |
14324 | if (p == 0) | |
e2e0b3e5 | 14325 | error_no_arg (_("a breakpoint number")); |
c5aa993b | 14326 | |
c906108c | 14327 | num = get_number (&p); |
5c44784c | 14328 | if (num == 0) |
8a3fe4f8 | 14329 | error (_("bad breakpoint number: '%s'"), args); |
c906108c | 14330 | if (*p == 0) |
8a3fe4f8 | 14331 | error (_("Second argument (specified ignore-count) is missing.")); |
c906108c SS |
14332 | |
14333 | set_ignore_count (num, | |
14334 | longest_to_int (value_as_long (parse_and_eval (p))), | |
14335 | from_tty); | |
221ea385 KS |
14336 | if (from_tty) |
14337 | printf_filtered ("\n"); | |
c906108c SS |
14338 | } |
14339 | \f | |
14340 | /* Call FUNCTION on each of the breakpoints | |
14341 | whose numbers are given in ARGS. */ | |
14342 | ||
14343 | static void | |
95a42b64 TT |
14344 | map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *, |
14345 | void *), | |
14346 | void *data) | |
c906108c | 14347 | { |
52f0bd74 AC |
14348 | int num; |
14349 | struct breakpoint *b, *tmp; | |
11cf8741 | 14350 | int match; |
197f0a60 | 14351 | struct get_number_or_range_state state; |
c906108c | 14352 | |
197f0a60 | 14353 | if (args == 0) |
e2e0b3e5 | 14354 | error_no_arg (_("one or more breakpoint numbers")); |
c906108c | 14355 | |
197f0a60 TT |
14356 | init_number_or_range (&state, args); |
14357 | ||
14358 | while (!state.finished) | |
c906108c | 14359 | { |
197f0a60 TT |
14360 | char *p = state.string; |
14361 | ||
11cf8741 | 14362 | match = 0; |
c5aa993b | 14363 | |
197f0a60 | 14364 | num = get_number_or_range (&state); |
5c44784c | 14365 | if (num == 0) |
c5aa993b | 14366 | { |
8a3fe4f8 | 14367 | warning (_("bad breakpoint number at or near '%s'"), p); |
5c44784c JM |
14368 | } |
14369 | else | |
14370 | { | |
14371 | ALL_BREAKPOINTS_SAFE (b, tmp) | |
14372 | if (b->number == num) | |
14373 | { | |
11cf8741 | 14374 | match = 1; |
cdac0397 | 14375 | function (b, data); |
11cf8741 | 14376 | break; |
5c44784c | 14377 | } |
11cf8741 | 14378 | if (match == 0) |
a3f17187 | 14379 | printf_unfiltered (_("No breakpoint number %d.\n"), num); |
c5aa993b | 14380 | } |
c906108c SS |
14381 | } |
14382 | } | |
14383 | ||
0d381245 VP |
14384 | static struct bp_location * |
14385 | find_location_by_number (char *number) | |
14386 | { | |
14387 | char *dot = strchr (number, '.'); | |
14388 | char *p1; | |
14389 | int bp_num; | |
14390 | int loc_num; | |
14391 | struct breakpoint *b; | |
14392 | struct bp_location *loc; | |
14393 | ||
14394 | *dot = '\0'; | |
14395 | ||
14396 | p1 = number; | |
197f0a60 | 14397 | bp_num = get_number (&p1); |
0d381245 VP |
14398 | if (bp_num == 0) |
14399 | error (_("Bad breakpoint number '%s'"), number); | |
14400 | ||
14401 | ALL_BREAKPOINTS (b) | |
14402 | if (b->number == bp_num) | |
14403 | { | |
14404 | break; | |
14405 | } | |
14406 | ||
14407 | if (!b || b->number != bp_num) | |
14408 | error (_("Bad breakpoint number '%s'"), number); | |
14409 | ||
14410 | p1 = dot+1; | |
197f0a60 | 14411 | loc_num = get_number (&p1); |
0d381245 VP |
14412 | if (loc_num == 0) |
14413 | error (_("Bad breakpoint location number '%s'"), number); | |
14414 | ||
14415 | --loc_num; | |
14416 | loc = b->loc; | |
14417 | for (;loc_num && loc; --loc_num, loc = loc->next) | |
14418 | ; | |
14419 | if (!loc) | |
14420 | error (_("Bad breakpoint location number '%s'"), dot+1); | |
14421 | ||
14422 | return loc; | |
14423 | } | |
14424 | ||
14425 | ||
1900040c MS |
14426 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
14427 | If from_tty is nonzero, it prints a message to that effect, | |
14428 | which ends with a period (no newline). */ | |
14429 | ||
c906108c | 14430 | void |
fba45db2 | 14431 | disable_breakpoint (struct breakpoint *bpt) |
c906108c SS |
14432 | { |
14433 | /* Never disable a watchpoint scope breakpoint; we want to | |
14434 | hit them when we leave scope so we can delete both the | |
14435 | watchpoint and its scope breakpoint at that time. */ | |
14436 | if (bpt->type == bp_watchpoint_scope) | |
14437 | return; | |
14438 | ||
c2c6d25f | 14439 | /* You can't disable permanent breakpoints. */ |
b5de0fa7 | 14440 | if (bpt->enable_state == bp_permanent) |
c2c6d25f JM |
14441 | return; |
14442 | ||
b5de0fa7 | 14443 | bpt->enable_state = bp_disabled; |
c906108c | 14444 | |
b775012e LM |
14445 | /* Mark breakpoint locations modified. */ |
14446 | mark_breakpoint_modified (bpt); | |
14447 | ||
d248b706 KY |
14448 | if (target_supports_enable_disable_tracepoint () |
14449 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
14450 | { | |
14451 | struct bp_location *location; | |
14452 | ||
14453 | for (location = bpt->loc; location; location = location->next) | |
14454 | target_disable_tracepoint (location); | |
14455 | } | |
14456 | ||
b60e7edf | 14457 | update_global_location_list (0); |
c906108c | 14458 | |
8d3788bd | 14459 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
14460 | } |
14461 | ||
51be5b68 PA |
14462 | /* A callback for iterate_over_related_breakpoints. */ |
14463 | ||
14464 | static void | |
14465 | do_disable_breakpoint (struct breakpoint *b, void *ignore) | |
14466 | { | |
14467 | disable_breakpoint (b); | |
14468 | } | |
14469 | ||
95a42b64 TT |
14470 | /* A callback for map_breakpoint_numbers that calls |
14471 | disable_breakpoint. */ | |
14472 | ||
14473 | static void | |
14474 | do_map_disable_breakpoint (struct breakpoint *b, void *ignore) | |
14475 | { | |
51be5b68 | 14476 | iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL); |
95a42b64 TT |
14477 | } |
14478 | ||
c906108c | 14479 | static void |
fba45db2 | 14480 | disable_command (char *args, int from_tty) |
c906108c | 14481 | { |
c906108c | 14482 | if (args == 0) |
46c6471b PA |
14483 | { |
14484 | struct breakpoint *bpt; | |
14485 | ||
14486 | ALL_BREAKPOINTS (bpt) | |
14487 | if (user_breakpoint_p (bpt)) | |
14488 | disable_breakpoint (bpt); | |
14489 | } | |
0d381245 VP |
14490 | else if (strchr (args, '.')) |
14491 | { | |
14492 | struct bp_location *loc = find_location_by_number (args); | |
14493 | if (loc) | |
d248b706 | 14494 | { |
b775012e LM |
14495 | if (loc->enabled) |
14496 | { | |
14497 | loc->enabled = 0; | |
14498 | mark_breakpoint_location_modified (loc); | |
14499 | } | |
d248b706 KY |
14500 | if (target_supports_enable_disable_tracepoint () |
14501 | && current_trace_status ()->running && loc->owner | |
14502 | && is_tracepoint (loc->owner)) | |
14503 | target_disable_tracepoint (loc); | |
14504 | } | |
b60e7edf | 14505 | update_global_location_list (0); |
0d381245 | 14506 | } |
c906108c | 14507 | else |
95a42b64 | 14508 | map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL); |
c906108c SS |
14509 | } |
14510 | ||
14511 | static void | |
816338b5 SS |
14512 | enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition, |
14513 | int count) | |
c906108c | 14514 | { |
afe38095 | 14515 | int target_resources_ok; |
c906108c SS |
14516 | |
14517 | if (bpt->type == bp_hardware_breakpoint) | |
14518 | { | |
14519 | int i; | |
c5aa993b | 14520 | i = hw_breakpoint_used_count (); |
53a5351d | 14521 | target_resources_ok = |
d92524f1 | 14522 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, |
53a5351d | 14523 | i + 1, 0); |
c906108c | 14524 | if (target_resources_ok == 0) |
8a3fe4f8 | 14525 | error (_("No hardware breakpoint support in the target.")); |
c906108c | 14526 | else if (target_resources_ok < 0) |
8a3fe4f8 | 14527 | error (_("Hardware breakpoints used exceeds limit.")); |
c906108c SS |
14528 | } |
14529 | ||
cc60f2e3 | 14530 | if (is_watchpoint (bpt)) |
c906108c | 14531 | { |
d07205c2 JK |
14532 | /* Initialize it just to avoid a GCC false warning. */ |
14533 | enum enable_state orig_enable_state = 0; | |
bfd189b1 | 14534 | volatile struct gdb_exception e; |
dde02812 ES |
14535 | |
14536 | TRY_CATCH (e, RETURN_MASK_ALL) | |
c906108c | 14537 | { |
3a5c3e22 PA |
14538 | struct watchpoint *w = (struct watchpoint *) bpt; |
14539 | ||
1e718ff1 TJB |
14540 | orig_enable_state = bpt->enable_state; |
14541 | bpt->enable_state = bp_enabled; | |
3a5c3e22 | 14542 | update_watchpoint (w, 1 /* reparse */); |
c906108c | 14543 | } |
dde02812 | 14544 | if (e.reason < 0) |
c5aa993b | 14545 | { |
1e718ff1 | 14546 | bpt->enable_state = orig_enable_state; |
dde02812 ES |
14547 | exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "), |
14548 | bpt->number); | |
14549 | return; | |
c5aa993b | 14550 | } |
c906108c | 14551 | } |
0101ce28 | 14552 | |
b4c291bb KH |
14553 | if (bpt->enable_state != bp_permanent) |
14554 | bpt->enable_state = bp_enabled; | |
d248b706 | 14555 | |
b775012e LM |
14556 | bpt->enable_state = bp_enabled; |
14557 | ||
14558 | /* Mark breakpoint locations modified. */ | |
14559 | mark_breakpoint_modified (bpt); | |
14560 | ||
d248b706 KY |
14561 | if (target_supports_enable_disable_tracepoint () |
14562 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
14563 | { | |
14564 | struct bp_location *location; | |
14565 | ||
14566 | for (location = bpt->loc; location; location = location->next) | |
14567 | target_enable_tracepoint (location); | |
14568 | } | |
14569 | ||
b4c291bb | 14570 | bpt->disposition = disposition; |
816338b5 | 14571 | bpt->enable_count = count; |
b60e7edf | 14572 | update_global_location_list (1); |
9c97429f | 14573 | |
8d3788bd | 14574 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
14575 | } |
14576 | ||
fe3f5fa8 | 14577 | |
c906108c | 14578 | void |
fba45db2 | 14579 | enable_breakpoint (struct breakpoint *bpt) |
c906108c | 14580 | { |
816338b5 | 14581 | enable_breakpoint_disp (bpt, bpt->disposition, 0); |
51be5b68 PA |
14582 | } |
14583 | ||
14584 | static void | |
14585 | do_enable_breakpoint (struct breakpoint *bpt, void *arg) | |
14586 | { | |
14587 | enable_breakpoint (bpt); | |
c906108c SS |
14588 | } |
14589 | ||
95a42b64 TT |
14590 | /* A callback for map_breakpoint_numbers that calls |
14591 | enable_breakpoint. */ | |
14592 | ||
14593 | static void | |
14594 | do_map_enable_breakpoint (struct breakpoint *b, void *ignore) | |
14595 | { | |
51be5b68 | 14596 | iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL); |
95a42b64 TT |
14597 | } |
14598 | ||
c906108c SS |
14599 | /* The enable command enables the specified breakpoints (or all defined |
14600 | breakpoints) so they once again become (or continue to be) effective | |
1272ad14 | 14601 | in stopping the inferior. */ |
c906108c | 14602 | |
c906108c | 14603 | static void |
fba45db2 | 14604 | enable_command (char *args, int from_tty) |
c906108c | 14605 | { |
c906108c | 14606 | if (args == 0) |
46c6471b PA |
14607 | { |
14608 | struct breakpoint *bpt; | |
14609 | ||
14610 | ALL_BREAKPOINTS (bpt) | |
14611 | if (user_breakpoint_p (bpt)) | |
14612 | enable_breakpoint (bpt); | |
14613 | } | |
0d381245 VP |
14614 | else if (strchr (args, '.')) |
14615 | { | |
14616 | struct bp_location *loc = find_location_by_number (args); | |
14617 | if (loc) | |
d248b706 | 14618 | { |
b775012e LM |
14619 | if (!loc->enabled) |
14620 | { | |
14621 | loc->enabled = 1; | |
14622 | mark_breakpoint_location_modified (loc); | |
14623 | } | |
d248b706 KY |
14624 | if (target_supports_enable_disable_tracepoint () |
14625 | && current_trace_status ()->running && loc->owner | |
14626 | && is_tracepoint (loc->owner)) | |
14627 | target_enable_tracepoint (loc); | |
14628 | } | |
b60e7edf | 14629 | update_global_location_list (1); |
0d381245 | 14630 | } |
c906108c | 14631 | else |
95a42b64 | 14632 | map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL); |
c906108c SS |
14633 | } |
14634 | ||
816338b5 SS |
14635 | /* This struct packages up disposition data for application to multiple |
14636 | breakpoints. */ | |
14637 | ||
14638 | struct disp_data | |
14639 | { | |
14640 | enum bpdisp disp; | |
14641 | int count; | |
14642 | }; | |
14643 | ||
c906108c | 14644 | static void |
51be5b68 PA |
14645 | do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg) |
14646 | { | |
816338b5 | 14647 | struct disp_data disp_data = *(struct disp_data *) arg; |
51be5b68 | 14648 | |
816338b5 | 14649 | enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count); |
51be5b68 PA |
14650 | } |
14651 | ||
14652 | static void | |
14653 | do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore) | |
c906108c | 14654 | { |
816338b5 | 14655 | struct disp_data disp = { disp_disable, 1 }; |
51be5b68 PA |
14656 | |
14657 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
14658 | } |
14659 | ||
c906108c | 14660 | static void |
fba45db2 | 14661 | enable_once_command (char *args, int from_tty) |
c906108c | 14662 | { |
51be5b68 | 14663 | map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL); |
c906108c SS |
14664 | } |
14665 | ||
816338b5 SS |
14666 | static void |
14667 | do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr) | |
14668 | { | |
14669 | struct disp_data disp = { disp_disable, *(int *) countptr }; | |
14670 | ||
14671 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
14672 | } | |
14673 | ||
14674 | static void | |
14675 | enable_count_command (char *args, int from_tty) | |
14676 | { | |
14677 | int count = get_number (&args); | |
14678 | ||
14679 | map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count); | |
14680 | } | |
14681 | ||
c906108c | 14682 | static void |
51be5b68 | 14683 | do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore) |
c906108c | 14684 | { |
816338b5 | 14685 | struct disp_data disp = { disp_del, 1 }; |
51be5b68 PA |
14686 | |
14687 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
14688 | } |
14689 | ||
c906108c | 14690 | static void |
fba45db2 | 14691 | enable_delete_command (char *args, int from_tty) |
c906108c | 14692 | { |
51be5b68 | 14693 | map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL); |
c906108c SS |
14694 | } |
14695 | \f | |
fa8d40ab JJ |
14696 | static void |
14697 | set_breakpoint_cmd (char *args, int from_tty) | |
14698 | { | |
14699 | } | |
14700 | ||
14701 | static void | |
14702 | show_breakpoint_cmd (char *args, int from_tty) | |
14703 | { | |
14704 | } | |
14705 | ||
1f3b5d1b PP |
14706 | /* Invalidate last known value of any hardware watchpoint if |
14707 | the memory which that value represents has been written to by | |
14708 | GDB itself. */ | |
14709 | ||
14710 | static void | |
8de0566d YQ |
14711 | invalidate_bp_value_on_memory_change (struct inferior *inferior, |
14712 | CORE_ADDR addr, ssize_t len, | |
1f3b5d1b PP |
14713 | const bfd_byte *data) |
14714 | { | |
14715 | struct breakpoint *bp; | |
14716 | ||
14717 | ALL_BREAKPOINTS (bp) | |
14718 | if (bp->enable_state == bp_enabled | |
3a5c3e22 | 14719 | && bp->type == bp_hardware_watchpoint) |
1f3b5d1b | 14720 | { |
3a5c3e22 | 14721 | struct watchpoint *wp = (struct watchpoint *) bp; |
1f3b5d1b | 14722 | |
3a5c3e22 PA |
14723 | if (wp->val_valid && wp->val) |
14724 | { | |
14725 | struct bp_location *loc; | |
14726 | ||
14727 | for (loc = bp->loc; loc != NULL; loc = loc->next) | |
14728 | if (loc->loc_type == bp_loc_hardware_watchpoint | |
14729 | && loc->address + loc->length > addr | |
14730 | && addr + len > loc->address) | |
14731 | { | |
14732 | value_free (wp->val); | |
14733 | wp->val = NULL; | |
14734 | wp->val_valid = 0; | |
14735 | } | |
14736 | } | |
1f3b5d1b PP |
14737 | } |
14738 | } | |
14739 | ||
8181d85f DJ |
14740 | /* Create and insert a raw software breakpoint at PC. Return an |
14741 | identifier, which should be used to remove the breakpoint later. | |
14742 | In general, places which call this should be using something on the | |
14743 | breakpoint chain instead; this function should be eliminated | |
14744 | someday. */ | |
14745 | ||
14746 | void * | |
6c95b8df PA |
14747 | deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch, |
14748 | struct address_space *aspace, CORE_ADDR pc) | |
8181d85f DJ |
14749 | { |
14750 | struct bp_target_info *bp_tgt; | |
14751 | ||
6c95b8df | 14752 | bp_tgt = XZALLOC (struct bp_target_info); |
8181d85f | 14753 | |
6c95b8df | 14754 | bp_tgt->placed_address_space = aspace; |
8181d85f | 14755 | bp_tgt->placed_address = pc; |
6c95b8df | 14756 | |
a6d9a66e | 14757 | if (target_insert_breakpoint (gdbarch, bp_tgt) != 0) |
8181d85f DJ |
14758 | { |
14759 | /* Could not insert the breakpoint. */ | |
14760 | xfree (bp_tgt); | |
14761 | return NULL; | |
14762 | } | |
14763 | ||
14764 | return bp_tgt; | |
14765 | } | |
14766 | ||
4a64f543 MS |
14767 | /* Remove a breakpoint BP inserted by |
14768 | deprecated_insert_raw_breakpoint. */ | |
8181d85f DJ |
14769 | |
14770 | int | |
a6d9a66e | 14771 | deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp) |
8181d85f DJ |
14772 | { |
14773 | struct bp_target_info *bp_tgt = bp; | |
14774 | int ret; | |
14775 | ||
a6d9a66e | 14776 | ret = target_remove_breakpoint (gdbarch, bp_tgt); |
8181d85f DJ |
14777 | xfree (bp_tgt); |
14778 | ||
14779 | return ret; | |
14780 | } | |
14781 | ||
4a64f543 MS |
14782 | /* One (or perhaps two) breakpoints used for software single |
14783 | stepping. */ | |
8181d85f DJ |
14784 | |
14785 | static void *single_step_breakpoints[2]; | |
a6d9a66e | 14786 | static struct gdbarch *single_step_gdbarch[2]; |
8181d85f DJ |
14787 | |
14788 | /* Create and insert a breakpoint for software single step. */ | |
14789 | ||
14790 | void | |
6c95b8df | 14791 | insert_single_step_breakpoint (struct gdbarch *gdbarch, |
4a64f543 MS |
14792 | struct address_space *aspace, |
14793 | CORE_ADDR next_pc) | |
8181d85f DJ |
14794 | { |
14795 | void **bpt_p; | |
14796 | ||
14797 | if (single_step_breakpoints[0] == NULL) | |
a6d9a66e UW |
14798 | { |
14799 | bpt_p = &single_step_breakpoints[0]; | |
14800 | single_step_gdbarch[0] = gdbarch; | |
14801 | } | |
8181d85f DJ |
14802 | else |
14803 | { | |
14804 | gdb_assert (single_step_breakpoints[1] == NULL); | |
14805 | bpt_p = &single_step_breakpoints[1]; | |
a6d9a66e | 14806 | single_step_gdbarch[1] = gdbarch; |
8181d85f DJ |
14807 | } |
14808 | ||
4a64f543 MS |
14809 | /* NOTE drow/2006-04-11: A future improvement to this function would |
14810 | be to only create the breakpoints once, and actually put them on | |
14811 | the breakpoint chain. That would let us use set_raw_breakpoint. | |
14812 | We could adjust the addresses each time they were needed. Doing | |
14813 | this requires corresponding changes elsewhere where single step | |
14814 | breakpoints are handled, however. So, for now, we use this. */ | |
8181d85f | 14815 | |
6c95b8df | 14816 | *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc); |
8181d85f | 14817 | if (*bpt_p == NULL) |
5af949e3 UW |
14818 | error (_("Could not insert single-step breakpoint at %s"), |
14819 | paddress (gdbarch, next_pc)); | |
8181d85f DJ |
14820 | } |
14821 | ||
f02253f1 HZ |
14822 | /* Check if the breakpoints used for software single stepping |
14823 | were inserted or not. */ | |
14824 | ||
14825 | int | |
14826 | single_step_breakpoints_inserted (void) | |
14827 | { | |
14828 | return (single_step_breakpoints[0] != NULL | |
14829 | || single_step_breakpoints[1] != NULL); | |
14830 | } | |
14831 | ||
8181d85f DJ |
14832 | /* Remove and delete any breakpoints used for software single step. */ |
14833 | ||
14834 | void | |
14835 | remove_single_step_breakpoints (void) | |
14836 | { | |
14837 | gdb_assert (single_step_breakpoints[0] != NULL); | |
14838 | ||
14839 | /* See insert_single_step_breakpoint for more about this deprecated | |
14840 | call. */ | |
a6d9a66e UW |
14841 | deprecated_remove_raw_breakpoint (single_step_gdbarch[0], |
14842 | single_step_breakpoints[0]); | |
14843 | single_step_gdbarch[0] = NULL; | |
8181d85f DJ |
14844 | single_step_breakpoints[0] = NULL; |
14845 | ||
14846 | if (single_step_breakpoints[1] != NULL) | |
14847 | { | |
a6d9a66e UW |
14848 | deprecated_remove_raw_breakpoint (single_step_gdbarch[1], |
14849 | single_step_breakpoints[1]); | |
14850 | single_step_gdbarch[1] = NULL; | |
8181d85f DJ |
14851 | single_step_breakpoints[1] = NULL; |
14852 | } | |
14853 | } | |
14854 | ||
d03285ec UW |
14855 | /* Delete software single step breakpoints without removing them from |
14856 | the inferior. This is intended to be used if the inferior's address | |
14857 | space where they were inserted is already gone, e.g. after exit or | |
14858 | exec. */ | |
14859 | ||
14860 | void | |
14861 | cancel_single_step_breakpoints (void) | |
14862 | { | |
14863 | int i; | |
14864 | ||
14865 | for (i = 0; i < 2; i++) | |
14866 | if (single_step_breakpoints[i]) | |
14867 | { | |
14868 | xfree (single_step_breakpoints[i]); | |
14869 | single_step_breakpoints[i] = NULL; | |
14870 | single_step_gdbarch[i] = NULL; | |
14871 | } | |
14872 | } | |
14873 | ||
14874 | /* Detach software single-step breakpoints from INFERIOR_PTID without | |
14875 | removing them. */ | |
14876 | ||
14877 | static void | |
14878 | detach_single_step_breakpoints (void) | |
14879 | { | |
14880 | int i; | |
14881 | ||
14882 | for (i = 0; i < 2; i++) | |
14883 | if (single_step_breakpoints[i]) | |
14884 | target_remove_breakpoint (single_step_gdbarch[i], | |
14885 | single_step_breakpoints[i]); | |
14886 | } | |
14887 | ||
4a64f543 MS |
14888 | /* Check whether a software single-step breakpoint is inserted at |
14889 | PC. */ | |
1aafd4da UW |
14890 | |
14891 | static int | |
cc59ec59 MS |
14892 | single_step_breakpoint_inserted_here_p (struct address_space *aspace, |
14893 | CORE_ADDR pc) | |
1aafd4da UW |
14894 | { |
14895 | int i; | |
14896 | ||
14897 | for (i = 0; i < 2; i++) | |
14898 | { | |
14899 | struct bp_target_info *bp_tgt = single_step_breakpoints[i]; | |
6c95b8df PA |
14900 | if (bp_tgt |
14901 | && breakpoint_address_match (bp_tgt->placed_address_space, | |
14902 | bp_tgt->placed_address, | |
14903 | aspace, pc)) | |
1aafd4da UW |
14904 | return 1; |
14905 | } | |
14906 | ||
14907 | return 0; | |
14908 | } | |
14909 | ||
a96d9b2e SDJ |
14910 | /* Returns 0 if 'bp' is NOT a syscall catchpoint, |
14911 | non-zero otherwise. */ | |
14912 | static int | |
14913 | is_syscall_catchpoint_enabled (struct breakpoint *bp) | |
14914 | { | |
14915 | if (syscall_catchpoint_p (bp) | |
14916 | && bp->enable_state != bp_disabled | |
14917 | && bp->enable_state != bp_call_disabled) | |
14918 | return 1; | |
14919 | else | |
14920 | return 0; | |
14921 | } | |
14922 | ||
14923 | int | |
14924 | catch_syscall_enabled (void) | |
14925 | { | |
fa3064dd YQ |
14926 | struct catch_syscall_inferior_data *inf_data |
14927 | = get_catch_syscall_inferior_data (current_inferior ()); | |
a96d9b2e | 14928 | |
fa3064dd | 14929 | return inf_data->total_syscalls_count != 0; |
a96d9b2e SDJ |
14930 | } |
14931 | ||
14932 | int | |
14933 | catching_syscall_number (int syscall_number) | |
14934 | { | |
14935 | struct breakpoint *bp; | |
14936 | ||
14937 | ALL_BREAKPOINTS (bp) | |
14938 | if (is_syscall_catchpoint_enabled (bp)) | |
14939 | { | |
be5c67c1 PA |
14940 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp; |
14941 | ||
14942 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
14943 | { |
14944 | int i, iter; | |
14945 | for (i = 0; | |
be5c67c1 | 14946 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
14947 | i++) |
14948 | if (syscall_number == iter) | |
14949 | return 1; | |
14950 | } | |
14951 | else | |
14952 | return 1; | |
14953 | } | |
14954 | ||
14955 | return 0; | |
14956 | } | |
14957 | ||
14958 | /* Complete syscall names. Used by "catch syscall". */ | |
49c4e619 | 14959 | static VEC (char_ptr) * |
a96d9b2e | 14960 | catch_syscall_completer (struct cmd_list_element *cmd, |
6f937416 | 14961 | const char *text, const char *word) |
a96d9b2e SDJ |
14962 | { |
14963 | const char **list = get_syscall_names (); | |
49c4e619 | 14964 | VEC (char_ptr) *retlist |
b45627a0 | 14965 | = (list == NULL) ? NULL : complete_on_enum (list, word, word); |
cc59ec59 | 14966 | |
c38eea1a MS |
14967 | xfree (list); |
14968 | return retlist; | |
a96d9b2e SDJ |
14969 | } |
14970 | ||
1042e4c0 SS |
14971 | /* Tracepoint-specific operations. */ |
14972 | ||
14973 | /* Set tracepoint count to NUM. */ | |
14974 | static void | |
14975 | set_tracepoint_count (int num) | |
14976 | { | |
14977 | tracepoint_count = num; | |
4fa62494 | 14978 | set_internalvar_integer (lookup_internalvar ("tpnum"), num); |
1042e4c0 SS |
14979 | } |
14980 | ||
70221824 | 14981 | static void |
1042e4c0 SS |
14982 | trace_command (char *arg, int from_tty) |
14983 | { | |
55aa24fb SDJ |
14984 | struct breakpoint_ops *ops; |
14985 | const char *arg_cp = arg; | |
14986 | ||
14987 | if (arg && probe_linespec_to_ops (&arg_cp)) | |
14988 | ops = &tracepoint_probe_breakpoint_ops; | |
14989 | else | |
14990 | ops = &tracepoint_breakpoint_ops; | |
14991 | ||
558a9d82 YQ |
14992 | create_breakpoint (get_current_arch (), |
14993 | arg, | |
14994 | NULL, 0, NULL, 1 /* parse arg */, | |
14995 | 0 /* tempflag */, | |
14996 | bp_tracepoint /* type_wanted */, | |
14997 | 0 /* Ignore count */, | |
14998 | pending_break_support, | |
14999 | ops, | |
15000 | from_tty, | |
15001 | 1 /* enabled */, | |
15002 | 0 /* internal */, 0); | |
1042e4c0 SS |
15003 | } |
15004 | ||
70221824 | 15005 | static void |
7a697b8d SS |
15006 | ftrace_command (char *arg, int from_tty) |
15007 | { | |
558a9d82 YQ |
15008 | create_breakpoint (get_current_arch (), |
15009 | arg, | |
15010 | NULL, 0, NULL, 1 /* parse arg */, | |
15011 | 0 /* tempflag */, | |
15012 | bp_fast_tracepoint /* type_wanted */, | |
15013 | 0 /* Ignore count */, | |
15014 | pending_break_support, | |
15015 | &tracepoint_breakpoint_ops, | |
15016 | from_tty, | |
15017 | 1 /* enabled */, | |
15018 | 0 /* internal */, 0); | |
0fb4aa4b PA |
15019 | } |
15020 | ||
15021 | /* strace command implementation. Creates a static tracepoint. */ | |
15022 | ||
70221824 | 15023 | static void |
0fb4aa4b PA |
15024 | strace_command (char *arg, int from_tty) |
15025 | { | |
983af33b SDJ |
15026 | struct breakpoint_ops *ops; |
15027 | ||
15028 | /* Decide if we are dealing with a static tracepoint marker (`-m'), | |
15029 | or with a normal static tracepoint. */ | |
15030 | if (arg && strncmp (arg, "-m", 2) == 0 && isspace (arg[2])) | |
15031 | ops = &strace_marker_breakpoint_ops; | |
15032 | else | |
15033 | ops = &tracepoint_breakpoint_ops; | |
15034 | ||
558a9d82 YQ |
15035 | create_breakpoint (get_current_arch (), |
15036 | arg, | |
15037 | NULL, 0, NULL, 1 /* parse arg */, | |
15038 | 0 /* tempflag */, | |
15039 | bp_static_tracepoint /* type_wanted */, | |
15040 | 0 /* Ignore count */, | |
15041 | pending_break_support, | |
15042 | ops, | |
15043 | from_tty, | |
15044 | 1 /* enabled */, | |
15045 | 0 /* internal */, 0); | |
7a697b8d SS |
15046 | } |
15047 | ||
409873ef SS |
15048 | /* Set up a fake reader function that gets command lines from a linked |
15049 | list that was acquired during tracepoint uploading. */ | |
15050 | ||
15051 | static struct uploaded_tp *this_utp; | |
3149d8c1 | 15052 | static int next_cmd; |
409873ef SS |
15053 | |
15054 | static char * | |
15055 | read_uploaded_action (void) | |
15056 | { | |
15057 | char *rslt; | |
15058 | ||
3149d8c1 | 15059 | VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt); |
409873ef | 15060 | |
3149d8c1 | 15061 | next_cmd++; |
409873ef SS |
15062 | |
15063 | return rslt; | |
15064 | } | |
15065 | ||
00bf0b85 SS |
15066 | /* Given information about a tracepoint as recorded on a target (which |
15067 | can be either a live system or a trace file), attempt to create an | |
15068 | equivalent GDB tracepoint. This is not a reliable process, since | |
15069 | the target does not necessarily have all the information used when | |
15070 | the tracepoint was originally defined. */ | |
15071 | ||
d9b3f62e | 15072 | struct tracepoint * |
00bf0b85 | 15073 | create_tracepoint_from_upload (struct uploaded_tp *utp) |
d5551862 | 15074 | { |
409873ef | 15075 | char *addr_str, small_buf[100]; |
d9b3f62e | 15076 | struct tracepoint *tp; |
fd9b8c24 | 15077 | |
409873ef SS |
15078 | if (utp->at_string) |
15079 | addr_str = utp->at_string; | |
15080 | else | |
15081 | { | |
15082 | /* In the absence of a source location, fall back to raw | |
15083 | address. Since there is no way to confirm that the address | |
15084 | means the same thing as when the trace was started, warn the | |
15085 | user. */ | |
3e43a32a MS |
15086 | warning (_("Uploaded tracepoint %d has no " |
15087 | "source location, using raw address"), | |
409873ef | 15088 | utp->number); |
8c042590 | 15089 | xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr)); |
409873ef SS |
15090 | addr_str = small_buf; |
15091 | } | |
15092 | ||
15093 | /* There's not much we can do with a sequence of bytecodes. */ | |
15094 | if (utp->cond && !utp->cond_string) | |
3e43a32a MS |
15095 | warning (_("Uploaded tracepoint %d condition " |
15096 | "has no source form, ignoring it"), | |
409873ef | 15097 | utp->number); |
d5551862 | 15098 | |
8cdf0e15 | 15099 | if (!create_breakpoint (get_current_arch (), |
409873ef | 15100 | addr_str, |
e7e0cddf SS |
15101 | utp->cond_string, -1, NULL, |
15102 | 0 /* parse cond/thread */, | |
8cdf0e15 | 15103 | 0 /* tempflag */, |
0fb4aa4b | 15104 | utp->type /* type_wanted */, |
8cdf0e15 VP |
15105 | 0 /* Ignore count */, |
15106 | pending_break_support, | |
348d480f | 15107 | &tracepoint_breakpoint_ops, |
8cdf0e15 | 15108 | 0 /* from_tty */, |
84f4c1fe | 15109 | utp->enabled /* enabled */, |
44f238bb PA |
15110 | 0 /* internal */, |
15111 | CREATE_BREAKPOINT_FLAGS_INSERTED)) | |
fd9b8c24 PA |
15112 | return NULL; |
15113 | ||
409873ef | 15114 | /* Get the tracepoint we just created. */ |
fd9b8c24 PA |
15115 | tp = get_tracepoint (tracepoint_count); |
15116 | gdb_assert (tp != NULL); | |
d5551862 | 15117 | |
00bf0b85 SS |
15118 | if (utp->pass > 0) |
15119 | { | |
8c042590 PM |
15120 | xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass, |
15121 | tp->base.number); | |
00bf0b85 | 15122 | |
409873ef | 15123 | trace_pass_command (small_buf, 0); |
00bf0b85 SS |
15124 | } |
15125 | ||
409873ef SS |
15126 | /* If we have uploaded versions of the original commands, set up a |
15127 | special-purpose "reader" function and call the usual command line | |
15128 | reader, then pass the result to the breakpoint command-setting | |
15129 | function. */ | |
3149d8c1 | 15130 | if (!VEC_empty (char_ptr, utp->cmd_strings)) |
00bf0b85 | 15131 | { |
409873ef | 15132 | struct command_line *cmd_list; |
00bf0b85 | 15133 | |
409873ef | 15134 | this_utp = utp; |
3149d8c1 | 15135 | next_cmd = 0; |
d5551862 | 15136 | |
409873ef SS |
15137 | cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL); |
15138 | ||
d9b3f62e | 15139 | breakpoint_set_commands (&tp->base, cmd_list); |
00bf0b85 | 15140 | } |
3149d8c1 SS |
15141 | else if (!VEC_empty (char_ptr, utp->actions) |
15142 | || !VEC_empty (char_ptr, utp->step_actions)) | |
3e43a32a MS |
15143 | warning (_("Uploaded tracepoint %d actions " |
15144 | "have no source form, ignoring them"), | |
409873ef | 15145 | utp->number); |
00bf0b85 | 15146 | |
f196051f SS |
15147 | /* Copy any status information that might be available. */ |
15148 | tp->base.hit_count = utp->hit_count; | |
15149 | tp->traceframe_usage = utp->traceframe_usage; | |
15150 | ||
00bf0b85 | 15151 | return tp; |
d9b3f62e | 15152 | } |
00bf0b85 | 15153 | |
1042e4c0 SS |
15154 | /* Print information on tracepoint number TPNUM_EXP, or all if |
15155 | omitted. */ | |
15156 | ||
15157 | static void | |
e5a67952 | 15158 | tracepoints_info (char *args, int from_tty) |
1042e4c0 | 15159 | { |
79a45e25 | 15160 | struct ui_out *uiout = current_uiout; |
e5a67952 | 15161 | int num_printed; |
1042e4c0 | 15162 | |
e5a67952 | 15163 | num_printed = breakpoint_1 (args, 0, is_tracepoint); |
d77f58be SS |
15164 | |
15165 | if (num_printed == 0) | |
1042e4c0 | 15166 | { |
e5a67952 | 15167 | if (args == NULL || *args == '\0') |
d77f58be SS |
15168 | ui_out_message (uiout, 0, "No tracepoints.\n"); |
15169 | else | |
e5a67952 | 15170 | ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args); |
1042e4c0 | 15171 | } |
ad443146 SS |
15172 | |
15173 | default_collect_info (); | |
1042e4c0 SS |
15174 | } |
15175 | ||
4a64f543 | 15176 | /* The 'enable trace' command enables tracepoints. |
1042e4c0 SS |
15177 | Not supported by all targets. */ |
15178 | static void | |
15179 | enable_trace_command (char *args, int from_tty) | |
15180 | { | |
15181 | enable_command (args, from_tty); | |
15182 | } | |
15183 | ||
4a64f543 | 15184 | /* The 'disable trace' command disables tracepoints. |
1042e4c0 SS |
15185 | Not supported by all targets. */ |
15186 | static void | |
15187 | disable_trace_command (char *args, int from_tty) | |
15188 | { | |
15189 | disable_command (args, from_tty); | |
15190 | } | |
15191 | ||
4a64f543 | 15192 | /* Remove a tracepoint (or all if no argument). */ |
1042e4c0 SS |
15193 | static void |
15194 | delete_trace_command (char *arg, int from_tty) | |
15195 | { | |
35df4500 | 15196 | struct breakpoint *b, *b_tmp; |
1042e4c0 SS |
15197 | |
15198 | dont_repeat (); | |
15199 | ||
15200 | if (arg == 0) | |
15201 | { | |
15202 | int breaks_to_delete = 0; | |
15203 | ||
15204 | /* Delete all breakpoints if no argument. | |
15205 | Do not delete internal or call-dummy breakpoints, these | |
4a64f543 MS |
15206 | have to be deleted with an explicit breakpoint number |
15207 | argument. */ | |
1042e4c0 | 15208 | ALL_TRACEPOINTS (b) |
46c6471b | 15209 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 SS |
15210 | { |
15211 | breaks_to_delete = 1; | |
15212 | break; | |
15213 | } | |
1042e4c0 SS |
15214 | |
15215 | /* Ask user only if there are some breakpoints to delete. */ | |
15216 | if (!from_tty | |
15217 | || (breaks_to_delete && query (_("Delete all tracepoints? ")))) | |
15218 | { | |
35df4500 | 15219 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
46c6471b | 15220 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 | 15221 | delete_breakpoint (b); |
1042e4c0 SS |
15222 | } |
15223 | } | |
15224 | else | |
51be5b68 | 15225 | map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL); |
1042e4c0 SS |
15226 | } |
15227 | ||
197f0a60 TT |
15228 | /* Helper function for trace_pass_command. */ |
15229 | ||
15230 | static void | |
d9b3f62e | 15231 | trace_pass_set_count (struct tracepoint *tp, int count, int from_tty) |
197f0a60 | 15232 | { |
d9b3f62e | 15233 | tp->pass_count = count; |
6f6484cd | 15234 | observer_notify_breakpoint_modified (&tp->base); |
197f0a60 TT |
15235 | if (from_tty) |
15236 | printf_filtered (_("Setting tracepoint %d's passcount to %d\n"), | |
d9b3f62e | 15237 | tp->base.number, count); |
197f0a60 TT |
15238 | } |
15239 | ||
1042e4c0 SS |
15240 | /* Set passcount for tracepoint. |
15241 | ||
15242 | First command argument is passcount, second is tracepoint number. | |
15243 | If tracepoint number omitted, apply to most recently defined. | |
15244 | Also accepts special argument "all". */ | |
15245 | ||
15246 | static void | |
15247 | trace_pass_command (char *args, int from_tty) | |
15248 | { | |
d9b3f62e | 15249 | struct tracepoint *t1; |
1042e4c0 | 15250 | unsigned int count; |
1042e4c0 SS |
15251 | |
15252 | if (args == 0 || *args == 0) | |
3e43a32a MS |
15253 | error (_("passcount command requires an " |
15254 | "argument (count + optional TP num)")); | |
1042e4c0 | 15255 | |
4a64f543 | 15256 | count = strtoul (args, &args, 10); /* Count comes first, then TP num. */ |
1042e4c0 | 15257 | |
529480d0 | 15258 | args = skip_spaces (args); |
1042e4c0 SS |
15259 | if (*args && strncasecmp (args, "all", 3) == 0) |
15260 | { | |
d9b3f62e PA |
15261 | struct breakpoint *b; |
15262 | ||
1042e4c0 | 15263 | args += 3; /* Skip special argument "all". */ |
1042e4c0 SS |
15264 | if (*args) |
15265 | error (_("Junk at end of arguments.")); | |
1042e4c0 | 15266 | |
d9b3f62e | 15267 | ALL_TRACEPOINTS (b) |
197f0a60 | 15268 | { |
d9b3f62e | 15269 | t1 = (struct tracepoint *) b; |
197f0a60 TT |
15270 | trace_pass_set_count (t1, count, from_tty); |
15271 | } | |
15272 | } | |
15273 | else if (*args == '\0') | |
1042e4c0 | 15274 | { |
197f0a60 | 15275 | t1 = get_tracepoint_by_number (&args, NULL, 1); |
1042e4c0 | 15276 | if (t1) |
197f0a60 TT |
15277 | trace_pass_set_count (t1, count, from_tty); |
15278 | } | |
15279 | else | |
15280 | { | |
15281 | struct get_number_or_range_state state; | |
15282 | ||
15283 | init_number_or_range (&state, args); | |
15284 | while (!state.finished) | |
1042e4c0 | 15285 | { |
197f0a60 TT |
15286 | t1 = get_tracepoint_by_number (&args, &state, 1); |
15287 | if (t1) | |
15288 | trace_pass_set_count (t1, count, from_tty); | |
1042e4c0 SS |
15289 | } |
15290 | } | |
1042e4c0 SS |
15291 | } |
15292 | ||
d9b3f62e | 15293 | struct tracepoint * |
1042e4c0 SS |
15294 | get_tracepoint (int num) |
15295 | { | |
15296 | struct breakpoint *t; | |
15297 | ||
15298 | ALL_TRACEPOINTS (t) | |
15299 | if (t->number == num) | |
d9b3f62e | 15300 | return (struct tracepoint *) t; |
1042e4c0 SS |
15301 | |
15302 | return NULL; | |
15303 | } | |
15304 | ||
d5551862 SS |
15305 | /* Find the tracepoint with the given target-side number (which may be |
15306 | different from the tracepoint number after disconnecting and | |
15307 | reconnecting). */ | |
15308 | ||
d9b3f62e | 15309 | struct tracepoint * |
d5551862 SS |
15310 | get_tracepoint_by_number_on_target (int num) |
15311 | { | |
d9b3f62e | 15312 | struct breakpoint *b; |
d5551862 | 15313 | |
d9b3f62e PA |
15314 | ALL_TRACEPOINTS (b) |
15315 | { | |
15316 | struct tracepoint *t = (struct tracepoint *) b; | |
15317 | ||
15318 | if (t->number_on_target == num) | |
15319 | return t; | |
15320 | } | |
d5551862 SS |
15321 | |
15322 | return NULL; | |
15323 | } | |
15324 | ||
1042e4c0 | 15325 | /* Utility: parse a tracepoint number and look it up in the list. |
197f0a60 TT |
15326 | If STATE is not NULL, use, get_number_or_range_state and ignore ARG. |
15327 | If OPTIONAL_P is true, then if the argument is missing, the most | |
1042e4c0 | 15328 | recent tracepoint (tracepoint_count) is returned. */ |
d9b3f62e | 15329 | struct tracepoint * |
197f0a60 TT |
15330 | get_tracepoint_by_number (char **arg, |
15331 | struct get_number_or_range_state *state, | |
15332 | int optional_p) | |
1042e4c0 | 15333 | { |
1042e4c0 SS |
15334 | struct breakpoint *t; |
15335 | int tpnum; | |
15336 | char *instring = arg == NULL ? NULL : *arg; | |
15337 | ||
197f0a60 TT |
15338 | if (state) |
15339 | { | |
15340 | gdb_assert (!state->finished); | |
15341 | tpnum = get_number_or_range (state); | |
15342 | } | |
15343 | else if (arg == NULL || *arg == NULL || ! **arg) | |
1042e4c0 SS |
15344 | { |
15345 | if (optional_p) | |
15346 | tpnum = tracepoint_count; | |
15347 | else | |
15348 | error_no_arg (_("tracepoint number")); | |
15349 | } | |
15350 | else | |
197f0a60 | 15351 | tpnum = get_number (arg); |
1042e4c0 SS |
15352 | |
15353 | if (tpnum <= 0) | |
15354 | { | |
15355 | if (instring && *instring) | |
15356 | printf_filtered (_("bad tracepoint number at or near '%s'\n"), | |
15357 | instring); | |
15358 | else | |
3e43a32a MS |
15359 | printf_filtered (_("Tracepoint argument missing " |
15360 | "and no previous tracepoint\n")); | |
1042e4c0 SS |
15361 | return NULL; |
15362 | } | |
15363 | ||
15364 | ALL_TRACEPOINTS (t) | |
15365 | if (t->number == tpnum) | |
15366 | { | |
d9b3f62e | 15367 | return (struct tracepoint *) t; |
1042e4c0 SS |
15368 | } |
15369 | ||
1042e4c0 SS |
15370 | printf_unfiltered ("No tracepoint number %d.\n", tpnum); |
15371 | return NULL; | |
15372 | } | |
15373 | ||
d9b3f62e PA |
15374 | void |
15375 | print_recreate_thread (struct breakpoint *b, struct ui_file *fp) | |
15376 | { | |
15377 | if (b->thread != -1) | |
15378 | fprintf_unfiltered (fp, " thread %d", b->thread); | |
15379 | ||
15380 | if (b->task != 0) | |
15381 | fprintf_unfiltered (fp, " task %d", b->task); | |
15382 | ||
15383 | fprintf_unfiltered (fp, "\n"); | |
15384 | } | |
15385 | ||
6149aea9 PA |
15386 | /* Save information on user settable breakpoints (watchpoints, etc) to |
15387 | a new script file named FILENAME. If FILTER is non-NULL, call it | |
15388 | on each breakpoint and only include the ones for which it returns | |
15389 | non-zero. */ | |
15390 | ||
1042e4c0 | 15391 | static void |
6149aea9 PA |
15392 | save_breakpoints (char *filename, int from_tty, |
15393 | int (*filter) (const struct breakpoint *)) | |
1042e4c0 SS |
15394 | { |
15395 | struct breakpoint *tp; | |
6149aea9 | 15396 | int any = 0; |
a7bdde9e | 15397 | char *pathname; |
1042e4c0 | 15398 | struct cleanup *cleanup; |
a7bdde9e | 15399 | struct ui_file *fp; |
6149aea9 | 15400 | int extra_trace_bits = 0; |
1042e4c0 | 15401 | |
6149aea9 PA |
15402 | if (filename == 0 || *filename == 0) |
15403 | error (_("Argument required (file name in which to save)")); | |
1042e4c0 SS |
15404 | |
15405 | /* See if we have anything to save. */ | |
6149aea9 | 15406 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 15407 | { |
6149aea9 | 15408 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 15409 | if (!user_breakpoint_p (tp)) |
6149aea9 PA |
15410 | continue; |
15411 | ||
15412 | /* If we have a filter, only save the breakpoints it accepts. */ | |
15413 | if (filter && !filter (tp)) | |
15414 | continue; | |
15415 | ||
15416 | any = 1; | |
15417 | ||
15418 | if (is_tracepoint (tp)) | |
15419 | { | |
15420 | extra_trace_bits = 1; | |
15421 | ||
15422 | /* We can stop searching. */ | |
15423 | break; | |
15424 | } | |
1042e4c0 | 15425 | } |
6149aea9 PA |
15426 | |
15427 | if (!any) | |
1042e4c0 | 15428 | { |
6149aea9 | 15429 | warning (_("Nothing to save.")); |
1042e4c0 SS |
15430 | return; |
15431 | } | |
15432 | ||
6149aea9 | 15433 | pathname = tilde_expand (filename); |
1042e4c0 | 15434 | cleanup = make_cleanup (xfree, pathname); |
a7bdde9e | 15435 | fp = gdb_fopen (pathname, "w"); |
059fb39f | 15436 | if (!fp) |
6149aea9 PA |
15437 | error (_("Unable to open file '%s' for saving (%s)"), |
15438 | filename, safe_strerror (errno)); | |
a7bdde9e | 15439 | make_cleanup_ui_file_delete (fp); |
8bf6485c | 15440 | |
6149aea9 PA |
15441 | if (extra_trace_bits) |
15442 | save_trace_state_variables (fp); | |
8bf6485c | 15443 | |
6149aea9 | 15444 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 15445 | { |
6149aea9 | 15446 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 15447 | if (!user_breakpoint_p (tp)) |
6149aea9 | 15448 | continue; |
8bf6485c | 15449 | |
6149aea9 PA |
15450 | /* If we have a filter, only save the breakpoints it accepts. */ |
15451 | if (filter && !filter (tp)) | |
15452 | continue; | |
15453 | ||
348d480f | 15454 | tp->ops->print_recreate (tp, fp); |
1042e4c0 | 15455 | |
6149aea9 PA |
15456 | /* Note, we can't rely on tp->number for anything, as we can't |
15457 | assume the recreated breakpoint numbers will match. Use $bpnum | |
15458 | instead. */ | |
15459 | ||
15460 | if (tp->cond_string) | |
15461 | fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string); | |
15462 | ||
15463 | if (tp->ignore_count) | |
15464 | fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count); | |
15465 | ||
2d9442cc | 15466 | if (tp->type != bp_dprintf && tp->commands) |
1042e4c0 | 15467 | { |
a7bdde9e VP |
15468 | volatile struct gdb_exception ex; |
15469 | ||
6149aea9 | 15470 | fprintf_unfiltered (fp, " commands\n"); |
a7bdde9e | 15471 | |
79a45e25 | 15472 | ui_out_redirect (current_uiout, fp); |
14dba4b4 | 15473 | TRY_CATCH (ex, RETURN_MASK_ALL) |
1042e4c0 | 15474 | { |
79a45e25 | 15475 | print_command_lines (current_uiout, tp->commands->commands, 2); |
a7bdde9e | 15476 | } |
79a45e25 | 15477 | ui_out_redirect (current_uiout, NULL); |
1042e4c0 | 15478 | |
a7bdde9e VP |
15479 | if (ex.reason < 0) |
15480 | throw_exception (ex); | |
1042e4c0 | 15481 | |
a7bdde9e | 15482 | fprintf_unfiltered (fp, " end\n"); |
1042e4c0 | 15483 | } |
6149aea9 PA |
15484 | |
15485 | if (tp->enable_state == bp_disabled) | |
15486 | fprintf_unfiltered (fp, "disable\n"); | |
15487 | ||
15488 | /* If this is a multi-location breakpoint, check if the locations | |
15489 | should be individually disabled. Watchpoint locations are | |
15490 | special, and not user visible. */ | |
15491 | if (!is_watchpoint (tp) && tp->loc && tp->loc->next) | |
15492 | { | |
15493 | struct bp_location *loc; | |
15494 | int n = 1; | |
15495 | ||
15496 | for (loc = tp->loc; loc != NULL; loc = loc->next, n++) | |
15497 | if (!loc->enabled) | |
15498 | fprintf_unfiltered (fp, "disable $bpnum.%d\n", n); | |
15499 | } | |
1042e4c0 | 15500 | } |
8bf6485c | 15501 | |
6149aea9 | 15502 | if (extra_trace_bits && *default_collect) |
8bf6485c SS |
15503 | fprintf_unfiltered (fp, "set default-collect %s\n", default_collect); |
15504 | ||
1042e4c0 SS |
15505 | do_cleanups (cleanup); |
15506 | if (from_tty) | |
6149aea9 PA |
15507 | printf_filtered (_("Saved to file '%s'.\n"), filename); |
15508 | } | |
15509 | ||
15510 | /* The `save breakpoints' command. */ | |
15511 | ||
15512 | static void | |
15513 | save_breakpoints_command (char *args, int from_tty) | |
15514 | { | |
15515 | save_breakpoints (args, from_tty, NULL); | |
15516 | } | |
15517 | ||
15518 | /* The `save tracepoints' command. */ | |
15519 | ||
15520 | static void | |
15521 | save_tracepoints_command (char *args, int from_tty) | |
15522 | { | |
15523 | save_breakpoints (args, from_tty, is_tracepoint); | |
1042e4c0 SS |
15524 | } |
15525 | ||
15526 | /* Create a vector of all tracepoints. */ | |
15527 | ||
15528 | VEC(breakpoint_p) * | |
eeae04df | 15529 | all_tracepoints (void) |
1042e4c0 SS |
15530 | { |
15531 | VEC(breakpoint_p) *tp_vec = 0; | |
15532 | struct breakpoint *tp; | |
15533 | ||
15534 | ALL_TRACEPOINTS (tp) | |
15535 | { | |
15536 | VEC_safe_push (breakpoint_p, tp_vec, tp); | |
15537 | } | |
15538 | ||
15539 | return tp_vec; | |
15540 | } | |
15541 | ||
c906108c | 15542 | \f |
4a64f543 MS |
15543 | /* This help string is used for the break, hbreak, tbreak and thbreak |
15544 | commands. It is defined as a macro to prevent duplication. | |
15545 | COMMAND should be a string constant containing the name of the | |
15546 | command. */ | |
31e2b00f | 15547 | #define BREAK_ARGS_HELP(command) \ |
fb7b5af4 SDJ |
15548 | command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\ |
15549 | PROBE_MODIFIER shall be present if the command is to be placed in a\n\ | |
15550 | probe point. Accepted values are `-probe' (for a generic, automatically\n\ | |
15551 | guessed probe type) or `-probe-stap' (for a SystemTap probe).\n\ | |
31e2b00f AS |
15552 | LOCATION may be a line number, function name, or \"*\" and an address.\n\ |
15553 | If a line number is specified, break at start of code for that line.\n\ | |
15554 | If a function is specified, break at start of code for that function.\n\ | |
15555 | If an address is specified, break at that exact address.\n\ | |
dc10affe PA |
15556 | With no LOCATION, uses current execution address of the selected\n\ |
15557 | stack frame. This is useful for breaking on return to a stack frame.\n\ | |
31e2b00f AS |
15558 | \n\ |
15559 | THREADNUM is the number from \"info threads\".\n\ | |
15560 | CONDITION is a boolean expression.\n\ | |
15561 | \n\ | |
d41c0fc8 PA |
15562 | Multiple breakpoints at one place are permitted, and useful if their\n\ |
15563 | conditions are different.\n\ | |
31e2b00f AS |
15564 | \n\ |
15565 | Do \"help breakpoints\" for info on other commands dealing with breakpoints." | |
15566 | ||
44feb3ce TT |
15567 | /* List of subcommands for "catch". */ |
15568 | static struct cmd_list_element *catch_cmdlist; | |
15569 | ||
15570 | /* List of subcommands for "tcatch". */ | |
15571 | static struct cmd_list_element *tcatch_cmdlist; | |
15572 | ||
9ac4176b | 15573 | void |
44feb3ce TT |
15574 | add_catch_command (char *name, char *docstring, |
15575 | void (*sfunc) (char *args, int from_tty, | |
15576 | struct cmd_list_element *command), | |
625e8578 | 15577 | completer_ftype *completer, |
44feb3ce TT |
15578 | void *user_data_catch, |
15579 | void *user_data_tcatch) | |
15580 | { | |
15581 | struct cmd_list_element *command; | |
15582 | ||
15583 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
15584 | &catch_cmdlist); | |
15585 | set_cmd_sfunc (command, sfunc); | |
15586 | set_cmd_context (command, user_data_catch); | |
a96d9b2e | 15587 | set_cmd_completer (command, completer); |
44feb3ce TT |
15588 | |
15589 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
15590 | &tcatch_cmdlist); | |
15591 | set_cmd_sfunc (command, sfunc); | |
15592 | set_cmd_context (command, user_data_tcatch); | |
a96d9b2e | 15593 | set_cmd_completer (command, completer); |
44feb3ce TT |
15594 | } |
15595 | ||
6c95b8df | 15596 | static void |
a79b8f6e | 15597 | clear_syscall_counts (struct inferior *inf) |
6c95b8df | 15598 | { |
fa3064dd YQ |
15599 | struct catch_syscall_inferior_data *inf_data |
15600 | = get_catch_syscall_inferior_data (inf); | |
15601 | ||
15602 | inf_data->total_syscalls_count = 0; | |
15603 | inf_data->any_syscall_count = 0; | |
15604 | VEC_free (int, inf_data->syscalls_counts); | |
6c95b8df PA |
15605 | } |
15606 | ||
6149aea9 PA |
15607 | static void |
15608 | save_command (char *arg, int from_tty) | |
15609 | { | |
3e43a32a MS |
15610 | printf_unfiltered (_("\"save\" must be followed by " |
15611 | "the name of a save subcommand.\n")); | |
6149aea9 PA |
15612 | help_list (save_cmdlist, "save ", -1, gdb_stdout); |
15613 | } | |
15614 | ||
84f4c1fe PM |
15615 | struct breakpoint * |
15616 | iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *), | |
15617 | void *data) | |
15618 | { | |
35df4500 | 15619 | struct breakpoint *b, *b_tmp; |
84f4c1fe | 15620 | |
35df4500 | 15621 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
84f4c1fe PM |
15622 | { |
15623 | if ((*callback) (b, data)) | |
15624 | return b; | |
15625 | } | |
15626 | ||
15627 | return NULL; | |
15628 | } | |
15629 | ||
0574c78f GB |
15630 | /* Zero if any of the breakpoint's locations could be a location where |
15631 | functions have been inlined, nonzero otherwise. */ | |
15632 | ||
15633 | static int | |
15634 | is_non_inline_function (struct breakpoint *b) | |
15635 | { | |
15636 | /* The shared library event breakpoint is set on the address of a | |
15637 | non-inline function. */ | |
15638 | if (b->type == bp_shlib_event) | |
15639 | return 1; | |
15640 | ||
15641 | return 0; | |
15642 | } | |
15643 | ||
15644 | /* Nonzero if the specified PC cannot be a location where functions | |
15645 | have been inlined. */ | |
15646 | ||
15647 | int | |
09ac7c10 TT |
15648 | pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc, |
15649 | const struct target_waitstatus *ws) | |
0574c78f GB |
15650 | { |
15651 | struct breakpoint *b; | |
15652 | struct bp_location *bl; | |
15653 | ||
15654 | ALL_BREAKPOINTS (b) | |
15655 | { | |
15656 | if (!is_non_inline_function (b)) | |
15657 | continue; | |
15658 | ||
15659 | for (bl = b->loc; bl != NULL; bl = bl->next) | |
15660 | { | |
15661 | if (!bl->shlib_disabled | |
09ac7c10 | 15662 | && bpstat_check_location (bl, aspace, pc, ws)) |
0574c78f GB |
15663 | return 1; |
15664 | } | |
15665 | } | |
15666 | ||
15667 | return 0; | |
15668 | } | |
15669 | ||
2f202fde JK |
15670 | /* Remove any references to OBJFILE which is going to be freed. */ |
15671 | ||
15672 | void | |
15673 | breakpoint_free_objfile (struct objfile *objfile) | |
15674 | { | |
15675 | struct bp_location **locp, *loc; | |
15676 | ||
15677 | ALL_BP_LOCATIONS (loc, locp) | |
15678 | if (loc->symtab != NULL && loc->symtab->objfile == objfile) | |
15679 | loc->symtab = NULL; | |
15680 | } | |
15681 | ||
2060206e PA |
15682 | void |
15683 | initialize_breakpoint_ops (void) | |
15684 | { | |
15685 | static int initialized = 0; | |
15686 | ||
15687 | struct breakpoint_ops *ops; | |
15688 | ||
15689 | if (initialized) | |
15690 | return; | |
15691 | initialized = 1; | |
15692 | ||
15693 | /* The breakpoint_ops structure to be inherit by all kinds of | |
15694 | breakpoints (real breakpoints, i.e., user "break" breakpoints, | |
15695 | internal and momentary breakpoints, etc.). */ | |
15696 | ops = &bkpt_base_breakpoint_ops; | |
15697 | *ops = base_breakpoint_ops; | |
15698 | ops->re_set = bkpt_re_set; | |
15699 | ops->insert_location = bkpt_insert_location; | |
15700 | ops->remove_location = bkpt_remove_location; | |
15701 | ops->breakpoint_hit = bkpt_breakpoint_hit; | |
983af33b SDJ |
15702 | ops->create_sals_from_address = bkpt_create_sals_from_address; |
15703 | ops->create_breakpoints_sal = bkpt_create_breakpoints_sal; | |
15704 | ops->decode_linespec = bkpt_decode_linespec; | |
2060206e PA |
15705 | |
15706 | /* The breakpoint_ops structure to be used in regular breakpoints. */ | |
15707 | ops = &bkpt_breakpoint_ops; | |
15708 | *ops = bkpt_base_breakpoint_ops; | |
15709 | ops->re_set = bkpt_re_set; | |
15710 | ops->resources_needed = bkpt_resources_needed; | |
15711 | ops->print_it = bkpt_print_it; | |
15712 | ops->print_mention = bkpt_print_mention; | |
15713 | ops->print_recreate = bkpt_print_recreate; | |
15714 | ||
15715 | /* Ranged breakpoints. */ | |
15716 | ops = &ranged_breakpoint_ops; | |
15717 | *ops = bkpt_breakpoint_ops; | |
15718 | ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint; | |
15719 | ops->resources_needed = resources_needed_ranged_breakpoint; | |
15720 | ops->print_it = print_it_ranged_breakpoint; | |
15721 | ops->print_one = print_one_ranged_breakpoint; | |
15722 | ops->print_one_detail = print_one_detail_ranged_breakpoint; | |
15723 | ops->print_mention = print_mention_ranged_breakpoint; | |
15724 | ops->print_recreate = print_recreate_ranged_breakpoint; | |
15725 | ||
15726 | /* Internal breakpoints. */ | |
15727 | ops = &internal_breakpoint_ops; | |
15728 | *ops = bkpt_base_breakpoint_ops; | |
15729 | ops->re_set = internal_bkpt_re_set; | |
15730 | ops->check_status = internal_bkpt_check_status; | |
15731 | ops->print_it = internal_bkpt_print_it; | |
15732 | ops->print_mention = internal_bkpt_print_mention; | |
15733 | ||
15734 | /* Momentary breakpoints. */ | |
15735 | ops = &momentary_breakpoint_ops; | |
15736 | *ops = bkpt_base_breakpoint_ops; | |
15737 | ops->re_set = momentary_bkpt_re_set; | |
15738 | ops->check_status = momentary_bkpt_check_status; | |
15739 | ops->print_it = momentary_bkpt_print_it; | |
15740 | ops->print_mention = momentary_bkpt_print_mention; | |
15741 | ||
e2e4d78b JK |
15742 | /* Momentary breakpoints for bp_longjmp and bp_exception. */ |
15743 | ops = &longjmp_breakpoint_ops; | |
15744 | *ops = momentary_breakpoint_ops; | |
15745 | ops->dtor = longjmp_bkpt_dtor; | |
15746 | ||
55aa24fb SDJ |
15747 | /* Probe breakpoints. */ |
15748 | ops = &bkpt_probe_breakpoint_ops; | |
15749 | *ops = bkpt_breakpoint_ops; | |
15750 | ops->insert_location = bkpt_probe_insert_location; | |
15751 | ops->remove_location = bkpt_probe_remove_location; | |
15752 | ops->create_sals_from_address = bkpt_probe_create_sals_from_address; | |
15753 | ops->decode_linespec = bkpt_probe_decode_linespec; | |
15754 | ||
2060206e PA |
15755 | /* Watchpoints. */ |
15756 | ops = &watchpoint_breakpoint_ops; | |
15757 | *ops = base_breakpoint_ops; | |
3a5c3e22 | 15758 | ops->dtor = dtor_watchpoint; |
2060206e PA |
15759 | ops->re_set = re_set_watchpoint; |
15760 | ops->insert_location = insert_watchpoint; | |
15761 | ops->remove_location = remove_watchpoint; | |
15762 | ops->breakpoint_hit = breakpoint_hit_watchpoint; | |
15763 | ops->check_status = check_status_watchpoint; | |
15764 | ops->resources_needed = resources_needed_watchpoint; | |
15765 | ops->works_in_software_mode = works_in_software_mode_watchpoint; | |
15766 | ops->print_it = print_it_watchpoint; | |
15767 | ops->print_mention = print_mention_watchpoint; | |
15768 | ops->print_recreate = print_recreate_watchpoint; | |
15769 | ||
15770 | /* Masked watchpoints. */ | |
15771 | ops = &masked_watchpoint_breakpoint_ops; | |
15772 | *ops = watchpoint_breakpoint_ops; | |
15773 | ops->insert_location = insert_masked_watchpoint; | |
15774 | ops->remove_location = remove_masked_watchpoint; | |
15775 | ops->resources_needed = resources_needed_masked_watchpoint; | |
15776 | ops->works_in_software_mode = works_in_software_mode_masked_watchpoint; | |
15777 | ops->print_it = print_it_masked_watchpoint; | |
15778 | ops->print_one_detail = print_one_detail_masked_watchpoint; | |
15779 | ops->print_mention = print_mention_masked_watchpoint; | |
15780 | ops->print_recreate = print_recreate_masked_watchpoint; | |
15781 | ||
15782 | /* Tracepoints. */ | |
15783 | ops = &tracepoint_breakpoint_ops; | |
15784 | *ops = base_breakpoint_ops; | |
15785 | ops->re_set = tracepoint_re_set; | |
15786 | ops->breakpoint_hit = tracepoint_breakpoint_hit; | |
15787 | ops->print_one_detail = tracepoint_print_one_detail; | |
15788 | ops->print_mention = tracepoint_print_mention; | |
15789 | ops->print_recreate = tracepoint_print_recreate; | |
983af33b SDJ |
15790 | ops->create_sals_from_address = tracepoint_create_sals_from_address; |
15791 | ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal; | |
15792 | ops->decode_linespec = tracepoint_decode_linespec; | |
15793 | ||
55aa24fb SDJ |
15794 | /* Probe tracepoints. */ |
15795 | ops = &tracepoint_probe_breakpoint_ops; | |
15796 | *ops = tracepoint_breakpoint_ops; | |
15797 | ops->create_sals_from_address = tracepoint_probe_create_sals_from_address; | |
15798 | ops->decode_linespec = tracepoint_probe_decode_linespec; | |
15799 | ||
983af33b SDJ |
15800 | /* Static tracepoints with marker (`-m'). */ |
15801 | ops = &strace_marker_breakpoint_ops; | |
15802 | *ops = tracepoint_breakpoint_ops; | |
15803 | ops->create_sals_from_address = strace_marker_create_sals_from_address; | |
15804 | ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal; | |
15805 | ops->decode_linespec = strace_marker_decode_linespec; | |
2060206e PA |
15806 | |
15807 | /* Fork catchpoints. */ | |
15808 | ops = &catch_fork_breakpoint_ops; | |
15809 | *ops = base_breakpoint_ops; | |
15810 | ops->insert_location = insert_catch_fork; | |
15811 | ops->remove_location = remove_catch_fork; | |
15812 | ops->breakpoint_hit = breakpoint_hit_catch_fork; | |
15813 | ops->print_it = print_it_catch_fork; | |
15814 | ops->print_one = print_one_catch_fork; | |
15815 | ops->print_mention = print_mention_catch_fork; | |
15816 | ops->print_recreate = print_recreate_catch_fork; | |
15817 | ||
15818 | /* Vfork catchpoints. */ | |
15819 | ops = &catch_vfork_breakpoint_ops; | |
15820 | *ops = base_breakpoint_ops; | |
15821 | ops->insert_location = insert_catch_vfork; | |
15822 | ops->remove_location = remove_catch_vfork; | |
15823 | ops->breakpoint_hit = breakpoint_hit_catch_vfork; | |
15824 | ops->print_it = print_it_catch_vfork; | |
15825 | ops->print_one = print_one_catch_vfork; | |
15826 | ops->print_mention = print_mention_catch_vfork; | |
15827 | ops->print_recreate = print_recreate_catch_vfork; | |
15828 | ||
15829 | /* Exec catchpoints. */ | |
15830 | ops = &catch_exec_breakpoint_ops; | |
15831 | *ops = base_breakpoint_ops; | |
15832 | ops->dtor = dtor_catch_exec; | |
15833 | ops->insert_location = insert_catch_exec; | |
15834 | ops->remove_location = remove_catch_exec; | |
15835 | ops->breakpoint_hit = breakpoint_hit_catch_exec; | |
15836 | ops->print_it = print_it_catch_exec; | |
15837 | ops->print_one = print_one_catch_exec; | |
15838 | ops->print_mention = print_mention_catch_exec; | |
15839 | ops->print_recreate = print_recreate_catch_exec; | |
15840 | ||
15841 | /* Syscall catchpoints. */ | |
15842 | ops = &catch_syscall_breakpoint_ops; | |
15843 | *ops = base_breakpoint_ops; | |
15844 | ops->dtor = dtor_catch_syscall; | |
15845 | ops->insert_location = insert_catch_syscall; | |
15846 | ops->remove_location = remove_catch_syscall; | |
15847 | ops->breakpoint_hit = breakpoint_hit_catch_syscall; | |
15848 | ops->print_it = print_it_catch_syscall; | |
15849 | ops->print_one = print_one_catch_syscall; | |
15850 | ops->print_mention = print_mention_catch_syscall; | |
15851 | ops->print_recreate = print_recreate_catch_syscall; | |
edcc5120 TT |
15852 | |
15853 | /* Solib-related catchpoints. */ | |
15854 | ops = &catch_solib_breakpoint_ops; | |
15855 | *ops = base_breakpoint_ops; | |
15856 | ops->dtor = dtor_catch_solib; | |
15857 | ops->insert_location = insert_catch_solib; | |
15858 | ops->remove_location = remove_catch_solib; | |
15859 | ops->breakpoint_hit = breakpoint_hit_catch_solib; | |
15860 | ops->check_status = check_status_catch_solib; | |
15861 | ops->print_it = print_it_catch_solib; | |
15862 | ops->print_one = print_one_catch_solib; | |
15863 | ops->print_mention = print_mention_catch_solib; | |
15864 | ops->print_recreate = print_recreate_catch_solib; | |
e7e0cddf SS |
15865 | |
15866 | ops = &dprintf_breakpoint_ops; | |
15867 | *ops = bkpt_base_breakpoint_ops; | |
5c2b4418 | 15868 | ops->re_set = dprintf_re_set; |
e7e0cddf SS |
15869 | ops->resources_needed = bkpt_resources_needed; |
15870 | ops->print_it = bkpt_print_it; | |
15871 | ops->print_mention = bkpt_print_mention; | |
2d9442cc | 15872 | ops->print_recreate = dprintf_print_recreate; |
2060206e PA |
15873 | } |
15874 | ||
8bfd80db YQ |
15875 | /* Chain containing all defined "enable breakpoint" subcommands. */ |
15876 | ||
15877 | static struct cmd_list_element *enablebreaklist = NULL; | |
15878 | ||
c906108c | 15879 | void |
fba45db2 | 15880 | _initialize_breakpoint (void) |
c906108c SS |
15881 | { |
15882 | struct cmd_list_element *c; | |
15883 | ||
2060206e PA |
15884 | initialize_breakpoint_ops (); |
15885 | ||
84acb35a | 15886 | observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib); |
6c95b8df | 15887 | observer_attach_inferior_exit (clear_syscall_counts); |
1f3b5d1b | 15888 | observer_attach_memory_changed (invalidate_bp_value_on_memory_change); |
84acb35a | 15889 | |
55aa24fb SDJ |
15890 | breakpoint_objfile_key |
15891 | = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes); | |
17450429 | 15892 | |
fa3064dd | 15893 | catch_syscall_inferior_data |
8e260fc0 TT |
15894 | = register_inferior_data_with_cleanup (NULL, |
15895 | catch_syscall_inferior_data_cleanup); | |
fa3064dd | 15896 | |
c906108c SS |
15897 | breakpoint_chain = 0; |
15898 | /* Don't bother to call set_breakpoint_count. $bpnum isn't useful | |
15899 | before a breakpoint is set. */ | |
15900 | breakpoint_count = 0; | |
15901 | ||
1042e4c0 SS |
15902 | tracepoint_count = 0; |
15903 | ||
1bedd215 AC |
15904 | add_com ("ignore", class_breakpoint, ignore_command, _("\ |
15905 | Set ignore-count of breakpoint number N to COUNT.\n\ | |
15906 | Usage is `ignore N COUNT'.")); | |
c906108c | 15907 | if (xdb_commands) |
c5aa993b | 15908 | add_com_alias ("bc", "ignore", class_breakpoint, 1); |
c906108c | 15909 | |
1bedd215 AC |
15910 | add_com ("commands", class_breakpoint, commands_command, _("\ |
15911 | Set commands to be executed when a breakpoint is hit.\n\ | |
c906108c SS |
15912 | Give breakpoint number as argument after \"commands\".\n\ |
15913 | With no argument, the targeted breakpoint is the last one set.\n\ | |
15914 | The commands themselves follow starting on the next line.\n\ | |
15915 | Type a line containing \"end\" to indicate the end of them.\n\ | |
15916 | Give \"silent\" as the first line to make the breakpoint silent;\n\ | |
1bedd215 | 15917 | then no output is printed when it is hit, except what the commands print.")); |
c906108c | 15918 | |
d55637df | 15919 | c = add_com ("condition", class_breakpoint, condition_command, _("\ |
1bedd215 | 15920 | Specify breakpoint number N to break only if COND is true.\n\ |
c906108c | 15921 | Usage is `condition N COND', where N is an integer and COND is an\n\ |
1bedd215 | 15922 | expression to be evaluated whenever breakpoint N is reached.")); |
d55637df | 15923 | set_cmd_completer (c, condition_completer); |
c906108c | 15924 | |
1bedd215 | 15925 | c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\ |
31e2b00f | 15926 | Set a temporary breakpoint.\n\ |
c906108c SS |
15927 | Like \"break\" except the breakpoint is only temporary,\n\ |
15928 | so it will be deleted when hit. Equivalent to \"break\" followed\n\ | |
31e2b00f AS |
15929 | by using \"enable delete\" on the breakpoint number.\n\ |
15930 | \n" | |
15931 | BREAK_ARGS_HELP ("tbreak"))); | |
5ba2abeb | 15932 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 15933 | |
1bedd215 | 15934 | c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\ |
a3be7890 | 15935 | Set a hardware assisted breakpoint.\n\ |
c906108c | 15936 | Like \"break\" except the breakpoint requires hardware support,\n\ |
31e2b00f AS |
15937 | some target hardware may not have this support.\n\ |
15938 | \n" | |
15939 | BREAK_ARGS_HELP ("hbreak"))); | |
5ba2abeb | 15940 | set_cmd_completer (c, location_completer); |
c906108c | 15941 | |
1bedd215 | 15942 | c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\ |
31e2b00f | 15943 | Set a temporary hardware assisted breakpoint.\n\ |
c906108c | 15944 | Like \"hbreak\" except the breakpoint is only temporary,\n\ |
31e2b00f AS |
15945 | so it will be deleted when hit.\n\ |
15946 | \n" | |
15947 | BREAK_ARGS_HELP ("thbreak"))); | |
5ba2abeb | 15948 | set_cmd_completer (c, location_completer); |
c906108c | 15949 | |
1bedd215 AC |
15950 | add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\ |
15951 | Enable some breakpoints.\n\ | |
c906108c SS |
15952 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15953 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
15954 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15955 | With a subcommand you can enable temporarily."), |
c906108c SS |
15956 | &enablelist, "enable ", 1, &cmdlist); |
15957 | if (xdb_commands) | |
1bedd215 AC |
15958 | add_com ("ab", class_breakpoint, enable_command, _("\ |
15959 | Enable some breakpoints.\n\ | |
c906108c SS |
15960 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15961 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
15962 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15963 | With a subcommand you can enable temporarily.")); |
c906108c SS |
15964 | |
15965 | add_com_alias ("en", "enable", class_breakpoint, 1); | |
15966 | ||
84951ab5 | 15967 | add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\ |
1bedd215 | 15968 | Enable some breakpoints.\n\ |
c906108c SS |
15969 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15970 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15971 | May be abbreviated to simply \"enable\".\n"), |
c5aa993b | 15972 | &enablebreaklist, "enable breakpoints ", 1, &enablelist); |
c906108c | 15973 | |
1a966eab AC |
15974 | add_cmd ("once", no_class, enable_once_command, _("\ |
15975 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
15976 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
c906108c SS |
15977 | &enablebreaklist); |
15978 | ||
1a966eab AC |
15979 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
15980 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
15981 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
15982 | &enablebreaklist); |
15983 | ||
816338b5 SS |
15984 | add_cmd ("count", no_class, enable_count_command, _("\ |
15985 | Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\ | |
15986 | If a breakpoint is hit while enabled in this fashion,\n\ | |
15987 | the count is decremented; when it reaches zero, the breakpoint is disabled."), | |
15988 | &enablebreaklist); | |
15989 | ||
1a966eab AC |
15990 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
15991 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
15992 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
15993 | &enablelist); |
15994 | ||
1a966eab AC |
15995 | add_cmd ("once", no_class, enable_once_command, _("\ |
15996 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
15997 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
816338b5 SS |
15998 | &enablelist); |
15999 | ||
16000 | add_cmd ("count", no_class, enable_count_command, _("\ | |
16001 | Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\ | |
16002 | If a breakpoint is hit while enabled in this fashion,\n\ | |
16003 | the count is decremented; when it reaches zero, the breakpoint is disabled."), | |
c906108c SS |
16004 | &enablelist); |
16005 | ||
1bedd215 AC |
16006 | add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\ |
16007 | Disable some breakpoints.\n\ | |
c906108c SS |
16008 | Arguments are breakpoint numbers with spaces in between.\n\ |
16009 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 16010 | A disabled breakpoint is not forgotten, but has no effect until re-enabled."), |
c906108c SS |
16011 | &disablelist, "disable ", 1, &cmdlist); |
16012 | add_com_alias ("dis", "disable", class_breakpoint, 1); | |
16013 | add_com_alias ("disa", "disable", class_breakpoint, 1); | |
16014 | if (xdb_commands) | |
1bedd215 AC |
16015 | add_com ("sb", class_breakpoint, disable_command, _("\ |
16016 | Disable some breakpoints.\n\ | |
c906108c SS |
16017 | Arguments are breakpoint numbers with spaces in between.\n\ |
16018 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 16019 | A disabled breakpoint is not forgotten, but has no effect until re-enabled.")); |
c906108c | 16020 | |
1a966eab AC |
16021 | add_cmd ("breakpoints", class_alias, disable_command, _("\ |
16022 | Disable some breakpoints.\n\ | |
c906108c SS |
16023 | Arguments are breakpoint numbers with spaces in between.\n\ |
16024 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 16025 | A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\ |
1a966eab | 16026 | This command may be abbreviated \"disable\"."), |
c906108c SS |
16027 | &disablelist); |
16028 | ||
1bedd215 AC |
16029 | add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\ |
16030 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
16031 | Arguments are breakpoint numbers with spaces in between.\n\ |
16032 | To delete all breakpoints, give no argument.\n\ | |
16033 | \n\ | |
16034 | Also a prefix command for deletion of other GDB objects.\n\ | |
1bedd215 | 16035 | The \"unset\" command is also an alias for \"delete\"."), |
c906108c SS |
16036 | &deletelist, "delete ", 1, &cmdlist); |
16037 | add_com_alias ("d", "delete", class_breakpoint, 1); | |
7f198e01 | 16038 | add_com_alias ("del", "delete", class_breakpoint, 1); |
c906108c | 16039 | if (xdb_commands) |
1bedd215 AC |
16040 | add_com ("db", class_breakpoint, delete_command, _("\ |
16041 | Delete some breakpoints.\n\ | |
c906108c | 16042 | Arguments are breakpoint numbers with spaces in between.\n\ |
1bedd215 | 16043 | To delete all breakpoints, give no argument.\n")); |
c906108c | 16044 | |
1a966eab AC |
16045 | add_cmd ("breakpoints", class_alias, delete_command, _("\ |
16046 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
16047 | Arguments are breakpoint numbers with spaces in between.\n\ |
16048 | To delete all breakpoints, give no argument.\n\ | |
1a966eab | 16049 | This command may be abbreviated \"delete\"."), |
c906108c SS |
16050 | &deletelist); |
16051 | ||
1bedd215 AC |
16052 | add_com ("clear", class_breakpoint, clear_command, _("\ |
16053 | Clear breakpoint at specified line or function.\n\ | |
c906108c SS |
16054 | Argument may be line number, function name, or \"*\" and an address.\n\ |
16055 | If line number is specified, all breakpoints in that line are cleared.\n\ | |
16056 | If function is specified, breakpoints at beginning of function are cleared.\n\ | |
1bedd215 AC |
16057 | If an address is specified, breakpoints at that address are cleared.\n\ |
16058 | \n\ | |
16059 | With no argument, clears all breakpoints in the line that the selected frame\n\ | |
c906108c SS |
16060 | is executing in.\n\ |
16061 | \n\ | |
1bedd215 | 16062 | See also the \"delete\" command which clears breakpoints by number.")); |
a6cc4789 | 16063 | add_com_alias ("cl", "clear", class_breakpoint, 1); |
c906108c | 16064 | |
1bedd215 | 16065 | c = add_com ("break", class_breakpoint, break_command, _("\ |
31e2b00f AS |
16066 | Set breakpoint at specified line or function.\n" |
16067 | BREAK_ARGS_HELP ("break"))); | |
5ba2abeb | 16068 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 16069 | |
c906108c SS |
16070 | add_com_alias ("b", "break", class_run, 1); |
16071 | add_com_alias ("br", "break", class_run, 1); | |
16072 | add_com_alias ("bre", "break", class_run, 1); | |
16073 | add_com_alias ("brea", "break", class_run, 1); | |
16074 | ||
7681d515 PM |
16075 | if (xdb_commands) |
16076 | add_com_alias ("ba", "break", class_breakpoint, 1); | |
c906108c SS |
16077 | |
16078 | if (dbx_commands) | |
16079 | { | |
1bedd215 AC |
16080 | add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\ |
16081 | Break in function/address or break at a line in the current file."), | |
c5aa993b JM |
16082 | &stoplist, "stop ", 1, &cmdlist); |
16083 | add_cmd ("in", class_breakpoint, stopin_command, | |
1a966eab | 16084 | _("Break in function or address."), &stoplist); |
c5aa993b | 16085 | add_cmd ("at", class_breakpoint, stopat_command, |
1a966eab | 16086 | _("Break at a line in the current file."), &stoplist); |
1bedd215 AC |
16087 | add_com ("status", class_info, breakpoints_info, _("\ |
16088 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
16089 | The \"Type\" column indicates one of:\n\ |
16090 | \tbreakpoint - normal breakpoint\n\ | |
16091 | \twatchpoint - watchpoint\n\ | |
16092 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
16093 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
16094 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
16095 | address and file/line number respectively.\n\ |
16096 | \n\ | |
16097 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
16098 | are set to the address of the last breakpoint listed unless the command\n\ |
16099 | is prefixed with \"server \".\n\n\ | |
c906108c | 16100 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 16101 | breakpoint set.")); |
c906108c SS |
16102 | } |
16103 | ||
1bedd215 | 16104 | add_info ("breakpoints", breakpoints_info, _("\ |
e5a67952 | 16105 | Status of specified breakpoints (all user-settable breakpoints if no argument).\n\ |
c906108c SS |
16106 | The \"Type\" column indicates one of:\n\ |
16107 | \tbreakpoint - normal breakpoint\n\ | |
16108 | \twatchpoint - watchpoint\n\ | |
16109 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
16110 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
16111 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
16112 | address and file/line number respectively.\n\ |
16113 | \n\ | |
16114 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
16115 | are set to the address of the last breakpoint listed unless the command\n\ |
16116 | is prefixed with \"server \".\n\n\ | |
c906108c | 16117 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 16118 | breakpoint set.")); |
c906108c | 16119 | |
6b04bdb7 MS |
16120 | add_info_alias ("b", "breakpoints", 1); |
16121 | ||
c906108c | 16122 | if (xdb_commands) |
1bedd215 AC |
16123 | add_com ("lb", class_breakpoint, breakpoints_info, _("\ |
16124 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
16125 | The \"Type\" column indicates one of:\n\ |
16126 | \tbreakpoint - normal breakpoint\n\ | |
16127 | \twatchpoint - watchpoint\n\ | |
16128 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
16129 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
16130 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
16131 | address and file/line number respectively.\n\ |
16132 | \n\ | |
16133 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
16134 | are set to the address of the last breakpoint listed unless the command\n\ |
16135 | is prefixed with \"server \".\n\n\ | |
c906108c | 16136 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 16137 | breakpoint set.")); |
c906108c | 16138 | |
1a966eab AC |
16139 | add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\ |
16140 | Status of all breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
16141 | The \"Type\" column indicates one of:\n\ |
16142 | \tbreakpoint - normal breakpoint\n\ | |
16143 | \twatchpoint - watchpoint\n\ | |
16144 | \tlongjmp - internal breakpoint used to step through longjmp()\n\ | |
16145 | \tlongjmp resume - internal breakpoint at the target of longjmp()\n\ | |
16146 | \tuntil - internal breakpoint used by the \"until\" command\n\ | |
1a966eab AC |
16147 | \tfinish - internal breakpoint used by the \"finish\" command\n\ |
16148 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
c906108c SS |
16149 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ |
16150 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1a966eab AC |
16151 | address and file/line number respectively.\n\ |
16152 | \n\ | |
16153 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
16154 | are set to the address of the last breakpoint listed unless the command\n\ |
16155 | is prefixed with \"server \".\n\n\ | |
c906108c | 16156 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1a966eab | 16157 | breakpoint set."), |
c906108c SS |
16158 | &maintenanceinfolist); |
16159 | ||
44feb3ce TT |
16160 | add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\ |
16161 | Set catchpoints to catch events."), | |
16162 | &catch_cmdlist, "catch ", | |
16163 | 0/*allow-unknown*/, &cmdlist); | |
16164 | ||
16165 | add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\ | |
16166 | Set temporary catchpoints to catch events."), | |
16167 | &tcatch_cmdlist, "tcatch ", | |
16168 | 0/*allow-unknown*/, &cmdlist); | |
16169 | ||
44feb3ce TT |
16170 | add_catch_command ("fork", _("Catch calls to fork."), |
16171 | catch_fork_command_1, | |
a96d9b2e | 16172 | NULL, |
44feb3ce TT |
16173 | (void *) (uintptr_t) catch_fork_permanent, |
16174 | (void *) (uintptr_t) catch_fork_temporary); | |
16175 | add_catch_command ("vfork", _("Catch calls to vfork."), | |
16176 | catch_fork_command_1, | |
a96d9b2e | 16177 | NULL, |
44feb3ce TT |
16178 | (void *) (uintptr_t) catch_vfork_permanent, |
16179 | (void *) (uintptr_t) catch_vfork_temporary); | |
16180 | add_catch_command ("exec", _("Catch calls to exec."), | |
16181 | catch_exec_command_1, | |
a96d9b2e SDJ |
16182 | NULL, |
16183 | CATCH_PERMANENT, | |
16184 | CATCH_TEMPORARY); | |
edcc5120 TT |
16185 | add_catch_command ("load", _("Catch loads of shared libraries.\n\ |
16186 | Usage: catch load [REGEX]\n\ | |
16187 | If REGEX is given, only stop for libraries matching the regular expression."), | |
16188 | catch_load_command_1, | |
16189 | NULL, | |
16190 | CATCH_PERMANENT, | |
16191 | CATCH_TEMPORARY); | |
16192 | add_catch_command ("unload", _("Catch unloads of shared libraries.\n\ | |
16193 | Usage: catch unload [REGEX]\n\ | |
16194 | If REGEX is given, only stop for libraries matching the regular expression."), | |
16195 | catch_unload_command_1, | |
16196 | NULL, | |
16197 | CATCH_PERMANENT, | |
16198 | CATCH_TEMPORARY); | |
a96d9b2e SDJ |
16199 | add_catch_command ("syscall", _("\ |
16200 | Catch system calls by their names and/or numbers.\n\ | |
16201 | Arguments say which system calls to catch. If no arguments\n\ | |
16202 | are given, every system call will be caught.\n\ | |
16203 | Arguments, if given, should be one or more system call names\n\ | |
16204 | (if your system supports that), or system call numbers."), | |
16205 | catch_syscall_command_1, | |
16206 | catch_syscall_completer, | |
44feb3ce TT |
16207 | CATCH_PERMANENT, |
16208 | CATCH_TEMPORARY); | |
c5aa993b | 16209 | |
1bedd215 AC |
16210 | c = add_com ("watch", class_breakpoint, watch_command, _("\ |
16211 | Set a watchpoint for an expression.\n\ | |
06a64a0b | 16212 | Usage: watch [-l|-location] EXPRESSION\n\ |
c906108c | 16213 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
16214 | an expression changes.\n\ |
16215 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
16216 | the memory to which it refers.")); | |
65d12d83 | 16217 | set_cmd_completer (c, expression_completer); |
c906108c | 16218 | |
1bedd215 AC |
16219 | c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\ |
16220 | Set a read watchpoint for an expression.\n\ | |
06a64a0b | 16221 | Usage: rwatch [-l|-location] EXPRESSION\n\ |
c906108c | 16222 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
16223 | an expression is read.\n\ |
16224 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
16225 | the memory to which it refers.")); | |
65d12d83 | 16226 | set_cmd_completer (c, expression_completer); |
c906108c | 16227 | |
1bedd215 AC |
16228 | c = add_com ("awatch", class_breakpoint, awatch_command, _("\ |
16229 | Set a watchpoint for an expression.\n\ | |
06a64a0b | 16230 | Usage: awatch [-l|-location] EXPRESSION\n\ |
c906108c | 16231 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
16232 | an expression is either read or written.\n\ |
16233 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
16234 | the memory to which it refers.")); | |
65d12d83 | 16235 | set_cmd_completer (c, expression_completer); |
c906108c | 16236 | |
d77f58be | 16237 | add_info ("watchpoints", watchpoints_info, _("\ |
e5a67952 | 16238 | Status of specified watchpoints (all watchpoints if no argument).")); |
c906108c | 16239 | |
920d2a44 AC |
16240 | /* XXX: cagney/2005-02-23: This should be a boolean, and should |
16241 | respond to changes - contrary to the description. */ | |
85c07804 AC |
16242 | add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support, |
16243 | &can_use_hw_watchpoints, _("\ | |
16244 | Set debugger's willingness to use watchpoint hardware."), _("\ | |
16245 | Show debugger's willingness to use watchpoint hardware."), _("\ | |
c906108c SS |
16246 | If zero, gdb will not use hardware for new watchpoints, even if\n\ |
16247 | such is available. (However, any hardware watchpoints that were\n\ | |
16248 | created before setting this to nonzero, will continue to use watchpoint\n\ | |
85c07804 AC |
16249 | hardware.)"), |
16250 | NULL, | |
920d2a44 | 16251 | show_can_use_hw_watchpoints, |
85c07804 | 16252 | &setlist, &showlist); |
c906108c SS |
16253 | |
16254 | can_use_hw_watchpoints = 1; | |
fa8d40ab | 16255 | |
1042e4c0 SS |
16256 | /* Tracepoint manipulation commands. */ |
16257 | ||
16258 | c = add_com ("trace", class_breakpoint, trace_command, _("\ | |
16259 | Set a tracepoint at specified line or function.\n\ | |
16260 | \n" | |
16261 | BREAK_ARGS_HELP ("trace") "\n\ | |
16262 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
16263 | set_cmd_completer (c, location_completer); | |
16264 | ||
16265 | add_com_alias ("tp", "trace", class_alias, 0); | |
16266 | add_com_alias ("tr", "trace", class_alias, 1); | |
16267 | add_com_alias ("tra", "trace", class_alias, 1); | |
16268 | add_com_alias ("trac", "trace", class_alias, 1); | |
16269 | ||
7a697b8d SS |
16270 | c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\ |
16271 | Set a fast tracepoint at specified line or function.\n\ | |
16272 | \n" | |
16273 | BREAK_ARGS_HELP ("ftrace") "\n\ | |
16274 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
16275 | set_cmd_completer (c, location_completer); | |
16276 | ||
0fb4aa4b PA |
16277 | c = add_com ("strace", class_breakpoint, strace_command, _("\ |
16278 | Set a static tracepoint at specified line, function or marker.\n\ | |
16279 | \n\ | |
16280 | strace [LOCATION] [if CONDITION]\n\ | |
16281 | LOCATION may be a line number, function name, \"*\" and an address,\n\ | |
16282 | or -m MARKER_ID.\n\ | |
16283 | If a line number is specified, probe the marker at start of code\n\ | |
16284 | for that line. If a function is specified, probe the marker at start\n\ | |
16285 | of code for that function. If an address is specified, probe the marker\n\ | |
16286 | at that exact address. If a marker id is specified, probe the marker\n\ | |
16287 | with that name. With no LOCATION, uses current execution address of\n\ | |
16288 | the selected stack frame.\n\ | |
16289 | Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\ | |
16290 | This collects arbitrary user data passed in the probe point call to the\n\ | |
16291 | tracing library. You can inspect it when analyzing the trace buffer,\n\ | |
16292 | by printing the $_sdata variable like any other convenience variable.\n\ | |
16293 | \n\ | |
16294 | CONDITION is a boolean expression.\n\ | |
16295 | \n\ | |
d41c0fc8 PA |
16296 | Multiple tracepoints at one place are permitted, and useful if their\n\ |
16297 | conditions are different.\n\ | |
0fb4aa4b PA |
16298 | \n\ |
16299 | Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\ | |
16300 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
16301 | set_cmd_completer (c, location_completer); | |
16302 | ||
1042e4c0 | 16303 | add_info ("tracepoints", tracepoints_info, _("\ |
e5a67952 | 16304 | Status of specified tracepoints (all tracepoints if no argument).\n\ |
1042e4c0 SS |
16305 | Convenience variable \"$tpnum\" contains the number of the\n\ |
16306 | last tracepoint set.")); | |
16307 | ||
16308 | add_info_alias ("tp", "tracepoints", 1); | |
16309 | ||
16310 | add_cmd ("tracepoints", class_trace, delete_trace_command, _("\ | |
16311 | Delete specified tracepoints.\n\ | |
16312 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
16313 | No argument means delete all tracepoints."), | |
16314 | &deletelist); | |
7e20dfcd | 16315 | add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist); |
1042e4c0 SS |
16316 | |
16317 | c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\ | |
16318 | Disable specified tracepoints.\n\ | |
16319 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
16320 | No argument means disable all tracepoints."), | |
16321 | &disablelist); | |
16322 | deprecate_cmd (c, "disable"); | |
16323 | ||
16324 | c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\ | |
16325 | Enable specified tracepoints.\n\ | |
16326 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
16327 | No argument means enable all tracepoints."), | |
16328 | &enablelist); | |
16329 | deprecate_cmd (c, "enable"); | |
16330 | ||
16331 | add_com ("passcount", class_trace, trace_pass_command, _("\ | |
16332 | Set the passcount for a tracepoint.\n\ | |
16333 | The trace will end when the tracepoint has been passed 'count' times.\n\ | |
16334 | Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\ | |
16335 | if TPNUM is omitted, passcount refers to the last tracepoint defined.")); | |
16336 | ||
6149aea9 PA |
16337 | add_prefix_cmd ("save", class_breakpoint, save_command, |
16338 | _("Save breakpoint definitions as a script."), | |
16339 | &save_cmdlist, "save ", | |
16340 | 0/*allow-unknown*/, &cmdlist); | |
16341 | ||
16342 | c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\ | |
16343 | Save current breakpoint definitions as a script.\n\ | |
cce7e648 | 16344 | This includes all types of breakpoints (breakpoints, watchpoints,\n\ |
6149aea9 PA |
16345 | catchpoints, tracepoints). Use the 'source' command in another debug\n\ |
16346 | session to restore them."), | |
16347 | &save_cmdlist); | |
16348 | set_cmd_completer (c, filename_completer); | |
16349 | ||
16350 | c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\ | |
1042e4c0 | 16351 | Save current tracepoint definitions as a script.\n\ |
6149aea9 PA |
16352 | Use the 'source' command in another debug session to restore them."), |
16353 | &save_cmdlist); | |
1042e4c0 SS |
16354 | set_cmd_completer (c, filename_completer); |
16355 | ||
6149aea9 PA |
16356 | c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0); |
16357 | deprecate_cmd (c, "save tracepoints"); | |
16358 | ||
1bedd215 | 16359 | add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\ |
fa8d40ab JJ |
16360 | Breakpoint specific settings\n\ |
16361 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 16362 | pending breakpoint behavior"), |
fa8d40ab JJ |
16363 | &breakpoint_set_cmdlist, "set breakpoint ", |
16364 | 0/*allow-unknown*/, &setlist); | |
1bedd215 | 16365 | add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\ |
fa8d40ab JJ |
16366 | Breakpoint specific settings\n\ |
16367 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 16368 | pending breakpoint behavior"), |
fa8d40ab JJ |
16369 | &breakpoint_show_cmdlist, "show breakpoint ", |
16370 | 0/*allow-unknown*/, &showlist); | |
16371 | ||
7915a72c AC |
16372 | add_setshow_auto_boolean_cmd ("pending", no_class, |
16373 | &pending_break_support, _("\ | |
16374 | Set debugger's behavior regarding pending breakpoints."), _("\ | |
16375 | Show debugger's behavior regarding pending breakpoints."), _("\ | |
6e1d7d6c AC |
16376 | If on, an unrecognized breakpoint location will cause gdb to create a\n\ |
16377 | pending breakpoint. If off, an unrecognized breakpoint location results in\n\ | |
16378 | an error. If auto, an unrecognized breakpoint location results in a\n\ | |
7915a72c | 16379 | user-query to see if a pending breakpoint should be created."), |
2c5b56ce | 16380 | NULL, |
920d2a44 | 16381 | show_pending_break_support, |
6e1d7d6c AC |
16382 | &breakpoint_set_cmdlist, |
16383 | &breakpoint_show_cmdlist); | |
fa8d40ab JJ |
16384 | |
16385 | pending_break_support = AUTO_BOOLEAN_AUTO; | |
765dc015 VP |
16386 | |
16387 | add_setshow_boolean_cmd ("auto-hw", no_class, | |
16388 | &automatic_hardware_breakpoints, _("\ | |
16389 | Set automatic usage of hardware breakpoints."), _("\ | |
16390 | Show automatic usage of hardware breakpoints."), _("\ | |
16391 | If set, the debugger will automatically use hardware breakpoints for\n\ | |
16392 | breakpoints set with \"break\" but falling in read-only memory. If not set,\n\ | |
16393 | a warning will be emitted for such breakpoints."), | |
16394 | NULL, | |
16395 | show_automatic_hardware_breakpoints, | |
16396 | &breakpoint_set_cmdlist, | |
16397 | &breakpoint_show_cmdlist); | |
74960c60 | 16398 | |
72d0e2c5 YQ |
16399 | add_setshow_auto_boolean_cmd ("always-inserted", class_support, |
16400 | &always_inserted_mode, _("\ | |
74960c60 VP |
16401 | Set mode for inserting breakpoints."), _("\ |
16402 | Show mode for inserting breakpoints."), _("\ | |
33e5cbd6 PA |
16403 | When this mode is off, breakpoints are inserted in inferior when it is\n\ |
16404 | resumed, and removed when execution stops. When this mode is on,\n\ | |
16405 | breakpoints are inserted immediately and removed only when the user\n\ | |
16406 | deletes the breakpoint. When this mode is auto (which is the default),\n\ | |
16407 | the behaviour depends on the non-stop setting (see help set non-stop).\n\ | |
16408 | In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\ | |
16409 | behaves as if always-inserted mode is on; if gdb is controlling the\n\ | |
16410 | inferior in all-stop mode, gdb behaves as if always-inserted mode is off."), | |
72d0e2c5 YQ |
16411 | NULL, |
16412 | &show_always_inserted_mode, | |
16413 | &breakpoint_set_cmdlist, | |
16414 | &breakpoint_show_cmdlist); | |
f1310107 | 16415 | |
b775012e LM |
16416 | add_setshow_enum_cmd ("condition-evaluation", class_breakpoint, |
16417 | condition_evaluation_enums, | |
16418 | &condition_evaluation_mode_1, _("\ | |
16419 | Set mode of breakpoint condition evaluation."), _("\ | |
16420 | Show mode of breakpoint condition evaluation."), _("\ | |
d1cda5d9 | 16421 | When this is set to \"host\", breakpoint conditions will be\n\ |
b775012e LM |
16422 | evaluated on the host's side by GDB. When it is set to \"target\",\n\ |
16423 | breakpoint conditions will be downloaded to the target (if the target\n\ | |
16424 | supports such feature) and conditions will be evaluated on the target's side.\n\ | |
16425 | If this is set to \"auto\" (default), this will be automatically set to\n\ | |
16426 | \"target\" if it supports condition evaluation, otherwise it will\n\ | |
16427 | be set to \"gdb\""), | |
16428 | &set_condition_evaluation_mode, | |
16429 | &show_condition_evaluation_mode, | |
16430 | &breakpoint_set_cmdlist, | |
16431 | &breakpoint_show_cmdlist); | |
16432 | ||
f1310107 TJB |
16433 | add_com ("break-range", class_breakpoint, break_range_command, _("\ |
16434 | Set a breakpoint for an address range.\n\ | |
16435 | break-range START-LOCATION, END-LOCATION\n\ | |
16436 | where START-LOCATION and END-LOCATION can be one of the following:\n\ | |
16437 | LINENUM, for that line in the current file,\n\ | |
16438 | FILE:LINENUM, for that line in that file,\n\ | |
16439 | +OFFSET, for that number of lines after the current line\n\ | |
16440 | or the start of the range\n\ | |
16441 | FUNCTION, for the first line in that function,\n\ | |
16442 | FILE:FUNCTION, to distinguish among like-named static functions.\n\ | |
16443 | *ADDRESS, for the instruction at that address.\n\ | |
16444 | \n\ | |
16445 | The breakpoint will stop execution of the inferior whenever it executes\n\ | |
16446 | an instruction at any address within the [START-LOCATION, END-LOCATION]\n\ | |
16447 | range (including START-LOCATION and END-LOCATION).")); | |
16448 | ||
e7e0cddf SS |
16449 | c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\ |
16450 | Set a dynamic printf at specified line or function.\n\ | |
16451 | dprintf location,format string,arg1,arg2,...\n\ | |
16452 | location may be a line number, function name, or \"*\" and an address.\n\ | |
16453 | If a line number is specified, break at start of code for that line.\n\ | |
16454 | If a function is specified, break at start of code for that function.\n\ | |
16455 | ")); | |
16456 | set_cmd_completer (c, location_completer); | |
16457 | ||
16458 | add_setshow_enum_cmd ("dprintf-style", class_support, | |
16459 | dprintf_style_enums, &dprintf_style, _("\ | |
16460 | Set the style of usage for dynamic printf."), _("\ | |
16461 | Show the style of usage for dynamic printf."), _("\ | |
16462 | This setting chooses how GDB will do a dynamic printf.\n\ | |
16463 | If the value is \"gdb\", then the printing is done by GDB to its own\n\ | |
16464 | console, as with the \"printf\" command.\n\ | |
16465 | If the value is \"call\", the print is done by calling a function in your\n\ | |
16466 | program; by default printf(), but you can choose a different function or\n\ | |
16467 | output stream by setting dprintf-function and dprintf-channel."), | |
16468 | update_dprintf_commands, NULL, | |
16469 | &setlist, &showlist); | |
16470 | ||
16471 | dprintf_function = xstrdup ("printf"); | |
16472 | add_setshow_string_cmd ("dprintf-function", class_support, | |
16473 | &dprintf_function, _("\ | |
16474 | Set the function to use for dynamic printf"), _("\ | |
16475 | Show the function to use for dynamic printf"), NULL, | |
16476 | update_dprintf_commands, NULL, | |
16477 | &setlist, &showlist); | |
16478 | ||
16479 | dprintf_channel = xstrdup (""); | |
16480 | add_setshow_string_cmd ("dprintf-channel", class_support, | |
16481 | &dprintf_channel, _("\ | |
16482 | Set the channel to use for dynamic printf"), _("\ | |
16483 | Show the channel to use for dynamic printf"), NULL, | |
16484 | update_dprintf_commands, NULL, | |
16485 | &setlist, &showlist); | |
16486 | ||
d3ce09f5 SS |
16487 | add_setshow_boolean_cmd ("disconnected-dprintf", no_class, |
16488 | &disconnected_dprintf, _("\ | |
16489 | Set whether dprintf continues after GDB disconnects."), _("\ | |
16490 | Show whether dprintf continues after GDB disconnects."), _("\ | |
16491 | Use this to let dprintf commands continue to hit and produce output\n\ | |
16492 | even if GDB disconnects or detaches from the target."), | |
16493 | NULL, | |
16494 | NULL, | |
16495 | &setlist, &showlist); | |
16496 | ||
16497 | add_com ("agent-printf", class_vars, agent_printf_command, _("\ | |
16498 | agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\ | |
16499 | (target agent only) This is useful for formatted output in user-defined commands.")); | |
16500 | ||
765dc015 | 16501 | automatic_hardware_breakpoints = 1; |
f3b1572e PA |
16502 | |
16503 | observer_attach_about_to_proceed (breakpoint_about_to_proceed); | |
c906108c | 16504 | } |