]>
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 *, | |
e7e0cddf | 122 | char *, char *, enum bptype, |
983af33b SDJ |
123 | enum bpdisp, int, int, |
124 | int, | |
125 | const struct breakpoint_ops *, | |
44f238bb | 126 | int, int, int, unsigned); |
983af33b SDJ |
127 | |
128 | static void decode_linespec_default (struct breakpoint *, char **, | |
129 | struct symtabs_and_lines *); | |
130 | ||
a14ed312 | 131 | static void clear_command (char *, int); |
c906108c | 132 | |
a14ed312 | 133 | static void catch_command (char *, int); |
c906108c | 134 | |
a9634178 | 135 | static int can_use_hardware_watchpoint (struct value *); |
c906108c | 136 | |
98deb0da | 137 | static void break_command_1 (char *, int, int); |
c906108c | 138 | |
a14ed312 | 139 | static void mention (struct breakpoint *); |
c906108c | 140 | |
348d480f PA |
141 | static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *, |
142 | enum bptype, | |
c0a91b2b | 143 | const struct breakpoint_ops *); |
3742cc8b YQ |
144 | static struct bp_location *add_location_to_breakpoint (struct breakpoint *, |
145 | const struct symtab_and_line *); | |
146 | ||
4a64f543 MS |
147 | /* This function is used in gdbtk sources and thus can not be made |
148 | static. */ | |
63c252f8 | 149 | struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch, |
348d480f | 150 | struct symtab_and_line, |
c0a91b2b TT |
151 | enum bptype, |
152 | const struct breakpoint_ops *); | |
c906108c | 153 | |
06edf0c0 PA |
154 | static struct breakpoint * |
155 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
156 | enum bptype type, | |
c0a91b2b | 157 | const struct breakpoint_ops *ops); |
06edf0c0 | 158 | |
76897487 KB |
159 | static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int); |
160 | ||
a6d9a66e UW |
161 | static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch, |
162 | CORE_ADDR bpaddr, | |
88f7da05 | 163 | enum bptype bptype); |
76897487 | 164 | |
6c95b8df PA |
165 | static void describe_other_breakpoints (struct gdbarch *, |
166 | struct program_space *, CORE_ADDR, | |
5af949e3 | 167 | struct obj_section *, int); |
c906108c | 168 | |
6c95b8df PA |
169 | static int breakpoint_address_match (struct address_space *aspace1, |
170 | CORE_ADDR addr1, | |
171 | struct address_space *aspace2, | |
172 | CORE_ADDR addr2); | |
173 | ||
85d721b8 PA |
174 | static int watchpoint_locations_match (struct bp_location *loc1, |
175 | struct bp_location *loc2); | |
176 | ||
f1310107 TJB |
177 | static int breakpoint_location_address_match (struct bp_location *bl, |
178 | struct address_space *aspace, | |
179 | CORE_ADDR addr); | |
180 | ||
a14ed312 | 181 | static void breakpoints_info (char *, int); |
c906108c | 182 | |
d77f58be SS |
183 | static void watchpoints_info (char *, int); |
184 | ||
e5a67952 MS |
185 | static int breakpoint_1 (char *, int, |
186 | int (*) (const struct breakpoint *)); | |
c906108c | 187 | |
4efb68b1 | 188 | static int breakpoint_cond_eval (void *); |
c906108c | 189 | |
4efb68b1 | 190 | static void cleanup_executing_breakpoints (void *); |
c906108c | 191 | |
a14ed312 | 192 | static void commands_command (char *, int); |
c906108c | 193 | |
a14ed312 | 194 | static void condition_command (char *, int); |
c906108c | 195 | |
c5aa993b JM |
196 | typedef enum |
197 | { | |
198 | mark_inserted, | |
199 | mark_uninserted | |
200 | } | |
201 | insertion_state_t; | |
c906108c | 202 | |
0bde7532 | 203 | static int remove_breakpoint (struct bp_location *, insertion_state_t); |
6c95b8df | 204 | static int remove_breakpoint_1 (struct bp_location *, insertion_state_t); |
c906108c | 205 | |
e514a9d6 | 206 | static enum print_stop_action print_bp_stop_message (bpstat bs); |
c906108c | 207 | |
4efb68b1 | 208 | static int watchpoint_check (void *); |
c906108c | 209 | |
a14ed312 | 210 | static void maintenance_info_breakpoints (char *, int); |
c906108c | 211 | |
a14ed312 | 212 | static int hw_breakpoint_used_count (void); |
c906108c | 213 | |
a1398e0c PA |
214 | static int hw_watchpoint_use_count (struct breakpoint *); |
215 | ||
216 | static int hw_watchpoint_used_count_others (struct breakpoint *except, | |
217 | enum bptype type, | |
218 | int *other_type_used); | |
c906108c | 219 | |
a14ed312 | 220 | static void hbreak_command (char *, int); |
c906108c | 221 | |
a14ed312 | 222 | static void thbreak_command (char *, int); |
c906108c | 223 | |
816338b5 SS |
224 | static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp, |
225 | int count); | |
c906108c | 226 | |
a14ed312 | 227 | static void stop_command (char *arg, int from_tty); |
7a292a7a | 228 | |
a14ed312 | 229 | static void stopin_command (char *arg, int from_tty); |
7a292a7a | 230 | |
a14ed312 | 231 | static void stopat_command (char *arg, int from_tty); |
7a292a7a | 232 | |
a14ed312 | 233 | static void tcatch_command (char *arg, int from_tty); |
7a292a7a | 234 | |
d03285ec UW |
235 | static void detach_single_step_breakpoints (void); |
236 | ||
6c95b8df PA |
237 | static int single_step_breakpoint_inserted_here_p (struct address_space *, |
238 | CORE_ADDR pc); | |
1aafd4da | 239 | |
fe3f5fa8 | 240 | static void free_bp_location (struct bp_location *loc); |
f431efe5 PA |
241 | static void incref_bp_location (struct bp_location *loc); |
242 | static void decref_bp_location (struct bp_location **loc); | |
fe3f5fa8 | 243 | |
39d61571 | 244 | static struct bp_location *allocate_bp_location (struct breakpoint *bpt); |
a5606eee | 245 | |
b60e7edf | 246 | static void update_global_location_list (int); |
a5606eee | 247 | |
b60e7edf | 248 | static void update_global_location_list_nothrow (int); |
74960c60 | 249 | |
d77f58be | 250 | static int is_hardware_watchpoint (const struct breakpoint *bpt); |
74960c60 VP |
251 | |
252 | static void insert_breakpoint_locations (void); | |
a5606eee | 253 | |
a96d9b2e SDJ |
254 | static int syscall_catchpoint_p (struct breakpoint *b); |
255 | ||
1042e4c0 SS |
256 | static void tracepoints_info (char *, int); |
257 | ||
258 | static void delete_trace_command (char *, int); | |
259 | ||
260 | static void enable_trace_command (char *, int); | |
261 | ||
262 | static void disable_trace_command (char *, int); | |
263 | ||
264 | static void trace_pass_command (char *, int); | |
265 | ||
558a9d82 YQ |
266 | static void set_tracepoint_count (int num); |
267 | ||
9c06b0b4 TJB |
268 | static int is_masked_watchpoint (const struct breakpoint *b); |
269 | ||
b775012e LM |
270 | static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address); |
271 | ||
983af33b SDJ |
272 | /* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero |
273 | otherwise. */ | |
274 | ||
275 | static int strace_marker_p (struct breakpoint *b); | |
0fb4aa4b | 276 | |
2060206e PA |
277 | /* The abstract base class all breakpoint_ops structures inherit |
278 | from. */ | |
ab04a2af | 279 | struct breakpoint_ops base_breakpoint_ops; |
2060206e PA |
280 | |
281 | /* The breakpoint_ops structure to be inherited by all breakpoint_ops | |
282 | that are implemented on top of software or hardware breakpoints | |
283 | (user breakpoints, internal and momentary breakpoints, etc.). */ | |
284 | static struct breakpoint_ops bkpt_base_breakpoint_ops; | |
285 | ||
286 | /* Internal breakpoints class type. */ | |
06edf0c0 | 287 | static struct breakpoint_ops internal_breakpoint_ops; |
2060206e PA |
288 | |
289 | /* Momentary breakpoints class type. */ | |
06edf0c0 PA |
290 | static struct breakpoint_ops momentary_breakpoint_ops; |
291 | ||
e2e4d78b JK |
292 | /* Momentary breakpoints for bp_longjmp and bp_exception class type. */ |
293 | static struct breakpoint_ops longjmp_breakpoint_ops; | |
294 | ||
2060206e PA |
295 | /* The breakpoint_ops structure to be used in regular user created |
296 | breakpoints. */ | |
297 | struct breakpoint_ops bkpt_breakpoint_ops; | |
298 | ||
55aa24fb SDJ |
299 | /* Breakpoints set on probes. */ |
300 | static struct breakpoint_ops bkpt_probe_breakpoint_ops; | |
301 | ||
e7e0cddf | 302 | /* Dynamic printf class type. */ |
c5867ab6 | 303 | struct breakpoint_ops dprintf_breakpoint_ops; |
e7e0cddf | 304 | |
d3ce09f5 SS |
305 | /* The style in which to perform a dynamic printf. This is a user |
306 | option because different output options have different tradeoffs; | |
307 | if GDB does the printing, there is better error handling if there | |
308 | is a problem with any of the arguments, but using an inferior | |
309 | function lets you have special-purpose printers and sending of | |
310 | output to the same place as compiled-in print functions. */ | |
311 | ||
312 | static const char dprintf_style_gdb[] = "gdb"; | |
313 | static const char dprintf_style_call[] = "call"; | |
314 | static const char dprintf_style_agent[] = "agent"; | |
315 | static const char *const dprintf_style_enums[] = { | |
316 | dprintf_style_gdb, | |
317 | dprintf_style_call, | |
318 | dprintf_style_agent, | |
319 | NULL | |
320 | }; | |
321 | static const char *dprintf_style = dprintf_style_gdb; | |
322 | ||
323 | /* The function to use for dynamic printf if the preferred style is to | |
324 | call into the inferior. The value is simply a string that is | |
325 | copied into the command, so it can be anything that GDB can | |
326 | evaluate to a callable address, not necessarily a function name. */ | |
327 | ||
328 | static char *dprintf_function = ""; | |
329 | ||
330 | /* The channel to use for dynamic printf if the preferred style is to | |
331 | call into the inferior; if a nonempty string, it will be passed to | |
332 | the call as the first argument, with the format string as the | |
333 | second. As with the dprintf function, this can be anything that | |
334 | GDB knows how to evaluate, so in addition to common choices like | |
335 | "stderr", this could be an app-specific expression like | |
336 | "mystreams[curlogger]". */ | |
337 | ||
338 | static char *dprintf_channel = ""; | |
339 | ||
340 | /* True if dprintf commands should continue to operate even if GDB | |
341 | has disconnected. */ | |
342 | static int disconnected_dprintf = 1; | |
343 | ||
5cea2a26 PA |
344 | /* A reference-counted struct command_line. This lets multiple |
345 | breakpoints share a single command list. */ | |
346 | struct counted_command_line | |
347 | { | |
348 | /* The reference count. */ | |
349 | int refc; | |
350 | ||
351 | /* The command list. */ | |
352 | struct command_line *commands; | |
353 | }; | |
354 | ||
355 | struct command_line * | |
356 | breakpoint_commands (struct breakpoint *b) | |
357 | { | |
358 | return b->commands ? b->commands->commands : NULL; | |
359 | } | |
3daf8fe5 | 360 | |
f3b1572e PA |
361 | /* Flag indicating that a command has proceeded the inferior past the |
362 | current breakpoint. */ | |
363 | ||
364 | static int breakpoint_proceeded; | |
365 | ||
956a9fb9 | 366 | const char * |
2cec12e5 AR |
367 | bpdisp_text (enum bpdisp disp) |
368 | { | |
4a64f543 MS |
369 | /* NOTE: the following values are a part of MI protocol and |
370 | represent values of 'disp' field returned when inferior stops at | |
371 | a breakpoint. */ | |
bc043ef3 | 372 | static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"}; |
cc59ec59 | 373 | |
2cec12e5 AR |
374 | return bpdisps[(int) disp]; |
375 | } | |
c906108c | 376 | |
4a64f543 | 377 | /* Prototypes for exported functions. */ |
c906108c | 378 | /* If FALSE, gdb will not use hardware support for watchpoints, even |
4a64f543 | 379 | if such is available. */ |
c906108c SS |
380 | static int can_use_hw_watchpoints; |
381 | ||
920d2a44 AC |
382 | static void |
383 | show_can_use_hw_watchpoints (struct ui_file *file, int from_tty, | |
384 | struct cmd_list_element *c, | |
385 | const char *value) | |
386 | { | |
3e43a32a MS |
387 | fprintf_filtered (file, |
388 | _("Debugger's willingness to use " | |
389 | "watchpoint hardware is %s.\n"), | |
920d2a44 AC |
390 | value); |
391 | } | |
392 | ||
fa8d40ab JJ |
393 | /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints. |
394 | If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints | |
4a64f543 | 395 | for unrecognized breakpoint locations. |
fa8d40ab JJ |
396 | If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */ |
397 | static enum auto_boolean pending_break_support; | |
920d2a44 AC |
398 | static void |
399 | show_pending_break_support (struct ui_file *file, int from_tty, | |
400 | struct cmd_list_element *c, | |
401 | const char *value) | |
402 | { | |
3e43a32a MS |
403 | fprintf_filtered (file, |
404 | _("Debugger's behavior regarding " | |
405 | "pending breakpoints is %s.\n"), | |
920d2a44 AC |
406 | value); |
407 | } | |
fa8d40ab | 408 | |
765dc015 | 409 | /* If 1, gdb will automatically use hardware breakpoints for breakpoints |
4a64f543 | 410 | set with "break" but falling in read-only memory. |
765dc015 VP |
411 | If 0, gdb will warn about such breakpoints, but won't automatically |
412 | use hardware breakpoints. */ | |
413 | static int automatic_hardware_breakpoints; | |
414 | static void | |
415 | show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty, | |
416 | struct cmd_list_element *c, | |
417 | const char *value) | |
418 | { | |
3e43a32a MS |
419 | fprintf_filtered (file, |
420 | _("Automatic usage of hardware breakpoints is %s.\n"), | |
765dc015 VP |
421 | value); |
422 | } | |
423 | ||
33e5cbd6 PA |
424 | /* If on, gdb will keep breakpoints inserted even as inferior is |
425 | stopped, and immediately insert any new breakpoints. If off, gdb | |
426 | will insert breakpoints into inferior only when resuming it, and | |
427 | will remove breakpoints upon stop. If auto, GDB will behave as ON | |
428 | if in non-stop mode, and as OFF if all-stop mode.*/ | |
429 | ||
72d0e2c5 YQ |
430 | static enum auto_boolean always_inserted_mode = AUTO_BOOLEAN_AUTO; |
431 | ||
33e5cbd6 | 432 | static void |
74960c60 | 433 | show_always_inserted_mode (struct ui_file *file, int from_tty, |
33e5cbd6 | 434 | struct cmd_list_element *c, const char *value) |
74960c60 | 435 | { |
72d0e2c5 | 436 | if (always_inserted_mode == AUTO_BOOLEAN_AUTO) |
3e43a32a MS |
437 | fprintf_filtered (file, |
438 | _("Always inserted breakpoint " | |
439 | "mode is %s (currently %s).\n"), | |
33e5cbd6 PA |
440 | value, |
441 | breakpoints_always_inserted_mode () ? "on" : "off"); | |
442 | else | |
3e43a32a MS |
443 | fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"), |
444 | value); | |
74960c60 VP |
445 | } |
446 | ||
33e5cbd6 PA |
447 | int |
448 | breakpoints_always_inserted_mode (void) | |
449 | { | |
72d0e2c5 YQ |
450 | return (always_inserted_mode == AUTO_BOOLEAN_TRUE |
451 | || (always_inserted_mode == AUTO_BOOLEAN_AUTO && non_stop)); | |
33e5cbd6 | 452 | } |
765dc015 | 453 | |
b775012e LM |
454 | static const char condition_evaluation_both[] = "host or target"; |
455 | ||
456 | /* Modes for breakpoint condition evaluation. */ | |
457 | static const char condition_evaluation_auto[] = "auto"; | |
458 | static const char condition_evaluation_host[] = "host"; | |
459 | static const char condition_evaluation_target[] = "target"; | |
460 | static const char *const condition_evaluation_enums[] = { | |
461 | condition_evaluation_auto, | |
462 | condition_evaluation_host, | |
463 | condition_evaluation_target, | |
464 | NULL | |
465 | }; | |
466 | ||
467 | /* Global that holds the current mode for breakpoint condition evaluation. */ | |
468 | static const char *condition_evaluation_mode_1 = condition_evaluation_auto; | |
469 | ||
470 | /* Global that we use to display information to the user (gets its value from | |
471 | condition_evaluation_mode_1. */ | |
472 | static const char *condition_evaluation_mode = condition_evaluation_auto; | |
473 | ||
474 | /* Translate a condition evaluation mode MODE into either "host" | |
475 | or "target". This is used mostly to translate from "auto" to the | |
476 | real setting that is being used. It returns the translated | |
477 | evaluation mode. */ | |
478 | ||
479 | static const char * | |
480 | translate_condition_evaluation_mode (const char *mode) | |
481 | { | |
482 | if (mode == condition_evaluation_auto) | |
483 | { | |
484 | if (target_supports_evaluation_of_breakpoint_conditions ()) | |
485 | return condition_evaluation_target; | |
486 | else | |
487 | return condition_evaluation_host; | |
488 | } | |
489 | else | |
490 | return mode; | |
491 | } | |
492 | ||
493 | /* Discovers what condition_evaluation_auto translates to. */ | |
494 | ||
495 | static const char * | |
496 | breakpoint_condition_evaluation_mode (void) | |
497 | { | |
498 | return translate_condition_evaluation_mode (condition_evaluation_mode); | |
499 | } | |
500 | ||
501 | /* Return true if GDB should evaluate breakpoint conditions or false | |
502 | otherwise. */ | |
503 | ||
504 | static int | |
505 | gdb_evaluates_breakpoint_condition_p (void) | |
506 | { | |
507 | const char *mode = breakpoint_condition_evaluation_mode (); | |
508 | ||
509 | return (mode == condition_evaluation_host); | |
510 | } | |
511 | ||
a14ed312 | 512 | void _initialize_breakpoint (void); |
c906108c | 513 | |
c906108c SS |
514 | /* Are we executing breakpoint commands? */ |
515 | static int executing_breakpoint_commands; | |
516 | ||
c02f5703 MS |
517 | /* Are overlay event breakpoints enabled? */ |
518 | static int overlay_events_enabled; | |
519 | ||
e09342b5 TJB |
520 | /* See description in breakpoint.h. */ |
521 | int target_exact_watchpoints = 0; | |
522 | ||
c906108c | 523 | /* Walk the following statement or block through all breakpoints. |
e5dd4106 | 524 | ALL_BREAKPOINTS_SAFE does so even if the statement deletes the |
4a64f543 | 525 | current breakpoint. */ |
c906108c | 526 | |
5c44784c | 527 | #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next) |
c906108c | 528 | |
5c44784c JM |
529 | #define ALL_BREAKPOINTS_SAFE(B,TMP) \ |
530 | for (B = breakpoint_chain; \ | |
531 | B ? (TMP=B->next, 1): 0; \ | |
532 | B = TMP) | |
c906108c | 533 | |
4a64f543 MS |
534 | /* Similar iterator for the low-level breakpoints. SAFE variant is |
535 | not provided so update_global_location_list must not be called | |
536 | while executing the block of ALL_BP_LOCATIONS. */ | |
7cc221ef | 537 | |
876fa593 JK |
538 | #define ALL_BP_LOCATIONS(B,BP_TMP) \ |
539 | for (BP_TMP = bp_location; \ | |
540 | BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \ | |
541 | BP_TMP++) | |
7cc221ef | 542 | |
b775012e LM |
543 | /* Iterates through locations with address ADDRESS for the currently selected |
544 | program space. BP_LOCP_TMP points to each object. BP_LOCP_START points | |
545 | to where the loop should start from. | |
546 | If BP_LOCP_START is a NULL pointer, the macro automatically seeks the | |
547 | appropriate location to start with. */ | |
548 | ||
549 | #define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \ | |
550 | for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \ | |
551 | BP_LOCP_TMP = BP_LOCP_START; \ | |
552 | BP_LOCP_START \ | |
553 | && (BP_LOCP_TMP < bp_location + bp_location_count \ | |
554 | && (*BP_LOCP_TMP)->address == ADDRESS); \ | |
555 | BP_LOCP_TMP++) | |
556 | ||
1042e4c0 SS |
557 | /* Iterator for tracepoints only. */ |
558 | ||
559 | #define ALL_TRACEPOINTS(B) \ | |
560 | for (B = breakpoint_chain; B; B = B->next) \ | |
d77f58be | 561 | if (is_tracepoint (B)) |
1042e4c0 | 562 | |
7cc221ef | 563 | /* Chains of all breakpoints defined. */ |
c906108c SS |
564 | |
565 | struct breakpoint *breakpoint_chain; | |
566 | ||
876fa593 JK |
567 | /* Array is sorted by bp_location_compare - primarily by the ADDRESS. */ |
568 | ||
569 | static struct bp_location **bp_location; | |
570 | ||
571 | /* Number of elements of BP_LOCATION. */ | |
572 | ||
573 | static unsigned bp_location_count; | |
574 | ||
4a64f543 MS |
575 | /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and |
576 | ADDRESS for the current elements of BP_LOCATION which get a valid | |
577 | result from bp_location_has_shadow. You can use it for roughly | |
578 | limiting the subrange of BP_LOCATION to scan for shadow bytes for | |
579 | an address you need to read. */ | |
876fa593 JK |
580 | |
581 | static CORE_ADDR bp_location_placed_address_before_address_max; | |
582 | ||
4a64f543 MS |
583 | /* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS |
584 | + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of | |
585 | BP_LOCATION which get a valid result from bp_location_has_shadow. | |
586 | You can use it for roughly limiting the subrange of BP_LOCATION to | |
587 | scan for shadow bytes for an address you need to read. */ | |
876fa593 JK |
588 | |
589 | static CORE_ADDR bp_location_shadow_len_after_address_max; | |
7cc221ef | 590 | |
4a64f543 MS |
591 | /* The locations that no longer correspond to any breakpoint, unlinked |
592 | from bp_location array, but for which a hit may still be reported | |
593 | by a target. */ | |
20874c92 VP |
594 | VEC(bp_location_p) *moribund_locations = NULL; |
595 | ||
c906108c SS |
596 | /* Number of last breakpoint made. */ |
597 | ||
95a42b64 TT |
598 | static int breakpoint_count; |
599 | ||
86b17b60 PA |
600 | /* The value of `breakpoint_count' before the last command that |
601 | created breakpoints. If the last (break-like) command created more | |
602 | than one breakpoint, then the difference between BREAKPOINT_COUNT | |
603 | and PREV_BREAKPOINT_COUNT is more than one. */ | |
604 | static int prev_breakpoint_count; | |
c906108c | 605 | |
1042e4c0 SS |
606 | /* Number of last tracepoint made. */ |
607 | ||
95a42b64 | 608 | static int tracepoint_count; |
1042e4c0 | 609 | |
6149aea9 PA |
610 | static struct cmd_list_element *breakpoint_set_cmdlist; |
611 | static struct cmd_list_element *breakpoint_show_cmdlist; | |
9291a0cd | 612 | struct cmd_list_element *save_cmdlist; |
6149aea9 | 613 | |
468d015d JJ |
614 | /* Return whether a breakpoint is an active enabled breakpoint. */ |
615 | static int | |
616 | breakpoint_enabled (struct breakpoint *b) | |
617 | { | |
0d381245 | 618 | return (b->enable_state == bp_enabled); |
468d015d JJ |
619 | } |
620 | ||
c906108c SS |
621 | /* Set breakpoint count to NUM. */ |
622 | ||
95a42b64 | 623 | static void |
fba45db2 | 624 | set_breakpoint_count (int num) |
c906108c | 625 | { |
86b17b60 | 626 | prev_breakpoint_count = breakpoint_count; |
c906108c | 627 | breakpoint_count = num; |
4fa62494 | 628 | set_internalvar_integer (lookup_internalvar ("bpnum"), num); |
c906108c SS |
629 | } |
630 | ||
86b17b60 PA |
631 | /* Used by `start_rbreak_breakpoints' below, to record the current |
632 | breakpoint count before "rbreak" creates any breakpoint. */ | |
633 | static int rbreak_start_breakpoint_count; | |
634 | ||
95a42b64 TT |
635 | /* Called at the start an "rbreak" command to record the first |
636 | breakpoint made. */ | |
86b17b60 | 637 | |
95a42b64 TT |
638 | void |
639 | start_rbreak_breakpoints (void) | |
640 | { | |
86b17b60 | 641 | rbreak_start_breakpoint_count = breakpoint_count; |
95a42b64 TT |
642 | } |
643 | ||
644 | /* Called at the end of an "rbreak" command to record the last | |
645 | breakpoint made. */ | |
86b17b60 | 646 | |
95a42b64 TT |
647 | void |
648 | end_rbreak_breakpoints (void) | |
649 | { | |
86b17b60 | 650 | prev_breakpoint_count = rbreak_start_breakpoint_count; |
95a42b64 TT |
651 | } |
652 | ||
4a64f543 | 653 | /* Used in run_command to zero the hit count when a new run starts. */ |
c906108c SS |
654 | |
655 | void | |
fba45db2 | 656 | clear_breakpoint_hit_counts (void) |
c906108c SS |
657 | { |
658 | struct breakpoint *b; | |
659 | ||
660 | ALL_BREAKPOINTS (b) | |
661 | b->hit_count = 0; | |
662 | } | |
663 | ||
9add0f1b TT |
664 | /* Allocate a new counted_command_line with reference count of 1. |
665 | The new structure owns COMMANDS. */ | |
666 | ||
667 | static struct counted_command_line * | |
668 | alloc_counted_command_line (struct command_line *commands) | |
669 | { | |
670 | struct counted_command_line *result | |
671 | = xmalloc (sizeof (struct counted_command_line)); | |
cc59ec59 | 672 | |
9add0f1b TT |
673 | result->refc = 1; |
674 | result->commands = commands; | |
675 | return result; | |
676 | } | |
677 | ||
678 | /* Increment reference count. This does nothing if CMD is NULL. */ | |
679 | ||
680 | static void | |
681 | incref_counted_command_line (struct counted_command_line *cmd) | |
682 | { | |
683 | if (cmd) | |
684 | ++cmd->refc; | |
685 | } | |
686 | ||
687 | /* Decrement reference count. If the reference count reaches 0, | |
688 | destroy the counted_command_line. Sets *CMDP to NULL. This does | |
689 | nothing if *CMDP is NULL. */ | |
690 | ||
691 | static void | |
692 | decref_counted_command_line (struct counted_command_line **cmdp) | |
693 | { | |
694 | if (*cmdp) | |
695 | { | |
696 | if (--(*cmdp)->refc == 0) | |
697 | { | |
698 | free_command_lines (&(*cmdp)->commands); | |
699 | xfree (*cmdp); | |
700 | } | |
701 | *cmdp = NULL; | |
702 | } | |
703 | } | |
704 | ||
705 | /* A cleanup function that calls decref_counted_command_line. */ | |
706 | ||
707 | static void | |
708 | do_cleanup_counted_command_line (void *arg) | |
709 | { | |
710 | decref_counted_command_line (arg); | |
711 | } | |
712 | ||
713 | /* Create a cleanup that calls decref_counted_command_line on the | |
714 | argument. */ | |
715 | ||
716 | static struct cleanup * | |
717 | make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp) | |
718 | { | |
719 | return make_cleanup (do_cleanup_counted_command_line, cmdp); | |
720 | } | |
721 | ||
c906108c | 722 | \f |
48cb2d85 VP |
723 | /* Return the breakpoint with the specified number, or NULL |
724 | if the number does not refer to an existing breakpoint. */ | |
725 | ||
726 | struct breakpoint * | |
727 | get_breakpoint (int num) | |
728 | { | |
729 | struct breakpoint *b; | |
730 | ||
731 | ALL_BREAKPOINTS (b) | |
732 | if (b->number == num) | |
733 | return b; | |
734 | ||
735 | return NULL; | |
736 | } | |
5c44784c | 737 | |
c906108c | 738 | \f |
adc36818 | 739 | |
b775012e LM |
740 | /* Mark locations as "conditions have changed" in case the target supports |
741 | evaluating conditions on its side. */ | |
742 | ||
743 | static void | |
744 | mark_breakpoint_modified (struct breakpoint *b) | |
745 | { | |
746 | struct bp_location *loc; | |
747 | ||
748 | /* This is only meaningful if the target is | |
749 | evaluating conditions and if the user has | |
750 | opted for condition evaluation on the target's | |
751 | side. */ | |
752 | if (gdb_evaluates_breakpoint_condition_p () | |
753 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
754 | return; | |
755 | ||
756 | if (!is_breakpoint (b)) | |
757 | return; | |
758 | ||
759 | for (loc = b->loc; loc; loc = loc->next) | |
760 | loc->condition_changed = condition_modified; | |
761 | } | |
762 | ||
763 | /* Mark location as "conditions have changed" in case the target supports | |
764 | evaluating conditions on its side. */ | |
765 | ||
766 | static void | |
767 | mark_breakpoint_location_modified (struct bp_location *loc) | |
768 | { | |
769 | /* This is only meaningful if the target is | |
770 | evaluating conditions and if the user has | |
771 | opted for condition evaluation on the target's | |
772 | side. */ | |
773 | if (gdb_evaluates_breakpoint_condition_p () | |
774 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
775 | ||
776 | return; | |
777 | ||
778 | if (!is_breakpoint (loc->owner)) | |
779 | return; | |
780 | ||
781 | loc->condition_changed = condition_modified; | |
782 | } | |
783 | ||
784 | /* Sets the condition-evaluation mode using the static global | |
785 | condition_evaluation_mode. */ | |
786 | ||
787 | static void | |
788 | set_condition_evaluation_mode (char *args, int from_tty, | |
789 | struct cmd_list_element *c) | |
790 | { | |
b775012e LM |
791 | const char *old_mode, *new_mode; |
792 | ||
793 | if ((condition_evaluation_mode_1 == condition_evaluation_target) | |
794 | && !target_supports_evaluation_of_breakpoint_conditions ()) | |
795 | { | |
796 | condition_evaluation_mode_1 = condition_evaluation_mode; | |
797 | warning (_("Target does not support breakpoint condition evaluation.\n" | |
798 | "Using host evaluation mode instead.")); | |
799 | return; | |
800 | } | |
801 | ||
802 | new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1); | |
803 | old_mode = translate_condition_evaluation_mode (condition_evaluation_mode); | |
804 | ||
abf1152a JK |
805 | /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the |
806 | settings was "auto". */ | |
807 | condition_evaluation_mode = condition_evaluation_mode_1; | |
808 | ||
b775012e LM |
809 | /* Only update the mode if the user picked a different one. */ |
810 | if (new_mode != old_mode) | |
811 | { | |
812 | struct bp_location *loc, **loc_tmp; | |
813 | /* If the user switched to a different evaluation mode, we | |
814 | need to synch the changes with the target as follows: | |
815 | ||
816 | "host" -> "target": Send all (valid) conditions to the target. | |
817 | "target" -> "host": Remove all the conditions from the target. | |
818 | */ | |
819 | ||
b775012e LM |
820 | if (new_mode == condition_evaluation_target) |
821 | { | |
822 | /* Mark everything modified and synch conditions with the | |
823 | target. */ | |
824 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
825 | mark_breakpoint_location_modified (loc); | |
826 | } | |
827 | else | |
828 | { | |
829 | /* Manually mark non-duplicate locations to synch conditions | |
830 | with the target. We do this to remove all the conditions the | |
831 | target knows about. */ | |
832 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
833 | if (is_breakpoint (loc->owner) && loc->inserted) | |
834 | loc->needs_update = 1; | |
835 | } | |
836 | ||
837 | /* Do the update. */ | |
838 | update_global_location_list (1); | |
839 | } | |
840 | ||
841 | return; | |
842 | } | |
843 | ||
844 | /* Shows the current mode of breakpoint condition evaluation. Explicitly shows | |
845 | what "auto" is translating to. */ | |
846 | ||
847 | static void | |
848 | show_condition_evaluation_mode (struct ui_file *file, int from_tty, | |
849 | struct cmd_list_element *c, const char *value) | |
850 | { | |
851 | if (condition_evaluation_mode == condition_evaluation_auto) | |
852 | fprintf_filtered (file, | |
853 | _("Breakpoint condition evaluation " | |
854 | "mode is %s (currently %s).\n"), | |
855 | value, | |
856 | breakpoint_condition_evaluation_mode ()); | |
857 | else | |
858 | fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"), | |
859 | value); | |
860 | } | |
861 | ||
862 | /* A comparison function for bp_location AP and BP that is used by | |
863 | bsearch. This comparison function only cares about addresses, unlike | |
864 | the more general bp_location_compare function. */ | |
865 | ||
866 | static int | |
867 | bp_location_compare_addrs (const void *ap, const void *bp) | |
868 | { | |
869 | struct bp_location *a = *(void **) ap; | |
870 | struct bp_location *b = *(void **) bp; | |
871 | ||
872 | if (a->address == b->address) | |
873 | return 0; | |
874 | else | |
875 | return ((a->address > b->address) - (a->address < b->address)); | |
876 | } | |
877 | ||
878 | /* Helper function to skip all bp_locations with addresses | |
879 | less than ADDRESS. It returns the first bp_location that | |
880 | is greater than or equal to ADDRESS. If none is found, just | |
881 | return NULL. */ | |
882 | ||
883 | static struct bp_location ** | |
884 | get_first_locp_gte_addr (CORE_ADDR address) | |
885 | { | |
886 | struct bp_location dummy_loc; | |
887 | struct bp_location *dummy_locp = &dummy_loc; | |
888 | struct bp_location **locp_found = NULL; | |
889 | ||
890 | /* Initialize the dummy location's address field. */ | |
891 | memset (&dummy_loc, 0, sizeof (struct bp_location)); | |
892 | dummy_loc.address = address; | |
893 | ||
894 | /* Find a close match to the first location at ADDRESS. */ | |
895 | locp_found = bsearch (&dummy_locp, bp_location, bp_location_count, | |
896 | sizeof (struct bp_location **), | |
897 | bp_location_compare_addrs); | |
898 | ||
899 | /* Nothing was found, nothing left to do. */ | |
900 | if (locp_found == NULL) | |
901 | return NULL; | |
902 | ||
903 | /* We may have found a location that is at ADDRESS but is not the first in the | |
904 | location's list. Go backwards (if possible) and locate the first one. */ | |
905 | while ((locp_found - 1) >= bp_location | |
906 | && (*(locp_found - 1))->address == address) | |
907 | locp_found--; | |
908 | ||
909 | return locp_found; | |
910 | } | |
911 | ||
adc36818 PM |
912 | void |
913 | set_breakpoint_condition (struct breakpoint *b, char *exp, | |
914 | int from_tty) | |
915 | { | |
3a5c3e22 PA |
916 | xfree (b->cond_string); |
917 | b->cond_string = NULL; | |
adc36818 | 918 | |
3a5c3e22 | 919 | if (is_watchpoint (b)) |
adc36818 | 920 | { |
3a5c3e22 PA |
921 | struct watchpoint *w = (struct watchpoint *) b; |
922 | ||
923 | xfree (w->cond_exp); | |
924 | w->cond_exp = NULL; | |
925 | } | |
926 | else | |
927 | { | |
928 | struct bp_location *loc; | |
929 | ||
930 | for (loc = b->loc; loc; loc = loc->next) | |
931 | { | |
932 | xfree (loc->cond); | |
933 | loc->cond = NULL; | |
b775012e LM |
934 | |
935 | /* No need to free the condition agent expression | |
936 | bytecode (if we have one). We will handle this | |
937 | when we go through update_global_location_list. */ | |
3a5c3e22 | 938 | } |
adc36818 | 939 | } |
adc36818 PM |
940 | |
941 | if (*exp == 0) | |
942 | { | |
943 | if (from_tty) | |
944 | printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number); | |
945 | } | |
946 | else | |
947 | { | |
bbc13ae3 | 948 | const char *arg = exp; |
cc59ec59 | 949 | |
adc36818 PM |
950 | /* I don't know if it matters whether this is the string the user |
951 | typed in or the decompiled expression. */ | |
952 | b->cond_string = xstrdup (arg); | |
953 | b->condition_not_parsed = 0; | |
954 | ||
955 | if (is_watchpoint (b)) | |
956 | { | |
3a5c3e22 PA |
957 | struct watchpoint *w = (struct watchpoint *) b; |
958 | ||
adc36818 PM |
959 | innermost_block = NULL; |
960 | arg = exp; | |
1bb9788d | 961 | w->cond_exp = parse_exp_1 (&arg, 0, 0, 0); |
adc36818 PM |
962 | if (*arg) |
963 | error (_("Junk at end of expression")); | |
3a5c3e22 | 964 | w->cond_exp_valid_block = innermost_block; |
adc36818 PM |
965 | } |
966 | else | |
967 | { | |
3a5c3e22 PA |
968 | struct bp_location *loc; |
969 | ||
adc36818 PM |
970 | for (loc = b->loc; loc; loc = loc->next) |
971 | { | |
972 | arg = exp; | |
973 | loc->cond = | |
1bb9788d TT |
974 | parse_exp_1 (&arg, loc->address, |
975 | block_for_pc (loc->address), 0); | |
adc36818 PM |
976 | if (*arg) |
977 | error (_("Junk at end of expression")); | |
978 | } | |
979 | } | |
980 | } | |
b775012e LM |
981 | mark_breakpoint_modified (b); |
982 | ||
8d3788bd | 983 | observer_notify_breakpoint_modified (b); |
adc36818 PM |
984 | } |
985 | ||
d55637df TT |
986 | /* Completion for the "condition" command. */ |
987 | ||
988 | static VEC (char_ptr) * | |
6f937416 PA |
989 | condition_completer (struct cmd_list_element *cmd, |
990 | const char *text, const char *word) | |
d55637df | 991 | { |
6f937416 | 992 | const char *space; |
d55637df | 993 | |
6f937416 PA |
994 | text = skip_spaces_const (text); |
995 | space = skip_to_space_const (text); | |
d55637df TT |
996 | if (*space == '\0') |
997 | { | |
998 | int len; | |
999 | struct breakpoint *b; | |
1000 | VEC (char_ptr) *result = NULL; | |
1001 | ||
1002 | if (text[0] == '$') | |
1003 | { | |
1004 | /* We don't support completion of history indices. */ | |
1005 | if (isdigit (text[1])) | |
1006 | return NULL; | |
1007 | return complete_internalvar (&text[1]); | |
1008 | } | |
1009 | ||
1010 | /* We're completing the breakpoint number. */ | |
1011 | len = strlen (text); | |
1012 | ||
1013 | ALL_BREAKPOINTS (b) | |
58ce7251 SDJ |
1014 | { |
1015 | char number[50]; | |
1016 | ||
1017 | xsnprintf (number, sizeof (number), "%d", b->number); | |
1018 | ||
1019 | if (strncmp (number, text, len) == 0) | |
1020 | VEC_safe_push (char_ptr, result, xstrdup (number)); | |
1021 | } | |
d55637df TT |
1022 | |
1023 | return result; | |
1024 | } | |
1025 | ||
1026 | /* We're completing the expression part. */ | |
6f937416 | 1027 | text = skip_spaces_const (space); |
d55637df TT |
1028 | return expression_completer (cmd, text, word); |
1029 | } | |
1030 | ||
c906108c SS |
1031 | /* condition N EXP -- set break condition of breakpoint N to EXP. */ |
1032 | ||
1033 | static void | |
fba45db2 | 1034 | condition_command (char *arg, int from_tty) |
c906108c | 1035 | { |
52f0bd74 | 1036 | struct breakpoint *b; |
c906108c | 1037 | char *p; |
52f0bd74 | 1038 | int bnum; |
c906108c SS |
1039 | |
1040 | if (arg == 0) | |
e2e0b3e5 | 1041 | error_no_arg (_("breakpoint number")); |
c906108c SS |
1042 | |
1043 | p = arg; | |
1044 | bnum = get_number (&p); | |
5c44784c | 1045 | if (bnum == 0) |
8a3fe4f8 | 1046 | error (_("Bad breakpoint argument: '%s'"), arg); |
c906108c SS |
1047 | |
1048 | ALL_BREAKPOINTS (b) | |
1049 | if (b->number == bnum) | |
2f069f6f | 1050 | { |
7371cf6d PM |
1051 | /* Check if this breakpoint has a Python object assigned to |
1052 | it, and if it has a definition of the "stop" | |
1053 | method. This method and conditions entered into GDB from | |
1054 | the CLI are mutually exclusive. */ | |
1055 | if (b->py_bp_object | |
1056 | && gdbpy_breakpoint_has_py_cond (b->py_bp_object)) | |
1057 | error (_("Cannot set a condition where a Python 'stop' " | |
1058 | "method has been defined in the breakpoint.")); | |
2566ad2d | 1059 | set_breakpoint_condition (b, p, from_tty); |
b775012e LM |
1060 | |
1061 | if (is_breakpoint (b)) | |
1062 | update_global_location_list (1); | |
1063 | ||
2f069f6f JB |
1064 | return; |
1065 | } | |
c906108c | 1066 | |
8a3fe4f8 | 1067 | error (_("No breakpoint number %d."), bnum); |
c906108c SS |
1068 | } |
1069 | ||
a7bdde9e VP |
1070 | /* Check that COMMAND do not contain commands that are suitable |
1071 | only for tracepoints and not suitable for ordinary breakpoints. | |
4a64f543 MS |
1072 | Throw if any such commands is found. */ |
1073 | ||
a7bdde9e VP |
1074 | static void |
1075 | check_no_tracepoint_commands (struct command_line *commands) | |
1076 | { | |
1077 | struct command_line *c; | |
cc59ec59 | 1078 | |
a7bdde9e VP |
1079 | for (c = commands; c; c = c->next) |
1080 | { | |
1081 | int i; | |
1082 | ||
1083 | if (c->control_type == while_stepping_control) | |
3e43a32a MS |
1084 | error (_("The 'while-stepping' command can " |
1085 | "only be used for tracepoints")); | |
a7bdde9e VP |
1086 | |
1087 | for (i = 0; i < c->body_count; ++i) | |
1088 | check_no_tracepoint_commands ((c->body_list)[i]); | |
1089 | ||
1090 | /* Not that command parsing removes leading whitespace and comment | |
4a64f543 | 1091 | lines and also empty lines. So, we only need to check for |
a7bdde9e VP |
1092 | command directly. */ |
1093 | if (strstr (c->line, "collect ") == c->line) | |
1094 | error (_("The 'collect' command can only be used for tracepoints")); | |
1095 | ||
51661e93 VP |
1096 | if (strstr (c->line, "teval ") == c->line) |
1097 | error (_("The 'teval' command can only be used for tracepoints")); | |
a7bdde9e VP |
1098 | } |
1099 | } | |
1100 | ||
d77f58be SS |
1101 | /* Encapsulate tests for different types of tracepoints. */ |
1102 | ||
d9b3f62e PA |
1103 | static int |
1104 | is_tracepoint_type (enum bptype type) | |
1105 | { | |
1106 | return (type == bp_tracepoint | |
1107 | || type == bp_fast_tracepoint | |
1108 | || type == bp_static_tracepoint); | |
1109 | } | |
1110 | ||
a7bdde9e | 1111 | int |
d77f58be | 1112 | is_tracepoint (const struct breakpoint *b) |
a7bdde9e | 1113 | { |
d9b3f62e | 1114 | return is_tracepoint_type (b->type); |
a7bdde9e | 1115 | } |
d9b3f62e | 1116 | |
e5dd4106 | 1117 | /* A helper function that validates that COMMANDS are valid for a |
95a42b64 TT |
1118 | breakpoint. This function will throw an exception if a problem is |
1119 | found. */ | |
48cb2d85 | 1120 | |
95a42b64 TT |
1121 | static void |
1122 | validate_commands_for_breakpoint (struct breakpoint *b, | |
1123 | struct command_line *commands) | |
48cb2d85 | 1124 | { |
d77f58be | 1125 | if (is_tracepoint (b)) |
a7bdde9e | 1126 | { |
c9a6ce02 | 1127 | struct tracepoint *t = (struct tracepoint *) b; |
a7bdde9e VP |
1128 | struct command_line *c; |
1129 | struct command_line *while_stepping = 0; | |
c9a6ce02 PA |
1130 | |
1131 | /* Reset the while-stepping step count. The previous commands | |
1132 | might have included a while-stepping action, while the new | |
1133 | ones might not. */ | |
1134 | t->step_count = 0; | |
1135 | ||
1136 | /* We need to verify that each top-level element of commands is | |
1137 | valid for tracepoints, that there's at most one | |
1138 | while-stepping element, and that the while-stepping's body | |
1139 | has valid tracing commands excluding nested while-stepping. | |
1140 | We also need to validate the tracepoint action line in the | |
1141 | context of the tracepoint --- validate_actionline actually | |
1142 | has side effects, like setting the tracepoint's | |
1143 | while-stepping STEP_COUNT, in addition to checking if the | |
1144 | collect/teval actions parse and make sense in the | |
1145 | tracepoint's context. */ | |
a7bdde9e VP |
1146 | for (c = commands; c; c = c->next) |
1147 | { | |
a7bdde9e VP |
1148 | if (c->control_type == while_stepping_control) |
1149 | { | |
1150 | if (b->type == bp_fast_tracepoint) | |
3e43a32a MS |
1151 | error (_("The 'while-stepping' command " |
1152 | "cannot be used for fast tracepoint")); | |
0fb4aa4b | 1153 | else if (b->type == bp_static_tracepoint) |
3e43a32a MS |
1154 | error (_("The 'while-stepping' command " |
1155 | "cannot be used for static tracepoint")); | |
a7bdde9e VP |
1156 | |
1157 | if (while_stepping) | |
3e43a32a MS |
1158 | error (_("The 'while-stepping' command " |
1159 | "can be used only once")); | |
a7bdde9e VP |
1160 | else |
1161 | while_stepping = c; | |
1162 | } | |
c9a6ce02 PA |
1163 | |
1164 | validate_actionline (c->line, b); | |
a7bdde9e VP |
1165 | } |
1166 | if (while_stepping) | |
1167 | { | |
1168 | struct command_line *c2; | |
1169 | ||
1170 | gdb_assert (while_stepping->body_count == 1); | |
1171 | c2 = while_stepping->body_list[0]; | |
1172 | for (; c2; c2 = c2->next) | |
1173 | { | |
a7bdde9e VP |
1174 | if (c2->control_type == while_stepping_control) |
1175 | error (_("The 'while-stepping' command cannot be nested")); | |
1176 | } | |
1177 | } | |
1178 | } | |
1179 | else | |
1180 | { | |
1181 | check_no_tracepoint_commands (commands); | |
1182 | } | |
95a42b64 TT |
1183 | } |
1184 | ||
0fb4aa4b PA |
1185 | /* Return a vector of all the static tracepoints set at ADDR. The |
1186 | caller is responsible for releasing the vector. */ | |
1187 | ||
1188 | VEC(breakpoint_p) * | |
1189 | static_tracepoints_here (CORE_ADDR addr) | |
1190 | { | |
1191 | struct breakpoint *b; | |
1192 | VEC(breakpoint_p) *found = 0; | |
1193 | struct bp_location *loc; | |
1194 | ||
1195 | ALL_BREAKPOINTS (b) | |
1196 | if (b->type == bp_static_tracepoint) | |
1197 | { | |
1198 | for (loc = b->loc; loc; loc = loc->next) | |
1199 | if (loc->address == addr) | |
1200 | VEC_safe_push(breakpoint_p, found, b); | |
1201 | } | |
1202 | ||
1203 | return found; | |
1204 | } | |
1205 | ||
95a42b64 | 1206 | /* Set the command list of B to COMMANDS. If breakpoint is tracepoint, |
4a64f543 | 1207 | validate that only allowed commands are included. */ |
95a42b64 TT |
1208 | |
1209 | void | |
4a64f543 MS |
1210 | breakpoint_set_commands (struct breakpoint *b, |
1211 | struct command_line *commands) | |
95a42b64 TT |
1212 | { |
1213 | validate_commands_for_breakpoint (b, commands); | |
a7bdde9e | 1214 | |
9add0f1b TT |
1215 | decref_counted_command_line (&b->commands); |
1216 | b->commands = alloc_counted_command_line (commands); | |
8d3788bd | 1217 | observer_notify_breakpoint_modified (b); |
48cb2d85 VP |
1218 | } |
1219 | ||
45a43567 TT |
1220 | /* Set the internal `silent' flag on the breakpoint. Note that this |
1221 | is not the same as the "silent" that may appear in the breakpoint's | |
1222 | commands. */ | |
1223 | ||
1224 | void | |
1225 | breakpoint_set_silent (struct breakpoint *b, int silent) | |
1226 | { | |
1227 | int old_silent = b->silent; | |
1228 | ||
1229 | b->silent = silent; | |
1230 | if (old_silent != silent) | |
8d3788bd | 1231 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1232 | } |
1233 | ||
1234 | /* Set the thread for this breakpoint. If THREAD is -1, make the | |
1235 | breakpoint work for any thread. */ | |
1236 | ||
1237 | void | |
1238 | breakpoint_set_thread (struct breakpoint *b, int thread) | |
1239 | { | |
1240 | int old_thread = b->thread; | |
1241 | ||
1242 | b->thread = thread; | |
1243 | if (old_thread != thread) | |
8d3788bd | 1244 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1245 | } |
1246 | ||
1247 | /* Set the task for this breakpoint. If TASK is 0, make the | |
1248 | breakpoint work for any task. */ | |
1249 | ||
1250 | void | |
1251 | breakpoint_set_task (struct breakpoint *b, int task) | |
1252 | { | |
1253 | int old_task = b->task; | |
1254 | ||
1255 | b->task = task; | |
1256 | if (old_task != task) | |
8d3788bd | 1257 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1258 | } |
1259 | ||
95a42b64 TT |
1260 | void |
1261 | check_tracepoint_command (char *line, void *closure) | |
a7bdde9e VP |
1262 | { |
1263 | struct breakpoint *b = closure; | |
cc59ec59 | 1264 | |
6f937416 | 1265 | validate_actionline (line, b); |
a7bdde9e VP |
1266 | } |
1267 | ||
95a42b64 TT |
1268 | /* A structure used to pass information through |
1269 | map_breakpoint_numbers. */ | |
1270 | ||
1271 | struct commands_info | |
1272 | { | |
1273 | /* True if the command was typed at a tty. */ | |
1274 | int from_tty; | |
86b17b60 PA |
1275 | |
1276 | /* The breakpoint range spec. */ | |
1277 | char *arg; | |
1278 | ||
95a42b64 TT |
1279 | /* Non-NULL if the body of the commands are being read from this |
1280 | already-parsed command. */ | |
1281 | struct command_line *control; | |
86b17b60 | 1282 | |
95a42b64 TT |
1283 | /* The command lines read from the user, or NULL if they have not |
1284 | yet been read. */ | |
1285 | struct counted_command_line *cmd; | |
1286 | }; | |
1287 | ||
1288 | /* A callback for map_breakpoint_numbers that sets the commands for | |
1289 | commands_command. */ | |
1290 | ||
c906108c | 1291 | static void |
95a42b64 | 1292 | do_map_commands_command (struct breakpoint *b, void *data) |
c906108c | 1293 | { |
95a42b64 | 1294 | struct commands_info *info = data; |
c906108c | 1295 | |
95a42b64 TT |
1296 | if (info->cmd == NULL) |
1297 | { | |
1298 | struct command_line *l; | |
5c44784c | 1299 | |
95a42b64 TT |
1300 | if (info->control != NULL) |
1301 | l = copy_command_lines (info->control->body_list[0]); | |
1302 | else | |
86b17b60 PA |
1303 | { |
1304 | struct cleanup *old_chain; | |
1305 | char *str; | |
c5aa993b | 1306 | |
3e43a32a MS |
1307 | str = xstrprintf (_("Type commands for breakpoint(s) " |
1308 | "%s, one per line."), | |
86b17b60 PA |
1309 | info->arg); |
1310 | ||
1311 | old_chain = make_cleanup (xfree, str); | |
1312 | ||
1313 | l = read_command_lines (str, | |
1314 | info->from_tty, 1, | |
d77f58be | 1315 | (is_tracepoint (b) |
86b17b60 PA |
1316 | ? check_tracepoint_command : 0), |
1317 | b); | |
1318 | ||
1319 | do_cleanups (old_chain); | |
1320 | } | |
a7bdde9e | 1321 | |
95a42b64 TT |
1322 | info->cmd = alloc_counted_command_line (l); |
1323 | } | |
1324 | ||
1325 | /* If a breakpoint was on the list more than once, we don't need to | |
1326 | do anything. */ | |
1327 | if (b->commands != info->cmd) | |
1328 | { | |
1329 | validate_commands_for_breakpoint (b, info->cmd->commands); | |
1330 | incref_counted_command_line (info->cmd); | |
1331 | decref_counted_command_line (&b->commands); | |
1332 | b->commands = info->cmd; | |
8d3788bd | 1333 | observer_notify_breakpoint_modified (b); |
c5aa993b | 1334 | } |
95a42b64 TT |
1335 | } |
1336 | ||
1337 | static void | |
4a64f543 MS |
1338 | commands_command_1 (char *arg, int from_tty, |
1339 | struct command_line *control) | |
95a42b64 TT |
1340 | { |
1341 | struct cleanup *cleanups; | |
1342 | struct commands_info info; | |
1343 | ||
1344 | info.from_tty = from_tty; | |
1345 | info.control = control; | |
1346 | info.cmd = NULL; | |
1347 | /* If we read command lines from the user, then `info' will hold an | |
1348 | extra reference to the commands that we must clean up. */ | |
1349 | cleanups = make_cleanup_decref_counted_command_line (&info.cmd); | |
1350 | ||
1351 | if (arg == NULL || !*arg) | |
1352 | { | |
86b17b60 | 1353 | if (breakpoint_count - prev_breakpoint_count > 1) |
4a64f543 MS |
1354 | arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1, |
1355 | breakpoint_count); | |
95a42b64 TT |
1356 | else if (breakpoint_count > 0) |
1357 | arg = xstrprintf ("%d", breakpoint_count); | |
86b17b60 PA |
1358 | else |
1359 | { | |
1360 | /* So that we don't try to free the incoming non-NULL | |
1361 | argument in the cleanup below. Mapping breakpoint | |
1362 | numbers will fail in this case. */ | |
1363 | arg = NULL; | |
1364 | } | |
95a42b64 | 1365 | } |
9766ced4 SS |
1366 | else |
1367 | /* The command loop has some static state, so we need to preserve | |
1368 | our argument. */ | |
1369 | arg = xstrdup (arg); | |
86b17b60 PA |
1370 | |
1371 | if (arg != NULL) | |
1372 | make_cleanup (xfree, arg); | |
1373 | ||
1374 | info.arg = arg; | |
95a42b64 TT |
1375 | |
1376 | map_breakpoint_numbers (arg, do_map_commands_command, &info); | |
1377 | ||
1378 | if (info.cmd == NULL) | |
1379 | error (_("No breakpoints specified.")); | |
1380 | ||
1381 | do_cleanups (cleanups); | |
1382 | } | |
1383 | ||
1384 | static void | |
1385 | commands_command (char *arg, int from_tty) | |
1386 | { | |
1387 | commands_command_1 (arg, from_tty, NULL); | |
c906108c | 1388 | } |
40c03ae8 EZ |
1389 | |
1390 | /* Like commands_command, but instead of reading the commands from | |
1391 | input stream, takes them from an already parsed command structure. | |
1392 | ||
1393 | This is used by cli-script.c to DTRT with breakpoint commands | |
1394 | that are part of if and while bodies. */ | |
1395 | enum command_control_type | |
1396 | commands_from_control_command (char *arg, struct command_line *cmd) | |
1397 | { | |
95a42b64 TT |
1398 | commands_command_1 (arg, 0, cmd); |
1399 | return simple_control; | |
40c03ae8 | 1400 | } |
876fa593 JK |
1401 | |
1402 | /* Return non-zero if BL->TARGET_INFO contains valid information. */ | |
1403 | ||
1404 | static int | |
1405 | bp_location_has_shadow (struct bp_location *bl) | |
1406 | { | |
1407 | if (bl->loc_type != bp_loc_software_breakpoint) | |
1408 | return 0; | |
1409 | if (!bl->inserted) | |
1410 | return 0; | |
1411 | if (bl->target_info.shadow_len == 0) | |
e5dd4106 | 1412 | /* BL isn't valid, or doesn't shadow memory. */ |
876fa593 JK |
1413 | return 0; |
1414 | return 1; | |
1415 | } | |
1416 | ||
8defab1a | 1417 | /* Update BUF, which is LEN bytes read from the target address MEMADDR, |
876fa593 JK |
1418 | by replacing any memory breakpoints with their shadowed contents. |
1419 | ||
35c63cd8 JB |
1420 | If READBUF is not NULL, this buffer must not overlap with any of |
1421 | the breakpoint location's shadow_contents buffers. Otherwise, | |
1422 | a failed assertion internal error will be raised. | |
1423 | ||
876fa593 | 1424 | The range of shadowed area by each bp_location is: |
35df4500 TJB |
1425 | bl->address - bp_location_placed_address_before_address_max |
1426 | up to bl->address + bp_location_shadow_len_after_address_max | |
876fa593 JK |
1427 | The range we were requested to resolve shadows for is: |
1428 | memaddr ... memaddr + len | |
1429 | Thus the safe cutoff boundaries for performance optimization are | |
35df4500 TJB |
1430 | memaddr + len <= (bl->address |
1431 | - bp_location_placed_address_before_address_max) | |
876fa593 | 1432 | and: |
35df4500 | 1433 | bl->address + bp_location_shadow_len_after_address_max <= memaddr */ |
c906108c | 1434 | |
8defab1a | 1435 | void |
f0ba3972 PA |
1436 | breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf, |
1437 | const gdb_byte *writebuf_org, | |
1438 | ULONGEST memaddr, LONGEST len) | |
c906108c | 1439 | { |
4a64f543 MS |
1440 | /* Left boundary, right boundary and median element of our binary |
1441 | search. */ | |
876fa593 JK |
1442 | unsigned bc_l, bc_r, bc; |
1443 | ||
4a64f543 MS |
1444 | /* Find BC_L which is a leftmost element which may affect BUF |
1445 | content. It is safe to report lower value but a failure to | |
1446 | report higher one. */ | |
876fa593 JK |
1447 | |
1448 | bc_l = 0; | |
1449 | bc_r = bp_location_count; | |
1450 | while (bc_l + 1 < bc_r) | |
1451 | { | |
35df4500 | 1452 | struct bp_location *bl; |
876fa593 JK |
1453 | |
1454 | bc = (bc_l + bc_r) / 2; | |
35df4500 | 1455 | bl = bp_location[bc]; |
876fa593 | 1456 | |
4a64f543 MS |
1457 | /* Check first BL->ADDRESS will not overflow due to the added |
1458 | constant. Then advance the left boundary only if we are sure | |
1459 | the BC element can in no way affect the BUF content (MEMADDR | |
1460 | to MEMADDR + LEN range). | |
876fa593 | 1461 | |
4a64f543 MS |
1462 | Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety |
1463 | offset so that we cannot miss a breakpoint with its shadow | |
1464 | range tail still reaching MEMADDR. */ | |
c5aa993b | 1465 | |
35df4500 TJB |
1466 | if ((bl->address + bp_location_shadow_len_after_address_max |
1467 | >= bl->address) | |
1468 | && (bl->address + bp_location_shadow_len_after_address_max | |
1469 | <= memaddr)) | |
876fa593 JK |
1470 | bc_l = bc; |
1471 | else | |
1472 | bc_r = bc; | |
1473 | } | |
1474 | ||
128070bb PA |
1475 | /* Due to the binary search above, we need to make sure we pick the |
1476 | first location that's at BC_L's address. E.g., if there are | |
1477 | multiple locations at the same address, BC_L may end up pointing | |
1478 | at a duplicate location, and miss the "master"/"inserted" | |
1479 | location. Say, given locations L1, L2 and L3 at addresses A and | |
1480 | B: | |
1481 | ||
1482 | L1@A, L2@A, L3@B, ... | |
1483 | ||
1484 | BC_L could end up pointing at location L2, while the "master" | |
1485 | location could be L1. Since the `loc->inserted' flag is only set | |
1486 | on "master" locations, we'd forget to restore the shadow of L1 | |
1487 | and L2. */ | |
1488 | while (bc_l > 0 | |
1489 | && bp_location[bc_l]->address == bp_location[bc_l - 1]->address) | |
1490 | bc_l--; | |
1491 | ||
876fa593 JK |
1492 | /* Now do full processing of the found relevant range of elements. */ |
1493 | ||
1494 | for (bc = bc_l; bc < bp_location_count; bc++) | |
c5aa993b | 1495 | { |
35df4500 | 1496 | struct bp_location *bl = bp_location[bc]; |
876fa593 JK |
1497 | CORE_ADDR bp_addr = 0; |
1498 | int bp_size = 0; | |
1499 | int bptoffset = 0; | |
1500 | ||
35df4500 TJB |
1501 | /* bp_location array has BL->OWNER always non-NULL. */ |
1502 | if (bl->owner->type == bp_none) | |
8a3fe4f8 | 1503 | warning (_("reading through apparently deleted breakpoint #%d?"), |
35df4500 | 1504 | bl->owner->number); |
ffce0d52 | 1505 | |
e5dd4106 | 1506 | /* Performance optimization: any further element can no longer affect BUF |
876fa593 JK |
1507 | content. */ |
1508 | ||
35df4500 TJB |
1509 | if (bl->address >= bp_location_placed_address_before_address_max |
1510 | && memaddr + len <= (bl->address | |
1511 | - bp_location_placed_address_before_address_max)) | |
876fa593 JK |
1512 | break; |
1513 | ||
35df4500 | 1514 | if (!bp_location_has_shadow (bl)) |
c5aa993b | 1515 | continue; |
35df4500 | 1516 | if (!breakpoint_address_match (bl->target_info.placed_address_space, 0, |
6c95b8df PA |
1517 | current_program_space->aspace, 0)) |
1518 | continue; | |
1519 | ||
c5aa993b JM |
1520 | /* Addresses and length of the part of the breakpoint that |
1521 | we need to copy. */ | |
35df4500 TJB |
1522 | bp_addr = bl->target_info.placed_address; |
1523 | bp_size = bl->target_info.shadow_len; | |
8defab1a | 1524 | |
c5aa993b JM |
1525 | if (bp_addr + bp_size <= memaddr) |
1526 | /* The breakpoint is entirely before the chunk of memory we | |
1527 | are reading. */ | |
1528 | continue; | |
8defab1a | 1529 | |
c5aa993b JM |
1530 | if (bp_addr >= memaddr + len) |
1531 | /* The breakpoint is entirely after the chunk of memory we are | |
4a64f543 | 1532 | reading. */ |
c5aa993b | 1533 | continue; |
c5aa993b | 1534 | |
8defab1a DJ |
1535 | /* Offset within shadow_contents. */ |
1536 | if (bp_addr < memaddr) | |
1537 | { | |
1538 | /* Only copy the second part of the breakpoint. */ | |
1539 | bp_size -= memaddr - bp_addr; | |
1540 | bptoffset = memaddr - bp_addr; | |
1541 | bp_addr = memaddr; | |
1542 | } | |
c5aa993b | 1543 | |
8defab1a DJ |
1544 | if (bp_addr + bp_size > memaddr + len) |
1545 | { | |
1546 | /* Only copy the first part of the breakpoint. */ | |
1547 | bp_size -= (bp_addr + bp_size) - (memaddr + len); | |
1548 | } | |
c5aa993b | 1549 | |
f0ba3972 PA |
1550 | if (readbuf != NULL) |
1551 | { | |
35c63cd8 JB |
1552 | /* Verify that the readbuf buffer does not overlap with |
1553 | the shadow_contents buffer. */ | |
1554 | gdb_assert (bl->target_info.shadow_contents >= readbuf + len | |
1555 | || readbuf >= (bl->target_info.shadow_contents | |
1556 | + bl->target_info.shadow_len)); | |
1557 | ||
f0ba3972 PA |
1558 | /* Update the read buffer with this inserted breakpoint's |
1559 | shadow. */ | |
1560 | memcpy (readbuf + bp_addr - memaddr, | |
1561 | bl->target_info.shadow_contents + bptoffset, bp_size); | |
1562 | } | |
1563 | else | |
1564 | { | |
1565 | struct gdbarch *gdbarch = bl->gdbarch; | |
1566 | const unsigned char *bp; | |
1567 | CORE_ADDR placed_address = bl->target_info.placed_address; | |
20ced3e4 | 1568 | int placed_size = bl->target_info.placed_size; |
f0ba3972 PA |
1569 | |
1570 | /* Update the shadow with what we want to write to memory. */ | |
1571 | memcpy (bl->target_info.shadow_contents + bptoffset, | |
1572 | writebuf_org + bp_addr - memaddr, bp_size); | |
1573 | ||
1574 | /* Determine appropriate breakpoint contents and size for this | |
1575 | address. */ | |
1576 | bp = gdbarch_breakpoint_from_pc (gdbarch, &placed_address, &placed_size); | |
1577 | ||
1578 | /* Update the final write buffer with this inserted | |
1579 | breakpoint's INSN. */ | |
1580 | memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size); | |
1581 | } | |
c5aa993b | 1582 | } |
c906108c | 1583 | } |
c906108c | 1584 | \f |
c5aa993b | 1585 | |
b775012e LM |
1586 | /* Return true if BPT is either a software breakpoint or a hardware |
1587 | breakpoint. */ | |
1588 | ||
1589 | int | |
1590 | is_breakpoint (const struct breakpoint *bpt) | |
1591 | { | |
1592 | return (bpt->type == bp_breakpoint | |
e7e0cddf SS |
1593 | || bpt->type == bp_hardware_breakpoint |
1594 | || bpt->type == bp_dprintf); | |
b775012e LM |
1595 | } |
1596 | ||
60e1c644 PA |
1597 | /* Return true if BPT is of any hardware watchpoint kind. */ |
1598 | ||
a5606eee | 1599 | static int |
d77f58be | 1600 | is_hardware_watchpoint (const struct breakpoint *bpt) |
a5606eee VP |
1601 | { |
1602 | return (bpt->type == bp_hardware_watchpoint | |
1603 | || bpt->type == bp_read_watchpoint | |
1604 | || bpt->type == bp_access_watchpoint); | |
1605 | } | |
7270d8f2 | 1606 | |
60e1c644 PA |
1607 | /* Return true if BPT is of any watchpoint kind, hardware or |
1608 | software. */ | |
1609 | ||
3a5c3e22 | 1610 | int |
d77f58be | 1611 | is_watchpoint (const struct breakpoint *bpt) |
60e1c644 PA |
1612 | { |
1613 | return (is_hardware_watchpoint (bpt) | |
1614 | || bpt->type == bp_watchpoint); | |
1615 | } | |
1616 | ||
3a5c3e22 PA |
1617 | /* Returns true if the current thread and its running state are safe |
1618 | to evaluate or update watchpoint B. Watchpoints on local | |
1619 | expressions need to be evaluated in the context of the thread that | |
1620 | was current when the watchpoint was created, and, that thread needs | |
1621 | to be stopped to be able to select the correct frame context. | |
1622 | Watchpoints on global expressions can be evaluated on any thread, | |
1623 | and in any state. It is presently left to the target allowing | |
1624 | memory accesses when threads are running. */ | |
f6bc2008 PA |
1625 | |
1626 | static int | |
3a5c3e22 | 1627 | watchpoint_in_thread_scope (struct watchpoint *b) |
f6bc2008 | 1628 | { |
d0d8b0c6 JK |
1629 | return (b->base.pspace == current_program_space |
1630 | && (ptid_equal (b->watchpoint_thread, null_ptid) | |
1631 | || (ptid_equal (inferior_ptid, b->watchpoint_thread) | |
1632 | && !is_executing (inferior_ptid)))); | |
f6bc2008 PA |
1633 | } |
1634 | ||
d0fb5eae JK |
1635 | /* Set watchpoint B to disp_del_at_next_stop, even including its possible |
1636 | associated bp_watchpoint_scope breakpoint. */ | |
1637 | ||
1638 | static void | |
3a5c3e22 | 1639 | watchpoint_del_at_next_stop (struct watchpoint *w) |
d0fb5eae | 1640 | { |
3a5c3e22 | 1641 | struct breakpoint *b = &w->base; |
d0fb5eae JK |
1642 | |
1643 | if (b->related_breakpoint != b) | |
1644 | { | |
1645 | gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope); | |
1646 | gdb_assert (b->related_breakpoint->related_breakpoint == b); | |
1647 | b->related_breakpoint->disposition = disp_del_at_next_stop; | |
1648 | b->related_breakpoint->related_breakpoint = b->related_breakpoint; | |
1649 | b->related_breakpoint = b; | |
1650 | } | |
1651 | b->disposition = disp_del_at_next_stop; | |
1652 | } | |
1653 | ||
567e1b4e JB |
1654 | /* Assuming that B is a watchpoint: |
1655 | - Reparse watchpoint expression, if REPARSE is non-zero | |
a5606eee | 1656 | - Evaluate expression and store the result in B->val |
567e1b4e JB |
1657 | - Evaluate the condition if there is one, and store the result |
1658 | in b->loc->cond. | |
a5606eee VP |
1659 | - Update the list of values that must be watched in B->loc. |
1660 | ||
4a64f543 MS |
1661 | If the watchpoint disposition is disp_del_at_next_stop, then do |
1662 | nothing. If this is local watchpoint that is out of scope, delete | |
1663 | it. | |
1664 | ||
1665 | Even with `set breakpoint always-inserted on' the watchpoints are | |
1666 | removed + inserted on each stop here. Normal breakpoints must | |
1667 | never be removed because they might be missed by a running thread | |
1668 | when debugging in non-stop mode. On the other hand, hardware | |
1669 | watchpoints (is_hardware_watchpoint; processed here) are specific | |
1670 | to each LWP since they are stored in each LWP's hardware debug | |
1671 | registers. Therefore, such LWP must be stopped first in order to | |
1672 | be able to modify its hardware watchpoints. | |
1673 | ||
1674 | Hardware watchpoints must be reset exactly once after being | |
1675 | presented to the user. It cannot be done sooner, because it would | |
1676 | reset the data used to present the watchpoint hit to the user. And | |
1677 | it must not be done later because it could display the same single | |
1678 | watchpoint hit during multiple GDB stops. Note that the latter is | |
1679 | relevant only to the hardware watchpoint types bp_read_watchpoint | |
1680 | and bp_access_watchpoint. False hit by bp_hardware_watchpoint is | |
1681 | not user-visible - its hit is suppressed if the memory content has | |
1682 | not changed. | |
1683 | ||
1684 | The following constraints influence the location where we can reset | |
1685 | hardware watchpoints: | |
1686 | ||
1687 | * target_stopped_by_watchpoint and target_stopped_data_address are | |
1688 | called several times when GDB stops. | |
1689 | ||
1690 | [linux] | |
1691 | * Multiple hardware watchpoints can be hit at the same time, | |
1692 | causing GDB to stop. GDB only presents one hardware watchpoint | |
1693 | hit at a time as the reason for stopping, and all the other hits | |
1694 | are presented later, one after the other, each time the user | |
1695 | requests the execution to be resumed. Execution is not resumed | |
1696 | for the threads still having pending hit event stored in | |
1697 | LWP_INFO->STATUS. While the watchpoint is already removed from | |
1698 | the inferior on the first stop the thread hit event is kept being | |
1699 | reported from its cached value by linux_nat_stopped_data_address | |
1700 | until the real thread resume happens after the watchpoint gets | |
1701 | presented and thus its LWP_INFO->STATUS gets reset. | |
1702 | ||
1703 | Therefore the hardware watchpoint hit can get safely reset on the | |
1704 | watchpoint removal from inferior. */ | |
a79d3c27 | 1705 | |
b40ce68a | 1706 | static void |
3a5c3e22 | 1707 | update_watchpoint (struct watchpoint *b, int reparse) |
7270d8f2 | 1708 | { |
a5606eee | 1709 | int within_current_scope; |
a5606eee | 1710 | struct frame_id saved_frame_id; |
66076460 | 1711 | int frame_saved; |
a5606eee | 1712 | |
f6bc2008 PA |
1713 | /* If this is a local watchpoint, we only want to check if the |
1714 | watchpoint frame is in scope if the current thread is the thread | |
1715 | that was used to create the watchpoint. */ | |
1716 | if (!watchpoint_in_thread_scope (b)) | |
1717 | return; | |
1718 | ||
3a5c3e22 | 1719 | if (b->base.disposition == disp_del_at_next_stop) |
a5606eee VP |
1720 | return; |
1721 | ||
66076460 | 1722 | frame_saved = 0; |
a5606eee VP |
1723 | |
1724 | /* Determine if the watchpoint is within scope. */ | |
1725 | if (b->exp_valid_block == NULL) | |
1726 | within_current_scope = 1; | |
1727 | else | |
1728 | { | |
b5db5dfc UW |
1729 | struct frame_info *fi = get_current_frame (); |
1730 | struct gdbarch *frame_arch = get_frame_arch (fi); | |
1731 | CORE_ADDR frame_pc = get_frame_pc (fi); | |
1732 | ||
1733 | /* If we're in a function epilogue, unwinding may not work | |
1734 | properly, so do not attempt to recreate locations at this | |
1735 | point. See similar comments in watchpoint_check. */ | |
1736 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) | |
1737 | return; | |
66076460 DJ |
1738 | |
1739 | /* Save the current frame's ID so we can restore it after | |
1740 | evaluating the watchpoint expression on its own frame. */ | |
1741 | /* FIXME drow/2003-09-09: It would be nice if evaluate_expression | |
1742 | took a frame parameter, so that we didn't have to change the | |
1743 | selected frame. */ | |
1744 | frame_saved = 1; | |
1745 | saved_frame_id = get_frame_id (get_selected_frame (NULL)); | |
1746 | ||
a5606eee VP |
1747 | fi = frame_find_by_id (b->watchpoint_frame); |
1748 | within_current_scope = (fi != NULL); | |
1749 | if (within_current_scope) | |
1750 | select_frame (fi); | |
1751 | } | |
1752 | ||
b5db5dfc UW |
1753 | /* We don't free locations. They are stored in the bp_location array |
1754 | and update_global_location_list will eventually delete them and | |
1755 | remove breakpoints if needed. */ | |
3a5c3e22 | 1756 | b->base.loc = NULL; |
b5db5dfc | 1757 | |
a5606eee VP |
1758 | if (within_current_scope && reparse) |
1759 | { | |
bbc13ae3 | 1760 | const char *s; |
d63d0675 | 1761 | |
a5606eee VP |
1762 | if (b->exp) |
1763 | { | |
1764 | xfree (b->exp); | |
1765 | b->exp = NULL; | |
1766 | } | |
d63d0675 | 1767 | s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string; |
1bb9788d | 1768 | b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0); |
a5606eee VP |
1769 | /* If the meaning of expression itself changed, the old value is |
1770 | no longer relevant. We don't want to report a watchpoint hit | |
1771 | to the user when the old value and the new value may actually | |
1772 | be completely different objects. */ | |
1773 | value_free (b->val); | |
fa4727a6 DJ |
1774 | b->val = NULL; |
1775 | b->val_valid = 0; | |
60e1c644 PA |
1776 | |
1777 | /* Note that unlike with breakpoints, the watchpoint's condition | |
1778 | expression is stored in the breakpoint object, not in the | |
1779 | locations (re)created below. */ | |
3a5c3e22 | 1780 | if (b->base.cond_string != NULL) |
60e1c644 PA |
1781 | { |
1782 | if (b->cond_exp != NULL) | |
1783 | { | |
1784 | xfree (b->cond_exp); | |
1785 | b->cond_exp = NULL; | |
1786 | } | |
1787 | ||
3a5c3e22 | 1788 | s = b->base.cond_string; |
1bb9788d | 1789 | b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0); |
60e1c644 | 1790 | } |
a5606eee | 1791 | } |
a5606eee VP |
1792 | |
1793 | /* If we failed to parse the expression, for example because | |
1794 | it refers to a global variable in a not-yet-loaded shared library, | |
1795 | don't try to insert watchpoint. We don't automatically delete | |
1796 | such watchpoint, though, since failure to parse expression | |
1797 | is different from out-of-scope watchpoint. */ | |
2d134ed3 PA |
1798 | if ( !target_has_execution) |
1799 | { | |
1800 | /* Without execution, memory can't change. No use to try and | |
1801 | set watchpoint locations. The watchpoint will be reset when | |
1802 | the target gains execution, through breakpoint_re_set. */ | |
1803 | } | |
1804 | else if (within_current_scope && b->exp) | |
a5606eee | 1805 | { |
0cf6dd15 | 1806 | int pc = 0; |
fa4727a6 | 1807 | struct value *val_chain, *v, *result, *next; |
2d134ed3 | 1808 | struct program_space *frame_pspace; |
a5606eee | 1809 | |
0cf6dd15 | 1810 | fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain); |
a5606eee | 1811 | |
a5606eee VP |
1812 | /* Avoid setting b->val if it's already set. The meaning of |
1813 | b->val is 'the last value' user saw, and we should update | |
1814 | it only if we reported that last value to user. As it | |
9c06b0b4 TJB |
1815 | happens, the code that reports it updates b->val directly. |
1816 | We don't keep track of the memory value for masked | |
1817 | watchpoints. */ | |
3a5c3e22 | 1818 | if (!b->val_valid && !is_masked_watchpoint (&b->base)) |
fa4727a6 DJ |
1819 | { |
1820 | b->val = v; | |
1821 | b->val_valid = 1; | |
1822 | } | |
a5606eee | 1823 | |
2d134ed3 PA |
1824 | frame_pspace = get_frame_program_space (get_selected_frame (NULL)); |
1825 | ||
a5606eee | 1826 | /* Look at each value on the value chain. */ |
9fa40276 | 1827 | for (v = val_chain; v; v = value_next (v)) |
a5606eee VP |
1828 | { |
1829 | /* If it's a memory location, and GDB actually needed | |
1830 | its contents to evaluate the expression, then we | |
fa4727a6 DJ |
1831 | must watch it. If the first value returned is |
1832 | still lazy, that means an error occurred reading it; | |
1833 | watch it anyway in case it becomes readable. */ | |
a5606eee | 1834 | if (VALUE_LVAL (v) == lval_memory |
fa4727a6 | 1835 | && (v == val_chain || ! value_lazy (v))) |
a5606eee VP |
1836 | { |
1837 | struct type *vtype = check_typedef (value_type (v)); | |
7270d8f2 | 1838 | |
a5606eee VP |
1839 | /* We only watch structs and arrays if user asked |
1840 | for it explicitly, never if they just happen to | |
1841 | appear in the middle of some value chain. */ | |
fa4727a6 | 1842 | if (v == result |
a5606eee VP |
1843 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT |
1844 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
1845 | { | |
1846 | CORE_ADDR addr; | |
744a8059 | 1847 | int type; |
a5606eee VP |
1848 | struct bp_location *loc, **tmp; |
1849 | ||
42ae5230 | 1850 | addr = value_address (v); |
a5606eee | 1851 | type = hw_write; |
3a5c3e22 | 1852 | if (b->base.type == bp_read_watchpoint) |
a5606eee | 1853 | type = hw_read; |
3a5c3e22 | 1854 | else if (b->base.type == bp_access_watchpoint) |
a5606eee | 1855 | type = hw_access; |
3a5c3e22 PA |
1856 | |
1857 | loc = allocate_bp_location (&b->base); | |
1858 | for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next)) | |
a5606eee VP |
1859 | ; |
1860 | *tmp = loc; | |
a6d9a66e | 1861 | loc->gdbarch = get_type_arch (value_type (v)); |
6c95b8df PA |
1862 | |
1863 | loc->pspace = frame_pspace; | |
a5606eee | 1864 | loc->address = addr; |
744a8059 | 1865 | loc->length = TYPE_LENGTH (value_type (v)); |
a5606eee VP |
1866 | loc->watchpoint_type = type; |
1867 | } | |
1868 | } | |
9fa40276 TJB |
1869 | } |
1870 | ||
1871 | /* Change the type of breakpoint between hardware assisted or | |
1872 | an ordinary watchpoint depending on the hardware support | |
1873 | and free hardware slots. REPARSE is set when the inferior | |
1874 | is started. */ | |
a9634178 | 1875 | if (reparse) |
9fa40276 | 1876 | { |
e09342b5 | 1877 | int reg_cnt; |
9fa40276 TJB |
1878 | enum bp_loc_type loc_type; |
1879 | struct bp_location *bl; | |
a5606eee | 1880 | |
a9634178 | 1881 | reg_cnt = can_use_hardware_watchpoint (val_chain); |
e09342b5 TJB |
1882 | |
1883 | if (reg_cnt) | |
9fa40276 TJB |
1884 | { |
1885 | int i, target_resources_ok, other_type_used; | |
a1398e0c | 1886 | enum bptype type; |
9fa40276 | 1887 | |
a9634178 TJB |
1888 | /* Use an exact watchpoint when there's only one memory region to be |
1889 | watched, and only one debug register is needed to watch it. */ | |
1890 | b->exact = target_exact_watchpoints && reg_cnt == 1; | |
1891 | ||
9fa40276 | 1892 | /* We need to determine how many resources are already |
e09342b5 TJB |
1893 | used for all other hardware watchpoints plus this one |
1894 | to see if we still have enough resources to also fit | |
a1398e0c PA |
1895 | this watchpoint in as well. */ |
1896 | ||
1897 | /* If this is a software watchpoint, we try to turn it | |
1898 | to a hardware one -- count resources as if B was of | |
1899 | hardware watchpoint type. */ | |
1900 | type = b->base.type; | |
1901 | if (type == bp_watchpoint) | |
1902 | type = bp_hardware_watchpoint; | |
1903 | ||
1904 | /* This watchpoint may or may not have been placed on | |
1905 | the list yet at this point (it won't be in the list | |
1906 | if we're trying to create it for the first time, | |
1907 | through watch_command), so always account for it | |
1908 | manually. */ | |
1909 | ||
1910 | /* Count resources used by all watchpoints except B. */ | |
1911 | i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used); | |
1912 | ||
1913 | /* Add in the resources needed for B. */ | |
1914 | i += hw_watchpoint_use_count (&b->base); | |
1915 | ||
1916 | target_resources_ok | |
1917 | = target_can_use_hardware_watchpoint (type, i, other_type_used); | |
e09342b5 | 1918 | if (target_resources_ok <= 0) |
a9634178 | 1919 | { |
3a5c3e22 | 1920 | int sw_mode = b->base.ops->works_in_software_mode (&b->base); |
9c06b0b4 TJB |
1921 | |
1922 | if (target_resources_ok == 0 && !sw_mode) | |
a9634178 TJB |
1923 | error (_("Target does not support this type of " |
1924 | "hardware watchpoint.")); | |
9c06b0b4 TJB |
1925 | else if (target_resources_ok < 0 && !sw_mode) |
1926 | error (_("There are not enough available hardware " | |
1927 | "resources for this watchpoint.")); | |
a1398e0c PA |
1928 | |
1929 | /* Downgrade to software watchpoint. */ | |
1930 | b->base.type = bp_watchpoint; | |
1931 | } | |
1932 | else | |
1933 | { | |
1934 | /* If this was a software watchpoint, we've just | |
1935 | found we have enough resources to turn it to a | |
1936 | hardware watchpoint. Otherwise, this is a | |
1937 | nop. */ | |
1938 | b->base.type = type; | |
a9634178 | 1939 | } |
9fa40276 | 1940 | } |
3a5c3e22 | 1941 | else if (!b->base.ops->works_in_software_mode (&b->base)) |
a9634178 TJB |
1942 | error (_("Expression cannot be implemented with " |
1943 | "read/access watchpoint.")); | |
9fa40276 | 1944 | else |
3a5c3e22 | 1945 | b->base.type = bp_watchpoint; |
9fa40276 | 1946 | |
3a5c3e22 | 1947 | loc_type = (b->base.type == bp_watchpoint? bp_loc_other |
9fa40276 | 1948 | : bp_loc_hardware_watchpoint); |
3a5c3e22 | 1949 | for (bl = b->base.loc; bl; bl = bl->next) |
9fa40276 TJB |
1950 | bl->loc_type = loc_type; |
1951 | } | |
1952 | ||
1953 | for (v = val_chain; v; v = next) | |
1954 | { | |
a5606eee VP |
1955 | next = value_next (v); |
1956 | if (v != b->val) | |
1957 | value_free (v); | |
1958 | } | |
1959 | ||
c7437ca6 PA |
1960 | /* If a software watchpoint is not watching any memory, then the |
1961 | above left it without any location set up. But, | |
1962 | bpstat_stop_status requires a location to be able to report | |
1963 | stops, so make sure there's at least a dummy one. */ | |
3a5c3e22 | 1964 | if (b->base.type == bp_watchpoint && b->base.loc == NULL) |
c7437ca6 | 1965 | { |
3a5c3e22 PA |
1966 | struct breakpoint *base = &b->base; |
1967 | base->loc = allocate_bp_location (base); | |
1968 | base->loc->pspace = frame_pspace; | |
1969 | base->loc->address = -1; | |
1970 | base->loc->length = -1; | |
1971 | base->loc->watchpoint_type = -1; | |
c7437ca6 | 1972 | } |
a5606eee VP |
1973 | } |
1974 | else if (!within_current_scope) | |
7270d8f2 | 1975 | { |
ac74f770 MS |
1976 | printf_filtered (_("\ |
1977 | Watchpoint %d deleted because the program has left the block\n\ | |
1978 | in which its expression is valid.\n"), | |
3a5c3e22 | 1979 | b->base.number); |
d0fb5eae | 1980 | watchpoint_del_at_next_stop (b); |
7270d8f2 | 1981 | } |
a5606eee VP |
1982 | |
1983 | /* Restore the selected frame. */ | |
66076460 DJ |
1984 | if (frame_saved) |
1985 | select_frame (frame_find_by_id (saved_frame_id)); | |
7270d8f2 OF |
1986 | } |
1987 | ||
a5606eee | 1988 | |
74960c60 | 1989 | /* Returns 1 iff breakpoint location should be |
1e4d1764 YQ |
1990 | inserted in the inferior. We don't differentiate the type of BL's owner |
1991 | (breakpoint vs. tracepoint), although insert_location in tracepoint's | |
1992 | breakpoint_ops is not defined, because in insert_bp_location, | |
1993 | tracepoint's insert_location will not be called. */ | |
74960c60 | 1994 | static int |
35df4500 | 1995 | should_be_inserted (struct bp_location *bl) |
74960c60 | 1996 | { |
35df4500 | 1997 | if (bl->owner == NULL || !breakpoint_enabled (bl->owner)) |
74960c60 VP |
1998 | return 0; |
1999 | ||
35df4500 | 2000 | if (bl->owner->disposition == disp_del_at_next_stop) |
74960c60 VP |
2001 | return 0; |
2002 | ||
35df4500 | 2003 | if (!bl->enabled || bl->shlib_disabled || bl->duplicate) |
74960c60 VP |
2004 | return 0; |
2005 | ||
f8eba3c6 TT |
2006 | if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup) |
2007 | return 0; | |
2008 | ||
56710373 PA |
2009 | /* This is set for example, when we're attached to the parent of a |
2010 | vfork, and have detached from the child. The child is running | |
2011 | free, and we expect it to do an exec or exit, at which point the | |
2012 | OS makes the parent schedulable again (and the target reports | |
2013 | that the vfork is done). Until the child is done with the shared | |
2014 | memory region, do not insert breakpoints in the parent, otherwise | |
2015 | the child could still trip on the parent's breakpoints. Since | |
2016 | the parent is blocked anyway, it won't miss any breakpoint. */ | |
35df4500 | 2017 | if (bl->pspace->breakpoints_not_allowed) |
56710373 PA |
2018 | return 0; |
2019 | ||
74960c60 VP |
2020 | return 1; |
2021 | } | |
2022 | ||
934709f0 PW |
2023 | /* Same as should_be_inserted but does the check assuming |
2024 | that the location is not duplicated. */ | |
2025 | ||
2026 | static int | |
2027 | unduplicated_should_be_inserted (struct bp_location *bl) | |
2028 | { | |
2029 | int result; | |
2030 | const int save_duplicate = bl->duplicate; | |
2031 | ||
2032 | bl->duplicate = 0; | |
2033 | result = should_be_inserted (bl); | |
2034 | bl->duplicate = save_duplicate; | |
2035 | return result; | |
2036 | } | |
2037 | ||
b775012e LM |
2038 | /* Parses a conditional described by an expression COND into an |
2039 | agent expression bytecode suitable for evaluation | |
2040 | by the bytecode interpreter. Return NULL if there was | |
2041 | any error during parsing. */ | |
2042 | ||
2043 | static struct agent_expr * | |
2044 | parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond) | |
2045 | { | |
2046 | struct agent_expr *aexpr = NULL; | |
b775012e LM |
2047 | volatile struct gdb_exception ex; |
2048 | ||
2049 | if (!cond) | |
2050 | return NULL; | |
2051 | ||
2052 | /* We don't want to stop processing, so catch any errors | |
2053 | that may show up. */ | |
2054 | TRY_CATCH (ex, RETURN_MASK_ERROR) | |
2055 | { | |
2056 | aexpr = gen_eval_for_expr (scope, cond); | |
2057 | } | |
2058 | ||
2059 | if (ex.reason < 0) | |
2060 | { | |
2061 | /* If we got here, it means the condition could not be parsed to a valid | |
2062 | bytecode expression and thus can't be evaluated on the target's side. | |
2063 | It's no use iterating through the conditions. */ | |
2064 | return NULL; | |
2065 | } | |
2066 | ||
2067 | /* We have a valid agent expression. */ | |
2068 | return aexpr; | |
2069 | } | |
2070 | ||
2071 | /* Based on location BL, create a list of breakpoint conditions to be | |
2072 | passed on to the target. If we have duplicated locations with different | |
2073 | conditions, we will add such conditions to the list. The idea is that the | |
2074 | target will evaluate the list of conditions and will only notify GDB when | |
2075 | one of them is true. */ | |
2076 | ||
2077 | static void | |
2078 | build_target_condition_list (struct bp_location *bl) | |
2079 | { | |
2080 | struct bp_location **locp = NULL, **loc2p; | |
2081 | int null_condition_or_parse_error = 0; | |
2082 | int modified = bl->needs_update; | |
2083 | struct bp_location *loc; | |
2084 | ||
2085 | /* This is only meaningful if the target is | |
2086 | evaluating conditions and if the user has | |
2087 | opted for condition evaluation on the target's | |
2088 | side. */ | |
2089 | if (gdb_evaluates_breakpoint_condition_p () | |
2090 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
2091 | return; | |
2092 | ||
2093 | /* Do a first pass to check for locations with no assigned | |
2094 | conditions or conditions that fail to parse to a valid agent expression | |
2095 | bytecode. If any of these happen, then it's no use to send conditions | |
2096 | to the target since this location will always trigger and generate a | |
2097 | response back to GDB. */ | |
2098 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2099 | { | |
2100 | loc = (*loc2p); | |
2101 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2102 | { | |
2103 | if (modified) | |
2104 | { | |
2105 | struct agent_expr *aexpr; | |
2106 | ||
2107 | /* Re-parse the conditions since something changed. In that | |
2108 | case we already freed the condition bytecodes (see | |
2109 | force_breakpoint_reinsertion). We just | |
2110 | need to parse the condition to bytecodes again. */ | |
2111 | aexpr = parse_cond_to_aexpr (bl->address, loc->cond); | |
2112 | loc->cond_bytecode = aexpr; | |
2113 | ||
2114 | /* Check if we managed to parse the conditional expression | |
2115 | correctly. If not, we will not send this condition | |
2116 | to the target. */ | |
2117 | if (aexpr) | |
2118 | continue; | |
2119 | } | |
2120 | ||
2121 | /* If we have a NULL bytecode expression, it means something | |
2122 | went wrong or we have a null condition expression. */ | |
2123 | if (!loc->cond_bytecode) | |
2124 | { | |
2125 | null_condition_or_parse_error = 1; | |
2126 | break; | |
2127 | } | |
2128 | } | |
2129 | } | |
2130 | ||
2131 | /* If any of these happened, it means we will have to evaluate the conditions | |
2132 | for the location's address on gdb's side. It is no use keeping bytecodes | |
2133 | for all the other duplicate locations, thus we free all of them here. | |
2134 | ||
2135 | This is so we have a finer control over which locations' conditions are | |
2136 | being evaluated by GDB or the remote stub. */ | |
2137 | if (null_condition_or_parse_error) | |
2138 | { | |
2139 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2140 | { | |
2141 | loc = (*loc2p); | |
2142 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2143 | { | |
2144 | /* Only go as far as the first NULL bytecode is | |
2145 | located. */ | |
2146 | if (!loc->cond_bytecode) | |
2147 | return; | |
2148 | ||
2149 | free_agent_expr (loc->cond_bytecode); | |
2150 | loc->cond_bytecode = NULL; | |
2151 | } | |
2152 | } | |
2153 | } | |
2154 | ||
2155 | /* No NULL conditions or failed bytecode generation. Build a condition list | |
2156 | for this location's address. */ | |
2157 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2158 | { | |
2159 | loc = (*loc2p); | |
2160 | if (loc->cond | |
2161 | && is_breakpoint (loc->owner) | |
2162 | && loc->pspace->num == bl->pspace->num | |
2163 | && loc->owner->enable_state == bp_enabled | |
2164 | && loc->enabled) | |
2165 | /* Add the condition to the vector. This will be used later to send the | |
2166 | conditions to the target. */ | |
2167 | VEC_safe_push (agent_expr_p, bl->target_info.conditions, | |
2168 | loc->cond_bytecode); | |
2169 | } | |
2170 | ||
2171 | return; | |
2172 | } | |
2173 | ||
d3ce09f5 SS |
2174 | /* Parses a command described by string CMD into an agent expression |
2175 | bytecode suitable for evaluation by the bytecode interpreter. | |
2176 | Return NULL if there was any error during parsing. */ | |
2177 | ||
2178 | static struct agent_expr * | |
2179 | parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd) | |
2180 | { | |
2181 | struct cleanup *old_cleanups = 0; | |
2182 | struct expression *expr, **argvec; | |
2183 | struct agent_expr *aexpr = NULL; | |
d3ce09f5 | 2184 | volatile struct gdb_exception ex; |
bbc13ae3 KS |
2185 | const char *cmdrest; |
2186 | const char *format_start, *format_end; | |
d3ce09f5 SS |
2187 | struct format_piece *fpieces; |
2188 | int nargs; | |
2189 | struct gdbarch *gdbarch = get_current_arch (); | |
2190 | ||
2191 | if (!cmd) | |
2192 | return NULL; | |
2193 | ||
2194 | cmdrest = cmd; | |
2195 | ||
2196 | if (*cmdrest == ',') | |
2197 | ++cmdrest; | |
bbc13ae3 | 2198 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2199 | |
2200 | if (*cmdrest++ != '"') | |
2201 | error (_("No format string following the location")); | |
2202 | ||
2203 | format_start = cmdrest; | |
2204 | ||
2205 | fpieces = parse_format_string (&cmdrest); | |
2206 | ||
2207 | old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces); | |
2208 | ||
2209 | format_end = cmdrest; | |
2210 | ||
2211 | if (*cmdrest++ != '"') | |
2212 | error (_("Bad format string, non-terminated '\"'.")); | |
2213 | ||
bbc13ae3 | 2214 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2215 | |
2216 | if (!(*cmdrest == ',' || *cmdrest == '\0')) | |
2217 | error (_("Invalid argument syntax")); | |
2218 | ||
2219 | if (*cmdrest == ',') | |
2220 | cmdrest++; | |
bbc13ae3 | 2221 | cmdrest = skip_spaces_const (cmdrest); |
d3ce09f5 SS |
2222 | |
2223 | /* For each argument, make an expression. */ | |
2224 | ||
2225 | argvec = (struct expression **) alloca (strlen (cmd) | |
2226 | * sizeof (struct expression *)); | |
2227 | ||
2228 | nargs = 0; | |
2229 | while (*cmdrest != '\0') | |
2230 | { | |
bbc13ae3 | 2231 | const char *cmd1; |
d3ce09f5 SS |
2232 | |
2233 | cmd1 = cmdrest; | |
2234 | expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1); | |
2235 | argvec[nargs++] = expr; | |
2236 | cmdrest = cmd1; | |
2237 | if (*cmdrest == ',') | |
2238 | ++cmdrest; | |
2239 | } | |
2240 | ||
2241 | /* We don't want to stop processing, so catch any errors | |
2242 | that may show up. */ | |
2243 | TRY_CATCH (ex, RETURN_MASK_ERROR) | |
2244 | { | |
2245 | aexpr = gen_printf (scope, gdbarch, 0, 0, | |
2246 | format_start, format_end - format_start, | |
2247 | fpieces, nargs, argvec); | |
2248 | } | |
2249 | ||
752eb8b4 TT |
2250 | do_cleanups (old_cleanups); |
2251 | ||
d3ce09f5 SS |
2252 | if (ex.reason < 0) |
2253 | { | |
2254 | /* If we got here, it means the command could not be parsed to a valid | |
2255 | bytecode expression and thus can't be evaluated on the target's side. | |
2256 | It's no use iterating through the other commands. */ | |
2257 | return NULL; | |
2258 | } | |
2259 | ||
d3ce09f5 SS |
2260 | /* We have a valid agent expression, return it. */ |
2261 | return aexpr; | |
2262 | } | |
2263 | ||
2264 | /* Based on location BL, create a list of breakpoint commands to be | |
2265 | passed on to the target. If we have duplicated locations with | |
2266 | different commands, we will add any such to the list. */ | |
2267 | ||
2268 | static void | |
2269 | build_target_command_list (struct bp_location *bl) | |
2270 | { | |
2271 | struct bp_location **locp = NULL, **loc2p; | |
2272 | int null_command_or_parse_error = 0; | |
2273 | int modified = bl->needs_update; | |
2274 | struct bp_location *loc; | |
2275 | ||
2276 | /* For now, limit to agent-style dprintf breakpoints. */ | |
2277 | if (bl->owner->type != bp_dprintf | |
2278 | || strcmp (dprintf_style, dprintf_style_agent) != 0) | |
2279 | return; | |
2280 | ||
2281 | if (!target_can_run_breakpoint_commands ()) | |
2282 | return; | |
2283 | ||
2284 | /* Do a first pass to check for locations with no assigned | |
2285 | conditions or conditions that fail to parse to a valid agent expression | |
2286 | bytecode. If any of these happen, then it's no use to send conditions | |
2287 | to the target since this location will always trigger and generate a | |
2288 | response back to GDB. */ | |
2289 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2290 | { | |
2291 | loc = (*loc2p); | |
2292 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2293 | { | |
2294 | if (modified) | |
2295 | { | |
2296 | struct agent_expr *aexpr; | |
2297 | ||
2298 | /* Re-parse the commands since something changed. In that | |
2299 | case we already freed the command bytecodes (see | |
2300 | force_breakpoint_reinsertion). We just | |
2301 | need to parse the command to bytecodes again. */ | |
2302 | aexpr = parse_cmd_to_aexpr (bl->address, | |
2303 | loc->owner->extra_string); | |
2304 | loc->cmd_bytecode = aexpr; | |
2305 | ||
2306 | if (!aexpr) | |
2307 | continue; | |
2308 | } | |
2309 | ||
2310 | /* If we have a NULL bytecode expression, it means something | |
2311 | went wrong or we have a null command expression. */ | |
2312 | if (!loc->cmd_bytecode) | |
2313 | { | |
2314 | null_command_or_parse_error = 1; | |
2315 | break; | |
2316 | } | |
2317 | } | |
2318 | } | |
2319 | ||
2320 | /* If anything failed, then we're not doing target-side commands, | |
2321 | and so clean up. */ | |
2322 | if (null_command_or_parse_error) | |
2323 | { | |
2324 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2325 | { | |
2326 | loc = (*loc2p); | |
2327 | if (is_breakpoint (loc->owner) | |
2328 | && loc->pspace->num == bl->pspace->num) | |
2329 | { | |
2330 | /* Only go as far as the first NULL bytecode is | |
2331 | located. */ | |
40fb6c5e | 2332 | if (loc->cmd_bytecode == NULL) |
d3ce09f5 SS |
2333 | return; |
2334 | ||
40fb6c5e HZ |
2335 | free_agent_expr (loc->cmd_bytecode); |
2336 | loc->cmd_bytecode = NULL; | |
d3ce09f5 SS |
2337 | } |
2338 | } | |
2339 | } | |
2340 | ||
2341 | /* No NULL commands or failed bytecode generation. Build a command list | |
2342 | for this location's address. */ | |
2343 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2344 | { | |
2345 | loc = (*loc2p); | |
2346 | if (loc->owner->extra_string | |
2347 | && is_breakpoint (loc->owner) | |
2348 | && loc->pspace->num == bl->pspace->num | |
2349 | && loc->owner->enable_state == bp_enabled | |
2350 | && loc->enabled) | |
2351 | /* Add the command to the vector. This will be used later | |
2352 | to send the commands to the target. */ | |
2353 | VEC_safe_push (agent_expr_p, bl->target_info.tcommands, | |
2354 | loc->cmd_bytecode); | |
2355 | } | |
2356 | ||
2357 | bl->target_info.persist = 0; | |
2358 | /* Maybe flag this location as persistent. */ | |
2359 | if (bl->owner->type == bp_dprintf && disconnected_dprintf) | |
2360 | bl->target_info.persist = 1; | |
2361 | } | |
2362 | ||
35df4500 TJB |
2363 | /* Insert a low-level "breakpoint" of some type. BL is the breakpoint |
2364 | location. Any error messages are printed to TMP_ERROR_STREAM; and | |
3fbb6ffa | 2365 | DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems. |
c30eee59 TJB |
2366 | Returns 0 for success, 1 if the bp_location type is not supported or |
2367 | -1 for failure. | |
879bfdc2 | 2368 | |
4a64f543 MS |
2369 | NOTE drow/2003-09-09: This routine could be broken down to an |
2370 | object-style method for each breakpoint or catchpoint type. */ | |
26bb91f3 | 2371 | static int |
35df4500 | 2372 | insert_bp_location (struct bp_location *bl, |
26bb91f3 | 2373 | struct ui_file *tmp_error_stream, |
3fbb6ffa | 2374 | int *disabled_breaks, |
dd61ec5c MW |
2375 | int *hw_breakpoint_error, |
2376 | int *hw_bp_error_explained_already) | |
879bfdc2 DJ |
2377 | { |
2378 | int val = 0; | |
dd61ec5c MW |
2379 | char *hw_bp_err_string = NULL; |
2380 | struct gdb_exception e; | |
879bfdc2 | 2381 | |
b775012e | 2382 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2383 | return 0; |
2384 | ||
35c63cd8 JB |
2385 | /* Note we don't initialize bl->target_info, as that wipes out |
2386 | the breakpoint location's shadow_contents if the breakpoint | |
2387 | is still inserted at that location. This in turn breaks | |
2388 | target_read_memory which depends on these buffers when | |
2389 | a memory read is requested at the breakpoint location: | |
2390 | Once the target_info has been wiped, we fail to see that | |
2391 | we have a breakpoint inserted at that address and thus | |
2392 | read the breakpoint instead of returning the data saved in | |
2393 | the breakpoint location's shadow contents. */ | |
35df4500 TJB |
2394 | bl->target_info.placed_address = bl->address; |
2395 | bl->target_info.placed_address_space = bl->pspace->aspace; | |
f1310107 | 2396 | bl->target_info.length = bl->length; |
8181d85f | 2397 | |
b775012e LM |
2398 | /* When working with target-side conditions, we must pass all the conditions |
2399 | for the same breakpoint address down to the target since GDB will not | |
2400 | insert those locations. With a list of breakpoint conditions, the target | |
2401 | can decide when to stop and notify GDB. */ | |
2402 | ||
2403 | if (is_breakpoint (bl->owner)) | |
2404 | { | |
2405 | build_target_condition_list (bl); | |
d3ce09f5 SS |
2406 | build_target_command_list (bl); |
2407 | /* Reset the modification marker. */ | |
b775012e LM |
2408 | bl->needs_update = 0; |
2409 | } | |
2410 | ||
35df4500 TJB |
2411 | if (bl->loc_type == bp_loc_software_breakpoint |
2412 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
879bfdc2 | 2413 | { |
35df4500 | 2414 | if (bl->owner->type != bp_hardware_breakpoint) |
765dc015 VP |
2415 | { |
2416 | /* If the explicitly specified breakpoint type | |
2417 | is not hardware breakpoint, check the memory map to see | |
2418 | if the breakpoint address is in read only memory or not. | |
4a64f543 | 2419 | |
765dc015 VP |
2420 | Two important cases are: |
2421 | - location type is not hardware breakpoint, memory | |
2422 | is readonly. We change the type of the location to | |
2423 | hardware breakpoint. | |
4a64f543 MS |
2424 | - location type is hardware breakpoint, memory is |
2425 | read-write. This means we've previously made the | |
2426 | location hardware one, but then the memory map changed, | |
2427 | so we undo. | |
765dc015 | 2428 | |
4a64f543 MS |
2429 | When breakpoints are removed, remove_breakpoints will use |
2430 | location types we've just set here, the only possible | |
2431 | problem is that memory map has changed during running | |
2432 | program, but it's not going to work anyway with current | |
2433 | gdb. */ | |
765dc015 | 2434 | struct mem_region *mr |
35df4500 | 2435 | = lookup_mem_region (bl->target_info.placed_address); |
765dc015 VP |
2436 | |
2437 | if (mr) | |
2438 | { | |
2439 | if (automatic_hardware_breakpoints) | |
2440 | { | |
765dc015 VP |
2441 | enum bp_loc_type new_type; |
2442 | ||
2443 | if (mr->attrib.mode != MEM_RW) | |
2444 | new_type = bp_loc_hardware_breakpoint; | |
2445 | else | |
2446 | new_type = bp_loc_software_breakpoint; | |
2447 | ||
35df4500 | 2448 | if (new_type != bl->loc_type) |
765dc015 VP |
2449 | { |
2450 | static int said = 0; | |
cc59ec59 | 2451 | |
35df4500 | 2452 | bl->loc_type = new_type; |
765dc015 VP |
2453 | if (!said) |
2454 | { | |
3e43a32a MS |
2455 | fprintf_filtered (gdb_stdout, |
2456 | _("Note: automatically using " | |
2457 | "hardware breakpoints for " | |
2458 | "read-only addresses.\n")); | |
765dc015 VP |
2459 | said = 1; |
2460 | } | |
2461 | } | |
2462 | } | |
35df4500 | 2463 | else if (bl->loc_type == bp_loc_software_breakpoint |
765dc015 | 2464 | && mr->attrib.mode != MEM_RW) |
3e43a32a MS |
2465 | warning (_("cannot set software breakpoint " |
2466 | "at readonly address %s"), | |
35df4500 | 2467 | paddress (bl->gdbarch, bl->address)); |
765dc015 VP |
2468 | } |
2469 | } | |
2470 | ||
879bfdc2 DJ |
2471 | /* First check to see if we have to handle an overlay. */ |
2472 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
2473 | || bl->section == NULL |
2474 | || !(section_is_overlay (bl->section))) | |
879bfdc2 DJ |
2475 | { |
2476 | /* No overlay handling: just set the breakpoint. */ | |
dd61ec5c MW |
2477 | TRY_CATCH (e, RETURN_MASK_ALL) |
2478 | { | |
2479 | val = bl->owner->ops->insert_location (bl); | |
2480 | } | |
2481 | if (e.reason < 0) | |
2482 | { | |
2483 | val = 1; | |
2484 | hw_bp_err_string = (char *) e.message; | |
2485 | } | |
879bfdc2 DJ |
2486 | } |
2487 | else | |
2488 | { | |
4a64f543 | 2489 | /* This breakpoint is in an overlay section. |
879bfdc2 DJ |
2490 | Shall we set a breakpoint at the LMA? */ |
2491 | if (!overlay_events_enabled) | |
2492 | { | |
2493 | /* Yes -- overlay event support is not active, | |
2494 | so we must try to set a breakpoint at the LMA. | |
2495 | This will not work for a hardware breakpoint. */ | |
35df4500 | 2496 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
8a3fe4f8 | 2497 | warning (_("hardware breakpoint %d not supported in overlay!"), |
35df4500 | 2498 | bl->owner->number); |
879bfdc2 DJ |
2499 | else |
2500 | { | |
35df4500 TJB |
2501 | CORE_ADDR addr = overlay_unmapped_address (bl->address, |
2502 | bl->section); | |
879bfdc2 | 2503 | /* Set a software (trap) breakpoint at the LMA. */ |
35df4500 TJB |
2504 | bl->overlay_target_info = bl->target_info; |
2505 | bl->overlay_target_info.placed_address = addr; | |
2506 | val = target_insert_breakpoint (bl->gdbarch, | |
2507 | &bl->overlay_target_info); | |
879bfdc2 | 2508 | if (val != 0) |
99361f52 | 2509 | fprintf_unfiltered (tmp_error_stream, |
3e43a32a MS |
2510 | "Overlay breakpoint %d " |
2511 | "failed: in ROM?\n", | |
35df4500 | 2512 | bl->owner->number); |
879bfdc2 DJ |
2513 | } |
2514 | } | |
2515 | /* Shall we set a breakpoint at the VMA? */ | |
35df4500 | 2516 | if (section_is_mapped (bl->section)) |
879bfdc2 DJ |
2517 | { |
2518 | /* Yes. This overlay section is mapped into memory. */ | |
dd61ec5c MW |
2519 | TRY_CATCH (e, RETURN_MASK_ALL) |
2520 | { | |
2521 | val = bl->owner->ops->insert_location (bl); | |
2522 | } | |
2523 | if (e.reason < 0) | |
2524 | { | |
2525 | val = 1; | |
2526 | hw_bp_err_string = (char *) e.message; | |
2527 | } | |
879bfdc2 DJ |
2528 | } |
2529 | else | |
2530 | { | |
2531 | /* No. This breakpoint will not be inserted. | |
2532 | No error, but do not mark the bp as 'inserted'. */ | |
2533 | return 0; | |
2534 | } | |
2535 | } | |
2536 | ||
2537 | if (val) | |
2538 | { | |
2539 | /* Can't set the breakpoint. */ | |
35df4500 | 2540 | if (solib_name_from_address (bl->pspace, bl->address)) |
879bfdc2 | 2541 | { |
4a64f543 | 2542 | /* See also: disable_breakpoints_in_shlibs. */ |
879bfdc2 | 2543 | val = 0; |
35df4500 | 2544 | bl->shlib_disabled = 1; |
8d3788bd | 2545 | observer_notify_breakpoint_modified (bl->owner); |
3fbb6ffa TJB |
2546 | if (!*disabled_breaks) |
2547 | { | |
2548 | fprintf_unfiltered (tmp_error_stream, | |
2549 | "Cannot insert breakpoint %d.\n", | |
2550 | bl->owner->number); | |
2551 | fprintf_unfiltered (tmp_error_stream, | |
2552 | "Temporarily disabling shared " | |
2553 | "library breakpoints:\n"); | |
2554 | } | |
2555 | *disabled_breaks = 1; | |
879bfdc2 | 2556 | fprintf_unfiltered (tmp_error_stream, |
35df4500 | 2557 | "breakpoint #%d\n", bl->owner->number); |
879bfdc2 DJ |
2558 | } |
2559 | else | |
879bfdc2 | 2560 | { |
35df4500 | 2561 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
879bfdc2 | 2562 | { |
dd61ec5c MW |
2563 | *hw_breakpoint_error = 1; |
2564 | *hw_bp_error_explained_already = hw_bp_err_string != NULL; | |
2565 | fprintf_unfiltered (tmp_error_stream, | |
2566 | "Cannot insert hardware breakpoint %d%s", | |
2567 | bl->owner->number, hw_bp_err_string ? ":" : ".\n"); | |
2568 | if (hw_bp_err_string) | |
2569 | fprintf_unfiltered (tmp_error_stream, "%s.\n", hw_bp_err_string); | |
879bfdc2 DJ |
2570 | } |
2571 | else | |
2572 | { | |
2573 | fprintf_unfiltered (tmp_error_stream, | |
2574 | "Cannot insert breakpoint %d.\n", | |
35df4500 | 2575 | bl->owner->number); |
879bfdc2 DJ |
2576 | fprintf_filtered (tmp_error_stream, |
2577 | "Error accessing memory address "); | |
35df4500 | 2578 | fputs_filtered (paddress (bl->gdbarch, bl->address), |
5af949e3 | 2579 | tmp_error_stream); |
879bfdc2 DJ |
2580 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
2581 | safe_strerror (val)); | |
2582 | } | |
2583 | ||
2584 | } | |
2585 | } | |
2586 | else | |
35df4500 | 2587 | bl->inserted = 1; |
879bfdc2 DJ |
2588 | |
2589 | return val; | |
2590 | } | |
2591 | ||
35df4500 | 2592 | else if (bl->loc_type == bp_loc_hardware_watchpoint |
879bfdc2 | 2593 | /* NOTE drow/2003-09-08: This state only exists for removing |
4a64f543 | 2594 | watchpoints. It's not clear that it's necessary... */ |
35df4500 | 2595 | && bl->owner->disposition != disp_del_at_next_stop) |
879bfdc2 | 2596 | { |
77b06cd7 TJB |
2597 | gdb_assert (bl->owner->ops != NULL |
2598 | && bl->owner->ops->insert_location != NULL); | |
2599 | ||
2600 | val = bl->owner->ops->insert_location (bl); | |
85d721b8 PA |
2601 | |
2602 | /* If trying to set a read-watchpoint, and it turns out it's not | |
2603 | supported, try emulating one with an access watchpoint. */ | |
35df4500 | 2604 | if (val == 1 && bl->watchpoint_type == hw_read) |
85d721b8 PA |
2605 | { |
2606 | struct bp_location *loc, **loc_temp; | |
2607 | ||
2608 | /* But don't try to insert it, if there's already another | |
2609 | hw_access location that would be considered a duplicate | |
2610 | of this one. */ | |
2611 | ALL_BP_LOCATIONS (loc, loc_temp) | |
35df4500 | 2612 | if (loc != bl |
85d721b8 | 2613 | && loc->watchpoint_type == hw_access |
35df4500 | 2614 | && watchpoint_locations_match (bl, loc)) |
85d721b8 | 2615 | { |
35df4500 TJB |
2616 | bl->duplicate = 1; |
2617 | bl->inserted = 1; | |
2618 | bl->target_info = loc->target_info; | |
2619 | bl->watchpoint_type = hw_access; | |
85d721b8 PA |
2620 | val = 0; |
2621 | break; | |
2622 | } | |
2623 | ||
2624 | if (val == 1) | |
2625 | { | |
77b06cd7 TJB |
2626 | bl->watchpoint_type = hw_access; |
2627 | val = bl->owner->ops->insert_location (bl); | |
2628 | ||
2629 | if (val) | |
2630 | /* Back to the original value. */ | |
2631 | bl->watchpoint_type = hw_read; | |
85d721b8 PA |
2632 | } |
2633 | } | |
2634 | ||
35df4500 | 2635 | bl->inserted = (val == 0); |
879bfdc2 DJ |
2636 | } |
2637 | ||
35df4500 | 2638 | else if (bl->owner->type == bp_catchpoint) |
879bfdc2 | 2639 | { |
77b06cd7 TJB |
2640 | gdb_assert (bl->owner->ops != NULL |
2641 | && bl->owner->ops->insert_location != NULL); | |
2642 | ||
2643 | val = bl->owner->ops->insert_location (bl); | |
2644 | if (val) | |
2645 | { | |
2646 | bl->owner->enable_state = bp_disabled; | |
2647 | ||
2648 | if (val == 1) | |
2649 | warning (_("\ | |
2650 | Error inserting catchpoint %d: Your system does not support this type\n\ | |
2651 | of catchpoint."), bl->owner->number); | |
2652 | else | |
2653 | warning (_("Error inserting catchpoint %d."), bl->owner->number); | |
2654 | } | |
2655 | ||
2656 | bl->inserted = (val == 0); | |
1640b821 DJ |
2657 | |
2658 | /* We've already printed an error message if there was a problem | |
2659 | inserting this catchpoint, and we've disabled the catchpoint, | |
2660 | so just return success. */ | |
2661 | return 0; | |
879bfdc2 DJ |
2662 | } |
2663 | ||
2664 | return 0; | |
2665 | } | |
2666 | ||
6c95b8df PA |
2667 | /* This function is called when program space PSPACE is about to be |
2668 | deleted. It takes care of updating breakpoints to not reference | |
2669 | PSPACE anymore. */ | |
2670 | ||
2671 | void | |
2672 | breakpoint_program_space_exit (struct program_space *pspace) | |
2673 | { | |
2674 | struct breakpoint *b, *b_temp; | |
876fa593 | 2675 | struct bp_location *loc, **loc_temp; |
6c95b8df PA |
2676 | |
2677 | /* Remove any breakpoint that was set through this program space. */ | |
2678 | ALL_BREAKPOINTS_SAFE (b, b_temp) | |
2679 | { | |
2680 | if (b->pspace == pspace) | |
2681 | delete_breakpoint (b); | |
2682 | } | |
2683 | ||
2684 | /* Breakpoints set through other program spaces could have locations | |
2685 | bound to PSPACE as well. Remove those. */ | |
876fa593 | 2686 | ALL_BP_LOCATIONS (loc, loc_temp) |
6c95b8df PA |
2687 | { |
2688 | struct bp_location *tmp; | |
2689 | ||
2690 | if (loc->pspace == pspace) | |
2691 | { | |
2bdf28a0 | 2692 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
6c95b8df PA |
2693 | if (loc->owner->loc == loc) |
2694 | loc->owner->loc = loc->next; | |
2695 | else | |
2696 | for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next) | |
2697 | if (tmp->next == loc) | |
2698 | { | |
2699 | tmp->next = loc->next; | |
2700 | break; | |
2701 | } | |
2702 | } | |
2703 | } | |
2704 | ||
2705 | /* Now update the global location list to permanently delete the | |
2706 | removed locations above. */ | |
2707 | update_global_location_list (0); | |
2708 | } | |
2709 | ||
74960c60 VP |
2710 | /* Make sure all breakpoints are inserted in inferior. |
2711 | Throws exception on any error. | |
2712 | A breakpoint that is already inserted won't be inserted | |
2713 | again, so calling this function twice is safe. */ | |
2714 | void | |
2715 | insert_breakpoints (void) | |
2716 | { | |
2717 | struct breakpoint *bpt; | |
2718 | ||
2719 | ALL_BREAKPOINTS (bpt) | |
2720 | if (is_hardware_watchpoint (bpt)) | |
3a5c3e22 PA |
2721 | { |
2722 | struct watchpoint *w = (struct watchpoint *) bpt; | |
2723 | ||
2724 | update_watchpoint (w, 0 /* don't reparse. */); | |
2725 | } | |
74960c60 | 2726 | |
b60e7edf | 2727 | update_global_location_list (1); |
74960c60 | 2728 | |
c35b1492 PA |
2729 | /* update_global_location_list does not insert breakpoints when |
2730 | always_inserted_mode is not enabled. Explicitly insert them | |
2731 | now. */ | |
2732 | if (!breakpoints_always_inserted_mode ()) | |
74960c60 VP |
2733 | insert_breakpoint_locations (); |
2734 | } | |
2735 | ||
20388dd6 YQ |
2736 | /* Invoke CALLBACK for each of bp_location. */ |
2737 | ||
2738 | void | |
2739 | iterate_over_bp_locations (walk_bp_location_callback callback) | |
2740 | { | |
2741 | struct bp_location *loc, **loc_tmp; | |
2742 | ||
2743 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
2744 | { | |
2745 | callback (loc, NULL); | |
2746 | } | |
2747 | } | |
2748 | ||
b775012e LM |
2749 | /* This is used when we need to synch breakpoint conditions between GDB and the |
2750 | target. It is the case with deleting and disabling of breakpoints when using | |
2751 | always-inserted mode. */ | |
2752 | ||
2753 | static void | |
2754 | update_inserted_breakpoint_locations (void) | |
2755 | { | |
2756 | struct bp_location *bl, **blp_tmp; | |
2757 | int error_flag = 0; | |
2758 | int val = 0; | |
2759 | int disabled_breaks = 0; | |
2760 | int hw_breakpoint_error = 0; | |
dd61ec5c | 2761 | int hw_bp_details_reported = 0; |
b775012e LM |
2762 | |
2763 | struct ui_file *tmp_error_stream = mem_fileopen (); | |
2764 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); | |
2765 | ||
2766 | /* Explicitly mark the warning -- this will only be printed if | |
2767 | there was an error. */ | |
2768 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
2769 | ||
2770 | save_current_space_and_thread (); | |
2771 | ||
2772 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
2773 | { | |
2774 | /* We only want to update software breakpoints and hardware | |
2775 | breakpoints. */ | |
2776 | if (!is_breakpoint (bl->owner)) | |
2777 | continue; | |
2778 | ||
2779 | /* We only want to update locations that are already inserted | |
2780 | and need updating. This is to avoid unwanted insertion during | |
2781 | deletion of breakpoints. */ | |
2782 | if (!bl->inserted || (bl->inserted && !bl->needs_update)) | |
2783 | continue; | |
2784 | ||
2785 | switch_to_program_space_and_thread (bl->pspace); | |
2786 | ||
2787 | /* For targets that support global breakpoints, there's no need | |
2788 | to select an inferior to insert breakpoint to. In fact, even | |
2789 | if we aren't attached to any process yet, we should still | |
2790 | insert breakpoints. */ | |
f5656ead | 2791 | if (!gdbarch_has_global_breakpoints (target_gdbarch ()) |
b775012e LM |
2792 | && ptid_equal (inferior_ptid, null_ptid)) |
2793 | continue; | |
2794 | ||
2795 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, | |
dd61ec5c | 2796 | &hw_breakpoint_error, &hw_bp_details_reported); |
b775012e LM |
2797 | if (val) |
2798 | error_flag = val; | |
2799 | } | |
2800 | ||
2801 | if (error_flag) | |
2802 | { | |
2803 | target_terminal_ours_for_output (); | |
2804 | error_stream (tmp_error_stream); | |
2805 | } | |
2806 | ||
2807 | do_cleanups (cleanups); | |
2808 | } | |
2809 | ||
c30eee59 | 2810 | /* Used when starting or continuing the program. */ |
c906108c | 2811 | |
74960c60 VP |
2812 | static void |
2813 | insert_breakpoint_locations (void) | |
c906108c | 2814 | { |
a5606eee | 2815 | struct breakpoint *bpt; |
35df4500 | 2816 | struct bp_location *bl, **blp_tmp; |
eacd795a | 2817 | int error_flag = 0; |
c906108c | 2818 | int val = 0; |
3fbb6ffa | 2819 | int disabled_breaks = 0; |
81d0cc19 | 2820 | int hw_breakpoint_error = 0; |
dd61ec5c | 2821 | int hw_bp_error_explained_already = 0; |
c906108c | 2822 | |
81d0cc19 | 2823 | struct ui_file *tmp_error_stream = mem_fileopen (); |
f7545552 | 2824 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); |
74960c60 | 2825 | |
81d0cc19 GS |
2826 | /* Explicitly mark the warning -- this will only be printed if |
2827 | there was an error. */ | |
2828 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
6c95b8df PA |
2829 | |
2830 | save_current_space_and_thread (); | |
2831 | ||
35df4500 | 2832 | ALL_BP_LOCATIONS (bl, blp_tmp) |
879bfdc2 | 2833 | { |
b775012e | 2834 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2835 | continue; |
2836 | ||
4a64f543 MS |
2837 | /* There is no point inserting thread-specific breakpoints if |
2838 | the thread no longer exists. ALL_BP_LOCATIONS bp_location | |
2839 | has BL->OWNER always non-NULL. */ | |
35df4500 TJB |
2840 | if (bl->owner->thread != -1 |
2841 | && !valid_thread_id (bl->owner->thread)) | |
f365de73 AS |
2842 | continue; |
2843 | ||
35df4500 | 2844 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df PA |
2845 | |
2846 | /* For targets that support global breakpoints, there's no need | |
2847 | to select an inferior to insert breakpoint to. In fact, even | |
2848 | if we aren't attached to any process yet, we should still | |
2849 | insert breakpoints. */ | |
f5656ead | 2850 | if (!gdbarch_has_global_breakpoints (target_gdbarch ()) |
6c95b8df PA |
2851 | && ptid_equal (inferior_ptid, null_ptid)) |
2852 | continue; | |
2853 | ||
3fbb6ffa | 2854 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, |
dd61ec5c | 2855 | &hw_breakpoint_error, &hw_bp_error_explained_already); |
879bfdc2 | 2856 | if (val) |
eacd795a | 2857 | error_flag = val; |
879bfdc2 | 2858 | } |
c906108c | 2859 | |
4a64f543 MS |
2860 | /* If we failed to insert all locations of a watchpoint, remove |
2861 | them, as half-inserted watchpoint is of limited use. */ | |
a5606eee VP |
2862 | ALL_BREAKPOINTS (bpt) |
2863 | { | |
2864 | int some_failed = 0; | |
2865 | struct bp_location *loc; | |
2866 | ||
2867 | if (!is_hardware_watchpoint (bpt)) | |
2868 | continue; | |
2869 | ||
d6b74ac4 | 2870 | if (!breakpoint_enabled (bpt)) |
a5606eee | 2871 | continue; |
74960c60 VP |
2872 | |
2873 | if (bpt->disposition == disp_del_at_next_stop) | |
2874 | continue; | |
a5606eee VP |
2875 | |
2876 | for (loc = bpt->loc; loc; loc = loc->next) | |
56710373 | 2877 | if (!loc->inserted && should_be_inserted (loc)) |
a5606eee VP |
2878 | { |
2879 | some_failed = 1; | |
2880 | break; | |
2881 | } | |
2882 | if (some_failed) | |
2883 | { | |
2884 | for (loc = bpt->loc; loc; loc = loc->next) | |
2885 | if (loc->inserted) | |
2886 | remove_breakpoint (loc, mark_uninserted); | |
2887 | ||
2888 | hw_breakpoint_error = 1; | |
2889 | fprintf_unfiltered (tmp_error_stream, | |
2890 | "Could not insert hardware watchpoint %d.\n", | |
2891 | bpt->number); | |
eacd795a | 2892 | error_flag = -1; |
a5606eee VP |
2893 | } |
2894 | } | |
2895 | ||
eacd795a | 2896 | if (error_flag) |
81d0cc19 GS |
2897 | { |
2898 | /* If a hardware breakpoint or watchpoint was inserted, add a | |
2899 | message about possibly exhausted resources. */ | |
dd61ec5c | 2900 | if (hw_breakpoint_error && !hw_bp_error_explained_already) |
81d0cc19 | 2901 | { |
c6510018 MS |
2902 | fprintf_unfiltered (tmp_error_stream, |
2903 | "Could not insert hardware breakpoints:\n\ | |
2904 | You may have requested too many hardware breakpoints/watchpoints.\n"); | |
81d0cc19 | 2905 | } |
81d0cc19 GS |
2906 | target_terminal_ours_for_output (); |
2907 | error_stream (tmp_error_stream); | |
2908 | } | |
f7545552 TT |
2909 | |
2910 | do_cleanups (cleanups); | |
c906108c SS |
2911 | } |
2912 | ||
c30eee59 TJB |
2913 | /* Used when the program stops. |
2914 | Returns zero if successful, or non-zero if there was a problem | |
2915 | removing a breakpoint location. */ | |
2916 | ||
c906108c | 2917 | int |
fba45db2 | 2918 | remove_breakpoints (void) |
c906108c | 2919 | { |
35df4500 | 2920 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 2921 | int val = 0; |
c906108c | 2922 | |
35df4500 | 2923 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2924 | { |
1e4d1764 | 2925 | if (bl->inserted && !is_tracepoint (bl->owner)) |
35df4500 | 2926 | val |= remove_breakpoint (bl, mark_uninserted); |
c5aa993b | 2927 | } |
3a1bae8e | 2928 | return val; |
c906108c SS |
2929 | } |
2930 | ||
6c95b8df PA |
2931 | /* Remove breakpoints of process PID. */ |
2932 | ||
2933 | int | |
2934 | remove_breakpoints_pid (int pid) | |
2935 | { | |
35df4500 | 2936 | struct bp_location *bl, **blp_tmp; |
6c95b8df PA |
2937 | int val; |
2938 | struct inferior *inf = find_inferior_pid (pid); | |
2939 | ||
35df4500 | 2940 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 2941 | { |
35df4500 | 2942 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2943 | continue; |
2944 | ||
d3ce09f5 SS |
2945 | if (bl->owner->type == bp_dprintf) |
2946 | continue; | |
2947 | ||
35df4500 | 2948 | if (bl->inserted) |
6c95b8df | 2949 | { |
35df4500 | 2950 | val = remove_breakpoint (bl, mark_uninserted); |
6c95b8df PA |
2951 | if (val != 0) |
2952 | return val; | |
2953 | } | |
2954 | } | |
2955 | return 0; | |
2956 | } | |
2957 | ||
c906108c | 2958 | int |
fba45db2 | 2959 | reattach_breakpoints (int pid) |
c906108c | 2960 | { |
6c95b8df | 2961 | struct cleanup *old_chain; |
35df4500 | 2962 | struct bp_location *bl, **blp_tmp; |
c906108c | 2963 | int val; |
86b887df | 2964 | struct ui_file *tmp_error_stream; |
dd61ec5c | 2965 | int dummy1 = 0, dummy2 = 0, dummy3 = 0; |
6c95b8df PA |
2966 | struct inferior *inf; |
2967 | struct thread_info *tp; | |
2968 | ||
2969 | tp = any_live_thread_of_process (pid); | |
2970 | if (tp == NULL) | |
2971 | return 1; | |
2972 | ||
2973 | inf = find_inferior_pid (pid); | |
2974 | old_chain = save_inferior_ptid (); | |
2975 | ||
2976 | inferior_ptid = tp->ptid; | |
a4954f26 | 2977 | |
86b887df | 2978 | tmp_error_stream = mem_fileopen (); |
a4954f26 | 2979 | make_cleanup_ui_file_delete (tmp_error_stream); |
c906108c | 2980 | |
35df4500 | 2981 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2982 | { |
35df4500 | 2983 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2984 | continue; |
2985 | ||
35df4500 | 2986 | if (bl->inserted) |
c5aa993b | 2987 | { |
35df4500 | 2988 | bl->inserted = 0; |
dd61ec5c | 2989 | val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3); |
c5aa993b JM |
2990 | if (val != 0) |
2991 | { | |
ce696e05 | 2992 | do_cleanups (old_chain); |
c5aa993b JM |
2993 | return val; |
2994 | } | |
2995 | } | |
2996 | } | |
ce696e05 | 2997 | do_cleanups (old_chain); |
c906108c SS |
2998 | return 0; |
2999 | } | |
3000 | ||
e58b0e63 PA |
3001 | static int internal_breakpoint_number = -1; |
3002 | ||
84f4c1fe PM |
3003 | /* Set the breakpoint number of B, depending on the value of INTERNAL. |
3004 | If INTERNAL is non-zero, the breakpoint number will be populated | |
3005 | from internal_breakpoint_number and that variable decremented. | |
e5dd4106 | 3006 | Otherwise the breakpoint number will be populated from |
84f4c1fe PM |
3007 | breakpoint_count and that value incremented. Internal breakpoints |
3008 | do not set the internal var bpnum. */ | |
3009 | static void | |
3010 | set_breakpoint_number (int internal, struct breakpoint *b) | |
3011 | { | |
3012 | if (internal) | |
3013 | b->number = internal_breakpoint_number--; | |
3014 | else | |
3015 | { | |
3016 | set_breakpoint_count (breakpoint_count + 1); | |
3017 | b->number = breakpoint_count; | |
3018 | } | |
3019 | } | |
3020 | ||
e62c965a | 3021 | static struct breakpoint * |
a6d9a66e | 3022 | create_internal_breakpoint (struct gdbarch *gdbarch, |
06edf0c0 | 3023 | CORE_ADDR address, enum bptype type, |
c0a91b2b | 3024 | const struct breakpoint_ops *ops) |
e62c965a | 3025 | { |
e62c965a PP |
3026 | struct symtab_and_line sal; |
3027 | struct breakpoint *b; | |
3028 | ||
4a64f543 | 3029 | init_sal (&sal); /* Initialize to zeroes. */ |
e62c965a PP |
3030 | |
3031 | sal.pc = address; | |
3032 | sal.section = find_pc_overlay (sal.pc); | |
6c95b8df | 3033 | sal.pspace = current_program_space; |
e62c965a | 3034 | |
06edf0c0 | 3035 | b = set_raw_breakpoint (gdbarch, sal, type, ops); |
e62c965a PP |
3036 | b->number = internal_breakpoint_number--; |
3037 | b->disposition = disp_donttouch; | |
3038 | ||
3039 | return b; | |
3040 | } | |
3041 | ||
17450429 PP |
3042 | static const char *const longjmp_names[] = |
3043 | { | |
3044 | "longjmp", "_longjmp", "siglongjmp", "_siglongjmp" | |
3045 | }; | |
3046 | #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names) | |
3047 | ||
3048 | /* Per-objfile data private to breakpoint.c. */ | |
3049 | struct breakpoint_objfile_data | |
3050 | { | |
3051 | /* Minimal symbol for "_ovly_debug_event" (if any). */ | |
3052 | struct minimal_symbol *overlay_msym; | |
3053 | ||
3054 | /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */ | |
3055 | struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES]; | |
3056 | ||
28106bc2 SDJ |
3057 | /* True if we have looked for longjmp probes. */ |
3058 | int longjmp_searched; | |
3059 | ||
3060 | /* SystemTap probe points for longjmp (if any). */ | |
3061 | VEC (probe_p) *longjmp_probes; | |
3062 | ||
17450429 PP |
3063 | /* Minimal symbol for "std::terminate()" (if any). */ |
3064 | struct minimal_symbol *terminate_msym; | |
3065 | ||
3066 | /* Minimal symbol for "_Unwind_DebugHook" (if any). */ | |
3067 | struct minimal_symbol *exception_msym; | |
28106bc2 SDJ |
3068 | |
3069 | /* True if we have looked for exception probes. */ | |
3070 | int exception_searched; | |
3071 | ||
3072 | /* SystemTap probe points for unwinding (if any). */ | |
3073 | VEC (probe_p) *exception_probes; | |
17450429 PP |
3074 | }; |
3075 | ||
3076 | static const struct objfile_data *breakpoint_objfile_key; | |
3077 | ||
3078 | /* Minimal symbol not found sentinel. */ | |
3079 | static struct minimal_symbol msym_not_found; | |
3080 | ||
3081 | /* Returns TRUE if MSYM point to the "not found" sentinel. */ | |
3082 | ||
3083 | static int | |
3084 | msym_not_found_p (const struct minimal_symbol *msym) | |
3085 | { | |
3086 | return msym == &msym_not_found; | |
3087 | } | |
3088 | ||
3089 | /* Return per-objfile data needed by breakpoint.c. | |
3090 | Allocate the data if necessary. */ | |
3091 | ||
3092 | static struct breakpoint_objfile_data * | |
3093 | get_breakpoint_objfile_data (struct objfile *objfile) | |
3094 | { | |
3095 | struct breakpoint_objfile_data *bp_objfile_data; | |
3096 | ||
3097 | bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key); | |
3098 | if (bp_objfile_data == NULL) | |
3099 | { | |
3100 | bp_objfile_data = obstack_alloc (&objfile->objfile_obstack, | |
3101 | sizeof (*bp_objfile_data)); | |
3102 | ||
3103 | memset (bp_objfile_data, 0, sizeof (*bp_objfile_data)); | |
3104 | set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data); | |
3105 | } | |
3106 | return bp_objfile_data; | |
3107 | } | |
3108 | ||
28106bc2 SDJ |
3109 | static void |
3110 | free_breakpoint_probes (struct objfile *obj, void *data) | |
3111 | { | |
3112 | struct breakpoint_objfile_data *bp_objfile_data = data; | |
3113 | ||
3114 | VEC_free (probe_p, bp_objfile_data->longjmp_probes); | |
3115 | VEC_free (probe_p, bp_objfile_data->exception_probes); | |
3116 | } | |
3117 | ||
e62c965a | 3118 | static void |
af02033e | 3119 | create_overlay_event_breakpoint (void) |
e62c965a | 3120 | { |
69de3c6a | 3121 | struct objfile *objfile; |
af02033e | 3122 | const char *const func_name = "_ovly_debug_event"; |
e62c965a | 3123 | |
69de3c6a PP |
3124 | ALL_OBJFILES (objfile) |
3125 | { | |
3126 | struct breakpoint *b; | |
17450429 PP |
3127 | struct breakpoint_objfile_data *bp_objfile_data; |
3128 | CORE_ADDR addr; | |
69de3c6a | 3129 | |
17450429 PP |
3130 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
3131 | ||
3132 | if (msym_not_found_p (bp_objfile_data->overlay_msym)) | |
3133 | continue; | |
3134 | ||
3135 | if (bp_objfile_data->overlay_msym == NULL) | |
3136 | { | |
3137 | struct minimal_symbol *m; | |
3138 | ||
3139 | m = lookup_minimal_symbol_text (func_name, objfile); | |
3140 | if (m == NULL) | |
3141 | { | |
3142 | /* Avoid future lookups in this objfile. */ | |
3143 | bp_objfile_data->overlay_msym = &msym_not_found; | |
3144 | continue; | |
3145 | } | |
3146 | bp_objfile_data->overlay_msym = m; | |
3147 | } | |
e62c965a | 3148 | |
17450429 PP |
3149 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym); |
3150 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
3151 | bp_overlay_event, |
3152 | &internal_breakpoint_ops); | |
69de3c6a | 3153 | b->addr_string = xstrdup (func_name); |
e62c965a | 3154 | |
69de3c6a PP |
3155 | if (overlay_debugging == ovly_auto) |
3156 | { | |
3157 | b->enable_state = bp_enabled; | |
3158 | overlay_events_enabled = 1; | |
3159 | } | |
3160 | else | |
3161 | { | |
3162 | b->enable_state = bp_disabled; | |
3163 | overlay_events_enabled = 0; | |
3164 | } | |
e62c965a PP |
3165 | } |
3166 | update_global_location_list (1); | |
3167 | } | |
3168 | ||
0fd8e87f | 3169 | static void |
af02033e | 3170 | create_longjmp_master_breakpoint (void) |
0fd8e87f | 3171 | { |
6c95b8df | 3172 | struct program_space *pspace; |
6c95b8df PA |
3173 | struct cleanup *old_chain; |
3174 | ||
3175 | old_chain = save_current_program_space (); | |
0fd8e87f | 3176 | |
6c95b8df | 3177 | ALL_PSPACES (pspace) |
af02033e PP |
3178 | { |
3179 | struct objfile *objfile; | |
3180 | ||
3181 | set_current_program_space (pspace); | |
3182 | ||
3183 | ALL_OBJFILES (objfile) | |
0fd8e87f | 3184 | { |
af02033e PP |
3185 | int i; |
3186 | struct gdbarch *gdbarch; | |
17450429 | 3187 | struct breakpoint_objfile_data *bp_objfile_data; |
0fd8e87f | 3188 | |
af02033e PP |
3189 | gdbarch = get_objfile_arch (objfile); |
3190 | if (!gdbarch_get_longjmp_target_p (gdbarch)) | |
0fd8e87f UW |
3191 | continue; |
3192 | ||
17450429 PP |
3193 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
3194 | ||
28106bc2 SDJ |
3195 | if (!bp_objfile_data->longjmp_searched) |
3196 | { | |
3197 | bp_objfile_data->longjmp_probes | |
3198 | = find_probes_in_objfile (objfile, "libc", "longjmp"); | |
3199 | bp_objfile_data->longjmp_searched = 1; | |
3200 | } | |
3201 | ||
3202 | if (bp_objfile_data->longjmp_probes != NULL) | |
3203 | { | |
3204 | int i; | |
3205 | struct probe *probe; | |
3206 | struct gdbarch *gdbarch = get_objfile_arch (objfile); | |
3207 | ||
3208 | for (i = 0; | |
3209 | VEC_iterate (probe_p, | |
3210 | bp_objfile_data->longjmp_probes, | |
3211 | i, probe); | |
3212 | ++i) | |
3213 | { | |
3214 | struct breakpoint *b; | |
3215 | ||
3216 | b = create_internal_breakpoint (gdbarch, probe->address, | |
3217 | bp_longjmp_master, | |
3218 | &internal_breakpoint_ops); | |
3219 | b->addr_string = xstrdup ("-probe-stap libc:longjmp"); | |
3220 | b->enable_state = bp_disabled; | |
3221 | } | |
3222 | ||
3223 | continue; | |
3224 | } | |
3225 | ||
17450429 | 3226 | for (i = 0; i < NUM_LONGJMP_NAMES; i++) |
af02033e PP |
3227 | { |
3228 | struct breakpoint *b; | |
af02033e | 3229 | const char *func_name; |
17450429 | 3230 | CORE_ADDR addr; |
6c95b8df | 3231 | |
17450429 | 3232 | if (msym_not_found_p (bp_objfile_data->longjmp_msym[i])) |
af02033e | 3233 | continue; |
0fd8e87f | 3234 | |
17450429 PP |
3235 | func_name = longjmp_names[i]; |
3236 | if (bp_objfile_data->longjmp_msym[i] == NULL) | |
3237 | { | |
3238 | struct minimal_symbol *m; | |
3239 | ||
3240 | m = lookup_minimal_symbol_text (func_name, objfile); | |
3241 | if (m == NULL) | |
3242 | { | |
3243 | /* Prevent future lookups in this objfile. */ | |
3244 | bp_objfile_data->longjmp_msym[i] = &msym_not_found; | |
3245 | continue; | |
3246 | } | |
3247 | bp_objfile_data->longjmp_msym[i] = m; | |
3248 | } | |
3249 | ||
3250 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]); | |
06edf0c0 PA |
3251 | b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master, |
3252 | &internal_breakpoint_ops); | |
af02033e PP |
3253 | b->addr_string = xstrdup (func_name); |
3254 | b->enable_state = bp_disabled; | |
3255 | } | |
0fd8e87f | 3256 | } |
af02033e | 3257 | } |
0fd8e87f | 3258 | update_global_location_list (1); |
6c95b8df PA |
3259 | |
3260 | do_cleanups (old_chain); | |
0fd8e87f UW |
3261 | } |
3262 | ||
af02033e | 3263 | /* Create a master std::terminate breakpoint. */ |
aa7d318d | 3264 | static void |
af02033e | 3265 | create_std_terminate_master_breakpoint (void) |
aa7d318d TT |
3266 | { |
3267 | struct program_space *pspace; | |
aa7d318d | 3268 | struct cleanup *old_chain; |
af02033e | 3269 | const char *const func_name = "std::terminate()"; |
aa7d318d TT |
3270 | |
3271 | old_chain = save_current_program_space (); | |
3272 | ||
3273 | ALL_PSPACES (pspace) | |
17450429 PP |
3274 | { |
3275 | struct objfile *objfile; | |
3276 | CORE_ADDR addr; | |
3277 | ||
3278 | set_current_program_space (pspace); | |
3279 | ||
aa7d318d TT |
3280 | ALL_OBJFILES (objfile) |
3281 | { | |
3282 | struct breakpoint *b; | |
17450429 | 3283 | struct breakpoint_objfile_data *bp_objfile_data; |
aa7d318d | 3284 | |
17450429 | 3285 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
aa7d318d | 3286 | |
17450429 PP |
3287 | if (msym_not_found_p (bp_objfile_data->terminate_msym)) |
3288 | continue; | |
3289 | ||
3290 | if (bp_objfile_data->terminate_msym == NULL) | |
3291 | { | |
3292 | struct minimal_symbol *m; | |
3293 | ||
3294 | m = lookup_minimal_symbol (func_name, NULL, objfile); | |
3295 | if (m == NULL || (MSYMBOL_TYPE (m) != mst_text | |
3296 | && MSYMBOL_TYPE (m) != mst_file_text)) | |
3297 | { | |
3298 | /* Prevent future lookups in this objfile. */ | |
3299 | bp_objfile_data->terminate_msym = &msym_not_found; | |
3300 | continue; | |
3301 | } | |
3302 | bp_objfile_data->terminate_msym = m; | |
3303 | } | |
aa7d318d | 3304 | |
17450429 PP |
3305 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym); |
3306 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
3307 | bp_std_terminate_master, |
3308 | &internal_breakpoint_ops); | |
aa7d318d TT |
3309 | b->addr_string = xstrdup (func_name); |
3310 | b->enable_state = bp_disabled; | |
3311 | } | |
17450429 PP |
3312 | } |
3313 | ||
aa7d318d TT |
3314 | update_global_location_list (1); |
3315 | ||
3316 | do_cleanups (old_chain); | |
3317 | } | |
3318 | ||
186c406b TT |
3319 | /* Install a master breakpoint on the unwinder's debug hook. */ |
3320 | ||
70221824 | 3321 | static void |
186c406b TT |
3322 | create_exception_master_breakpoint (void) |
3323 | { | |
3324 | struct objfile *objfile; | |
17450429 | 3325 | const char *const func_name = "_Unwind_DebugHook"; |
186c406b TT |
3326 | |
3327 | ALL_OBJFILES (objfile) | |
3328 | { | |
17450429 PP |
3329 | struct breakpoint *b; |
3330 | struct gdbarch *gdbarch; | |
3331 | struct breakpoint_objfile_data *bp_objfile_data; | |
3332 | CORE_ADDR addr; | |
3333 | ||
3334 | bp_objfile_data = get_breakpoint_objfile_data (objfile); | |
3335 | ||
28106bc2 SDJ |
3336 | /* We prefer the SystemTap probe point if it exists. */ |
3337 | if (!bp_objfile_data->exception_searched) | |
3338 | { | |
3339 | bp_objfile_data->exception_probes | |
3340 | = find_probes_in_objfile (objfile, "libgcc", "unwind"); | |
3341 | bp_objfile_data->exception_searched = 1; | |
3342 | } | |
3343 | ||
3344 | if (bp_objfile_data->exception_probes != NULL) | |
3345 | { | |
3346 | struct gdbarch *gdbarch = get_objfile_arch (objfile); | |
3347 | int i; | |
3348 | struct probe *probe; | |
3349 | ||
3350 | for (i = 0; | |
3351 | VEC_iterate (probe_p, | |
3352 | bp_objfile_data->exception_probes, | |
3353 | i, probe); | |
3354 | ++i) | |
3355 | { | |
3356 | struct breakpoint *b; | |
3357 | ||
3358 | b = create_internal_breakpoint (gdbarch, probe->address, | |
3359 | bp_exception_master, | |
3360 | &internal_breakpoint_ops); | |
3361 | b->addr_string = xstrdup ("-probe-stap libgcc:unwind"); | |
3362 | b->enable_state = bp_disabled; | |
3363 | } | |
3364 | ||
3365 | continue; | |
3366 | } | |
3367 | ||
3368 | /* Otherwise, try the hook function. */ | |
3369 | ||
17450429 PP |
3370 | if (msym_not_found_p (bp_objfile_data->exception_msym)) |
3371 | continue; | |
3372 | ||
3373 | gdbarch = get_objfile_arch (objfile); | |
186c406b | 3374 | |
17450429 | 3375 | if (bp_objfile_data->exception_msym == NULL) |
186c406b | 3376 | { |
17450429 | 3377 | struct minimal_symbol *debug_hook; |
186c406b | 3378 | |
17450429 PP |
3379 | debug_hook = lookup_minimal_symbol (func_name, NULL, objfile); |
3380 | if (debug_hook == NULL) | |
3381 | { | |
3382 | bp_objfile_data->exception_msym = &msym_not_found; | |
3383 | continue; | |
3384 | } | |
3385 | ||
3386 | bp_objfile_data->exception_msym = debug_hook; | |
186c406b | 3387 | } |
17450429 PP |
3388 | |
3389 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym); | |
3390 | addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr, | |
3391 | ¤t_target); | |
06edf0c0 PA |
3392 | b = create_internal_breakpoint (gdbarch, addr, bp_exception_master, |
3393 | &internal_breakpoint_ops); | |
17450429 PP |
3394 | b->addr_string = xstrdup (func_name); |
3395 | b->enable_state = bp_disabled; | |
186c406b TT |
3396 | } |
3397 | ||
3398 | update_global_location_list (1); | |
3399 | } | |
3400 | ||
c906108c | 3401 | void |
fba45db2 | 3402 | update_breakpoints_after_exec (void) |
c906108c | 3403 | { |
35df4500 | 3404 | struct breakpoint *b, *b_tmp; |
876fa593 | 3405 | struct bp_location *bploc, **bplocp_tmp; |
c906108c | 3406 | |
25b22b0a PA |
3407 | /* We're about to delete breakpoints from GDB's lists. If the |
3408 | INSERTED flag is true, GDB will try to lift the breakpoints by | |
3409 | writing the breakpoints' "shadow contents" back into memory. The | |
3410 | "shadow contents" are NOT valid after an exec, so GDB should not | |
3411 | do that. Instead, the target is responsible from marking | |
3412 | breakpoints out as soon as it detects an exec. We don't do that | |
3413 | here instead, because there may be other attempts to delete | |
3414 | breakpoints after detecting an exec and before reaching here. */ | |
876fa593 | 3415 | ALL_BP_LOCATIONS (bploc, bplocp_tmp) |
6c95b8df PA |
3416 | if (bploc->pspace == current_program_space) |
3417 | gdb_assert (!bploc->inserted); | |
c906108c | 3418 | |
35df4500 | 3419 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3420 | { |
6c95b8df PA |
3421 | if (b->pspace != current_program_space) |
3422 | continue; | |
3423 | ||
4a64f543 | 3424 | /* Solib breakpoints must be explicitly reset after an exec(). */ |
c5aa993b JM |
3425 | if (b->type == bp_shlib_event) |
3426 | { | |
3427 | delete_breakpoint (b); | |
3428 | continue; | |
3429 | } | |
c906108c | 3430 | |
4a64f543 | 3431 | /* JIT breakpoints must be explicitly reset after an exec(). */ |
4efc6507 DE |
3432 | if (b->type == bp_jit_event) |
3433 | { | |
3434 | delete_breakpoint (b); | |
3435 | continue; | |
3436 | } | |
3437 | ||
1900040c | 3438 | /* Thread event breakpoints must be set anew after an exec(), |
0fd8e87f UW |
3439 | as must overlay event and longjmp master breakpoints. */ |
3440 | if (b->type == bp_thread_event || b->type == bp_overlay_event | |
186c406b TT |
3441 | || b->type == bp_longjmp_master || b->type == bp_std_terminate_master |
3442 | || b->type == bp_exception_master) | |
c4093a6a JM |
3443 | { |
3444 | delete_breakpoint (b); | |
3445 | continue; | |
3446 | } | |
3447 | ||
4a64f543 | 3448 | /* Step-resume breakpoints are meaningless after an exec(). */ |
2c03e5be | 3449 | if (b->type == bp_step_resume || b->type == bp_hp_step_resume) |
c5aa993b JM |
3450 | { |
3451 | delete_breakpoint (b); | |
3452 | continue; | |
3453 | } | |
3454 | ||
611c83ae PA |
3455 | /* Longjmp and longjmp-resume breakpoints are also meaningless |
3456 | after an exec. */ | |
186c406b | 3457 | if (b->type == bp_longjmp || b->type == bp_longjmp_resume |
e2e4d78b | 3458 | || b->type == bp_longjmp_call_dummy |
186c406b | 3459 | || b->type == bp_exception || b->type == bp_exception_resume) |
611c83ae PA |
3460 | { |
3461 | delete_breakpoint (b); | |
3462 | continue; | |
3463 | } | |
3464 | ||
ce78b96d JB |
3465 | if (b->type == bp_catchpoint) |
3466 | { | |
3467 | /* For now, none of the bp_catchpoint breakpoints need to | |
3468 | do anything at this point. In the future, if some of | |
3469 | the catchpoints need to something, we will need to add | |
3470 | a new method, and call this method from here. */ | |
3471 | continue; | |
3472 | } | |
3473 | ||
c5aa993b JM |
3474 | /* bp_finish is a special case. The only way we ought to be able |
3475 | to see one of these when an exec() has happened, is if the user | |
3476 | caught a vfork, and then said "finish". Ordinarily a finish just | |
3477 | carries them to the call-site of the current callee, by setting | |
3478 | a temporary bp there and resuming. But in this case, the finish | |
3479 | will carry them entirely through the vfork & exec. | |
3480 | ||
3481 | We don't want to allow a bp_finish to remain inserted now. But | |
3482 | we can't safely delete it, 'cause finish_command has a handle to | |
3483 | the bp on a bpstat, and will later want to delete it. There's a | |
3484 | chance (and I've seen it happen) that if we delete the bp_finish | |
3485 | here, that its storage will get reused by the time finish_command | |
3486 | gets 'round to deleting the "use to be a bp_finish" breakpoint. | |
3487 | We really must allow finish_command to delete a bp_finish. | |
3488 | ||
e5dd4106 | 3489 | In the absence of a general solution for the "how do we know |
53a5351d JM |
3490 | it's safe to delete something others may have handles to?" |
3491 | problem, what we'll do here is just uninsert the bp_finish, and | |
3492 | let finish_command delete it. | |
3493 | ||
3494 | (We know the bp_finish is "doomed" in the sense that it's | |
3495 | momentary, and will be deleted as soon as finish_command sees | |
3496 | the inferior stopped. So it doesn't matter that the bp's | |
3497 | address is probably bogus in the new a.out, unlike e.g., the | |
3498 | solib breakpoints.) */ | |
c5aa993b | 3499 | |
c5aa993b JM |
3500 | if (b->type == bp_finish) |
3501 | { | |
3502 | continue; | |
3503 | } | |
3504 | ||
3505 | /* Without a symbolic address, we have little hope of the | |
3506 | pre-exec() address meaning the same thing in the post-exec() | |
4a64f543 | 3507 | a.out. */ |
c5aa993b JM |
3508 | if (b->addr_string == NULL) |
3509 | { | |
3510 | delete_breakpoint (b); | |
3511 | continue; | |
3512 | } | |
c5aa993b | 3513 | } |
1900040c | 3514 | /* FIXME what about longjmp breakpoints? Re-create them here? */ |
af02033e PP |
3515 | create_overlay_event_breakpoint (); |
3516 | create_longjmp_master_breakpoint (); | |
3517 | create_std_terminate_master_breakpoint (); | |
186c406b | 3518 | create_exception_master_breakpoint (); |
c906108c SS |
3519 | } |
3520 | ||
3521 | int | |
d80ee84f | 3522 | detach_breakpoints (ptid_t ptid) |
c906108c | 3523 | { |
35df4500 | 3524 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 3525 | int val = 0; |
ce696e05 | 3526 | struct cleanup *old_chain = save_inferior_ptid (); |
6c95b8df | 3527 | struct inferior *inf = current_inferior (); |
c5aa993b | 3528 | |
d80ee84f | 3529 | if (PIDGET (ptid) == PIDGET (inferior_ptid)) |
8a3fe4f8 | 3530 | error (_("Cannot detach breakpoints of inferior_ptid")); |
c5aa993b | 3531 | |
6c95b8df | 3532 | /* Set inferior_ptid; remove_breakpoint_1 uses this global. */ |
d80ee84f | 3533 | inferior_ptid = ptid; |
35df4500 | 3534 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3535 | { |
35df4500 | 3536 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
3537 | continue; |
3538 | ||
bd9673a4 PW |
3539 | /* This function must physically remove breakpoints locations |
3540 | from the specified ptid, without modifying the breakpoint | |
3541 | package's state. Locations of type bp_loc_other are only | |
3542 | maintained at GDB side. So, there is no need to remove | |
3543 | these bp_loc_other locations. Moreover, removing these | |
3544 | would modify the breakpoint package's state. */ | |
3545 | if (bl->loc_type == bp_loc_other) | |
3546 | continue; | |
3547 | ||
35df4500 TJB |
3548 | if (bl->inserted) |
3549 | val |= remove_breakpoint_1 (bl, mark_inserted); | |
c5aa993b | 3550 | } |
d03285ec UW |
3551 | |
3552 | /* Detach single-step breakpoints as well. */ | |
3553 | detach_single_step_breakpoints (); | |
3554 | ||
ce696e05 | 3555 | do_cleanups (old_chain); |
3a1bae8e | 3556 | return val; |
c906108c SS |
3557 | } |
3558 | ||
35df4500 | 3559 | /* Remove the breakpoint location BL from the current address space. |
6c95b8df PA |
3560 | Note that this is used to detach breakpoints from a child fork. |
3561 | When we get here, the child isn't in the inferior list, and neither | |
3562 | do we have objects to represent its address space --- we should | |
35df4500 | 3563 | *not* look at bl->pspace->aspace here. */ |
6c95b8df | 3564 | |
c906108c | 3565 | static int |
35df4500 | 3566 | remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is) |
c906108c SS |
3567 | { |
3568 | int val; | |
c5aa993b | 3569 | |
35df4500 TJB |
3570 | /* BL is never in moribund_locations by our callers. */ |
3571 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3572 | |
35df4500 | 3573 | if (bl->owner->enable_state == bp_permanent) |
c2c6d25f JM |
3574 | /* Permanent breakpoints cannot be inserted or removed. */ |
3575 | return 0; | |
3576 | ||
74960c60 VP |
3577 | /* The type of none suggests that owner is actually deleted. |
3578 | This should not ever happen. */ | |
35df4500 | 3579 | gdb_assert (bl->owner->type != bp_none); |
0bde7532 | 3580 | |
35df4500 TJB |
3581 | if (bl->loc_type == bp_loc_software_breakpoint |
3582 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
c906108c | 3583 | { |
c02f5703 MS |
3584 | /* "Normal" instruction breakpoint: either the standard |
3585 | trap-instruction bp (bp_breakpoint), or a | |
3586 | bp_hardware_breakpoint. */ | |
3587 | ||
3588 | /* First check to see if we have to handle an overlay. */ | |
3589 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
3590 | || bl->section == NULL |
3591 | || !(section_is_overlay (bl->section))) | |
c02f5703 MS |
3592 | { |
3593 | /* No overlay handling: just remove the breakpoint. */ | |
348d480f | 3594 | val = bl->owner->ops->remove_location (bl); |
c02f5703 | 3595 | } |
c906108c SS |
3596 | else |
3597 | { | |
4a64f543 | 3598 | /* This breakpoint is in an overlay section. |
c02f5703 MS |
3599 | Did we set a breakpoint at the LMA? */ |
3600 | if (!overlay_events_enabled) | |
3601 | { | |
3602 | /* Yes -- overlay event support is not active, so we | |
3603 | should have set a breakpoint at the LMA. Remove it. | |
3604 | */ | |
c02f5703 MS |
3605 | /* Ignore any failures: if the LMA is in ROM, we will |
3606 | have already warned when we failed to insert it. */ | |
35df4500 TJB |
3607 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
3608 | target_remove_hw_breakpoint (bl->gdbarch, | |
3609 | &bl->overlay_target_info); | |
c02f5703 | 3610 | else |
35df4500 TJB |
3611 | target_remove_breakpoint (bl->gdbarch, |
3612 | &bl->overlay_target_info); | |
c02f5703 MS |
3613 | } |
3614 | /* Did we set a breakpoint at the VMA? | |
3615 | If so, we will have marked the breakpoint 'inserted'. */ | |
35df4500 | 3616 | if (bl->inserted) |
c906108c | 3617 | { |
c02f5703 MS |
3618 | /* Yes -- remove it. Previously we did not bother to |
3619 | remove the breakpoint if the section had been | |
3620 | unmapped, but let's not rely on that being safe. We | |
3621 | don't know what the overlay manager might do. */ | |
aa67235e UW |
3622 | |
3623 | /* However, we should remove *software* breakpoints only | |
3624 | if the section is still mapped, or else we overwrite | |
3625 | wrong code with the saved shadow contents. */ | |
348d480f PA |
3626 | if (bl->loc_type == bp_loc_hardware_breakpoint |
3627 | || section_is_mapped (bl->section)) | |
3628 | val = bl->owner->ops->remove_location (bl); | |
aa67235e UW |
3629 | else |
3630 | val = 0; | |
c906108c | 3631 | } |
c02f5703 MS |
3632 | else |
3633 | { | |
3634 | /* No -- not inserted, so no need to remove. No error. */ | |
3635 | val = 0; | |
3636 | } | |
c906108c | 3637 | } |
879d1e6b UW |
3638 | |
3639 | /* In some cases, we might not be able to remove a breakpoint | |
3640 | in a shared library that has already been removed, but we | |
3641 | have not yet processed the shlib unload event. */ | |
35df4500 | 3642 | if (val && solib_name_from_address (bl->pspace, bl->address)) |
879d1e6b UW |
3643 | val = 0; |
3644 | ||
c906108c SS |
3645 | if (val) |
3646 | return val; | |
35df4500 | 3647 | bl->inserted = (is == mark_inserted); |
c906108c | 3648 | } |
35df4500 | 3649 | else if (bl->loc_type == bp_loc_hardware_watchpoint) |
c906108c | 3650 | { |
77b06cd7 TJB |
3651 | gdb_assert (bl->owner->ops != NULL |
3652 | && bl->owner->ops->remove_location != NULL); | |
3653 | ||
35df4500 | 3654 | bl->inserted = (is == mark_inserted); |
77b06cd7 | 3655 | bl->owner->ops->remove_location (bl); |
2e70b7b9 | 3656 | |
c906108c | 3657 | /* Failure to remove any of the hardware watchpoints comes here. */ |
35df4500 | 3658 | if ((is == mark_uninserted) && (bl->inserted)) |
8a3fe4f8 | 3659 | warning (_("Could not remove hardware watchpoint %d."), |
35df4500 | 3660 | bl->owner->number); |
c906108c | 3661 | } |
35df4500 TJB |
3662 | else if (bl->owner->type == bp_catchpoint |
3663 | && breakpoint_enabled (bl->owner) | |
3664 | && !bl->duplicate) | |
ce78b96d | 3665 | { |
77b06cd7 TJB |
3666 | gdb_assert (bl->owner->ops != NULL |
3667 | && bl->owner->ops->remove_location != NULL); | |
ce78b96d | 3668 | |
77b06cd7 | 3669 | val = bl->owner->ops->remove_location (bl); |
ce78b96d JB |
3670 | if (val) |
3671 | return val; | |
77b06cd7 | 3672 | |
35df4500 | 3673 | bl->inserted = (is == mark_inserted); |
ce78b96d | 3674 | } |
c906108c SS |
3675 | |
3676 | return 0; | |
3677 | } | |
3678 | ||
6c95b8df | 3679 | static int |
35df4500 | 3680 | remove_breakpoint (struct bp_location *bl, insertion_state_t is) |
6c95b8df PA |
3681 | { |
3682 | int ret; | |
3683 | struct cleanup *old_chain; | |
3684 | ||
35df4500 TJB |
3685 | /* BL is never in moribund_locations by our callers. */ |
3686 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3687 | |
35df4500 | 3688 | if (bl->owner->enable_state == bp_permanent) |
6c95b8df PA |
3689 | /* Permanent breakpoints cannot be inserted or removed. */ |
3690 | return 0; | |
3691 | ||
3692 | /* The type of none suggests that owner is actually deleted. | |
3693 | This should not ever happen. */ | |
35df4500 | 3694 | gdb_assert (bl->owner->type != bp_none); |
6c95b8df PA |
3695 | |
3696 | old_chain = save_current_space_and_thread (); | |
3697 | ||
35df4500 | 3698 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df | 3699 | |
35df4500 | 3700 | ret = remove_breakpoint_1 (bl, is); |
6c95b8df PA |
3701 | |
3702 | do_cleanups (old_chain); | |
3703 | return ret; | |
3704 | } | |
3705 | ||
c906108c SS |
3706 | /* Clear the "inserted" flag in all breakpoints. */ |
3707 | ||
25b22b0a | 3708 | void |
fba45db2 | 3709 | mark_breakpoints_out (void) |
c906108c | 3710 | { |
35df4500 | 3711 | struct bp_location *bl, **blp_tmp; |
c906108c | 3712 | |
35df4500 TJB |
3713 | ALL_BP_LOCATIONS (bl, blp_tmp) |
3714 | if (bl->pspace == current_program_space) | |
3715 | bl->inserted = 0; | |
c906108c SS |
3716 | } |
3717 | ||
53a5351d JM |
3718 | /* Clear the "inserted" flag in all breakpoints and delete any |
3719 | breakpoints which should go away between runs of the program. | |
c906108c SS |
3720 | |
3721 | Plus other such housekeeping that has to be done for breakpoints | |
3722 | between runs. | |
3723 | ||
53a5351d JM |
3724 | Note: this function gets called at the end of a run (by |
3725 | generic_mourn_inferior) and when a run begins (by | |
4a64f543 | 3726 | init_wait_for_inferior). */ |
c906108c SS |
3727 | |
3728 | ||
3729 | ||
3730 | void | |
fba45db2 | 3731 | breakpoint_init_inferior (enum inf_context context) |
c906108c | 3732 | { |
35df4500 TJB |
3733 | struct breakpoint *b, *b_tmp; |
3734 | struct bp_location *bl, **blp_tmp; | |
1c5cfe86 | 3735 | int ix; |
6c95b8df | 3736 | struct program_space *pspace = current_program_space; |
c906108c | 3737 | |
50c71eaf PA |
3738 | /* If breakpoint locations are shared across processes, then there's |
3739 | nothing to do. */ | |
f5656ead | 3740 | if (gdbarch_has_global_breakpoints (target_gdbarch ())) |
50c71eaf PA |
3741 | return; |
3742 | ||
35df4500 | 3743 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 3744 | { |
35df4500 TJB |
3745 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
3746 | if (bl->pspace == pspace | |
3747 | && bl->owner->enable_state != bp_permanent) | |
3748 | bl->inserted = 0; | |
6c95b8df | 3749 | } |
075f6582 | 3750 | |
35df4500 | 3751 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3752 | { |
6c95b8df PA |
3753 | if (b->loc && b->loc->pspace != pspace) |
3754 | continue; | |
3755 | ||
c5aa993b JM |
3756 | switch (b->type) |
3757 | { | |
3758 | case bp_call_dummy: | |
e2e4d78b | 3759 | case bp_longjmp_call_dummy: |
c906108c | 3760 | |
c5aa993b | 3761 | /* If the call dummy breakpoint is at the entry point it will |
ab92d69b PA |
3762 | cause problems when the inferior is rerun, so we better get |
3763 | rid of it. */ | |
3764 | ||
3765 | case bp_watchpoint_scope: | |
3766 | ||
3767 | /* Also get rid of scope breakpoints. */ | |
3768 | ||
3769 | case bp_shlib_event: | |
3770 | ||
3771 | /* Also remove solib event breakpoints. Their addresses may | |
3772 | have changed since the last time we ran the program. | |
3773 | Actually we may now be debugging against different target; | |
3774 | and so the solib backend that installed this breakpoint may | |
3775 | not be used in by the target. E.g., | |
3776 | ||
3777 | (gdb) file prog-linux | |
3778 | (gdb) run # native linux target | |
3779 | ... | |
3780 | (gdb) kill | |
3781 | (gdb) file prog-win.exe | |
3782 | (gdb) tar rem :9999 # remote Windows gdbserver. | |
3783 | */ | |
c906108c | 3784 | |
f59f708a PA |
3785 | case bp_step_resume: |
3786 | ||
3787 | /* Also remove step-resume breakpoints. */ | |
3788 | ||
c5aa993b JM |
3789 | delete_breakpoint (b); |
3790 | break; | |
c906108c | 3791 | |
c5aa993b JM |
3792 | case bp_watchpoint: |
3793 | case bp_hardware_watchpoint: | |
3794 | case bp_read_watchpoint: | |
3795 | case bp_access_watchpoint: | |
3a5c3e22 PA |
3796 | { |
3797 | struct watchpoint *w = (struct watchpoint *) b; | |
c906108c | 3798 | |
3a5c3e22 PA |
3799 | /* Likewise for watchpoints on local expressions. */ |
3800 | if (w->exp_valid_block != NULL) | |
3801 | delete_breakpoint (b); | |
3802 | else if (context == inf_starting) | |
3803 | { | |
3804 | /* Reset val field to force reread of starting value in | |
3805 | insert_breakpoints. */ | |
3806 | if (w->val) | |
3807 | value_free (w->val); | |
3808 | w->val = NULL; | |
3809 | w->val_valid = 0; | |
c860120c | 3810 | } |
3a5c3e22 | 3811 | } |
c5aa993b JM |
3812 | break; |
3813 | default: | |
c5aa993b JM |
3814 | break; |
3815 | } | |
3816 | } | |
1c5cfe86 PA |
3817 | |
3818 | /* Get rid of the moribund locations. */ | |
35df4500 TJB |
3819 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix) |
3820 | decref_bp_location (&bl); | |
1c5cfe86 | 3821 | VEC_free (bp_location_p, moribund_locations); |
c906108c SS |
3822 | } |
3823 | ||
6c95b8df PA |
3824 | /* These functions concern about actual breakpoints inserted in the |
3825 | target --- to e.g. check if we need to do decr_pc adjustment or if | |
3826 | we need to hop over the bkpt --- so we check for address space | |
3827 | match, not program space. */ | |
3828 | ||
c2c6d25f JM |
3829 | /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint |
3830 | exists at PC. It returns ordinary_breakpoint_here if it's an | |
3831 | ordinary breakpoint, or permanent_breakpoint_here if it's a | |
3832 | permanent breakpoint. | |
3833 | - When continuing from a location with an ordinary breakpoint, we | |
3834 | actually single step once before calling insert_breakpoints. | |
e5dd4106 | 3835 | - When continuing from a location with a permanent breakpoint, we |
c2c6d25f JM |
3836 | need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by |
3837 | the target, to advance the PC past the breakpoint. */ | |
c906108c | 3838 | |
c2c6d25f | 3839 | enum breakpoint_here |
6c95b8df | 3840 | breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
c906108c | 3841 | { |
35df4500 | 3842 | struct bp_location *bl, **blp_tmp; |
c2c6d25f | 3843 | int any_breakpoint_here = 0; |
c906108c | 3844 | |
35df4500 | 3845 | ALL_BP_LOCATIONS (bl, blp_tmp) |
075f6582 | 3846 | { |
35df4500 TJB |
3847 | if (bl->loc_type != bp_loc_software_breakpoint |
3848 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3849 | continue; |
3850 | ||
f1310107 | 3851 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
35df4500 TJB |
3852 | if ((breakpoint_enabled (bl->owner) |
3853 | || bl->owner->enable_state == bp_permanent) | |
f1310107 | 3854 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3855 | { |
3856 | if (overlay_debugging | |
35df4500 TJB |
3857 | && section_is_overlay (bl->section) |
3858 | && !section_is_mapped (bl->section)) | |
075f6582 | 3859 | continue; /* unmapped overlay -- can't be a match */ |
35df4500 | 3860 | else if (bl->owner->enable_state == bp_permanent) |
075f6582 DJ |
3861 | return permanent_breakpoint_here; |
3862 | else | |
3863 | any_breakpoint_here = 1; | |
3864 | } | |
3865 | } | |
c906108c | 3866 | |
c2c6d25f | 3867 | return any_breakpoint_here ? ordinary_breakpoint_here : 0; |
c906108c SS |
3868 | } |
3869 | ||
1c5cfe86 PA |
3870 | /* Return true if there's a moribund breakpoint at PC. */ |
3871 | ||
3872 | int | |
6c95b8df | 3873 | moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
1c5cfe86 PA |
3874 | { |
3875 | struct bp_location *loc; | |
3876 | int ix; | |
3877 | ||
3878 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
f1310107 | 3879 | if (breakpoint_location_address_match (loc, aspace, pc)) |
1c5cfe86 PA |
3880 | return 1; |
3881 | ||
3882 | return 0; | |
3883 | } | |
c2c6d25f | 3884 | |
c36b740a | 3885 | /* Returns non-zero if there's a breakpoint inserted at PC, which is |
4a64f543 MS |
3886 | inserted using regular breakpoint_chain / bp_location array |
3887 | mechanism. This does not check for single-step breakpoints, which | |
3888 | are inserted and removed using direct target manipulation. */ | |
c906108c SS |
3889 | |
3890 | int | |
4a64f543 MS |
3891 | regular_breakpoint_inserted_here_p (struct address_space *aspace, |
3892 | CORE_ADDR pc) | |
c906108c | 3893 | { |
35df4500 | 3894 | struct bp_location *bl, **blp_tmp; |
c906108c | 3895 | |
35df4500 | 3896 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3897 | { |
35df4500 TJB |
3898 | if (bl->loc_type != bp_loc_software_breakpoint |
3899 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3900 | continue; |
3901 | ||
35df4500 | 3902 | if (bl->inserted |
f1310107 | 3903 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3904 | { |
3905 | if (overlay_debugging | |
35df4500 TJB |
3906 | && section_is_overlay (bl->section) |
3907 | && !section_is_mapped (bl->section)) | |
075f6582 DJ |
3908 | continue; /* unmapped overlay -- can't be a match */ |
3909 | else | |
3910 | return 1; | |
3911 | } | |
c5aa993b | 3912 | } |
c36b740a VP |
3913 | return 0; |
3914 | } | |
3915 | ||
3916 | /* Returns non-zero iff there's either regular breakpoint | |
3917 | or a single step breakpoint inserted at PC. */ | |
3918 | ||
3919 | int | |
6c95b8df | 3920 | breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc) |
c36b740a | 3921 | { |
6c95b8df | 3922 | if (regular_breakpoint_inserted_here_p (aspace, pc)) |
c36b740a | 3923 | return 1; |
c906108c | 3924 | |
6c95b8df | 3925 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3926 | return 1; |
3927 | ||
c906108c SS |
3928 | return 0; |
3929 | } | |
3930 | ||
4fa8626c DJ |
3931 | /* This function returns non-zero iff there is a software breakpoint |
3932 | inserted at PC. */ | |
3933 | ||
3934 | int | |
3e43a32a MS |
3935 | software_breakpoint_inserted_here_p (struct address_space *aspace, |
3936 | CORE_ADDR pc) | |
4fa8626c | 3937 | { |
35df4500 | 3938 | struct bp_location *bl, **blp_tmp; |
4fa8626c | 3939 | |
35df4500 | 3940 | ALL_BP_LOCATIONS (bl, blp_tmp) |
4fa8626c | 3941 | { |
35df4500 | 3942 | if (bl->loc_type != bp_loc_software_breakpoint) |
4fa8626c DJ |
3943 | continue; |
3944 | ||
35df4500 TJB |
3945 | if (bl->inserted |
3946 | && breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6c95b8df | 3947 | aspace, pc)) |
4fa8626c DJ |
3948 | { |
3949 | if (overlay_debugging | |
35df4500 TJB |
3950 | && section_is_overlay (bl->section) |
3951 | && !section_is_mapped (bl->section)) | |
4fa8626c DJ |
3952 | continue; /* unmapped overlay -- can't be a match */ |
3953 | else | |
3954 | return 1; | |
3955 | } | |
3956 | } | |
3957 | ||
1aafd4da | 3958 | /* Also check for software single-step breakpoints. */ |
6c95b8df | 3959 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3960 | return 1; |
3961 | ||
4fa8626c DJ |
3962 | return 0; |
3963 | } | |
3964 | ||
9093389c PA |
3965 | int |
3966 | hardware_watchpoint_inserted_in_range (struct address_space *aspace, | |
3967 | CORE_ADDR addr, ULONGEST len) | |
3968 | { | |
3969 | struct breakpoint *bpt; | |
3970 | ||
3971 | ALL_BREAKPOINTS (bpt) | |
3972 | { | |
3973 | struct bp_location *loc; | |
3974 | ||
3975 | if (bpt->type != bp_hardware_watchpoint | |
3976 | && bpt->type != bp_access_watchpoint) | |
3977 | continue; | |
3978 | ||
3979 | if (!breakpoint_enabled (bpt)) | |
3980 | continue; | |
3981 | ||
3982 | for (loc = bpt->loc; loc; loc = loc->next) | |
3983 | if (loc->pspace->aspace == aspace && loc->inserted) | |
3984 | { | |
3985 | CORE_ADDR l, h; | |
3986 | ||
3987 | /* Check for intersection. */ | |
3988 | l = max (loc->address, addr); | |
3989 | h = min (loc->address + loc->length, addr + len); | |
3990 | if (l < h) | |
3991 | return 1; | |
3992 | } | |
3993 | } | |
3994 | return 0; | |
3995 | } | |
3996 | ||
075f6582 DJ |
3997 | /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at |
3998 | PC is valid for process/thread PTID. */ | |
c906108c SS |
3999 | |
4000 | int | |
6c95b8df PA |
4001 | breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc, |
4002 | ptid_t ptid) | |
c906108c | 4003 | { |
35df4500 | 4004 | struct bp_location *bl, **blp_tmp; |
4a306c9a | 4005 | /* The thread and task IDs associated to PTID, computed lazily. */ |
a6f1cd96 | 4006 | int thread = -1; |
4a306c9a | 4007 | int task = 0; |
a6f1cd96 | 4008 | |
35df4500 | 4009 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 4010 | { |
35df4500 TJB |
4011 | if (bl->loc_type != bp_loc_software_breakpoint |
4012 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
4013 | continue; |
4014 | ||
35df4500 TJB |
4015 | /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */ |
4016 | if (!breakpoint_enabled (bl->owner) | |
4017 | && bl->owner->enable_state != bp_permanent) | |
a6f1cd96 JB |
4018 | continue; |
4019 | ||
f1310107 | 4020 | if (!breakpoint_location_address_match (bl, aspace, pc)) |
a6f1cd96 JB |
4021 | continue; |
4022 | ||
35df4500 | 4023 | if (bl->owner->thread != -1) |
075f6582 | 4024 | { |
a6f1cd96 JB |
4025 | /* This is a thread-specific breakpoint. Check that ptid |
4026 | matches that thread. If thread hasn't been computed yet, | |
4027 | it is now time to do so. */ | |
4028 | if (thread == -1) | |
4029 | thread = pid_to_thread_id (ptid); | |
35df4500 | 4030 | if (bl->owner->thread != thread) |
a6f1cd96 | 4031 | continue; |
075f6582 | 4032 | } |
a6f1cd96 | 4033 | |
35df4500 | 4034 | if (bl->owner->task != 0) |
4a306c9a JB |
4035 | { |
4036 | /* This is a task-specific breakpoint. Check that ptid | |
4037 | matches that task. If task hasn't been computed yet, | |
4038 | it is now time to do so. */ | |
4039 | if (task == 0) | |
4040 | task = ada_get_task_number (ptid); | |
35df4500 | 4041 | if (bl->owner->task != task) |
4a306c9a JB |
4042 | continue; |
4043 | } | |
4044 | ||
a6f1cd96 | 4045 | if (overlay_debugging |
35df4500 TJB |
4046 | && section_is_overlay (bl->section) |
4047 | && !section_is_mapped (bl->section)) | |
a6f1cd96 JB |
4048 | continue; /* unmapped overlay -- can't be a match */ |
4049 | ||
4050 | return 1; | |
c5aa993b | 4051 | } |
c906108c SS |
4052 | |
4053 | return 0; | |
4054 | } | |
c906108c | 4055 | \f |
c5aa993b | 4056 | |
c906108c SS |
4057 | /* bpstat stuff. External routines' interfaces are documented |
4058 | in breakpoint.h. */ | |
4059 | ||
4060 | int | |
c326b90e | 4061 | is_catchpoint (struct breakpoint *ep) |
c906108c | 4062 | { |
533be4dd | 4063 | return (ep->type == bp_catchpoint); |
c906108c SS |
4064 | } |
4065 | ||
f431efe5 PA |
4066 | /* Frees any storage that is part of a bpstat. Does not walk the |
4067 | 'next' chain. */ | |
4068 | ||
4069 | static void | |
198757a8 VP |
4070 | bpstat_free (bpstat bs) |
4071 | { | |
4072 | if (bs->old_val != NULL) | |
4073 | value_free (bs->old_val); | |
9add0f1b | 4074 | decref_counted_command_line (&bs->commands); |
f431efe5 | 4075 | decref_bp_location (&bs->bp_location_at); |
198757a8 VP |
4076 | xfree (bs); |
4077 | } | |
4078 | ||
c906108c SS |
4079 | /* Clear a bpstat so that it says we are not at any breakpoint. |
4080 | Also free any storage that is part of a bpstat. */ | |
4081 | ||
4082 | void | |
fba45db2 | 4083 | bpstat_clear (bpstat *bsp) |
c906108c SS |
4084 | { |
4085 | bpstat p; | |
4086 | bpstat q; | |
4087 | ||
4088 | if (bsp == 0) | |
4089 | return; | |
4090 | p = *bsp; | |
4091 | while (p != NULL) | |
4092 | { | |
4093 | q = p->next; | |
198757a8 | 4094 | bpstat_free (p); |
c906108c SS |
4095 | p = q; |
4096 | } | |
4097 | *bsp = NULL; | |
4098 | } | |
4099 | ||
4100 | /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that | |
4101 | is part of the bpstat is copied as well. */ | |
4102 | ||
4103 | bpstat | |
fba45db2 | 4104 | bpstat_copy (bpstat bs) |
c906108c SS |
4105 | { |
4106 | bpstat p = NULL; | |
4107 | bpstat tmp; | |
4108 | bpstat retval = NULL; | |
4109 | ||
4110 | if (bs == NULL) | |
4111 | return bs; | |
4112 | ||
4113 | for (; bs != NULL; bs = bs->next) | |
4114 | { | |
4115 | tmp = (bpstat) xmalloc (sizeof (*tmp)); | |
4116 | memcpy (tmp, bs, sizeof (*tmp)); | |
9add0f1b | 4117 | incref_counted_command_line (tmp->commands); |
f431efe5 | 4118 | incref_bp_location (tmp->bp_location_at); |
31cc81e9 | 4119 | if (bs->old_val != NULL) |
3c3185ac JK |
4120 | { |
4121 | tmp->old_val = value_copy (bs->old_val); | |
4122 | release_value (tmp->old_val); | |
4123 | } | |
31cc81e9 | 4124 | |
c906108c SS |
4125 | if (p == NULL) |
4126 | /* This is the first thing in the chain. */ | |
4127 | retval = tmp; | |
4128 | else | |
4129 | p->next = tmp; | |
4130 | p = tmp; | |
4131 | } | |
4132 | p->next = NULL; | |
4133 | return retval; | |
4134 | } | |
4135 | ||
4a64f543 | 4136 | /* Find the bpstat associated with this breakpoint. */ |
c906108c SS |
4137 | |
4138 | bpstat | |
fba45db2 | 4139 | bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint) |
c906108c | 4140 | { |
c5aa993b JM |
4141 | if (bsp == NULL) |
4142 | return NULL; | |
c906108c | 4143 | |
c5aa993b JM |
4144 | for (; bsp != NULL; bsp = bsp->next) |
4145 | { | |
f431efe5 | 4146 | if (bsp->breakpoint_at == breakpoint) |
c5aa993b JM |
4147 | return bsp; |
4148 | } | |
c906108c SS |
4149 | return NULL; |
4150 | } | |
4151 | ||
ab04a2af TT |
4152 | /* See breakpoint.h. */ |
4153 | ||
4154 | enum bpstat_signal_value | |
427cd150 | 4155 | bpstat_explains_signal (bpstat bsp, enum gdb_signal sig) |
ab04a2af TT |
4156 | { |
4157 | enum bpstat_signal_value result = BPSTAT_SIGNAL_NO; | |
4158 | ||
4159 | for (; bsp != NULL; bsp = bsp->next) | |
4160 | { | |
4161 | /* Ensure that, if we ever entered this loop, then we at least | |
4162 | return BPSTAT_SIGNAL_HIDE. */ | |
427cd150 | 4163 | enum bpstat_signal_value newval; |
ab04a2af | 4164 | |
427cd150 TT |
4165 | if (bsp->breakpoint_at == NULL) |
4166 | { | |
4167 | /* A moribund location can never explain a signal other than | |
4168 | GDB_SIGNAL_TRAP. */ | |
4169 | if (sig == GDB_SIGNAL_TRAP) | |
4170 | newval = BPSTAT_SIGNAL_HIDE; | |
4171 | else | |
4172 | newval = BPSTAT_SIGNAL_NO; | |
4173 | } | |
4174 | else | |
4175 | newval = bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at, | |
4176 | sig); | |
ab04a2af TT |
4177 | |
4178 | if (newval > result) | |
4179 | result = newval; | |
4180 | } | |
4181 | ||
4182 | return result; | |
4183 | } | |
4184 | ||
4a64f543 MS |
4185 | /* Put in *NUM the breakpoint number of the first breakpoint we are |
4186 | stopped at. *BSP upon return is a bpstat which points to the | |
4187 | remaining breakpoints stopped at (but which is not guaranteed to be | |
4188 | good for anything but further calls to bpstat_num). | |
4189 | ||
8671a17b PA |
4190 | Return 0 if passed a bpstat which does not indicate any breakpoints. |
4191 | Return -1 if stopped at a breakpoint that has been deleted since | |
4192 | we set it. | |
4193 | Return 1 otherwise. */ | |
c906108c SS |
4194 | |
4195 | int | |
8671a17b | 4196 | bpstat_num (bpstat *bsp, int *num) |
c906108c SS |
4197 | { |
4198 | struct breakpoint *b; | |
4199 | ||
4200 | if ((*bsp) == NULL) | |
4201 | return 0; /* No more breakpoint values */ | |
8671a17b | 4202 | |
4a64f543 MS |
4203 | /* We assume we'll never have several bpstats that correspond to a |
4204 | single breakpoint -- otherwise, this function might return the | |
4205 | same number more than once and this will look ugly. */ | |
f431efe5 | 4206 | b = (*bsp)->breakpoint_at; |
8671a17b PA |
4207 | *bsp = (*bsp)->next; |
4208 | if (b == NULL) | |
4209 | return -1; /* breakpoint that's been deleted since */ | |
4210 | ||
4211 | *num = b->number; /* We have its number */ | |
4212 | return 1; | |
c906108c SS |
4213 | } |
4214 | ||
e93ca019 | 4215 | /* See breakpoint.h. */ |
c906108c SS |
4216 | |
4217 | void | |
e93ca019 | 4218 | bpstat_clear_actions (void) |
c906108c | 4219 | { |
e93ca019 JK |
4220 | struct thread_info *tp; |
4221 | bpstat bs; | |
4222 | ||
4223 | if (ptid_equal (inferior_ptid, null_ptid)) | |
4224 | return; | |
4225 | ||
4226 | tp = find_thread_ptid (inferior_ptid); | |
4227 | if (tp == NULL) | |
4228 | return; | |
4229 | ||
4230 | for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next) | |
c906108c | 4231 | { |
9add0f1b | 4232 | decref_counted_command_line (&bs->commands); |
abf85f46 | 4233 | |
c906108c SS |
4234 | if (bs->old_val != NULL) |
4235 | { | |
4236 | value_free (bs->old_val); | |
4237 | bs->old_val = NULL; | |
4238 | } | |
4239 | } | |
4240 | } | |
4241 | ||
f3b1572e PA |
4242 | /* Called when a command is about to proceed the inferior. */ |
4243 | ||
4244 | static void | |
4245 | breakpoint_about_to_proceed (void) | |
4246 | { | |
4247 | if (!ptid_equal (inferior_ptid, null_ptid)) | |
4248 | { | |
4249 | struct thread_info *tp = inferior_thread (); | |
4250 | ||
4251 | /* Allow inferior function calls in breakpoint commands to not | |
4252 | interrupt the command list. When the call finishes | |
4253 | successfully, the inferior will be standing at the same | |
4254 | breakpoint as if nothing happened. */ | |
16c381f0 | 4255 | if (tp->control.in_infcall) |
f3b1572e PA |
4256 | return; |
4257 | } | |
4258 | ||
4259 | breakpoint_proceeded = 1; | |
4260 | } | |
4261 | ||
4a64f543 MS |
4262 | /* Stub for cleaning up our state if we error-out of a breakpoint |
4263 | command. */ | |
c906108c | 4264 | static void |
4efb68b1 | 4265 | cleanup_executing_breakpoints (void *ignore) |
c906108c SS |
4266 | { |
4267 | executing_breakpoint_commands = 0; | |
4268 | } | |
4269 | ||
abf85f46 JK |
4270 | /* Return non-zero iff CMD as the first line of a command sequence is `silent' |
4271 | or its equivalent. */ | |
4272 | ||
4273 | static int | |
4274 | command_line_is_silent (struct command_line *cmd) | |
4275 | { | |
4276 | return cmd && (strcmp ("silent", cmd->line) == 0 | |
4277 | || (xdb_commands && strcmp ("Q", cmd->line) == 0)); | |
4278 | } | |
4279 | ||
4a64f543 MS |
4280 | /* Execute all the commands associated with all the breakpoints at |
4281 | this location. Any of these commands could cause the process to | |
4282 | proceed beyond this point, etc. We look out for such changes by | |
4283 | checking the global "breakpoint_proceeded" after each command. | |
c906108c | 4284 | |
347bddb7 PA |
4285 | Returns true if a breakpoint command resumed the inferior. In that |
4286 | case, it is the caller's responsibility to recall it again with the | |
4287 | bpstat of the current thread. */ | |
4288 | ||
4289 | static int | |
4290 | bpstat_do_actions_1 (bpstat *bsp) | |
c906108c SS |
4291 | { |
4292 | bpstat bs; | |
4293 | struct cleanup *old_chain; | |
347bddb7 | 4294 | int again = 0; |
c906108c SS |
4295 | |
4296 | /* Avoid endless recursion if a `source' command is contained | |
4297 | in bs->commands. */ | |
4298 | if (executing_breakpoint_commands) | |
347bddb7 | 4299 | return 0; |
c906108c SS |
4300 | |
4301 | executing_breakpoint_commands = 1; | |
4302 | old_chain = make_cleanup (cleanup_executing_breakpoints, 0); | |
4303 | ||
cf6c5ffb TT |
4304 | prevent_dont_repeat (); |
4305 | ||
4a64f543 | 4306 | /* This pointer will iterate over the list of bpstat's. */ |
c906108c SS |
4307 | bs = *bsp; |
4308 | ||
4309 | breakpoint_proceeded = 0; | |
4310 | for (; bs != NULL; bs = bs->next) | |
4311 | { | |
9add0f1b | 4312 | struct counted_command_line *ccmd; |
6c50ab1c JB |
4313 | struct command_line *cmd; |
4314 | struct cleanup *this_cmd_tree_chain; | |
4315 | ||
4316 | /* Take ownership of the BSP's command tree, if it has one. | |
4317 | ||
4318 | The command tree could legitimately contain commands like | |
4319 | 'step' and 'next', which call clear_proceed_status, which | |
4320 | frees stop_bpstat's command tree. To make sure this doesn't | |
4321 | free the tree we're executing out from under us, we need to | |
4322 | take ownership of the tree ourselves. Since a given bpstat's | |
4323 | commands are only executed once, we don't need to copy it; we | |
4324 | can clear the pointer in the bpstat, and make sure we free | |
4325 | the tree when we're done. */ | |
9add0f1b TT |
4326 | ccmd = bs->commands; |
4327 | bs->commands = NULL; | |
abf85f46 JK |
4328 | this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd); |
4329 | cmd = ccmd ? ccmd->commands : NULL; | |
4330 | if (command_line_is_silent (cmd)) | |
4331 | { | |
4332 | /* The action has been already done by bpstat_stop_status. */ | |
4333 | cmd = cmd->next; | |
4334 | } | |
6c50ab1c | 4335 | |
c906108c SS |
4336 | while (cmd != NULL) |
4337 | { | |
4338 | execute_control_command (cmd); | |
4339 | ||
4340 | if (breakpoint_proceeded) | |
4341 | break; | |
4342 | else | |
4343 | cmd = cmd->next; | |
4344 | } | |
6c50ab1c JB |
4345 | |
4346 | /* We can free this command tree now. */ | |
4347 | do_cleanups (this_cmd_tree_chain); | |
4348 | ||
c906108c | 4349 | if (breakpoint_proceeded) |
32c1e744 VP |
4350 | { |
4351 | if (target_can_async_p ()) | |
347bddb7 PA |
4352 | /* If we are in async mode, then the target might be still |
4353 | running, not stopped at any breakpoint, so nothing for | |
4354 | us to do here -- just return to the event loop. */ | |
4355 | ; | |
32c1e744 VP |
4356 | else |
4357 | /* In sync mode, when execute_control_command returns | |
4358 | we're already standing on the next breakpoint. | |
347bddb7 PA |
4359 | Breakpoint commands for that stop were not run, since |
4360 | execute_command does not run breakpoint commands -- | |
4361 | only command_line_handler does, but that one is not | |
4362 | involved in execution of breakpoint commands. So, we | |
4363 | can now execute breakpoint commands. It should be | |
4364 | noted that making execute_command do bpstat actions is | |
4365 | not an option -- in this case we'll have recursive | |
4366 | invocation of bpstat for each breakpoint with a | |
4367 | command, and can easily blow up GDB stack. Instead, we | |
4368 | return true, which will trigger the caller to recall us | |
4369 | with the new stop_bpstat. */ | |
4370 | again = 1; | |
4371 | break; | |
32c1e744 | 4372 | } |
c906108c | 4373 | } |
c2b8ed2c | 4374 | do_cleanups (old_chain); |
347bddb7 PA |
4375 | return again; |
4376 | } | |
4377 | ||
4378 | void | |
4379 | bpstat_do_actions (void) | |
4380 | { | |
353d1d73 JK |
4381 | struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup (); |
4382 | ||
347bddb7 PA |
4383 | /* Do any commands attached to breakpoint we are stopped at. */ |
4384 | while (!ptid_equal (inferior_ptid, null_ptid) | |
4385 | && target_has_execution | |
4386 | && !is_exited (inferior_ptid) | |
4387 | && !is_executing (inferior_ptid)) | |
4388 | /* Since in sync mode, bpstat_do_actions may resume the inferior, | |
4389 | and only return when it is stopped at the next breakpoint, we | |
4390 | keep doing breakpoint actions until it returns false to | |
4391 | indicate the inferior was not resumed. */ | |
16c381f0 | 4392 | if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat)) |
347bddb7 | 4393 | break; |
353d1d73 JK |
4394 | |
4395 | discard_cleanups (cleanup_if_error); | |
c906108c SS |
4396 | } |
4397 | ||
fa4727a6 DJ |
4398 | /* Print out the (old or new) value associated with a watchpoint. */ |
4399 | ||
4400 | static void | |
4401 | watchpoint_value_print (struct value *val, struct ui_file *stream) | |
4402 | { | |
4403 | if (val == NULL) | |
4404 | fprintf_unfiltered (stream, _("<unreadable>")); | |
4405 | else | |
79a45b7d TT |
4406 | { |
4407 | struct value_print_options opts; | |
4408 | get_user_print_options (&opts); | |
4409 | value_print (val, stream, &opts); | |
4410 | } | |
fa4727a6 DJ |
4411 | } |
4412 | ||
e514a9d6 | 4413 | /* Generic routine for printing messages indicating why we |
4a64f543 | 4414 | stopped. The behavior of this function depends on the value |
e514a9d6 JM |
4415 | 'print_it' in the bpstat structure. Under some circumstances we |
4416 | may decide not to print anything here and delegate the task to | |
4a64f543 | 4417 | normal_stop(). */ |
e514a9d6 JM |
4418 | |
4419 | static enum print_stop_action | |
4420 | print_bp_stop_message (bpstat bs) | |
4421 | { | |
4422 | switch (bs->print_it) | |
4423 | { | |
4424 | case print_it_noop: | |
4a64f543 | 4425 | /* Nothing should be printed for this bpstat entry. */ |
e514a9d6 JM |
4426 | return PRINT_UNKNOWN; |
4427 | break; | |
4428 | ||
4429 | case print_it_done: | |
4430 | /* We still want to print the frame, but we already printed the | |
4a64f543 | 4431 | relevant messages. */ |
e514a9d6 JM |
4432 | return PRINT_SRC_AND_LOC; |
4433 | break; | |
4434 | ||
4435 | case print_it_normal: | |
4f8d1dc6 | 4436 | { |
f431efe5 PA |
4437 | struct breakpoint *b = bs->breakpoint_at; |
4438 | ||
1a6a67de TJB |
4439 | /* bs->breakpoint_at can be NULL if it was a momentary breakpoint |
4440 | which has since been deleted. */ | |
4441 | if (b == NULL) | |
4442 | return PRINT_UNKNOWN; | |
4443 | ||
348d480f PA |
4444 | /* Normal case. Call the breakpoint's print_it method. */ |
4445 | return b->ops->print_it (bs); | |
4f8d1dc6 | 4446 | } |
348d480f | 4447 | break; |
3086aeae | 4448 | |
e514a9d6 | 4449 | default: |
8e65ff28 | 4450 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 4451 | _("print_bp_stop_message: unrecognized enum value")); |
e514a9d6 | 4452 | break; |
c906108c | 4453 | } |
c906108c SS |
4454 | } |
4455 | ||
edcc5120 TT |
4456 | /* A helper function that prints a shared library stopped event. */ |
4457 | ||
4458 | static void | |
4459 | print_solib_event (int is_catchpoint) | |
4460 | { | |
4461 | int any_deleted | |
4462 | = !VEC_empty (char_ptr, current_program_space->deleted_solibs); | |
4463 | int any_added | |
4464 | = !VEC_empty (so_list_ptr, current_program_space->added_solibs); | |
4465 | ||
4466 | if (!is_catchpoint) | |
4467 | { | |
4468 | if (any_added || any_deleted) | |
4469 | ui_out_text (current_uiout, | |
4470 | _("Stopped due to shared library event:\n")); | |
4471 | else | |
4472 | ui_out_text (current_uiout, | |
4473 | _("Stopped due to shared library event (no " | |
4474 | "libraries added or removed)\n")); | |
4475 | } | |
4476 | ||
4477 | if (ui_out_is_mi_like_p (current_uiout)) | |
4478 | ui_out_field_string (current_uiout, "reason", | |
4479 | async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT)); | |
4480 | ||
4481 | if (any_deleted) | |
4482 | { | |
4483 | struct cleanup *cleanup; | |
4484 | char *name; | |
4485 | int ix; | |
4486 | ||
4487 | ui_out_text (current_uiout, _(" Inferior unloaded ")); | |
4488 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4489 | "removed"); | |
4490 | for (ix = 0; | |
4491 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
4492 | ix, name); | |
4493 | ++ix) | |
4494 | { | |
4495 | if (ix > 0) | |
4496 | ui_out_text (current_uiout, " "); | |
4497 | ui_out_field_string (current_uiout, "library", name); | |
4498 | ui_out_text (current_uiout, "\n"); | |
4499 | } | |
4500 | ||
4501 | do_cleanups (cleanup); | |
4502 | } | |
4503 | ||
4504 | if (any_added) | |
4505 | { | |
4506 | struct so_list *iter; | |
4507 | int ix; | |
4508 | struct cleanup *cleanup; | |
4509 | ||
4510 | ui_out_text (current_uiout, _(" Inferior loaded ")); | |
4511 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4512 | "added"); | |
4513 | for (ix = 0; | |
4514 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
4515 | ix, iter); | |
4516 | ++ix) | |
4517 | { | |
4518 | if (ix > 0) | |
4519 | ui_out_text (current_uiout, " "); | |
4520 | ui_out_field_string (current_uiout, "library", iter->so_name); | |
4521 | ui_out_text (current_uiout, "\n"); | |
4522 | } | |
4523 | ||
4524 | do_cleanups (cleanup); | |
4525 | } | |
4526 | } | |
4527 | ||
e514a9d6 JM |
4528 | /* Print a message indicating what happened. This is called from |
4529 | normal_stop(). The input to this routine is the head of the bpstat | |
36dfb11c TT |
4530 | list - a list of the eventpoints that caused this stop. KIND is |
4531 | the target_waitkind for the stopping event. This | |
e514a9d6 JM |
4532 | routine calls the generic print routine for printing a message |
4533 | about reasons for stopping. This will print (for example) the | |
4534 | "Breakpoint n," part of the output. The return value of this | |
4535 | routine is one of: | |
c906108c | 4536 | |
4a64f543 | 4537 | PRINT_UNKNOWN: Means we printed nothing. |
917317f4 | 4538 | PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent |
4a64f543 | 4539 | code to print the location. An example is |
c5aa993b JM |
4540 | "Breakpoint 1, " which should be followed by |
4541 | the location. | |
917317f4 | 4542 | PRINT_SRC_ONLY: Means we printed something, but there is no need |
c5aa993b JM |
4543 | to also print the location part of the message. |
4544 | An example is the catch/throw messages, which | |
4a64f543 | 4545 | don't require a location appended to the end. |
917317f4 | 4546 | PRINT_NOTHING: We have done some printing and we don't need any |
4a64f543 | 4547 | further info to be printed. */ |
c906108c | 4548 | |
917317f4 | 4549 | enum print_stop_action |
36dfb11c | 4550 | bpstat_print (bpstat bs, int kind) |
c906108c SS |
4551 | { |
4552 | int val; | |
c5aa993b | 4553 | |
c906108c | 4554 | /* Maybe another breakpoint in the chain caused us to stop. |
53a5351d JM |
4555 | (Currently all watchpoints go on the bpstat whether hit or not. |
4556 | That probably could (should) be changed, provided care is taken | |
c906108c | 4557 | with respect to bpstat_explains_signal). */ |
e514a9d6 JM |
4558 | for (; bs; bs = bs->next) |
4559 | { | |
4560 | val = print_bp_stop_message (bs); | |
4561 | if (val == PRINT_SRC_ONLY | |
4562 | || val == PRINT_SRC_AND_LOC | |
4563 | || val == PRINT_NOTHING) | |
4564 | return val; | |
4565 | } | |
c906108c | 4566 | |
36dfb11c TT |
4567 | /* If we had hit a shared library event breakpoint, |
4568 | print_bp_stop_message would print out this message. If we hit an | |
4569 | OS-level shared library event, do the same thing. */ | |
4570 | if (kind == TARGET_WAITKIND_LOADED) | |
4571 | { | |
edcc5120 | 4572 | print_solib_event (0); |
36dfb11c TT |
4573 | return PRINT_NOTHING; |
4574 | } | |
4575 | ||
e514a9d6 | 4576 | /* We reached the end of the chain, or we got a null BS to start |
4a64f543 | 4577 | with and nothing was printed. */ |
917317f4 | 4578 | return PRINT_UNKNOWN; |
c906108c SS |
4579 | } |
4580 | ||
4a64f543 MS |
4581 | /* Evaluate the expression EXP and return 1 if value is zero. This is |
4582 | used inside a catch_errors to evaluate the breakpoint condition. | |
4583 | The argument is a "struct expression *" that has been cast to a | |
4584 | "char *" to make it pass through catch_errors. */ | |
c906108c SS |
4585 | |
4586 | static int | |
4efb68b1 | 4587 | breakpoint_cond_eval (void *exp) |
c906108c | 4588 | { |
278cd55f | 4589 | struct value *mark = value_mark (); |
c5aa993b | 4590 | int i = !value_true (evaluate_expression ((struct expression *) exp)); |
cc59ec59 | 4591 | |
c906108c SS |
4592 | value_free_to_mark (mark); |
4593 | return i; | |
4594 | } | |
4595 | ||
5760d0ab | 4596 | /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */ |
c906108c SS |
4597 | |
4598 | static bpstat | |
5760d0ab | 4599 | bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer) |
c906108c SS |
4600 | { |
4601 | bpstat bs; | |
4602 | ||
4603 | bs = (bpstat) xmalloc (sizeof (*bs)); | |
5760d0ab JK |
4604 | bs->next = NULL; |
4605 | **bs_link_pointer = bs; | |
4606 | *bs_link_pointer = &bs->next; | |
f431efe5 PA |
4607 | bs->breakpoint_at = bl->owner; |
4608 | bs->bp_location_at = bl; | |
4609 | incref_bp_location (bl); | |
c906108c SS |
4610 | /* If the condition is false, etc., don't do the commands. */ |
4611 | bs->commands = NULL; | |
4612 | bs->old_val = NULL; | |
4613 | bs->print_it = print_it_normal; | |
4614 | return bs; | |
4615 | } | |
4616 | \f | |
d983da9c DJ |
4617 | /* The target has stopped with waitstatus WS. Check if any hardware |
4618 | watchpoints have triggered, according to the target. */ | |
4619 | ||
4620 | int | |
4621 | watchpoints_triggered (struct target_waitstatus *ws) | |
4622 | { | |
d92524f1 | 4623 | int stopped_by_watchpoint = target_stopped_by_watchpoint (); |
d983da9c DJ |
4624 | CORE_ADDR addr; |
4625 | struct breakpoint *b; | |
4626 | ||
4627 | if (!stopped_by_watchpoint) | |
4628 | { | |
4629 | /* We were not stopped by a watchpoint. Mark all watchpoints | |
4630 | as not triggered. */ | |
4631 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4632 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4633 | { |
4634 | struct watchpoint *w = (struct watchpoint *) b; | |
4635 | ||
4636 | w->watchpoint_triggered = watch_triggered_no; | |
4637 | } | |
d983da9c DJ |
4638 | |
4639 | return 0; | |
4640 | } | |
4641 | ||
4642 | if (!target_stopped_data_address (¤t_target, &addr)) | |
4643 | { | |
4644 | /* We were stopped by a watchpoint, but we don't know where. | |
4645 | Mark all watchpoints as unknown. */ | |
4646 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4647 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4648 | { |
4649 | struct watchpoint *w = (struct watchpoint *) b; | |
4650 | ||
4651 | w->watchpoint_triggered = watch_triggered_unknown; | |
4652 | } | |
d983da9c DJ |
4653 | |
4654 | return stopped_by_watchpoint; | |
4655 | } | |
4656 | ||
4657 | /* The target could report the data address. Mark watchpoints | |
4658 | affected by this data address as triggered, and all others as not | |
4659 | triggered. */ | |
4660 | ||
4661 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4662 | if (is_hardware_watchpoint (b)) |
d983da9c | 4663 | { |
3a5c3e22 | 4664 | struct watchpoint *w = (struct watchpoint *) b; |
a5606eee | 4665 | struct bp_location *loc; |
d983da9c | 4666 | |
3a5c3e22 | 4667 | w->watchpoint_triggered = watch_triggered_no; |
a5606eee | 4668 | for (loc = b->loc; loc; loc = loc->next) |
9c06b0b4 | 4669 | { |
3a5c3e22 | 4670 | if (is_masked_watchpoint (b)) |
9c06b0b4 | 4671 | { |
3a5c3e22 PA |
4672 | CORE_ADDR newaddr = addr & w->hw_wp_mask; |
4673 | CORE_ADDR start = loc->address & w->hw_wp_mask; | |
9c06b0b4 TJB |
4674 | |
4675 | if (newaddr == start) | |
4676 | { | |
3a5c3e22 | 4677 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4678 | break; |
4679 | } | |
4680 | } | |
4681 | /* Exact match not required. Within range is sufficient. */ | |
4682 | else if (target_watchpoint_addr_within_range (¤t_target, | |
4683 | addr, loc->address, | |
4684 | loc->length)) | |
4685 | { | |
3a5c3e22 | 4686 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4687 | break; |
4688 | } | |
4689 | } | |
d983da9c DJ |
4690 | } |
4691 | ||
4692 | return 1; | |
4693 | } | |
4694 | ||
c906108c SS |
4695 | /* Possible return values for watchpoint_check (this can't be an enum |
4696 | because of check_errors). */ | |
4697 | /* The watchpoint has been deleted. */ | |
4698 | #define WP_DELETED 1 | |
4699 | /* The value has changed. */ | |
4700 | #define WP_VALUE_CHANGED 2 | |
4701 | /* The value has not changed. */ | |
4702 | #define WP_VALUE_NOT_CHANGED 3 | |
60e1c644 PA |
4703 | /* Ignore this watchpoint, no matter if the value changed or not. */ |
4704 | #define WP_IGNORE 4 | |
c906108c SS |
4705 | |
4706 | #define BP_TEMPFLAG 1 | |
4707 | #define BP_HARDWAREFLAG 2 | |
4708 | ||
4a64f543 MS |
4709 | /* Evaluate watchpoint condition expression and check if its value |
4710 | changed. | |
553e4c11 JB |
4711 | |
4712 | P should be a pointer to struct bpstat, but is defined as a void * | |
4713 | in order for this function to be usable with catch_errors. */ | |
c906108c SS |
4714 | |
4715 | static int | |
4efb68b1 | 4716 | watchpoint_check (void *p) |
c906108c SS |
4717 | { |
4718 | bpstat bs = (bpstat) p; | |
3a5c3e22 | 4719 | struct watchpoint *b; |
c906108c SS |
4720 | struct frame_info *fr; |
4721 | int within_current_scope; | |
4722 | ||
f431efe5 | 4723 | /* BS is built from an existing struct breakpoint. */ |
2bdf28a0 | 4724 | gdb_assert (bs->breakpoint_at != NULL); |
3a5c3e22 | 4725 | b = (struct watchpoint *) bs->breakpoint_at; |
d0fb5eae | 4726 | |
f6bc2008 PA |
4727 | /* If this is a local watchpoint, we only want to check if the |
4728 | watchpoint frame is in scope if the current thread is the thread | |
4729 | that was used to create the watchpoint. */ | |
4730 | if (!watchpoint_in_thread_scope (b)) | |
60e1c644 | 4731 | return WP_IGNORE; |
f6bc2008 | 4732 | |
c906108c SS |
4733 | if (b->exp_valid_block == NULL) |
4734 | within_current_scope = 1; | |
4735 | else | |
4736 | { | |
edb3359d DJ |
4737 | struct frame_info *frame = get_current_frame (); |
4738 | struct gdbarch *frame_arch = get_frame_arch (frame); | |
4739 | CORE_ADDR frame_pc = get_frame_pc (frame); | |
4740 | ||
4a64f543 MS |
4741 | /* in_function_epilogue_p() returns a non-zero value if we're |
4742 | still in the function but the stack frame has already been | |
4743 | invalidated. Since we can't rely on the values of local | |
4744 | variables after the stack has been destroyed, we are treating | |
4745 | the watchpoint in that state as `not changed' without further | |
4746 | checking. Don't mark watchpoints as changed if the current | |
4747 | frame is in an epilogue - even if they are in some other | |
4748 | frame, our view of the stack is likely to be wrong and | |
4749 | frame_find_by_id could error out. */ | |
a0f49112 | 4750 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) |
60e1c644 | 4751 | return WP_IGNORE; |
a0f49112 | 4752 | |
101dcfbe | 4753 | fr = frame_find_by_id (b->watchpoint_frame); |
c906108c | 4754 | within_current_scope = (fr != NULL); |
69fbadd5 DJ |
4755 | |
4756 | /* If we've gotten confused in the unwinder, we might have | |
4757 | returned a frame that can't describe this variable. */ | |
edb3359d DJ |
4758 | if (within_current_scope) |
4759 | { | |
4760 | struct symbol *function; | |
4761 | ||
4762 | function = get_frame_function (fr); | |
4763 | if (function == NULL | |
4764 | || !contained_in (b->exp_valid_block, | |
4765 | SYMBOL_BLOCK_VALUE (function))) | |
4766 | within_current_scope = 0; | |
4767 | } | |
69fbadd5 | 4768 | |
edb3359d | 4769 | if (within_current_scope) |
c906108c SS |
4770 | /* If we end up stopping, the current frame will get selected |
4771 | in normal_stop. So this call to select_frame won't affect | |
4772 | the user. */ | |
0f7d239c | 4773 | select_frame (fr); |
c906108c | 4774 | } |
c5aa993b | 4775 | |
c906108c SS |
4776 | if (within_current_scope) |
4777 | { | |
4a64f543 MS |
4778 | /* We use value_{,free_to_}mark because it could be a *long* |
4779 | time before we return to the command level and call | |
4780 | free_all_values. We can't call free_all_values because we | |
4781 | might be in the middle of evaluating a function call. */ | |
c906108c | 4782 | |
0cf6dd15 | 4783 | int pc = 0; |
9c06b0b4 | 4784 | struct value *mark; |
fa4727a6 DJ |
4785 | struct value *new_val; |
4786 | ||
3a5c3e22 | 4787 | if (is_masked_watchpoint (&b->base)) |
9c06b0b4 TJB |
4788 | /* Since we don't know the exact trigger address (from |
4789 | stopped_data_address), just tell the user we've triggered | |
4790 | a mask watchpoint. */ | |
4791 | return WP_VALUE_CHANGED; | |
4792 | ||
4793 | mark = value_mark (); | |
0cf6dd15 | 4794 | fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL); |
218d2fc6 | 4795 | |
4a64f543 MS |
4796 | /* We use value_equal_contents instead of value_equal because |
4797 | the latter coerces an array to a pointer, thus comparing just | |
4798 | the address of the array instead of its contents. This is | |
4799 | not what we want. */ | |
fa4727a6 | 4800 | if ((b->val != NULL) != (new_val != NULL) |
218d2fc6 | 4801 | || (b->val != NULL && !value_equal_contents (b->val, new_val))) |
c906108c | 4802 | { |
fa4727a6 DJ |
4803 | if (new_val != NULL) |
4804 | { | |
4805 | release_value (new_val); | |
4806 | value_free_to_mark (mark); | |
4807 | } | |
c906108c SS |
4808 | bs->old_val = b->val; |
4809 | b->val = new_val; | |
fa4727a6 | 4810 | b->val_valid = 1; |
c906108c SS |
4811 | return WP_VALUE_CHANGED; |
4812 | } | |
4813 | else | |
4814 | { | |
60e1c644 | 4815 | /* Nothing changed. */ |
c906108c | 4816 | value_free_to_mark (mark); |
c906108c SS |
4817 | return WP_VALUE_NOT_CHANGED; |
4818 | } | |
4819 | } | |
4820 | else | |
4821 | { | |
79a45e25 PA |
4822 | struct ui_out *uiout = current_uiout; |
4823 | ||
c906108c | 4824 | /* This seems like the only logical thing to do because |
c5aa993b JM |
4825 | if we temporarily ignored the watchpoint, then when |
4826 | we reenter the block in which it is valid it contains | |
4827 | garbage (in the case of a function, it may have two | |
4828 | garbage values, one before and one after the prologue). | |
4829 | So we can't even detect the first assignment to it and | |
4830 | watch after that (since the garbage may or may not equal | |
4831 | the first value assigned). */ | |
348d480f PA |
4832 | /* We print all the stop information in |
4833 | breakpoint_ops->print_it, but in this case, by the time we | |
4834 | call breakpoint_ops->print_it this bp will be deleted | |
4835 | already. So we have no choice but print the information | |
4836 | here. */ | |
9dc5e2a9 | 4837 | if (ui_out_is_mi_like_p (uiout)) |
034dad6f BR |
4838 | ui_out_field_string |
4839 | (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE)); | |
8b93c638 | 4840 | ui_out_text (uiout, "\nWatchpoint "); |
3a5c3e22 | 4841 | ui_out_field_int (uiout, "wpnum", b->base.number); |
3e43a32a MS |
4842 | ui_out_text (uiout, |
4843 | " deleted because the program has left the block in\n\ | |
8b93c638 | 4844 | which its expression is valid.\n"); |
4ce44c66 | 4845 | |
cdac0397 | 4846 | /* Make sure the watchpoint's commands aren't executed. */ |
3a5c3e22 | 4847 | decref_counted_command_line (&b->base.commands); |
d0fb5eae | 4848 | watchpoint_del_at_next_stop (b); |
c906108c SS |
4849 | |
4850 | return WP_DELETED; | |
4851 | } | |
4852 | } | |
4853 | ||
18a18393 | 4854 | /* Return true if it looks like target has stopped due to hitting |
348d480f PA |
4855 | breakpoint location BL. This function does not check if we should |
4856 | stop, only if BL explains the stop. */ | |
4857 | ||
18a18393 | 4858 | static int |
6c95b8df | 4859 | bpstat_check_location (const struct bp_location *bl, |
09ac7c10 TT |
4860 | struct address_space *aspace, CORE_ADDR bp_addr, |
4861 | const struct target_waitstatus *ws) | |
18a18393 VP |
4862 | { |
4863 | struct breakpoint *b = bl->owner; | |
4864 | ||
348d480f | 4865 | /* BL is from an existing breakpoint. */ |
2bdf28a0 JK |
4866 | gdb_assert (b != NULL); |
4867 | ||
09ac7c10 | 4868 | return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws); |
18a18393 VP |
4869 | } |
4870 | ||
3a5c3e22 PA |
4871 | /* Determine if the watched values have actually changed, and we |
4872 | should stop. If not, set BS->stop to 0. */ | |
4873 | ||
18a18393 VP |
4874 | static void |
4875 | bpstat_check_watchpoint (bpstat bs) | |
4876 | { | |
2bdf28a0 | 4877 | const struct bp_location *bl; |
3a5c3e22 | 4878 | struct watchpoint *b; |
2bdf28a0 JK |
4879 | |
4880 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 4881 | bl = bs->bp_location_at; |
2bdf28a0 | 4882 | gdb_assert (bl != NULL); |
3a5c3e22 | 4883 | b = (struct watchpoint *) bs->breakpoint_at; |
2bdf28a0 | 4884 | gdb_assert (b != NULL); |
18a18393 | 4885 | |
18a18393 | 4886 | { |
18a18393 VP |
4887 | int must_check_value = 0; |
4888 | ||
3a5c3e22 | 4889 | if (b->base.type == bp_watchpoint) |
18a18393 VP |
4890 | /* For a software watchpoint, we must always check the |
4891 | watched value. */ | |
4892 | must_check_value = 1; | |
4893 | else if (b->watchpoint_triggered == watch_triggered_yes) | |
4894 | /* We have a hardware watchpoint (read, write, or access) | |
4895 | and the target earlier reported an address watched by | |
4896 | this watchpoint. */ | |
4897 | must_check_value = 1; | |
4898 | else if (b->watchpoint_triggered == watch_triggered_unknown | |
3a5c3e22 | 4899 | && b->base.type == bp_hardware_watchpoint) |
18a18393 VP |
4900 | /* We were stopped by a hardware watchpoint, but the target could |
4901 | not report the data address. We must check the watchpoint's | |
4902 | value. Access and read watchpoints are out of luck; without | |
4903 | a data address, we can't figure it out. */ | |
4904 | must_check_value = 1; | |
3a5c3e22 | 4905 | |
18a18393 VP |
4906 | if (must_check_value) |
4907 | { | |
3e43a32a MS |
4908 | char *message |
4909 | = xstrprintf ("Error evaluating expression for watchpoint %d\n", | |
3a5c3e22 | 4910 | b->base.number); |
18a18393 VP |
4911 | struct cleanup *cleanups = make_cleanup (xfree, message); |
4912 | int e = catch_errors (watchpoint_check, bs, message, | |
4913 | RETURN_MASK_ALL); | |
4914 | do_cleanups (cleanups); | |
4915 | switch (e) | |
4916 | { | |
4917 | case WP_DELETED: | |
4918 | /* We've already printed what needs to be printed. */ | |
4919 | bs->print_it = print_it_done; | |
4920 | /* Stop. */ | |
4921 | break; | |
60e1c644 PA |
4922 | case WP_IGNORE: |
4923 | bs->print_it = print_it_noop; | |
4924 | bs->stop = 0; | |
4925 | break; | |
18a18393 | 4926 | case WP_VALUE_CHANGED: |
3a5c3e22 | 4927 | if (b->base.type == bp_read_watchpoint) |
18a18393 | 4928 | { |
85d721b8 PA |
4929 | /* There are two cases to consider here: |
4930 | ||
4a64f543 | 4931 | 1. We're watching the triggered memory for reads. |
85d721b8 PA |
4932 | In that case, trust the target, and always report |
4933 | the watchpoint hit to the user. Even though | |
4934 | reads don't cause value changes, the value may | |
4935 | have changed since the last time it was read, and | |
4936 | since we're not trapping writes, we will not see | |
4937 | those, and as such we should ignore our notion of | |
4938 | old value. | |
4939 | ||
4a64f543 | 4940 | 2. We're watching the triggered memory for both |
85d721b8 PA |
4941 | reads and writes. There are two ways this may |
4942 | happen: | |
4943 | ||
4a64f543 | 4944 | 2.1. This is a target that can't break on data |
85d721b8 PA |
4945 | reads only, but can break on accesses (reads or |
4946 | writes), such as e.g., x86. We detect this case | |
4947 | at the time we try to insert read watchpoints. | |
4948 | ||
4a64f543 | 4949 | 2.2. Otherwise, the target supports read |
85d721b8 PA |
4950 | watchpoints, but, the user set an access or write |
4951 | watchpoint watching the same memory as this read | |
4952 | watchpoint. | |
4953 | ||
4954 | If we're watching memory writes as well as reads, | |
4955 | ignore watchpoint hits when we find that the | |
4956 | value hasn't changed, as reads don't cause | |
4957 | changes. This still gives false positives when | |
4958 | the program writes the same value to memory as | |
4959 | what there was already in memory (we will confuse | |
4960 | it for a read), but it's much better than | |
4961 | nothing. */ | |
4962 | ||
4963 | int other_write_watchpoint = 0; | |
4964 | ||
4965 | if (bl->watchpoint_type == hw_read) | |
4966 | { | |
4967 | struct breakpoint *other_b; | |
4968 | ||
4969 | ALL_BREAKPOINTS (other_b) | |
3a5c3e22 PA |
4970 | if (other_b->type == bp_hardware_watchpoint |
4971 | || other_b->type == bp_access_watchpoint) | |
85d721b8 | 4972 | { |
3a5c3e22 PA |
4973 | struct watchpoint *other_w = |
4974 | (struct watchpoint *) other_b; | |
4975 | ||
4976 | if (other_w->watchpoint_triggered | |
4977 | == watch_triggered_yes) | |
4978 | { | |
4979 | other_write_watchpoint = 1; | |
4980 | break; | |
4981 | } | |
85d721b8 PA |
4982 | } |
4983 | } | |
4984 | ||
4985 | if (other_write_watchpoint | |
4986 | || bl->watchpoint_type == hw_access) | |
4987 | { | |
4988 | /* We're watching the same memory for writes, | |
4989 | and the value changed since the last time we | |
4990 | updated it, so this trap must be for a write. | |
4991 | Ignore it. */ | |
4992 | bs->print_it = print_it_noop; | |
4993 | bs->stop = 0; | |
4994 | } | |
18a18393 VP |
4995 | } |
4996 | break; | |
4997 | case WP_VALUE_NOT_CHANGED: | |
3a5c3e22 PA |
4998 | if (b->base.type == bp_hardware_watchpoint |
4999 | || b->base.type == bp_watchpoint) | |
18a18393 VP |
5000 | { |
5001 | /* Don't stop: write watchpoints shouldn't fire if | |
5002 | the value hasn't changed. */ | |
5003 | bs->print_it = print_it_noop; | |
5004 | bs->stop = 0; | |
5005 | } | |
5006 | /* Stop. */ | |
5007 | break; | |
5008 | default: | |
5009 | /* Can't happen. */ | |
5010 | case 0: | |
5011 | /* Error from catch_errors. */ | |
3a5c3e22 | 5012 | printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number); |
d0fb5eae | 5013 | watchpoint_del_at_next_stop (b); |
18a18393 VP |
5014 | /* We've already printed what needs to be printed. */ |
5015 | bs->print_it = print_it_done; | |
5016 | break; | |
5017 | } | |
5018 | } | |
5019 | else /* must_check_value == 0 */ | |
5020 | { | |
5021 | /* This is a case where some watchpoint(s) triggered, but | |
5022 | not at the address of this watchpoint, or else no | |
5023 | watchpoint triggered after all. So don't print | |
5024 | anything for this watchpoint. */ | |
5025 | bs->print_it = print_it_noop; | |
5026 | bs->stop = 0; | |
5027 | } | |
5028 | } | |
5029 | } | |
5030 | ||
5031 | ||
5032 | /* Check conditions (condition proper, frame, thread and ignore count) | |
5033 | of breakpoint referred to by BS. If we should not stop for this | |
5034 | breakpoint, set BS->stop to 0. */ | |
f431efe5 | 5035 | |
18a18393 VP |
5036 | static void |
5037 | bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid) | |
5038 | { | |
5039 | int thread_id = pid_to_thread_id (ptid); | |
2bdf28a0 JK |
5040 | const struct bp_location *bl; |
5041 | struct breakpoint *b; | |
5042 | ||
5043 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 5044 | bl = bs->bp_location_at; |
2bdf28a0 | 5045 | gdb_assert (bl != NULL); |
f431efe5 | 5046 | b = bs->breakpoint_at; |
2bdf28a0 | 5047 | gdb_assert (b != NULL); |
18a18393 | 5048 | |
b775012e LM |
5049 | /* Even if the target evaluated the condition on its end and notified GDB, we |
5050 | need to do so again since GDB does not know if we stopped due to a | |
5051 | breakpoint or a single step breakpoint. */ | |
5052 | ||
18a18393 | 5053 | if (frame_id_p (b->frame_id) |
edb3359d | 5054 | && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ()))) |
18a18393 VP |
5055 | bs->stop = 0; |
5056 | else if (bs->stop) | |
5057 | { | |
5058 | int value_is_zero = 0; | |
60e1c644 PA |
5059 | struct expression *cond; |
5060 | ||
7371cf6d PM |
5061 | /* Evaluate Python breakpoints that have a "stop" |
5062 | method implemented. */ | |
5063 | if (b->py_bp_object) | |
5064 | bs->stop = gdbpy_should_stop (b->py_bp_object); | |
5065 | ||
60e1c644 | 5066 | if (is_watchpoint (b)) |
3a5c3e22 PA |
5067 | { |
5068 | struct watchpoint *w = (struct watchpoint *) b; | |
5069 | ||
5070 | cond = w->cond_exp; | |
5071 | } | |
60e1c644 PA |
5072 | else |
5073 | cond = bl->cond; | |
5074 | ||
f431efe5 | 5075 | if (cond && b->disposition != disp_del_at_next_stop) |
18a18393 | 5076 | { |
60e1c644 | 5077 | int within_current_scope = 1; |
3a5c3e22 | 5078 | struct watchpoint * w; |
60e1c644 | 5079 | |
c5bc3a77 DJ |
5080 | /* We use value_mark and value_free_to_mark because it could |
5081 | be a long time before we return to the command level and | |
5082 | call free_all_values. We can't call free_all_values | |
5083 | because we might be in the middle of evaluating a | |
5084 | function call. */ | |
5085 | struct value *mark = value_mark (); | |
5086 | ||
3a5c3e22 PA |
5087 | if (is_watchpoint (b)) |
5088 | w = (struct watchpoint *) b; | |
5089 | else | |
5090 | w = NULL; | |
5091 | ||
edb3359d DJ |
5092 | /* Need to select the frame, with all that implies so that |
5093 | the conditions will have the right context. Because we | |
5094 | use the frame, we will not see an inlined function's | |
5095 | variables when we arrive at a breakpoint at the start | |
5096 | of the inlined function; the current frame will be the | |
5097 | call site. */ | |
3a5c3e22 | 5098 | if (w == NULL || w->cond_exp_valid_block == NULL) |
60e1c644 PA |
5099 | select_frame (get_current_frame ()); |
5100 | else | |
5101 | { | |
5102 | struct frame_info *frame; | |
5103 | ||
5104 | /* For local watchpoint expressions, which particular | |
5105 | instance of a local is being watched matters, so we | |
5106 | keep track of the frame to evaluate the expression | |
5107 | in. To evaluate the condition however, it doesn't | |
5108 | really matter which instantiation of the function | |
5109 | where the condition makes sense triggers the | |
5110 | watchpoint. This allows an expression like "watch | |
5111 | global if q > 10" set in `func', catch writes to | |
5112 | global on all threads that call `func', or catch | |
5113 | writes on all recursive calls of `func' by a single | |
5114 | thread. We simply always evaluate the condition in | |
5115 | the innermost frame that's executing where it makes | |
5116 | sense to evaluate the condition. It seems | |
5117 | intuitive. */ | |
3a5c3e22 | 5118 | frame = block_innermost_frame (w->cond_exp_valid_block); |
60e1c644 PA |
5119 | if (frame != NULL) |
5120 | select_frame (frame); | |
5121 | else | |
5122 | within_current_scope = 0; | |
5123 | } | |
5124 | if (within_current_scope) | |
5125 | value_is_zero | |
5126 | = catch_errors (breakpoint_cond_eval, cond, | |
5127 | "Error in testing breakpoint condition:\n", | |
5128 | RETURN_MASK_ALL); | |
5129 | else | |
5130 | { | |
5131 | warning (_("Watchpoint condition cannot be tested " | |
5132 | "in the current scope")); | |
5133 | /* If we failed to set the right context for this | |
5134 | watchpoint, unconditionally report it. */ | |
5135 | value_is_zero = 0; | |
5136 | } | |
4a64f543 | 5137 | /* FIXME-someday, should give breakpoint #. */ |
c5bc3a77 | 5138 | value_free_to_mark (mark); |
18a18393 | 5139 | } |
60e1c644 PA |
5140 | |
5141 | if (cond && value_is_zero) | |
18a18393 VP |
5142 | { |
5143 | bs->stop = 0; | |
5144 | } | |
5145 | else if (b->thread != -1 && b->thread != thread_id) | |
5146 | { | |
5147 | bs->stop = 0; | |
5148 | } | |
5149 | else if (b->ignore_count > 0) | |
5150 | { | |
5151 | b->ignore_count--; | |
18a18393 | 5152 | bs->stop = 0; |
4a64f543 | 5153 | /* Increase the hit count even though we don't stop. */ |
18a18393 | 5154 | ++(b->hit_count); |
8d3788bd | 5155 | observer_notify_breakpoint_modified (b); |
18a18393 VP |
5156 | } |
5157 | } | |
5158 | } | |
5159 | ||
5160 | ||
9709f61c | 5161 | /* Get a bpstat associated with having just stopped at address |
d983da9c | 5162 | BP_ADDR in thread PTID. |
c906108c | 5163 | |
d983da9c | 5164 | Determine whether we stopped at a breakpoint, etc, or whether we |
4a64f543 MS |
5165 | don't understand this stop. Result is a chain of bpstat's such |
5166 | that: | |
c906108c | 5167 | |
c5aa993b | 5168 | if we don't understand the stop, the result is a null pointer. |
c906108c | 5169 | |
c5aa993b | 5170 | if we understand why we stopped, the result is not null. |
c906108c | 5171 | |
c5aa993b JM |
5172 | Each element of the chain refers to a particular breakpoint or |
5173 | watchpoint at which we have stopped. (We may have stopped for | |
5174 | several reasons concurrently.) | |
c906108c | 5175 | |
c5aa993b JM |
5176 | Each element of the chain has valid next, breakpoint_at, |
5177 | commands, FIXME??? fields. */ | |
c906108c SS |
5178 | |
5179 | bpstat | |
6c95b8df | 5180 | bpstat_stop_status (struct address_space *aspace, |
09ac7c10 TT |
5181 | CORE_ADDR bp_addr, ptid_t ptid, |
5182 | const struct target_waitstatus *ws) | |
c906108c | 5183 | { |
0d381245 | 5184 | struct breakpoint *b = NULL; |
afe38095 | 5185 | struct bp_location *bl; |
20874c92 | 5186 | struct bp_location *loc; |
5760d0ab JK |
5187 | /* First item of allocated bpstat's. */ |
5188 | bpstat bs_head = NULL, *bs_link = &bs_head; | |
c906108c | 5189 | /* Pointer to the last thing in the chain currently. */ |
5760d0ab | 5190 | bpstat bs; |
20874c92 | 5191 | int ix; |
429374b8 | 5192 | int need_remove_insert; |
f431efe5 | 5193 | int removed_any; |
c906108c | 5194 | |
f431efe5 PA |
5195 | /* First, build the bpstat chain with locations that explain a |
5196 | target stop, while being careful to not set the target running, | |
5197 | as that may invalidate locations (in particular watchpoint | |
5198 | locations are recreated). Resuming will happen here with | |
5199 | breakpoint conditions or watchpoint expressions that include | |
5200 | inferior function calls. */ | |
c5aa993b | 5201 | |
429374b8 JK |
5202 | ALL_BREAKPOINTS (b) |
5203 | { | |
5204 | if (!breakpoint_enabled (b) && b->enable_state != bp_permanent) | |
5205 | continue; | |
a5606eee | 5206 | |
429374b8 JK |
5207 | for (bl = b->loc; bl != NULL; bl = bl->next) |
5208 | { | |
4a64f543 MS |
5209 | /* For hardware watchpoints, we look only at the first |
5210 | location. The watchpoint_check function will work on the | |
5211 | entire expression, not the individual locations. For | |
5212 | read watchpoints, the watchpoints_triggered function has | |
5213 | checked all locations already. */ | |
429374b8 JK |
5214 | if (b->type == bp_hardware_watchpoint && bl != b->loc) |
5215 | break; | |
18a18393 | 5216 | |
f6592439 | 5217 | if (!bl->enabled || bl->shlib_disabled) |
429374b8 | 5218 | continue; |
c5aa993b | 5219 | |
09ac7c10 | 5220 | if (!bpstat_check_location (bl, aspace, bp_addr, ws)) |
429374b8 | 5221 | continue; |
c5aa993b | 5222 | |
4a64f543 MS |
5223 | /* Come here if it's a watchpoint, or if the break address |
5224 | matches. */ | |
c5aa993b | 5225 | |
4a64f543 MS |
5226 | bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to |
5227 | explain stop. */ | |
c5aa993b | 5228 | |
f431efe5 PA |
5229 | /* Assume we stop. Should we find a watchpoint that is not |
5230 | actually triggered, or if the condition of the breakpoint | |
5231 | evaluates as false, we'll reset 'stop' to 0. */ | |
429374b8 JK |
5232 | bs->stop = 1; |
5233 | bs->print = 1; | |
d983da9c | 5234 | |
f431efe5 PA |
5235 | /* If this is a scope breakpoint, mark the associated |
5236 | watchpoint as triggered so that we will handle the | |
5237 | out-of-scope event. We'll get to the watchpoint next | |
5238 | iteration. */ | |
d0fb5eae | 5239 | if (b->type == bp_watchpoint_scope && b->related_breakpoint != b) |
3a5c3e22 PA |
5240 | { |
5241 | struct watchpoint *w = (struct watchpoint *) b->related_breakpoint; | |
5242 | ||
5243 | w->watchpoint_triggered = watch_triggered_yes; | |
5244 | } | |
f431efe5 PA |
5245 | } |
5246 | } | |
5247 | ||
5248 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
5249 | { | |
f1310107 | 5250 | if (breakpoint_location_address_match (loc, aspace, bp_addr)) |
f431efe5 | 5251 | { |
5760d0ab | 5252 | bs = bpstat_alloc (loc, &bs_link); |
f431efe5 PA |
5253 | /* For hits of moribund locations, we should just proceed. */ |
5254 | bs->stop = 0; | |
5255 | bs->print = 0; | |
5256 | bs->print_it = print_it_noop; | |
5257 | } | |
5258 | } | |
5259 | ||
edcc5120 TT |
5260 | /* A bit of special processing for shlib breakpoints. We need to |
5261 | process solib loading here, so that the lists of loaded and | |
5262 | unloaded libraries are correct before we handle "catch load" and | |
5263 | "catch unload". */ | |
5264 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
5265 | { | |
5d268276 | 5266 | if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event) |
edcc5120 TT |
5267 | { |
5268 | handle_solib_event (); | |
5269 | break; | |
5270 | } | |
5271 | } | |
5272 | ||
f431efe5 PA |
5273 | /* Now go through the locations that caused the target to stop, and |
5274 | check whether we're interested in reporting this stop to higher | |
5275 | layers, or whether we should resume the target transparently. */ | |
5276 | ||
5277 | removed_any = 0; | |
5278 | ||
5760d0ab | 5279 | for (bs = bs_head; bs != NULL; bs = bs->next) |
f431efe5 PA |
5280 | { |
5281 | if (!bs->stop) | |
5282 | continue; | |
5283 | ||
f431efe5 | 5284 | b = bs->breakpoint_at; |
348d480f PA |
5285 | b->ops->check_status (bs); |
5286 | if (bs->stop) | |
28010a5d | 5287 | { |
348d480f | 5288 | bpstat_check_breakpoint_conditions (bs, ptid); |
f431efe5 | 5289 | |
429374b8 JK |
5290 | if (bs->stop) |
5291 | { | |
5292 | ++(b->hit_count); | |
8d3788bd | 5293 | observer_notify_breakpoint_modified (b); |
c906108c | 5294 | |
4a64f543 | 5295 | /* We will stop here. */ |
429374b8 JK |
5296 | if (b->disposition == disp_disable) |
5297 | { | |
816338b5 SS |
5298 | --(b->enable_count); |
5299 | if (b->enable_count <= 0 | |
5300 | && b->enable_state != bp_permanent) | |
429374b8 | 5301 | b->enable_state = bp_disabled; |
f431efe5 | 5302 | removed_any = 1; |
429374b8 JK |
5303 | } |
5304 | if (b->silent) | |
5305 | bs->print = 0; | |
5306 | bs->commands = b->commands; | |
9add0f1b | 5307 | incref_counted_command_line (bs->commands); |
abf85f46 JK |
5308 | if (command_line_is_silent (bs->commands |
5309 | ? bs->commands->commands : NULL)) | |
5310 | bs->print = 0; | |
429374b8 JK |
5311 | } |
5312 | ||
348d480f | 5313 | } |
a9b3a50f PA |
5314 | |
5315 | /* Print nothing for this entry if we don't stop or don't | |
5316 | print. */ | |
5317 | if (!bs->stop || !bs->print) | |
5318 | bs->print_it = print_it_noop; | |
429374b8 | 5319 | } |
876fa593 | 5320 | |
d983da9c DJ |
5321 | /* If we aren't stopping, the value of some hardware watchpoint may |
5322 | not have changed, but the intermediate memory locations we are | |
5323 | watching may have. Don't bother if we're stopping; this will get | |
5324 | done later. */ | |
d832cb68 | 5325 | need_remove_insert = 0; |
5760d0ab JK |
5326 | if (! bpstat_causes_stop (bs_head)) |
5327 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
d983da9c | 5328 | if (!bs->stop |
f431efe5 PA |
5329 | && bs->breakpoint_at |
5330 | && is_hardware_watchpoint (bs->breakpoint_at)) | |
d983da9c | 5331 | { |
3a5c3e22 PA |
5332 | struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at; |
5333 | ||
5334 | update_watchpoint (w, 0 /* don't reparse. */); | |
d832cb68 | 5335 | need_remove_insert = 1; |
d983da9c DJ |
5336 | } |
5337 | ||
d832cb68 | 5338 | if (need_remove_insert) |
2d134ed3 | 5339 | update_global_location_list (1); |
f431efe5 PA |
5340 | else if (removed_any) |
5341 | update_global_location_list (0); | |
d832cb68 | 5342 | |
5760d0ab | 5343 | return bs_head; |
c906108c | 5344 | } |
628fe4e4 JK |
5345 | |
5346 | static void | |
5347 | handle_jit_event (void) | |
5348 | { | |
5349 | struct frame_info *frame; | |
5350 | struct gdbarch *gdbarch; | |
5351 | ||
5352 | /* Switch terminal for any messages produced by | |
5353 | breakpoint_re_set. */ | |
5354 | target_terminal_ours_for_output (); | |
5355 | ||
5356 | frame = get_current_frame (); | |
5357 | gdbarch = get_frame_arch (frame); | |
5358 | ||
5359 | jit_event_handler (gdbarch); | |
5360 | ||
5361 | target_terminal_inferior (); | |
5362 | } | |
5363 | ||
5364 | /* Prepare WHAT final decision for infrun. */ | |
5365 | ||
5366 | /* Decide what infrun needs to do with this bpstat. */ | |
5367 | ||
c906108c | 5368 | struct bpstat_what |
0e30163f | 5369 | bpstat_what (bpstat bs_head) |
c906108c | 5370 | { |
c906108c | 5371 | struct bpstat_what retval; |
628fe4e4 | 5372 | int jit_event = 0; |
0e30163f | 5373 | bpstat bs; |
c906108c | 5374 | |
628fe4e4 | 5375 | retval.main_action = BPSTAT_WHAT_KEEP_CHECKING; |
aa7d318d | 5376 | retval.call_dummy = STOP_NONE; |
186c406b | 5377 | retval.is_longjmp = 0; |
628fe4e4 | 5378 | |
0e30163f | 5379 | for (bs = bs_head; bs != NULL; bs = bs->next) |
c906108c | 5380 | { |
628fe4e4 JK |
5381 | /* Extract this BS's action. After processing each BS, we check |
5382 | if its action overrides all we've seem so far. */ | |
5383 | enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
5384 | enum bptype bptype; | |
5385 | ||
c906108c | 5386 | if (bs->breakpoint_at == NULL) |
628fe4e4 JK |
5387 | { |
5388 | /* I suspect this can happen if it was a momentary | |
5389 | breakpoint which has since been deleted. */ | |
5390 | bptype = bp_none; | |
5391 | } | |
20874c92 | 5392 | else |
f431efe5 | 5393 | bptype = bs->breakpoint_at->type; |
628fe4e4 JK |
5394 | |
5395 | switch (bptype) | |
c906108c SS |
5396 | { |
5397 | case bp_none: | |
628fe4e4 | 5398 | break; |
c906108c SS |
5399 | case bp_breakpoint: |
5400 | case bp_hardware_breakpoint: | |
5401 | case bp_until: | |
5402 | case bp_finish: | |
a9b3a50f | 5403 | case bp_shlib_event: |
c906108c SS |
5404 | if (bs->stop) |
5405 | { | |
5406 | if (bs->print) | |
628fe4e4 | 5407 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c906108c | 5408 | else |
628fe4e4 | 5409 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c SS |
5410 | } |
5411 | else | |
628fe4e4 | 5412 | this_action = BPSTAT_WHAT_SINGLE; |
c906108c SS |
5413 | break; |
5414 | case bp_watchpoint: | |
5415 | case bp_hardware_watchpoint: | |
5416 | case bp_read_watchpoint: | |
5417 | case bp_access_watchpoint: | |
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 JK |
5426 | { |
5427 | /* There was a watchpoint, but we're not stopping. | |
5428 | This requires no further action. */ | |
5429 | } | |
c906108c SS |
5430 | break; |
5431 | case bp_longjmp: | |
e2e4d78b | 5432 | case bp_longjmp_call_dummy: |
186c406b | 5433 | case bp_exception: |
628fe4e4 | 5434 | this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME; |
e2e4d78b | 5435 | retval.is_longjmp = bptype != bp_exception; |
c906108c SS |
5436 | break; |
5437 | case bp_longjmp_resume: | |
186c406b | 5438 | case bp_exception_resume: |
628fe4e4 | 5439 | this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME; |
186c406b | 5440 | retval.is_longjmp = bptype == bp_longjmp_resume; |
c906108c SS |
5441 | break; |
5442 | case bp_step_resume: | |
5443 | if (bs->stop) | |
628fe4e4 JK |
5444 | this_action = BPSTAT_WHAT_STEP_RESUME; |
5445 | else | |
c906108c | 5446 | { |
628fe4e4 JK |
5447 | /* It is for the wrong frame. */ |
5448 | this_action = BPSTAT_WHAT_SINGLE; | |
c906108c | 5449 | } |
c906108c | 5450 | break; |
2c03e5be PA |
5451 | case bp_hp_step_resume: |
5452 | if (bs->stop) | |
5453 | this_action = BPSTAT_WHAT_HP_STEP_RESUME; | |
5454 | else | |
5455 | { | |
5456 | /* It is for the wrong frame. */ | |
5457 | this_action = BPSTAT_WHAT_SINGLE; | |
5458 | } | |
5459 | break; | |
c906108c | 5460 | case bp_watchpoint_scope: |
c4093a6a | 5461 | case bp_thread_event: |
1900040c | 5462 | case bp_overlay_event: |
0fd8e87f | 5463 | case bp_longjmp_master: |
aa7d318d | 5464 | case bp_std_terminate_master: |
186c406b | 5465 | case bp_exception_master: |
628fe4e4 | 5466 | this_action = BPSTAT_WHAT_SINGLE; |
c4093a6a | 5467 | break; |
ce78b96d | 5468 | case bp_catchpoint: |
c5aa993b JM |
5469 | if (bs->stop) |
5470 | { | |
5471 | if (bs->print) | |
628fe4e4 | 5472 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c5aa993b | 5473 | else |
628fe4e4 | 5474 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c5aa993b JM |
5475 | } |
5476 | else | |
628fe4e4 JK |
5477 | { |
5478 | /* There was a catchpoint, but we're not stopping. | |
5479 | This requires no further action. */ | |
5480 | } | |
5481 | break; | |
628fe4e4 JK |
5482 | case bp_jit_event: |
5483 | jit_event = 1; | |
5484 | this_action = BPSTAT_WHAT_SINGLE; | |
c5aa993b | 5485 | break; |
c906108c | 5486 | case bp_call_dummy: |
53a5351d JM |
5487 | /* Make sure the action is stop (silent or noisy), |
5488 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5489 | retval.call_dummy = STOP_STACK_DUMMY; |
628fe4e4 | 5490 | this_action = BPSTAT_WHAT_STOP_SILENT; |
aa7d318d TT |
5491 | break; |
5492 | case bp_std_terminate: | |
5493 | /* Make sure the action is stop (silent or noisy), | |
5494 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5495 | retval.call_dummy = STOP_STD_TERMINATE; |
628fe4e4 | 5496 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c | 5497 | break; |
1042e4c0 | 5498 | case bp_tracepoint: |
7a697b8d | 5499 | case bp_fast_tracepoint: |
0fb4aa4b | 5500 | case bp_static_tracepoint: |
1042e4c0 SS |
5501 | /* Tracepoint hits should not be reported back to GDB, and |
5502 | if one got through somehow, it should have been filtered | |
5503 | out already. */ | |
5504 | internal_error (__FILE__, __LINE__, | |
7a697b8d | 5505 | _("bpstat_what: tracepoint encountered")); |
0e30163f JK |
5506 | break; |
5507 | case bp_gnu_ifunc_resolver: | |
5508 | /* Step over it (and insert bp_gnu_ifunc_resolver_return). */ | |
5509 | this_action = BPSTAT_WHAT_SINGLE; | |
5510 | break; | |
5511 | case bp_gnu_ifunc_resolver_return: | |
5512 | /* The breakpoint will be removed, execution will restart from the | |
5513 | PC of the former breakpoint. */ | |
5514 | this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
5515 | break; | |
e7e0cddf SS |
5516 | |
5517 | case bp_dprintf: | |
a11cfd87 HZ |
5518 | if (bs->stop) |
5519 | this_action = BPSTAT_WHAT_STOP_SILENT; | |
5520 | else | |
5521 | this_action = BPSTAT_WHAT_SINGLE; | |
e7e0cddf SS |
5522 | break; |
5523 | ||
628fe4e4 JK |
5524 | default: |
5525 | internal_error (__FILE__, __LINE__, | |
5526 | _("bpstat_what: unhandled bptype %d"), (int) bptype); | |
c906108c | 5527 | } |
628fe4e4 JK |
5528 | |
5529 | retval.main_action = max (retval.main_action, this_action); | |
c906108c | 5530 | } |
628fe4e4 | 5531 | |
0e30163f JK |
5532 | /* These operations may affect the bs->breakpoint_at state so they are |
5533 | delayed after MAIN_ACTION is decided above. */ | |
5534 | ||
628fe4e4 JK |
5535 | if (jit_event) |
5536 | { | |
5537 | if (debug_infrun) | |
5538 | fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n"); | |
5539 | ||
5540 | handle_jit_event (); | |
5541 | } | |
5542 | ||
0e30163f JK |
5543 | for (bs = bs_head; bs != NULL; bs = bs->next) |
5544 | { | |
5545 | struct breakpoint *b = bs->breakpoint_at; | |
5546 | ||
5547 | if (b == NULL) | |
5548 | continue; | |
5549 | switch (b->type) | |
5550 | { | |
5551 | case bp_gnu_ifunc_resolver: | |
5552 | gnu_ifunc_resolver_stop (b); | |
5553 | break; | |
5554 | case bp_gnu_ifunc_resolver_return: | |
5555 | gnu_ifunc_resolver_return_stop (b); | |
5556 | break; | |
5557 | } | |
5558 | } | |
5559 | ||
c906108c SS |
5560 | return retval; |
5561 | } | |
5562 | ||
5563 | /* Nonzero if we should step constantly (e.g. watchpoints on machines | |
5564 | without hardware support). This isn't related to a specific bpstat, | |
5565 | just to things like whether watchpoints are set. */ | |
5566 | ||
c5aa993b | 5567 | int |
fba45db2 | 5568 | bpstat_should_step (void) |
c906108c SS |
5569 | { |
5570 | struct breakpoint *b; | |
cc59ec59 | 5571 | |
c906108c | 5572 | ALL_BREAKPOINTS (b) |
717a8278 | 5573 | if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL) |
3172dc30 | 5574 | return 1; |
c906108c SS |
5575 | return 0; |
5576 | } | |
5577 | ||
67822962 PA |
5578 | int |
5579 | bpstat_causes_stop (bpstat bs) | |
5580 | { | |
5581 | for (; bs != NULL; bs = bs->next) | |
5582 | if (bs->stop) | |
5583 | return 1; | |
5584 | ||
5585 | return 0; | |
5586 | } | |
5587 | ||
c906108c | 5588 | \f |
c5aa993b | 5589 | |
170b53b2 UW |
5590 | /* Compute a string of spaces suitable to indent the next line |
5591 | so it starts at the position corresponding to the table column | |
5592 | named COL_NAME in the currently active table of UIOUT. */ | |
5593 | ||
5594 | static char * | |
5595 | wrap_indent_at_field (struct ui_out *uiout, const char *col_name) | |
5596 | { | |
5597 | static char wrap_indent[80]; | |
5598 | int i, total_width, width, align; | |
5599 | char *text; | |
5600 | ||
5601 | total_width = 0; | |
5602 | for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++) | |
5603 | { | |
5604 | if (strcmp (text, col_name) == 0) | |
5605 | { | |
5606 | gdb_assert (total_width < sizeof wrap_indent); | |
5607 | memset (wrap_indent, ' ', total_width); | |
5608 | wrap_indent[total_width] = 0; | |
5609 | ||
5610 | return wrap_indent; | |
5611 | } | |
5612 | ||
5613 | total_width += width + 1; | |
5614 | } | |
5615 | ||
5616 | return NULL; | |
5617 | } | |
5618 | ||
b775012e LM |
5619 | /* Determine if the locations of this breakpoint will have their conditions |
5620 | evaluated by the target, host or a mix of both. Returns the following: | |
5621 | ||
5622 | "host": Host evals condition. | |
5623 | "host or target": Host or Target evals condition. | |
5624 | "target": Target evals condition. | |
5625 | */ | |
5626 | ||
5627 | static const char * | |
5628 | bp_condition_evaluator (struct breakpoint *b) | |
5629 | { | |
5630 | struct bp_location *bl; | |
5631 | char host_evals = 0; | |
5632 | char target_evals = 0; | |
5633 | ||
5634 | if (!b) | |
5635 | return NULL; | |
5636 | ||
5637 | if (!is_breakpoint (b)) | |
5638 | return NULL; | |
5639 | ||
5640 | if (gdb_evaluates_breakpoint_condition_p () | |
5641 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5642 | return condition_evaluation_host; | |
5643 | ||
5644 | for (bl = b->loc; bl; bl = bl->next) | |
5645 | { | |
5646 | if (bl->cond_bytecode) | |
5647 | target_evals++; | |
5648 | else | |
5649 | host_evals++; | |
5650 | } | |
5651 | ||
5652 | if (host_evals && target_evals) | |
5653 | return condition_evaluation_both; | |
5654 | else if (target_evals) | |
5655 | return condition_evaluation_target; | |
5656 | else | |
5657 | return condition_evaluation_host; | |
5658 | } | |
5659 | ||
5660 | /* Determine the breakpoint location's condition evaluator. This is | |
5661 | similar to bp_condition_evaluator, but for locations. */ | |
5662 | ||
5663 | static const char * | |
5664 | bp_location_condition_evaluator (struct bp_location *bl) | |
5665 | { | |
5666 | if (bl && !is_breakpoint (bl->owner)) | |
5667 | return NULL; | |
5668 | ||
5669 | if (gdb_evaluates_breakpoint_condition_p () | |
5670 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5671 | return condition_evaluation_host; | |
5672 | ||
5673 | if (bl && bl->cond_bytecode) | |
5674 | return condition_evaluation_target; | |
5675 | else | |
5676 | return condition_evaluation_host; | |
5677 | } | |
5678 | ||
859825b8 JK |
5679 | /* Print the LOC location out of the list of B->LOC locations. */ |
5680 | ||
170b53b2 UW |
5681 | static void |
5682 | print_breakpoint_location (struct breakpoint *b, | |
5683 | struct bp_location *loc) | |
0d381245 | 5684 | { |
79a45e25 | 5685 | struct ui_out *uiout = current_uiout; |
6c95b8df PA |
5686 | struct cleanup *old_chain = save_current_program_space (); |
5687 | ||
859825b8 JK |
5688 | if (loc != NULL && loc->shlib_disabled) |
5689 | loc = NULL; | |
5690 | ||
6c95b8df PA |
5691 | if (loc != NULL) |
5692 | set_current_program_space (loc->pspace); | |
5693 | ||
56435ebe TT |
5694 | if (b->display_canonical) |
5695 | ui_out_field_string (uiout, "what", b->addr_string); | |
2f202fde | 5696 | else if (loc && loc->symtab) |
0d381245 VP |
5697 | { |
5698 | struct symbol *sym | |
5699 | = find_pc_sect_function (loc->address, loc->section); | |
5700 | if (sym) | |
5701 | { | |
5702 | ui_out_text (uiout, "in "); | |
5703 | ui_out_field_string (uiout, "func", | |
5704 | SYMBOL_PRINT_NAME (sym)); | |
170b53b2 UW |
5705 | ui_out_text (uiout, " "); |
5706 | ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what")); | |
5707 | ui_out_text (uiout, "at "); | |
0d381245 | 5708 | } |
05cba821 JK |
5709 | ui_out_field_string (uiout, "file", |
5710 | symtab_to_filename_for_display (loc->symtab)); | |
0d381245 | 5711 | ui_out_text (uiout, ":"); |
05cba821 | 5712 | |
0d381245 | 5713 | if (ui_out_is_mi_like_p (uiout)) |
2f202fde JK |
5714 | ui_out_field_string (uiout, "fullname", |
5715 | symtab_to_fullname (loc->symtab)); | |
0d381245 | 5716 | |
f8eba3c6 | 5717 | ui_out_field_int (uiout, "line", loc->line_number); |
0d381245 | 5718 | } |
859825b8 | 5719 | else if (loc) |
0d381245 | 5720 | { |
f99d8bf4 PA |
5721 | struct ui_file *stb = mem_fileopen (); |
5722 | struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb); | |
170b53b2 | 5723 | |
f99d8bf4 | 5724 | print_address_symbolic (loc->gdbarch, loc->address, stb, |
22e722e1 | 5725 | demangle, ""); |
0d381245 | 5726 | ui_out_field_stream (uiout, "at", stb); |
170b53b2 UW |
5727 | |
5728 | do_cleanups (stb_chain); | |
0d381245 | 5729 | } |
859825b8 JK |
5730 | else |
5731 | ui_out_field_string (uiout, "pending", b->addr_string); | |
6c95b8df | 5732 | |
b775012e LM |
5733 | if (loc && is_breakpoint (b) |
5734 | && breakpoint_condition_evaluation_mode () == condition_evaluation_target | |
5735 | && bp_condition_evaluator (b) == condition_evaluation_both) | |
5736 | { | |
5737 | ui_out_text (uiout, " ("); | |
5738 | ui_out_field_string (uiout, "evaluated-by", | |
5739 | bp_location_condition_evaluator (loc)); | |
5740 | ui_out_text (uiout, ")"); | |
5741 | } | |
5742 | ||
6c95b8df | 5743 | do_cleanups (old_chain); |
0d381245 VP |
5744 | } |
5745 | ||
269b11a2 PA |
5746 | static const char * |
5747 | bptype_string (enum bptype type) | |
c906108c | 5748 | { |
c4093a6a JM |
5749 | struct ep_type_description |
5750 | { | |
5751 | enum bptype type; | |
5752 | char *description; | |
5753 | }; | |
5754 | static struct ep_type_description bptypes[] = | |
c906108c | 5755 | { |
c5aa993b JM |
5756 | {bp_none, "?deleted?"}, |
5757 | {bp_breakpoint, "breakpoint"}, | |
c906108c | 5758 | {bp_hardware_breakpoint, "hw breakpoint"}, |
c5aa993b JM |
5759 | {bp_until, "until"}, |
5760 | {bp_finish, "finish"}, | |
5761 | {bp_watchpoint, "watchpoint"}, | |
c906108c | 5762 | {bp_hardware_watchpoint, "hw watchpoint"}, |
c5aa993b JM |
5763 | {bp_read_watchpoint, "read watchpoint"}, |
5764 | {bp_access_watchpoint, "acc watchpoint"}, | |
5765 | {bp_longjmp, "longjmp"}, | |
5766 | {bp_longjmp_resume, "longjmp resume"}, | |
e2e4d78b | 5767 | {bp_longjmp_call_dummy, "longjmp for call dummy"}, |
186c406b TT |
5768 | {bp_exception, "exception"}, |
5769 | {bp_exception_resume, "exception resume"}, | |
c5aa993b | 5770 | {bp_step_resume, "step resume"}, |
2c03e5be | 5771 | {bp_hp_step_resume, "high-priority step resume"}, |
c5aa993b JM |
5772 | {bp_watchpoint_scope, "watchpoint scope"}, |
5773 | {bp_call_dummy, "call dummy"}, | |
aa7d318d | 5774 | {bp_std_terminate, "std::terminate"}, |
c5aa993b | 5775 | {bp_shlib_event, "shlib events"}, |
c4093a6a | 5776 | {bp_thread_event, "thread events"}, |
1900040c | 5777 | {bp_overlay_event, "overlay events"}, |
0fd8e87f | 5778 | {bp_longjmp_master, "longjmp master"}, |
aa7d318d | 5779 | {bp_std_terminate_master, "std::terminate master"}, |
186c406b | 5780 | {bp_exception_master, "exception master"}, |
ce78b96d | 5781 | {bp_catchpoint, "catchpoint"}, |
1042e4c0 | 5782 | {bp_tracepoint, "tracepoint"}, |
7a697b8d | 5783 | {bp_fast_tracepoint, "fast tracepoint"}, |
0fb4aa4b | 5784 | {bp_static_tracepoint, "static tracepoint"}, |
e7e0cddf | 5785 | {bp_dprintf, "dprintf"}, |
4efc6507 | 5786 | {bp_jit_event, "jit events"}, |
0e30163f JK |
5787 | {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"}, |
5788 | {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"}, | |
c5aa993b | 5789 | }; |
269b11a2 PA |
5790 | |
5791 | if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0]))) | |
5792 | || ((int) type != bptypes[(int) type].type)) | |
5793 | internal_error (__FILE__, __LINE__, | |
5794 | _("bptypes table does not describe type #%d."), | |
5795 | (int) type); | |
5796 | ||
5797 | return bptypes[(int) type].description; | |
5798 | } | |
5799 | ||
998580f1 MK |
5800 | DEF_VEC_I(int); |
5801 | ||
5802 | /* For MI, output a field named 'thread-groups' with a list as the value. | |
5803 | For CLI, prefix the list with the string 'inf'. */ | |
5804 | ||
5805 | static void | |
5806 | output_thread_groups (struct ui_out *uiout, | |
5807 | const char *field_name, | |
5808 | VEC(int) *inf_num, | |
5809 | int mi_only) | |
5810 | { | |
752eb8b4 | 5811 | struct cleanup *back_to; |
998580f1 MK |
5812 | int is_mi = ui_out_is_mi_like_p (uiout); |
5813 | int inf; | |
5814 | int i; | |
5815 | ||
5816 | /* For backward compatibility, don't display inferiors in CLI unless | |
5817 | there are several. Always display them for MI. */ | |
5818 | if (!is_mi && mi_only) | |
5819 | return; | |
5820 | ||
752eb8b4 TT |
5821 | back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name); |
5822 | ||
998580f1 MK |
5823 | for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i) |
5824 | { | |
5825 | if (is_mi) | |
5826 | { | |
5827 | char mi_group[10]; | |
5828 | ||
5829 | xsnprintf (mi_group, sizeof (mi_group), "i%d", inf); | |
5830 | ui_out_field_string (uiout, NULL, mi_group); | |
5831 | } | |
5832 | else | |
5833 | { | |
5834 | if (i == 0) | |
5835 | ui_out_text (uiout, " inf "); | |
5836 | else | |
5837 | ui_out_text (uiout, ", "); | |
5838 | ||
5839 | ui_out_text (uiout, plongest (inf)); | |
5840 | } | |
5841 | } | |
5842 | ||
5843 | do_cleanups (back_to); | |
5844 | } | |
5845 | ||
269b11a2 PA |
5846 | /* Print B to gdb_stdout. */ |
5847 | ||
5848 | static void | |
5849 | print_one_breakpoint_location (struct breakpoint *b, | |
5850 | struct bp_location *loc, | |
5851 | int loc_number, | |
5852 | struct bp_location **last_loc, | |
269b11a2 PA |
5853 | int allflag) |
5854 | { | |
5855 | struct command_line *l; | |
c2c6d25f | 5856 | static char bpenables[] = "nynny"; |
c906108c | 5857 | |
79a45e25 | 5858 | struct ui_out *uiout = current_uiout; |
0d381245 VP |
5859 | int header_of_multiple = 0; |
5860 | int part_of_multiple = (loc != NULL); | |
79a45b7d TT |
5861 | struct value_print_options opts; |
5862 | ||
5863 | get_user_print_options (&opts); | |
0d381245 VP |
5864 | |
5865 | gdb_assert (!loc || loc_number != 0); | |
4a64f543 MS |
5866 | /* See comment in print_one_breakpoint concerning treatment of |
5867 | breakpoints with single disabled location. */ | |
0d381245 VP |
5868 | if (loc == NULL |
5869 | && (b->loc != NULL | |
5870 | && (b->loc->next != NULL || !b->loc->enabled))) | |
5871 | header_of_multiple = 1; | |
5872 | if (loc == NULL) | |
5873 | loc = b->loc; | |
5874 | ||
c4093a6a JM |
5875 | annotate_record (); |
5876 | ||
5877 | /* 1 */ | |
5878 | annotate_field (0); | |
0d381245 VP |
5879 | if (part_of_multiple) |
5880 | { | |
5881 | char *formatted; | |
0c6773c1 | 5882 | formatted = xstrprintf ("%d.%d", b->number, loc_number); |
0d381245 VP |
5883 | ui_out_field_string (uiout, "number", formatted); |
5884 | xfree (formatted); | |
5885 | } | |
5886 | else | |
5887 | { | |
5888 | ui_out_field_int (uiout, "number", b->number); | |
5889 | } | |
c4093a6a JM |
5890 | |
5891 | /* 2 */ | |
5892 | annotate_field (1); | |
0d381245 VP |
5893 | if (part_of_multiple) |
5894 | ui_out_field_skip (uiout, "type"); | |
269b11a2 PA |
5895 | else |
5896 | ui_out_field_string (uiout, "type", bptype_string (b->type)); | |
c4093a6a JM |
5897 | |
5898 | /* 3 */ | |
5899 | annotate_field (2); | |
0d381245 VP |
5900 | if (part_of_multiple) |
5901 | ui_out_field_skip (uiout, "disp"); | |
5902 | else | |
2cec12e5 | 5903 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); |
0d381245 | 5904 | |
c4093a6a JM |
5905 | |
5906 | /* 4 */ | |
5907 | annotate_field (3); | |
0d381245 | 5908 | if (part_of_multiple) |
54e52265 | 5909 | ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n"); |
0d381245 | 5910 | else |
4a64f543 MS |
5911 | ui_out_field_fmt (uiout, "enabled", "%c", |
5912 | bpenables[(int) b->enable_state]); | |
54e52265 | 5913 | ui_out_spaces (uiout, 2); |
0d381245 | 5914 | |
c4093a6a JM |
5915 | |
5916 | /* 5 and 6 */ | |
3086aeae | 5917 | if (b->ops != NULL && b->ops->print_one != NULL) |
0d381245 | 5918 | { |
4a64f543 MS |
5919 | /* Although the print_one can possibly print all locations, |
5920 | calling it here is not likely to get any nice result. So, | |
5921 | make sure there's just one location. */ | |
0d381245 | 5922 | gdb_assert (b->loc == NULL || b->loc->next == NULL); |
a6d9a66e | 5923 | b->ops->print_one (b, last_loc); |
0d381245 | 5924 | } |
3086aeae DJ |
5925 | else |
5926 | switch (b->type) | |
5927 | { | |
5928 | case bp_none: | |
5929 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 | 5930 | _("print_one_breakpoint: bp_none encountered\n")); |
3086aeae | 5931 | break; |
c906108c | 5932 | |
3086aeae DJ |
5933 | case bp_watchpoint: |
5934 | case bp_hardware_watchpoint: | |
5935 | case bp_read_watchpoint: | |
5936 | case bp_access_watchpoint: | |
3a5c3e22 PA |
5937 | { |
5938 | struct watchpoint *w = (struct watchpoint *) b; | |
5939 | ||
5940 | /* Field 4, the address, is omitted (which makes the columns | |
5941 | not line up too nicely with the headers, but the effect | |
5942 | is relatively readable). */ | |
5943 | if (opts.addressprint) | |
5944 | ui_out_field_skip (uiout, "addr"); | |
5945 | annotate_field (5); | |
5946 | ui_out_field_string (uiout, "what", w->exp_string); | |
5947 | } | |
3086aeae DJ |
5948 | break; |
5949 | ||
3086aeae DJ |
5950 | case bp_breakpoint: |
5951 | case bp_hardware_breakpoint: | |
5952 | case bp_until: | |
5953 | case bp_finish: | |
5954 | case bp_longjmp: | |
5955 | case bp_longjmp_resume: | |
e2e4d78b | 5956 | case bp_longjmp_call_dummy: |
186c406b TT |
5957 | case bp_exception: |
5958 | case bp_exception_resume: | |
3086aeae | 5959 | case bp_step_resume: |
2c03e5be | 5960 | case bp_hp_step_resume: |
3086aeae DJ |
5961 | case bp_watchpoint_scope: |
5962 | case bp_call_dummy: | |
aa7d318d | 5963 | case bp_std_terminate: |
3086aeae DJ |
5964 | case bp_shlib_event: |
5965 | case bp_thread_event: | |
5966 | case bp_overlay_event: | |
0fd8e87f | 5967 | case bp_longjmp_master: |
aa7d318d | 5968 | case bp_std_terminate_master: |
186c406b | 5969 | case bp_exception_master: |
1042e4c0 | 5970 | case bp_tracepoint: |
7a697b8d | 5971 | case bp_fast_tracepoint: |
0fb4aa4b | 5972 | case bp_static_tracepoint: |
e7e0cddf | 5973 | case bp_dprintf: |
4efc6507 | 5974 | case bp_jit_event: |
0e30163f JK |
5975 | case bp_gnu_ifunc_resolver: |
5976 | case bp_gnu_ifunc_resolver_return: | |
79a45b7d | 5977 | if (opts.addressprint) |
3086aeae DJ |
5978 | { |
5979 | annotate_field (4); | |
54e52265 | 5980 | if (header_of_multiple) |
0d381245 | 5981 | ui_out_field_string (uiout, "addr", "<MULTIPLE>"); |
e9bbd7c5 | 5982 | else if (b->loc == NULL || loc->shlib_disabled) |
54e52265 | 5983 | ui_out_field_string (uiout, "addr", "<PENDING>"); |
0101ce28 | 5984 | else |
5af949e3 UW |
5985 | ui_out_field_core_addr (uiout, "addr", |
5986 | loc->gdbarch, loc->address); | |
3086aeae DJ |
5987 | } |
5988 | annotate_field (5); | |
0d381245 | 5989 | if (!header_of_multiple) |
170b53b2 | 5990 | print_breakpoint_location (b, loc); |
0d381245 | 5991 | if (b->loc) |
a6d9a66e | 5992 | *last_loc = b->loc; |
3086aeae DJ |
5993 | break; |
5994 | } | |
c906108c | 5995 | |
6c95b8df | 5996 | |
998580f1 | 5997 | if (loc != NULL && !header_of_multiple) |
6c95b8df PA |
5998 | { |
5999 | struct inferior *inf; | |
998580f1 MK |
6000 | VEC(int) *inf_num = NULL; |
6001 | int mi_only = 1; | |
6c95b8df | 6002 | |
998580f1 | 6003 | ALL_INFERIORS (inf) |
6c95b8df PA |
6004 | { |
6005 | if (inf->pspace == loc->pspace) | |
998580f1 | 6006 | VEC_safe_push (int, inf_num, inf->num); |
6c95b8df | 6007 | } |
998580f1 MK |
6008 | |
6009 | /* For backward compatibility, don't display inferiors in CLI unless | |
6010 | there are several. Always display for MI. */ | |
6011 | if (allflag | |
6012 | || (!gdbarch_has_global_breakpoints (target_gdbarch ()) | |
6013 | && (number_of_program_spaces () > 1 | |
6014 | || number_of_inferiors () > 1) | |
6015 | /* LOC is for existing B, it cannot be in | |
6016 | moribund_locations and thus having NULL OWNER. */ | |
6017 | && loc->owner->type != bp_catchpoint)) | |
6018 | mi_only = 0; | |
6019 | output_thread_groups (uiout, "thread-groups", inf_num, mi_only); | |
6020 | VEC_free (int, inf_num); | |
6c95b8df PA |
6021 | } |
6022 | ||
4a306c9a | 6023 | if (!part_of_multiple) |
c4093a6a | 6024 | { |
4a306c9a JB |
6025 | if (b->thread != -1) |
6026 | { | |
6027 | /* FIXME: This seems to be redundant and lost here; see the | |
4a64f543 | 6028 | "stop only in" line a little further down. */ |
4a306c9a JB |
6029 | ui_out_text (uiout, " thread "); |
6030 | ui_out_field_int (uiout, "thread", b->thread); | |
6031 | } | |
6032 | else if (b->task != 0) | |
6033 | { | |
6034 | ui_out_text (uiout, " task "); | |
6035 | ui_out_field_int (uiout, "task", b->task); | |
6036 | } | |
c4093a6a | 6037 | } |
f1310107 | 6038 | |
8b93c638 | 6039 | ui_out_text (uiout, "\n"); |
f1310107 | 6040 | |
348d480f | 6041 | if (!part_of_multiple) |
f1310107 TJB |
6042 | b->ops->print_one_detail (b, uiout); |
6043 | ||
0d381245 | 6044 | if (part_of_multiple && frame_id_p (b->frame_id)) |
c4093a6a JM |
6045 | { |
6046 | annotate_field (6); | |
8b93c638 | 6047 | ui_out_text (uiout, "\tstop only in stack frame at "); |
e5dd4106 | 6048 | /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside |
818dd999 | 6049 | the frame ID. */ |
5af949e3 UW |
6050 | ui_out_field_core_addr (uiout, "frame", |
6051 | b->gdbarch, b->frame_id.stack_addr); | |
8b93c638 | 6052 | ui_out_text (uiout, "\n"); |
c4093a6a JM |
6053 | } |
6054 | ||
28010a5d | 6055 | if (!part_of_multiple && b->cond_string) |
c4093a6a JM |
6056 | { |
6057 | annotate_field (7); | |
d77f58be | 6058 | if (is_tracepoint (b)) |
1042e4c0 SS |
6059 | ui_out_text (uiout, "\ttrace only if "); |
6060 | else | |
6061 | ui_out_text (uiout, "\tstop only if "); | |
0101ce28 | 6062 | ui_out_field_string (uiout, "cond", b->cond_string); |
b775012e LM |
6063 | |
6064 | /* Print whether the target is doing the breakpoint's condition | |
6065 | evaluation. If GDB is doing the evaluation, don't print anything. */ | |
6066 | if (is_breakpoint (b) | |
6067 | && breakpoint_condition_evaluation_mode () | |
6068 | == condition_evaluation_target) | |
6069 | { | |
6070 | ui_out_text (uiout, " ("); | |
6071 | ui_out_field_string (uiout, "evaluated-by", | |
6072 | bp_condition_evaluator (b)); | |
6073 | ui_out_text (uiout, " evals)"); | |
6074 | } | |
0101ce28 JJ |
6075 | ui_out_text (uiout, "\n"); |
6076 | } | |
6077 | ||
0d381245 | 6078 | if (!part_of_multiple && b->thread != -1) |
c4093a6a | 6079 | { |
4a64f543 | 6080 | /* FIXME should make an annotation for this. */ |
8b93c638 JM |
6081 | ui_out_text (uiout, "\tstop only in thread "); |
6082 | ui_out_field_int (uiout, "thread", b->thread); | |
6083 | ui_out_text (uiout, "\n"); | |
c4093a6a JM |
6084 | } |
6085 | ||
556ec64d YQ |
6086 | if (!part_of_multiple) |
6087 | { | |
6088 | if (b->hit_count) | |
31f56a27 YQ |
6089 | { |
6090 | /* FIXME should make an annotation for this. */ | |
6091 | if (is_catchpoint (b)) | |
6092 | ui_out_text (uiout, "\tcatchpoint"); | |
6093 | else if (is_tracepoint (b)) | |
6094 | ui_out_text (uiout, "\ttracepoint"); | |
6095 | else | |
6096 | ui_out_text (uiout, "\tbreakpoint"); | |
6097 | ui_out_text (uiout, " already hit "); | |
6098 | ui_out_field_int (uiout, "times", b->hit_count); | |
6099 | if (b->hit_count == 1) | |
6100 | ui_out_text (uiout, " time\n"); | |
6101 | else | |
6102 | ui_out_text (uiout, " times\n"); | |
6103 | } | |
556ec64d YQ |
6104 | else |
6105 | { | |
31f56a27 YQ |
6106 | /* Output the count also if it is zero, but only if this is mi. */ |
6107 | if (ui_out_is_mi_like_p (uiout)) | |
6108 | ui_out_field_int (uiout, "times", b->hit_count); | |
556ec64d YQ |
6109 | } |
6110 | } | |
8b93c638 | 6111 | |
0d381245 | 6112 | if (!part_of_multiple && b->ignore_count) |
c4093a6a JM |
6113 | { |
6114 | annotate_field (8); | |
8b93c638 JM |
6115 | ui_out_text (uiout, "\tignore next "); |
6116 | ui_out_field_int (uiout, "ignore", b->ignore_count); | |
6117 | ui_out_text (uiout, " hits\n"); | |
c4093a6a | 6118 | } |
059fb39f | 6119 | |
816338b5 SS |
6120 | /* Note that an enable count of 1 corresponds to "enable once" |
6121 | behavior, which is reported by the combination of enablement and | |
6122 | disposition, so we don't need to mention it here. */ | |
6123 | if (!part_of_multiple && b->enable_count > 1) | |
6124 | { | |
6125 | annotate_field (8); | |
6126 | ui_out_text (uiout, "\tdisable after "); | |
6127 | /* Tweak the wording to clarify that ignore and enable counts | |
6128 | are distinct, and have additive effect. */ | |
6129 | if (b->ignore_count) | |
6130 | ui_out_text (uiout, "additional "); | |
6131 | else | |
6132 | ui_out_text (uiout, "next "); | |
6133 | ui_out_field_int (uiout, "enable", b->enable_count); | |
6134 | ui_out_text (uiout, " hits\n"); | |
6135 | } | |
6136 | ||
f196051f SS |
6137 | if (!part_of_multiple && is_tracepoint (b)) |
6138 | { | |
6139 | struct tracepoint *tp = (struct tracepoint *) b; | |
6140 | ||
6141 | if (tp->traceframe_usage) | |
6142 | { | |
6143 | ui_out_text (uiout, "\ttrace buffer usage "); | |
6144 | ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage); | |
6145 | ui_out_text (uiout, " bytes\n"); | |
6146 | } | |
6147 | } | |
d3ce09f5 | 6148 | |
9add0f1b | 6149 | l = b->commands ? b->commands->commands : NULL; |
059fb39f | 6150 | if (!part_of_multiple && l) |
c4093a6a | 6151 | { |
3b31d625 EZ |
6152 | struct cleanup *script_chain; |
6153 | ||
c4093a6a | 6154 | annotate_field (9); |
3b31d625 | 6155 | script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script"); |
8b93c638 | 6156 | print_command_lines (uiout, l, 4); |
3b31d625 | 6157 | do_cleanups (script_chain); |
c4093a6a | 6158 | } |
d24317b4 | 6159 | |
d9b3f62e | 6160 | if (is_tracepoint (b)) |
1042e4c0 | 6161 | { |
d9b3f62e PA |
6162 | struct tracepoint *t = (struct tracepoint *) b; |
6163 | ||
6164 | if (!part_of_multiple && t->pass_count) | |
6165 | { | |
6166 | annotate_field (10); | |
6167 | ui_out_text (uiout, "\tpass count "); | |
6168 | ui_out_field_int (uiout, "pass", t->pass_count); | |
6169 | ui_out_text (uiout, " \n"); | |
6170 | } | |
f2a8bc8a YQ |
6171 | |
6172 | /* Don't display it when tracepoint or tracepoint location is | |
6173 | pending. */ | |
6174 | if (!header_of_multiple && loc != NULL && !loc->shlib_disabled) | |
6175 | { | |
6176 | annotate_field (11); | |
6177 | ||
6178 | if (ui_out_is_mi_like_p (uiout)) | |
6179 | ui_out_field_string (uiout, "installed", | |
6180 | loc->inserted ? "y" : "n"); | |
6181 | else | |
6182 | { | |
6183 | if (loc->inserted) | |
6184 | ui_out_text (uiout, "\t"); | |
6185 | else | |
6186 | ui_out_text (uiout, "\tnot "); | |
6187 | ui_out_text (uiout, "installed on target\n"); | |
6188 | } | |
6189 | } | |
1042e4c0 SS |
6190 | } |
6191 | ||
d24317b4 VP |
6192 | if (ui_out_is_mi_like_p (uiout) && !part_of_multiple) |
6193 | { | |
3a5c3e22 PA |
6194 | if (is_watchpoint (b)) |
6195 | { | |
6196 | struct watchpoint *w = (struct watchpoint *) b; | |
6197 | ||
6198 | ui_out_field_string (uiout, "original-location", w->exp_string); | |
6199 | } | |
6200 | else if (b->addr_string) | |
d24317b4 | 6201 | ui_out_field_string (uiout, "original-location", b->addr_string); |
d24317b4 | 6202 | } |
c4093a6a | 6203 | } |
c5aa993b | 6204 | |
0d381245 VP |
6205 | static void |
6206 | print_one_breakpoint (struct breakpoint *b, | |
4a64f543 | 6207 | struct bp_location **last_loc, |
6c95b8df | 6208 | int allflag) |
0d381245 | 6209 | { |
8d3788bd | 6210 | struct cleanup *bkpt_chain; |
79a45e25 | 6211 | struct ui_out *uiout = current_uiout; |
8d3788bd VP |
6212 | |
6213 | bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt"); | |
6214 | ||
12c5a436 | 6215 | print_one_breakpoint_location (b, NULL, 0, last_loc, allflag); |
8d3788bd | 6216 | do_cleanups (bkpt_chain); |
0d381245 VP |
6217 | |
6218 | /* If this breakpoint has custom print function, | |
6219 | it's already printed. Otherwise, print individual | |
6220 | locations, if any. */ | |
6221 | if (b->ops == NULL || b->ops->print_one == NULL) | |
6222 | { | |
4a64f543 MS |
6223 | /* If breakpoint has a single location that is disabled, we |
6224 | print it as if it had several locations, since otherwise it's | |
6225 | hard to represent "breakpoint enabled, location disabled" | |
6226 | situation. | |
6227 | ||
6228 | Note that while hardware watchpoints have several locations | |
a3be7890 | 6229 | internally, that's not a property exposed to user. */ |
0d381245 | 6230 | if (b->loc |
a5606eee | 6231 | && !is_hardware_watchpoint (b) |
8d3788bd | 6232 | && (b->loc->next || !b->loc->enabled)) |
0d381245 VP |
6233 | { |
6234 | struct bp_location *loc; | |
6235 | int n = 1; | |
8d3788bd | 6236 | |
0d381245 | 6237 | for (loc = b->loc; loc; loc = loc->next, ++n) |
8d3788bd VP |
6238 | { |
6239 | struct cleanup *inner2 = | |
6240 | make_cleanup_ui_out_tuple_begin_end (uiout, NULL); | |
6241 | print_one_breakpoint_location (b, loc, n, last_loc, allflag); | |
6242 | do_cleanups (inner2); | |
6243 | } | |
0d381245 VP |
6244 | } |
6245 | } | |
6246 | } | |
6247 | ||
a6d9a66e UW |
6248 | static int |
6249 | breakpoint_address_bits (struct breakpoint *b) | |
6250 | { | |
6251 | int print_address_bits = 0; | |
6252 | struct bp_location *loc; | |
6253 | ||
6254 | for (loc = b->loc; loc; loc = loc->next) | |
6255 | { | |
c7437ca6 PA |
6256 | int addr_bit; |
6257 | ||
6258 | /* Software watchpoints that aren't watching memory don't have | |
6259 | an address to print. */ | |
6260 | if (b->type == bp_watchpoint && loc->watchpoint_type == -1) | |
6261 | continue; | |
6262 | ||
6263 | addr_bit = gdbarch_addr_bit (loc->gdbarch); | |
a6d9a66e UW |
6264 | if (addr_bit > print_address_bits) |
6265 | print_address_bits = addr_bit; | |
6266 | } | |
6267 | ||
6268 | return print_address_bits; | |
6269 | } | |
0d381245 | 6270 | |
c4093a6a JM |
6271 | struct captured_breakpoint_query_args |
6272 | { | |
6273 | int bnum; | |
6274 | }; | |
c5aa993b | 6275 | |
c4093a6a | 6276 | static int |
2b65245e | 6277 | do_captured_breakpoint_query (struct ui_out *uiout, void *data) |
c4093a6a JM |
6278 | { |
6279 | struct captured_breakpoint_query_args *args = data; | |
52f0bd74 | 6280 | struct breakpoint *b; |
a6d9a66e | 6281 | struct bp_location *dummy_loc = NULL; |
cc59ec59 | 6282 | |
c4093a6a JM |
6283 | ALL_BREAKPOINTS (b) |
6284 | { | |
6285 | if (args->bnum == b->number) | |
c5aa993b | 6286 | { |
12c5a436 | 6287 | print_one_breakpoint (b, &dummy_loc, 0); |
c4093a6a | 6288 | return GDB_RC_OK; |
c5aa993b | 6289 | } |
c4093a6a JM |
6290 | } |
6291 | return GDB_RC_NONE; | |
6292 | } | |
c5aa993b | 6293 | |
c4093a6a | 6294 | enum gdb_rc |
4a64f543 MS |
6295 | gdb_breakpoint_query (struct ui_out *uiout, int bnum, |
6296 | char **error_message) | |
c4093a6a JM |
6297 | { |
6298 | struct captured_breakpoint_query_args args; | |
cc59ec59 | 6299 | |
c4093a6a JM |
6300 | args.bnum = bnum; |
6301 | /* For the moment we don't trust print_one_breakpoint() to not throw | |
4a64f543 | 6302 | an error. */ |
b0b13bb4 DJ |
6303 | if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, |
6304 | error_message, RETURN_MASK_ALL) < 0) | |
6305 | return GDB_RC_FAIL; | |
6306 | else | |
6307 | return GDB_RC_OK; | |
c4093a6a | 6308 | } |
c5aa993b | 6309 | |
09d682a4 TT |
6310 | /* Return true if this breakpoint was set by the user, false if it is |
6311 | internal or momentary. */ | |
6312 | ||
6313 | int | |
6314 | user_breakpoint_p (struct breakpoint *b) | |
6315 | { | |
46c6471b | 6316 | return b->number > 0; |
09d682a4 TT |
6317 | } |
6318 | ||
7f3b0473 | 6319 | /* Print information on user settable breakpoint (watchpoint, etc) |
d77f58be SS |
6320 | number BNUM. If BNUM is -1 print all user-settable breakpoints. |
6321 | If ALLFLAG is non-zero, include non-user-settable breakpoints. If | |
6322 | FILTER is non-NULL, call it on each breakpoint and only include the | |
6323 | ones for which it returns non-zero. Return the total number of | |
6324 | breakpoints listed. */ | |
c906108c | 6325 | |
d77f58be | 6326 | static int |
e5a67952 | 6327 | breakpoint_1 (char *args, int allflag, |
4a64f543 | 6328 | int (*filter) (const struct breakpoint *)) |
c4093a6a | 6329 | { |
52f0bd74 | 6330 | struct breakpoint *b; |
a6d9a66e | 6331 | struct bp_location *last_loc = NULL; |
7f3b0473 | 6332 | int nr_printable_breakpoints; |
3b31d625 | 6333 | struct cleanup *bkpttbl_chain; |
79a45b7d | 6334 | struct value_print_options opts; |
a6d9a66e | 6335 | int print_address_bits = 0; |
269b11a2 | 6336 | int print_type_col_width = 14; |
79a45e25 | 6337 | struct ui_out *uiout = current_uiout; |
269b11a2 | 6338 | |
79a45b7d TT |
6339 | get_user_print_options (&opts); |
6340 | ||
4a64f543 MS |
6341 | /* Compute the number of rows in the table, as well as the size |
6342 | required for address fields. */ | |
7f3b0473 AC |
6343 | nr_printable_breakpoints = 0; |
6344 | ALL_BREAKPOINTS (b) | |
e5a67952 MS |
6345 | { |
6346 | /* If we have a filter, only list the breakpoints it accepts. */ | |
6347 | if (filter && !filter (b)) | |
6348 | continue; | |
6349 | ||
6350 | /* If we have an "args" string, it is a list of breakpoints to | |
6351 | accept. Skip the others. */ | |
6352 | if (args != NULL && *args != '\0') | |
6353 | { | |
6354 | if (allflag && parse_and_eval_long (args) != b->number) | |
6355 | continue; | |
6356 | if (!allflag && !number_is_in_list (args, b->number)) | |
6357 | continue; | |
6358 | } | |
269b11a2 | 6359 | |
e5a67952 MS |
6360 | if (allflag || user_breakpoint_p (b)) |
6361 | { | |
6362 | int addr_bit, type_len; | |
a6d9a66e | 6363 | |
e5a67952 MS |
6364 | addr_bit = breakpoint_address_bits (b); |
6365 | if (addr_bit > print_address_bits) | |
6366 | print_address_bits = addr_bit; | |
269b11a2 | 6367 | |
e5a67952 MS |
6368 | type_len = strlen (bptype_string (b->type)); |
6369 | if (type_len > print_type_col_width) | |
6370 | print_type_col_width = type_len; | |
6371 | ||
6372 | nr_printable_breakpoints++; | |
6373 | } | |
6374 | } | |
7f3b0473 | 6375 | |
79a45b7d | 6376 | if (opts.addressprint) |
3b31d625 | 6377 | bkpttbl_chain |
3e43a32a MS |
6378 | = make_cleanup_ui_out_table_begin_end (uiout, 6, |
6379 | nr_printable_breakpoints, | |
3b31d625 | 6380 | "BreakpointTable"); |
8b93c638 | 6381 | else |
3b31d625 | 6382 | bkpttbl_chain |
3e43a32a MS |
6383 | = make_cleanup_ui_out_table_begin_end (uiout, 5, |
6384 | nr_printable_breakpoints, | |
3b31d625 | 6385 | "BreakpointTable"); |
8b93c638 | 6386 | |
7f3b0473 | 6387 | if (nr_printable_breakpoints > 0) |
d7faa9e7 AC |
6388 | annotate_breakpoints_headers (); |
6389 | if (nr_printable_breakpoints > 0) | |
6390 | annotate_field (0); | |
4a64f543 | 6391 | ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */ |
d7faa9e7 AC |
6392 | if (nr_printable_breakpoints > 0) |
6393 | annotate_field (1); | |
269b11a2 | 6394 | ui_out_table_header (uiout, print_type_col_width, ui_left, |
4a64f543 | 6395 | "type", "Type"); /* 2 */ |
d7faa9e7 AC |
6396 | if (nr_printable_breakpoints > 0) |
6397 | annotate_field (2); | |
4a64f543 | 6398 | ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */ |
d7faa9e7 AC |
6399 | if (nr_printable_breakpoints > 0) |
6400 | annotate_field (3); | |
54e52265 | 6401 | ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */ |
79a45b7d | 6402 | if (opts.addressprint) |
e5a67952 MS |
6403 | { |
6404 | if (nr_printable_breakpoints > 0) | |
6405 | annotate_field (4); | |
6406 | if (print_address_bits <= 32) | |
6407 | ui_out_table_header (uiout, 10, ui_left, | |
6408 | "addr", "Address"); /* 5 */ | |
6409 | else | |
6410 | ui_out_table_header (uiout, 18, ui_left, | |
6411 | "addr", "Address"); /* 5 */ | |
6412 | } | |
d7faa9e7 AC |
6413 | if (nr_printable_breakpoints > 0) |
6414 | annotate_field (5); | |
6415 | ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */ | |
6416 | ui_out_table_body (uiout); | |
6417 | if (nr_printable_breakpoints > 0) | |
6418 | annotate_breakpoints_table (); | |
7f3b0473 | 6419 | |
c4093a6a | 6420 | ALL_BREAKPOINTS (b) |
e5a67952 MS |
6421 | { |
6422 | QUIT; | |
6423 | /* If we have a filter, only list the breakpoints it accepts. */ | |
6424 | if (filter && !filter (b)) | |
6425 | continue; | |
6426 | ||
6427 | /* If we have an "args" string, it is a list of breakpoints to | |
6428 | accept. Skip the others. */ | |
6429 | ||
6430 | if (args != NULL && *args != '\0') | |
6431 | { | |
6432 | if (allflag) /* maintenance info breakpoint */ | |
6433 | { | |
6434 | if (parse_and_eval_long (args) != b->number) | |
6435 | continue; | |
6436 | } | |
6437 | else /* all others */ | |
6438 | { | |
6439 | if (!number_is_in_list (args, b->number)) | |
6440 | continue; | |
6441 | } | |
6442 | } | |
6443 | /* We only print out user settable breakpoints unless the | |
6444 | allflag is set. */ | |
6445 | if (allflag || user_breakpoint_p (b)) | |
12c5a436 | 6446 | print_one_breakpoint (b, &last_loc, allflag); |
e5a67952 MS |
6447 | } |
6448 | ||
3b31d625 | 6449 | do_cleanups (bkpttbl_chain); |
698384cd | 6450 | |
7f3b0473 | 6451 | if (nr_printable_breakpoints == 0) |
c906108c | 6452 | { |
4a64f543 MS |
6453 | /* If there's a filter, let the caller decide how to report |
6454 | empty list. */ | |
d77f58be SS |
6455 | if (!filter) |
6456 | { | |
e5a67952 | 6457 | if (args == NULL || *args == '\0') |
d77f58be SS |
6458 | ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n"); |
6459 | else | |
4a64f543 | 6460 | ui_out_message (uiout, 0, |
e5a67952 MS |
6461 | "No breakpoint or watchpoint matching '%s'.\n", |
6462 | args); | |
d77f58be | 6463 | } |
c906108c SS |
6464 | } |
6465 | else | |
c4093a6a | 6466 | { |
a6d9a66e UW |
6467 | if (last_loc && !server_command) |
6468 | set_next_address (last_loc->gdbarch, last_loc->address); | |
c4093a6a | 6469 | } |
c906108c | 6470 | |
4a64f543 | 6471 | /* FIXME? Should this be moved up so that it is only called when |
c4093a6a | 6472 | there have been breakpoints? */ |
c906108c | 6473 | annotate_breakpoints_table_end (); |
d77f58be SS |
6474 | |
6475 | return nr_printable_breakpoints; | |
c906108c SS |
6476 | } |
6477 | ||
ad443146 SS |
6478 | /* Display the value of default-collect in a way that is generally |
6479 | compatible with the breakpoint list. */ | |
6480 | ||
6481 | static void | |
6482 | default_collect_info (void) | |
6483 | { | |
79a45e25 PA |
6484 | struct ui_out *uiout = current_uiout; |
6485 | ||
ad443146 SS |
6486 | /* If it has no value (which is frequently the case), say nothing; a |
6487 | message like "No default-collect." gets in user's face when it's | |
6488 | not wanted. */ | |
6489 | if (!*default_collect) | |
6490 | return; | |
6491 | ||
6492 | /* The following phrase lines up nicely with per-tracepoint collect | |
6493 | actions. */ | |
6494 | ui_out_text (uiout, "default collect "); | |
6495 | ui_out_field_string (uiout, "default-collect", default_collect); | |
6496 | ui_out_text (uiout, " \n"); | |
6497 | } | |
6498 | ||
c906108c | 6499 | static void |
e5a67952 | 6500 | breakpoints_info (char *args, int from_tty) |
c906108c | 6501 | { |
e5a67952 | 6502 | breakpoint_1 (args, 0, NULL); |
ad443146 SS |
6503 | |
6504 | default_collect_info (); | |
d77f58be SS |
6505 | } |
6506 | ||
6507 | static void | |
e5a67952 | 6508 | watchpoints_info (char *args, int from_tty) |
d77f58be | 6509 | { |
e5a67952 | 6510 | int num_printed = breakpoint_1 (args, 0, is_watchpoint); |
79a45e25 | 6511 | struct ui_out *uiout = current_uiout; |
d77f58be SS |
6512 | |
6513 | if (num_printed == 0) | |
6514 | { | |
e5a67952 | 6515 | if (args == NULL || *args == '\0') |
d77f58be SS |
6516 | ui_out_message (uiout, 0, "No watchpoints.\n"); |
6517 | else | |
e5a67952 | 6518 | ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args); |
d77f58be | 6519 | } |
c906108c SS |
6520 | } |
6521 | ||
7a292a7a | 6522 | static void |
e5a67952 | 6523 | maintenance_info_breakpoints (char *args, int from_tty) |
c906108c | 6524 | { |
e5a67952 | 6525 | breakpoint_1 (args, 1, NULL); |
ad443146 SS |
6526 | |
6527 | default_collect_info (); | |
c906108c SS |
6528 | } |
6529 | ||
0d381245 | 6530 | static int |
714835d5 | 6531 | breakpoint_has_pc (struct breakpoint *b, |
6c95b8df | 6532 | struct program_space *pspace, |
714835d5 | 6533 | CORE_ADDR pc, struct obj_section *section) |
0d381245 VP |
6534 | { |
6535 | struct bp_location *bl = b->loc; | |
cc59ec59 | 6536 | |
0d381245 VP |
6537 | for (; bl; bl = bl->next) |
6538 | { | |
6c95b8df PA |
6539 | if (bl->pspace == pspace |
6540 | && bl->address == pc | |
0d381245 VP |
6541 | && (!overlay_debugging || bl->section == section)) |
6542 | return 1; | |
6543 | } | |
6544 | return 0; | |
6545 | } | |
6546 | ||
672f9b60 | 6547 | /* Print a message describing any user-breakpoints set at PC. This |
6c95b8df PA |
6548 | concerns with logical breakpoints, so we match program spaces, not |
6549 | address spaces. */ | |
c906108c SS |
6550 | |
6551 | static void | |
6c95b8df PA |
6552 | describe_other_breakpoints (struct gdbarch *gdbarch, |
6553 | struct program_space *pspace, CORE_ADDR pc, | |
5af949e3 | 6554 | struct obj_section *section, int thread) |
c906108c | 6555 | { |
52f0bd74 AC |
6556 | int others = 0; |
6557 | struct breakpoint *b; | |
c906108c SS |
6558 | |
6559 | ALL_BREAKPOINTS (b) | |
672f9b60 KP |
6560 | others += (user_breakpoint_p (b) |
6561 | && breakpoint_has_pc (b, pspace, pc, section)); | |
c906108c SS |
6562 | if (others > 0) |
6563 | { | |
a3f17187 AC |
6564 | if (others == 1) |
6565 | printf_filtered (_("Note: breakpoint ")); | |
6566 | else /* if (others == ???) */ | |
6567 | printf_filtered (_("Note: breakpoints ")); | |
c906108c | 6568 | ALL_BREAKPOINTS (b) |
672f9b60 | 6569 | if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section)) |
0d381245 VP |
6570 | { |
6571 | others--; | |
6572 | printf_filtered ("%d", b->number); | |
6573 | if (b->thread == -1 && thread != -1) | |
6574 | printf_filtered (" (all threads)"); | |
6575 | else if (b->thread != -1) | |
6576 | printf_filtered (" (thread %d)", b->thread); | |
6577 | printf_filtered ("%s%s ", | |
059fb39f | 6578 | ((b->enable_state == bp_disabled |
f8eba3c6 | 6579 | || b->enable_state == bp_call_disabled) |
0d381245 VP |
6580 | ? " (disabled)" |
6581 | : b->enable_state == bp_permanent | |
6582 | ? " (permanent)" | |
6583 | : ""), | |
6584 | (others > 1) ? "," | |
6585 | : ((others == 1) ? " and" : "")); | |
6586 | } | |
a3f17187 | 6587 | printf_filtered (_("also set at pc ")); |
5af949e3 | 6588 | fputs_filtered (paddress (gdbarch, pc), gdb_stdout); |
c906108c SS |
6589 | printf_filtered (".\n"); |
6590 | } | |
6591 | } | |
6592 | \f | |
c906108c | 6593 | |
e4f237da KB |
6594 | /* Return true iff it is meaningful to use the address member of |
6595 | BPT. For some breakpoint types, the address member is irrelevant | |
6596 | and it makes no sense to attempt to compare it to other addresses | |
6597 | (or use it for any other purpose either). | |
6598 | ||
4a64f543 MS |
6599 | More specifically, each of the following breakpoint types will |
6600 | always have a zero valued address and we don't want to mark | |
6601 | breakpoints of any of these types to be a duplicate of an actual | |
6602 | breakpoint at address zero: | |
e4f237da KB |
6603 | |
6604 | bp_watchpoint | |
2d134ed3 PA |
6605 | bp_catchpoint |
6606 | ||
6607 | */ | |
e4f237da KB |
6608 | |
6609 | static int | |
6610 | breakpoint_address_is_meaningful (struct breakpoint *bpt) | |
6611 | { | |
6612 | enum bptype type = bpt->type; | |
6613 | ||
2d134ed3 PA |
6614 | return (type != bp_watchpoint && type != bp_catchpoint); |
6615 | } | |
6616 | ||
6617 | /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns | |
6618 | true if LOC1 and LOC2 represent the same watchpoint location. */ | |
6619 | ||
6620 | static int | |
4a64f543 MS |
6621 | watchpoint_locations_match (struct bp_location *loc1, |
6622 | struct bp_location *loc2) | |
2d134ed3 | 6623 | { |
3a5c3e22 PA |
6624 | struct watchpoint *w1 = (struct watchpoint *) loc1->owner; |
6625 | struct watchpoint *w2 = (struct watchpoint *) loc2->owner; | |
6626 | ||
6627 | /* Both of them must exist. */ | |
6628 | gdb_assert (w1 != NULL); | |
6629 | gdb_assert (w2 != NULL); | |
2bdf28a0 | 6630 | |
4a64f543 MS |
6631 | /* If the target can evaluate the condition expression in hardware, |
6632 | then we we need to insert both watchpoints even if they are at | |
6633 | the same place. Otherwise the watchpoint will only trigger when | |
6634 | the condition of whichever watchpoint was inserted evaluates to | |
6635 | true, not giving a chance for GDB to check the condition of the | |
6636 | other watchpoint. */ | |
3a5c3e22 | 6637 | if ((w1->cond_exp |
4a64f543 MS |
6638 | && target_can_accel_watchpoint_condition (loc1->address, |
6639 | loc1->length, | |
0cf6dd15 | 6640 | loc1->watchpoint_type, |
3a5c3e22 PA |
6641 | w1->cond_exp)) |
6642 | || (w2->cond_exp | |
4a64f543 MS |
6643 | && target_can_accel_watchpoint_condition (loc2->address, |
6644 | loc2->length, | |
0cf6dd15 | 6645 | loc2->watchpoint_type, |
3a5c3e22 | 6646 | w2->cond_exp))) |
0cf6dd15 TJB |
6647 | return 0; |
6648 | ||
85d721b8 PA |
6649 | /* Note that this checks the owner's type, not the location's. In |
6650 | case the target does not support read watchpoints, but does | |
6651 | support access watchpoints, we'll have bp_read_watchpoint | |
6652 | watchpoints with hw_access locations. Those should be considered | |
6653 | duplicates of hw_read locations. The hw_read locations will | |
6654 | become hw_access locations later. */ | |
2d134ed3 PA |
6655 | return (loc1->owner->type == loc2->owner->type |
6656 | && loc1->pspace->aspace == loc2->pspace->aspace | |
6657 | && loc1->address == loc2->address | |
6658 | && loc1->length == loc2->length); | |
e4f237da KB |
6659 | } |
6660 | ||
6c95b8df PA |
6661 | /* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the |
6662 | same breakpoint location. In most targets, this can only be true | |
6663 | if ASPACE1 matches ASPACE2. On targets that have global | |
6664 | breakpoints, the address space doesn't really matter. */ | |
6665 | ||
6666 | static int | |
6667 | breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1, | |
6668 | struct address_space *aspace2, CORE_ADDR addr2) | |
6669 | { | |
f5656ead | 6670 | return ((gdbarch_has_global_breakpoints (target_gdbarch ()) |
6c95b8df PA |
6671 | || aspace1 == aspace2) |
6672 | && addr1 == addr2); | |
6673 | } | |
6674 | ||
f1310107 TJB |
6675 | /* Returns true if {ASPACE2,ADDR2} falls within the range determined by |
6676 | {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1 | |
6677 | matches ASPACE2. On targets that have global breakpoints, the address | |
6678 | space doesn't really matter. */ | |
6679 | ||
6680 | static int | |
6681 | breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1, | |
6682 | int len1, struct address_space *aspace2, | |
6683 | CORE_ADDR addr2) | |
6684 | { | |
f5656ead | 6685 | return ((gdbarch_has_global_breakpoints (target_gdbarch ()) |
f1310107 TJB |
6686 | || aspace1 == aspace2) |
6687 | && addr2 >= addr1 && addr2 < addr1 + len1); | |
6688 | } | |
6689 | ||
6690 | /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be | |
6691 | a ranged breakpoint. In most targets, a match happens only if ASPACE | |
6692 | matches the breakpoint's address space. On targets that have global | |
6693 | breakpoints, the address space doesn't really matter. */ | |
6694 | ||
6695 | static int | |
6696 | breakpoint_location_address_match (struct bp_location *bl, | |
6697 | struct address_space *aspace, | |
6698 | CORE_ADDR addr) | |
6699 | { | |
6700 | return (breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6701 | aspace, addr) | |
6702 | || (bl->length | |
6703 | && breakpoint_address_match_range (bl->pspace->aspace, | |
6704 | bl->address, bl->length, | |
6705 | aspace, addr))); | |
6706 | } | |
6707 | ||
1e4d1764 YQ |
6708 | /* If LOC1 and LOC2's owners are not tracepoints, returns false directly. |
6709 | Then, if LOC1 and LOC2 represent the same tracepoint location, returns | |
6710 | true, otherwise returns false. */ | |
6711 | ||
6712 | static int | |
6713 | tracepoint_locations_match (struct bp_location *loc1, | |
6714 | struct bp_location *loc2) | |
6715 | { | |
6716 | if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner)) | |
6717 | /* Since tracepoint locations are never duplicated with others', tracepoint | |
6718 | locations at the same address of different tracepoints are regarded as | |
6719 | different locations. */ | |
6720 | return (loc1->address == loc2->address && loc1->owner == loc2->owner); | |
6721 | else | |
6722 | return 0; | |
6723 | } | |
6724 | ||
2d134ed3 PA |
6725 | /* Assuming LOC1 and LOC2's types' have meaningful target addresses |
6726 | (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2 | |
6727 | represent the same location. */ | |
6728 | ||
6729 | static int | |
4a64f543 MS |
6730 | breakpoint_locations_match (struct bp_location *loc1, |
6731 | struct bp_location *loc2) | |
2d134ed3 | 6732 | { |
2bdf28a0 JK |
6733 | int hw_point1, hw_point2; |
6734 | ||
6735 | /* Both of them must not be in moribund_locations. */ | |
6736 | gdb_assert (loc1->owner != NULL); | |
6737 | gdb_assert (loc2->owner != NULL); | |
6738 | ||
6739 | hw_point1 = is_hardware_watchpoint (loc1->owner); | |
6740 | hw_point2 = is_hardware_watchpoint (loc2->owner); | |
2d134ed3 PA |
6741 | |
6742 | if (hw_point1 != hw_point2) | |
6743 | return 0; | |
6744 | else if (hw_point1) | |
6745 | return watchpoint_locations_match (loc1, loc2); | |
1e4d1764 YQ |
6746 | else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner)) |
6747 | return tracepoint_locations_match (loc1, loc2); | |
2d134ed3 | 6748 | else |
f1310107 TJB |
6749 | /* We compare bp_location.length in order to cover ranged breakpoints. */ |
6750 | return (breakpoint_address_match (loc1->pspace->aspace, loc1->address, | |
6751 | loc2->pspace->aspace, loc2->address) | |
6752 | && loc1->length == loc2->length); | |
2d134ed3 PA |
6753 | } |
6754 | ||
76897487 KB |
6755 | static void |
6756 | breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr, | |
6757 | int bnum, int have_bnum) | |
6758 | { | |
f63fbe86 MS |
6759 | /* The longest string possibly returned by hex_string_custom |
6760 | is 50 chars. These must be at least that big for safety. */ | |
6761 | char astr1[64]; | |
6762 | char astr2[64]; | |
76897487 | 6763 | |
bb599908 PH |
6764 | strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8)); |
6765 | strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8)); | |
76897487 | 6766 | if (have_bnum) |
8a3fe4f8 | 6767 | warning (_("Breakpoint %d address previously adjusted from %s to %s."), |
76897487 KB |
6768 | bnum, astr1, astr2); |
6769 | else | |
8a3fe4f8 | 6770 | warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2); |
76897487 KB |
6771 | } |
6772 | ||
4a64f543 MS |
6773 | /* Adjust a breakpoint's address to account for architectural |
6774 | constraints on breakpoint placement. Return the adjusted address. | |
6775 | Note: Very few targets require this kind of adjustment. For most | |
6776 | targets, this function is simply the identity function. */ | |
76897487 KB |
6777 | |
6778 | static CORE_ADDR | |
a6d9a66e UW |
6779 | adjust_breakpoint_address (struct gdbarch *gdbarch, |
6780 | CORE_ADDR bpaddr, enum bptype bptype) | |
76897487 | 6781 | { |
a6d9a66e | 6782 | if (!gdbarch_adjust_breakpoint_address_p (gdbarch)) |
76897487 KB |
6783 | { |
6784 | /* Very few targets need any kind of breakpoint adjustment. */ | |
6785 | return bpaddr; | |
6786 | } | |
88f7da05 KB |
6787 | else if (bptype == bp_watchpoint |
6788 | || bptype == bp_hardware_watchpoint | |
6789 | || bptype == bp_read_watchpoint | |
6790 | || bptype == bp_access_watchpoint | |
fe798b75 | 6791 | || bptype == bp_catchpoint) |
88f7da05 KB |
6792 | { |
6793 | /* Watchpoints and the various bp_catch_* eventpoints should not | |
6794 | have their addresses modified. */ | |
6795 | return bpaddr; | |
6796 | } | |
76897487 KB |
6797 | else |
6798 | { | |
6799 | CORE_ADDR adjusted_bpaddr; | |
6800 | ||
6801 | /* Some targets have architectural constraints on the placement | |
6802 | of breakpoint instructions. Obtain the adjusted address. */ | |
a6d9a66e | 6803 | adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr); |
76897487 KB |
6804 | |
6805 | /* An adjusted breakpoint address can significantly alter | |
6806 | a user's expectations. Print a warning if an adjustment | |
6807 | is required. */ | |
6808 | if (adjusted_bpaddr != bpaddr) | |
6809 | breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0); | |
6810 | ||
6811 | return adjusted_bpaddr; | |
6812 | } | |
6813 | } | |
6814 | ||
28010a5d PA |
6815 | void |
6816 | init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops, | |
6817 | struct breakpoint *owner) | |
7cc221ef | 6818 | { |
7cc221ef DJ |
6819 | memset (loc, 0, sizeof (*loc)); |
6820 | ||
348d480f PA |
6821 | gdb_assert (ops != NULL); |
6822 | ||
28010a5d PA |
6823 | loc->ops = ops; |
6824 | loc->owner = owner; | |
511a6cd4 | 6825 | loc->cond = NULL; |
b775012e | 6826 | loc->cond_bytecode = NULL; |
0d381245 VP |
6827 | loc->shlib_disabled = 0; |
6828 | loc->enabled = 1; | |
e049a4b5 | 6829 | |
28010a5d | 6830 | switch (owner->type) |
e049a4b5 DJ |
6831 | { |
6832 | case bp_breakpoint: | |
6833 | case bp_until: | |
6834 | case bp_finish: | |
6835 | case bp_longjmp: | |
6836 | case bp_longjmp_resume: | |
e2e4d78b | 6837 | case bp_longjmp_call_dummy: |
186c406b TT |
6838 | case bp_exception: |
6839 | case bp_exception_resume: | |
e049a4b5 | 6840 | case bp_step_resume: |
2c03e5be | 6841 | case bp_hp_step_resume: |
e049a4b5 DJ |
6842 | case bp_watchpoint_scope: |
6843 | case bp_call_dummy: | |
aa7d318d | 6844 | case bp_std_terminate: |
e049a4b5 DJ |
6845 | case bp_shlib_event: |
6846 | case bp_thread_event: | |
6847 | case bp_overlay_event: | |
4efc6507 | 6848 | case bp_jit_event: |
0fd8e87f | 6849 | case bp_longjmp_master: |
aa7d318d | 6850 | case bp_std_terminate_master: |
186c406b | 6851 | case bp_exception_master: |
0e30163f JK |
6852 | case bp_gnu_ifunc_resolver: |
6853 | case bp_gnu_ifunc_resolver_return: | |
e7e0cddf | 6854 | case bp_dprintf: |
e049a4b5 | 6855 | loc->loc_type = bp_loc_software_breakpoint; |
b775012e | 6856 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6857 | break; |
6858 | case bp_hardware_breakpoint: | |
6859 | loc->loc_type = bp_loc_hardware_breakpoint; | |
b775012e | 6860 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6861 | break; |
6862 | case bp_hardware_watchpoint: | |
6863 | case bp_read_watchpoint: | |
6864 | case bp_access_watchpoint: | |
6865 | loc->loc_type = bp_loc_hardware_watchpoint; | |
6866 | break; | |
6867 | case bp_watchpoint: | |
ce78b96d | 6868 | case bp_catchpoint: |
15c3d785 PA |
6869 | case bp_tracepoint: |
6870 | case bp_fast_tracepoint: | |
0fb4aa4b | 6871 | case bp_static_tracepoint: |
e049a4b5 DJ |
6872 | loc->loc_type = bp_loc_other; |
6873 | break; | |
6874 | default: | |
e2e0b3e5 | 6875 | internal_error (__FILE__, __LINE__, _("unknown breakpoint type")); |
e049a4b5 DJ |
6876 | } |
6877 | ||
f431efe5 | 6878 | loc->refc = 1; |
28010a5d PA |
6879 | } |
6880 | ||
6881 | /* Allocate a struct bp_location. */ | |
6882 | ||
6883 | static struct bp_location * | |
6884 | allocate_bp_location (struct breakpoint *bpt) | |
6885 | { | |
348d480f PA |
6886 | return bpt->ops->allocate_location (bpt); |
6887 | } | |
7cc221ef | 6888 | |
f431efe5 PA |
6889 | static void |
6890 | free_bp_location (struct bp_location *loc) | |
fe3f5fa8 | 6891 | { |
348d480f | 6892 | loc->ops->dtor (loc); |
fe3f5fa8 VP |
6893 | xfree (loc); |
6894 | } | |
6895 | ||
f431efe5 PA |
6896 | /* Increment reference count. */ |
6897 | ||
6898 | static void | |
6899 | incref_bp_location (struct bp_location *bl) | |
6900 | { | |
6901 | ++bl->refc; | |
6902 | } | |
6903 | ||
6904 | /* Decrement reference count. If the reference count reaches 0, | |
6905 | destroy the bp_location. Sets *BLP to NULL. */ | |
6906 | ||
6907 | static void | |
6908 | decref_bp_location (struct bp_location **blp) | |
6909 | { | |
0807b50c PA |
6910 | gdb_assert ((*blp)->refc > 0); |
6911 | ||
f431efe5 PA |
6912 | if (--(*blp)->refc == 0) |
6913 | free_bp_location (*blp); | |
6914 | *blp = NULL; | |
6915 | } | |
6916 | ||
346774a9 | 6917 | /* Add breakpoint B at the end of the global breakpoint chain. */ |
c906108c | 6918 | |
346774a9 PA |
6919 | static void |
6920 | add_to_breakpoint_chain (struct breakpoint *b) | |
c906108c | 6921 | { |
346774a9 | 6922 | struct breakpoint *b1; |
c906108c | 6923 | |
346774a9 PA |
6924 | /* Add this breakpoint to the end of the chain so that a list of |
6925 | breakpoints will come out in order of increasing numbers. */ | |
6926 | ||
6927 | b1 = breakpoint_chain; | |
6928 | if (b1 == 0) | |
6929 | breakpoint_chain = b; | |
6930 | else | |
6931 | { | |
6932 | while (b1->next) | |
6933 | b1 = b1->next; | |
6934 | b1->next = b; | |
6935 | } | |
6936 | } | |
6937 | ||
6938 | /* Initializes breakpoint B with type BPTYPE and no locations yet. */ | |
6939 | ||
6940 | static void | |
6941 | init_raw_breakpoint_without_location (struct breakpoint *b, | |
6942 | struct gdbarch *gdbarch, | |
28010a5d | 6943 | enum bptype bptype, |
c0a91b2b | 6944 | const struct breakpoint_ops *ops) |
346774a9 | 6945 | { |
c906108c | 6946 | memset (b, 0, sizeof (*b)); |
2219d63c | 6947 | |
348d480f PA |
6948 | gdb_assert (ops != NULL); |
6949 | ||
28010a5d | 6950 | b->ops = ops; |
4d28f7a8 | 6951 | b->type = bptype; |
a6d9a66e | 6952 | b->gdbarch = gdbarch; |
c906108c SS |
6953 | b->language = current_language->la_language; |
6954 | b->input_radix = input_radix; | |
6955 | b->thread = -1; | |
b5de0fa7 | 6956 | b->enable_state = bp_enabled; |
c906108c SS |
6957 | b->next = 0; |
6958 | b->silent = 0; | |
6959 | b->ignore_count = 0; | |
6960 | b->commands = NULL; | |
818dd999 | 6961 | b->frame_id = null_frame_id; |
0d381245 | 6962 | b->condition_not_parsed = 0; |
84f4c1fe | 6963 | b->py_bp_object = NULL; |
d0fb5eae | 6964 | b->related_breakpoint = b; |
346774a9 PA |
6965 | } |
6966 | ||
6967 | /* Helper to set_raw_breakpoint below. Creates a breakpoint | |
6968 | that has type BPTYPE and has no locations as yet. */ | |
346774a9 PA |
6969 | |
6970 | static struct breakpoint * | |
6971 | set_raw_breakpoint_without_location (struct gdbarch *gdbarch, | |
348d480f | 6972 | enum bptype bptype, |
c0a91b2b | 6973 | const struct breakpoint_ops *ops) |
346774a9 PA |
6974 | { |
6975 | struct breakpoint *b = XNEW (struct breakpoint); | |
6976 | ||
348d480f | 6977 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
c56053d2 | 6978 | add_to_breakpoint_chain (b); |
0d381245 VP |
6979 | return b; |
6980 | } | |
6981 | ||
0e30163f JK |
6982 | /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function |
6983 | resolutions should be made as the user specified the location explicitly | |
6984 | enough. */ | |
6985 | ||
0d381245 | 6986 | static void |
0e30163f | 6987 | set_breakpoint_location_function (struct bp_location *loc, int explicit_loc) |
0d381245 | 6988 | { |
2bdf28a0 JK |
6989 | gdb_assert (loc->owner != NULL); |
6990 | ||
0d381245 | 6991 | if (loc->owner->type == bp_breakpoint |
1042e4c0 | 6992 | || loc->owner->type == bp_hardware_breakpoint |
d77f58be | 6993 | || is_tracepoint (loc->owner)) |
0d381245 | 6994 | { |
0e30163f | 6995 | int is_gnu_ifunc; |
2c02bd72 | 6996 | const char *function_name; |
6a3a010b | 6997 | CORE_ADDR func_addr; |
0e30163f | 6998 | |
2c02bd72 | 6999 | find_pc_partial_function_gnu_ifunc (loc->address, &function_name, |
6a3a010b | 7000 | &func_addr, NULL, &is_gnu_ifunc); |
0e30163f JK |
7001 | |
7002 | if (is_gnu_ifunc && !explicit_loc) | |
7003 | { | |
7004 | struct breakpoint *b = loc->owner; | |
7005 | ||
7006 | gdb_assert (loc->pspace == current_program_space); | |
2c02bd72 | 7007 | if (gnu_ifunc_resolve_name (function_name, |
0e30163f JK |
7008 | &loc->requested_address)) |
7009 | { | |
7010 | /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */ | |
7011 | loc->address = adjust_breakpoint_address (loc->gdbarch, | |
7012 | loc->requested_address, | |
7013 | b->type); | |
7014 | } | |
7015 | else if (b->type == bp_breakpoint && b->loc == loc | |
7016 | && loc->next == NULL && b->related_breakpoint == b) | |
7017 | { | |
7018 | /* Create only the whole new breakpoint of this type but do not | |
7019 | mess more complicated breakpoints with multiple locations. */ | |
7020 | b->type = bp_gnu_ifunc_resolver; | |
6a3a010b MR |
7021 | /* Remember the resolver's address for use by the return |
7022 | breakpoint. */ | |
7023 | loc->related_address = func_addr; | |
0e30163f JK |
7024 | } |
7025 | } | |
7026 | ||
2c02bd72 DE |
7027 | if (function_name) |
7028 | loc->function_name = xstrdup (function_name); | |
0d381245 VP |
7029 | } |
7030 | } | |
7031 | ||
a6d9a66e | 7032 | /* Attempt to determine architecture of location identified by SAL. */ |
1bfeeb0f | 7033 | struct gdbarch * |
a6d9a66e UW |
7034 | get_sal_arch (struct symtab_and_line sal) |
7035 | { | |
7036 | if (sal.section) | |
7037 | return get_objfile_arch (sal.section->objfile); | |
7038 | if (sal.symtab) | |
7039 | return get_objfile_arch (sal.symtab->objfile); | |
7040 | ||
7041 | return NULL; | |
7042 | } | |
7043 | ||
346774a9 PA |
7044 | /* Low level routine for partially initializing a breakpoint of type |
7045 | BPTYPE. The newly created breakpoint's address, section, source | |
c56053d2 | 7046 | file name, and line number are provided by SAL. |
0d381245 VP |
7047 | |
7048 | It is expected that the caller will complete the initialization of | |
7049 | the newly created breakpoint struct as well as output any status | |
c56053d2 | 7050 | information regarding the creation of a new breakpoint. */ |
0d381245 | 7051 | |
346774a9 PA |
7052 | static void |
7053 | init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch, | |
28010a5d | 7054 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 7055 | const struct breakpoint_ops *ops) |
0d381245 | 7056 | { |
28010a5d | 7057 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
346774a9 | 7058 | |
3742cc8b | 7059 | add_location_to_breakpoint (b, &sal); |
0d381245 | 7060 | |
6c95b8df PA |
7061 | if (bptype != bp_catchpoint) |
7062 | gdb_assert (sal.pspace != NULL); | |
7063 | ||
f8eba3c6 TT |
7064 | /* Store the program space that was used to set the breakpoint, |
7065 | except for ordinary breakpoints, which are independent of the | |
7066 | program space. */ | |
7067 | if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint) | |
7068 | b->pspace = sal.pspace; | |
346774a9 | 7069 | } |
c906108c | 7070 | |
346774a9 PA |
7071 | /* set_raw_breakpoint is a low level routine for allocating and |
7072 | partially initializing a breakpoint of type BPTYPE. The newly | |
7073 | created breakpoint's address, section, source file name, and line | |
7074 | number are provided by SAL. The newly created and partially | |
7075 | initialized breakpoint is added to the breakpoint chain and | |
7076 | is also returned as the value of this function. | |
7077 | ||
7078 | It is expected that the caller will complete the initialization of | |
7079 | the newly created breakpoint struct as well as output any status | |
7080 | information regarding the creation of a new breakpoint. In | |
7081 | particular, set_raw_breakpoint does NOT set the breakpoint | |
7082 | number! Care should be taken to not allow an error to occur | |
7083 | prior to completing the initialization of the breakpoint. If this | |
7084 | should happen, a bogus breakpoint will be left on the chain. */ | |
7085 | ||
7086 | struct breakpoint * | |
7087 | set_raw_breakpoint (struct gdbarch *gdbarch, | |
348d480f | 7088 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 7089 | const struct breakpoint_ops *ops) |
346774a9 PA |
7090 | { |
7091 | struct breakpoint *b = XNEW (struct breakpoint); | |
7092 | ||
348d480f | 7093 | init_raw_breakpoint (b, gdbarch, sal, bptype, ops); |
c56053d2 | 7094 | add_to_breakpoint_chain (b); |
c906108c SS |
7095 | return b; |
7096 | } | |
7097 | ||
c2c6d25f JM |
7098 | |
7099 | /* Note that the breakpoint object B describes a permanent breakpoint | |
7100 | instruction, hard-wired into the inferior's code. */ | |
7101 | void | |
7102 | make_breakpoint_permanent (struct breakpoint *b) | |
7103 | { | |
0d381245 | 7104 | struct bp_location *bl; |
cc59ec59 | 7105 | |
b5de0fa7 | 7106 | b->enable_state = bp_permanent; |
c2c6d25f | 7107 | |
4a64f543 MS |
7108 | /* By definition, permanent breakpoints are already present in the |
7109 | code. Mark all locations as inserted. For now, | |
7110 | make_breakpoint_permanent is called in just one place, so it's | |
7111 | hard to say if it's reasonable to have permanent breakpoint with | |
e5dd4106 | 7112 | multiple locations or not, but it's easy to implement. */ |
0d381245 VP |
7113 | for (bl = b->loc; bl; bl = bl->next) |
7114 | bl->inserted = 1; | |
c2c6d25f JM |
7115 | } |
7116 | ||
53a5351d | 7117 | /* Call this routine when stepping and nexting to enable a breakpoint |
186c406b TT |
7118 | if we do a longjmp() or 'throw' in TP. FRAME is the frame which |
7119 | initiated the operation. */ | |
c906108c SS |
7120 | |
7121 | void | |
186c406b | 7122 | set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame) |
c906108c | 7123 | { |
35df4500 | 7124 | struct breakpoint *b, *b_tmp; |
186c406b | 7125 | int thread = tp->num; |
0fd8e87f UW |
7126 | |
7127 | /* To avoid having to rescan all objfile symbols at every step, | |
7128 | we maintain a list of continually-inserted but always disabled | |
7129 | longjmp "master" breakpoints. Here, we simply create momentary | |
7130 | clones of those and enable them for the requested thread. */ | |
35df4500 | 7131 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df | 7132 | if (b->pspace == current_program_space |
186c406b TT |
7133 | && (b->type == bp_longjmp_master |
7134 | || b->type == bp_exception_master)) | |
0fd8e87f | 7135 | { |
06edf0c0 PA |
7136 | enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception; |
7137 | struct breakpoint *clone; | |
cc59ec59 | 7138 | |
e2e4d78b JK |
7139 | /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again |
7140 | after their removal. */ | |
06edf0c0 | 7141 | clone = momentary_breakpoint_from_master (b, type, |
e2e4d78b | 7142 | &longjmp_breakpoint_ops); |
0fd8e87f UW |
7143 | clone->thread = thread; |
7144 | } | |
186c406b TT |
7145 | |
7146 | tp->initiating_frame = frame; | |
c906108c SS |
7147 | } |
7148 | ||
611c83ae | 7149 | /* Delete all longjmp breakpoints from THREAD. */ |
c906108c | 7150 | void |
611c83ae | 7151 | delete_longjmp_breakpoint (int thread) |
c906108c | 7152 | { |
35df4500 | 7153 | struct breakpoint *b, *b_tmp; |
c906108c | 7154 | |
35df4500 | 7155 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
186c406b | 7156 | if (b->type == bp_longjmp || b->type == bp_exception) |
611c83ae PA |
7157 | { |
7158 | if (b->thread == thread) | |
7159 | delete_breakpoint (b); | |
7160 | } | |
c906108c SS |
7161 | } |
7162 | ||
f59f708a PA |
7163 | void |
7164 | delete_longjmp_breakpoint_at_next_stop (int thread) | |
7165 | { | |
7166 | struct breakpoint *b, *b_tmp; | |
7167 | ||
7168 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7169 | if (b->type == bp_longjmp || b->type == bp_exception) | |
7170 | { | |
7171 | if (b->thread == thread) | |
7172 | b->disposition = disp_del_at_next_stop; | |
7173 | } | |
7174 | } | |
7175 | ||
e2e4d78b JK |
7176 | /* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for |
7177 | INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return | |
7178 | pointer to any of them. Return NULL if this system cannot place longjmp | |
7179 | breakpoints. */ | |
7180 | ||
7181 | struct breakpoint * | |
7182 | set_longjmp_breakpoint_for_call_dummy (void) | |
7183 | { | |
7184 | struct breakpoint *b, *retval = NULL; | |
7185 | ||
7186 | ALL_BREAKPOINTS (b) | |
7187 | if (b->pspace == current_program_space && b->type == bp_longjmp_master) | |
7188 | { | |
7189 | struct breakpoint *new_b; | |
7190 | ||
7191 | new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy, | |
7192 | &momentary_breakpoint_ops); | |
7193 | new_b->thread = pid_to_thread_id (inferior_ptid); | |
7194 | ||
7195 | /* Link NEW_B into the chain of RETVAL breakpoints. */ | |
7196 | ||
7197 | gdb_assert (new_b->related_breakpoint == new_b); | |
7198 | if (retval == NULL) | |
7199 | retval = new_b; | |
7200 | new_b->related_breakpoint = retval; | |
7201 | while (retval->related_breakpoint != new_b->related_breakpoint) | |
7202 | retval = retval->related_breakpoint; | |
7203 | retval->related_breakpoint = new_b; | |
7204 | } | |
7205 | ||
7206 | return retval; | |
7207 | } | |
7208 | ||
7209 | /* Verify all existing dummy frames and their associated breakpoints for | |
7210 | THREAD. Remove those which can no longer be found in the current frame | |
7211 | stack. | |
7212 | ||
7213 | You should call this function only at places where it is safe to currently | |
7214 | unwind the whole stack. Failed stack unwind would discard live dummy | |
7215 | frames. */ | |
7216 | ||
7217 | void | |
7218 | check_longjmp_breakpoint_for_call_dummy (int thread) | |
7219 | { | |
7220 | struct breakpoint *b, *b_tmp; | |
7221 | ||
7222 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7223 | if (b->type == bp_longjmp_call_dummy && b->thread == thread) | |
7224 | { | |
7225 | struct breakpoint *dummy_b = b->related_breakpoint; | |
7226 | ||
7227 | while (dummy_b != b && dummy_b->type != bp_call_dummy) | |
7228 | dummy_b = dummy_b->related_breakpoint; | |
7229 | if (dummy_b->type != bp_call_dummy | |
7230 | || frame_find_by_id (dummy_b->frame_id) != NULL) | |
7231 | continue; | |
7232 | ||
7233 | dummy_frame_discard (dummy_b->frame_id); | |
7234 | ||
7235 | while (b->related_breakpoint != b) | |
7236 | { | |
7237 | if (b_tmp == b->related_breakpoint) | |
7238 | b_tmp = b->related_breakpoint->next; | |
7239 | delete_breakpoint (b->related_breakpoint); | |
7240 | } | |
7241 | delete_breakpoint (b); | |
7242 | } | |
7243 | } | |
7244 | ||
1900040c MS |
7245 | void |
7246 | enable_overlay_breakpoints (void) | |
7247 | { | |
52f0bd74 | 7248 | struct breakpoint *b; |
1900040c MS |
7249 | |
7250 | ALL_BREAKPOINTS (b) | |
7251 | if (b->type == bp_overlay_event) | |
7252 | { | |
7253 | b->enable_state = bp_enabled; | |
b60e7edf | 7254 | update_global_location_list (1); |
c02f5703 | 7255 | overlay_events_enabled = 1; |
1900040c MS |
7256 | } |
7257 | } | |
7258 | ||
7259 | void | |
7260 | disable_overlay_breakpoints (void) | |
7261 | { | |
52f0bd74 | 7262 | struct breakpoint *b; |
1900040c MS |
7263 | |
7264 | ALL_BREAKPOINTS (b) | |
7265 | if (b->type == bp_overlay_event) | |
7266 | { | |
7267 | b->enable_state = bp_disabled; | |
b60e7edf | 7268 | update_global_location_list (0); |
c02f5703 | 7269 | overlay_events_enabled = 0; |
1900040c MS |
7270 | } |
7271 | } | |
7272 | ||
aa7d318d TT |
7273 | /* Set an active std::terminate breakpoint for each std::terminate |
7274 | master breakpoint. */ | |
7275 | void | |
7276 | set_std_terminate_breakpoint (void) | |
7277 | { | |
35df4500 | 7278 | struct breakpoint *b, *b_tmp; |
aa7d318d | 7279 | |
35df4500 | 7280 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
7281 | if (b->pspace == current_program_space |
7282 | && b->type == bp_std_terminate_master) | |
7283 | { | |
06edf0c0 PA |
7284 | momentary_breakpoint_from_master (b, bp_std_terminate, |
7285 | &momentary_breakpoint_ops); | |
aa7d318d TT |
7286 | } |
7287 | } | |
7288 | ||
7289 | /* Delete all the std::terminate breakpoints. */ | |
7290 | void | |
7291 | delete_std_terminate_breakpoint (void) | |
7292 | { | |
35df4500 | 7293 | struct breakpoint *b, *b_tmp; |
aa7d318d | 7294 | |
35df4500 | 7295 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
7296 | if (b->type == bp_std_terminate) |
7297 | delete_breakpoint (b); | |
7298 | } | |
7299 | ||
c4093a6a | 7300 | struct breakpoint * |
a6d9a66e | 7301 | create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
c4093a6a JM |
7302 | { |
7303 | struct breakpoint *b; | |
c4093a6a | 7304 | |
06edf0c0 PA |
7305 | b = create_internal_breakpoint (gdbarch, address, bp_thread_event, |
7306 | &internal_breakpoint_ops); | |
7307 | ||
b5de0fa7 | 7308 | b->enable_state = bp_enabled; |
c4093a6a | 7309 | /* addr_string has to be used or breakpoint_re_set will delete me. */ |
5af949e3 UW |
7310 | b->addr_string |
7311 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
c4093a6a | 7312 | |
b60e7edf | 7313 | update_global_location_list_nothrow (1); |
74960c60 | 7314 | |
c4093a6a JM |
7315 | return b; |
7316 | } | |
7317 | ||
7318 | void | |
7319 | remove_thread_event_breakpoints (void) | |
7320 | { | |
35df4500 | 7321 | struct breakpoint *b, *b_tmp; |
c4093a6a | 7322 | |
35df4500 | 7323 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
7324 | if (b->type == bp_thread_event |
7325 | && b->loc->pspace == current_program_space) | |
c4093a6a JM |
7326 | delete_breakpoint (b); |
7327 | } | |
7328 | ||
0101ce28 JJ |
7329 | struct lang_and_radix |
7330 | { | |
7331 | enum language lang; | |
7332 | int radix; | |
7333 | }; | |
7334 | ||
4efc6507 DE |
7335 | /* Create a breakpoint for JIT code registration and unregistration. */ |
7336 | ||
7337 | struct breakpoint * | |
7338 | create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) | |
7339 | { | |
7340 | struct breakpoint *b; | |
7341 | ||
06edf0c0 PA |
7342 | b = create_internal_breakpoint (gdbarch, address, bp_jit_event, |
7343 | &internal_breakpoint_ops); | |
4efc6507 DE |
7344 | update_global_location_list_nothrow (1); |
7345 | return b; | |
7346 | } | |
0101ce28 | 7347 | |
03673fc7 PP |
7348 | /* Remove JIT code registration and unregistration breakpoint(s). */ |
7349 | ||
7350 | void | |
7351 | remove_jit_event_breakpoints (void) | |
7352 | { | |
7353 | struct breakpoint *b, *b_tmp; | |
7354 | ||
7355 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
7356 | if (b->type == bp_jit_event | |
7357 | && b->loc->pspace == current_program_space) | |
7358 | delete_breakpoint (b); | |
7359 | } | |
7360 | ||
cae688ec JJ |
7361 | void |
7362 | remove_solib_event_breakpoints (void) | |
7363 | { | |
35df4500 | 7364 | struct breakpoint *b, *b_tmp; |
cae688ec | 7365 | |
35df4500 | 7366 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
7367 | if (b->type == bp_shlib_event |
7368 | && b->loc->pspace == current_program_space) | |
cae688ec JJ |
7369 | delete_breakpoint (b); |
7370 | } | |
7371 | ||
7372 | struct breakpoint * | |
a6d9a66e | 7373 | create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
cae688ec JJ |
7374 | { |
7375 | struct breakpoint *b; | |
7376 | ||
06edf0c0 PA |
7377 | b = create_internal_breakpoint (gdbarch, address, bp_shlib_event, |
7378 | &internal_breakpoint_ops); | |
b60e7edf | 7379 | update_global_location_list_nothrow (1); |
cae688ec JJ |
7380 | return b; |
7381 | } | |
7382 | ||
7383 | /* Disable any breakpoints that are on code in shared libraries. Only | |
7384 | apply to enabled breakpoints, disabled ones can just stay disabled. */ | |
7385 | ||
7386 | void | |
cb851954 | 7387 | disable_breakpoints_in_shlibs (void) |
cae688ec | 7388 | { |
876fa593 | 7389 | struct bp_location *loc, **locp_tmp; |
cae688ec | 7390 | |
876fa593 | 7391 | ALL_BP_LOCATIONS (loc, locp_tmp) |
cae688ec | 7392 | { |
2bdf28a0 | 7393 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 7394 | struct breakpoint *b = loc->owner; |
2bdf28a0 | 7395 | |
4a64f543 MS |
7396 | /* We apply the check to all breakpoints, including disabled for |
7397 | those with loc->duplicate set. This is so that when breakpoint | |
7398 | becomes enabled, or the duplicate is removed, gdb will try to | |
7399 | insert all breakpoints. If we don't set shlib_disabled here, | |
7400 | we'll try to insert those breakpoints and fail. */ | |
1042e4c0 | 7401 | if (((b->type == bp_breakpoint) |
508ccb1f | 7402 | || (b->type == bp_jit_event) |
1042e4c0 | 7403 | || (b->type == bp_hardware_breakpoint) |
d77f58be | 7404 | || (is_tracepoint (b))) |
6c95b8df | 7405 | && loc->pspace == current_program_space |
0d381245 | 7406 | && !loc->shlib_disabled |
6c95b8df | 7407 | && solib_name_from_address (loc->pspace, loc->address) |
a77053c2 | 7408 | ) |
0d381245 VP |
7409 | { |
7410 | loc->shlib_disabled = 1; | |
7411 | } | |
cae688ec JJ |
7412 | } |
7413 | } | |
7414 | ||
1e4d1764 YQ |
7415 | /* Disable any breakpoints and tracepoints that are in an unloaded shared |
7416 | library. Only apply to enabled breakpoints, disabled ones can just stay | |
4a64f543 | 7417 | disabled. */ |
84acb35a | 7418 | |
75149521 | 7419 | static void |
84acb35a JJ |
7420 | disable_breakpoints_in_unloaded_shlib (struct so_list *solib) |
7421 | { | |
876fa593 | 7422 | struct bp_location *loc, **locp_tmp; |
84acb35a JJ |
7423 | int disabled_shlib_breaks = 0; |
7424 | ||
c86cf029 VP |
7425 | /* SunOS a.out shared libraries are always mapped, so do not |
7426 | disable breakpoints; they will only be reported as unloaded | |
7427 | through clear_solib when GDB discards its shared library | |
7428 | list. See clear_solib for more information. */ | |
7429 | if (exec_bfd != NULL | |
7430 | && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour) | |
7431 | return; | |
7432 | ||
876fa593 | 7433 | ALL_BP_LOCATIONS (loc, locp_tmp) |
84acb35a | 7434 | { |
2bdf28a0 | 7435 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 7436 | struct breakpoint *b = loc->owner; |
cc59ec59 | 7437 | |
1e4d1764 | 7438 | if (solib->pspace == loc->pspace |
e2dd7057 | 7439 | && !loc->shlib_disabled |
1e4d1764 YQ |
7440 | && (((b->type == bp_breakpoint |
7441 | || b->type == bp_jit_event | |
7442 | || b->type == bp_hardware_breakpoint) | |
7443 | && (loc->loc_type == bp_loc_hardware_breakpoint | |
7444 | || loc->loc_type == bp_loc_software_breakpoint)) | |
7445 | || is_tracepoint (b)) | |
e2dd7057 | 7446 | && solib_contains_address_p (solib, loc->address)) |
84acb35a | 7447 | { |
e2dd7057 PP |
7448 | loc->shlib_disabled = 1; |
7449 | /* At this point, we cannot rely on remove_breakpoint | |
7450 | succeeding so we must mark the breakpoint as not inserted | |
7451 | to prevent future errors occurring in remove_breakpoints. */ | |
7452 | loc->inserted = 0; | |
8d3788bd VP |
7453 | |
7454 | /* This may cause duplicate notifications for the same breakpoint. */ | |
7455 | observer_notify_breakpoint_modified (b); | |
7456 | ||
e2dd7057 PP |
7457 | if (!disabled_shlib_breaks) |
7458 | { | |
7459 | target_terminal_ours_for_output (); | |
3e43a32a MS |
7460 | warning (_("Temporarily disabling breakpoints " |
7461 | "for unloaded shared library \"%s\""), | |
e2dd7057 | 7462 | solib->so_name); |
84acb35a | 7463 | } |
e2dd7057 | 7464 | disabled_shlib_breaks = 1; |
84acb35a JJ |
7465 | } |
7466 | } | |
84acb35a JJ |
7467 | } |
7468 | ||
ce78b96d JB |
7469 | /* FORK & VFORK catchpoints. */ |
7470 | ||
e29a4733 PA |
7471 | /* An instance of this type is used to represent a fork or vfork |
7472 | catchpoint. It includes a "struct breakpoint" as a kind of base | |
7473 | class; users downcast to "struct breakpoint *" when needed. A | |
7474 | breakpoint is really of this type iff its ops pointer points to | |
7475 | CATCH_FORK_BREAKPOINT_OPS. */ | |
7476 | ||
7477 | struct fork_catchpoint | |
7478 | { | |
7479 | /* The base class. */ | |
7480 | struct breakpoint base; | |
7481 | ||
7482 | /* Process id of a child process whose forking triggered this | |
7483 | catchpoint. This field is only valid immediately after this | |
7484 | catchpoint has triggered. */ | |
7485 | ptid_t forked_inferior_pid; | |
7486 | }; | |
7487 | ||
4a64f543 MS |
7488 | /* Implement the "insert" breakpoint_ops method for fork |
7489 | catchpoints. */ | |
ce78b96d | 7490 | |
77b06cd7 TJB |
7491 | static int |
7492 | insert_catch_fork (struct bp_location *bl) | |
ce78b96d | 7493 | { |
77b06cd7 | 7494 | return target_insert_fork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
7495 | } |
7496 | ||
4a64f543 MS |
7497 | /* Implement the "remove" breakpoint_ops method for fork |
7498 | catchpoints. */ | |
ce78b96d JB |
7499 | |
7500 | static int | |
77b06cd7 | 7501 | remove_catch_fork (struct bp_location *bl) |
ce78b96d JB |
7502 | { |
7503 | return target_remove_fork_catchpoint (PIDGET (inferior_ptid)); | |
7504 | } | |
7505 | ||
7506 | /* Implement the "breakpoint_hit" breakpoint_ops method for fork | |
7507 | catchpoints. */ | |
7508 | ||
7509 | static int | |
f1310107 | 7510 | breakpoint_hit_catch_fork (const struct bp_location *bl, |
09ac7c10 TT |
7511 | struct address_space *aspace, CORE_ADDR bp_addr, |
7512 | const struct target_waitstatus *ws) | |
ce78b96d | 7513 | { |
e29a4733 PA |
7514 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
7515 | ||
f90263c1 TT |
7516 | if (ws->kind != TARGET_WAITKIND_FORKED) |
7517 | return 0; | |
7518 | ||
7519 | c->forked_inferior_pid = ws->value.related_pid; | |
7520 | return 1; | |
ce78b96d JB |
7521 | } |
7522 | ||
4a64f543 MS |
7523 | /* Implement the "print_it" breakpoint_ops method for fork |
7524 | catchpoints. */ | |
ce78b96d JB |
7525 | |
7526 | static enum print_stop_action | |
348d480f | 7527 | print_it_catch_fork (bpstat bs) |
ce78b96d | 7528 | { |
36dfb11c | 7529 | struct ui_out *uiout = current_uiout; |
348d480f PA |
7530 | struct breakpoint *b = bs->breakpoint_at; |
7531 | struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at; | |
e29a4733 | 7532 | |
ce78b96d | 7533 | annotate_catchpoint (b->number); |
36dfb11c TT |
7534 | if (b->disposition == disp_del) |
7535 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7536 | else | |
7537 | ui_out_text (uiout, "\nCatchpoint "); | |
7538 | if (ui_out_is_mi_like_p (uiout)) | |
7539 | { | |
7540 | ui_out_field_string (uiout, "reason", | |
7541 | async_reason_lookup (EXEC_ASYNC_FORK)); | |
7542 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7543 | } | |
7544 | ui_out_field_int (uiout, "bkptno", b->number); | |
7545 | ui_out_text (uiout, " (forked process "); | |
7546 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
7547 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
7548 | return PRINT_SRC_AND_LOC; |
7549 | } | |
7550 | ||
4a64f543 MS |
7551 | /* Implement the "print_one" breakpoint_ops method for fork |
7552 | catchpoints. */ | |
ce78b96d JB |
7553 | |
7554 | static void | |
a6d9a66e | 7555 | print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 7556 | { |
e29a4733 | 7557 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 7558 | struct value_print_options opts; |
79a45e25 | 7559 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
7560 | |
7561 | get_user_print_options (&opts); | |
7562 | ||
4a64f543 MS |
7563 | /* Field 4, the address, is omitted (which makes the columns not |
7564 | line up too nicely with the headers, but the effect is relatively | |
7565 | readable). */ | |
79a45b7d | 7566 | if (opts.addressprint) |
ce78b96d JB |
7567 | ui_out_field_skip (uiout, "addr"); |
7568 | annotate_field (5); | |
7569 | ui_out_text (uiout, "fork"); | |
e29a4733 | 7570 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
7571 | { |
7572 | ui_out_text (uiout, ", process "); | |
7573 | ui_out_field_int (uiout, "what", | |
e29a4733 | 7574 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
7575 | ui_out_spaces (uiout, 1); |
7576 | } | |
8ac3646f TT |
7577 | |
7578 | if (ui_out_is_mi_like_p (uiout)) | |
7579 | ui_out_field_string (uiout, "catch-type", "fork"); | |
ce78b96d JB |
7580 | } |
7581 | ||
7582 | /* Implement the "print_mention" breakpoint_ops method for fork | |
7583 | catchpoints. */ | |
7584 | ||
7585 | static void | |
7586 | print_mention_catch_fork (struct breakpoint *b) | |
7587 | { | |
7588 | printf_filtered (_("Catchpoint %d (fork)"), b->number); | |
7589 | } | |
7590 | ||
6149aea9 PA |
7591 | /* Implement the "print_recreate" breakpoint_ops method for fork |
7592 | catchpoints. */ | |
7593 | ||
7594 | static void | |
7595 | print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp) | |
7596 | { | |
7597 | fprintf_unfiltered (fp, "catch fork"); | |
d9b3f62e | 7598 | print_recreate_thread (b, fp); |
6149aea9 PA |
7599 | } |
7600 | ||
ce78b96d JB |
7601 | /* The breakpoint_ops structure to be used in fork catchpoints. */ |
7602 | ||
2060206e | 7603 | static struct breakpoint_ops catch_fork_breakpoint_ops; |
ce78b96d | 7604 | |
4a64f543 MS |
7605 | /* Implement the "insert" breakpoint_ops method for vfork |
7606 | catchpoints. */ | |
ce78b96d | 7607 | |
77b06cd7 TJB |
7608 | static int |
7609 | insert_catch_vfork (struct bp_location *bl) | |
ce78b96d | 7610 | { |
77b06cd7 | 7611 | return target_insert_vfork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
7612 | } |
7613 | ||
4a64f543 MS |
7614 | /* Implement the "remove" breakpoint_ops method for vfork |
7615 | catchpoints. */ | |
ce78b96d JB |
7616 | |
7617 | static int | |
77b06cd7 | 7618 | remove_catch_vfork (struct bp_location *bl) |
ce78b96d JB |
7619 | { |
7620 | return target_remove_vfork_catchpoint (PIDGET (inferior_ptid)); | |
7621 | } | |
7622 | ||
7623 | /* Implement the "breakpoint_hit" breakpoint_ops method for vfork | |
7624 | catchpoints. */ | |
7625 | ||
7626 | static int | |
f1310107 | 7627 | breakpoint_hit_catch_vfork (const struct bp_location *bl, |
09ac7c10 TT |
7628 | struct address_space *aspace, CORE_ADDR bp_addr, |
7629 | const struct target_waitstatus *ws) | |
ce78b96d | 7630 | { |
e29a4733 PA |
7631 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
7632 | ||
f90263c1 TT |
7633 | if (ws->kind != TARGET_WAITKIND_VFORKED) |
7634 | return 0; | |
7635 | ||
7636 | c->forked_inferior_pid = ws->value.related_pid; | |
7637 | return 1; | |
ce78b96d JB |
7638 | } |
7639 | ||
4a64f543 MS |
7640 | /* Implement the "print_it" breakpoint_ops method for vfork |
7641 | catchpoints. */ | |
ce78b96d JB |
7642 | |
7643 | static enum print_stop_action | |
348d480f | 7644 | print_it_catch_vfork (bpstat bs) |
ce78b96d | 7645 | { |
36dfb11c | 7646 | struct ui_out *uiout = current_uiout; |
348d480f | 7647 | struct breakpoint *b = bs->breakpoint_at; |
e29a4733 PA |
7648 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
7649 | ||
ce78b96d | 7650 | annotate_catchpoint (b->number); |
36dfb11c TT |
7651 | if (b->disposition == disp_del) |
7652 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7653 | else | |
7654 | ui_out_text (uiout, "\nCatchpoint "); | |
7655 | if (ui_out_is_mi_like_p (uiout)) | |
7656 | { | |
7657 | ui_out_field_string (uiout, "reason", | |
7658 | async_reason_lookup (EXEC_ASYNC_VFORK)); | |
7659 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7660 | } | |
7661 | ui_out_field_int (uiout, "bkptno", b->number); | |
7662 | ui_out_text (uiout, " (vforked process "); | |
7663 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
7664 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
7665 | return PRINT_SRC_AND_LOC; |
7666 | } | |
7667 | ||
4a64f543 MS |
7668 | /* Implement the "print_one" breakpoint_ops method for vfork |
7669 | catchpoints. */ | |
ce78b96d JB |
7670 | |
7671 | static void | |
a6d9a66e | 7672 | print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 7673 | { |
e29a4733 | 7674 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 7675 | struct value_print_options opts; |
79a45e25 | 7676 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
7677 | |
7678 | get_user_print_options (&opts); | |
4a64f543 MS |
7679 | /* Field 4, the address, is omitted (which makes the columns not |
7680 | line up too nicely with the headers, but the effect is relatively | |
7681 | readable). */ | |
79a45b7d | 7682 | if (opts.addressprint) |
ce78b96d JB |
7683 | ui_out_field_skip (uiout, "addr"); |
7684 | annotate_field (5); | |
7685 | ui_out_text (uiout, "vfork"); | |
e29a4733 | 7686 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
7687 | { |
7688 | ui_out_text (uiout, ", process "); | |
7689 | ui_out_field_int (uiout, "what", | |
e29a4733 | 7690 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
7691 | ui_out_spaces (uiout, 1); |
7692 | } | |
8ac3646f TT |
7693 | |
7694 | if (ui_out_is_mi_like_p (uiout)) | |
7695 | ui_out_field_string (uiout, "catch-type", "vfork"); | |
ce78b96d JB |
7696 | } |
7697 | ||
7698 | /* Implement the "print_mention" breakpoint_ops method for vfork | |
7699 | catchpoints. */ | |
7700 | ||
7701 | static void | |
7702 | print_mention_catch_vfork (struct breakpoint *b) | |
7703 | { | |
7704 | printf_filtered (_("Catchpoint %d (vfork)"), b->number); | |
7705 | } | |
7706 | ||
6149aea9 PA |
7707 | /* Implement the "print_recreate" breakpoint_ops method for vfork |
7708 | catchpoints. */ | |
7709 | ||
7710 | static void | |
7711 | print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp) | |
7712 | { | |
7713 | fprintf_unfiltered (fp, "catch vfork"); | |
d9b3f62e | 7714 | print_recreate_thread (b, fp); |
6149aea9 PA |
7715 | } |
7716 | ||
ce78b96d JB |
7717 | /* The breakpoint_ops structure to be used in vfork catchpoints. */ |
7718 | ||
2060206e | 7719 | static struct breakpoint_ops catch_vfork_breakpoint_ops; |
ce78b96d | 7720 | |
edcc5120 TT |
7721 | /* An instance of this type is used to represent an solib catchpoint. |
7722 | It includes a "struct breakpoint" as a kind of base class; users | |
7723 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
7724 | really of this type iff its ops pointer points to | |
7725 | CATCH_SOLIB_BREAKPOINT_OPS. */ | |
7726 | ||
7727 | struct solib_catchpoint | |
7728 | { | |
7729 | /* The base class. */ | |
7730 | struct breakpoint base; | |
7731 | ||
7732 | /* True for "catch load", false for "catch unload". */ | |
7733 | unsigned char is_load; | |
7734 | ||
7735 | /* Regular expression to match, if any. COMPILED is only valid when | |
7736 | REGEX is non-NULL. */ | |
7737 | char *regex; | |
7738 | regex_t compiled; | |
7739 | }; | |
7740 | ||
7741 | static void | |
7742 | dtor_catch_solib (struct breakpoint *b) | |
7743 | { | |
7744 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7745 | ||
7746 | if (self->regex) | |
7747 | regfree (&self->compiled); | |
7748 | xfree (self->regex); | |
7749 | ||
7750 | base_breakpoint_ops.dtor (b); | |
7751 | } | |
7752 | ||
7753 | static int | |
7754 | insert_catch_solib (struct bp_location *ignore) | |
7755 | { | |
7756 | return 0; | |
7757 | } | |
7758 | ||
7759 | static int | |
7760 | remove_catch_solib (struct bp_location *ignore) | |
7761 | { | |
7762 | return 0; | |
7763 | } | |
7764 | ||
7765 | static int | |
7766 | breakpoint_hit_catch_solib (const struct bp_location *bl, | |
7767 | struct address_space *aspace, | |
7768 | CORE_ADDR bp_addr, | |
7769 | const struct target_waitstatus *ws) | |
7770 | { | |
7771 | struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner; | |
7772 | struct breakpoint *other; | |
7773 | ||
7774 | if (ws->kind == TARGET_WAITKIND_LOADED) | |
7775 | return 1; | |
7776 | ||
7777 | ALL_BREAKPOINTS (other) | |
7778 | { | |
7779 | struct bp_location *other_bl; | |
7780 | ||
7781 | if (other == bl->owner) | |
7782 | continue; | |
7783 | ||
7784 | if (other->type != bp_shlib_event) | |
7785 | continue; | |
7786 | ||
7787 | if (self->base.pspace != NULL && other->pspace != self->base.pspace) | |
7788 | continue; | |
7789 | ||
7790 | for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next) | |
7791 | { | |
7792 | if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws)) | |
7793 | return 1; | |
7794 | } | |
7795 | } | |
7796 | ||
7797 | return 0; | |
7798 | } | |
7799 | ||
7800 | static void | |
7801 | check_status_catch_solib (struct bpstats *bs) | |
7802 | { | |
7803 | struct solib_catchpoint *self | |
7804 | = (struct solib_catchpoint *) bs->breakpoint_at; | |
7805 | int ix; | |
7806 | ||
7807 | if (self->is_load) | |
7808 | { | |
7809 | struct so_list *iter; | |
7810 | ||
7811 | for (ix = 0; | |
7812 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
7813 | ix, iter); | |
7814 | ++ix) | |
7815 | { | |
7816 | if (!self->regex | |
7817 | || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0) | |
7818 | return; | |
7819 | } | |
7820 | } | |
7821 | else | |
7822 | { | |
7823 | char *iter; | |
7824 | ||
7825 | for (ix = 0; | |
7826 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
7827 | ix, iter); | |
7828 | ++ix) | |
7829 | { | |
7830 | if (!self->regex | |
7831 | || regexec (&self->compiled, iter, 0, NULL, 0) == 0) | |
7832 | return; | |
7833 | } | |
7834 | } | |
7835 | ||
7836 | bs->stop = 0; | |
7837 | bs->print_it = print_it_noop; | |
7838 | } | |
7839 | ||
7840 | static enum print_stop_action | |
7841 | print_it_catch_solib (bpstat bs) | |
7842 | { | |
7843 | struct breakpoint *b = bs->breakpoint_at; | |
7844 | struct ui_out *uiout = current_uiout; | |
7845 | ||
7846 | annotate_catchpoint (b->number); | |
7847 | if (b->disposition == disp_del) | |
7848 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7849 | else | |
7850 | ui_out_text (uiout, "\nCatchpoint "); | |
7851 | ui_out_field_int (uiout, "bkptno", b->number); | |
7852 | ui_out_text (uiout, "\n"); | |
7853 | if (ui_out_is_mi_like_p (uiout)) | |
7854 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7855 | print_solib_event (1); | |
7856 | return PRINT_SRC_AND_LOC; | |
7857 | } | |
7858 | ||
7859 | static void | |
7860 | print_one_catch_solib (struct breakpoint *b, struct bp_location **locs) | |
7861 | { | |
7862 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7863 | struct value_print_options opts; | |
7864 | struct ui_out *uiout = current_uiout; | |
7865 | char *msg; | |
7866 | ||
7867 | get_user_print_options (&opts); | |
7868 | /* Field 4, the address, is omitted (which makes the columns not | |
7869 | line up too nicely with the headers, but the effect is relatively | |
7870 | readable). */ | |
7871 | if (opts.addressprint) | |
7872 | { | |
7873 | annotate_field (4); | |
7874 | ui_out_field_skip (uiout, "addr"); | |
7875 | } | |
7876 | ||
7877 | annotate_field (5); | |
7878 | if (self->is_load) | |
7879 | { | |
7880 | if (self->regex) | |
7881 | msg = xstrprintf (_("load of library matching %s"), self->regex); | |
7882 | else | |
7883 | msg = xstrdup (_("load of library")); | |
7884 | } | |
7885 | else | |
7886 | { | |
7887 | if (self->regex) | |
7888 | msg = xstrprintf (_("unload of library matching %s"), self->regex); | |
7889 | else | |
7890 | msg = xstrdup (_("unload of library")); | |
7891 | } | |
7892 | ui_out_field_string (uiout, "what", msg); | |
7893 | xfree (msg); | |
8ac3646f TT |
7894 | |
7895 | if (ui_out_is_mi_like_p (uiout)) | |
7896 | ui_out_field_string (uiout, "catch-type", | |
7897 | self->is_load ? "load" : "unload"); | |
edcc5120 TT |
7898 | } |
7899 | ||
7900 | static void | |
7901 | print_mention_catch_solib (struct breakpoint *b) | |
7902 | { | |
7903 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7904 | ||
7905 | printf_filtered (_("Catchpoint %d (%s)"), b->number, | |
7906 | self->is_load ? "load" : "unload"); | |
7907 | } | |
7908 | ||
7909 | static void | |
7910 | print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp) | |
7911 | { | |
7912 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7913 | ||
7914 | fprintf_unfiltered (fp, "%s %s", | |
7915 | b->disposition == disp_del ? "tcatch" : "catch", | |
7916 | self->is_load ? "load" : "unload"); | |
7917 | if (self->regex) | |
7918 | fprintf_unfiltered (fp, " %s", self->regex); | |
7919 | fprintf_unfiltered (fp, "\n"); | |
7920 | } | |
7921 | ||
7922 | static struct breakpoint_ops catch_solib_breakpoint_ops; | |
7923 | ||
91985142 MG |
7924 | /* Shared helper function (MI and CLI) for creating and installing |
7925 | a shared object event catchpoint. If IS_LOAD is non-zero then | |
7926 | the events to be caught are load events, otherwise they are | |
7927 | unload events. If IS_TEMP is non-zero the catchpoint is a | |
7928 | temporary one. If ENABLED is non-zero the catchpoint is | |
7929 | created in an enabled state. */ | |
edcc5120 | 7930 | |
91985142 MG |
7931 | void |
7932 | add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled) | |
edcc5120 TT |
7933 | { |
7934 | struct solib_catchpoint *c; | |
7935 | struct gdbarch *gdbarch = get_current_arch (); | |
edcc5120 TT |
7936 | struct cleanup *cleanup; |
7937 | ||
edcc5120 TT |
7938 | if (!arg) |
7939 | arg = ""; | |
7940 | arg = skip_spaces (arg); | |
7941 | ||
7942 | c = XCNEW (struct solib_catchpoint); | |
7943 | cleanup = make_cleanup (xfree, c); | |
7944 | ||
7945 | if (*arg != '\0') | |
7946 | { | |
7947 | int errcode; | |
7948 | ||
7949 | errcode = regcomp (&c->compiled, arg, REG_NOSUB); | |
7950 | if (errcode != 0) | |
7951 | { | |
7952 | char *err = get_regcomp_error (errcode, &c->compiled); | |
7953 | ||
7954 | make_cleanup (xfree, err); | |
7955 | error (_("Invalid regexp (%s): %s"), err, arg); | |
7956 | } | |
7957 | c->regex = xstrdup (arg); | |
7958 | } | |
7959 | ||
7960 | c->is_load = is_load; | |
91985142 | 7961 | init_catchpoint (&c->base, gdbarch, is_temp, NULL, |
edcc5120 TT |
7962 | &catch_solib_breakpoint_ops); |
7963 | ||
91985142 MG |
7964 | c->base.enable_state = enabled ? bp_enabled : bp_disabled; |
7965 | ||
edcc5120 TT |
7966 | discard_cleanups (cleanup); |
7967 | install_breakpoint (0, &c->base, 1); | |
7968 | } | |
7969 | ||
91985142 MG |
7970 | /* A helper function that does all the work for "catch load" and |
7971 | "catch unload". */ | |
7972 | ||
7973 | static void | |
7974 | catch_load_or_unload (char *arg, int from_tty, int is_load, | |
7975 | struct cmd_list_element *command) | |
7976 | { | |
7977 | int tempflag; | |
7978 | const int enabled = 1; | |
7979 | ||
7980 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
7981 | ||
7982 | add_solib_catchpoint (arg, is_load, tempflag, enabled); | |
7983 | } | |
7984 | ||
edcc5120 TT |
7985 | static void |
7986 | catch_load_command_1 (char *arg, int from_tty, | |
7987 | struct cmd_list_element *command) | |
7988 | { | |
7989 | catch_load_or_unload (arg, from_tty, 1, command); | |
7990 | } | |
7991 | ||
7992 | static void | |
7993 | catch_unload_command_1 (char *arg, int from_tty, | |
7994 | struct cmd_list_element *command) | |
7995 | { | |
7996 | catch_load_or_unload (arg, from_tty, 0, command); | |
7997 | } | |
7998 | ||
be5c67c1 PA |
7999 | /* An instance of this type is used to represent a syscall catchpoint. |
8000 | It includes a "struct breakpoint" as a kind of base class; users | |
8001 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
8002 | really of this type iff its ops pointer points to | |
8003 | CATCH_SYSCALL_BREAKPOINT_OPS. */ | |
8004 | ||
8005 | struct syscall_catchpoint | |
8006 | { | |
8007 | /* The base class. */ | |
8008 | struct breakpoint base; | |
8009 | ||
8010 | /* Syscall numbers used for the 'catch syscall' feature. If no | |
8011 | syscall has been specified for filtering, its value is NULL. | |
8012 | Otherwise, it holds a list of all syscalls to be caught. The | |
8013 | list elements are allocated with xmalloc. */ | |
8014 | VEC(int) *syscalls_to_be_caught; | |
8015 | }; | |
8016 | ||
8017 | /* Implement the "dtor" breakpoint_ops method for syscall | |
8018 | catchpoints. */ | |
8019 | ||
8020 | static void | |
8021 | dtor_catch_syscall (struct breakpoint *b) | |
8022 | { | |
8023 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; | |
8024 | ||
8025 | VEC_free (int, c->syscalls_to_be_caught); | |
348d480f | 8026 | |
2060206e | 8027 | base_breakpoint_ops.dtor (b); |
be5c67c1 PA |
8028 | } |
8029 | ||
fa3064dd YQ |
8030 | static const struct inferior_data *catch_syscall_inferior_data = NULL; |
8031 | ||
8032 | struct catch_syscall_inferior_data | |
8033 | { | |
8034 | /* We keep a count of the number of times the user has requested a | |
8035 | particular syscall to be tracked, and pass this information to the | |
8036 | target. This lets capable targets implement filtering directly. */ | |
8037 | ||
8038 | /* Number of times that "any" syscall is requested. */ | |
8039 | int any_syscall_count; | |
8040 | ||
8041 | /* Count of each system call. */ | |
8042 | VEC(int) *syscalls_counts; | |
8043 | ||
8044 | /* This counts all syscall catch requests, so we can readily determine | |
8045 | if any catching is necessary. */ | |
8046 | int total_syscalls_count; | |
8047 | }; | |
8048 | ||
8049 | static struct catch_syscall_inferior_data* | |
8050 | get_catch_syscall_inferior_data (struct inferior *inf) | |
8051 | { | |
8052 | struct catch_syscall_inferior_data *inf_data; | |
8053 | ||
8054 | inf_data = inferior_data (inf, catch_syscall_inferior_data); | |
8055 | if (inf_data == NULL) | |
8056 | { | |
8057 | inf_data = XZALLOC (struct catch_syscall_inferior_data); | |
8058 | set_inferior_data (inf, catch_syscall_inferior_data, inf_data); | |
8059 | } | |
8060 | ||
8061 | return inf_data; | |
8062 | } | |
8063 | ||
8064 | static void | |
8065 | catch_syscall_inferior_data_cleanup (struct inferior *inf, void *arg) | |
8066 | { | |
8067 | xfree (arg); | |
8068 | } | |
8069 | ||
8070 | ||
a96d9b2e SDJ |
8071 | /* Implement the "insert" breakpoint_ops method for syscall |
8072 | catchpoints. */ | |
8073 | ||
77b06cd7 TJB |
8074 | static int |
8075 | insert_catch_syscall (struct bp_location *bl) | |
a96d9b2e | 8076 | { |
be5c67c1 | 8077 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 8078 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
8079 | struct catch_syscall_inferior_data *inf_data |
8080 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 8081 | |
fa3064dd | 8082 | ++inf_data->total_syscalls_count; |
be5c67c1 | 8083 | if (!c->syscalls_to_be_caught) |
fa3064dd | 8084 | ++inf_data->any_syscall_count; |
a96d9b2e SDJ |
8085 | else |
8086 | { | |
8087 | int i, iter; | |
cc59ec59 | 8088 | |
a96d9b2e | 8089 | for (i = 0; |
be5c67c1 | 8090 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8091 | i++) |
8092 | { | |
8093 | int elem; | |
cc59ec59 | 8094 | |
fa3064dd | 8095 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e | 8096 | { |
fa3064dd | 8097 | int old_size = VEC_length (int, inf_data->syscalls_counts); |
3e43a32a MS |
8098 | uintptr_t vec_addr_offset |
8099 | = old_size * ((uintptr_t) sizeof (int)); | |
a96d9b2e | 8100 | uintptr_t vec_addr; |
fa3064dd YQ |
8101 | VEC_safe_grow (int, inf_data->syscalls_counts, iter + 1); |
8102 | vec_addr = ((uintptr_t) VEC_address (int, | |
8103 | inf_data->syscalls_counts) | |
8104 | + vec_addr_offset); | |
a96d9b2e SDJ |
8105 | memset ((void *) vec_addr, 0, |
8106 | (iter + 1 - old_size) * sizeof (int)); | |
8107 | } | |
fa3064dd YQ |
8108 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
8109 | VEC_replace (int, inf_data->syscalls_counts, iter, ++elem); | |
a96d9b2e SDJ |
8110 | } |
8111 | } | |
8112 | ||
77b06cd7 | 8113 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), |
fa3064dd YQ |
8114 | inf_data->total_syscalls_count != 0, |
8115 | inf_data->any_syscall_count, | |
8116 | VEC_length (int, | |
8117 | inf_data->syscalls_counts), | |
8118 | VEC_address (int, | |
8119 | inf_data->syscalls_counts)); | |
a96d9b2e SDJ |
8120 | } |
8121 | ||
8122 | /* Implement the "remove" breakpoint_ops method for syscall | |
8123 | catchpoints. */ | |
8124 | ||
8125 | static int | |
77b06cd7 | 8126 | remove_catch_syscall (struct bp_location *bl) |
a96d9b2e | 8127 | { |
be5c67c1 | 8128 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 8129 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
8130 | struct catch_syscall_inferior_data *inf_data |
8131 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 8132 | |
fa3064dd | 8133 | --inf_data->total_syscalls_count; |
be5c67c1 | 8134 | if (!c->syscalls_to_be_caught) |
fa3064dd | 8135 | --inf_data->any_syscall_count; |
a96d9b2e SDJ |
8136 | else |
8137 | { | |
8138 | int i, iter; | |
cc59ec59 | 8139 | |
a96d9b2e | 8140 | for (i = 0; |
be5c67c1 | 8141 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8142 | i++) |
8143 | { | |
8144 | int elem; | |
fa3064dd | 8145 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e SDJ |
8146 | /* Shouldn't happen. */ |
8147 | continue; | |
fa3064dd YQ |
8148 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
8149 | VEC_replace (int, inf_data->syscalls_counts, iter, --elem); | |
a96d9b2e SDJ |
8150 | } |
8151 | } | |
8152 | ||
8153 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), | |
fa3064dd YQ |
8154 | inf_data->total_syscalls_count != 0, |
8155 | inf_data->any_syscall_count, | |
8156 | VEC_length (int, | |
8157 | inf_data->syscalls_counts), | |
3e43a32a | 8158 | VEC_address (int, |
fa3064dd | 8159 | inf_data->syscalls_counts)); |
a96d9b2e SDJ |
8160 | } |
8161 | ||
8162 | /* Implement the "breakpoint_hit" breakpoint_ops method for syscall | |
8163 | catchpoints. */ | |
8164 | ||
8165 | static int | |
f1310107 | 8166 | breakpoint_hit_catch_syscall (const struct bp_location *bl, |
09ac7c10 TT |
8167 | struct address_space *aspace, CORE_ADDR bp_addr, |
8168 | const struct target_waitstatus *ws) | |
a96d9b2e | 8169 | { |
4a64f543 MS |
8170 | /* We must check if we are catching specific syscalls in this |
8171 | breakpoint. If we are, then we must guarantee that the called | |
8172 | syscall is the same syscall we are catching. */ | |
a96d9b2e | 8173 | int syscall_number = 0; |
be5c67c1 PA |
8174 | const struct syscall_catchpoint *c |
8175 | = (const struct syscall_catchpoint *) bl->owner; | |
a96d9b2e | 8176 | |
f90263c1 TT |
8177 | if (ws->kind != TARGET_WAITKIND_SYSCALL_ENTRY |
8178 | && ws->kind != TARGET_WAITKIND_SYSCALL_RETURN) | |
a96d9b2e SDJ |
8179 | return 0; |
8180 | ||
f90263c1 TT |
8181 | syscall_number = ws->value.syscall_number; |
8182 | ||
a96d9b2e | 8183 | /* Now, checking if the syscall is the same. */ |
be5c67c1 | 8184 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
8185 | { |
8186 | int i, iter; | |
cc59ec59 | 8187 | |
a96d9b2e | 8188 | for (i = 0; |
be5c67c1 | 8189 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8190 | i++) |
8191 | if (syscall_number == iter) | |
8192 | break; | |
8193 | /* Not the same. */ | |
8194 | if (!iter) | |
8195 | return 0; | |
8196 | } | |
8197 | ||
8198 | return 1; | |
8199 | } | |
8200 | ||
8201 | /* Implement the "print_it" breakpoint_ops method for syscall | |
8202 | catchpoints. */ | |
8203 | ||
8204 | static enum print_stop_action | |
348d480f | 8205 | print_it_catch_syscall (bpstat bs) |
a96d9b2e | 8206 | { |
36dfb11c | 8207 | struct ui_out *uiout = current_uiout; |
348d480f | 8208 | struct breakpoint *b = bs->breakpoint_at; |
a96d9b2e SDJ |
8209 | /* These are needed because we want to know in which state a |
8210 | syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY | |
8211 | or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we | |
8212 | must print "called syscall" or "returned from syscall". */ | |
8213 | ptid_t ptid; | |
8214 | struct target_waitstatus last; | |
8215 | struct syscall s; | |
a96d9b2e SDJ |
8216 | |
8217 | get_last_target_status (&ptid, &last); | |
8218 | ||
8219 | get_syscall_by_number (last.value.syscall_number, &s); | |
8220 | ||
8221 | annotate_catchpoint (b->number); | |
8222 | ||
36dfb11c TT |
8223 | if (b->disposition == disp_del) |
8224 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
a96d9b2e | 8225 | else |
36dfb11c TT |
8226 | ui_out_text (uiout, "\nCatchpoint "); |
8227 | if (ui_out_is_mi_like_p (uiout)) | |
8228 | { | |
8229 | ui_out_field_string (uiout, "reason", | |
8230 | async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY | |
8231 | ? EXEC_ASYNC_SYSCALL_ENTRY | |
8232 | : EXEC_ASYNC_SYSCALL_RETURN)); | |
8233 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
8234 | } | |
8235 | ui_out_field_int (uiout, "bkptno", b->number); | |
a96d9b2e SDJ |
8236 | |
8237 | if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY) | |
36dfb11c TT |
8238 | ui_out_text (uiout, " (call to syscall "); |
8239 | else | |
8240 | ui_out_text (uiout, " (returned from syscall "); | |
a96d9b2e | 8241 | |
36dfb11c TT |
8242 | if (s.name == NULL || ui_out_is_mi_like_p (uiout)) |
8243 | ui_out_field_int (uiout, "syscall-number", last.value.syscall_number); | |
8244 | if (s.name != NULL) | |
8245 | ui_out_field_string (uiout, "syscall-name", s.name); | |
8246 | ||
8247 | ui_out_text (uiout, "), "); | |
a96d9b2e SDJ |
8248 | |
8249 | return PRINT_SRC_AND_LOC; | |
8250 | } | |
8251 | ||
8252 | /* Implement the "print_one" breakpoint_ops method for syscall | |
8253 | catchpoints. */ | |
8254 | ||
8255 | static void | |
8256 | print_one_catch_syscall (struct breakpoint *b, | |
f1310107 | 8257 | struct bp_location **last_loc) |
a96d9b2e | 8258 | { |
be5c67c1 | 8259 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
a96d9b2e | 8260 | struct value_print_options opts; |
79a45e25 | 8261 | struct ui_out *uiout = current_uiout; |
a96d9b2e SDJ |
8262 | |
8263 | get_user_print_options (&opts); | |
4a64f543 MS |
8264 | /* Field 4, the address, is omitted (which makes the columns not |
8265 | line up too nicely with the headers, but the effect is relatively | |
8266 | readable). */ | |
a96d9b2e SDJ |
8267 | if (opts.addressprint) |
8268 | ui_out_field_skip (uiout, "addr"); | |
8269 | annotate_field (5); | |
8270 | ||
be5c67c1 PA |
8271 | if (c->syscalls_to_be_caught |
8272 | && VEC_length (int, c->syscalls_to_be_caught) > 1) | |
a96d9b2e SDJ |
8273 | ui_out_text (uiout, "syscalls \""); |
8274 | else | |
8275 | ui_out_text (uiout, "syscall \""); | |
8276 | ||
be5c67c1 | 8277 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
8278 | { |
8279 | int i, iter; | |
8280 | char *text = xstrprintf ("%s", ""); | |
cc59ec59 | 8281 | |
a96d9b2e | 8282 | for (i = 0; |
be5c67c1 | 8283 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8284 | i++) |
8285 | { | |
8286 | char *x = text; | |
8287 | struct syscall s; | |
8288 | get_syscall_by_number (iter, &s); | |
8289 | ||
8290 | if (s.name != NULL) | |
8291 | text = xstrprintf ("%s%s, ", text, s.name); | |
8292 | else | |
8293 | text = xstrprintf ("%s%d, ", text, iter); | |
8294 | ||
8295 | /* We have to xfree the last 'text' (now stored at 'x') | |
e5dd4106 | 8296 | because xstrprintf dynamically allocates new space for it |
a96d9b2e SDJ |
8297 | on every call. */ |
8298 | xfree (x); | |
8299 | } | |
8300 | /* Remove the last comma. */ | |
8301 | text[strlen (text) - 2] = '\0'; | |
8302 | ui_out_field_string (uiout, "what", text); | |
8303 | } | |
8304 | else | |
8305 | ui_out_field_string (uiout, "what", "<any syscall>"); | |
8306 | ui_out_text (uiout, "\" "); | |
8ac3646f TT |
8307 | |
8308 | if (ui_out_is_mi_like_p (uiout)) | |
8309 | ui_out_field_string (uiout, "catch-type", "syscall"); | |
a96d9b2e SDJ |
8310 | } |
8311 | ||
8312 | /* Implement the "print_mention" breakpoint_ops method for syscall | |
8313 | catchpoints. */ | |
8314 | ||
8315 | static void | |
8316 | print_mention_catch_syscall (struct breakpoint *b) | |
8317 | { | |
be5c67c1 PA |
8318 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
8319 | ||
8320 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
8321 | { |
8322 | int i, iter; | |
8323 | ||
be5c67c1 | 8324 | if (VEC_length (int, c->syscalls_to_be_caught) > 1) |
a96d9b2e SDJ |
8325 | printf_filtered (_("Catchpoint %d (syscalls"), b->number); |
8326 | else | |
8327 | printf_filtered (_("Catchpoint %d (syscall"), b->number); | |
8328 | ||
8329 | for (i = 0; | |
be5c67c1 | 8330 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
8331 | i++) |
8332 | { | |
8333 | struct syscall s; | |
8334 | get_syscall_by_number (iter, &s); | |
8335 | ||
8336 | if (s.name) | |
8337 | printf_filtered (" '%s' [%d]", s.name, s.number); | |
8338 | else | |
8339 | printf_filtered (" %d", s.number); | |
8340 | } | |
8341 | printf_filtered (")"); | |
8342 | } | |
8343 | else | |
8344 | printf_filtered (_("Catchpoint %d (any syscall)"), | |
8345 | b->number); | |
8346 | } | |
8347 | ||
6149aea9 PA |
8348 | /* Implement the "print_recreate" breakpoint_ops method for syscall |
8349 | catchpoints. */ | |
8350 | ||
8351 | static void | |
8352 | print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp) | |
8353 | { | |
be5c67c1 PA |
8354 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
8355 | ||
6149aea9 PA |
8356 | fprintf_unfiltered (fp, "catch syscall"); |
8357 | ||
be5c67c1 | 8358 | if (c->syscalls_to_be_caught) |
6149aea9 PA |
8359 | { |
8360 | int i, iter; | |
8361 | ||
8362 | for (i = 0; | |
be5c67c1 | 8363 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
6149aea9 PA |
8364 | i++) |
8365 | { | |
8366 | struct syscall s; | |
8367 | ||
8368 | get_syscall_by_number (iter, &s); | |
8369 | if (s.name) | |
8370 | fprintf_unfiltered (fp, " %s", s.name); | |
8371 | else | |
8372 | fprintf_unfiltered (fp, " %d", s.number); | |
8373 | } | |
8374 | } | |
d9b3f62e | 8375 | print_recreate_thread (b, fp); |
6149aea9 PA |
8376 | } |
8377 | ||
a96d9b2e SDJ |
8378 | /* The breakpoint_ops structure to be used in syscall catchpoints. */ |
8379 | ||
2060206e | 8380 | static struct breakpoint_ops catch_syscall_breakpoint_ops; |
a96d9b2e SDJ |
8381 | |
8382 | /* Returns non-zero if 'b' is a syscall catchpoint. */ | |
8383 | ||
8384 | static int | |
8385 | syscall_catchpoint_p (struct breakpoint *b) | |
8386 | { | |
8387 | return (b->ops == &catch_syscall_breakpoint_ops); | |
8388 | } | |
8389 | ||
346774a9 PA |
8390 | /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG |
8391 | is non-zero, then make the breakpoint temporary. If COND_STRING is | |
8392 | not NULL, then store it in the breakpoint. OPS, if not NULL, is | |
8393 | the breakpoint_ops structure associated to the catchpoint. */ | |
ce78b96d | 8394 | |
ab04a2af | 8395 | void |
346774a9 PA |
8396 | init_catchpoint (struct breakpoint *b, |
8397 | struct gdbarch *gdbarch, int tempflag, | |
8398 | char *cond_string, | |
c0a91b2b | 8399 | const struct breakpoint_ops *ops) |
c906108c | 8400 | { |
c5aa993b | 8401 | struct symtab_and_line sal; |
346774a9 | 8402 | |
fe39c653 | 8403 | init_sal (&sal); |
6c95b8df | 8404 | sal.pspace = current_program_space; |
c5aa993b | 8405 | |
28010a5d | 8406 | init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops); |
ce78b96d | 8407 | |
1b36a34b | 8408 | b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string); |
b5de0fa7 | 8409 | b->disposition = tempflag ? disp_del : disp_donttouch; |
346774a9 PA |
8410 | } |
8411 | ||
28010a5d | 8412 | void |
3ea46bff | 8413 | install_breakpoint (int internal, struct breakpoint *b, int update_gll) |
c56053d2 PA |
8414 | { |
8415 | add_to_breakpoint_chain (b); | |
3a5c3e22 | 8416 | set_breakpoint_number (internal, b); |
558a9d82 YQ |
8417 | if (is_tracepoint (b)) |
8418 | set_tracepoint_count (breakpoint_count); | |
3a5c3e22 PA |
8419 | if (!internal) |
8420 | mention (b); | |
c56053d2 | 8421 | observer_notify_breakpoint_created (b); |
3ea46bff YQ |
8422 | |
8423 | if (update_gll) | |
8424 | update_global_location_list (1); | |
c56053d2 PA |
8425 | } |
8426 | ||
9b70b993 | 8427 | static void |
a6d9a66e UW |
8428 | create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch, |
8429 | int tempflag, char *cond_string, | |
c0a91b2b | 8430 | const struct breakpoint_ops *ops) |
c906108c | 8431 | { |
e29a4733 | 8432 | struct fork_catchpoint *c = XNEW (struct fork_catchpoint); |
ce78b96d | 8433 | |
e29a4733 PA |
8434 | init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops); |
8435 | ||
8436 | c->forked_inferior_pid = null_ptid; | |
8437 | ||
3ea46bff | 8438 | install_breakpoint (0, &c->base, 1); |
c906108c SS |
8439 | } |
8440 | ||
fe798b75 JB |
8441 | /* Exec catchpoints. */ |
8442 | ||
b4d90040 PA |
8443 | /* An instance of this type is used to represent an exec catchpoint. |
8444 | It includes a "struct breakpoint" as a kind of base class; users | |
8445 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
8446 | really of this type iff its ops pointer points to | |
8447 | CATCH_EXEC_BREAKPOINT_OPS. */ | |
8448 | ||
8449 | struct exec_catchpoint | |
8450 | { | |
8451 | /* The base class. */ | |
8452 | struct breakpoint base; | |
8453 | ||
8454 | /* Filename of a program whose exec triggered this catchpoint. | |
8455 | This field is only valid immediately after this catchpoint has | |
8456 | triggered. */ | |
8457 | char *exec_pathname; | |
8458 | }; | |
8459 | ||
8460 | /* Implement the "dtor" breakpoint_ops method for exec | |
8461 | catchpoints. */ | |
8462 | ||
8463 | static void | |
8464 | dtor_catch_exec (struct breakpoint *b) | |
8465 | { | |
8466 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; | |
8467 | ||
8468 | xfree (c->exec_pathname); | |
348d480f | 8469 | |
2060206e | 8470 | base_breakpoint_ops.dtor (b); |
b4d90040 PA |
8471 | } |
8472 | ||
77b06cd7 TJB |
8473 | static int |
8474 | insert_catch_exec (struct bp_location *bl) | |
c906108c | 8475 | { |
77b06cd7 | 8476 | return target_insert_exec_catchpoint (PIDGET (inferior_ptid)); |
fe798b75 | 8477 | } |
c906108c | 8478 | |
fe798b75 | 8479 | static int |
77b06cd7 | 8480 | remove_catch_exec (struct bp_location *bl) |
fe798b75 JB |
8481 | { |
8482 | return target_remove_exec_catchpoint (PIDGET (inferior_ptid)); | |
8483 | } | |
c906108c | 8484 | |
fe798b75 | 8485 | static int |
f1310107 | 8486 | breakpoint_hit_catch_exec (const struct bp_location *bl, |
09ac7c10 TT |
8487 | struct address_space *aspace, CORE_ADDR bp_addr, |
8488 | const struct target_waitstatus *ws) | |
fe798b75 | 8489 | { |
b4d90040 PA |
8490 | struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner; |
8491 | ||
f90263c1 TT |
8492 | if (ws->kind != TARGET_WAITKIND_EXECD) |
8493 | return 0; | |
8494 | ||
8495 | c->exec_pathname = xstrdup (ws->value.execd_pathname); | |
8496 | return 1; | |
fe798b75 | 8497 | } |
c906108c | 8498 | |
fe798b75 | 8499 | static enum print_stop_action |
348d480f | 8500 | print_it_catch_exec (bpstat bs) |
fe798b75 | 8501 | { |
36dfb11c | 8502 | struct ui_out *uiout = current_uiout; |
348d480f | 8503 | struct breakpoint *b = bs->breakpoint_at; |
b4d90040 PA |
8504 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
8505 | ||
fe798b75 | 8506 | annotate_catchpoint (b->number); |
36dfb11c TT |
8507 | if (b->disposition == disp_del) |
8508 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
8509 | else | |
8510 | ui_out_text (uiout, "\nCatchpoint "); | |
8511 | if (ui_out_is_mi_like_p (uiout)) | |
8512 | { | |
8513 | ui_out_field_string (uiout, "reason", | |
8514 | async_reason_lookup (EXEC_ASYNC_EXEC)); | |
8515 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
8516 | } | |
8517 | ui_out_field_int (uiout, "bkptno", b->number); | |
8518 | ui_out_text (uiout, " (exec'd "); | |
8519 | ui_out_field_string (uiout, "new-exec", c->exec_pathname); | |
8520 | ui_out_text (uiout, "), "); | |
8521 | ||
fe798b75 | 8522 | return PRINT_SRC_AND_LOC; |
c906108c SS |
8523 | } |
8524 | ||
fe798b75 | 8525 | static void |
a6d9a66e | 8526 | print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc) |
fe798b75 | 8527 | { |
b4d90040 | 8528 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
fe798b75 | 8529 | struct value_print_options opts; |
79a45e25 | 8530 | struct ui_out *uiout = current_uiout; |
fe798b75 JB |
8531 | |
8532 | get_user_print_options (&opts); | |
8533 | ||
8534 | /* Field 4, the address, is omitted (which makes the columns | |
8535 | not line up too nicely with the headers, but the effect | |
8536 | is relatively readable). */ | |
8537 | if (opts.addressprint) | |
8538 | ui_out_field_skip (uiout, "addr"); | |
8539 | annotate_field (5); | |
8540 | ui_out_text (uiout, "exec"); | |
b4d90040 | 8541 | if (c->exec_pathname != NULL) |
fe798b75 JB |
8542 | { |
8543 | ui_out_text (uiout, ", program \""); | |
b4d90040 | 8544 | ui_out_field_string (uiout, "what", c->exec_pathname); |
fe798b75 JB |
8545 | ui_out_text (uiout, "\" "); |
8546 | } | |
8ac3646f TT |
8547 | |
8548 | if (ui_out_is_mi_like_p (uiout)) | |
8549 | ui_out_field_string (uiout, "catch-type", "exec"); | |
fe798b75 JB |
8550 | } |
8551 | ||
8552 | static void | |
8553 | print_mention_catch_exec (struct breakpoint *b) | |
8554 | { | |
8555 | printf_filtered (_("Catchpoint %d (exec)"), b->number); | |
8556 | } | |
8557 | ||
6149aea9 PA |
8558 | /* Implement the "print_recreate" breakpoint_ops method for exec |
8559 | catchpoints. */ | |
8560 | ||
8561 | static void | |
8562 | print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp) | |
8563 | { | |
8564 | fprintf_unfiltered (fp, "catch exec"); | |
d9b3f62e | 8565 | print_recreate_thread (b, fp); |
6149aea9 PA |
8566 | } |
8567 | ||
2060206e | 8568 | static struct breakpoint_ops catch_exec_breakpoint_ops; |
fe798b75 | 8569 | |
a96d9b2e SDJ |
8570 | static void |
8571 | create_syscall_event_catchpoint (int tempflag, VEC(int) *filter, | |
c0a91b2b | 8572 | const struct breakpoint_ops *ops) |
a96d9b2e | 8573 | { |
be5c67c1 | 8574 | struct syscall_catchpoint *c; |
a96d9b2e | 8575 | struct gdbarch *gdbarch = get_current_arch (); |
a96d9b2e | 8576 | |
be5c67c1 PA |
8577 | c = XNEW (struct syscall_catchpoint); |
8578 | init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops); | |
8579 | c->syscalls_to_be_caught = filter; | |
a96d9b2e | 8580 | |
3ea46bff | 8581 | install_breakpoint (0, &c->base, 1); |
a96d9b2e SDJ |
8582 | } |
8583 | ||
c906108c | 8584 | static int |
fba45db2 | 8585 | hw_breakpoint_used_count (void) |
c906108c | 8586 | { |
c906108c | 8587 | int i = 0; |
f1310107 TJB |
8588 | struct breakpoint *b; |
8589 | struct bp_location *bl; | |
c906108c SS |
8590 | |
8591 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8592 | { |
d6b74ac4 | 8593 | if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b)) |
f1310107 TJB |
8594 | for (bl = b->loc; bl; bl = bl->next) |
8595 | { | |
8596 | /* Special types of hardware breakpoints may use more than | |
8597 | one register. */ | |
348d480f | 8598 | i += b->ops->resources_needed (bl); |
f1310107 | 8599 | } |
c5aa993b | 8600 | } |
c906108c SS |
8601 | |
8602 | return i; | |
8603 | } | |
8604 | ||
a1398e0c PA |
8605 | /* Returns the resources B would use if it were a hardware |
8606 | watchpoint. */ | |
8607 | ||
c906108c | 8608 | static int |
a1398e0c | 8609 | hw_watchpoint_use_count (struct breakpoint *b) |
c906108c | 8610 | { |
c906108c | 8611 | int i = 0; |
e09342b5 | 8612 | struct bp_location *bl; |
c906108c | 8613 | |
a1398e0c PA |
8614 | if (!breakpoint_enabled (b)) |
8615 | return 0; | |
8616 | ||
8617 | for (bl = b->loc; bl; bl = bl->next) | |
8618 | { | |
8619 | /* Special types of hardware watchpoints may use more than | |
8620 | one register. */ | |
8621 | i += b->ops->resources_needed (bl); | |
8622 | } | |
8623 | ||
8624 | return i; | |
8625 | } | |
8626 | ||
8627 | /* Returns the sum the used resources of all hardware watchpoints of | |
8628 | type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED | |
8629 | the sum of the used resources of all hardware watchpoints of other | |
8630 | types _not_ TYPE. */ | |
8631 | ||
8632 | static int | |
8633 | hw_watchpoint_used_count_others (struct breakpoint *except, | |
8634 | enum bptype type, int *other_type_used) | |
8635 | { | |
8636 | int i = 0; | |
8637 | struct breakpoint *b; | |
8638 | ||
c906108c SS |
8639 | *other_type_used = 0; |
8640 | ALL_BREAKPOINTS (b) | |
e09342b5 | 8641 | { |
a1398e0c PA |
8642 | if (b == except) |
8643 | continue; | |
e09342b5 TJB |
8644 | if (!breakpoint_enabled (b)) |
8645 | continue; | |
8646 | ||
a1398e0c PA |
8647 | if (b->type == type) |
8648 | i += hw_watchpoint_use_count (b); | |
8649 | else if (is_hardware_watchpoint (b)) | |
8650 | *other_type_used = 1; | |
e09342b5 TJB |
8651 | } |
8652 | ||
c906108c SS |
8653 | return i; |
8654 | } | |
8655 | ||
c906108c | 8656 | void |
fba45db2 | 8657 | disable_watchpoints_before_interactive_call_start (void) |
c906108c | 8658 | { |
c5aa993b | 8659 | struct breakpoint *b; |
c906108c SS |
8660 | |
8661 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8662 | { |
cc60f2e3 | 8663 | if (is_watchpoint (b) && breakpoint_enabled (b)) |
c5aa993b | 8664 | { |
b5de0fa7 | 8665 | b->enable_state = bp_call_disabled; |
b60e7edf | 8666 | update_global_location_list (0); |
c5aa993b JM |
8667 | } |
8668 | } | |
c906108c SS |
8669 | } |
8670 | ||
8671 | void | |
fba45db2 | 8672 | enable_watchpoints_after_interactive_call_stop (void) |
c906108c | 8673 | { |
c5aa993b | 8674 | struct breakpoint *b; |
c906108c SS |
8675 | |
8676 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8677 | { |
cc60f2e3 | 8678 | if (is_watchpoint (b) && b->enable_state == bp_call_disabled) |
c5aa993b | 8679 | { |
b5de0fa7 | 8680 | b->enable_state = bp_enabled; |
b60e7edf | 8681 | update_global_location_list (1); |
c5aa993b JM |
8682 | } |
8683 | } | |
c906108c SS |
8684 | } |
8685 | ||
8bea4e01 UW |
8686 | void |
8687 | disable_breakpoints_before_startup (void) | |
8688 | { | |
6c95b8df | 8689 | current_program_space->executing_startup = 1; |
f8eba3c6 | 8690 | update_global_location_list (0); |
8bea4e01 UW |
8691 | } |
8692 | ||
8693 | void | |
8694 | enable_breakpoints_after_startup (void) | |
8695 | { | |
6c95b8df | 8696 | current_program_space->executing_startup = 0; |
f8eba3c6 | 8697 | breakpoint_re_set (); |
8bea4e01 UW |
8698 | } |
8699 | ||
c906108c SS |
8700 | |
8701 | /* Set a breakpoint that will evaporate an end of command | |
8702 | at address specified by SAL. | |
8703 | Restrict it to frame FRAME if FRAME is nonzero. */ | |
8704 | ||
8705 | struct breakpoint * | |
a6d9a66e UW |
8706 | set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal, |
8707 | struct frame_id frame_id, enum bptype type) | |
c906108c | 8708 | { |
52f0bd74 | 8709 | struct breakpoint *b; |
edb3359d | 8710 | |
193facb3 JK |
8711 | /* If FRAME_ID is valid, it should be a real frame, not an inlined or |
8712 | tail-called one. */ | |
8713 | gdb_assert (!frame_id_artificial_p (frame_id)); | |
edb3359d | 8714 | |
06edf0c0 | 8715 | b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops); |
b5de0fa7 EZ |
8716 | b->enable_state = bp_enabled; |
8717 | b->disposition = disp_donttouch; | |
818dd999 | 8718 | b->frame_id = frame_id; |
c906108c | 8719 | |
4a64f543 MS |
8720 | /* If we're debugging a multi-threaded program, then we want |
8721 | momentary breakpoints to be active in only a single thread of | |
8722 | control. */ | |
39f77062 KB |
8723 | if (in_thread_list (inferior_ptid)) |
8724 | b->thread = pid_to_thread_id (inferior_ptid); | |
c906108c | 8725 | |
b60e7edf | 8726 | update_global_location_list_nothrow (1); |
74960c60 | 8727 | |
c906108c SS |
8728 | return b; |
8729 | } | |
611c83ae | 8730 | |
06edf0c0 PA |
8731 | /* Make a momentary breakpoint based on the master breakpoint ORIG. |
8732 | The new breakpoint will have type TYPE, and use OPS as it | |
8733 | breakpoint_ops. */ | |
e58b0e63 | 8734 | |
06edf0c0 PA |
8735 | static struct breakpoint * |
8736 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
8737 | enum bptype type, | |
c0a91b2b | 8738 | const struct breakpoint_ops *ops) |
e58b0e63 PA |
8739 | { |
8740 | struct breakpoint *copy; | |
8741 | ||
06edf0c0 | 8742 | copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops); |
e58b0e63 | 8743 | copy->loc = allocate_bp_location (copy); |
0e30163f | 8744 | set_breakpoint_location_function (copy->loc, 1); |
e58b0e63 | 8745 | |
a6d9a66e | 8746 | copy->loc->gdbarch = orig->loc->gdbarch; |
e58b0e63 PA |
8747 | copy->loc->requested_address = orig->loc->requested_address; |
8748 | copy->loc->address = orig->loc->address; | |
8749 | copy->loc->section = orig->loc->section; | |
6c95b8df | 8750 | copy->loc->pspace = orig->loc->pspace; |
55aa24fb | 8751 | copy->loc->probe = orig->loc->probe; |
f8eba3c6 | 8752 | copy->loc->line_number = orig->loc->line_number; |
2f202fde | 8753 | copy->loc->symtab = orig->loc->symtab; |
e58b0e63 PA |
8754 | copy->frame_id = orig->frame_id; |
8755 | copy->thread = orig->thread; | |
6c95b8df | 8756 | copy->pspace = orig->pspace; |
e58b0e63 PA |
8757 | |
8758 | copy->enable_state = bp_enabled; | |
8759 | copy->disposition = disp_donttouch; | |
8760 | copy->number = internal_breakpoint_number--; | |
8761 | ||
8762 | update_global_location_list_nothrow (0); | |
8763 | return copy; | |
8764 | } | |
8765 | ||
06edf0c0 PA |
8766 | /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if |
8767 | ORIG is NULL. */ | |
8768 | ||
8769 | struct breakpoint * | |
8770 | clone_momentary_breakpoint (struct breakpoint *orig) | |
8771 | { | |
8772 | /* If there's nothing to clone, then return nothing. */ | |
8773 | if (orig == NULL) | |
8774 | return NULL; | |
8775 | ||
8776 | return momentary_breakpoint_from_master (orig, orig->type, orig->ops); | |
8777 | } | |
8778 | ||
611c83ae | 8779 | struct breakpoint * |
a6d9a66e UW |
8780 | set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc, |
8781 | enum bptype type) | |
611c83ae PA |
8782 | { |
8783 | struct symtab_and_line sal; | |
8784 | ||
8785 | sal = find_pc_line (pc, 0); | |
8786 | sal.pc = pc; | |
8787 | sal.section = find_pc_overlay (pc); | |
8788 | sal.explicit_pc = 1; | |
8789 | ||
a6d9a66e | 8790 | return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type); |
611c83ae | 8791 | } |
c906108c | 8792 | \f |
c5aa993b | 8793 | |
c906108c SS |
8794 | /* Tell the user we have just set a breakpoint B. */ |
8795 | ||
8796 | static void | |
fba45db2 | 8797 | mention (struct breakpoint *b) |
c906108c | 8798 | { |
348d480f | 8799 | b->ops->print_mention (b); |
79a45e25 | 8800 | if (ui_out_is_mi_like_p (current_uiout)) |
fb40c209 | 8801 | return; |
c906108c SS |
8802 | printf_filtered ("\n"); |
8803 | } | |
c906108c | 8804 | \f |
c5aa993b | 8805 | |
0d381245 | 8806 | static struct bp_location * |
39d61571 | 8807 | add_location_to_breakpoint (struct breakpoint *b, |
0d381245 VP |
8808 | const struct symtab_and_line *sal) |
8809 | { | |
8810 | struct bp_location *loc, **tmp; | |
3742cc8b YQ |
8811 | CORE_ADDR adjusted_address; |
8812 | struct gdbarch *loc_gdbarch = get_sal_arch (*sal); | |
8813 | ||
8814 | if (loc_gdbarch == NULL) | |
8815 | loc_gdbarch = b->gdbarch; | |
8816 | ||
8817 | /* Adjust the breakpoint's address prior to allocating a location. | |
8818 | Once we call allocate_bp_location(), that mostly uninitialized | |
8819 | location will be placed on the location chain. Adjustment of the | |
8820 | breakpoint may cause target_read_memory() to be called and we do | |
8821 | not want its scan of the location chain to find a breakpoint and | |
8822 | location that's only been partially initialized. */ | |
8823 | adjusted_address = adjust_breakpoint_address (loc_gdbarch, | |
8824 | sal->pc, b->type); | |
0d381245 | 8825 | |
d30113d4 | 8826 | /* Sort the locations by their ADDRESS. */ |
39d61571 | 8827 | loc = allocate_bp_location (b); |
d30113d4 JK |
8828 | for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address; |
8829 | tmp = &((*tmp)->next)) | |
0d381245 | 8830 | ; |
d30113d4 | 8831 | loc->next = *tmp; |
0d381245 | 8832 | *tmp = loc; |
3742cc8b | 8833 | |
0d381245 | 8834 | loc->requested_address = sal->pc; |
3742cc8b | 8835 | loc->address = adjusted_address; |
6c95b8df | 8836 | loc->pspace = sal->pspace; |
55aa24fb | 8837 | loc->probe = sal->probe; |
6c95b8df | 8838 | gdb_assert (loc->pspace != NULL); |
0d381245 | 8839 | loc->section = sal->section; |
3742cc8b | 8840 | loc->gdbarch = loc_gdbarch; |
f8eba3c6 | 8841 | loc->line_number = sal->line; |
2f202fde | 8842 | loc->symtab = sal->symtab; |
f8eba3c6 | 8843 | |
0e30163f JK |
8844 | set_breakpoint_location_function (loc, |
8845 | sal->explicit_pc || sal->explicit_line); | |
0d381245 VP |
8846 | return loc; |
8847 | } | |
514f746b AR |
8848 | \f |
8849 | ||
8850 | /* Return 1 if LOC is pointing to a permanent breakpoint, | |
8851 | return 0 otherwise. */ | |
8852 | ||
8853 | static int | |
8854 | bp_loc_is_permanent (struct bp_location *loc) | |
8855 | { | |
8856 | int len; | |
8857 | CORE_ADDR addr; | |
1afeeb75 | 8858 | const gdb_byte *bpoint; |
514f746b | 8859 | gdb_byte *target_mem; |
939c61fa JK |
8860 | struct cleanup *cleanup; |
8861 | int retval = 0; | |
514f746b AR |
8862 | |
8863 | gdb_assert (loc != NULL); | |
8864 | ||
8865 | addr = loc->address; | |
1afeeb75 | 8866 | bpoint = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len); |
514f746b | 8867 | |
939c61fa | 8868 | /* Software breakpoints unsupported? */ |
1afeeb75 | 8869 | if (bpoint == NULL) |
939c61fa JK |
8870 | return 0; |
8871 | ||
514f746b AR |
8872 | target_mem = alloca (len); |
8873 | ||
939c61fa JK |
8874 | /* Enable the automatic memory restoration from breakpoints while |
8875 | we read the memory. Otherwise we could say about our temporary | |
8876 | breakpoints they are permanent. */ | |
6c95b8df PA |
8877 | cleanup = save_current_space_and_thread (); |
8878 | ||
8879 | switch_to_program_space_and_thread (loc->pspace); | |
8880 | make_show_memory_breakpoints_cleanup (0); | |
939c61fa | 8881 | |
514f746b | 8882 | if (target_read_memory (loc->address, target_mem, len) == 0 |
1afeeb75 | 8883 | && memcmp (target_mem, bpoint, len) == 0) |
939c61fa | 8884 | retval = 1; |
514f746b | 8885 | |
939c61fa JK |
8886 | do_cleanups (cleanup); |
8887 | ||
8888 | return retval; | |
514f746b AR |
8889 | } |
8890 | ||
e7e0cddf SS |
8891 | /* Build a command list for the dprintf corresponding to the current |
8892 | settings of the dprintf style options. */ | |
8893 | ||
8894 | static void | |
8895 | update_dprintf_command_list (struct breakpoint *b) | |
8896 | { | |
8897 | char *dprintf_args = b->extra_string; | |
8898 | char *printf_line = NULL; | |
8899 | ||
8900 | if (!dprintf_args) | |
8901 | return; | |
8902 | ||
8903 | dprintf_args = skip_spaces (dprintf_args); | |
8904 | ||
8905 | /* Allow a comma, as it may have terminated a location, but don't | |
8906 | insist on it. */ | |
8907 | if (*dprintf_args == ',') | |
8908 | ++dprintf_args; | |
8909 | dprintf_args = skip_spaces (dprintf_args); | |
8910 | ||
8911 | if (*dprintf_args != '"') | |
8912 | error (_("Bad format string, missing '\"'.")); | |
8913 | ||
d3ce09f5 | 8914 | if (strcmp (dprintf_style, dprintf_style_gdb) == 0) |
e7e0cddf | 8915 | printf_line = xstrprintf ("printf %s", dprintf_args); |
d3ce09f5 | 8916 | else if (strcmp (dprintf_style, dprintf_style_call) == 0) |
e7e0cddf SS |
8917 | { |
8918 | if (!dprintf_function) | |
8919 | error (_("No function supplied for dprintf call")); | |
8920 | ||
8921 | if (dprintf_channel && strlen (dprintf_channel) > 0) | |
8922 | printf_line = xstrprintf ("call (void) %s (%s,%s)", | |
8923 | dprintf_function, | |
8924 | dprintf_channel, | |
8925 | dprintf_args); | |
8926 | else | |
8927 | printf_line = xstrprintf ("call (void) %s (%s)", | |
8928 | dprintf_function, | |
8929 | dprintf_args); | |
8930 | } | |
d3ce09f5 SS |
8931 | else if (strcmp (dprintf_style, dprintf_style_agent) == 0) |
8932 | { | |
8933 | if (target_can_run_breakpoint_commands ()) | |
8934 | printf_line = xstrprintf ("agent-printf %s", dprintf_args); | |
8935 | else | |
8936 | { | |
8937 | warning (_("Target cannot run dprintf commands, falling back to GDB printf")); | |
8938 | printf_line = xstrprintf ("printf %s", dprintf_args); | |
8939 | } | |
8940 | } | |
e7e0cddf SS |
8941 | else |
8942 | internal_error (__FILE__, __LINE__, | |
8943 | _("Invalid dprintf style.")); | |
8944 | ||
f28045c2 | 8945 | gdb_assert (printf_line != NULL); |
e7e0cddf | 8946 | /* Manufacture a printf/continue sequence. */ |
f28045c2 YQ |
8947 | { |
8948 | struct command_line *printf_cmd_line, *cont_cmd_line = NULL; | |
e7e0cddf | 8949 | |
f28045c2 YQ |
8950 | if (strcmp (dprintf_style, dprintf_style_agent) != 0) |
8951 | { | |
8952 | cont_cmd_line = xmalloc (sizeof (struct command_line)); | |
8953 | cont_cmd_line->control_type = simple_control; | |
8954 | cont_cmd_line->body_count = 0; | |
8955 | cont_cmd_line->body_list = NULL; | |
8956 | cont_cmd_line->next = NULL; | |
8957 | cont_cmd_line->line = xstrdup ("continue"); | |
8958 | } | |
e7e0cddf | 8959 | |
f28045c2 YQ |
8960 | printf_cmd_line = xmalloc (sizeof (struct command_line)); |
8961 | printf_cmd_line->control_type = simple_control; | |
8962 | printf_cmd_line->body_count = 0; | |
8963 | printf_cmd_line->body_list = NULL; | |
8964 | printf_cmd_line->next = cont_cmd_line; | |
8965 | printf_cmd_line->line = printf_line; | |
e7e0cddf | 8966 | |
f28045c2 YQ |
8967 | breakpoint_set_commands (b, printf_cmd_line); |
8968 | } | |
e7e0cddf SS |
8969 | } |
8970 | ||
8971 | /* Update all dprintf commands, making their command lists reflect | |
8972 | current style settings. */ | |
8973 | ||
8974 | static void | |
8975 | update_dprintf_commands (char *args, int from_tty, | |
8976 | struct cmd_list_element *c) | |
8977 | { | |
8978 | struct breakpoint *b; | |
8979 | ||
8980 | ALL_BREAKPOINTS (b) | |
8981 | { | |
8982 | if (b->type == bp_dprintf) | |
8983 | update_dprintf_command_list (b); | |
8984 | } | |
8985 | } | |
c3f6f71d | 8986 | |
018d34a4 VP |
8987 | /* Create a breakpoint with SAL as location. Use ADDR_STRING |
8988 | as textual description of the location, and COND_STRING | |
db107f19 | 8989 | as condition expression. */ |
018d34a4 VP |
8990 | |
8991 | static void | |
d9b3f62e PA |
8992 | init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch, |
8993 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 8994 | char *filter, char *cond_string, |
e7e0cddf | 8995 | char *extra_string, |
d9b3f62e PA |
8996 | enum bptype type, enum bpdisp disposition, |
8997 | int thread, int task, int ignore_count, | |
c0a91b2b | 8998 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
8999 | int enabled, int internal, unsigned flags, |
9000 | int display_canonical) | |
018d34a4 | 9001 | { |
0d381245 | 9002 | int i; |
018d34a4 VP |
9003 | |
9004 | if (type == bp_hardware_breakpoint) | |
9005 | { | |
fbbd034e AS |
9006 | int target_resources_ok; |
9007 | ||
9008 | i = hw_breakpoint_used_count (); | |
9009 | target_resources_ok = | |
9010 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
018d34a4 VP |
9011 | i + 1, 0); |
9012 | if (target_resources_ok == 0) | |
9013 | error (_("No hardware breakpoint support in the target.")); | |
9014 | else if (target_resources_ok < 0) | |
9015 | error (_("Hardware breakpoints used exceeds limit.")); | |
9016 | } | |
9017 | ||
6c95b8df PA |
9018 | gdb_assert (sals.nelts > 0); |
9019 | ||
0d381245 VP |
9020 | for (i = 0; i < sals.nelts; ++i) |
9021 | { | |
9022 | struct symtab_and_line sal = sals.sals[i]; | |
9023 | struct bp_location *loc; | |
9024 | ||
9025 | if (from_tty) | |
5af949e3 UW |
9026 | { |
9027 | struct gdbarch *loc_gdbarch = get_sal_arch (sal); | |
9028 | if (!loc_gdbarch) | |
9029 | loc_gdbarch = gdbarch; | |
9030 | ||
9031 | describe_other_breakpoints (loc_gdbarch, | |
6c95b8df | 9032 | sal.pspace, sal.pc, sal.section, thread); |
5af949e3 | 9033 | } |
0d381245 VP |
9034 | |
9035 | if (i == 0) | |
9036 | { | |
d9b3f62e | 9037 | init_raw_breakpoint (b, gdbarch, sal, type, ops); |
0d381245 | 9038 | b->thread = thread; |
4a306c9a | 9039 | b->task = task; |
855a6e68 | 9040 | |
0d381245 | 9041 | b->cond_string = cond_string; |
e7e0cddf | 9042 | b->extra_string = extra_string; |
0d381245 | 9043 | b->ignore_count = ignore_count; |
41447f92 | 9044 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
0d381245 | 9045 | b->disposition = disposition; |
6c95b8df | 9046 | |
44f238bb PA |
9047 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
9048 | b->loc->inserted = 1; | |
9049 | ||
0fb4aa4b PA |
9050 | if (type == bp_static_tracepoint) |
9051 | { | |
d9b3f62e | 9052 | struct tracepoint *t = (struct tracepoint *) b; |
0fb4aa4b PA |
9053 | struct static_tracepoint_marker marker; |
9054 | ||
983af33b | 9055 | if (strace_marker_p (b)) |
0fb4aa4b PA |
9056 | { |
9057 | /* We already know the marker exists, otherwise, we | |
9058 | wouldn't see a sal for it. */ | |
9059 | char *p = &addr_string[3]; | |
9060 | char *endp; | |
9061 | char *marker_str; | |
0fb4aa4b | 9062 | |
e9cafbcc | 9063 | p = skip_spaces (p); |
0fb4aa4b | 9064 | |
e9cafbcc | 9065 | endp = skip_to_space (p); |
0fb4aa4b PA |
9066 | |
9067 | marker_str = savestring (p, endp - p); | |
d9b3f62e | 9068 | t->static_trace_marker_id = marker_str; |
0fb4aa4b | 9069 | |
3e43a32a MS |
9070 | printf_filtered (_("Probed static tracepoint " |
9071 | "marker \"%s\"\n"), | |
d9b3f62e | 9072 | t->static_trace_marker_id); |
0fb4aa4b PA |
9073 | } |
9074 | else if (target_static_tracepoint_marker_at (sal.pc, &marker)) | |
9075 | { | |
d9b3f62e | 9076 | t->static_trace_marker_id = xstrdup (marker.str_id); |
0fb4aa4b PA |
9077 | release_static_tracepoint_marker (&marker); |
9078 | ||
3e43a32a MS |
9079 | printf_filtered (_("Probed static tracepoint " |
9080 | "marker \"%s\"\n"), | |
d9b3f62e | 9081 | t->static_trace_marker_id); |
0fb4aa4b PA |
9082 | } |
9083 | else | |
3e43a32a MS |
9084 | warning (_("Couldn't determine the static " |
9085 | "tracepoint marker to probe")); | |
0fb4aa4b PA |
9086 | } |
9087 | ||
0d381245 VP |
9088 | loc = b->loc; |
9089 | } | |
9090 | else | |
018d34a4 | 9091 | { |
39d61571 | 9092 | loc = add_location_to_breakpoint (b, &sal); |
44f238bb PA |
9093 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
9094 | loc->inserted = 1; | |
0d381245 VP |
9095 | } |
9096 | ||
514f746b AR |
9097 | if (bp_loc_is_permanent (loc)) |
9098 | make_breakpoint_permanent (b); | |
9099 | ||
0d381245 VP |
9100 | if (b->cond_string) |
9101 | { | |
bbc13ae3 KS |
9102 | const char *arg = b->cond_string; |
9103 | ||
1bb9788d TT |
9104 | loc->cond = parse_exp_1 (&arg, loc->address, |
9105 | block_for_pc (loc->address), 0); | |
0d381245 | 9106 | if (*arg) |
588ae58c | 9107 | error (_("Garbage '%s' follows condition"), arg); |
018d34a4 | 9108 | } |
e7e0cddf SS |
9109 | |
9110 | /* Dynamic printf requires and uses additional arguments on the | |
9111 | command line, otherwise it's an error. */ | |
9112 | if (type == bp_dprintf) | |
9113 | { | |
9114 | if (b->extra_string) | |
9115 | update_dprintf_command_list (b); | |
9116 | else | |
9117 | error (_("Format string required")); | |
9118 | } | |
9119 | else if (b->extra_string) | |
588ae58c | 9120 | error (_("Garbage '%s' at end of command"), b->extra_string); |
855a6e68 | 9121 | } |
018d34a4 | 9122 | |
56435ebe | 9123 | b->display_canonical = display_canonical; |
018d34a4 VP |
9124 | if (addr_string) |
9125 | b->addr_string = addr_string; | |
9126 | else | |
9127 | /* addr_string has to be used or breakpoint_re_set will delete | |
9128 | me. */ | |
5af949e3 UW |
9129 | b->addr_string |
9130 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
f8eba3c6 | 9131 | b->filter = filter; |
d9b3f62e | 9132 | } |
018d34a4 | 9133 | |
d9b3f62e PA |
9134 | static void |
9135 | create_breakpoint_sal (struct gdbarch *gdbarch, | |
9136 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 9137 | char *filter, char *cond_string, |
e7e0cddf | 9138 | char *extra_string, |
d9b3f62e PA |
9139 | enum bptype type, enum bpdisp disposition, |
9140 | int thread, int task, int ignore_count, | |
c0a91b2b | 9141 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
9142 | int enabled, int internal, unsigned flags, |
9143 | int display_canonical) | |
d9b3f62e PA |
9144 | { |
9145 | struct breakpoint *b; | |
9146 | struct cleanup *old_chain; | |
9147 | ||
9148 | if (is_tracepoint_type (type)) | |
9149 | { | |
9150 | struct tracepoint *t; | |
9151 | ||
9152 | t = XCNEW (struct tracepoint); | |
9153 | b = &t->base; | |
9154 | } | |
9155 | else | |
9156 | b = XNEW (struct breakpoint); | |
9157 | ||
9158 | old_chain = make_cleanup (xfree, b); | |
9159 | ||
9160 | init_breakpoint_sal (b, gdbarch, | |
9161 | sals, addr_string, | |
e7e0cddf | 9162 | filter, cond_string, extra_string, |
d9b3f62e PA |
9163 | type, disposition, |
9164 | thread, task, ignore_count, | |
9165 | ops, from_tty, | |
44f238bb PA |
9166 | enabled, internal, flags, |
9167 | display_canonical); | |
d9b3f62e PA |
9168 | discard_cleanups (old_chain); |
9169 | ||
3ea46bff | 9170 | install_breakpoint (internal, b, 0); |
018d34a4 VP |
9171 | } |
9172 | ||
9173 | /* Add SALS.nelts breakpoints to the breakpoint table. For each | |
9174 | SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i] | |
9175 | value. COND_STRING, if not NULL, specified the condition to be | |
9176 | used for all breakpoints. Essentially the only case where | |
9177 | SALS.nelts is not 1 is when we set a breakpoint on an overloaded | |
9178 | function. In that case, it's still not possible to specify | |
9179 | separate conditions for different overloaded functions, so | |
9180 | we take just a single condition string. | |
9181 | ||
c3f6f71d | 9182 | NOTE: If the function succeeds, the caller is expected to cleanup |
018d34a4 | 9183 | the arrays ADDR_STRING, COND_STRING, and SALS (but not the |
c3f6f71d JM |
9184 | array contents). If the function fails (error() is called), the |
9185 | caller is expected to cleanups both the ADDR_STRING, COND_STRING, | |
4a64f543 | 9186 | COND and SALS arrays and each of those arrays contents. */ |
c906108c SS |
9187 | |
9188 | static void | |
8cdf0e15 | 9189 | create_breakpoints_sal (struct gdbarch *gdbarch, |
7efd8fc2 | 9190 | struct linespec_result *canonical, |
e7e0cddf | 9191 | char *cond_string, char *extra_string, |
8cdf0e15 VP |
9192 | enum bptype type, enum bpdisp disposition, |
9193 | int thread, int task, int ignore_count, | |
c0a91b2b | 9194 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb | 9195 | int enabled, int internal, unsigned flags) |
c906108c | 9196 | { |
018d34a4 | 9197 | int i; |
f8eba3c6 | 9198 | struct linespec_sals *lsal; |
cc59ec59 | 9199 | |
f8eba3c6 TT |
9200 | if (canonical->pre_expanded) |
9201 | gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1); | |
9202 | ||
9203 | for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i) | |
c3f6f71d | 9204 | { |
f8eba3c6 TT |
9205 | /* Note that 'addr_string' can be NULL in the case of a plain |
9206 | 'break', without arguments. */ | |
9207 | char *addr_string = (canonical->addr_string | |
9208 | ? xstrdup (canonical->addr_string) | |
9209 | : NULL); | |
9210 | char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL; | |
9211 | struct cleanup *inner = make_cleanup (xfree, addr_string); | |
0d381245 | 9212 | |
f8eba3c6 TT |
9213 | make_cleanup (xfree, filter_string); |
9214 | create_breakpoint_sal (gdbarch, lsal->sals, | |
9215 | addr_string, | |
9216 | filter_string, | |
e7e0cddf SS |
9217 | cond_string, extra_string, |
9218 | type, disposition, | |
84f4c1fe | 9219 | thread, task, ignore_count, ops, |
44f238bb | 9220 | from_tty, enabled, internal, flags, |
56435ebe | 9221 | canonical->special_display); |
f8eba3c6 | 9222 | discard_cleanups (inner); |
c3f6f71d | 9223 | } |
c3f6f71d | 9224 | } |
c906108c | 9225 | |
9998af43 | 9226 | /* Parse ADDRESS which is assumed to be a SAL specification possibly |
c3f6f71d | 9227 | followed by conditionals. On return, SALS contains an array of SAL |
4a64f543 | 9228 | addresses found. ADDR_STRING contains a vector of (canonical) |
9998af43 TJB |
9229 | address strings. ADDRESS points to the end of the SAL. |
9230 | ||
9231 | The array and the line spec strings are allocated on the heap, it is | |
9232 | the caller's responsibility to free them. */ | |
c906108c | 9233 | |
b9362cc7 | 9234 | static void |
c3f6f71d | 9235 | parse_breakpoint_sals (char **address, |
58438ac1 | 9236 | struct linespec_result *canonical) |
c3f6f71d | 9237 | { |
c3f6f71d | 9238 | /* If no arg given, or if first arg is 'if ', use the default |
4a64f543 | 9239 | breakpoint. */ |
c3f6f71d JM |
9240 | if ((*address) == NULL |
9241 | || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2]))) | |
c906108c | 9242 | { |
1bfeeb0f JL |
9243 | /* The last displayed codepoint, if it's valid, is our default breakpoint |
9244 | address. */ | |
9245 | if (last_displayed_sal_is_valid ()) | |
c906108c | 9246 | { |
f8eba3c6 | 9247 | struct linespec_sals lsal; |
c3f6f71d | 9248 | struct symtab_and_line sal; |
1c8cdcb1 | 9249 | CORE_ADDR pc; |
cc59ec59 | 9250 | |
4a64f543 | 9251 | init_sal (&sal); /* Initialize to zeroes. */ |
f8eba3c6 | 9252 | lsal.sals.sals = (struct symtab_and_line *) |
c906108c | 9253 | xmalloc (sizeof (struct symtab_and_line)); |
1bfeeb0f JL |
9254 | |
9255 | /* Set sal's pspace, pc, symtab, and line to the values | |
1c8cdcb1 JK |
9256 | corresponding to the last call to print_frame_info. |
9257 | Be sure to reinitialize LINE with NOTCURRENT == 0 | |
9258 | as the breakpoint line number is inappropriate otherwise. | |
9259 | find_pc_line would adjust PC, re-set it back. */ | |
1bfeeb0f | 9260 | get_last_displayed_sal (&sal); |
1c8cdcb1 JK |
9261 | pc = sal.pc; |
9262 | sal = find_pc_line (pc, 0); | |
00903456 | 9263 | |
4a64f543 | 9264 | /* "break" without arguments is equivalent to "break *PC" |
1bfeeb0f JL |
9265 | where PC is the last displayed codepoint's address. So |
9266 | make sure to set sal.explicit_pc to prevent GDB from | |
9267 | trying to expand the list of sals to include all other | |
9268 | instances with the same symtab and line. */ | |
1c8cdcb1 | 9269 | sal.pc = pc; |
00903456 JK |
9270 | sal.explicit_pc = 1; |
9271 | ||
f8eba3c6 TT |
9272 | lsal.sals.sals[0] = sal; |
9273 | lsal.sals.nelts = 1; | |
9274 | lsal.canonical = NULL; | |
9275 | ||
9276 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
c906108c SS |
9277 | } |
9278 | else | |
8a3fe4f8 | 9279 | error (_("No default breakpoint address now.")); |
c906108c SS |
9280 | } |
9281 | else | |
9282 | { | |
cc80f267 JK |
9283 | struct symtab_and_line cursal = get_current_source_symtab_and_line (); |
9284 | ||
c906108c | 9285 | /* Force almost all breakpoints to be in terms of the |
4a64f543 MS |
9286 | current_source_symtab (which is decode_line_1's default). |
9287 | This should produce the results we want almost all of the | |
cc80f267 JK |
9288 | time while leaving default_breakpoint_* alone. |
9289 | ||
9290 | ObjC: However, don't match an Objective-C method name which | |
9291 | may have a '+' or '-' succeeded by a '['. */ | |
9292 | if (last_displayed_sal_is_valid () | |
9293 | && (!cursal.symtab | |
9294 | || ((strchr ("+-", (*address)[0]) != NULL) | |
9295 | && ((*address)[1] != '[')))) | |
f8eba3c6 TT |
9296 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, |
9297 | get_last_displayed_symtab (), | |
9298 | get_last_displayed_line (), | |
9299 | canonical, NULL, NULL); | |
c906108c | 9300 | else |
f8eba3c6 | 9301 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, |
cc80f267 | 9302 | cursal.symtab, cursal.line, canonical, NULL, NULL); |
c906108c | 9303 | } |
c3f6f71d | 9304 | } |
c906108c | 9305 | |
c906108c | 9306 | |
c3f6f71d | 9307 | /* Convert each SAL into a real PC. Verify that the PC can be |
4a64f543 | 9308 | inserted as a breakpoint. If it can't throw an error. */ |
c906108c | 9309 | |
b9362cc7 | 9310 | static void |
23e7acfb | 9311 | breakpoint_sals_to_pc (struct symtabs_and_lines *sals) |
c3f6f71d JM |
9312 | { |
9313 | int i; | |
cc59ec59 | 9314 | |
c3f6f71d | 9315 | for (i = 0; i < sals->nelts; i++) |
ee53e872 | 9316 | resolve_sal_pc (&sals->sals[i]); |
c3f6f71d JM |
9317 | } |
9318 | ||
7a697b8d SS |
9319 | /* Fast tracepoints may have restrictions on valid locations. For |
9320 | instance, a fast tracepoint using a jump instead of a trap will | |
9321 | likely have to overwrite more bytes than a trap would, and so can | |
9322 | only be placed where the instruction is longer than the jump, or a | |
9323 | multi-instruction sequence does not have a jump into the middle of | |
9324 | it, etc. */ | |
9325 | ||
9326 | static void | |
9327 | check_fast_tracepoint_sals (struct gdbarch *gdbarch, | |
9328 | struct symtabs_and_lines *sals) | |
9329 | { | |
9330 | int i, rslt; | |
9331 | struct symtab_and_line *sal; | |
9332 | char *msg; | |
9333 | struct cleanup *old_chain; | |
9334 | ||
9335 | for (i = 0; i < sals->nelts; i++) | |
9336 | { | |
f8eba3c6 TT |
9337 | struct gdbarch *sarch; |
9338 | ||
7a697b8d SS |
9339 | sal = &sals->sals[i]; |
9340 | ||
f8eba3c6 TT |
9341 | sarch = get_sal_arch (*sal); |
9342 | /* We fall back to GDBARCH if there is no architecture | |
9343 | associated with SAL. */ | |
9344 | if (sarch == NULL) | |
9345 | sarch = gdbarch; | |
9346 | rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, | |
7a697b8d SS |
9347 | NULL, &msg); |
9348 | old_chain = make_cleanup (xfree, msg); | |
9349 | ||
9350 | if (!rslt) | |
9351 | error (_("May not have a fast tracepoint at 0x%s%s"), | |
f8eba3c6 | 9352 | paddress (sarch, sal->pc), (msg ? msg : "")); |
7a697b8d SS |
9353 | |
9354 | do_cleanups (old_chain); | |
9355 | } | |
9356 | } | |
9357 | ||
af4908ba KS |
9358 | /* Issue an invalid thread ID error. */ |
9359 | ||
9360 | static void ATTRIBUTE_NORETURN | |
9361 | invalid_thread_id_error (int id) | |
9362 | { | |
9363 | error (_("Unknown thread %d."), id); | |
9364 | } | |
9365 | ||
018d34a4 VP |
9366 | /* Given TOK, a string specification of condition and thread, as |
9367 | accepted by the 'break' command, extract the condition | |
9368 | string and thread number and set *COND_STRING and *THREAD. | |
4a64f543 | 9369 | PC identifies the context at which the condition should be parsed. |
018d34a4 VP |
9370 | If no condition is found, *COND_STRING is set to NULL. |
9371 | If no thread is found, *THREAD is set to -1. */ | |
d634f2de JB |
9372 | |
9373 | static void | |
bbc13ae3 | 9374 | find_condition_and_thread (const char *tok, CORE_ADDR pc, |
e7e0cddf SS |
9375 | char **cond_string, int *thread, int *task, |
9376 | char **rest) | |
018d34a4 VP |
9377 | { |
9378 | *cond_string = NULL; | |
9379 | *thread = -1; | |
ed1d1739 KS |
9380 | *task = 0; |
9381 | *rest = NULL; | |
9382 | ||
018d34a4 VP |
9383 | while (tok && *tok) |
9384 | { | |
bbc13ae3 | 9385 | const char *end_tok; |
018d34a4 | 9386 | int toklen; |
bbc13ae3 KS |
9387 | const char *cond_start = NULL; |
9388 | const char *cond_end = NULL; | |
cc59ec59 | 9389 | |
bbc13ae3 | 9390 | tok = skip_spaces_const (tok); |
e7e0cddf SS |
9391 | |
9392 | if ((*tok == '"' || *tok == ',') && rest) | |
9393 | { | |
9394 | *rest = savestring (tok, strlen (tok)); | |
9395 | return; | |
9396 | } | |
9397 | ||
bbc13ae3 | 9398 | end_tok = skip_to_space_const (tok); |
d634f2de | 9399 | |
018d34a4 | 9400 | toklen = end_tok - tok; |
d634f2de | 9401 | |
018d34a4 VP |
9402 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) |
9403 | { | |
f7545552 TT |
9404 | struct expression *expr; |
9405 | ||
018d34a4 | 9406 | tok = cond_start = end_tok + 1; |
1bb9788d | 9407 | expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0); |
f7545552 | 9408 | xfree (expr); |
018d34a4 | 9409 | cond_end = tok; |
d634f2de | 9410 | *cond_string = savestring (cond_start, cond_end - cond_start); |
018d34a4 VP |
9411 | } |
9412 | else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0) | |
9413 | { | |
9414 | char *tmptok; | |
d634f2de | 9415 | |
018d34a4 | 9416 | tok = end_tok + 1; |
bbc13ae3 | 9417 | *thread = strtol (tok, &tmptok, 0); |
018d34a4 VP |
9418 | if (tok == tmptok) |
9419 | error (_("Junk after thread keyword.")); | |
9420 | if (!valid_thread_id (*thread)) | |
af4908ba | 9421 | invalid_thread_id_error (*thread); |
bbc13ae3 | 9422 | tok = tmptok; |
018d34a4 | 9423 | } |
4a306c9a JB |
9424 | else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0) |
9425 | { | |
9426 | char *tmptok; | |
9427 | ||
9428 | tok = end_tok + 1; | |
bbc13ae3 | 9429 | *task = strtol (tok, &tmptok, 0); |
4a306c9a JB |
9430 | if (tok == tmptok) |
9431 | error (_("Junk after task keyword.")); | |
9432 | if (!valid_task_id (*task)) | |
b6199126 | 9433 | error (_("Unknown task %d."), *task); |
bbc13ae3 | 9434 | tok = tmptok; |
4a306c9a | 9435 | } |
e7e0cddf SS |
9436 | else if (rest) |
9437 | { | |
9438 | *rest = savestring (tok, strlen (tok)); | |
ccab2054 | 9439 | return; |
e7e0cddf | 9440 | } |
018d34a4 VP |
9441 | else |
9442 | error (_("Junk at end of arguments.")); | |
9443 | } | |
9444 | } | |
9445 | ||
0fb4aa4b PA |
9446 | /* Decode a static tracepoint marker spec. */ |
9447 | ||
9448 | static struct symtabs_and_lines | |
9449 | decode_static_tracepoint_spec (char **arg_p) | |
9450 | { | |
9451 | VEC(static_tracepoint_marker_p) *markers = NULL; | |
9452 | struct symtabs_and_lines sals; | |
0fb4aa4b PA |
9453 | struct cleanup *old_chain; |
9454 | char *p = &(*arg_p)[3]; | |
9455 | char *endp; | |
9456 | char *marker_str; | |
9457 | int i; | |
9458 | ||
e9cafbcc | 9459 | p = skip_spaces (p); |
0fb4aa4b | 9460 | |
e9cafbcc | 9461 | endp = skip_to_space (p); |
0fb4aa4b PA |
9462 | |
9463 | marker_str = savestring (p, endp - p); | |
9464 | old_chain = make_cleanup (xfree, marker_str); | |
9465 | ||
9466 | markers = target_static_tracepoint_markers_by_strid (marker_str); | |
9467 | if (VEC_empty(static_tracepoint_marker_p, markers)) | |
9468 | error (_("No known static tracepoint marker named %s"), marker_str); | |
9469 | ||
9470 | sals.nelts = VEC_length(static_tracepoint_marker_p, markers); | |
9471 | sals.sals = xmalloc (sizeof *sals.sals * sals.nelts); | |
9472 | ||
9473 | for (i = 0; i < sals.nelts; i++) | |
9474 | { | |
9475 | struct static_tracepoint_marker *marker; | |
9476 | ||
9477 | marker = VEC_index (static_tracepoint_marker_p, markers, i); | |
9478 | ||
9479 | init_sal (&sals.sals[i]); | |
9480 | ||
9481 | sals.sals[i] = find_pc_line (marker->address, 0); | |
9482 | sals.sals[i].pc = marker->address; | |
9483 | ||
9484 | release_static_tracepoint_marker (marker); | |
9485 | } | |
9486 | ||
9487 | do_cleanups (old_chain); | |
9488 | ||
9489 | *arg_p = endp; | |
9490 | return sals; | |
9491 | } | |
9492 | ||
fd9b8c24 PA |
9493 | /* Set a breakpoint. This function is shared between CLI and MI |
9494 | functions for setting a breakpoint. This function has two major | |
f6de8ec2 PA |
9495 | modes of operations, selected by the PARSE_ARG parameter. If |
9496 | non-zero, the function will parse ARG, extracting location, | |
9497 | condition, thread and extra string. Otherwise, ARG is just the | |
9498 | breakpoint's location, with condition, thread, and extra string | |
9499 | specified by the COND_STRING, THREAD and EXTRA_STRING parameters. | |
9500 | If INTERNAL is non-zero, the breakpoint number will be allocated | |
9501 | from the internal breakpoint count. Returns true if any breakpoint | |
9502 | was created; false otherwise. */ | |
0101ce28 | 9503 | |
8cdf0e15 VP |
9504 | int |
9505 | create_breakpoint (struct gdbarch *gdbarch, | |
e7e0cddf SS |
9506 | char *arg, char *cond_string, |
9507 | int thread, char *extra_string, | |
f6de8ec2 | 9508 | int parse_arg, |
0fb4aa4b | 9509 | int tempflag, enum bptype type_wanted, |
8cdf0e15 VP |
9510 | int ignore_count, |
9511 | enum auto_boolean pending_break_support, | |
c0a91b2b | 9512 | const struct breakpoint_ops *ops, |
44f238bb PA |
9513 | int from_tty, int enabled, int internal, |
9514 | unsigned flags) | |
c3f6f71d | 9515 | { |
b78a6381 | 9516 | volatile struct gdb_exception e; |
f8eba3c6 | 9517 | char *copy_arg = NULL; |
c3f6f71d | 9518 | char *addr_start = arg; |
7efd8fc2 | 9519 | struct linespec_result canonical; |
c3f6f71d | 9520 | struct cleanup *old_chain; |
80c99de1 | 9521 | struct cleanup *bkpt_chain = NULL; |
0101ce28 | 9522 | int pending = 0; |
4a306c9a | 9523 | int task = 0; |
86b17b60 | 9524 | int prev_bkpt_count = breakpoint_count; |
c3f6f71d | 9525 | |
348d480f PA |
9526 | gdb_assert (ops != NULL); |
9527 | ||
7efd8fc2 | 9528 | init_linespec_result (&canonical); |
c3f6f71d | 9529 | |
b78a6381 TT |
9530 | TRY_CATCH (e, RETURN_MASK_ALL) |
9531 | { | |
983af33b SDJ |
9532 | ops->create_sals_from_address (&arg, &canonical, type_wanted, |
9533 | addr_start, ©_arg); | |
b78a6381 | 9534 | } |
0101ce28 JJ |
9535 | |
9536 | /* If caller is interested in rc value from parse, set value. */ | |
05ff989b | 9537 | switch (e.reason) |
0101ce28 | 9538 | { |
983af33b SDJ |
9539 | case GDB_NO_ERROR: |
9540 | if (VEC_empty (linespec_sals, canonical.sals)) | |
9541 | return 0; | |
9542 | break; | |
05ff989b AC |
9543 | case RETURN_ERROR: |
9544 | switch (e.error) | |
0101ce28 | 9545 | { |
05ff989b | 9546 | case NOT_FOUND_ERROR: |
0101ce28 | 9547 | |
05ff989b AC |
9548 | /* If pending breakpoint support is turned off, throw |
9549 | error. */ | |
fa8d40ab JJ |
9550 | |
9551 | if (pending_break_support == AUTO_BOOLEAN_FALSE) | |
723a2275 VP |
9552 | throw_exception (e); |
9553 | ||
9554 | exception_print (gdb_stderr, e); | |
fa8d40ab | 9555 | |
05ff989b AC |
9556 | /* If pending breakpoint support is auto query and the user |
9557 | selects no, then simply return the error code. */ | |
059fb39f | 9558 | if (pending_break_support == AUTO_BOOLEAN_AUTO |
bfccc43c YQ |
9559 | && !nquery (_("Make %s pending on future shared library load? "), |
9560 | bptype_string (type_wanted))) | |
fd9b8c24 | 9561 | return 0; |
fa8d40ab | 9562 | |
05ff989b AC |
9563 | /* At this point, either the user was queried about setting |
9564 | a pending breakpoint and selected yes, or pending | |
9565 | breakpoint behavior is on and thus a pending breakpoint | |
9566 | is defaulted on behalf of the user. */ | |
f8eba3c6 TT |
9567 | { |
9568 | struct linespec_sals lsal; | |
9569 | ||
9570 | copy_arg = xstrdup (addr_start); | |
9571 | lsal.canonical = xstrdup (copy_arg); | |
9572 | lsal.sals.nelts = 1; | |
9573 | lsal.sals.sals = XNEW (struct symtab_and_line); | |
9574 | init_sal (&lsal.sals.sals[0]); | |
9575 | pending = 1; | |
9576 | VEC_safe_push (linespec_sals, canonical.sals, &lsal); | |
9577 | } | |
05ff989b AC |
9578 | break; |
9579 | default: | |
98deb0da | 9580 | throw_exception (e); |
0101ce28 | 9581 | } |
2abae994 | 9582 | break; |
05ff989b | 9583 | default: |
983af33b | 9584 | throw_exception (e); |
0101ce28 | 9585 | } |
c3f6f71d | 9586 | |
4a64f543 | 9587 | /* Create a chain of things that always need to be cleaned up. */ |
f8eba3c6 | 9588 | old_chain = make_cleanup_destroy_linespec_result (&canonical); |
c3f6f71d | 9589 | |
c3f6f71d JM |
9590 | /* ----------------------------- SNIP ----------------------------- |
9591 | Anything added to the cleanup chain beyond this point is assumed | |
9592 | to be part of a breakpoint. If the breakpoint create succeeds | |
80c99de1 PA |
9593 | then the memory is not reclaimed. */ |
9594 | bkpt_chain = make_cleanup (null_cleanup, 0); | |
c3f6f71d | 9595 | |
c3f6f71d JM |
9596 | /* Resolve all line numbers to PC's and verify that the addresses |
9597 | are ok for the target. */ | |
0101ce28 | 9598 | if (!pending) |
f8eba3c6 TT |
9599 | { |
9600 | int ix; | |
9601 | struct linespec_sals *iter; | |
9602 | ||
9603 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
9604 | breakpoint_sals_to_pc (&iter->sals); | |
9605 | } | |
c3f6f71d | 9606 | |
7a697b8d | 9607 | /* Fast tracepoints may have additional restrictions on location. */ |
bfccc43c | 9608 | if (!pending && type_wanted == bp_fast_tracepoint) |
f8eba3c6 TT |
9609 | { |
9610 | int ix; | |
9611 | struct linespec_sals *iter; | |
9612 | ||
9613 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
9614 | check_fast_tracepoint_sals (gdbarch, &iter->sals); | |
9615 | } | |
7a697b8d | 9616 | |
c3f6f71d JM |
9617 | /* Verify that condition can be parsed, before setting any |
9618 | breakpoints. Allocate a separate condition expression for each | |
4a64f543 | 9619 | breakpoint. */ |
0101ce28 | 9620 | if (!pending) |
c3f6f71d | 9621 | { |
f8eba3c6 TT |
9622 | struct linespec_sals *lsal; |
9623 | ||
9624 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
9625 | ||
f6de8ec2 | 9626 | if (parse_arg) |
72b2ff0e | 9627 | { |
0878d0fa YQ |
9628 | char *rest; |
9629 | /* Here we only parse 'arg' to separate condition | |
9630 | from thread number, so parsing in context of first | |
9631 | sal is OK. When setting the breakpoint we'll | |
9632 | re-parse it in context of each sal. */ | |
9633 | ||
9634 | find_condition_and_thread (arg, lsal->sals.sals[0].pc, &cond_string, | |
9635 | &thread, &task, &rest); | |
9636 | if (cond_string) | |
9637 | make_cleanup (xfree, cond_string); | |
9638 | if (rest) | |
9639 | make_cleanup (xfree, rest); | |
9640 | if (rest) | |
9641 | extra_string = rest; | |
72b2ff0e | 9642 | } |
2f069f6f | 9643 | else |
72b2ff0e | 9644 | { |
0878d0fa YQ |
9645 | if (*arg != '\0') |
9646 | error (_("Garbage '%s' at end of location"), arg); | |
9647 | ||
9648 | /* Create a private copy of condition string. */ | |
9649 | if (cond_string) | |
9650 | { | |
9651 | cond_string = xstrdup (cond_string); | |
9652 | make_cleanup (xfree, cond_string); | |
9653 | } | |
9654 | /* Create a private copy of any extra string. */ | |
9655 | if (extra_string) | |
9656 | { | |
9657 | extra_string = xstrdup (extra_string); | |
9658 | make_cleanup (xfree, extra_string); | |
9659 | } | |
72b2ff0e | 9660 | } |
0fb4aa4b | 9661 | |
983af33b | 9662 | ops->create_breakpoints_sal (gdbarch, &canonical, lsal, |
e7e0cddf | 9663 | cond_string, extra_string, type_wanted, |
d9b3f62e PA |
9664 | tempflag ? disp_del : disp_donttouch, |
9665 | thread, task, ignore_count, ops, | |
44f238bb | 9666 | from_tty, enabled, internal, flags); |
c906108c | 9667 | } |
0101ce28 JJ |
9668 | else |
9669 | { | |
0101ce28 JJ |
9670 | struct breakpoint *b; |
9671 | ||
0101ce28 JJ |
9672 | make_cleanup (xfree, copy_arg); |
9673 | ||
bfccc43c YQ |
9674 | if (is_tracepoint_type (type_wanted)) |
9675 | { | |
9676 | struct tracepoint *t; | |
9677 | ||
9678 | t = XCNEW (struct tracepoint); | |
9679 | b = &t->base; | |
9680 | } | |
9681 | else | |
9682 | b = XNEW (struct breakpoint); | |
9683 | ||
9684 | init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops); | |
9685 | ||
f8eba3c6 | 9686 | b->addr_string = copy_arg; |
f6de8ec2 | 9687 | if (parse_arg) |
e12c7713 MK |
9688 | b->cond_string = NULL; |
9689 | else | |
9690 | { | |
9691 | /* Create a private copy of condition string. */ | |
9692 | if (cond_string) | |
9693 | { | |
9694 | cond_string = xstrdup (cond_string); | |
9695 | make_cleanup (xfree, cond_string); | |
9696 | } | |
9697 | b->cond_string = cond_string; | |
9698 | } | |
e7e0cddf | 9699 | b->extra_string = NULL; |
0101ce28 | 9700 | b->ignore_count = ignore_count; |
0101ce28 | 9701 | b->disposition = tempflag ? disp_del : disp_donttouch; |
0d381245 | 9702 | b->condition_not_parsed = 1; |
41447f92 | 9703 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
cc72b2a2 KP |
9704 | if ((type_wanted != bp_breakpoint |
9705 | && type_wanted != bp_hardware_breakpoint) || thread != -1) | |
f8eba3c6 | 9706 | b->pspace = current_program_space; |
8bea4e01 | 9707 | |
bfccc43c | 9708 | install_breakpoint (internal, b, 0); |
0101ce28 JJ |
9709 | } |
9710 | ||
f8eba3c6 | 9711 | if (VEC_length (linespec_sals, canonical.sals) > 1) |
95a42b64 | 9712 | { |
3e43a32a MS |
9713 | warning (_("Multiple breakpoints were set.\nUse the " |
9714 | "\"delete\" command to delete unwanted breakpoints.")); | |
86b17b60 | 9715 | prev_breakpoint_count = prev_bkpt_count; |
95a42b64 TT |
9716 | } |
9717 | ||
80c99de1 PA |
9718 | /* That's it. Discard the cleanups for data inserted into the |
9719 | breakpoint. */ | |
9720 | discard_cleanups (bkpt_chain); | |
9721 | /* But cleanup everything else. */ | |
c3f6f71d | 9722 | do_cleanups (old_chain); |
217dc9e2 | 9723 | |
80c99de1 | 9724 | /* error call may happen here - have BKPT_CHAIN already discarded. */ |
217dc9e2 | 9725 | update_global_location_list (1); |
fd9b8c24 PA |
9726 | |
9727 | return 1; | |
c3f6f71d | 9728 | } |
c906108c | 9729 | |
348d480f | 9730 | /* Set a breakpoint. |
72b2ff0e VP |
9731 | ARG is a string describing breakpoint address, |
9732 | condition, and thread. | |
9733 | FLAG specifies if a breakpoint is hardware on, | |
9734 | and if breakpoint is temporary, using BP_HARDWARE_FLAG | |
9735 | and BP_TEMPFLAG. */ | |
348d480f | 9736 | |
98deb0da | 9737 | static void |
72b2ff0e | 9738 | break_command_1 (char *arg, int flag, int from_tty) |
c3f6f71d | 9739 | { |
72b2ff0e | 9740 | int tempflag = flag & BP_TEMPFLAG; |
0fb4aa4b PA |
9741 | enum bptype type_wanted = (flag & BP_HARDWAREFLAG |
9742 | ? bp_hardware_breakpoint | |
9743 | : bp_breakpoint); | |
55aa24fb SDJ |
9744 | struct breakpoint_ops *ops; |
9745 | const char *arg_cp = arg; | |
9746 | ||
9747 | /* Matching breakpoints on probes. */ | |
9748 | if (arg && probe_linespec_to_ops (&arg_cp) != NULL) | |
9749 | ops = &bkpt_probe_breakpoint_ops; | |
9750 | else | |
9751 | ops = &bkpt_breakpoint_ops; | |
c3f6f71d | 9752 | |
8cdf0e15 VP |
9753 | create_breakpoint (get_current_arch (), |
9754 | arg, | |
e7e0cddf | 9755 | NULL, 0, NULL, 1 /* parse arg */, |
0fb4aa4b | 9756 | tempflag, type_wanted, |
8cdf0e15 VP |
9757 | 0 /* Ignore count */, |
9758 | pending_break_support, | |
55aa24fb | 9759 | ops, |
8cdf0e15 | 9760 | from_tty, |
84f4c1fe | 9761 | 1 /* enabled */, |
44f238bb PA |
9762 | 0 /* internal */, |
9763 | 0); | |
c906108c SS |
9764 | } |
9765 | ||
c906108c SS |
9766 | /* Helper function for break_command_1 and disassemble_command. */ |
9767 | ||
9768 | void | |
fba45db2 | 9769 | resolve_sal_pc (struct symtab_and_line *sal) |
c906108c SS |
9770 | { |
9771 | CORE_ADDR pc; | |
9772 | ||
9773 | if (sal->pc == 0 && sal->symtab != NULL) | |
9774 | { | |
9775 | if (!find_line_pc (sal->symtab, sal->line, &pc)) | |
8a3fe4f8 | 9776 | error (_("No line %d in file \"%s\"."), |
05cba821 | 9777 | sal->line, symtab_to_filename_for_display (sal->symtab)); |
c906108c | 9778 | sal->pc = pc; |
6a048695 | 9779 | |
4a64f543 MS |
9780 | /* If this SAL corresponds to a breakpoint inserted using a line |
9781 | number, then skip the function prologue if necessary. */ | |
6a048695 | 9782 | if (sal->explicit_line) |
059acae7 | 9783 | skip_prologue_sal (sal); |
c906108c SS |
9784 | } |
9785 | ||
9786 | if (sal->section == 0 && sal->symtab != NULL) | |
9787 | { | |
9788 | struct blockvector *bv; | |
c5aa993b JM |
9789 | struct block *b; |
9790 | struct symbol *sym; | |
c906108c | 9791 | |
801e3a5b | 9792 | bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab); |
c906108c SS |
9793 | if (bv != NULL) |
9794 | { | |
7f0df278 | 9795 | sym = block_linkage_function (b); |
c906108c SS |
9796 | if (sym != NULL) |
9797 | { | |
9798 | fixup_symbol_section (sym, sal->symtab->objfile); | |
e27d198c | 9799 | sal->section = SYMBOL_OBJ_SECTION (sal->symtab->objfile, sym); |
c906108c SS |
9800 | } |
9801 | else | |
9802 | { | |
4a64f543 MS |
9803 | /* It really is worthwhile to have the section, so we'll |
9804 | just have to look harder. This case can be executed | |
9805 | if we have line numbers but no functions (as can | |
9806 | happen in assembly source). */ | |
c906108c | 9807 | |
7cbd4a93 | 9808 | struct bound_minimal_symbol msym; |
6c95b8df PA |
9809 | struct cleanup *old_chain = save_current_space_and_thread (); |
9810 | ||
9811 | switch_to_program_space_and_thread (sal->pspace); | |
c906108c SS |
9812 | |
9813 | msym = lookup_minimal_symbol_by_pc (sal->pc); | |
7cbd4a93 | 9814 | if (msym.minsym) |
e27d198c | 9815 | sal->section = SYMBOL_OBJ_SECTION (msym.objfile, msym.minsym); |
6c95b8df PA |
9816 | |
9817 | do_cleanups (old_chain); | |
c906108c SS |
9818 | } |
9819 | } | |
9820 | } | |
9821 | } | |
9822 | ||
9823 | void | |
fba45db2 | 9824 | break_command (char *arg, int from_tty) |
c906108c | 9825 | { |
db107f19 | 9826 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9827 | } |
9828 | ||
c906108c | 9829 | void |
fba45db2 | 9830 | tbreak_command (char *arg, int from_tty) |
c906108c | 9831 | { |
db107f19 | 9832 | break_command_1 (arg, BP_TEMPFLAG, from_tty); |
c906108c SS |
9833 | } |
9834 | ||
c906108c | 9835 | static void |
fba45db2 | 9836 | hbreak_command (char *arg, int from_tty) |
c906108c | 9837 | { |
db107f19 | 9838 | break_command_1 (arg, BP_HARDWAREFLAG, from_tty); |
c906108c SS |
9839 | } |
9840 | ||
9841 | static void | |
fba45db2 | 9842 | thbreak_command (char *arg, int from_tty) |
c906108c | 9843 | { |
db107f19 | 9844 | break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty); |
c906108c SS |
9845 | } |
9846 | ||
9847 | static void | |
fba45db2 | 9848 | stop_command (char *arg, int from_tty) |
c906108c | 9849 | { |
a3f17187 | 9850 | printf_filtered (_("Specify the type of breakpoint to set.\n\ |
c906108c | 9851 | Usage: stop in <function | address>\n\ |
a3f17187 | 9852 | stop at <line>\n")); |
c906108c SS |
9853 | } |
9854 | ||
9855 | static void | |
fba45db2 | 9856 | stopin_command (char *arg, int from_tty) |
c906108c SS |
9857 | { |
9858 | int badInput = 0; | |
9859 | ||
c5aa993b | 9860 | if (arg == (char *) NULL) |
c906108c SS |
9861 | badInput = 1; |
9862 | else if (*arg != '*') | |
9863 | { | |
9864 | char *argptr = arg; | |
9865 | int hasColon = 0; | |
9866 | ||
4a64f543 | 9867 | /* Look for a ':'. If this is a line number specification, then |
53a5351d | 9868 | say it is bad, otherwise, it should be an address or |
4a64f543 | 9869 | function/method name. */ |
c906108c | 9870 | while (*argptr && !hasColon) |
c5aa993b JM |
9871 | { |
9872 | hasColon = (*argptr == ':'); | |
9873 | argptr++; | |
9874 | } | |
c906108c SS |
9875 | |
9876 | if (hasColon) | |
c5aa993b | 9877 | badInput = (*argptr != ':'); /* Not a class::method */ |
c906108c | 9878 | else |
c5aa993b | 9879 | badInput = isdigit (*arg); /* a simple line number */ |
c906108c SS |
9880 | } |
9881 | ||
9882 | if (badInput) | |
a3f17187 | 9883 | printf_filtered (_("Usage: stop in <function | address>\n")); |
c906108c | 9884 | else |
db107f19 | 9885 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9886 | } |
9887 | ||
9888 | static void | |
fba45db2 | 9889 | stopat_command (char *arg, int from_tty) |
c906108c SS |
9890 | { |
9891 | int badInput = 0; | |
9892 | ||
c5aa993b | 9893 | if (arg == (char *) NULL || *arg == '*') /* no line number */ |
c906108c SS |
9894 | badInput = 1; |
9895 | else | |
9896 | { | |
9897 | char *argptr = arg; | |
9898 | int hasColon = 0; | |
9899 | ||
4a64f543 MS |
9900 | /* Look for a ':'. If there is a '::' then get out, otherwise |
9901 | it is probably a line number. */ | |
c906108c | 9902 | while (*argptr && !hasColon) |
c5aa993b JM |
9903 | { |
9904 | hasColon = (*argptr == ':'); | |
9905 | argptr++; | |
9906 | } | |
c906108c SS |
9907 | |
9908 | if (hasColon) | |
c5aa993b | 9909 | badInput = (*argptr == ':'); /* we have class::method */ |
c906108c | 9910 | else |
c5aa993b | 9911 | badInput = !isdigit (*arg); /* not a line number */ |
c906108c SS |
9912 | } |
9913 | ||
9914 | if (badInput) | |
a3f17187 | 9915 | printf_filtered (_("Usage: stop at <line>\n")); |
c906108c | 9916 | else |
db107f19 | 9917 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9918 | } |
9919 | ||
e7e0cddf SS |
9920 | /* The dynamic printf command is mostly like a regular breakpoint, but |
9921 | with a prewired command list consisting of a single output command, | |
9922 | built from extra arguments supplied on the dprintf command | |
9923 | line. */ | |
9924 | ||
da821c7b | 9925 | static void |
e7e0cddf SS |
9926 | dprintf_command (char *arg, int from_tty) |
9927 | { | |
9928 | create_breakpoint (get_current_arch (), | |
9929 | arg, | |
9930 | NULL, 0, NULL, 1 /* parse arg */, | |
9931 | 0, bp_dprintf, | |
9932 | 0 /* Ignore count */, | |
9933 | pending_break_support, | |
9934 | &dprintf_breakpoint_ops, | |
9935 | from_tty, | |
9936 | 1 /* enabled */, | |
9937 | 0 /* internal */, | |
9938 | 0); | |
9939 | } | |
9940 | ||
d3ce09f5 SS |
9941 | static void |
9942 | agent_printf_command (char *arg, int from_tty) | |
9943 | { | |
9944 | error (_("May only run agent-printf on the target")); | |
9945 | } | |
9946 | ||
f1310107 TJB |
9947 | /* Implement the "breakpoint_hit" breakpoint_ops method for |
9948 | ranged breakpoints. */ | |
9949 | ||
9950 | static int | |
9951 | breakpoint_hit_ranged_breakpoint (const struct bp_location *bl, | |
9952 | struct address_space *aspace, | |
09ac7c10 TT |
9953 | CORE_ADDR bp_addr, |
9954 | const struct target_waitstatus *ws) | |
f1310107 | 9955 | { |
09ac7c10 | 9956 | if (ws->kind != TARGET_WAITKIND_STOPPED |
a493e3e2 | 9957 | || ws->value.sig != GDB_SIGNAL_TRAP) |
09ac7c10 TT |
9958 | return 0; |
9959 | ||
f1310107 TJB |
9960 | return breakpoint_address_match_range (bl->pspace->aspace, bl->address, |
9961 | bl->length, aspace, bp_addr); | |
9962 | } | |
9963 | ||
9964 | /* Implement the "resources_needed" breakpoint_ops method for | |
9965 | ranged breakpoints. */ | |
9966 | ||
9967 | static int | |
9968 | resources_needed_ranged_breakpoint (const struct bp_location *bl) | |
9969 | { | |
9970 | return target_ranged_break_num_registers (); | |
9971 | } | |
9972 | ||
9973 | /* Implement the "print_it" breakpoint_ops method for | |
9974 | ranged breakpoints. */ | |
9975 | ||
9976 | static enum print_stop_action | |
348d480f | 9977 | print_it_ranged_breakpoint (bpstat bs) |
f1310107 | 9978 | { |
348d480f | 9979 | struct breakpoint *b = bs->breakpoint_at; |
f1310107 | 9980 | struct bp_location *bl = b->loc; |
79a45e25 | 9981 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
9982 | |
9983 | gdb_assert (b->type == bp_hardware_breakpoint); | |
9984 | ||
9985 | /* Ranged breakpoints have only one location. */ | |
9986 | gdb_assert (bl && bl->next == NULL); | |
9987 | ||
9988 | annotate_breakpoint (b->number); | |
9989 | if (b->disposition == disp_del) | |
9990 | ui_out_text (uiout, "\nTemporary ranged breakpoint "); | |
9991 | else | |
9992 | ui_out_text (uiout, "\nRanged breakpoint "); | |
9993 | if (ui_out_is_mi_like_p (uiout)) | |
9994 | { | |
9995 | ui_out_field_string (uiout, "reason", | |
9996 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
9997 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
9998 | } | |
9999 | ui_out_field_int (uiout, "bkptno", b->number); | |
10000 | ui_out_text (uiout, ", "); | |
10001 | ||
10002 | return PRINT_SRC_AND_LOC; | |
10003 | } | |
10004 | ||
10005 | /* Implement the "print_one" breakpoint_ops method for | |
10006 | ranged breakpoints. */ | |
10007 | ||
10008 | static void | |
10009 | print_one_ranged_breakpoint (struct breakpoint *b, | |
10010 | struct bp_location **last_loc) | |
10011 | { | |
10012 | struct bp_location *bl = b->loc; | |
10013 | struct value_print_options opts; | |
79a45e25 | 10014 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
10015 | |
10016 | /* Ranged breakpoints have only one location. */ | |
10017 | gdb_assert (bl && bl->next == NULL); | |
10018 | ||
10019 | get_user_print_options (&opts); | |
10020 | ||
10021 | if (opts.addressprint) | |
10022 | /* We don't print the address range here, it will be printed later | |
10023 | by print_one_detail_ranged_breakpoint. */ | |
10024 | ui_out_field_skip (uiout, "addr"); | |
10025 | annotate_field (5); | |
10026 | print_breakpoint_location (b, bl); | |
10027 | *last_loc = bl; | |
10028 | } | |
10029 | ||
10030 | /* Implement the "print_one_detail" breakpoint_ops method for | |
10031 | ranged breakpoints. */ | |
10032 | ||
10033 | static void | |
10034 | print_one_detail_ranged_breakpoint (const struct breakpoint *b, | |
10035 | struct ui_out *uiout) | |
10036 | { | |
10037 | CORE_ADDR address_start, address_end; | |
10038 | struct bp_location *bl = b->loc; | |
f99d8bf4 PA |
10039 | struct ui_file *stb = mem_fileopen (); |
10040 | struct cleanup *cleanup = make_cleanup_ui_file_delete (stb); | |
f1310107 TJB |
10041 | |
10042 | gdb_assert (bl); | |
10043 | ||
10044 | address_start = bl->address; | |
10045 | address_end = address_start + bl->length - 1; | |
10046 | ||
10047 | ui_out_text (uiout, "\taddress range: "); | |
f99d8bf4 | 10048 | fprintf_unfiltered (stb, "[%s, %s]", |
f1310107 TJB |
10049 | print_core_address (bl->gdbarch, address_start), |
10050 | print_core_address (bl->gdbarch, address_end)); | |
10051 | ui_out_field_stream (uiout, "addr", stb); | |
10052 | ui_out_text (uiout, "\n"); | |
10053 | ||
10054 | do_cleanups (cleanup); | |
10055 | } | |
10056 | ||
10057 | /* Implement the "print_mention" breakpoint_ops method for | |
10058 | ranged breakpoints. */ | |
10059 | ||
10060 | static void | |
10061 | print_mention_ranged_breakpoint (struct breakpoint *b) | |
10062 | { | |
10063 | struct bp_location *bl = b->loc; | |
79a45e25 | 10064 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
10065 | |
10066 | gdb_assert (bl); | |
10067 | gdb_assert (b->type == bp_hardware_breakpoint); | |
10068 | ||
10069 | if (ui_out_is_mi_like_p (uiout)) | |
10070 | return; | |
10071 | ||
10072 | printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."), | |
10073 | b->number, paddress (bl->gdbarch, bl->address), | |
10074 | paddress (bl->gdbarch, bl->address + bl->length - 1)); | |
10075 | } | |
10076 | ||
10077 | /* Implement the "print_recreate" breakpoint_ops method for | |
10078 | ranged breakpoints. */ | |
10079 | ||
10080 | static void | |
10081 | print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp) | |
10082 | { | |
10083 | fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string, | |
10084 | b->addr_string_range_end); | |
d9b3f62e | 10085 | print_recreate_thread (b, fp); |
f1310107 TJB |
10086 | } |
10087 | ||
10088 | /* The breakpoint_ops structure to be used in ranged breakpoints. */ | |
10089 | ||
2060206e | 10090 | static struct breakpoint_ops ranged_breakpoint_ops; |
f1310107 TJB |
10091 | |
10092 | /* Find the address where the end of the breakpoint range should be | |
10093 | placed, given the SAL of the end of the range. This is so that if | |
10094 | the user provides a line number, the end of the range is set to the | |
10095 | last instruction of the given line. */ | |
10096 | ||
10097 | static CORE_ADDR | |
10098 | find_breakpoint_range_end (struct symtab_and_line sal) | |
10099 | { | |
10100 | CORE_ADDR end; | |
10101 | ||
10102 | /* If the user provided a PC value, use it. Otherwise, | |
10103 | find the address of the end of the given location. */ | |
10104 | if (sal.explicit_pc) | |
10105 | end = sal.pc; | |
10106 | else | |
10107 | { | |
10108 | int ret; | |
10109 | CORE_ADDR start; | |
10110 | ||
10111 | ret = find_line_pc_range (sal, &start, &end); | |
10112 | if (!ret) | |
10113 | error (_("Could not find location of the end of the range.")); | |
10114 | ||
10115 | /* find_line_pc_range returns the start of the next line. */ | |
10116 | end--; | |
10117 | } | |
10118 | ||
10119 | return end; | |
10120 | } | |
10121 | ||
10122 | /* Implement the "break-range" CLI command. */ | |
10123 | ||
10124 | static void | |
10125 | break_range_command (char *arg, int from_tty) | |
10126 | { | |
10127 | char *arg_start, *addr_string_start, *addr_string_end; | |
10128 | struct linespec_result canonical_start, canonical_end; | |
10129 | int bp_count, can_use_bp, length; | |
10130 | CORE_ADDR end; | |
10131 | struct breakpoint *b; | |
10132 | struct symtab_and_line sal_start, sal_end; | |
f1310107 | 10133 | struct cleanup *cleanup_bkpt; |
f8eba3c6 | 10134 | struct linespec_sals *lsal_start, *lsal_end; |
f1310107 TJB |
10135 | |
10136 | /* We don't support software ranged breakpoints. */ | |
10137 | if (target_ranged_break_num_registers () < 0) | |
10138 | error (_("This target does not support hardware ranged breakpoints.")); | |
10139 | ||
10140 | bp_count = hw_breakpoint_used_count (); | |
10141 | bp_count += target_ranged_break_num_registers (); | |
10142 | can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
10143 | bp_count, 0); | |
10144 | if (can_use_bp < 0) | |
10145 | error (_("Hardware breakpoints used exceeds limit.")); | |
10146 | ||
f8eba3c6 | 10147 | arg = skip_spaces (arg); |
f1310107 TJB |
10148 | if (arg == NULL || arg[0] == '\0') |
10149 | error(_("No address range specified.")); | |
10150 | ||
f1310107 TJB |
10151 | init_linespec_result (&canonical_start); |
10152 | ||
f8eba3c6 TT |
10153 | arg_start = arg; |
10154 | parse_breakpoint_sals (&arg, &canonical_start); | |
f1310107 | 10155 | |
f8eba3c6 | 10156 | cleanup_bkpt = make_cleanup_destroy_linespec_result (&canonical_start); |
f1310107 TJB |
10157 | |
10158 | if (arg[0] != ',') | |
10159 | error (_("Too few arguments.")); | |
f8eba3c6 | 10160 | else if (VEC_empty (linespec_sals, canonical_start.sals)) |
f1310107 | 10161 | error (_("Could not find location of the beginning of the range.")); |
f8eba3c6 TT |
10162 | |
10163 | lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0); | |
10164 | ||
10165 | if (VEC_length (linespec_sals, canonical_start.sals) > 1 | |
10166 | || lsal_start->sals.nelts != 1) | |
f1310107 TJB |
10167 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
10168 | ||
f8eba3c6 TT |
10169 | sal_start = lsal_start->sals.sals[0]; |
10170 | addr_string_start = savestring (arg_start, arg - arg_start); | |
10171 | make_cleanup (xfree, addr_string_start); | |
f1310107 TJB |
10172 | |
10173 | arg++; /* Skip the comma. */ | |
f8eba3c6 | 10174 | arg = skip_spaces (arg); |
f1310107 TJB |
10175 | |
10176 | /* Parse the end location. */ | |
10177 | ||
f1310107 TJB |
10178 | init_linespec_result (&canonical_end); |
10179 | arg_start = arg; | |
10180 | ||
f8eba3c6 | 10181 | /* We call decode_line_full directly here instead of using |
f1310107 TJB |
10182 | parse_breakpoint_sals because we need to specify the start location's |
10183 | symtab and line as the default symtab and line for the end of the | |
10184 | range. This makes it possible to have ranges like "foo.c:27, +14", | |
10185 | where +14 means 14 lines from the start location. */ | |
f8eba3c6 TT |
10186 | decode_line_full (&arg, DECODE_LINE_FUNFIRSTLINE, |
10187 | sal_start.symtab, sal_start.line, | |
10188 | &canonical_end, NULL, NULL); | |
10189 | ||
10190 | make_cleanup_destroy_linespec_result (&canonical_end); | |
f1310107 | 10191 | |
f8eba3c6 | 10192 | if (VEC_empty (linespec_sals, canonical_end.sals)) |
f1310107 | 10193 | error (_("Could not find location of the end of the range.")); |
f8eba3c6 TT |
10194 | |
10195 | lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0); | |
10196 | if (VEC_length (linespec_sals, canonical_end.sals) > 1 | |
10197 | || lsal_end->sals.nelts != 1) | |
f1310107 TJB |
10198 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
10199 | ||
f8eba3c6 TT |
10200 | sal_end = lsal_end->sals.sals[0]; |
10201 | addr_string_end = savestring (arg_start, arg - arg_start); | |
10202 | make_cleanup (xfree, addr_string_end); | |
f1310107 TJB |
10203 | |
10204 | end = find_breakpoint_range_end (sal_end); | |
10205 | if (sal_start.pc > end) | |
177b42fe | 10206 | error (_("Invalid address range, end precedes start.")); |
f1310107 TJB |
10207 | |
10208 | length = end - sal_start.pc + 1; | |
10209 | if (length < 0) | |
10210 | /* Length overflowed. */ | |
10211 | error (_("Address range too large.")); | |
10212 | else if (length == 1) | |
10213 | { | |
10214 | /* This range is simple enough to be handled by | |
10215 | the `hbreak' command. */ | |
10216 | hbreak_command (addr_string_start, 1); | |
10217 | ||
10218 | do_cleanups (cleanup_bkpt); | |
10219 | ||
10220 | return; | |
10221 | } | |
10222 | ||
10223 | /* Now set up the breakpoint. */ | |
10224 | b = set_raw_breakpoint (get_current_arch (), sal_start, | |
348d480f | 10225 | bp_hardware_breakpoint, &ranged_breakpoint_ops); |
f1310107 TJB |
10226 | set_breakpoint_count (breakpoint_count + 1); |
10227 | b->number = breakpoint_count; | |
10228 | b->disposition = disp_donttouch; | |
f8eba3c6 TT |
10229 | b->addr_string = xstrdup (addr_string_start); |
10230 | b->addr_string_range_end = xstrdup (addr_string_end); | |
f1310107 TJB |
10231 | b->loc->length = length; |
10232 | ||
f8eba3c6 | 10233 | do_cleanups (cleanup_bkpt); |
f1310107 TJB |
10234 | |
10235 | mention (b); | |
8d3788bd | 10236 | observer_notify_breakpoint_created (b); |
f1310107 TJB |
10237 | update_global_location_list (1); |
10238 | } | |
10239 | ||
4a64f543 MS |
10240 | /* Return non-zero if EXP is verified as constant. Returned zero |
10241 | means EXP is variable. Also the constant detection may fail for | |
10242 | some constant expressions and in such case still falsely return | |
10243 | zero. */ | |
2e6e3d9c | 10244 | |
65d79d4b SDJ |
10245 | static int |
10246 | watchpoint_exp_is_const (const struct expression *exp) | |
10247 | { | |
10248 | int i = exp->nelts; | |
10249 | ||
10250 | while (i > 0) | |
10251 | { | |
10252 | int oplenp, argsp; | |
10253 | ||
10254 | /* We are only interested in the descriptor of each element. */ | |
10255 | operator_length (exp, i, &oplenp, &argsp); | |
10256 | i -= oplenp; | |
10257 | ||
10258 | switch (exp->elts[i].opcode) | |
10259 | { | |
10260 | case BINOP_ADD: | |
10261 | case BINOP_SUB: | |
10262 | case BINOP_MUL: | |
10263 | case BINOP_DIV: | |
10264 | case BINOP_REM: | |
10265 | case BINOP_MOD: | |
10266 | case BINOP_LSH: | |
10267 | case BINOP_RSH: | |
10268 | case BINOP_LOGICAL_AND: | |
10269 | case BINOP_LOGICAL_OR: | |
10270 | case BINOP_BITWISE_AND: | |
10271 | case BINOP_BITWISE_IOR: | |
10272 | case BINOP_BITWISE_XOR: | |
10273 | case BINOP_EQUAL: | |
10274 | case BINOP_NOTEQUAL: | |
10275 | case BINOP_LESS: | |
10276 | case BINOP_GTR: | |
10277 | case BINOP_LEQ: | |
10278 | case BINOP_GEQ: | |
10279 | case BINOP_REPEAT: | |
10280 | case BINOP_COMMA: | |
10281 | case BINOP_EXP: | |
10282 | case BINOP_MIN: | |
10283 | case BINOP_MAX: | |
10284 | case BINOP_INTDIV: | |
10285 | case BINOP_CONCAT: | |
10286 | case BINOP_IN: | |
10287 | case BINOP_RANGE: | |
10288 | case TERNOP_COND: | |
10289 | case TERNOP_SLICE: | |
65d79d4b SDJ |
10290 | |
10291 | case OP_LONG: | |
10292 | case OP_DOUBLE: | |
10293 | case OP_DECFLOAT: | |
10294 | case OP_LAST: | |
10295 | case OP_COMPLEX: | |
10296 | case OP_STRING: | |
65d79d4b SDJ |
10297 | case OP_ARRAY: |
10298 | case OP_TYPE: | |
608b4967 TT |
10299 | case OP_TYPEOF: |
10300 | case OP_DECLTYPE: | |
6e72ca20 | 10301 | case OP_TYPEID: |
65d79d4b SDJ |
10302 | case OP_NAME: |
10303 | case OP_OBJC_NSSTRING: | |
10304 | ||
10305 | case UNOP_NEG: | |
10306 | case UNOP_LOGICAL_NOT: | |
10307 | case UNOP_COMPLEMENT: | |
10308 | case UNOP_ADDR: | |
10309 | case UNOP_HIGH: | |
aeaa2474 | 10310 | case UNOP_CAST: |
9eaf6705 TT |
10311 | |
10312 | case UNOP_CAST_TYPE: | |
10313 | case UNOP_REINTERPRET_CAST: | |
10314 | case UNOP_DYNAMIC_CAST: | |
4a64f543 MS |
10315 | /* Unary, binary and ternary operators: We have to check |
10316 | their operands. If they are constant, then so is the | |
10317 | result of that operation. For instance, if A and B are | |
10318 | determined to be constants, then so is "A + B". | |
10319 | ||
10320 | UNOP_IND is one exception to the rule above, because the | |
10321 | value of *ADDR is not necessarily a constant, even when | |
10322 | ADDR is. */ | |
65d79d4b SDJ |
10323 | break; |
10324 | ||
10325 | case OP_VAR_VALUE: | |
10326 | /* Check whether the associated symbol is a constant. | |
4a64f543 | 10327 | |
65d79d4b | 10328 | We use SYMBOL_CLASS rather than TYPE_CONST because it's |
4a64f543 MS |
10329 | possible that a buggy compiler could mark a variable as |
10330 | constant even when it is not, and TYPE_CONST would return | |
10331 | true in this case, while SYMBOL_CLASS wouldn't. | |
10332 | ||
10333 | We also have to check for function symbols because they | |
10334 | are always constant. */ | |
65d79d4b SDJ |
10335 | { |
10336 | struct symbol *s = exp->elts[i + 2].symbol; | |
10337 | ||
10338 | if (SYMBOL_CLASS (s) != LOC_BLOCK | |
10339 | && SYMBOL_CLASS (s) != LOC_CONST | |
10340 | && SYMBOL_CLASS (s) != LOC_CONST_BYTES) | |
10341 | return 0; | |
10342 | break; | |
10343 | } | |
10344 | ||
10345 | /* The default action is to return 0 because we are using | |
10346 | the optimistic approach here: If we don't know something, | |
10347 | then it is not a constant. */ | |
10348 | default: | |
10349 | return 0; | |
10350 | } | |
10351 | } | |
10352 | ||
10353 | return 1; | |
10354 | } | |
10355 | ||
3a5c3e22 PA |
10356 | /* Implement the "dtor" breakpoint_ops method for watchpoints. */ |
10357 | ||
10358 | static void | |
10359 | dtor_watchpoint (struct breakpoint *self) | |
10360 | { | |
10361 | struct watchpoint *w = (struct watchpoint *) self; | |
10362 | ||
10363 | xfree (w->cond_exp); | |
10364 | xfree (w->exp); | |
10365 | xfree (w->exp_string); | |
10366 | xfree (w->exp_string_reparse); | |
10367 | value_free (w->val); | |
10368 | ||
10369 | base_breakpoint_ops.dtor (self); | |
10370 | } | |
10371 | ||
348d480f PA |
10372 | /* Implement the "re_set" breakpoint_ops method for watchpoints. */ |
10373 | ||
10374 | static void | |
10375 | re_set_watchpoint (struct breakpoint *b) | |
10376 | { | |
3a5c3e22 PA |
10377 | struct watchpoint *w = (struct watchpoint *) b; |
10378 | ||
348d480f PA |
10379 | /* Watchpoint can be either on expression using entirely global |
10380 | variables, or it can be on local variables. | |
10381 | ||
10382 | Watchpoints of the first kind are never auto-deleted, and even | |
10383 | persist across program restarts. Since they can use variables | |
10384 | from shared libraries, we need to reparse expression as libraries | |
10385 | are loaded and unloaded. | |
10386 | ||
10387 | Watchpoints on local variables can also change meaning as result | |
10388 | of solib event. For example, if a watchpoint uses both a local | |
10389 | and a global variables in expression, it's a local watchpoint, | |
10390 | but unloading of a shared library will make the expression | |
10391 | invalid. This is not a very common use case, but we still | |
10392 | re-evaluate expression, to avoid surprises to the user. | |
10393 | ||
10394 | Note that for local watchpoints, we re-evaluate it only if | |
10395 | watchpoints frame id is still valid. If it's not, it means the | |
10396 | watchpoint is out of scope and will be deleted soon. In fact, | |
10397 | I'm not sure we'll ever be called in this case. | |
10398 | ||
10399 | If a local watchpoint's frame id is still valid, then | |
3a5c3e22 | 10400 | w->exp_valid_block is likewise valid, and we can safely use it. |
348d480f | 10401 | |
3a5c3e22 PA |
10402 | Don't do anything about disabled watchpoints, since they will be |
10403 | reevaluated again when enabled. */ | |
10404 | update_watchpoint (w, 1 /* reparse */); | |
348d480f PA |
10405 | } |
10406 | ||
77b06cd7 TJB |
10407 | /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */ |
10408 | ||
10409 | static int | |
10410 | insert_watchpoint (struct bp_location *bl) | |
10411 | { | |
3a5c3e22 PA |
10412 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10413 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
10414 | |
10415 | return target_insert_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 10416 | w->cond_exp); |
77b06cd7 TJB |
10417 | } |
10418 | ||
10419 | /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */ | |
10420 | ||
10421 | static int | |
10422 | remove_watchpoint (struct bp_location *bl) | |
10423 | { | |
3a5c3e22 PA |
10424 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10425 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
10426 | |
10427 | return target_remove_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 10428 | w->cond_exp); |
e09342b5 TJB |
10429 | } |
10430 | ||
e09342b5 | 10431 | static int |
348d480f | 10432 | breakpoint_hit_watchpoint (const struct bp_location *bl, |
09ac7c10 TT |
10433 | struct address_space *aspace, CORE_ADDR bp_addr, |
10434 | const struct target_waitstatus *ws) | |
e09342b5 | 10435 | { |
348d480f | 10436 | struct breakpoint *b = bl->owner; |
3a5c3e22 | 10437 | struct watchpoint *w = (struct watchpoint *) b; |
77b06cd7 | 10438 | |
348d480f PA |
10439 | /* Continuable hardware watchpoints are treated as non-existent if the |
10440 | reason we stopped wasn't a hardware watchpoint (we didn't stop on | |
10441 | some data address). Otherwise gdb won't stop on a break instruction | |
10442 | in the code (not from a breakpoint) when a hardware watchpoint has | |
10443 | been defined. Also skip watchpoints which we know did not trigger | |
10444 | (did not match the data address). */ | |
10445 | if (is_hardware_watchpoint (b) | |
3a5c3e22 | 10446 | && w->watchpoint_triggered == watch_triggered_no) |
348d480f | 10447 | return 0; |
9c06b0b4 | 10448 | |
348d480f | 10449 | return 1; |
9c06b0b4 TJB |
10450 | } |
10451 | ||
348d480f PA |
10452 | static void |
10453 | check_status_watchpoint (bpstat bs) | |
9c06b0b4 | 10454 | { |
348d480f | 10455 | gdb_assert (is_watchpoint (bs->breakpoint_at)); |
9c06b0b4 | 10456 | |
348d480f | 10457 | bpstat_check_watchpoint (bs); |
9c06b0b4 TJB |
10458 | } |
10459 | ||
10460 | /* Implement the "resources_needed" breakpoint_ops method for | |
348d480f | 10461 | hardware watchpoints. */ |
9c06b0b4 TJB |
10462 | |
10463 | static int | |
348d480f | 10464 | resources_needed_watchpoint (const struct bp_location *bl) |
9c06b0b4 | 10465 | { |
3a5c3e22 PA |
10466 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
10467 | int length = w->exact? 1 : bl->length; | |
348d480f PA |
10468 | |
10469 | return target_region_ok_for_hw_watchpoint (bl->address, length); | |
9c06b0b4 TJB |
10470 | } |
10471 | ||
10472 | /* Implement the "works_in_software_mode" breakpoint_ops method for | |
348d480f | 10473 | hardware watchpoints. */ |
9c06b0b4 TJB |
10474 | |
10475 | static int | |
348d480f | 10476 | works_in_software_mode_watchpoint (const struct breakpoint *b) |
9c06b0b4 | 10477 | { |
efa80663 PA |
10478 | /* Read and access watchpoints only work with hardware support. */ |
10479 | return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint; | |
9c06b0b4 TJB |
10480 | } |
10481 | ||
9c06b0b4 | 10482 | static enum print_stop_action |
348d480f | 10483 | print_it_watchpoint (bpstat bs) |
9c06b0b4 | 10484 | { |
348d480f PA |
10485 | struct cleanup *old_chain; |
10486 | struct breakpoint *b; | |
f99d8bf4 | 10487 | struct ui_file *stb; |
348d480f | 10488 | enum print_stop_action result; |
3a5c3e22 | 10489 | struct watchpoint *w; |
79a45e25 | 10490 | struct ui_out *uiout = current_uiout; |
348d480f PA |
10491 | |
10492 | gdb_assert (bs->bp_location_at != NULL); | |
10493 | ||
348d480f | 10494 | b = bs->breakpoint_at; |
3a5c3e22 | 10495 | w = (struct watchpoint *) b; |
348d480f | 10496 | |
f99d8bf4 PA |
10497 | stb = mem_fileopen (); |
10498 | old_chain = make_cleanup_ui_file_delete (stb); | |
9c06b0b4 TJB |
10499 | |
10500 | switch (b->type) | |
10501 | { | |
348d480f | 10502 | case bp_watchpoint: |
9c06b0b4 TJB |
10503 | case bp_hardware_watchpoint: |
10504 | annotate_watchpoint (b->number); | |
10505 | if (ui_out_is_mi_like_p (uiout)) | |
10506 | ui_out_field_string | |
10507 | (uiout, "reason", | |
10508 | async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER)); | |
348d480f PA |
10509 | mention (b); |
10510 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10511 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 10512 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
10513 | ui_out_field_stream (uiout, "old", stb); |
10514 | ui_out_text (uiout, "\nNew value = "); | |
f99d8bf4 | 10515 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10516 | ui_out_field_stream (uiout, "new", stb); |
10517 | ui_out_text (uiout, "\n"); | |
10518 | /* More than one watchpoint may have been triggered. */ | |
10519 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10520 | break; |
10521 | ||
10522 | case bp_read_watchpoint: | |
10523 | if (ui_out_is_mi_like_p (uiout)) | |
10524 | ui_out_field_string | |
10525 | (uiout, "reason", | |
10526 | async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER)); | |
348d480f PA |
10527 | mention (b); |
10528 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10529 | ui_out_text (uiout, "\nValue = "); | |
f99d8bf4 | 10530 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10531 | ui_out_field_stream (uiout, "value", stb); |
10532 | ui_out_text (uiout, "\n"); | |
10533 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10534 | break; |
10535 | ||
10536 | case bp_access_watchpoint: | |
348d480f PA |
10537 | if (bs->old_val != NULL) |
10538 | { | |
10539 | annotate_watchpoint (b->number); | |
10540 | if (ui_out_is_mi_like_p (uiout)) | |
10541 | ui_out_field_string | |
10542 | (uiout, "reason", | |
10543 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
10544 | mention (b); | |
10545 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10546 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 10547 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
10548 | ui_out_field_stream (uiout, "old", stb); |
10549 | ui_out_text (uiout, "\nNew value = "); | |
10550 | } | |
10551 | else | |
10552 | { | |
10553 | mention (b); | |
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 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
10559 | ui_out_text (uiout, "\nValue = "); | |
10560 | } | |
f99d8bf4 | 10561 | watchpoint_value_print (w->val, stb); |
348d480f PA |
10562 | ui_out_field_stream (uiout, "new", stb); |
10563 | ui_out_text (uiout, "\n"); | |
10564 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
10565 | break; |
10566 | default: | |
348d480f | 10567 | result = PRINT_UNKNOWN; |
9c06b0b4 TJB |
10568 | } |
10569 | ||
348d480f PA |
10570 | do_cleanups (old_chain); |
10571 | return result; | |
10572 | } | |
10573 | ||
10574 | /* Implement the "print_mention" breakpoint_ops method for hardware | |
10575 | watchpoints. */ | |
10576 | ||
10577 | static void | |
10578 | print_mention_watchpoint (struct breakpoint *b) | |
10579 | { | |
10580 | struct cleanup *ui_out_chain; | |
3a5c3e22 | 10581 | struct watchpoint *w = (struct watchpoint *) b; |
79a45e25 | 10582 | struct ui_out *uiout = current_uiout; |
348d480f PA |
10583 | |
10584 | switch (b->type) | |
10585 | { | |
10586 | case bp_watchpoint: | |
10587 | ui_out_text (uiout, "Watchpoint "); | |
10588 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
10589 | break; | |
10590 | case bp_hardware_watchpoint: | |
10591 | ui_out_text (uiout, "Hardware watchpoint "); | |
10592 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
10593 | break; | |
10594 | case bp_read_watchpoint: | |
10595 | ui_out_text (uiout, "Hardware read watchpoint "); | |
10596 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
10597 | break; | |
10598 | case bp_access_watchpoint: | |
10599 | ui_out_text (uiout, "Hardware access (read/write) watchpoint "); | |
10600 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
10601 | break; | |
10602 | default: | |
10603 | internal_error (__FILE__, __LINE__, | |
10604 | _("Invalid hardware watchpoint type.")); | |
10605 | } | |
10606 | ||
10607 | ui_out_field_int (uiout, "number", b->number); | |
10608 | ui_out_text (uiout, ": "); | |
3a5c3e22 | 10609 | ui_out_field_string (uiout, "exp", w->exp_string); |
348d480f PA |
10610 | do_cleanups (ui_out_chain); |
10611 | } | |
10612 | ||
10613 | /* Implement the "print_recreate" breakpoint_ops method for | |
10614 | watchpoints. */ | |
10615 | ||
10616 | static void | |
10617 | print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp) | |
10618 | { | |
3a5c3e22 PA |
10619 | struct watchpoint *w = (struct watchpoint *) b; |
10620 | ||
348d480f PA |
10621 | switch (b->type) |
10622 | { | |
10623 | case bp_watchpoint: | |
10624 | case bp_hardware_watchpoint: | |
10625 | fprintf_unfiltered (fp, "watch"); | |
10626 | break; | |
10627 | case bp_read_watchpoint: | |
10628 | fprintf_unfiltered (fp, "rwatch"); | |
10629 | break; | |
10630 | case bp_access_watchpoint: | |
10631 | fprintf_unfiltered (fp, "awatch"); | |
10632 | break; | |
10633 | default: | |
10634 | internal_error (__FILE__, __LINE__, | |
10635 | _("Invalid watchpoint type.")); | |
10636 | } | |
10637 | ||
3a5c3e22 | 10638 | fprintf_unfiltered (fp, " %s", w->exp_string); |
d9b3f62e | 10639 | print_recreate_thread (b, fp); |
348d480f PA |
10640 | } |
10641 | ||
427cd150 TT |
10642 | /* Implement the "explains_signal" breakpoint_ops method for |
10643 | watchpoints. */ | |
10644 | ||
10645 | static enum bpstat_signal_value | |
10646 | explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig) | |
10647 | { | |
10648 | /* A software watchpoint cannot cause a signal other than | |
10649 | GDB_SIGNAL_TRAP. */ | |
10650 | if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP) | |
10651 | return BPSTAT_SIGNAL_NO; | |
10652 | ||
10653 | return BPSTAT_SIGNAL_HIDE; | |
10654 | } | |
10655 | ||
348d480f PA |
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 | |
427cd150 | 12759 | base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig) |
ab04a2af TT |
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 | 12958 | { |
023fa29b | 12959 | create_breakpoints_sal_default (gdbarch, canonical, |
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 | |
4d1eb6b4 | 13077 | over a dlopen call and solib_add is resetting the breakpoints. |
06edf0c0 PA |
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 | 13296 | { |
023fa29b | 13297 | create_breakpoints_sal_default (gdbarch, canonical, |
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, | |
983af33b | 14133 | char *cond_string, |
e7e0cddf | 14134 | char *extra_string, |
983af33b SDJ |
14135 | enum bptype type_wanted, |
14136 | enum bpdisp disposition, | |
14137 | int thread, | |
14138 | int task, int ignore_count, | |
14139 | const struct breakpoint_ops *ops, | |
14140 | int from_tty, int enabled, | |
44f238bb | 14141 | int internal, unsigned flags) |
983af33b SDJ |
14142 | { |
14143 | create_breakpoints_sal (gdbarch, canonical, cond_string, | |
e7e0cddf | 14144 | extra_string, |
983af33b SDJ |
14145 | type_wanted, disposition, |
14146 | thread, task, ignore_count, ops, from_tty, | |
44f238bb | 14147 | enabled, internal, flags); |
983af33b SDJ |
14148 | } |
14149 | ||
14150 | /* Decode the line represented by S by calling decode_line_full. This is the | |
14151 | default function for the `decode_linespec' method of breakpoint_ops. */ | |
14152 | ||
14153 | static void | |
14154 | decode_linespec_default (struct breakpoint *b, char **s, | |
14155 | struct symtabs_and_lines *sals) | |
14156 | { | |
14157 | struct linespec_result canonical; | |
14158 | ||
14159 | init_linespec_result (&canonical); | |
14160 | decode_line_full (s, DECODE_LINE_FUNFIRSTLINE, | |
14161 | (struct symtab *) NULL, 0, | |
14162 | &canonical, multiple_symbols_all, | |
14163 | b->filter); | |
14164 | ||
14165 | /* We should get 0 or 1 resulting SALs. */ | |
14166 | gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2); | |
14167 | ||
14168 | if (VEC_length (linespec_sals, canonical.sals) > 0) | |
14169 | { | |
14170 | struct linespec_sals *lsal; | |
14171 | ||
14172 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
14173 | *sals = lsal->sals; | |
14174 | /* Arrange it so the destructor does not free the | |
14175 | contents. */ | |
14176 | lsal->sals.sals = NULL; | |
14177 | } | |
14178 | ||
14179 | destroy_linespec_result (&canonical); | |
14180 | } | |
14181 | ||
28010a5d PA |
14182 | /* Prepare the global context for a re-set of breakpoint B. */ |
14183 | ||
14184 | static struct cleanup * | |
14185 | prepare_re_set_context (struct breakpoint *b) | |
14186 | { | |
14187 | struct cleanup *cleanups; | |
14188 | ||
14189 | input_radix = b->input_radix; | |
14190 | cleanups = save_current_space_and_thread (); | |
f8eba3c6 TT |
14191 | if (b->pspace != NULL) |
14192 | switch_to_program_space_and_thread (b->pspace); | |
28010a5d PA |
14193 | set_language (b->language); |
14194 | ||
14195 | return cleanups; | |
ef23e705 TJB |
14196 | } |
14197 | ||
c906108c SS |
14198 | /* Reset a breakpoint given it's struct breakpoint * BINT. |
14199 | The value we return ends up being the return value from catch_errors. | |
14200 | Unused in this case. */ | |
14201 | ||
14202 | static int | |
4efb68b1 | 14203 | breakpoint_re_set_one (void *bint) |
c906108c | 14204 | { |
4a64f543 | 14205 | /* Get past catch_errs. */ |
53a5351d | 14206 | struct breakpoint *b = (struct breakpoint *) bint; |
348d480f | 14207 | struct cleanup *cleanups; |
c906108c | 14208 | |
348d480f PA |
14209 | cleanups = prepare_re_set_context (b); |
14210 | b->ops->re_set (b); | |
14211 | do_cleanups (cleanups); | |
c906108c SS |
14212 | return 0; |
14213 | } | |
14214 | ||
69de3c6a | 14215 | /* Re-set all breakpoints after symbols have been re-loaded. */ |
c906108c | 14216 | void |
69de3c6a | 14217 | breakpoint_re_set (void) |
c906108c | 14218 | { |
35df4500 | 14219 | struct breakpoint *b, *b_tmp; |
c906108c SS |
14220 | enum language save_language; |
14221 | int save_input_radix; | |
6c95b8df | 14222 | struct cleanup *old_chain; |
c5aa993b | 14223 | |
c906108c SS |
14224 | save_language = current_language->la_language; |
14225 | save_input_radix = input_radix; | |
6c95b8df PA |
14226 | old_chain = save_current_program_space (); |
14227 | ||
35df4500 | 14228 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 14229 | { |
4a64f543 | 14230 | /* Format possible error msg. */ |
fe3f5fa8 | 14231 | char *message = xstrprintf ("Error in re-setting breakpoint %d: ", |
9ebf4acf AC |
14232 | b->number); |
14233 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
c5aa993b | 14234 | catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL); |
9ebf4acf | 14235 | do_cleanups (cleanups); |
c5aa993b | 14236 | } |
c906108c SS |
14237 | set_language (save_language); |
14238 | input_radix = save_input_radix; | |
e62c965a | 14239 | |
0756c555 | 14240 | jit_breakpoint_re_set (); |
4efc6507 | 14241 | |
6c95b8df PA |
14242 | do_cleanups (old_chain); |
14243 | ||
af02033e PP |
14244 | create_overlay_event_breakpoint (); |
14245 | create_longjmp_master_breakpoint (); | |
14246 | create_std_terminate_master_breakpoint (); | |
186c406b | 14247 | create_exception_master_breakpoint (); |
c906108c SS |
14248 | } |
14249 | \f | |
c906108c SS |
14250 | /* Reset the thread number of this breakpoint: |
14251 | ||
14252 | - If the breakpoint is for all threads, leave it as-is. | |
4a64f543 | 14253 | - Else, reset it to the current thread for inferior_ptid. */ |
c906108c | 14254 | void |
fba45db2 | 14255 | breakpoint_re_set_thread (struct breakpoint *b) |
c906108c SS |
14256 | { |
14257 | if (b->thread != -1) | |
14258 | { | |
39f77062 KB |
14259 | if (in_thread_list (inferior_ptid)) |
14260 | b->thread = pid_to_thread_id (inferior_ptid); | |
6c95b8df PA |
14261 | |
14262 | /* We're being called after following a fork. The new fork is | |
14263 | selected as current, and unless this was a vfork will have a | |
14264 | different program space from the original thread. Reset that | |
14265 | as well. */ | |
14266 | b->loc->pspace = current_program_space; | |
c906108c SS |
14267 | } |
14268 | } | |
14269 | ||
03ac34d5 MS |
14270 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
14271 | If from_tty is nonzero, it prints a message to that effect, | |
14272 | which ends with a period (no newline). */ | |
14273 | ||
c906108c | 14274 | void |
fba45db2 | 14275 | set_ignore_count (int bptnum, int count, int from_tty) |
c906108c | 14276 | { |
52f0bd74 | 14277 | struct breakpoint *b; |
c906108c SS |
14278 | |
14279 | if (count < 0) | |
14280 | count = 0; | |
14281 | ||
14282 | ALL_BREAKPOINTS (b) | |
14283 | if (b->number == bptnum) | |
c5aa993b | 14284 | { |
d77f58be SS |
14285 | if (is_tracepoint (b)) |
14286 | { | |
14287 | if (from_tty && count != 0) | |
14288 | printf_filtered (_("Ignore count ignored for tracepoint %d."), | |
14289 | bptnum); | |
14290 | return; | |
14291 | } | |
14292 | ||
c5aa993b | 14293 | b->ignore_count = count; |
221ea385 KS |
14294 | if (from_tty) |
14295 | { | |
14296 | if (count == 0) | |
3e43a32a MS |
14297 | printf_filtered (_("Will stop next time " |
14298 | "breakpoint %d is reached."), | |
221ea385 KS |
14299 | bptnum); |
14300 | else if (count == 1) | |
a3f17187 | 14301 | printf_filtered (_("Will ignore next crossing of breakpoint %d."), |
221ea385 KS |
14302 | bptnum); |
14303 | else | |
3e43a32a MS |
14304 | printf_filtered (_("Will ignore next %d " |
14305 | "crossings of breakpoint %d."), | |
221ea385 KS |
14306 | count, bptnum); |
14307 | } | |
8d3788bd | 14308 | observer_notify_breakpoint_modified (b); |
c5aa993b JM |
14309 | return; |
14310 | } | |
c906108c | 14311 | |
8a3fe4f8 | 14312 | error (_("No breakpoint number %d."), bptnum); |
c906108c SS |
14313 | } |
14314 | ||
c906108c SS |
14315 | /* Command to set ignore-count of breakpoint N to COUNT. */ |
14316 | ||
14317 | static void | |
fba45db2 | 14318 | ignore_command (char *args, int from_tty) |
c906108c SS |
14319 | { |
14320 | char *p = args; | |
52f0bd74 | 14321 | int num; |
c906108c SS |
14322 | |
14323 | if (p == 0) | |
e2e0b3e5 | 14324 | error_no_arg (_("a breakpoint number")); |
c5aa993b | 14325 | |
c906108c | 14326 | num = get_number (&p); |
5c44784c | 14327 | if (num == 0) |
8a3fe4f8 | 14328 | error (_("bad breakpoint number: '%s'"), args); |
c906108c | 14329 | if (*p == 0) |
8a3fe4f8 | 14330 | error (_("Second argument (specified ignore-count) is missing.")); |
c906108c SS |
14331 | |
14332 | set_ignore_count (num, | |
14333 | longest_to_int (value_as_long (parse_and_eval (p))), | |
14334 | from_tty); | |
221ea385 KS |
14335 | if (from_tty) |
14336 | printf_filtered ("\n"); | |
c906108c SS |
14337 | } |
14338 | \f | |
14339 | /* Call FUNCTION on each of the breakpoints | |
14340 | whose numbers are given in ARGS. */ | |
14341 | ||
14342 | static void | |
95a42b64 TT |
14343 | map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *, |
14344 | void *), | |
14345 | void *data) | |
c906108c | 14346 | { |
52f0bd74 AC |
14347 | int num; |
14348 | struct breakpoint *b, *tmp; | |
11cf8741 | 14349 | int match; |
197f0a60 | 14350 | struct get_number_or_range_state state; |
c906108c | 14351 | |
197f0a60 | 14352 | if (args == 0) |
e2e0b3e5 | 14353 | error_no_arg (_("one or more breakpoint numbers")); |
c906108c | 14354 | |
197f0a60 TT |
14355 | init_number_or_range (&state, args); |
14356 | ||
14357 | while (!state.finished) | |
c906108c | 14358 | { |
197f0a60 TT |
14359 | char *p = state.string; |
14360 | ||
11cf8741 | 14361 | match = 0; |
c5aa993b | 14362 | |
197f0a60 | 14363 | num = get_number_or_range (&state); |
5c44784c | 14364 | if (num == 0) |
c5aa993b | 14365 | { |
8a3fe4f8 | 14366 | warning (_("bad breakpoint number at or near '%s'"), p); |
5c44784c JM |
14367 | } |
14368 | else | |
14369 | { | |
14370 | ALL_BREAKPOINTS_SAFE (b, tmp) | |
14371 | if (b->number == num) | |
14372 | { | |
11cf8741 | 14373 | match = 1; |
cdac0397 | 14374 | function (b, data); |
11cf8741 | 14375 | break; |
5c44784c | 14376 | } |
11cf8741 | 14377 | if (match == 0) |
a3f17187 | 14378 | printf_unfiltered (_("No breakpoint number %d.\n"), num); |
c5aa993b | 14379 | } |
c906108c SS |
14380 | } |
14381 | } | |
14382 | ||
0d381245 VP |
14383 | static struct bp_location * |
14384 | find_location_by_number (char *number) | |
14385 | { | |
14386 | char *dot = strchr (number, '.'); | |
14387 | char *p1; | |
14388 | int bp_num; | |
14389 | int loc_num; | |
14390 | struct breakpoint *b; | |
14391 | struct bp_location *loc; | |
14392 | ||
14393 | *dot = '\0'; | |
14394 | ||
14395 | p1 = number; | |
197f0a60 | 14396 | bp_num = get_number (&p1); |
0d381245 VP |
14397 | if (bp_num == 0) |
14398 | error (_("Bad breakpoint number '%s'"), number); | |
14399 | ||
14400 | ALL_BREAKPOINTS (b) | |
14401 | if (b->number == bp_num) | |
14402 | { | |
14403 | break; | |
14404 | } | |
14405 | ||
14406 | if (!b || b->number != bp_num) | |
14407 | error (_("Bad breakpoint number '%s'"), number); | |
14408 | ||
14409 | p1 = dot+1; | |
197f0a60 | 14410 | loc_num = get_number (&p1); |
0d381245 VP |
14411 | if (loc_num == 0) |
14412 | error (_("Bad breakpoint location number '%s'"), number); | |
14413 | ||
14414 | --loc_num; | |
14415 | loc = b->loc; | |
14416 | for (;loc_num && loc; --loc_num, loc = loc->next) | |
14417 | ; | |
14418 | if (!loc) | |
14419 | error (_("Bad breakpoint location number '%s'"), dot+1); | |
14420 | ||
14421 | return loc; | |
14422 | } | |
14423 | ||
14424 | ||
1900040c MS |
14425 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
14426 | If from_tty is nonzero, it prints a message to that effect, | |
14427 | which ends with a period (no newline). */ | |
14428 | ||
c906108c | 14429 | void |
fba45db2 | 14430 | disable_breakpoint (struct breakpoint *bpt) |
c906108c SS |
14431 | { |
14432 | /* Never disable a watchpoint scope breakpoint; we want to | |
14433 | hit them when we leave scope so we can delete both the | |
14434 | watchpoint and its scope breakpoint at that time. */ | |
14435 | if (bpt->type == bp_watchpoint_scope) | |
14436 | return; | |
14437 | ||
c2c6d25f | 14438 | /* You can't disable permanent breakpoints. */ |
b5de0fa7 | 14439 | if (bpt->enable_state == bp_permanent) |
c2c6d25f JM |
14440 | return; |
14441 | ||
b5de0fa7 | 14442 | bpt->enable_state = bp_disabled; |
c906108c | 14443 | |
b775012e LM |
14444 | /* Mark breakpoint locations modified. */ |
14445 | mark_breakpoint_modified (bpt); | |
14446 | ||
d248b706 KY |
14447 | if (target_supports_enable_disable_tracepoint () |
14448 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
14449 | { | |
14450 | struct bp_location *location; | |
14451 | ||
14452 | for (location = bpt->loc; location; location = location->next) | |
14453 | target_disable_tracepoint (location); | |
14454 | } | |
14455 | ||
b60e7edf | 14456 | update_global_location_list (0); |
c906108c | 14457 | |
8d3788bd | 14458 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
14459 | } |
14460 | ||
51be5b68 PA |
14461 | /* A callback for iterate_over_related_breakpoints. */ |
14462 | ||
14463 | static void | |
14464 | do_disable_breakpoint (struct breakpoint *b, void *ignore) | |
14465 | { | |
14466 | disable_breakpoint (b); | |
14467 | } | |
14468 | ||
95a42b64 TT |
14469 | /* A callback for map_breakpoint_numbers that calls |
14470 | disable_breakpoint. */ | |
14471 | ||
14472 | static void | |
14473 | do_map_disable_breakpoint (struct breakpoint *b, void *ignore) | |
14474 | { | |
51be5b68 | 14475 | iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL); |
95a42b64 TT |
14476 | } |
14477 | ||
c906108c | 14478 | static void |
fba45db2 | 14479 | disable_command (char *args, int from_tty) |
c906108c | 14480 | { |
c906108c | 14481 | if (args == 0) |
46c6471b PA |
14482 | { |
14483 | struct breakpoint *bpt; | |
14484 | ||
14485 | ALL_BREAKPOINTS (bpt) | |
14486 | if (user_breakpoint_p (bpt)) | |
14487 | disable_breakpoint (bpt); | |
14488 | } | |
0d381245 VP |
14489 | else if (strchr (args, '.')) |
14490 | { | |
14491 | struct bp_location *loc = find_location_by_number (args); | |
14492 | if (loc) | |
d248b706 | 14493 | { |
b775012e LM |
14494 | if (loc->enabled) |
14495 | { | |
14496 | loc->enabled = 0; | |
14497 | mark_breakpoint_location_modified (loc); | |
14498 | } | |
d248b706 KY |
14499 | if (target_supports_enable_disable_tracepoint () |
14500 | && current_trace_status ()->running && loc->owner | |
14501 | && is_tracepoint (loc->owner)) | |
14502 | target_disable_tracepoint (loc); | |
14503 | } | |
b60e7edf | 14504 | update_global_location_list (0); |
0d381245 | 14505 | } |
c906108c | 14506 | else |
95a42b64 | 14507 | map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL); |
c906108c SS |
14508 | } |
14509 | ||
14510 | static void | |
816338b5 SS |
14511 | enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition, |
14512 | int count) | |
c906108c | 14513 | { |
afe38095 | 14514 | int target_resources_ok; |
c906108c SS |
14515 | |
14516 | if (bpt->type == bp_hardware_breakpoint) | |
14517 | { | |
14518 | int i; | |
c5aa993b | 14519 | i = hw_breakpoint_used_count (); |
53a5351d | 14520 | target_resources_ok = |
d92524f1 | 14521 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, |
53a5351d | 14522 | i + 1, 0); |
c906108c | 14523 | if (target_resources_ok == 0) |
8a3fe4f8 | 14524 | error (_("No hardware breakpoint support in the target.")); |
c906108c | 14525 | else if (target_resources_ok < 0) |
8a3fe4f8 | 14526 | error (_("Hardware breakpoints used exceeds limit.")); |
c906108c SS |
14527 | } |
14528 | ||
cc60f2e3 | 14529 | if (is_watchpoint (bpt)) |
c906108c | 14530 | { |
d07205c2 JK |
14531 | /* Initialize it just to avoid a GCC false warning. */ |
14532 | enum enable_state orig_enable_state = 0; | |
bfd189b1 | 14533 | volatile struct gdb_exception e; |
dde02812 ES |
14534 | |
14535 | TRY_CATCH (e, RETURN_MASK_ALL) | |
c906108c | 14536 | { |
3a5c3e22 PA |
14537 | struct watchpoint *w = (struct watchpoint *) bpt; |
14538 | ||
1e718ff1 TJB |
14539 | orig_enable_state = bpt->enable_state; |
14540 | bpt->enable_state = bp_enabled; | |
3a5c3e22 | 14541 | update_watchpoint (w, 1 /* reparse */); |
c906108c | 14542 | } |
dde02812 | 14543 | if (e.reason < 0) |
c5aa993b | 14544 | { |
1e718ff1 | 14545 | bpt->enable_state = orig_enable_state; |
dde02812 ES |
14546 | exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "), |
14547 | bpt->number); | |
14548 | return; | |
c5aa993b | 14549 | } |
c906108c | 14550 | } |
0101ce28 | 14551 | |
b4c291bb KH |
14552 | if (bpt->enable_state != bp_permanent) |
14553 | bpt->enable_state = bp_enabled; | |
d248b706 | 14554 | |
b775012e LM |
14555 | bpt->enable_state = bp_enabled; |
14556 | ||
14557 | /* Mark breakpoint locations modified. */ | |
14558 | mark_breakpoint_modified (bpt); | |
14559 | ||
d248b706 KY |
14560 | if (target_supports_enable_disable_tracepoint () |
14561 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
14562 | { | |
14563 | struct bp_location *location; | |
14564 | ||
14565 | for (location = bpt->loc; location; location = location->next) | |
14566 | target_enable_tracepoint (location); | |
14567 | } | |
14568 | ||
b4c291bb | 14569 | bpt->disposition = disposition; |
816338b5 | 14570 | bpt->enable_count = count; |
b60e7edf | 14571 | update_global_location_list (1); |
9c97429f | 14572 | |
8d3788bd | 14573 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
14574 | } |
14575 | ||
fe3f5fa8 | 14576 | |
c906108c | 14577 | void |
fba45db2 | 14578 | enable_breakpoint (struct breakpoint *bpt) |
c906108c | 14579 | { |
816338b5 | 14580 | enable_breakpoint_disp (bpt, bpt->disposition, 0); |
51be5b68 PA |
14581 | } |
14582 | ||
14583 | static void | |
14584 | do_enable_breakpoint (struct breakpoint *bpt, void *arg) | |
14585 | { | |
14586 | enable_breakpoint (bpt); | |
c906108c SS |
14587 | } |
14588 | ||
95a42b64 TT |
14589 | /* A callback for map_breakpoint_numbers that calls |
14590 | enable_breakpoint. */ | |
14591 | ||
14592 | static void | |
14593 | do_map_enable_breakpoint (struct breakpoint *b, void *ignore) | |
14594 | { | |
51be5b68 | 14595 | iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL); |
95a42b64 TT |
14596 | } |
14597 | ||
c906108c SS |
14598 | /* The enable command enables the specified breakpoints (or all defined |
14599 | breakpoints) so they once again become (or continue to be) effective | |
1272ad14 | 14600 | in stopping the inferior. */ |
c906108c | 14601 | |
c906108c | 14602 | static void |
fba45db2 | 14603 | enable_command (char *args, int from_tty) |
c906108c | 14604 | { |
c906108c | 14605 | if (args == 0) |
46c6471b PA |
14606 | { |
14607 | struct breakpoint *bpt; | |
14608 | ||
14609 | ALL_BREAKPOINTS (bpt) | |
14610 | if (user_breakpoint_p (bpt)) | |
14611 | enable_breakpoint (bpt); | |
14612 | } | |
0d381245 VP |
14613 | else if (strchr (args, '.')) |
14614 | { | |
14615 | struct bp_location *loc = find_location_by_number (args); | |
14616 | if (loc) | |
d248b706 | 14617 | { |
b775012e LM |
14618 | if (!loc->enabled) |
14619 | { | |
14620 | loc->enabled = 1; | |
14621 | mark_breakpoint_location_modified (loc); | |
14622 | } | |
d248b706 KY |
14623 | if (target_supports_enable_disable_tracepoint () |
14624 | && current_trace_status ()->running && loc->owner | |
14625 | && is_tracepoint (loc->owner)) | |
14626 | target_enable_tracepoint (loc); | |
14627 | } | |
b60e7edf | 14628 | update_global_location_list (1); |
0d381245 | 14629 | } |
c906108c | 14630 | else |
95a42b64 | 14631 | map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL); |
c906108c SS |
14632 | } |
14633 | ||
816338b5 SS |
14634 | /* This struct packages up disposition data for application to multiple |
14635 | breakpoints. */ | |
14636 | ||
14637 | struct disp_data | |
14638 | { | |
14639 | enum bpdisp disp; | |
14640 | int count; | |
14641 | }; | |
14642 | ||
c906108c | 14643 | static void |
51be5b68 PA |
14644 | do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg) |
14645 | { | |
816338b5 | 14646 | struct disp_data disp_data = *(struct disp_data *) arg; |
51be5b68 | 14647 | |
816338b5 | 14648 | enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count); |
51be5b68 PA |
14649 | } |
14650 | ||
14651 | static void | |
14652 | do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore) | |
c906108c | 14653 | { |
816338b5 | 14654 | struct disp_data disp = { disp_disable, 1 }; |
51be5b68 PA |
14655 | |
14656 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
14657 | } |
14658 | ||
c906108c | 14659 | static void |
fba45db2 | 14660 | enable_once_command (char *args, int from_tty) |
c906108c | 14661 | { |
51be5b68 | 14662 | map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL); |
c906108c SS |
14663 | } |
14664 | ||
816338b5 SS |
14665 | static void |
14666 | do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr) | |
14667 | { | |
14668 | struct disp_data disp = { disp_disable, *(int *) countptr }; | |
14669 | ||
14670 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
14671 | } | |
14672 | ||
14673 | static void | |
14674 | enable_count_command (char *args, int from_tty) | |
14675 | { | |
14676 | int count = get_number (&args); | |
14677 | ||
14678 | map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count); | |
14679 | } | |
14680 | ||
c906108c | 14681 | static void |
51be5b68 | 14682 | do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore) |
c906108c | 14683 | { |
816338b5 | 14684 | struct disp_data disp = { disp_del, 1 }; |
51be5b68 PA |
14685 | |
14686 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
14687 | } |
14688 | ||
c906108c | 14689 | static void |
fba45db2 | 14690 | enable_delete_command (char *args, int from_tty) |
c906108c | 14691 | { |
51be5b68 | 14692 | map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL); |
c906108c SS |
14693 | } |
14694 | \f | |
fa8d40ab JJ |
14695 | static void |
14696 | set_breakpoint_cmd (char *args, int from_tty) | |
14697 | { | |
14698 | } | |
14699 | ||
14700 | static void | |
14701 | show_breakpoint_cmd (char *args, int from_tty) | |
14702 | { | |
14703 | } | |
14704 | ||
1f3b5d1b PP |
14705 | /* Invalidate last known value of any hardware watchpoint if |
14706 | the memory which that value represents has been written to by | |
14707 | GDB itself. */ | |
14708 | ||
14709 | static void | |
8de0566d YQ |
14710 | invalidate_bp_value_on_memory_change (struct inferior *inferior, |
14711 | CORE_ADDR addr, ssize_t len, | |
1f3b5d1b PP |
14712 | const bfd_byte *data) |
14713 | { | |
14714 | struct breakpoint *bp; | |
14715 | ||
14716 | ALL_BREAKPOINTS (bp) | |
14717 | if (bp->enable_state == bp_enabled | |
3a5c3e22 | 14718 | && bp->type == bp_hardware_watchpoint) |
1f3b5d1b | 14719 | { |
3a5c3e22 | 14720 | struct watchpoint *wp = (struct watchpoint *) bp; |
1f3b5d1b | 14721 | |
3a5c3e22 PA |
14722 | if (wp->val_valid && wp->val) |
14723 | { | |
14724 | struct bp_location *loc; | |
14725 | ||
14726 | for (loc = bp->loc; loc != NULL; loc = loc->next) | |
14727 | if (loc->loc_type == bp_loc_hardware_watchpoint | |
14728 | && loc->address + loc->length > addr | |
14729 | && addr + len > loc->address) | |
14730 | { | |
14731 | value_free (wp->val); | |
14732 | wp->val = NULL; | |
14733 | wp->val_valid = 0; | |
14734 | } | |
14735 | } | |
1f3b5d1b PP |
14736 | } |
14737 | } | |
14738 | ||
8181d85f DJ |
14739 | /* Create and insert a raw software breakpoint at PC. Return an |
14740 | identifier, which should be used to remove the breakpoint later. | |
14741 | In general, places which call this should be using something on the | |
14742 | breakpoint chain instead; this function should be eliminated | |
14743 | someday. */ | |
14744 | ||
14745 | void * | |
6c95b8df PA |
14746 | deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch, |
14747 | struct address_space *aspace, CORE_ADDR pc) | |
8181d85f DJ |
14748 | { |
14749 | struct bp_target_info *bp_tgt; | |
14750 | ||
6c95b8df | 14751 | bp_tgt = XZALLOC (struct bp_target_info); |
8181d85f | 14752 | |
6c95b8df | 14753 | bp_tgt->placed_address_space = aspace; |
8181d85f | 14754 | bp_tgt->placed_address = pc; |
6c95b8df | 14755 | |
a6d9a66e | 14756 | if (target_insert_breakpoint (gdbarch, bp_tgt) != 0) |
8181d85f DJ |
14757 | { |
14758 | /* Could not insert the breakpoint. */ | |
14759 | xfree (bp_tgt); | |
14760 | return NULL; | |
14761 | } | |
14762 | ||
14763 | return bp_tgt; | |
14764 | } | |
14765 | ||
4a64f543 MS |
14766 | /* Remove a breakpoint BP inserted by |
14767 | deprecated_insert_raw_breakpoint. */ | |
8181d85f DJ |
14768 | |
14769 | int | |
a6d9a66e | 14770 | deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp) |
8181d85f DJ |
14771 | { |
14772 | struct bp_target_info *bp_tgt = bp; | |
14773 | int ret; | |
14774 | ||
a6d9a66e | 14775 | ret = target_remove_breakpoint (gdbarch, bp_tgt); |
8181d85f DJ |
14776 | xfree (bp_tgt); |
14777 | ||
14778 | return ret; | |
14779 | } | |
14780 | ||
4a64f543 MS |
14781 | /* One (or perhaps two) breakpoints used for software single |
14782 | stepping. */ | |
8181d85f DJ |
14783 | |
14784 | static void *single_step_breakpoints[2]; | |
a6d9a66e | 14785 | static struct gdbarch *single_step_gdbarch[2]; |
8181d85f DJ |
14786 | |
14787 | /* Create and insert a breakpoint for software single step. */ | |
14788 | ||
14789 | void | |
6c95b8df | 14790 | insert_single_step_breakpoint (struct gdbarch *gdbarch, |
4a64f543 MS |
14791 | struct address_space *aspace, |
14792 | CORE_ADDR next_pc) | |
8181d85f DJ |
14793 | { |
14794 | void **bpt_p; | |
14795 | ||
14796 | if (single_step_breakpoints[0] == NULL) | |
a6d9a66e UW |
14797 | { |
14798 | bpt_p = &single_step_breakpoints[0]; | |
14799 | single_step_gdbarch[0] = gdbarch; | |
14800 | } | |
8181d85f DJ |
14801 | else |
14802 | { | |
14803 | gdb_assert (single_step_breakpoints[1] == NULL); | |
14804 | bpt_p = &single_step_breakpoints[1]; | |
a6d9a66e | 14805 | single_step_gdbarch[1] = gdbarch; |
8181d85f DJ |
14806 | } |
14807 | ||
4a64f543 MS |
14808 | /* NOTE drow/2006-04-11: A future improvement to this function would |
14809 | be to only create the breakpoints once, and actually put them on | |
14810 | the breakpoint chain. That would let us use set_raw_breakpoint. | |
14811 | We could adjust the addresses each time they were needed. Doing | |
14812 | this requires corresponding changes elsewhere where single step | |
14813 | breakpoints are handled, however. So, for now, we use this. */ | |
8181d85f | 14814 | |
6c95b8df | 14815 | *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc); |
8181d85f | 14816 | if (*bpt_p == NULL) |
5af949e3 UW |
14817 | error (_("Could not insert single-step breakpoint at %s"), |
14818 | paddress (gdbarch, next_pc)); | |
8181d85f DJ |
14819 | } |
14820 | ||
f02253f1 HZ |
14821 | /* Check if the breakpoints used for software single stepping |
14822 | were inserted or not. */ | |
14823 | ||
14824 | int | |
14825 | single_step_breakpoints_inserted (void) | |
14826 | { | |
14827 | return (single_step_breakpoints[0] != NULL | |
14828 | || single_step_breakpoints[1] != NULL); | |
14829 | } | |
14830 | ||
8181d85f DJ |
14831 | /* Remove and delete any breakpoints used for software single step. */ |
14832 | ||
14833 | void | |
14834 | remove_single_step_breakpoints (void) | |
14835 | { | |
14836 | gdb_assert (single_step_breakpoints[0] != NULL); | |
14837 | ||
14838 | /* See insert_single_step_breakpoint for more about this deprecated | |
14839 | call. */ | |
a6d9a66e UW |
14840 | deprecated_remove_raw_breakpoint (single_step_gdbarch[0], |
14841 | single_step_breakpoints[0]); | |
14842 | single_step_gdbarch[0] = NULL; | |
8181d85f DJ |
14843 | single_step_breakpoints[0] = NULL; |
14844 | ||
14845 | if (single_step_breakpoints[1] != NULL) | |
14846 | { | |
a6d9a66e UW |
14847 | deprecated_remove_raw_breakpoint (single_step_gdbarch[1], |
14848 | single_step_breakpoints[1]); | |
14849 | single_step_gdbarch[1] = NULL; | |
8181d85f DJ |
14850 | single_step_breakpoints[1] = NULL; |
14851 | } | |
14852 | } | |
14853 | ||
d03285ec UW |
14854 | /* Delete software single step breakpoints without removing them from |
14855 | the inferior. This is intended to be used if the inferior's address | |
14856 | space where they were inserted is already gone, e.g. after exit or | |
14857 | exec. */ | |
14858 | ||
14859 | void | |
14860 | cancel_single_step_breakpoints (void) | |
14861 | { | |
14862 | int i; | |
14863 | ||
14864 | for (i = 0; i < 2; i++) | |
14865 | if (single_step_breakpoints[i]) | |
14866 | { | |
14867 | xfree (single_step_breakpoints[i]); | |
14868 | single_step_breakpoints[i] = NULL; | |
14869 | single_step_gdbarch[i] = NULL; | |
14870 | } | |
14871 | } | |
14872 | ||
14873 | /* Detach software single-step breakpoints from INFERIOR_PTID without | |
14874 | removing them. */ | |
14875 | ||
14876 | static void | |
14877 | detach_single_step_breakpoints (void) | |
14878 | { | |
14879 | int i; | |
14880 | ||
14881 | for (i = 0; i < 2; i++) | |
14882 | if (single_step_breakpoints[i]) | |
14883 | target_remove_breakpoint (single_step_gdbarch[i], | |
14884 | single_step_breakpoints[i]); | |
14885 | } | |
14886 | ||
4a64f543 MS |
14887 | /* Check whether a software single-step breakpoint is inserted at |
14888 | PC. */ | |
1aafd4da UW |
14889 | |
14890 | static int | |
cc59ec59 MS |
14891 | single_step_breakpoint_inserted_here_p (struct address_space *aspace, |
14892 | CORE_ADDR pc) | |
1aafd4da UW |
14893 | { |
14894 | int i; | |
14895 | ||
14896 | for (i = 0; i < 2; i++) | |
14897 | { | |
14898 | struct bp_target_info *bp_tgt = single_step_breakpoints[i]; | |
6c95b8df PA |
14899 | if (bp_tgt |
14900 | && breakpoint_address_match (bp_tgt->placed_address_space, | |
14901 | bp_tgt->placed_address, | |
14902 | aspace, pc)) | |
1aafd4da UW |
14903 | return 1; |
14904 | } | |
14905 | ||
14906 | return 0; | |
14907 | } | |
14908 | ||
a96d9b2e SDJ |
14909 | /* Returns 0 if 'bp' is NOT a syscall catchpoint, |
14910 | non-zero otherwise. */ | |
14911 | static int | |
14912 | is_syscall_catchpoint_enabled (struct breakpoint *bp) | |
14913 | { | |
14914 | if (syscall_catchpoint_p (bp) | |
14915 | && bp->enable_state != bp_disabled | |
14916 | && bp->enable_state != bp_call_disabled) | |
14917 | return 1; | |
14918 | else | |
14919 | return 0; | |
14920 | } | |
14921 | ||
14922 | int | |
14923 | catch_syscall_enabled (void) | |
14924 | { | |
fa3064dd YQ |
14925 | struct catch_syscall_inferior_data *inf_data |
14926 | = get_catch_syscall_inferior_data (current_inferior ()); | |
a96d9b2e | 14927 | |
fa3064dd | 14928 | return inf_data->total_syscalls_count != 0; |
a96d9b2e SDJ |
14929 | } |
14930 | ||
14931 | int | |
14932 | catching_syscall_number (int syscall_number) | |
14933 | { | |
14934 | struct breakpoint *bp; | |
14935 | ||
14936 | ALL_BREAKPOINTS (bp) | |
14937 | if (is_syscall_catchpoint_enabled (bp)) | |
14938 | { | |
be5c67c1 PA |
14939 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp; |
14940 | ||
14941 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
14942 | { |
14943 | int i, iter; | |
14944 | for (i = 0; | |
be5c67c1 | 14945 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
14946 | i++) |
14947 | if (syscall_number == iter) | |
14948 | return 1; | |
14949 | } | |
14950 | else | |
14951 | return 1; | |
14952 | } | |
14953 | ||
14954 | return 0; | |
14955 | } | |
14956 | ||
14957 | /* Complete syscall names. Used by "catch syscall". */ | |
49c4e619 | 14958 | static VEC (char_ptr) * |
a96d9b2e | 14959 | catch_syscall_completer (struct cmd_list_element *cmd, |
6f937416 | 14960 | const char *text, const char *word) |
a96d9b2e SDJ |
14961 | { |
14962 | const char **list = get_syscall_names (); | |
49c4e619 | 14963 | VEC (char_ptr) *retlist |
b45627a0 | 14964 | = (list == NULL) ? NULL : complete_on_enum (list, word, word); |
cc59ec59 | 14965 | |
c38eea1a MS |
14966 | xfree (list); |
14967 | return retlist; | |
a96d9b2e SDJ |
14968 | } |
14969 | ||
1042e4c0 SS |
14970 | /* Tracepoint-specific operations. */ |
14971 | ||
14972 | /* Set tracepoint count to NUM. */ | |
14973 | static void | |
14974 | set_tracepoint_count (int num) | |
14975 | { | |
14976 | tracepoint_count = num; | |
4fa62494 | 14977 | set_internalvar_integer (lookup_internalvar ("tpnum"), num); |
1042e4c0 SS |
14978 | } |
14979 | ||
70221824 | 14980 | static void |
1042e4c0 SS |
14981 | trace_command (char *arg, int from_tty) |
14982 | { | |
55aa24fb SDJ |
14983 | struct breakpoint_ops *ops; |
14984 | const char *arg_cp = arg; | |
14985 | ||
14986 | if (arg && probe_linespec_to_ops (&arg_cp)) | |
14987 | ops = &tracepoint_probe_breakpoint_ops; | |
14988 | else | |
14989 | ops = &tracepoint_breakpoint_ops; | |
14990 | ||
558a9d82 YQ |
14991 | create_breakpoint (get_current_arch (), |
14992 | arg, | |
14993 | NULL, 0, NULL, 1 /* parse arg */, | |
14994 | 0 /* tempflag */, | |
14995 | bp_tracepoint /* type_wanted */, | |
14996 | 0 /* Ignore count */, | |
14997 | pending_break_support, | |
14998 | ops, | |
14999 | from_tty, | |
15000 | 1 /* enabled */, | |
15001 | 0 /* internal */, 0); | |
1042e4c0 SS |
15002 | } |
15003 | ||
70221824 | 15004 | static void |
7a697b8d SS |
15005 | ftrace_command (char *arg, int from_tty) |
15006 | { | |
558a9d82 YQ |
15007 | create_breakpoint (get_current_arch (), |
15008 | arg, | |
15009 | NULL, 0, NULL, 1 /* parse arg */, | |
15010 | 0 /* tempflag */, | |
15011 | bp_fast_tracepoint /* type_wanted */, | |
15012 | 0 /* Ignore count */, | |
15013 | pending_break_support, | |
15014 | &tracepoint_breakpoint_ops, | |
15015 | from_tty, | |
15016 | 1 /* enabled */, | |
15017 | 0 /* internal */, 0); | |
0fb4aa4b PA |
15018 | } |
15019 | ||
15020 | /* strace command implementation. Creates a static tracepoint. */ | |
15021 | ||
70221824 | 15022 | static void |
0fb4aa4b PA |
15023 | strace_command (char *arg, int from_tty) |
15024 | { | |
983af33b SDJ |
15025 | struct breakpoint_ops *ops; |
15026 | ||
15027 | /* Decide if we are dealing with a static tracepoint marker (`-m'), | |
15028 | or with a normal static tracepoint. */ | |
15029 | if (arg && strncmp (arg, "-m", 2) == 0 && isspace (arg[2])) | |
15030 | ops = &strace_marker_breakpoint_ops; | |
15031 | else | |
15032 | ops = &tracepoint_breakpoint_ops; | |
15033 | ||
558a9d82 YQ |
15034 | create_breakpoint (get_current_arch (), |
15035 | arg, | |
15036 | NULL, 0, NULL, 1 /* parse arg */, | |
15037 | 0 /* tempflag */, | |
15038 | bp_static_tracepoint /* type_wanted */, | |
15039 | 0 /* Ignore count */, | |
15040 | pending_break_support, | |
15041 | ops, | |
15042 | from_tty, | |
15043 | 1 /* enabled */, | |
15044 | 0 /* internal */, 0); | |
7a697b8d SS |
15045 | } |
15046 | ||
409873ef SS |
15047 | /* Set up a fake reader function that gets command lines from a linked |
15048 | list that was acquired during tracepoint uploading. */ | |
15049 | ||
15050 | static struct uploaded_tp *this_utp; | |
3149d8c1 | 15051 | static int next_cmd; |
409873ef SS |
15052 | |
15053 | static char * | |
15054 | read_uploaded_action (void) | |
15055 | { | |
15056 | char *rslt; | |
15057 | ||
3149d8c1 | 15058 | VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt); |
409873ef | 15059 | |
3149d8c1 | 15060 | next_cmd++; |
409873ef SS |
15061 | |
15062 | return rslt; | |
15063 | } | |
15064 | ||
00bf0b85 SS |
15065 | /* Given information about a tracepoint as recorded on a target (which |
15066 | can be either a live system or a trace file), attempt to create an | |
15067 | equivalent GDB tracepoint. This is not a reliable process, since | |
15068 | the target does not necessarily have all the information used when | |
15069 | the tracepoint was originally defined. */ | |
15070 | ||
d9b3f62e | 15071 | struct tracepoint * |
00bf0b85 | 15072 | create_tracepoint_from_upload (struct uploaded_tp *utp) |
d5551862 | 15073 | { |
409873ef | 15074 | char *addr_str, small_buf[100]; |
d9b3f62e | 15075 | struct tracepoint *tp; |
fd9b8c24 | 15076 | |
409873ef SS |
15077 | if (utp->at_string) |
15078 | addr_str = utp->at_string; | |
15079 | else | |
15080 | { | |
15081 | /* In the absence of a source location, fall back to raw | |
15082 | address. Since there is no way to confirm that the address | |
15083 | means the same thing as when the trace was started, warn the | |
15084 | user. */ | |
3e43a32a MS |
15085 | warning (_("Uploaded tracepoint %d has no " |
15086 | "source location, using raw address"), | |
409873ef | 15087 | utp->number); |
8c042590 | 15088 | xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr)); |
409873ef SS |
15089 | addr_str = small_buf; |
15090 | } | |
15091 | ||
15092 | /* There's not much we can do with a sequence of bytecodes. */ | |
15093 | if (utp->cond && !utp->cond_string) | |
3e43a32a MS |
15094 | warning (_("Uploaded tracepoint %d condition " |
15095 | "has no source form, ignoring it"), | |
409873ef | 15096 | utp->number); |
d5551862 | 15097 | |
8cdf0e15 | 15098 | if (!create_breakpoint (get_current_arch (), |
409873ef | 15099 | addr_str, |
e7e0cddf SS |
15100 | utp->cond_string, -1, NULL, |
15101 | 0 /* parse cond/thread */, | |
8cdf0e15 | 15102 | 0 /* tempflag */, |
0fb4aa4b | 15103 | utp->type /* type_wanted */, |
8cdf0e15 VP |
15104 | 0 /* Ignore count */, |
15105 | pending_break_support, | |
348d480f | 15106 | &tracepoint_breakpoint_ops, |
8cdf0e15 | 15107 | 0 /* from_tty */, |
84f4c1fe | 15108 | utp->enabled /* enabled */, |
44f238bb PA |
15109 | 0 /* internal */, |
15110 | CREATE_BREAKPOINT_FLAGS_INSERTED)) | |
fd9b8c24 PA |
15111 | return NULL; |
15112 | ||
409873ef | 15113 | /* Get the tracepoint we just created. */ |
fd9b8c24 PA |
15114 | tp = get_tracepoint (tracepoint_count); |
15115 | gdb_assert (tp != NULL); | |
d5551862 | 15116 | |
00bf0b85 SS |
15117 | if (utp->pass > 0) |
15118 | { | |
8c042590 PM |
15119 | xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass, |
15120 | tp->base.number); | |
00bf0b85 | 15121 | |
409873ef | 15122 | trace_pass_command (small_buf, 0); |
00bf0b85 SS |
15123 | } |
15124 | ||
409873ef SS |
15125 | /* If we have uploaded versions of the original commands, set up a |
15126 | special-purpose "reader" function and call the usual command line | |
15127 | reader, then pass the result to the breakpoint command-setting | |
15128 | function. */ | |
3149d8c1 | 15129 | if (!VEC_empty (char_ptr, utp->cmd_strings)) |
00bf0b85 | 15130 | { |
409873ef | 15131 | struct command_line *cmd_list; |
00bf0b85 | 15132 | |
409873ef | 15133 | this_utp = utp; |
3149d8c1 | 15134 | next_cmd = 0; |
d5551862 | 15135 | |
409873ef SS |
15136 | cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL); |
15137 | ||
d9b3f62e | 15138 | breakpoint_set_commands (&tp->base, cmd_list); |
00bf0b85 | 15139 | } |
3149d8c1 SS |
15140 | else if (!VEC_empty (char_ptr, utp->actions) |
15141 | || !VEC_empty (char_ptr, utp->step_actions)) | |
3e43a32a MS |
15142 | warning (_("Uploaded tracepoint %d actions " |
15143 | "have no source form, ignoring them"), | |
409873ef | 15144 | utp->number); |
00bf0b85 | 15145 | |
f196051f SS |
15146 | /* Copy any status information that might be available. */ |
15147 | tp->base.hit_count = utp->hit_count; | |
15148 | tp->traceframe_usage = utp->traceframe_usage; | |
15149 | ||
00bf0b85 | 15150 | return tp; |
d9b3f62e | 15151 | } |
00bf0b85 | 15152 | |
1042e4c0 SS |
15153 | /* Print information on tracepoint number TPNUM_EXP, or all if |
15154 | omitted. */ | |
15155 | ||
15156 | static void | |
e5a67952 | 15157 | tracepoints_info (char *args, int from_tty) |
1042e4c0 | 15158 | { |
79a45e25 | 15159 | struct ui_out *uiout = current_uiout; |
e5a67952 | 15160 | int num_printed; |
1042e4c0 | 15161 | |
e5a67952 | 15162 | num_printed = breakpoint_1 (args, 0, is_tracepoint); |
d77f58be SS |
15163 | |
15164 | if (num_printed == 0) | |
1042e4c0 | 15165 | { |
e5a67952 | 15166 | if (args == NULL || *args == '\0') |
d77f58be SS |
15167 | ui_out_message (uiout, 0, "No tracepoints.\n"); |
15168 | else | |
e5a67952 | 15169 | ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args); |
1042e4c0 | 15170 | } |
ad443146 SS |
15171 | |
15172 | default_collect_info (); | |
1042e4c0 SS |
15173 | } |
15174 | ||
4a64f543 | 15175 | /* The 'enable trace' command enables tracepoints. |
1042e4c0 SS |
15176 | Not supported by all targets. */ |
15177 | static void | |
15178 | enable_trace_command (char *args, int from_tty) | |
15179 | { | |
15180 | enable_command (args, from_tty); | |
15181 | } | |
15182 | ||
4a64f543 | 15183 | /* The 'disable trace' command disables tracepoints. |
1042e4c0 SS |
15184 | Not supported by all targets. */ |
15185 | static void | |
15186 | disable_trace_command (char *args, int from_tty) | |
15187 | { | |
15188 | disable_command (args, from_tty); | |
15189 | } | |
15190 | ||
4a64f543 | 15191 | /* Remove a tracepoint (or all if no argument). */ |
1042e4c0 SS |
15192 | static void |
15193 | delete_trace_command (char *arg, int from_tty) | |
15194 | { | |
35df4500 | 15195 | struct breakpoint *b, *b_tmp; |
1042e4c0 SS |
15196 | |
15197 | dont_repeat (); | |
15198 | ||
15199 | if (arg == 0) | |
15200 | { | |
15201 | int breaks_to_delete = 0; | |
15202 | ||
15203 | /* Delete all breakpoints if no argument. | |
15204 | Do not delete internal or call-dummy breakpoints, these | |
4a64f543 MS |
15205 | have to be deleted with an explicit breakpoint number |
15206 | argument. */ | |
1042e4c0 | 15207 | ALL_TRACEPOINTS (b) |
46c6471b | 15208 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 SS |
15209 | { |
15210 | breaks_to_delete = 1; | |
15211 | break; | |
15212 | } | |
1042e4c0 SS |
15213 | |
15214 | /* Ask user only if there are some breakpoints to delete. */ | |
15215 | if (!from_tty | |
15216 | || (breaks_to_delete && query (_("Delete all tracepoints? ")))) | |
15217 | { | |
35df4500 | 15218 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
46c6471b | 15219 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 | 15220 | delete_breakpoint (b); |
1042e4c0 SS |
15221 | } |
15222 | } | |
15223 | else | |
51be5b68 | 15224 | map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL); |
1042e4c0 SS |
15225 | } |
15226 | ||
197f0a60 TT |
15227 | /* Helper function for trace_pass_command. */ |
15228 | ||
15229 | static void | |
d9b3f62e | 15230 | trace_pass_set_count (struct tracepoint *tp, int count, int from_tty) |
197f0a60 | 15231 | { |
d9b3f62e | 15232 | tp->pass_count = count; |
6f6484cd | 15233 | observer_notify_breakpoint_modified (&tp->base); |
197f0a60 TT |
15234 | if (from_tty) |
15235 | printf_filtered (_("Setting tracepoint %d's passcount to %d\n"), | |
d9b3f62e | 15236 | tp->base.number, count); |
197f0a60 TT |
15237 | } |
15238 | ||
1042e4c0 SS |
15239 | /* Set passcount for tracepoint. |
15240 | ||
15241 | First command argument is passcount, second is tracepoint number. | |
15242 | If tracepoint number omitted, apply to most recently defined. | |
15243 | Also accepts special argument "all". */ | |
15244 | ||
15245 | static void | |
15246 | trace_pass_command (char *args, int from_tty) | |
15247 | { | |
d9b3f62e | 15248 | struct tracepoint *t1; |
1042e4c0 | 15249 | unsigned int count; |
1042e4c0 SS |
15250 | |
15251 | if (args == 0 || *args == 0) | |
3e43a32a MS |
15252 | error (_("passcount command requires an " |
15253 | "argument (count + optional TP num)")); | |
1042e4c0 | 15254 | |
4a64f543 | 15255 | count = strtoul (args, &args, 10); /* Count comes first, then TP num. */ |
1042e4c0 | 15256 | |
529480d0 | 15257 | args = skip_spaces (args); |
1042e4c0 SS |
15258 | if (*args && strncasecmp (args, "all", 3) == 0) |
15259 | { | |
d9b3f62e PA |
15260 | struct breakpoint *b; |
15261 | ||
1042e4c0 | 15262 | args += 3; /* Skip special argument "all". */ |
1042e4c0 SS |
15263 | if (*args) |
15264 | error (_("Junk at end of arguments.")); | |
1042e4c0 | 15265 | |
d9b3f62e | 15266 | ALL_TRACEPOINTS (b) |
197f0a60 | 15267 | { |
d9b3f62e | 15268 | t1 = (struct tracepoint *) b; |
197f0a60 TT |
15269 | trace_pass_set_count (t1, count, from_tty); |
15270 | } | |
15271 | } | |
15272 | else if (*args == '\0') | |
1042e4c0 | 15273 | { |
197f0a60 | 15274 | t1 = get_tracepoint_by_number (&args, NULL, 1); |
1042e4c0 | 15275 | if (t1) |
197f0a60 TT |
15276 | trace_pass_set_count (t1, count, from_tty); |
15277 | } | |
15278 | else | |
15279 | { | |
15280 | struct get_number_or_range_state state; | |
15281 | ||
15282 | init_number_or_range (&state, args); | |
15283 | while (!state.finished) | |
1042e4c0 | 15284 | { |
197f0a60 TT |
15285 | t1 = get_tracepoint_by_number (&args, &state, 1); |
15286 | if (t1) | |
15287 | trace_pass_set_count (t1, count, from_tty); | |
1042e4c0 SS |
15288 | } |
15289 | } | |
1042e4c0 SS |
15290 | } |
15291 | ||
d9b3f62e | 15292 | struct tracepoint * |
1042e4c0 SS |
15293 | get_tracepoint (int num) |
15294 | { | |
15295 | struct breakpoint *t; | |
15296 | ||
15297 | ALL_TRACEPOINTS (t) | |
15298 | if (t->number == num) | |
d9b3f62e | 15299 | return (struct tracepoint *) t; |
1042e4c0 SS |
15300 | |
15301 | return NULL; | |
15302 | } | |
15303 | ||
d5551862 SS |
15304 | /* Find the tracepoint with the given target-side number (which may be |
15305 | different from the tracepoint number after disconnecting and | |
15306 | reconnecting). */ | |
15307 | ||
d9b3f62e | 15308 | struct tracepoint * |
d5551862 SS |
15309 | get_tracepoint_by_number_on_target (int num) |
15310 | { | |
d9b3f62e | 15311 | struct breakpoint *b; |
d5551862 | 15312 | |
d9b3f62e PA |
15313 | ALL_TRACEPOINTS (b) |
15314 | { | |
15315 | struct tracepoint *t = (struct tracepoint *) b; | |
15316 | ||
15317 | if (t->number_on_target == num) | |
15318 | return t; | |
15319 | } | |
d5551862 SS |
15320 | |
15321 | return NULL; | |
15322 | } | |
15323 | ||
1042e4c0 | 15324 | /* Utility: parse a tracepoint number and look it up in the list. |
197f0a60 TT |
15325 | If STATE is not NULL, use, get_number_or_range_state and ignore ARG. |
15326 | If OPTIONAL_P is true, then if the argument is missing, the most | |
1042e4c0 | 15327 | recent tracepoint (tracepoint_count) is returned. */ |
d9b3f62e | 15328 | struct tracepoint * |
197f0a60 TT |
15329 | get_tracepoint_by_number (char **arg, |
15330 | struct get_number_or_range_state *state, | |
15331 | int optional_p) | |
1042e4c0 | 15332 | { |
1042e4c0 SS |
15333 | struct breakpoint *t; |
15334 | int tpnum; | |
15335 | char *instring = arg == NULL ? NULL : *arg; | |
15336 | ||
197f0a60 TT |
15337 | if (state) |
15338 | { | |
15339 | gdb_assert (!state->finished); | |
15340 | tpnum = get_number_or_range (state); | |
15341 | } | |
15342 | else if (arg == NULL || *arg == NULL || ! **arg) | |
1042e4c0 SS |
15343 | { |
15344 | if (optional_p) | |
15345 | tpnum = tracepoint_count; | |
15346 | else | |
15347 | error_no_arg (_("tracepoint number")); | |
15348 | } | |
15349 | else | |
197f0a60 | 15350 | tpnum = get_number (arg); |
1042e4c0 SS |
15351 | |
15352 | if (tpnum <= 0) | |
15353 | { | |
15354 | if (instring && *instring) | |
15355 | printf_filtered (_("bad tracepoint number at or near '%s'\n"), | |
15356 | instring); | |
15357 | else | |
3e43a32a MS |
15358 | printf_filtered (_("Tracepoint argument missing " |
15359 | "and no previous tracepoint\n")); | |
1042e4c0 SS |
15360 | return NULL; |
15361 | } | |
15362 | ||
15363 | ALL_TRACEPOINTS (t) | |
15364 | if (t->number == tpnum) | |
15365 | { | |
d9b3f62e | 15366 | return (struct tracepoint *) t; |
1042e4c0 SS |
15367 | } |
15368 | ||
1042e4c0 SS |
15369 | printf_unfiltered ("No tracepoint number %d.\n", tpnum); |
15370 | return NULL; | |
15371 | } | |
15372 | ||
d9b3f62e PA |
15373 | void |
15374 | print_recreate_thread (struct breakpoint *b, struct ui_file *fp) | |
15375 | { | |
15376 | if (b->thread != -1) | |
15377 | fprintf_unfiltered (fp, " thread %d", b->thread); | |
15378 | ||
15379 | if (b->task != 0) | |
15380 | fprintf_unfiltered (fp, " task %d", b->task); | |
15381 | ||
15382 | fprintf_unfiltered (fp, "\n"); | |
15383 | } | |
15384 | ||
6149aea9 PA |
15385 | /* Save information on user settable breakpoints (watchpoints, etc) to |
15386 | a new script file named FILENAME. If FILTER is non-NULL, call it | |
15387 | on each breakpoint and only include the ones for which it returns | |
15388 | non-zero. */ | |
15389 | ||
1042e4c0 | 15390 | static void |
6149aea9 PA |
15391 | save_breakpoints (char *filename, int from_tty, |
15392 | int (*filter) (const struct breakpoint *)) | |
1042e4c0 SS |
15393 | { |
15394 | struct breakpoint *tp; | |
6149aea9 | 15395 | int any = 0; |
a7bdde9e | 15396 | char *pathname; |
1042e4c0 | 15397 | struct cleanup *cleanup; |
a7bdde9e | 15398 | struct ui_file *fp; |
6149aea9 | 15399 | int extra_trace_bits = 0; |
1042e4c0 | 15400 | |
6149aea9 PA |
15401 | if (filename == 0 || *filename == 0) |
15402 | error (_("Argument required (file name in which to save)")); | |
1042e4c0 SS |
15403 | |
15404 | /* See if we have anything to save. */ | |
6149aea9 | 15405 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 15406 | { |
6149aea9 | 15407 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 15408 | if (!user_breakpoint_p (tp)) |
6149aea9 PA |
15409 | continue; |
15410 | ||
15411 | /* If we have a filter, only save the breakpoints it accepts. */ | |
15412 | if (filter && !filter (tp)) | |
15413 | continue; | |
15414 | ||
15415 | any = 1; | |
15416 | ||
15417 | if (is_tracepoint (tp)) | |
15418 | { | |
15419 | extra_trace_bits = 1; | |
15420 | ||
15421 | /* We can stop searching. */ | |
15422 | break; | |
15423 | } | |
1042e4c0 | 15424 | } |
6149aea9 PA |
15425 | |
15426 | if (!any) | |
1042e4c0 | 15427 | { |
6149aea9 | 15428 | warning (_("Nothing to save.")); |
1042e4c0 SS |
15429 | return; |
15430 | } | |
15431 | ||
6149aea9 | 15432 | pathname = tilde_expand (filename); |
1042e4c0 | 15433 | cleanup = make_cleanup (xfree, pathname); |
a7bdde9e | 15434 | fp = gdb_fopen (pathname, "w"); |
059fb39f | 15435 | if (!fp) |
6149aea9 PA |
15436 | error (_("Unable to open file '%s' for saving (%s)"), |
15437 | filename, safe_strerror (errno)); | |
a7bdde9e | 15438 | make_cleanup_ui_file_delete (fp); |
8bf6485c | 15439 | |
6149aea9 PA |
15440 | if (extra_trace_bits) |
15441 | save_trace_state_variables (fp); | |
8bf6485c | 15442 | |
6149aea9 | 15443 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 15444 | { |
6149aea9 | 15445 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 15446 | if (!user_breakpoint_p (tp)) |
6149aea9 | 15447 | continue; |
8bf6485c | 15448 | |
6149aea9 PA |
15449 | /* If we have a filter, only save the breakpoints it accepts. */ |
15450 | if (filter && !filter (tp)) | |
15451 | continue; | |
15452 | ||
348d480f | 15453 | tp->ops->print_recreate (tp, fp); |
1042e4c0 | 15454 | |
6149aea9 PA |
15455 | /* Note, we can't rely on tp->number for anything, as we can't |
15456 | assume the recreated breakpoint numbers will match. Use $bpnum | |
15457 | instead. */ | |
15458 | ||
15459 | if (tp->cond_string) | |
15460 | fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string); | |
15461 | ||
15462 | if (tp->ignore_count) | |
15463 | fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count); | |
15464 | ||
2d9442cc | 15465 | if (tp->type != bp_dprintf && tp->commands) |
1042e4c0 | 15466 | { |
a7bdde9e VP |
15467 | volatile struct gdb_exception ex; |
15468 | ||
6149aea9 | 15469 | fprintf_unfiltered (fp, " commands\n"); |
a7bdde9e | 15470 | |
79a45e25 | 15471 | ui_out_redirect (current_uiout, fp); |
14dba4b4 | 15472 | TRY_CATCH (ex, RETURN_MASK_ALL) |
1042e4c0 | 15473 | { |
79a45e25 | 15474 | print_command_lines (current_uiout, tp->commands->commands, 2); |
a7bdde9e | 15475 | } |
79a45e25 | 15476 | ui_out_redirect (current_uiout, NULL); |
1042e4c0 | 15477 | |
a7bdde9e VP |
15478 | if (ex.reason < 0) |
15479 | throw_exception (ex); | |
1042e4c0 | 15480 | |
a7bdde9e | 15481 | fprintf_unfiltered (fp, " end\n"); |
1042e4c0 | 15482 | } |
6149aea9 PA |
15483 | |
15484 | if (tp->enable_state == bp_disabled) | |
15485 | fprintf_unfiltered (fp, "disable\n"); | |
15486 | ||
15487 | /* If this is a multi-location breakpoint, check if the locations | |
15488 | should be individually disabled. Watchpoint locations are | |
15489 | special, and not user visible. */ | |
15490 | if (!is_watchpoint (tp) && tp->loc && tp->loc->next) | |
15491 | { | |
15492 | struct bp_location *loc; | |
15493 | int n = 1; | |
15494 | ||
15495 | for (loc = tp->loc; loc != NULL; loc = loc->next, n++) | |
15496 | if (!loc->enabled) | |
15497 | fprintf_unfiltered (fp, "disable $bpnum.%d\n", n); | |
15498 | } | |
1042e4c0 | 15499 | } |
8bf6485c | 15500 | |
6149aea9 | 15501 | if (extra_trace_bits && *default_collect) |
8bf6485c SS |
15502 | fprintf_unfiltered (fp, "set default-collect %s\n", default_collect); |
15503 | ||
1042e4c0 SS |
15504 | do_cleanups (cleanup); |
15505 | if (from_tty) | |
6149aea9 PA |
15506 | printf_filtered (_("Saved to file '%s'.\n"), filename); |
15507 | } | |
15508 | ||
15509 | /* The `save breakpoints' command. */ | |
15510 | ||
15511 | static void | |
15512 | save_breakpoints_command (char *args, int from_tty) | |
15513 | { | |
15514 | save_breakpoints (args, from_tty, NULL); | |
15515 | } | |
15516 | ||
15517 | /* The `save tracepoints' command. */ | |
15518 | ||
15519 | static void | |
15520 | save_tracepoints_command (char *args, int from_tty) | |
15521 | { | |
15522 | save_breakpoints (args, from_tty, is_tracepoint); | |
1042e4c0 SS |
15523 | } |
15524 | ||
15525 | /* Create a vector of all tracepoints. */ | |
15526 | ||
15527 | VEC(breakpoint_p) * | |
eeae04df | 15528 | all_tracepoints (void) |
1042e4c0 SS |
15529 | { |
15530 | VEC(breakpoint_p) *tp_vec = 0; | |
15531 | struct breakpoint *tp; | |
15532 | ||
15533 | ALL_TRACEPOINTS (tp) | |
15534 | { | |
15535 | VEC_safe_push (breakpoint_p, tp_vec, tp); | |
15536 | } | |
15537 | ||
15538 | return tp_vec; | |
15539 | } | |
15540 | ||
c906108c | 15541 | \f |
4a64f543 MS |
15542 | /* This help string is used for the break, hbreak, tbreak and thbreak |
15543 | commands. It is defined as a macro to prevent duplication. | |
15544 | COMMAND should be a string constant containing the name of the | |
15545 | command. */ | |
31e2b00f | 15546 | #define BREAK_ARGS_HELP(command) \ |
fb7b5af4 SDJ |
15547 | command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\ |
15548 | PROBE_MODIFIER shall be present if the command is to be placed in a\n\ | |
15549 | probe point. Accepted values are `-probe' (for a generic, automatically\n\ | |
15550 | guessed probe type) or `-probe-stap' (for a SystemTap probe).\n\ | |
31e2b00f AS |
15551 | LOCATION may be a line number, function name, or \"*\" and an address.\n\ |
15552 | If a line number is specified, break at start of code for that line.\n\ | |
15553 | If a function is specified, break at start of code for that function.\n\ | |
15554 | If an address is specified, break at that exact address.\n\ | |
dc10affe PA |
15555 | With no LOCATION, uses current execution address of the selected\n\ |
15556 | stack frame. This is useful for breaking on return to a stack frame.\n\ | |
31e2b00f AS |
15557 | \n\ |
15558 | THREADNUM is the number from \"info threads\".\n\ | |
15559 | CONDITION is a boolean expression.\n\ | |
15560 | \n\ | |
d41c0fc8 PA |
15561 | Multiple breakpoints at one place are permitted, and useful if their\n\ |
15562 | conditions are different.\n\ | |
31e2b00f AS |
15563 | \n\ |
15564 | Do \"help breakpoints\" for info on other commands dealing with breakpoints." | |
15565 | ||
44feb3ce TT |
15566 | /* List of subcommands for "catch". */ |
15567 | static struct cmd_list_element *catch_cmdlist; | |
15568 | ||
15569 | /* List of subcommands for "tcatch". */ | |
15570 | static struct cmd_list_element *tcatch_cmdlist; | |
15571 | ||
9ac4176b | 15572 | void |
44feb3ce TT |
15573 | add_catch_command (char *name, char *docstring, |
15574 | void (*sfunc) (char *args, int from_tty, | |
15575 | struct cmd_list_element *command), | |
625e8578 | 15576 | completer_ftype *completer, |
44feb3ce TT |
15577 | void *user_data_catch, |
15578 | void *user_data_tcatch) | |
15579 | { | |
15580 | struct cmd_list_element *command; | |
15581 | ||
15582 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
15583 | &catch_cmdlist); | |
15584 | set_cmd_sfunc (command, sfunc); | |
15585 | set_cmd_context (command, user_data_catch); | |
a96d9b2e | 15586 | set_cmd_completer (command, completer); |
44feb3ce TT |
15587 | |
15588 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
15589 | &tcatch_cmdlist); | |
15590 | set_cmd_sfunc (command, sfunc); | |
15591 | set_cmd_context (command, user_data_tcatch); | |
a96d9b2e | 15592 | set_cmd_completer (command, completer); |
44feb3ce TT |
15593 | } |
15594 | ||
6c95b8df | 15595 | static void |
a79b8f6e | 15596 | clear_syscall_counts (struct inferior *inf) |
6c95b8df | 15597 | { |
fa3064dd YQ |
15598 | struct catch_syscall_inferior_data *inf_data |
15599 | = get_catch_syscall_inferior_data (inf); | |
15600 | ||
15601 | inf_data->total_syscalls_count = 0; | |
15602 | inf_data->any_syscall_count = 0; | |
15603 | VEC_free (int, inf_data->syscalls_counts); | |
6c95b8df PA |
15604 | } |
15605 | ||
6149aea9 PA |
15606 | static void |
15607 | save_command (char *arg, int from_tty) | |
15608 | { | |
3e43a32a MS |
15609 | printf_unfiltered (_("\"save\" must be followed by " |
15610 | "the name of a save subcommand.\n")); | |
6149aea9 PA |
15611 | help_list (save_cmdlist, "save ", -1, gdb_stdout); |
15612 | } | |
15613 | ||
84f4c1fe PM |
15614 | struct breakpoint * |
15615 | iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *), | |
15616 | void *data) | |
15617 | { | |
35df4500 | 15618 | struct breakpoint *b, *b_tmp; |
84f4c1fe | 15619 | |
35df4500 | 15620 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
84f4c1fe PM |
15621 | { |
15622 | if ((*callback) (b, data)) | |
15623 | return b; | |
15624 | } | |
15625 | ||
15626 | return NULL; | |
15627 | } | |
15628 | ||
0574c78f GB |
15629 | /* Zero if any of the breakpoint's locations could be a location where |
15630 | functions have been inlined, nonzero otherwise. */ | |
15631 | ||
15632 | static int | |
15633 | is_non_inline_function (struct breakpoint *b) | |
15634 | { | |
15635 | /* The shared library event breakpoint is set on the address of a | |
15636 | non-inline function. */ | |
15637 | if (b->type == bp_shlib_event) | |
15638 | return 1; | |
15639 | ||
15640 | return 0; | |
15641 | } | |
15642 | ||
15643 | /* Nonzero if the specified PC cannot be a location where functions | |
15644 | have been inlined. */ | |
15645 | ||
15646 | int | |
09ac7c10 TT |
15647 | pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc, |
15648 | const struct target_waitstatus *ws) | |
0574c78f GB |
15649 | { |
15650 | struct breakpoint *b; | |
15651 | struct bp_location *bl; | |
15652 | ||
15653 | ALL_BREAKPOINTS (b) | |
15654 | { | |
15655 | if (!is_non_inline_function (b)) | |
15656 | continue; | |
15657 | ||
15658 | for (bl = b->loc; bl != NULL; bl = bl->next) | |
15659 | { | |
15660 | if (!bl->shlib_disabled | |
09ac7c10 | 15661 | && bpstat_check_location (bl, aspace, pc, ws)) |
0574c78f GB |
15662 | return 1; |
15663 | } | |
15664 | } | |
15665 | ||
15666 | return 0; | |
15667 | } | |
15668 | ||
2f202fde JK |
15669 | /* Remove any references to OBJFILE which is going to be freed. */ |
15670 | ||
15671 | void | |
15672 | breakpoint_free_objfile (struct objfile *objfile) | |
15673 | { | |
15674 | struct bp_location **locp, *loc; | |
15675 | ||
15676 | ALL_BP_LOCATIONS (loc, locp) | |
15677 | if (loc->symtab != NULL && loc->symtab->objfile == objfile) | |
15678 | loc->symtab = NULL; | |
15679 | } | |
15680 | ||
2060206e PA |
15681 | void |
15682 | initialize_breakpoint_ops (void) | |
15683 | { | |
15684 | static int initialized = 0; | |
15685 | ||
15686 | struct breakpoint_ops *ops; | |
15687 | ||
15688 | if (initialized) | |
15689 | return; | |
15690 | initialized = 1; | |
15691 | ||
15692 | /* The breakpoint_ops structure to be inherit by all kinds of | |
15693 | breakpoints (real breakpoints, i.e., user "break" breakpoints, | |
15694 | internal and momentary breakpoints, etc.). */ | |
15695 | ops = &bkpt_base_breakpoint_ops; | |
15696 | *ops = base_breakpoint_ops; | |
15697 | ops->re_set = bkpt_re_set; | |
15698 | ops->insert_location = bkpt_insert_location; | |
15699 | ops->remove_location = bkpt_remove_location; | |
15700 | ops->breakpoint_hit = bkpt_breakpoint_hit; | |
983af33b SDJ |
15701 | ops->create_sals_from_address = bkpt_create_sals_from_address; |
15702 | ops->create_breakpoints_sal = bkpt_create_breakpoints_sal; | |
15703 | ops->decode_linespec = bkpt_decode_linespec; | |
2060206e PA |
15704 | |
15705 | /* The breakpoint_ops structure to be used in regular breakpoints. */ | |
15706 | ops = &bkpt_breakpoint_ops; | |
15707 | *ops = bkpt_base_breakpoint_ops; | |
15708 | ops->re_set = bkpt_re_set; | |
15709 | ops->resources_needed = bkpt_resources_needed; | |
15710 | ops->print_it = bkpt_print_it; | |
15711 | ops->print_mention = bkpt_print_mention; | |
15712 | ops->print_recreate = bkpt_print_recreate; | |
15713 | ||
15714 | /* Ranged breakpoints. */ | |
15715 | ops = &ranged_breakpoint_ops; | |
15716 | *ops = bkpt_breakpoint_ops; | |
15717 | ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint; | |
15718 | ops->resources_needed = resources_needed_ranged_breakpoint; | |
15719 | ops->print_it = print_it_ranged_breakpoint; | |
15720 | ops->print_one = print_one_ranged_breakpoint; | |
15721 | ops->print_one_detail = print_one_detail_ranged_breakpoint; | |
15722 | ops->print_mention = print_mention_ranged_breakpoint; | |
15723 | ops->print_recreate = print_recreate_ranged_breakpoint; | |
15724 | ||
15725 | /* Internal breakpoints. */ | |
15726 | ops = &internal_breakpoint_ops; | |
15727 | *ops = bkpt_base_breakpoint_ops; | |
15728 | ops->re_set = internal_bkpt_re_set; | |
15729 | ops->check_status = internal_bkpt_check_status; | |
15730 | ops->print_it = internal_bkpt_print_it; | |
15731 | ops->print_mention = internal_bkpt_print_mention; | |
15732 | ||
15733 | /* Momentary breakpoints. */ | |
15734 | ops = &momentary_breakpoint_ops; | |
15735 | *ops = bkpt_base_breakpoint_ops; | |
15736 | ops->re_set = momentary_bkpt_re_set; | |
15737 | ops->check_status = momentary_bkpt_check_status; | |
15738 | ops->print_it = momentary_bkpt_print_it; | |
15739 | ops->print_mention = momentary_bkpt_print_mention; | |
15740 | ||
e2e4d78b JK |
15741 | /* Momentary breakpoints for bp_longjmp and bp_exception. */ |
15742 | ops = &longjmp_breakpoint_ops; | |
15743 | *ops = momentary_breakpoint_ops; | |
15744 | ops->dtor = longjmp_bkpt_dtor; | |
15745 | ||
55aa24fb SDJ |
15746 | /* Probe breakpoints. */ |
15747 | ops = &bkpt_probe_breakpoint_ops; | |
15748 | *ops = bkpt_breakpoint_ops; | |
15749 | ops->insert_location = bkpt_probe_insert_location; | |
15750 | ops->remove_location = bkpt_probe_remove_location; | |
15751 | ops->create_sals_from_address = bkpt_probe_create_sals_from_address; | |
15752 | ops->decode_linespec = bkpt_probe_decode_linespec; | |
15753 | ||
2060206e PA |
15754 | /* Watchpoints. */ |
15755 | ops = &watchpoint_breakpoint_ops; | |
15756 | *ops = base_breakpoint_ops; | |
3a5c3e22 | 15757 | ops->dtor = dtor_watchpoint; |
2060206e PA |
15758 | ops->re_set = re_set_watchpoint; |
15759 | ops->insert_location = insert_watchpoint; | |
15760 | ops->remove_location = remove_watchpoint; | |
15761 | ops->breakpoint_hit = breakpoint_hit_watchpoint; | |
15762 | ops->check_status = check_status_watchpoint; | |
15763 | ops->resources_needed = resources_needed_watchpoint; | |
15764 | ops->works_in_software_mode = works_in_software_mode_watchpoint; | |
15765 | ops->print_it = print_it_watchpoint; | |
15766 | ops->print_mention = print_mention_watchpoint; | |
15767 | ops->print_recreate = print_recreate_watchpoint; | |
427cd150 | 15768 | ops->explains_signal = explains_signal_watchpoint; |
2060206e PA |
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\ | |
0e4777df | 16454 | If a function is specified, break at start of code for that function.")); |
e7e0cddf SS |
16455 | set_cmd_completer (c, location_completer); |
16456 | ||
16457 | add_setshow_enum_cmd ("dprintf-style", class_support, | |
16458 | dprintf_style_enums, &dprintf_style, _("\ | |
16459 | Set the style of usage for dynamic printf."), _("\ | |
16460 | Show the style of usage for dynamic printf."), _("\ | |
16461 | This setting chooses how GDB will do a dynamic printf.\n\ | |
16462 | If the value is \"gdb\", then the printing is done by GDB to its own\n\ | |
16463 | console, as with the \"printf\" command.\n\ | |
16464 | If the value is \"call\", the print is done by calling a function in your\n\ | |
16465 | program; by default printf(), but you can choose a different function or\n\ | |
16466 | output stream by setting dprintf-function and dprintf-channel."), | |
16467 | update_dprintf_commands, NULL, | |
16468 | &setlist, &showlist); | |
16469 | ||
16470 | dprintf_function = xstrdup ("printf"); | |
16471 | add_setshow_string_cmd ("dprintf-function", class_support, | |
16472 | &dprintf_function, _("\ | |
16473 | Set the function to use for dynamic printf"), _("\ | |
16474 | Show the function to use for dynamic printf"), NULL, | |
16475 | update_dprintf_commands, NULL, | |
16476 | &setlist, &showlist); | |
16477 | ||
16478 | dprintf_channel = xstrdup (""); | |
16479 | add_setshow_string_cmd ("dprintf-channel", class_support, | |
16480 | &dprintf_channel, _("\ | |
16481 | Set the channel to use for dynamic printf"), _("\ | |
16482 | Show the channel to use for dynamic printf"), NULL, | |
16483 | update_dprintf_commands, NULL, | |
16484 | &setlist, &showlist); | |
16485 | ||
d3ce09f5 SS |
16486 | add_setshow_boolean_cmd ("disconnected-dprintf", no_class, |
16487 | &disconnected_dprintf, _("\ | |
16488 | Set whether dprintf continues after GDB disconnects."), _("\ | |
16489 | Show whether dprintf continues after GDB disconnects."), _("\ | |
16490 | Use this to let dprintf commands continue to hit and produce output\n\ | |
16491 | even if GDB disconnects or detaches from the target."), | |
16492 | NULL, | |
16493 | NULL, | |
16494 | &setlist, &showlist); | |
16495 | ||
16496 | add_com ("agent-printf", class_vars, agent_printf_command, _("\ | |
16497 | agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\ | |
16498 | (target agent only) This is useful for formatted output in user-defined commands.")); | |
16499 | ||
765dc015 | 16500 | automatic_hardware_breakpoints = 1; |
f3b1572e PA |
16501 | |
16502 | observer_attach_about_to_proceed (breakpoint_about_to_proceed); | |
c906108c | 16503 | } |