]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Everything about breakpoints, for GDB. |
8926118c | 2 | |
0b302171 | 3 | Copyright (C) 1986-2012 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" |
e9cafbcc | 63 | #include "cli/cli-utils.h" |
be34f849 | 64 | #include "continuations.h" |
1bfeeb0f JL |
65 | #include "stack.h" |
66 | #include "skip.h" | |
049e32d3 | 67 | #include "record.h" |
edcc5120 | 68 | #include "gdb_regex.h" |
b775012e | 69 | #include "ax-gdb.h" |
c906108c | 70 | |
1042e4c0 SS |
71 | /* readline include files */ |
72 | #include "readline/readline.h" | |
73 | #include "readline/history.h" | |
74 | ||
75 | /* readline defines this. */ | |
76 | #undef savestring | |
77 | ||
034dad6f | 78 | #include "mi/mi-common.h" |
7371cf6d | 79 | #include "python/python.h" |
104c1213 | 80 | |
4a64f543 | 81 | /* Prototypes for local functions. */ |
c906108c | 82 | |
a14ed312 | 83 | static void enable_delete_command (char *, int); |
c906108c | 84 | |
a14ed312 | 85 | static void enable_once_command (char *, int); |
c906108c | 86 | |
816338b5 SS |
87 | static void enable_count_command (char *, int); |
88 | ||
a14ed312 | 89 | static void disable_command (char *, int); |
c906108c | 90 | |
a14ed312 | 91 | static void enable_command (char *, int); |
c906108c | 92 | |
95a42b64 TT |
93 | static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *, |
94 | void *), | |
95 | void *); | |
c906108c | 96 | |
a14ed312 | 97 | static void ignore_command (char *, int); |
c906108c | 98 | |
4efb68b1 | 99 | static int breakpoint_re_set_one (void *); |
c906108c | 100 | |
348d480f PA |
101 | static void breakpoint_re_set_default (struct breakpoint *); |
102 | ||
983af33b SDJ |
103 | static void create_sals_from_address_default (char **, |
104 | struct linespec_result *, | |
105 | enum bptype, char *, | |
106 | char **); | |
107 | ||
108 | static void create_breakpoints_sal_default (struct gdbarch *, | |
109 | struct linespec_result *, | |
110 | struct linespec_sals *, | |
111 | char *, enum bptype, | |
112 | enum bpdisp, int, int, | |
113 | int, | |
114 | const struct breakpoint_ops *, | |
44f238bb | 115 | int, int, int, unsigned); |
983af33b SDJ |
116 | |
117 | static void decode_linespec_default (struct breakpoint *, char **, | |
118 | struct symtabs_and_lines *); | |
119 | ||
a14ed312 | 120 | static void clear_command (char *, int); |
c906108c | 121 | |
a14ed312 | 122 | static void catch_command (char *, int); |
c906108c | 123 | |
a9634178 | 124 | static int can_use_hardware_watchpoint (struct value *); |
c906108c | 125 | |
98deb0da | 126 | static void break_command_1 (char *, int, int); |
c906108c | 127 | |
a14ed312 | 128 | static void mention (struct breakpoint *); |
c906108c | 129 | |
348d480f PA |
130 | static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *, |
131 | enum bptype, | |
c0a91b2b | 132 | const struct breakpoint_ops *); |
3742cc8b YQ |
133 | static struct bp_location *add_location_to_breakpoint (struct breakpoint *, |
134 | const struct symtab_and_line *); | |
135 | ||
4a64f543 MS |
136 | /* This function is used in gdbtk sources and thus can not be made |
137 | static. */ | |
63c252f8 | 138 | struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch, |
348d480f | 139 | struct symtab_and_line, |
c0a91b2b TT |
140 | enum bptype, |
141 | const struct breakpoint_ops *); | |
c906108c | 142 | |
06edf0c0 PA |
143 | static struct breakpoint * |
144 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
145 | enum bptype type, | |
c0a91b2b | 146 | const struct breakpoint_ops *ops); |
06edf0c0 | 147 | |
76897487 KB |
148 | static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int); |
149 | ||
a6d9a66e UW |
150 | static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch, |
151 | CORE_ADDR bpaddr, | |
88f7da05 | 152 | enum bptype bptype); |
76897487 | 153 | |
6c95b8df PA |
154 | static void describe_other_breakpoints (struct gdbarch *, |
155 | struct program_space *, CORE_ADDR, | |
5af949e3 | 156 | struct obj_section *, int); |
c906108c | 157 | |
6c95b8df PA |
158 | static int breakpoint_address_match (struct address_space *aspace1, |
159 | CORE_ADDR addr1, | |
160 | struct address_space *aspace2, | |
161 | CORE_ADDR addr2); | |
162 | ||
85d721b8 PA |
163 | static int watchpoint_locations_match (struct bp_location *loc1, |
164 | struct bp_location *loc2); | |
165 | ||
f1310107 TJB |
166 | static int breakpoint_location_address_match (struct bp_location *bl, |
167 | struct address_space *aspace, | |
168 | CORE_ADDR addr); | |
169 | ||
a14ed312 | 170 | static void breakpoints_info (char *, int); |
c906108c | 171 | |
d77f58be SS |
172 | static void watchpoints_info (char *, int); |
173 | ||
e5a67952 MS |
174 | static int breakpoint_1 (char *, int, |
175 | int (*) (const struct breakpoint *)); | |
c906108c | 176 | |
4efb68b1 | 177 | static int breakpoint_cond_eval (void *); |
c906108c | 178 | |
4efb68b1 | 179 | static void cleanup_executing_breakpoints (void *); |
c906108c | 180 | |
a14ed312 | 181 | static void commands_command (char *, int); |
c906108c | 182 | |
a14ed312 | 183 | static void condition_command (char *, int); |
c906108c | 184 | |
c5aa993b JM |
185 | typedef enum |
186 | { | |
187 | mark_inserted, | |
188 | mark_uninserted | |
189 | } | |
190 | insertion_state_t; | |
c906108c | 191 | |
0bde7532 | 192 | static int remove_breakpoint (struct bp_location *, insertion_state_t); |
6c95b8df | 193 | static int remove_breakpoint_1 (struct bp_location *, insertion_state_t); |
c906108c | 194 | |
e514a9d6 | 195 | static enum print_stop_action print_bp_stop_message (bpstat bs); |
c906108c | 196 | |
4efb68b1 | 197 | static int watchpoint_check (void *); |
c906108c | 198 | |
a14ed312 | 199 | static void maintenance_info_breakpoints (char *, int); |
c906108c | 200 | |
a14ed312 | 201 | static int hw_breakpoint_used_count (void); |
c906108c | 202 | |
a1398e0c PA |
203 | static int hw_watchpoint_use_count (struct breakpoint *); |
204 | ||
205 | static int hw_watchpoint_used_count_others (struct breakpoint *except, | |
206 | enum bptype type, | |
207 | int *other_type_used); | |
c906108c | 208 | |
a14ed312 | 209 | static void hbreak_command (char *, int); |
c906108c | 210 | |
a14ed312 | 211 | static void thbreak_command (char *, int); |
c906108c | 212 | |
816338b5 SS |
213 | static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp, |
214 | int count); | |
c906108c | 215 | |
a14ed312 | 216 | static void stop_command (char *arg, int from_tty); |
7a292a7a | 217 | |
a14ed312 | 218 | static void stopin_command (char *arg, int from_tty); |
7a292a7a | 219 | |
a14ed312 | 220 | static void stopat_command (char *arg, int from_tty); |
7a292a7a | 221 | |
a14ed312 | 222 | static char *ep_parse_optional_if_clause (char **arg); |
7a292a7a | 223 | |
d85310f7 MS |
224 | static void catch_exception_command_1 (enum exception_event_kind ex_event, |
225 | char *arg, int tempflag, int from_tty); | |
7a292a7a | 226 | |
a14ed312 | 227 | static void tcatch_command (char *arg, int from_tty); |
7a292a7a | 228 | |
d03285ec UW |
229 | static void detach_single_step_breakpoints (void); |
230 | ||
6c95b8df PA |
231 | static int single_step_breakpoint_inserted_here_p (struct address_space *, |
232 | CORE_ADDR pc); | |
1aafd4da | 233 | |
fe3f5fa8 | 234 | static void free_bp_location (struct bp_location *loc); |
f431efe5 PA |
235 | static void incref_bp_location (struct bp_location *loc); |
236 | static void decref_bp_location (struct bp_location **loc); | |
fe3f5fa8 | 237 | |
39d61571 | 238 | static struct bp_location *allocate_bp_location (struct breakpoint *bpt); |
a5606eee | 239 | |
b60e7edf | 240 | static void update_global_location_list (int); |
a5606eee | 241 | |
b60e7edf | 242 | static void update_global_location_list_nothrow (int); |
74960c60 | 243 | |
d77f58be | 244 | static int is_hardware_watchpoint (const struct breakpoint *bpt); |
74960c60 VP |
245 | |
246 | static void insert_breakpoint_locations (void); | |
a5606eee | 247 | |
a96d9b2e SDJ |
248 | static int syscall_catchpoint_p (struct breakpoint *b); |
249 | ||
1042e4c0 SS |
250 | static void tracepoints_info (char *, int); |
251 | ||
252 | static void delete_trace_command (char *, int); | |
253 | ||
254 | static void enable_trace_command (char *, int); | |
255 | ||
256 | static void disable_trace_command (char *, int); | |
257 | ||
258 | static void trace_pass_command (char *, int); | |
259 | ||
9c06b0b4 TJB |
260 | static int is_masked_watchpoint (const struct breakpoint *b); |
261 | ||
b775012e LM |
262 | static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address); |
263 | ||
983af33b SDJ |
264 | /* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero |
265 | otherwise. */ | |
266 | ||
267 | static int strace_marker_p (struct breakpoint *b); | |
0fb4aa4b | 268 | |
edcc5120 TT |
269 | static void init_catchpoint (struct breakpoint *b, |
270 | struct gdbarch *gdbarch, int tempflag, | |
271 | char *cond_string, | |
272 | const struct breakpoint_ops *ops); | |
273 | ||
2060206e PA |
274 | /* The abstract base class all breakpoint_ops structures inherit |
275 | from. */ | |
276 | static struct breakpoint_ops base_breakpoint_ops; | |
277 | ||
278 | /* The breakpoint_ops structure to be inherited by all breakpoint_ops | |
279 | that are implemented on top of software or hardware breakpoints | |
280 | (user breakpoints, internal and momentary breakpoints, etc.). */ | |
281 | static struct breakpoint_ops bkpt_base_breakpoint_ops; | |
282 | ||
283 | /* Internal breakpoints class type. */ | |
06edf0c0 | 284 | static struct breakpoint_ops internal_breakpoint_ops; |
2060206e PA |
285 | |
286 | /* Momentary breakpoints class type. */ | |
06edf0c0 PA |
287 | static struct breakpoint_ops momentary_breakpoint_ops; |
288 | ||
2060206e PA |
289 | /* The breakpoint_ops structure to be used in regular user created |
290 | breakpoints. */ | |
291 | struct breakpoint_ops bkpt_breakpoint_ops; | |
292 | ||
5cea2a26 PA |
293 | /* A reference-counted struct command_line. This lets multiple |
294 | breakpoints share a single command list. */ | |
295 | struct counted_command_line | |
296 | { | |
297 | /* The reference count. */ | |
298 | int refc; | |
299 | ||
300 | /* The command list. */ | |
301 | struct command_line *commands; | |
302 | }; | |
303 | ||
304 | struct command_line * | |
305 | breakpoint_commands (struct breakpoint *b) | |
306 | { | |
307 | return b->commands ? b->commands->commands : NULL; | |
308 | } | |
3daf8fe5 | 309 | |
f3b1572e PA |
310 | /* Flag indicating that a command has proceeded the inferior past the |
311 | current breakpoint. */ | |
312 | ||
313 | static int breakpoint_proceeded; | |
314 | ||
956a9fb9 | 315 | const char * |
2cec12e5 AR |
316 | bpdisp_text (enum bpdisp disp) |
317 | { | |
4a64f543 MS |
318 | /* NOTE: the following values are a part of MI protocol and |
319 | represent values of 'disp' field returned when inferior stops at | |
320 | a breakpoint. */ | |
bc043ef3 | 321 | static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"}; |
cc59ec59 | 322 | |
2cec12e5 AR |
323 | return bpdisps[(int) disp]; |
324 | } | |
c906108c | 325 | |
4a64f543 | 326 | /* Prototypes for exported functions. */ |
c906108c | 327 | /* If FALSE, gdb will not use hardware support for watchpoints, even |
4a64f543 | 328 | if such is available. */ |
c906108c SS |
329 | static int can_use_hw_watchpoints; |
330 | ||
920d2a44 AC |
331 | static void |
332 | show_can_use_hw_watchpoints (struct ui_file *file, int from_tty, | |
333 | struct cmd_list_element *c, | |
334 | const char *value) | |
335 | { | |
3e43a32a MS |
336 | fprintf_filtered (file, |
337 | _("Debugger's willingness to use " | |
338 | "watchpoint hardware is %s.\n"), | |
920d2a44 AC |
339 | value); |
340 | } | |
341 | ||
fa8d40ab JJ |
342 | /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints. |
343 | If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints | |
4a64f543 | 344 | for unrecognized breakpoint locations. |
fa8d40ab JJ |
345 | If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */ |
346 | static enum auto_boolean pending_break_support; | |
920d2a44 AC |
347 | static void |
348 | show_pending_break_support (struct ui_file *file, int from_tty, | |
349 | struct cmd_list_element *c, | |
350 | const char *value) | |
351 | { | |
3e43a32a MS |
352 | fprintf_filtered (file, |
353 | _("Debugger's behavior regarding " | |
354 | "pending breakpoints is %s.\n"), | |
920d2a44 AC |
355 | value); |
356 | } | |
fa8d40ab | 357 | |
765dc015 | 358 | /* If 1, gdb will automatically use hardware breakpoints for breakpoints |
4a64f543 | 359 | set with "break" but falling in read-only memory. |
765dc015 VP |
360 | If 0, gdb will warn about such breakpoints, but won't automatically |
361 | use hardware breakpoints. */ | |
362 | static int automatic_hardware_breakpoints; | |
363 | static void | |
364 | show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty, | |
365 | struct cmd_list_element *c, | |
366 | const char *value) | |
367 | { | |
3e43a32a MS |
368 | fprintf_filtered (file, |
369 | _("Automatic usage of hardware breakpoints is %s.\n"), | |
765dc015 VP |
370 | value); |
371 | } | |
372 | ||
33e5cbd6 PA |
373 | /* If on, gdb will keep breakpoints inserted even as inferior is |
374 | stopped, and immediately insert any new breakpoints. If off, gdb | |
375 | will insert breakpoints into inferior only when resuming it, and | |
376 | will remove breakpoints upon stop. If auto, GDB will behave as ON | |
377 | if in non-stop mode, and as OFF if all-stop mode.*/ | |
378 | ||
379 | static const char always_inserted_auto[] = "auto"; | |
380 | static const char always_inserted_on[] = "on"; | |
381 | static const char always_inserted_off[] = "off"; | |
40478521 | 382 | static const char *const always_inserted_enums[] = { |
33e5cbd6 PA |
383 | always_inserted_auto, |
384 | always_inserted_off, | |
385 | always_inserted_on, | |
386 | NULL | |
387 | }; | |
388 | static const char *always_inserted_mode = always_inserted_auto; | |
389 | static void | |
74960c60 | 390 | show_always_inserted_mode (struct ui_file *file, int from_tty, |
33e5cbd6 | 391 | struct cmd_list_element *c, const char *value) |
74960c60 | 392 | { |
33e5cbd6 | 393 | if (always_inserted_mode == always_inserted_auto) |
3e43a32a MS |
394 | fprintf_filtered (file, |
395 | _("Always inserted breakpoint " | |
396 | "mode is %s (currently %s).\n"), | |
33e5cbd6 PA |
397 | value, |
398 | breakpoints_always_inserted_mode () ? "on" : "off"); | |
399 | else | |
3e43a32a MS |
400 | fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"), |
401 | value); | |
74960c60 VP |
402 | } |
403 | ||
33e5cbd6 PA |
404 | int |
405 | breakpoints_always_inserted_mode (void) | |
406 | { | |
049e32d3 PA |
407 | return ((always_inserted_mode == always_inserted_on |
408 | || (always_inserted_mode == always_inserted_auto && non_stop)) | |
409 | && !RECORD_IS_USED); | |
33e5cbd6 | 410 | } |
765dc015 | 411 | |
b775012e LM |
412 | static const char condition_evaluation_both[] = "host or target"; |
413 | ||
414 | /* Modes for breakpoint condition evaluation. */ | |
415 | static const char condition_evaluation_auto[] = "auto"; | |
416 | static const char condition_evaluation_host[] = "host"; | |
417 | static const char condition_evaluation_target[] = "target"; | |
418 | static const char *const condition_evaluation_enums[] = { | |
419 | condition_evaluation_auto, | |
420 | condition_evaluation_host, | |
421 | condition_evaluation_target, | |
422 | NULL | |
423 | }; | |
424 | ||
425 | /* Global that holds the current mode for breakpoint condition evaluation. */ | |
426 | static const char *condition_evaluation_mode_1 = condition_evaluation_auto; | |
427 | ||
428 | /* Global that we use to display information to the user (gets its value from | |
429 | condition_evaluation_mode_1. */ | |
430 | static const char *condition_evaluation_mode = condition_evaluation_auto; | |
431 | ||
432 | /* Translate a condition evaluation mode MODE into either "host" | |
433 | or "target". This is used mostly to translate from "auto" to the | |
434 | real setting that is being used. It returns the translated | |
435 | evaluation mode. */ | |
436 | ||
437 | static const char * | |
438 | translate_condition_evaluation_mode (const char *mode) | |
439 | { | |
440 | if (mode == condition_evaluation_auto) | |
441 | { | |
442 | if (target_supports_evaluation_of_breakpoint_conditions ()) | |
443 | return condition_evaluation_target; | |
444 | else | |
445 | return condition_evaluation_host; | |
446 | } | |
447 | else | |
448 | return mode; | |
449 | } | |
450 | ||
451 | /* Discovers what condition_evaluation_auto translates to. */ | |
452 | ||
453 | static const char * | |
454 | breakpoint_condition_evaluation_mode (void) | |
455 | { | |
456 | return translate_condition_evaluation_mode (condition_evaluation_mode); | |
457 | } | |
458 | ||
459 | /* Return true if GDB should evaluate breakpoint conditions or false | |
460 | otherwise. */ | |
461 | ||
462 | static int | |
463 | gdb_evaluates_breakpoint_condition_p (void) | |
464 | { | |
465 | const char *mode = breakpoint_condition_evaluation_mode (); | |
466 | ||
467 | return (mode == condition_evaluation_host); | |
468 | } | |
469 | ||
a14ed312 | 470 | void _initialize_breakpoint (void); |
c906108c | 471 | |
c906108c SS |
472 | /* Are we executing breakpoint commands? */ |
473 | static int executing_breakpoint_commands; | |
474 | ||
c02f5703 MS |
475 | /* Are overlay event breakpoints enabled? */ |
476 | static int overlay_events_enabled; | |
477 | ||
e09342b5 TJB |
478 | /* See description in breakpoint.h. */ |
479 | int target_exact_watchpoints = 0; | |
480 | ||
c906108c | 481 | /* Walk the following statement or block through all breakpoints. |
e5dd4106 | 482 | ALL_BREAKPOINTS_SAFE does so even if the statement deletes the |
4a64f543 | 483 | current breakpoint. */ |
c906108c | 484 | |
5c44784c | 485 | #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next) |
c906108c | 486 | |
5c44784c JM |
487 | #define ALL_BREAKPOINTS_SAFE(B,TMP) \ |
488 | for (B = breakpoint_chain; \ | |
489 | B ? (TMP=B->next, 1): 0; \ | |
490 | B = TMP) | |
c906108c | 491 | |
4a64f543 MS |
492 | /* Similar iterator for the low-level breakpoints. SAFE variant is |
493 | not provided so update_global_location_list must not be called | |
494 | while executing the block of ALL_BP_LOCATIONS. */ | |
7cc221ef | 495 | |
876fa593 JK |
496 | #define ALL_BP_LOCATIONS(B,BP_TMP) \ |
497 | for (BP_TMP = bp_location; \ | |
498 | BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \ | |
499 | BP_TMP++) | |
7cc221ef | 500 | |
b775012e LM |
501 | /* Iterates through locations with address ADDRESS for the currently selected |
502 | program space. BP_LOCP_TMP points to each object. BP_LOCP_START points | |
503 | to where the loop should start from. | |
504 | If BP_LOCP_START is a NULL pointer, the macro automatically seeks the | |
505 | appropriate location to start with. */ | |
506 | ||
507 | #define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \ | |
508 | for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \ | |
509 | BP_LOCP_TMP = BP_LOCP_START; \ | |
510 | BP_LOCP_START \ | |
511 | && (BP_LOCP_TMP < bp_location + bp_location_count \ | |
512 | && (*BP_LOCP_TMP)->address == ADDRESS); \ | |
513 | BP_LOCP_TMP++) | |
514 | ||
1042e4c0 SS |
515 | /* Iterator for tracepoints only. */ |
516 | ||
517 | #define ALL_TRACEPOINTS(B) \ | |
518 | for (B = breakpoint_chain; B; B = B->next) \ | |
d77f58be | 519 | if (is_tracepoint (B)) |
1042e4c0 | 520 | |
7cc221ef | 521 | /* Chains of all breakpoints defined. */ |
c906108c SS |
522 | |
523 | struct breakpoint *breakpoint_chain; | |
524 | ||
876fa593 JK |
525 | /* Array is sorted by bp_location_compare - primarily by the ADDRESS. */ |
526 | ||
527 | static struct bp_location **bp_location; | |
528 | ||
529 | /* Number of elements of BP_LOCATION. */ | |
530 | ||
531 | static unsigned bp_location_count; | |
532 | ||
4a64f543 MS |
533 | /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and |
534 | ADDRESS for the current elements of BP_LOCATION which get a valid | |
535 | result from bp_location_has_shadow. You can use it for roughly | |
536 | limiting the subrange of BP_LOCATION to scan for shadow bytes for | |
537 | an address you need to read. */ | |
876fa593 JK |
538 | |
539 | static CORE_ADDR bp_location_placed_address_before_address_max; | |
540 | ||
4a64f543 MS |
541 | /* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS |
542 | + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of | |
543 | BP_LOCATION which get a valid result from bp_location_has_shadow. | |
544 | You can use it for roughly limiting the subrange of BP_LOCATION to | |
545 | scan for shadow bytes for an address you need to read. */ | |
876fa593 JK |
546 | |
547 | static CORE_ADDR bp_location_shadow_len_after_address_max; | |
7cc221ef | 548 | |
4a64f543 MS |
549 | /* The locations that no longer correspond to any breakpoint, unlinked |
550 | from bp_location array, but for which a hit may still be reported | |
551 | by a target. */ | |
20874c92 VP |
552 | VEC(bp_location_p) *moribund_locations = NULL; |
553 | ||
c906108c SS |
554 | /* Number of last breakpoint made. */ |
555 | ||
95a42b64 TT |
556 | static int breakpoint_count; |
557 | ||
86b17b60 PA |
558 | /* The value of `breakpoint_count' before the last command that |
559 | created breakpoints. If the last (break-like) command created more | |
560 | than one breakpoint, then the difference between BREAKPOINT_COUNT | |
561 | and PREV_BREAKPOINT_COUNT is more than one. */ | |
562 | static int prev_breakpoint_count; | |
c906108c | 563 | |
1042e4c0 SS |
564 | /* Number of last tracepoint made. */ |
565 | ||
95a42b64 | 566 | static int tracepoint_count; |
1042e4c0 | 567 | |
6149aea9 PA |
568 | static struct cmd_list_element *breakpoint_set_cmdlist; |
569 | static struct cmd_list_element *breakpoint_show_cmdlist; | |
9291a0cd | 570 | struct cmd_list_element *save_cmdlist; |
6149aea9 | 571 | |
468d015d JJ |
572 | /* Return whether a breakpoint is an active enabled breakpoint. */ |
573 | static int | |
574 | breakpoint_enabled (struct breakpoint *b) | |
575 | { | |
0d381245 | 576 | return (b->enable_state == bp_enabled); |
468d015d JJ |
577 | } |
578 | ||
c906108c SS |
579 | /* Set breakpoint count to NUM. */ |
580 | ||
95a42b64 | 581 | static void |
fba45db2 | 582 | set_breakpoint_count (int num) |
c906108c | 583 | { |
86b17b60 | 584 | prev_breakpoint_count = breakpoint_count; |
c906108c | 585 | breakpoint_count = num; |
4fa62494 | 586 | set_internalvar_integer (lookup_internalvar ("bpnum"), num); |
c906108c SS |
587 | } |
588 | ||
86b17b60 PA |
589 | /* Used by `start_rbreak_breakpoints' below, to record the current |
590 | breakpoint count before "rbreak" creates any breakpoint. */ | |
591 | static int rbreak_start_breakpoint_count; | |
592 | ||
95a42b64 TT |
593 | /* Called at the start an "rbreak" command to record the first |
594 | breakpoint made. */ | |
86b17b60 | 595 | |
95a42b64 TT |
596 | void |
597 | start_rbreak_breakpoints (void) | |
598 | { | |
86b17b60 | 599 | rbreak_start_breakpoint_count = breakpoint_count; |
95a42b64 TT |
600 | } |
601 | ||
602 | /* Called at the end of an "rbreak" command to record the last | |
603 | breakpoint made. */ | |
86b17b60 | 604 | |
95a42b64 TT |
605 | void |
606 | end_rbreak_breakpoints (void) | |
607 | { | |
86b17b60 | 608 | prev_breakpoint_count = rbreak_start_breakpoint_count; |
95a42b64 TT |
609 | } |
610 | ||
4a64f543 | 611 | /* Used in run_command to zero the hit count when a new run starts. */ |
c906108c SS |
612 | |
613 | void | |
fba45db2 | 614 | clear_breakpoint_hit_counts (void) |
c906108c SS |
615 | { |
616 | struct breakpoint *b; | |
617 | ||
618 | ALL_BREAKPOINTS (b) | |
619 | b->hit_count = 0; | |
620 | } | |
621 | ||
9add0f1b TT |
622 | /* Allocate a new counted_command_line with reference count of 1. |
623 | The new structure owns COMMANDS. */ | |
624 | ||
625 | static struct counted_command_line * | |
626 | alloc_counted_command_line (struct command_line *commands) | |
627 | { | |
628 | struct counted_command_line *result | |
629 | = xmalloc (sizeof (struct counted_command_line)); | |
cc59ec59 | 630 | |
9add0f1b TT |
631 | result->refc = 1; |
632 | result->commands = commands; | |
633 | return result; | |
634 | } | |
635 | ||
636 | /* Increment reference count. This does nothing if CMD is NULL. */ | |
637 | ||
638 | static void | |
639 | incref_counted_command_line (struct counted_command_line *cmd) | |
640 | { | |
641 | if (cmd) | |
642 | ++cmd->refc; | |
643 | } | |
644 | ||
645 | /* Decrement reference count. If the reference count reaches 0, | |
646 | destroy the counted_command_line. Sets *CMDP to NULL. This does | |
647 | nothing if *CMDP is NULL. */ | |
648 | ||
649 | static void | |
650 | decref_counted_command_line (struct counted_command_line **cmdp) | |
651 | { | |
652 | if (*cmdp) | |
653 | { | |
654 | if (--(*cmdp)->refc == 0) | |
655 | { | |
656 | free_command_lines (&(*cmdp)->commands); | |
657 | xfree (*cmdp); | |
658 | } | |
659 | *cmdp = NULL; | |
660 | } | |
661 | } | |
662 | ||
663 | /* A cleanup function that calls decref_counted_command_line. */ | |
664 | ||
665 | static void | |
666 | do_cleanup_counted_command_line (void *arg) | |
667 | { | |
668 | decref_counted_command_line (arg); | |
669 | } | |
670 | ||
671 | /* Create a cleanup that calls decref_counted_command_line on the | |
672 | argument. */ | |
673 | ||
674 | static struct cleanup * | |
675 | make_cleanup_decref_counted_command_line (struct counted_command_line **cmdp) | |
676 | { | |
677 | return make_cleanup (do_cleanup_counted_command_line, cmdp); | |
678 | } | |
679 | ||
c906108c | 680 | \f |
48cb2d85 VP |
681 | /* Return the breakpoint with the specified number, or NULL |
682 | if the number does not refer to an existing breakpoint. */ | |
683 | ||
684 | struct breakpoint * | |
685 | get_breakpoint (int num) | |
686 | { | |
687 | struct breakpoint *b; | |
688 | ||
689 | ALL_BREAKPOINTS (b) | |
690 | if (b->number == num) | |
691 | return b; | |
692 | ||
693 | return NULL; | |
694 | } | |
5c44784c | 695 | |
c906108c | 696 | \f |
adc36818 | 697 | |
b775012e LM |
698 | /* Mark locations as "conditions have changed" in case the target supports |
699 | evaluating conditions on its side. */ | |
700 | ||
701 | static void | |
702 | mark_breakpoint_modified (struct breakpoint *b) | |
703 | { | |
704 | struct bp_location *loc; | |
705 | ||
706 | /* This is only meaningful if the target is | |
707 | evaluating conditions and if the user has | |
708 | opted for condition evaluation on the target's | |
709 | side. */ | |
710 | if (gdb_evaluates_breakpoint_condition_p () | |
711 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
712 | return; | |
713 | ||
714 | if (!is_breakpoint (b)) | |
715 | return; | |
716 | ||
717 | for (loc = b->loc; loc; loc = loc->next) | |
718 | loc->condition_changed = condition_modified; | |
719 | } | |
720 | ||
721 | /* Mark location as "conditions have changed" in case the target supports | |
722 | evaluating conditions on its side. */ | |
723 | ||
724 | static void | |
725 | mark_breakpoint_location_modified (struct bp_location *loc) | |
726 | { | |
727 | /* This is only meaningful if the target is | |
728 | evaluating conditions and if the user has | |
729 | opted for condition evaluation on the target's | |
730 | side. */ | |
731 | if (gdb_evaluates_breakpoint_condition_p () | |
732 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
733 | ||
734 | return; | |
735 | ||
736 | if (!is_breakpoint (loc->owner)) | |
737 | return; | |
738 | ||
739 | loc->condition_changed = condition_modified; | |
740 | } | |
741 | ||
742 | /* Sets the condition-evaluation mode using the static global | |
743 | condition_evaluation_mode. */ | |
744 | ||
745 | static void | |
746 | set_condition_evaluation_mode (char *args, int from_tty, | |
747 | struct cmd_list_element *c) | |
748 | { | |
749 | struct breakpoint *b; | |
750 | const char *old_mode, *new_mode; | |
751 | ||
752 | if ((condition_evaluation_mode_1 == condition_evaluation_target) | |
753 | && !target_supports_evaluation_of_breakpoint_conditions ()) | |
754 | { | |
755 | condition_evaluation_mode_1 = condition_evaluation_mode; | |
756 | warning (_("Target does not support breakpoint condition evaluation.\n" | |
757 | "Using host evaluation mode instead.")); | |
758 | return; | |
759 | } | |
760 | ||
761 | new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1); | |
762 | old_mode = translate_condition_evaluation_mode (condition_evaluation_mode); | |
763 | ||
abf1152a JK |
764 | /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the |
765 | settings was "auto". */ | |
766 | condition_evaluation_mode = condition_evaluation_mode_1; | |
767 | ||
b775012e LM |
768 | /* Only update the mode if the user picked a different one. */ |
769 | if (new_mode != old_mode) | |
770 | { | |
771 | struct bp_location *loc, **loc_tmp; | |
772 | /* If the user switched to a different evaluation mode, we | |
773 | need to synch the changes with the target as follows: | |
774 | ||
775 | "host" -> "target": Send all (valid) conditions to the target. | |
776 | "target" -> "host": Remove all the conditions from the target. | |
777 | */ | |
778 | ||
b775012e LM |
779 | if (new_mode == condition_evaluation_target) |
780 | { | |
781 | /* Mark everything modified and synch conditions with the | |
782 | target. */ | |
783 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
784 | mark_breakpoint_location_modified (loc); | |
785 | } | |
786 | else | |
787 | { | |
788 | /* Manually mark non-duplicate locations to synch conditions | |
789 | with the target. We do this to remove all the conditions the | |
790 | target knows about. */ | |
791 | ALL_BP_LOCATIONS (loc, loc_tmp) | |
792 | if (is_breakpoint (loc->owner) && loc->inserted) | |
793 | loc->needs_update = 1; | |
794 | } | |
795 | ||
796 | /* Do the update. */ | |
797 | update_global_location_list (1); | |
798 | } | |
799 | ||
800 | return; | |
801 | } | |
802 | ||
803 | /* Shows the current mode of breakpoint condition evaluation. Explicitly shows | |
804 | what "auto" is translating to. */ | |
805 | ||
806 | static void | |
807 | show_condition_evaluation_mode (struct ui_file *file, int from_tty, | |
808 | struct cmd_list_element *c, const char *value) | |
809 | { | |
810 | if (condition_evaluation_mode == condition_evaluation_auto) | |
811 | fprintf_filtered (file, | |
812 | _("Breakpoint condition evaluation " | |
813 | "mode is %s (currently %s).\n"), | |
814 | value, | |
815 | breakpoint_condition_evaluation_mode ()); | |
816 | else | |
817 | fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"), | |
818 | value); | |
819 | } | |
820 | ||
821 | /* A comparison function for bp_location AP and BP that is used by | |
822 | bsearch. This comparison function only cares about addresses, unlike | |
823 | the more general bp_location_compare function. */ | |
824 | ||
825 | static int | |
826 | bp_location_compare_addrs (const void *ap, const void *bp) | |
827 | { | |
828 | struct bp_location *a = *(void **) ap; | |
829 | struct bp_location *b = *(void **) bp; | |
830 | ||
831 | if (a->address == b->address) | |
832 | return 0; | |
833 | else | |
834 | return ((a->address > b->address) - (a->address < b->address)); | |
835 | } | |
836 | ||
837 | /* Helper function to skip all bp_locations with addresses | |
838 | less than ADDRESS. It returns the first bp_location that | |
839 | is greater than or equal to ADDRESS. If none is found, just | |
840 | return NULL. */ | |
841 | ||
842 | static struct bp_location ** | |
843 | get_first_locp_gte_addr (CORE_ADDR address) | |
844 | { | |
845 | struct bp_location dummy_loc; | |
846 | struct bp_location *dummy_locp = &dummy_loc; | |
847 | struct bp_location **locp_found = NULL; | |
848 | ||
849 | /* Initialize the dummy location's address field. */ | |
850 | memset (&dummy_loc, 0, sizeof (struct bp_location)); | |
851 | dummy_loc.address = address; | |
852 | ||
853 | /* Find a close match to the first location at ADDRESS. */ | |
854 | locp_found = bsearch (&dummy_locp, bp_location, bp_location_count, | |
855 | sizeof (struct bp_location **), | |
856 | bp_location_compare_addrs); | |
857 | ||
858 | /* Nothing was found, nothing left to do. */ | |
859 | if (locp_found == NULL) | |
860 | return NULL; | |
861 | ||
862 | /* We may have found a location that is at ADDRESS but is not the first in the | |
863 | location's list. Go backwards (if possible) and locate the first one. */ | |
864 | while ((locp_found - 1) >= bp_location | |
865 | && (*(locp_found - 1))->address == address) | |
866 | locp_found--; | |
867 | ||
868 | return locp_found; | |
869 | } | |
870 | ||
adc36818 PM |
871 | void |
872 | set_breakpoint_condition (struct breakpoint *b, char *exp, | |
873 | int from_tty) | |
874 | { | |
3a5c3e22 PA |
875 | xfree (b->cond_string); |
876 | b->cond_string = NULL; | |
adc36818 | 877 | |
3a5c3e22 | 878 | if (is_watchpoint (b)) |
adc36818 | 879 | { |
3a5c3e22 PA |
880 | struct watchpoint *w = (struct watchpoint *) b; |
881 | ||
882 | xfree (w->cond_exp); | |
883 | w->cond_exp = NULL; | |
884 | } | |
885 | else | |
886 | { | |
887 | struct bp_location *loc; | |
888 | ||
889 | for (loc = b->loc; loc; loc = loc->next) | |
890 | { | |
891 | xfree (loc->cond); | |
892 | loc->cond = NULL; | |
b775012e LM |
893 | |
894 | /* No need to free the condition agent expression | |
895 | bytecode (if we have one). We will handle this | |
896 | when we go through update_global_location_list. */ | |
3a5c3e22 | 897 | } |
adc36818 | 898 | } |
adc36818 PM |
899 | |
900 | if (*exp == 0) | |
901 | { | |
902 | if (from_tty) | |
903 | printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number); | |
904 | } | |
905 | else | |
906 | { | |
907 | char *arg = exp; | |
cc59ec59 | 908 | |
adc36818 PM |
909 | /* I don't know if it matters whether this is the string the user |
910 | typed in or the decompiled expression. */ | |
911 | b->cond_string = xstrdup (arg); | |
912 | b->condition_not_parsed = 0; | |
913 | ||
914 | if (is_watchpoint (b)) | |
915 | { | |
3a5c3e22 PA |
916 | struct watchpoint *w = (struct watchpoint *) b; |
917 | ||
adc36818 PM |
918 | innermost_block = NULL; |
919 | arg = exp; | |
3a5c3e22 | 920 | w->cond_exp = parse_exp_1 (&arg, 0, 0); |
adc36818 PM |
921 | if (*arg) |
922 | error (_("Junk at end of expression")); | |
3a5c3e22 | 923 | w->cond_exp_valid_block = innermost_block; |
adc36818 PM |
924 | } |
925 | else | |
926 | { | |
3a5c3e22 PA |
927 | struct bp_location *loc; |
928 | ||
adc36818 PM |
929 | for (loc = b->loc; loc; loc = loc->next) |
930 | { | |
931 | arg = exp; | |
932 | loc->cond = | |
933 | parse_exp_1 (&arg, block_for_pc (loc->address), 0); | |
934 | if (*arg) | |
935 | error (_("Junk at end of expression")); | |
936 | } | |
937 | } | |
938 | } | |
b775012e LM |
939 | mark_breakpoint_modified (b); |
940 | ||
adc36818 | 941 | breakpoints_changed (); |
8d3788bd | 942 | observer_notify_breakpoint_modified (b); |
adc36818 PM |
943 | } |
944 | ||
c906108c SS |
945 | /* condition N EXP -- set break condition of breakpoint N to EXP. */ |
946 | ||
947 | static void | |
fba45db2 | 948 | condition_command (char *arg, int from_tty) |
c906108c | 949 | { |
52f0bd74 | 950 | struct breakpoint *b; |
c906108c | 951 | char *p; |
52f0bd74 | 952 | int bnum; |
c906108c SS |
953 | |
954 | if (arg == 0) | |
e2e0b3e5 | 955 | error_no_arg (_("breakpoint number")); |
c906108c SS |
956 | |
957 | p = arg; | |
958 | bnum = get_number (&p); | |
5c44784c | 959 | if (bnum == 0) |
8a3fe4f8 | 960 | error (_("Bad breakpoint argument: '%s'"), arg); |
c906108c SS |
961 | |
962 | ALL_BREAKPOINTS (b) | |
963 | if (b->number == bnum) | |
2f069f6f | 964 | { |
7371cf6d PM |
965 | /* Check if this breakpoint has a Python object assigned to |
966 | it, and if it has a definition of the "stop" | |
967 | method. This method and conditions entered into GDB from | |
968 | the CLI are mutually exclusive. */ | |
969 | if (b->py_bp_object | |
970 | && gdbpy_breakpoint_has_py_cond (b->py_bp_object)) | |
971 | error (_("Cannot set a condition where a Python 'stop' " | |
972 | "method has been defined in the breakpoint.")); | |
2566ad2d | 973 | set_breakpoint_condition (b, p, from_tty); |
b775012e LM |
974 | |
975 | if (is_breakpoint (b)) | |
976 | update_global_location_list (1); | |
977 | ||
2f069f6f JB |
978 | return; |
979 | } | |
c906108c | 980 | |
8a3fe4f8 | 981 | error (_("No breakpoint number %d."), bnum); |
c906108c SS |
982 | } |
983 | ||
a7bdde9e VP |
984 | /* Check that COMMAND do not contain commands that are suitable |
985 | only for tracepoints and not suitable for ordinary breakpoints. | |
4a64f543 MS |
986 | Throw if any such commands is found. */ |
987 | ||
a7bdde9e VP |
988 | static void |
989 | check_no_tracepoint_commands (struct command_line *commands) | |
990 | { | |
991 | struct command_line *c; | |
cc59ec59 | 992 | |
a7bdde9e VP |
993 | for (c = commands; c; c = c->next) |
994 | { | |
995 | int i; | |
996 | ||
997 | if (c->control_type == while_stepping_control) | |
3e43a32a MS |
998 | error (_("The 'while-stepping' command can " |
999 | "only be used for tracepoints")); | |
a7bdde9e VP |
1000 | |
1001 | for (i = 0; i < c->body_count; ++i) | |
1002 | check_no_tracepoint_commands ((c->body_list)[i]); | |
1003 | ||
1004 | /* Not that command parsing removes leading whitespace and comment | |
4a64f543 | 1005 | lines and also empty lines. So, we only need to check for |
a7bdde9e VP |
1006 | command directly. */ |
1007 | if (strstr (c->line, "collect ") == c->line) | |
1008 | error (_("The 'collect' command can only be used for tracepoints")); | |
1009 | ||
51661e93 VP |
1010 | if (strstr (c->line, "teval ") == c->line) |
1011 | error (_("The 'teval' command can only be used for tracepoints")); | |
a7bdde9e VP |
1012 | } |
1013 | } | |
1014 | ||
d77f58be SS |
1015 | /* Encapsulate tests for different types of tracepoints. */ |
1016 | ||
d9b3f62e PA |
1017 | static int |
1018 | is_tracepoint_type (enum bptype type) | |
1019 | { | |
1020 | return (type == bp_tracepoint | |
1021 | || type == bp_fast_tracepoint | |
1022 | || type == bp_static_tracepoint); | |
1023 | } | |
1024 | ||
a7bdde9e | 1025 | int |
d77f58be | 1026 | is_tracepoint (const struct breakpoint *b) |
a7bdde9e | 1027 | { |
d9b3f62e | 1028 | return is_tracepoint_type (b->type); |
a7bdde9e | 1029 | } |
d9b3f62e | 1030 | |
e5dd4106 | 1031 | /* A helper function that validates that COMMANDS are valid for a |
95a42b64 TT |
1032 | breakpoint. This function will throw an exception if a problem is |
1033 | found. */ | |
48cb2d85 | 1034 | |
95a42b64 TT |
1035 | static void |
1036 | validate_commands_for_breakpoint (struct breakpoint *b, | |
1037 | struct command_line *commands) | |
48cb2d85 | 1038 | { |
d77f58be | 1039 | if (is_tracepoint (b)) |
a7bdde9e | 1040 | { |
4a64f543 MS |
1041 | /* We need to verify that each top-level element of commands is |
1042 | valid for tracepoints, that there's at most one | |
1043 | while-stepping element, and that while-stepping's body has | |
1044 | valid tracing commands excluding nested while-stepping. */ | |
a7bdde9e VP |
1045 | struct command_line *c; |
1046 | struct command_line *while_stepping = 0; | |
1047 | for (c = commands; c; c = c->next) | |
1048 | { | |
a7bdde9e VP |
1049 | if (c->control_type == while_stepping_control) |
1050 | { | |
1051 | if (b->type == bp_fast_tracepoint) | |
3e43a32a MS |
1052 | error (_("The 'while-stepping' command " |
1053 | "cannot be used for fast tracepoint")); | |
0fb4aa4b | 1054 | else if (b->type == bp_static_tracepoint) |
3e43a32a MS |
1055 | error (_("The 'while-stepping' command " |
1056 | "cannot be used for static tracepoint")); | |
a7bdde9e VP |
1057 | |
1058 | if (while_stepping) | |
3e43a32a MS |
1059 | error (_("The 'while-stepping' command " |
1060 | "can be used only once")); | |
a7bdde9e VP |
1061 | else |
1062 | while_stepping = c; | |
1063 | } | |
1064 | } | |
1065 | if (while_stepping) | |
1066 | { | |
1067 | struct command_line *c2; | |
1068 | ||
1069 | gdb_assert (while_stepping->body_count == 1); | |
1070 | c2 = while_stepping->body_list[0]; | |
1071 | for (; c2; c2 = c2->next) | |
1072 | { | |
a7bdde9e VP |
1073 | if (c2->control_type == while_stepping_control) |
1074 | error (_("The 'while-stepping' command cannot be nested")); | |
1075 | } | |
1076 | } | |
1077 | } | |
1078 | else | |
1079 | { | |
1080 | check_no_tracepoint_commands (commands); | |
1081 | } | |
95a42b64 TT |
1082 | } |
1083 | ||
0fb4aa4b PA |
1084 | /* Return a vector of all the static tracepoints set at ADDR. The |
1085 | caller is responsible for releasing the vector. */ | |
1086 | ||
1087 | VEC(breakpoint_p) * | |
1088 | static_tracepoints_here (CORE_ADDR addr) | |
1089 | { | |
1090 | struct breakpoint *b; | |
1091 | VEC(breakpoint_p) *found = 0; | |
1092 | struct bp_location *loc; | |
1093 | ||
1094 | ALL_BREAKPOINTS (b) | |
1095 | if (b->type == bp_static_tracepoint) | |
1096 | { | |
1097 | for (loc = b->loc; loc; loc = loc->next) | |
1098 | if (loc->address == addr) | |
1099 | VEC_safe_push(breakpoint_p, found, b); | |
1100 | } | |
1101 | ||
1102 | return found; | |
1103 | } | |
1104 | ||
95a42b64 | 1105 | /* Set the command list of B to COMMANDS. If breakpoint is tracepoint, |
4a64f543 | 1106 | validate that only allowed commands are included. */ |
95a42b64 TT |
1107 | |
1108 | void | |
4a64f543 MS |
1109 | breakpoint_set_commands (struct breakpoint *b, |
1110 | struct command_line *commands) | |
95a42b64 TT |
1111 | { |
1112 | validate_commands_for_breakpoint (b, commands); | |
a7bdde9e | 1113 | |
9add0f1b TT |
1114 | decref_counted_command_line (&b->commands); |
1115 | b->commands = alloc_counted_command_line (commands); | |
48cb2d85 | 1116 | breakpoints_changed (); |
8d3788bd | 1117 | observer_notify_breakpoint_modified (b); |
48cb2d85 VP |
1118 | } |
1119 | ||
45a43567 TT |
1120 | /* Set the internal `silent' flag on the breakpoint. Note that this |
1121 | is not the same as the "silent" that may appear in the breakpoint's | |
1122 | commands. */ | |
1123 | ||
1124 | void | |
1125 | breakpoint_set_silent (struct breakpoint *b, int silent) | |
1126 | { | |
1127 | int old_silent = b->silent; | |
1128 | ||
1129 | b->silent = silent; | |
1130 | if (old_silent != silent) | |
8d3788bd | 1131 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1132 | } |
1133 | ||
1134 | /* Set the thread for this breakpoint. If THREAD is -1, make the | |
1135 | breakpoint work for any thread. */ | |
1136 | ||
1137 | void | |
1138 | breakpoint_set_thread (struct breakpoint *b, int thread) | |
1139 | { | |
1140 | int old_thread = b->thread; | |
1141 | ||
1142 | b->thread = thread; | |
1143 | if (old_thread != thread) | |
8d3788bd | 1144 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1145 | } |
1146 | ||
1147 | /* Set the task for this breakpoint. If TASK is 0, make the | |
1148 | breakpoint work for any task. */ | |
1149 | ||
1150 | void | |
1151 | breakpoint_set_task (struct breakpoint *b, int task) | |
1152 | { | |
1153 | int old_task = b->task; | |
1154 | ||
1155 | b->task = task; | |
1156 | if (old_task != task) | |
8d3788bd | 1157 | observer_notify_breakpoint_modified (b); |
45a43567 TT |
1158 | } |
1159 | ||
95a42b64 TT |
1160 | void |
1161 | check_tracepoint_command (char *line, void *closure) | |
a7bdde9e VP |
1162 | { |
1163 | struct breakpoint *b = closure; | |
cc59ec59 | 1164 | |
a7bdde9e VP |
1165 | validate_actionline (&line, b); |
1166 | } | |
1167 | ||
95a42b64 TT |
1168 | /* A structure used to pass information through |
1169 | map_breakpoint_numbers. */ | |
1170 | ||
1171 | struct commands_info | |
1172 | { | |
1173 | /* True if the command was typed at a tty. */ | |
1174 | int from_tty; | |
86b17b60 PA |
1175 | |
1176 | /* The breakpoint range spec. */ | |
1177 | char *arg; | |
1178 | ||
95a42b64 TT |
1179 | /* Non-NULL if the body of the commands are being read from this |
1180 | already-parsed command. */ | |
1181 | struct command_line *control; | |
86b17b60 | 1182 | |
95a42b64 TT |
1183 | /* The command lines read from the user, or NULL if they have not |
1184 | yet been read. */ | |
1185 | struct counted_command_line *cmd; | |
1186 | }; | |
1187 | ||
1188 | /* A callback for map_breakpoint_numbers that sets the commands for | |
1189 | commands_command. */ | |
1190 | ||
c906108c | 1191 | static void |
95a42b64 | 1192 | do_map_commands_command (struct breakpoint *b, void *data) |
c906108c | 1193 | { |
95a42b64 | 1194 | struct commands_info *info = data; |
c906108c | 1195 | |
95a42b64 TT |
1196 | if (info->cmd == NULL) |
1197 | { | |
1198 | struct command_line *l; | |
5c44784c | 1199 | |
95a42b64 TT |
1200 | if (info->control != NULL) |
1201 | l = copy_command_lines (info->control->body_list[0]); | |
1202 | else | |
86b17b60 PA |
1203 | { |
1204 | struct cleanup *old_chain; | |
1205 | char *str; | |
c5aa993b | 1206 | |
3e43a32a MS |
1207 | str = xstrprintf (_("Type commands for breakpoint(s) " |
1208 | "%s, one per line."), | |
86b17b60 PA |
1209 | info->arg); |
1210 | ||
1211 | old_chain = make_cleanup (xfree, str); | |
1212 | ||
1213 | l = read_command_lines (str, | |
1214 | info->from_tty, 1, | |
d77f58be | 1215 | (is_tracepoint (b) |
86b17b60 PA |
1216 | ? check_tracepoint_command : 0), |
1217 | b); | |
1218 | ||
1219 | do_cleanups (old_chain); | |
1220 | } | |
a7bdde9e | 1221 | |
95a42b64 TT |
1222 | info->cmd = alloc_counted_command_line (l); |
1223 | } | |
1224 | ||
1225 | /* If a breakpoint was on the list more than once, we don't need to | |
1226 | do anything. */ | |
1227 | if (b->commands != info->cmd) | |
1228 | { | |
1229 | validate_commands_for_breakpoint (b, info->cmd->commands); | |
1230 | incref_counted_command_line (info->cmd); | |
1231 | decref_counted_command_line (&b->commands); | |
1232 | b->commands = info->cmd; | |
1233 | breakpoints_changed (); | |
8d3788bd | 1234 | observer_notify_breakpoint_modified (b); |
c5aa993b | 1235 | } |
95a42b64 TT |
1236 | } |
1237 | ||
1238 | static void | |
4a64f543 MS |
1239 | commands_command_1 (char *arg, int from_tty, |
1240 | struct command_line *control) | |
95a42b64 TT |
1241 | { |
1242 | struct cleanup *cleanups; | |
1243 | struct commands_info info; | |
1244 | ||
1245 | info.from_tty = from_tty; | |
1246 | info.control = control; | |
1247 | info.cmd = NULL; | |
1248 | /* If we read command lines from the user, then `info' will hold an | |
1249 | extra reference to the commands that we must clean up. */ | |
1250 | cleanups = make_cleanup_decref_counted_command_line (&info.cmd); | |
1251 | ||
1252 | if (arg == NULL || !*arg) | |
1253 | { | |
86b17b60 | 1254 | if (breakpoint_count - prev_breakpoint_count > 1) |
4a64f543 MS |
1255 | arg = xstrprintf ("%d-%d", prev_breakpoint_count + 1, |
1256 | breakpoint_count); | |
95a42b64 TT |
1257 | else if (breakpoint_count > 0) |
1258 | arg = xstrprintf ("%d", breakpoint_count); | |
86b17b60 PA |
1259 | else |
1260 | { | |
1261 | /* So that we don't try to free the incoming non-NULL | |
1262 | argument in the cleanup below. Mapping breakpoint | |
1263 | numbers will fail in this case. */ | |
1264 | arg = NULL; | |
1265 | } | |
95a42b64 | 1266 | } |
9766ced4 SS |
1267 | else |
1268 | /* The command loop has some static state, so we need to preserve | |
1269 | our argument. */ | |
1270 | arg = xstrdup (arg); | |
86b17b60 PA |
1271 | |
1272 | if (arg != NULL) | |
1273 | make_cleanup (xfree, arg); | |
1274 | ||
1275 | info.arg = arg; | |
95a42b64 TT |
1276 | |
1277 | map_breakpoint_numbers (arg, do_map_commands_command, &info); | |
1278 | ||
1279 | if (info.cmd == NULL) | |
1280 | error (_("No breakpoints specified.")); | |
1281 | ||
1282 | do_cleanups (cleanups); | |
1283 | } | |
1284 | ||
1285 | static void | |
1286 | commands_command (char *arg, int from_tty) | |
1287 | { | |
1288 | commands_command_1 (arg, from_tty, NULL); | |
c906108c | 1289 | } |
40c03ae8 EZ |
1290 | |
1291 | /* Like commands_command, but instead of reading the commands from | |
1292 | input stream, takes them from an already parsed command structure. | |
1293 | ||
1294 | This is used by cli-script.c to DTRT with breakpoint commands | |
1295 | that are part of if and while bodies. */ | |
1296 | enum command_control_type | |
1297 | commands_from_control_command (char *arg, struct command_line *cmd) | |
1298 | { | |
95a42b64 TT |
1299 | commands_command_1 (arg, 0, cmd); |
1300 | return simple_control; | |
40c03ae8 | 1301 | } |
876fa593 JK |
1302 | |
1303 | /* Return non-zero if BL->TARGET_INFO contains valid information. */ | |
1304 | ||
1305 | static int | |
1306 | bp_location_has_shadow (struct bp_location *bl) | |
1307 | { | |
1308 | if (bl->loc_type != bp_loc_software_breakpoint) | |
1309 | return 0; | |
1310 | if (!bl->inserted) | |
1311 | return 0; | |
1312 | if (bl->target_info.shadow_len == 0) | |
e5dd4106 | 1313 | /* BL isn't valid, or doesn't shadow memory. */ |
876fa593 JK |
1314 | return 0; |
1315 | return 1; | |
1316 | } | |
1317 | ||
8defab1a | 1318 | /* Update BUF, which is LEN bytes read from the target address MEMADDR, |
876fa593 JK |
1319 | by replacing any memory breakpoints with their shadowed contents. |
1320 | ||
35c63cd8 JB |
1321 | If READBUF is not NULL, this buffer must not overlap with any of |
1322 | the breakpoint location's shadow_contents buffers. Otherwise, | |
1323 | a failed assertion internal error will be raised. | |
1324 | ||
876fa593 | 1325 | The range of shadowed area by each bp_location is: |
35df4500 TJB |
1326 | bl->address - bp_location_placed_address_before_address_max |
1327 | up to bl->address + bp_location_shadow_len_after_address_max | |
876fa593 JK |
1328 | The range we were requested to resolve shadows for is: |
1329 | memaddr ... memaddr + len | |
1330 | Thus the safe cutoff boundaries for performance optimization are | |
35df4500 TJB |
1331 | memaddr + len <= (bl->address |
1332 | - bp_location_placed_address_before_address_max) | |
876fa593 | 1333 | and: |
35df4500 | 1334 | bl->address + bp_location_shadow_len_after_address_max <= memaddr */ |
c906108c | 1335 | |
8defab1a | 1336 | void |
f0ba3972 PA |
1337 | breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf, |
1338 | const gdb_byte *writebuf_org, | |
1339 | ULONGEST memaddr, LONGEST len) | |
c906108c | 1340 | { |
4a64f543 MS |
1341 | /* Left boundary, right boundary and median element of our binary |
1342 | search. */ | |
876fa593 JK |
1343 | unsigned bc_l, bc_r, bc; |
1344 | ||
4a64f543 MS |
1345 | /* Find BC_L which is a leftmost element which may affect BUF |
1346 | content. It is safe to report lower value but a failure to | |
1347 | report higher one. */ | |
876fa593 JK |
1348 | |
1349 | bc_l = 0; | |
1350 | bc_r = bp_location_count; | |
1351 | while (bc_l + 1 < bc_r) | |
1352 | { | |
35df4500 | 1353 | struct bp_location *bl; |
876fa593 JK |
1354 | |
1355 | bc = (bc_l + bc_r) / 2; | |
35df4500 | 1356 | bl = bp_location[bc]; |
876fa593 | 1357 | |
4a64f543 MS |
1358 | /* Check first BL->ADDRESS will not overflow due to the added |
1359 | constant. Then advance the left boundary only if we are sure | |
1360 | the BC element can in no way affect the BUF content (MEMADDR | |
1361 | to MEMADDR + LEN range). | |
876fa593 | 1362 | |
4a64f543 MS |
1363 | Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety |
1364 | offset so that we cannot miss a breakpoint with its shadow | |
1365 | range tail still reaching MEMADDR. */ | |
c5aa993b | 1366 | |
35df4500 TJB |
1367 | if ((bl->address + bp_location_shadow_len_after_address_max |
1368 | >= bl->address) | |
1369 | && (bl->address + bp_location_shadow_len_after_address_max | |
1370 | <= memaddr)) | |
876fa593 JK |
1371 | bc_l = bc; |
1372 | else | |
1373 | bc_r = bc; | |
1374 | } | |
1375 | ||
128070bb PA |
1376 | /* Due to the binary search above, we need to make sure we pick the |
1377 | first location that's at BC_L's address. E.g., if there are | |
1378 | multiple locations at the same address, BC_L may end up pointing | |
1379 | at a duplicate location, and miss the "master"/"inserted" | |
1380 | location. Say, given locations L1, L2 and L3 at addresses A and | |
1381 | B: | |
1382 | ||
1383 | L1@A, L2@A, L3@B, ... | |
1384 | ||
1385 | BC_L could end up pointing at location L2, while the "master" | |
1386 | location could be L1. Since the `loc->inserted' flag is only set | |
1387 | on "master" locations, we'd forget to restore the shadow of L1 | |
1388 | and L2. */ | |
1389 | while (bc_l > 0 | |
1390 | && bp_location[bc_l]->address == bp_location[bc_l - 1]->address) | |
1391 | bc_l--; | |
1392 | ||
876fa593 JK |
1393 | /* Now do full processing of the found relevant range of elements. */ |
1394 | ||
1395 | for (bc = bc_l; bc < bp_location_count; bc++) | |
c5aa993b | 1396 | { |
35df4500 | 1397 | struct bp_location *bl = bp_location[bc]; |
876fa593 JK |
1398 | CORE_ADDR bp_addr = 0; |
1399 | int bp_size = 0; | |
1400 | int bptoffset = 0; | |
1401 | ||
35df4500 TJB |
1402 | /* bp_location array has BL->OWNER always non-NULL. */ |
1403 | if (bl->owner->type == bp_none) | |
8a3fe4f8 | 1404 | warning (_("reading through apparently deleted breakpoint #%d?"), |
35df4500 | 1405 | bl->owner->number); |
ffce0d52 | 1406 | |
e5dd4106 | 1407 | /* Performance optimization: any further element can no longer affect BUF |
876fa593 JK |
1408 | content. */ |
1409 | ||
35df4500 TJB |
1410 | if (bl->address >= bp_location_placed_address_before_address_max |
1411 | && memaddr + len <= (bl->address | |
1412 | - bp_location_placed_address_before_address_max)) | |
876fa593 JK |
1413 | break; |
1414 | ||
35df4500 | 1415 | if (!bp_location_has_shadow (bl)) |
c5aa993b | 1416 | continue; |
35df4500 | 1417 | if (!breakpoint_address_match (bl->target_info.placed_address_space, 0, |
6c95b8df PA |
1418 | current_program_space->aspace, 0)) |
1419 | continue; | |
1420 | ||
c5aa993b JM |
1421 | /* Addresses and length of the part of the breakpoint that |
1422 | we need to copy. */ | |
35df4500 TJB |
1423 | bp_addr = bl->target_info.placed_address; |
1424 | bp_size = bl->target_info.shadow_len; | |
8defab1a | 1425 | |
c5aa993b JM |
1426 | if (bp_addr + bp_size <= memaddr) |
1427 | /* The breakpoint is entirely before the chunk of memory we | |
1428 | are reading. */ | |
1429 | continue; | |
8defab1a | 1430 | |
c5aa993b JM |
1431 | if (bp_addr >= memaddr + len) |
1432 | /* The breakpoint is entirely after the chunk of memory we are | |
4a64f543 | 1433 | reading. */ |
c5aa993b | 1434 | continue; |
c5aa993b | 1435 | |
8defab1a DJ |
1436 | /* Offset within shadow_contents. */ |
1437 | if (bp_addr < memaddr) | |
1438 | { | |
1439 | /* Only copy the second part of the breakpoint. */ | |
1440 | bp_size -= memaddr - bp_addr; | |
1441 | bptoffset = memaddr - bp_addr; | |
1442 | bp_addr = memaddr; | |
1443 | } | |
c5aa993b | 1444 | |
8defab1a DJ |
1445 | if (bp_addr + bp_size > memaddr + len) |
1446 | { | |
1447 | /* Only copy the first part of the breakpoint. */ | |
1448 | bp_size -= (bp_addr + bp_size) - (memaddr + len); | |
1449 | } | |
c5aa993b | 1450 | |
f0ba3972 PA |
1451 | if (readbuf != NULL) |
1452 | { | |
35c63cd8 JB |
1453 | /* Verify that the readbuf buffer does not overlap with |
1454 | the shadow_contents buffer. */ | |
1455 | gdb_assert (bl->target_info.shadow_contents >= readbuf + len | |
1456 | || readbuf >= (bl->target_info.shadow_contents | |
1457 | + bl->target_info.shadow_len)); | |
1458 | ||
f0ba3972 PA |
1459 | /* Update the read buffer with this inserted breakpoint's |
1460 | shadow. */ | |
1461 | memcpy (readbuf + bp_addr - memaddr, | |
1462 | bl->target_info.shadow_contents + bptoffset, bp_size); | |
1463 | } | |
1464 | else | |
1465 | { | |
1466 | struct gdbarch *gdbarch = bl->gdbarch; | |
1467 | const unsigned char *bp; | |
1468 | CORE_ADDR placed_address = bl->target_info.placed_address; | |
1469 | unsigned placed_size = bl->target_info.placed_size; | |
1470 | ||
1471 | /* Update the shadow with what we want to write to memory. */ | |
1472 | memcpy (bl->target_info.shadow_contents + bptoffset, | |
1473 | writebuf_org + bp_addr - memaddr, bp_size); | |
1474 | ||
1475 | /* Determine appropriate breakpoint contents and size for this | |
1476 | address. */ | |
1477 | bp = gdbarch_breakpoint_from_pc (gdbarch, &placed_address, &placed_size); | |
1478 | ||
1479 | /* Update the final write buffer with this inserted | |
1480 | breakpoint's INSN. */ | |
1481 | memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size); | |
1482 | } | |
c5aa993b | 1483 | } |
c906108c | 1484 | } |
c906108c | 1485 | \f |
c5aa993b | 1486 | |
b775012e LM |
1487 | /* Return true if BPT is either a software breakpoint or a hardware |
1488 | breakpoint. */ | |
1489 | ||
1490 | int | |
1491 | is_breakpoint (const struct breakpoint *bpt) | |
1492 | { | |
1493 | return (bpt->type == bp_breakpoint | |
1494 | || bpt->type == bp_hardware_breakpoint); | |
1495 | } | |
1496 | ||
60e1c644 PA |
1497 | /* Return true if BPT is of any hardware watchpoint kind. */ |
1498 | ||
a5606eee | 1499 | static int |
d77f58be | 1500 | is_hardware_watchpoint (const struct breakpoint *bpt) |
a5606eee VP |
1501 | { |
1502 | return (bpt->type == bp_hardware_watchpoint | |
1503 | || bpt->type == bp_read_watchpoint | |
1504 | || bpt->type == bp_access_watchpoint); | |
1505 | } | |
7270d8f2 | 1506 | |
60e1c644 PA |
1507 | /* Return true if BPT is of any watchpoint kind, hardware or |
1508 | software. */ | |
1509 | ||
3a5c3e22 | 1510 | int |
d77f58be | 1511 | is_watchpoint (const struct breakpoint *bpt) |
60e1c644 PA |
1512 | { |
1513 | return (is_hardware_watchpoint (bpt) | |
1514 | || bpt->type == bp_watchpoint); | |
1515 | } | |
1516 | ||
3a5c3e22 PA |
1517 | /* Returns true if the current thread and its running state are safe |
1518 | to evaluate or update watchpoint B. Watchpoints on local | |
1519 | expressions need to be evaluated in the context of the thread that | |
1520 | was current when the watchpoint was created, and, that thread needs | |
1521 | to be stopped to be able to select the correct frame context. | |
1522 | Watchpoints on global expressions can be evaluated on any thread, | |
1523 | and in any state. It is presently left to the target allowing | |
1524 | memory accesses when threads are running. */ | |
f6bc2008 PA |
1525 | |
1526 | static int | |
3a5c3e22 | 1527 | watchpoint_in_thread_scope (struct watchpoint *b) |
f6bc2008 | 1528 | { |
d0d8b0c6 JK |
1529 | return (b->base.pspace == current_program_space |
1530 | && (ptid_equal (b->watchpoint_thread, null_ptid) | |
1531 | || (ptid_equal (inferior_ptid, b->watchpoint_thread) | |
1532 | && !is_executing (inferior_ptid)))); | |
f6bc2008 PA |
1533 | } |
1534 | ||
d0fb5eae JK |
1535 | /* Set watchpoint B to disp_del_at_next_stop, even including its possible |
1536 | associated bp_watchpoint_scope breakpoint. */ | |
1537 | ||
1538 | static void | |
3a5c3e22 | 1539 | watchpoint_del_at_next_stop (struct watchpoint *w) |
d0fb5eae | 1540 | { |
3a5c3e22 | 1541 | struct breakpoint *b = &w->base; |
d0fb5eae JK |
1542 | |
1543 | if (b->related_breakpoint != b) | |
1544 | { | |
1545 | gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope); | |
1546 | gdb_assert (b->related_breakpoint->related_breakpoint == b); | |
1547 | b->related_breakpoint->disposition = disp_del_at_next_stop; | |
1548 | b->related_breakpoint->related_breakpoint = b->related_breakpoint; | |
1549 | b->related_breakpoint = b; | |
1550 | } | |
1551 | b->disposition = disp_del_at_next_stop; | |
1552 | } | |
1553 | ||
567e1b4e JB |
1554 | /* Assuming that B is a watchpoint: |
1555 | - Reparse watchpoint expression, if REPARSE is non-zero | |
a5606eee | 1556 | - Evaluate expression and store the result in B->val |
567e1b4e JB |
1557 | - Evaluate the condition if there is one, and store the result |
1558 | in b->loc->cond. | |
a5606eee VP |
1559 | - Update the list of values that must be watched in B->loc. |
1560 | ||
4a64f543 MS |
1561 | If the watchpoint disposition is disp_del_at_next_stop, then do |
1562 | nothing. If this is local watchpoint that is out of scope, delete | |
1563 | it. | |
1564 | ||
1565 | Even with `set breakpoint always-inserted on' the watchpoints are | |
1566 | removed + inserted on each stop here. Normal breakpoints must | |
1567 | never be removed because they might be missed by a running thread | |
1568 | when debugging in non-stop mode. On the other hand, hardware | |
1569 | watchpoints (is_hardware_watchpoint; processed here) are specific | |
1570 | to each LWP since they are stored in each LWP's hardware debug | |
1571 | registers. Therefore, such LWP must be stopped first in order to | |
1572 | be able to modify its hardware watchpoints. | |
1573 | ||
1574 | Hardware watchpoints must be reset exactly once after being | |
1575 | presented to the user. It cannot be done sooner, because it would | |
1576 | reset the data used to present the watchpoint hit to the user. And | |
1577 | it must not be done later because it could display the same single | |
1578 | watchpoint hit during multiple GDB stops. Note that the latter is | |
1579 | relevant only to the hardware watchpoint types bp_read_watchpoint | |
1580 | and bp_access_watchpoint. False hit by bp_hardware_watchpoint is | |
1581 | not user-visible - its hit is suppressed if the memory content has | |
1582 | not changed. | |
1583 | ||
1584 | The following constraints influence the location where we can reset | |
1585 | hardware watchpoints: | |
1586 | ||
1587 | * target_stopped_by_watchpoint and target_stopped_data_address are | |
1588 | called several times when GDB stops. | |
1589 | ||
1590 | [linux] | |
1591 | * Multiple hardware watchpoints can be hit at the same time, | |
1592 | causing GDB to stop. GDB only presents one hardware watchpoint | |
1593 | hit at a time as the reason for stopping, and all the other hits | |
1594 | are presented later, one after the other, each time the user | |
1595 | requests the execution to be resumed. Execution is not resumed | |
1596 | for the threads still having pending hit event stored in | |
1597 | LWP_INFO->STATUS. While the watchpoint is already removed from | |
1598 | the inferior on the first stop the thread hit event is kept being | |
1599 | reported from its cached value by linux_nat_stopped_data_address | |
1600 | until the real thread resume happens after the watchpoint gets | |
1601 | presented and thus its LWP_INFO->STATUS gets reset. | |
1602 | ||
1603 | Therefore the hardware watchpoint hit can get safely reset on the | |
1604 | watchpoint removal from inferior. */ | |
a79d3c27 | 1605 | |
b40ce68a | 1606 | static void |
3a5c3e22 | 1607 | update_watchpoint (struct watchpoint *b, int reparse) |
7270d8f2 | 1608 | { |
a5606eee | 1609 | int within_current_scope; |
a5606eee | 1610 | struct frame_id saved_frame_id; |
66076460 | 1611 | int frame_saved; |
a5606eee | 1612 | |
f6bc2008 PA |
1613 | /* If this is a local watchpoint, we only want to check if the |
1614 | watchpoint frame is in scope if the current thread is the thread | |
1615 | that was used to create the watchpoint. */ | |
1616 | if (!watchpoint_in_thread_scope (b)) | |
1617 | return; | |
1618 | ||
3a5c3e22 | 1619 | if (b->base.disposition == disp_del_at_next_stop) |
a5606eee VP |
1620 | return; |
1621 | ||
66076460 | 1622 | frame_saved = 0; |
a5606eee VP |
1623 | |
1624 | /* Determine if the watchpoint is within scope. */ | |
1625 | if (b->exp_valid_block == NULL) | |
1626 | within_current_scope = 1; | |
1627 | else | |
1628 | { | |
b5db5dfc UW |
1629 | struct frame_info *fi = get_current_frame (); |
1630 | struct gdbarch *frame_arch = get_frame_arch (fi); | |
1631 | CORE_ADDR frame_pc = get_frame_pc (fi); | |
1632 | ||
1633 | /* If we're in a function epilogue, unwinding may not work | |
1634 | properly, so do not attempt to recreate locations at this | |
1635 | point. See similar comments in watchpoint_check. */ | |
1636 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) | |
1637 | return; | |
66076460 DJ |
1638 | |
1639 | /* Save the current frame's ID so we can restore it after | |
1640 | evaluating the watchpoint expression on its own frame. */ | |
1641 | /* FIXME drow/2003-09-09: It would be nice if evaluate_expression | |
1642 | took a frame parameter, so that we didn't have to change the | |
1643 | selected frame. */ | |
1644 | frame_saved = 1; | |
1645 | saved_frame_id = get_frame_id (get_selected_frame (NULL)); | |
1646 | ||
a5606eee VP |
1647 | fi = frame_find_by_id (b->watchpoint_frame); |
1648 | within_current_scope = (fi != NULL); | |
1649 | if (within_current_scope) | |
1650 | select_frame (fi); | |
1651 | } | |
1652 | ||
b5db5dfc UW |
1653 | /* We don't free locations. They are stored in the bp_location array |
1654 | and update_global_location_list will eventually delete them and | |
1655 | remove breakpoints if needed. */ | |
3a5c3e22 | 1656 | b->base.loc = NULL; |
b5db5dfc | 1657 | |
a5606eee VP |
1658 | if (within_current_scope && reparse) |
1659 | { | |
1660 | char *s; | |
d63d0675 | 1661 | |
a5606eee VP |
1662 | if (b->exp) |
1663 | { | |
1664 | xfree (b->exp); | |
1665 | b->exp = NULL; | |
1666 | } | |
d63d0675 | 1667 | s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string; |
a5606eee VP |
1668 | b->exp = parse_exp_1 (&s, b->exp_valid_block, 0); |
1669 | /* If the meaning of expression itself changed, the old value is | |
1670 | no longer relevant. We don't want to report a watchpoint hit | |
1671 | to the user when the old value and the new value may actually | |
1672 | be completely different objects. */ | |
1673 | value_free (b->val); | |
fa4727a6 DJ |
1674 | b->val = NULL; |
1675 | b->val_valid = 0; | |
60e1c644 PA |
1676 | |
1677 | /* Note that unlike with breakpoints, the watchpoint's condition | |
1678 | expression is stored in the breakpoint object, not in the | |
1679 | locations (re)created below. */ | |
3a5c3e22 | 1680 | if (b->base.cond_string != NULL) |
60e1c644 PA |
1681 | { |
1682 | if (b->cond_exp != NULL) | |
1683 | { | |
1684 | xfree (b->cond_exp); | |
1685 | b->cond_exp = NULL; | |
1686 | } | |
1687 | ||
3a5c3e22 | 1688 | s = b->base.cond_string; |
60e1c644 PA |
1689 | b->cond_exp = parse_exp_1 (&s, b->cond_exp_valid_block, 0); |
1690 | } | |
a5606eee | 1691 | } |
a5606eee VP |
1692 | |
1693 | /* If we failed to parse the expression, for example because | |
1694 | it refers to a global variable in a not-yet-loaded shared library, | |
1695 | don't try to insert watchpoint. We don't automatically delete | |
1696 | such watchpoint, though, since failure to parse expression | |
1697 | is different from out-of-scope watchpoint. */ | |
2d134ed3 PA |
1698 | if ( !target_has_execution) |
1699 | { | |
1700 | /* Without execution, memory can't change. No use to try and | |
1701 | set watchpoint locations. The watchpoint will be reset when | |
1702 | the target gains execution, through breakpoint_re_set. */ | |
1703 | } | |
1704 | else if (within_current_scope && b->exp) | |
a5606eee | 1705 | { |
0cf6dd15 | 1706 | int pc = 0; |
fa4727a6 | 1707 | struct value *val_chain, *v, *result, *next; |
2d134ed3 | 1708 | struct program_space *frame_pspace; |
a5606eee | 1709 | |
0cf6dd15 | 1710 | fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain); |
a5606eee | 1711 | |
a5606eee VP |
1712 | /* Avoid setting b->val if it's already set. The meaning of |
1713 | b->val is 'the last value' user saw, and we should update | |
1714 | it only if we reported that last value to user. As it | |
9c06b0b4 TJB |
1715 | happens, the code that reports it updates b->val directly. |
1716 | We don't keep track of the memory value for masked | |
1717 | watchpoints. */ | |
3a5c3e22 | 1718 | if (!b->val_valid && !is_masked_watchpoint (&b->base)) |
fa4727a6 DJ |
1719 | { |
1720 | b->val = v; | |
1721 | b->val_valid = 1; | |
1722 | } | |
a5606eee | 1723 | |
2d134ed3 PA |
1724 | frame_pspace = get_frame_program_space (get_selected_frame (NULL)); |
1725 | ||
a5606eee | 1726 | /* Look at each value on the value chain. */ |
9fa40276 | 1727 | for (v = val_chain; v; v = value_next (v)) |
a5606eee VP |
1728 | { |
1729 | /* If it's a memory location, and GDB actually needed | |
1730 | its contents to evaluate the expression, then we | |
fa4727a6 DJ |
1731 | must watch it. If the first value returned is |
1732 | still lazy, that means an error occurred reading it; | |
1733 | watch it anyway in case it becomes readable. */ | |
a5606eee | 1734 | if (VALUE_LVAL (v) == lval_memory |
fa4727a6 | 1735 | && (v == val_chain || ! value_lazy (v))) |
a5606eee VP |
1736 | { |
1737 | struct type *vtype = check_typedef (value_type (v)); | |
7270d8f2 | 1738 | |
a5606eee VP |
1739 | /* We only watch structs and arrays if user asked |
1740 | for it explicitly, never if they just happen to | |
1741 | appear in the middle of some value chain. */ | |
fa4727a6 | 1742 | if (v == result |
a5606eee VP |
1743 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT |
1744 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
1745 | { | |
1746 | CORE_ADDR addr; | |
1747 | int len, type; | |
1748 | struct bp_location *loc, **tmp; | |
1749 | ||
42ae5230 | 1750 | addr = value_address (v); |
a5606eee VP |
1751 | len = TYPE_LENGTH (value_type (v)); |
1752 | type = hw_write; | |
3a5c3e22 | 1753 | if (b->base.type == bp_read_watchpoint) |
a5606eee | 1754 | type = hw_read; |
3a5c3e22 | 1755 | else if (b->base.type == bp_access_watchpoint) |
a5606eee | 1756 | type = hw_access; |
3a5c3e22 PA |
1757 | |
1758 | loc = allocate_bp_location (&b->base); | |
1759 | for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next)) | |
a5606eee VP |
1760 | ; |
1761 | *tmp = loc; | |
a6d9a66e | 1762 | loc->gdbarch = get_type_arch (value_type (v)); |
6c95b8df PA |
1763 | |
1764 | loc->pspace = frame_pspace; | |
a5606eee VP |
1765 | loc->address = addr; |
1766 | loc->length = len; | |
1767 | loc->watchpoint_type = type; | |
1768 | } | |
1769 | } | |
9fa40276 TJB |
1770 | } |
1771 | ||
1772 | /* Change the type of breakpoint between hardware assisted or | |
1773 | an ordinary watchpoint depending on the hardware support | |
1774 | and free hardware slots. REPARSE is set when the inferior | |
1775 | is started. */ | |
a9634178 | 1776 | if (reparse) |
9fa40276 | 1777 | { |
e09342b5 | 1778 | int reg_cnt; |
9fa40276 TJB |
1779 | enum bp_loc_type loc_type; |
1780 | struct bp_location *bl; | |
a5606eee | 1781 | |
a9634178 | 1782 | reg_cnt = can_use_hardware_watchpoint (val_chain); |
e09342b5 TJB |
1783 | |
1784 | if (reg_cnt) | |
9fa40276 TJB |
1785 | { |
1786 | int i, target_resources_ok, other_type_used; | |
a1398e0c | 1787 | enum bptype type; |
9fa40276 | 1788 | |
a9634178 TJB |
1789 | /* Use an exact watchpoint when there's only one memory region to be |
1790 | watched, and only one debug register is needed to watch it. */ | |
1791 | b->exact = target_exact_watchpoints && reg_cnt == 1; | |
1792 | ||
9fa40276 | 1793 | /* We need to determine how many resources are already |
e09342b5 TJB |
1794 | used for all other hardware watchpoints plus this one |
1795 | to see if we still have enough resources to also fit | |
a1398e0c PA |
1796 | this watchpoint in as well. */ |
1797 | ||
1798 | /* If this is a software watchpoint, we try to turn it | |
1799 | to a hardware one -- count resources as if B was of | |
1800 | hardware watchpoint type. */ | |
1801 | type = b->base.type; | |
1802 | if (type == bp_watchpoint) | |
1803 | type = bp_hardware_watchpoint; | |
1804 | ||
1805 | /* This watchpoint may or may not have been placed on | |
1806 | the list yet at this point (it won't be in the list | |
1807 | if we're trying to create it for the first time, | |
1808 | through watch_command), so always account for it | |
1809 | manually. */ | |
1810 | ||
1811 | /* Count resources used by all watchpoints except B. */ | |
1812 | i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used); | |
1813 | ||
1814 | /* Add in the resources needed for B. */ | |
1815 | i += hw_watchpoint_use_count (&b->base); | |
1816 | ||
1817 | target_resources_ok | |
1818 | = target_can_use_hardware_watchpoint (type, i, other_type_used); | |
e09342b5 | 1819 | if (target_resources_ok <= 0) |
a9634178 | 1820 | { |
3a5c3e22 | 1821 | int sw_mode = b->base.ops->works_in_software_mode (&b->base); |
9c06b0b4 TJB |
1822 | |
1823 | if (target_resources_ok == 0 && !sw_mode) | |
a9634178 TJB |
1824 | error (_("Target does not support this type of " |
1825 | "hardware watchpoint.")); | |
9c06b0b4 TJB |
1826 | else if (target_resources_ok < 0 && !sw_mode) |
1827 | error (_("There are not enough available hardware " | |
1828 | "resources for this watchpoint.")); | |
a1398e0c PA |
1829 | |
1830 | /* Downgrade to software watchpoint. */ | |
1831 | b->base.type = bp_watchpoint; | |
1832 | } | |
1833 | else | |
1834 | { | |
1835 | /* If this was a software watchpoint, we've just | |
1836 | found we have enough resources to turn it to a | |
1837 | hardware watchpoint. Otherwise, this is a | |
1838 | nop. */ | |
1839 | b->base.type = type; | |
a9634178 | 1840 | } |
9fa40276 | 1841 | } |
3a5c3e22 | 1842 | else if (!b->base.ops->works_in_software_mode (&b->base)) |
a9634178 TJB |
1843 | error (_("Expression cannot be implemented with " |
1844 | "read/access watchpoint.")); | |
9fa40276 | 1845 | else |
3a5c3e22 | 1846 | b->base.type = bp_watchpoint; |
9fa40276 | 1847 | |
3a5c3e22 | 1848 | loc_type = (b->base.type == bp_watchpoint? bp_loc_other |
9fa40276 | 1849 | : bp_loc_hardware_watchpoint); |
3a5c3e22 | 1850 | for (bl = b->base.loc; bl; bl = bl->next) |
9fa40276 TJB |
1851 | bl->loc_type = loc_type; |
1852 | } | |
1853 | ||
1854 | for (v = val_chain; v; v = next) | |
1855 | { | |
a5606eee VP |
1856 | next = value_next (v); |
1857 | if (v != b->val) | |
1858 | value_free (v); | |
1859 | } | |
1860 | ||
c7437ca6 PA |
1861 | /* If a software watchpoint is not watching any memory, then the |
1862 | above left it without any location set up. But, | |
1863 | bpstat_stop_status requires a location to be able to report | |
1864 | stops, so make sure there's at least a dummy one. */ | |
3a5c3e22 | 1865 | if (b->base.type == bp_watchpoint && b->base.loc == NULL) |
c7437ca6 | 1866 | { |
3a5c3e22 PA |
1867 | struct breakpoint *base = &b->base; |
1868 | base->loc = allocate_bp_location (base); | |
1869 | base->loc->pspace = frame_pspace; | |
1870 | base->loc->address = -1; | |
1871 | base->loc->length = -1; | |
1872 | base->loc->watchpoint_type = -1; | |
c7437ca6 | 1873 | } |
a5606eee VP |
1874 | } |
1875 | else if (!within_current_scope) | |
7270d8f2 | 1876 | { |
ac74f770 MS |
1877 | printf_filtered (_("\ |
1878 | Watchpoint %d deleted because the program has left the block\n\ | |
1879 | in which its expression is valid.\n"), | |
3a5c3e22 | 1880 | b->base.number); |
d0fb5eae | 1881 | watchpoint_del_at_next_stop (b); |
7270d8f2 | 1882 | } |
a5606eee VP |
1883 | |
1884 | /* Restore the selected frame. */ | |
66076460 DJ |
1885 | if (frame_saved) |
1886 | select_frame (frame_find_by_id (saved_frame_id)); | |
7270d8f2 OF |
1887 | } |
1888 | ||
a5606eee | 1889 | |
74960c60 | 1890 | /* Returns 1 iff breakpoint location should be |
1e4d1764 YQ |
1891 | inserted in the inferior. We don't differentiate the type of BL's owner |
1892 | (breakpoint vs. tracepoint), although insert_location in tracepoint's | |
1893 | breakpoint_ops is not defined, because in insert_bp_location, | |
1894 | tracepoint's insert_location will not be called. */ | |
74960c60 | 1895 | static int |
35df4500 | 1896 | should_be_inserted (struct bp_location *bl) |
74960c60 | 1897 | { |
35df4500 | 1898 | if (bl->owner == NULL || !breakpoint_enabled (bl->owner)) |
74960c60 VP |
1899 | return 0; |
1900 | ||
35df4500 | 1901 | if (bl->owner->disposition == disp_del_at_next_stop) |
74960c60 VP |
1902 | return 0; |
1903 | ||
35df4500 | 1904 | if (!bl->enabled || bl->shlib_disabled || bl->duplicate) |
74960c60 VP |
1905 | return 0; |
1906 | ||
f8eba3c6 TT |
1907 | if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup) |
1908 | return 0; | |
1909 | ||
56710373 PA |
1910 | /* This is set for example, when we're attached to the parent of a |
1911 | vfork, and have detached from the child. The child is running | |
1912 | free, and we expect it to do an exec or exit, at which point the | |
1913 | OS makes the parent schedulable again (and the target reports | |
1914 | that the vfork is done). Until the child is done with the shared | |
1915 | memory region, do not insert breakpoints in the parent, otherwise | |
1916 | the child could still trip on the parent's breakpoints. Since | |
1917 | the parent is blocked anyway, it won't miss any breakpoint. */ | |
35df4500 | 1918 | if (bl->pspace->breakpoints_not_allowed) |
56710373 PA |
1919 | return 0; |
1920 | ||
74960c60 VP |
1921 | return 1; |
1922 | } | |
1923 | ||
934709f0 PW |
1924 | /* Same as should_be_inserted but does the check assuming |
1925 | that the location is not duplicated. */ | |
1926 | ||
1927 | static int | |
1928 | unduplicated_should_be_inserted (struct bp_location *bl) | |
1929 | { | |
1930 | int result; | |
1931 | const int save_duplicate = bl->duplicate; | |
1932 | ||
1933 | bl->duplicate = 0; | |
1934 | result = should_be_inserted (bl); | |
1935 | bl->duplicate = save_duplicate; | |
1936 | return result; | |
1937 | } | |
1938 | ||
b775012e LM |
1939 | /* Parses a conditional described by an expression COND into an |
1940 | agent expression bytecode suitable for evaluation | |
1941 | by the bytecode interpreter. Return NULL if there was | |
1942 | any error during parsing. */ | |
1943 | ||
1944 | static struct agent_expr * | |
1945 | parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond) | |
1946 | { | |
1947 | struct agent_expr *aexpr = NULL; | |
1948 | struct cleanup *old_chain = NULL; | |
1949 | volatile struct gdb_exception ex; | |
1950 | ||
1951 | if (!cond) | |
1952 | return NULL; | |
1953 | ||
1954 | /* We don't want to stop processing, so catch any errors | |
1955 | that may show up. */ | |
1956 | TRY_CATCH (ex, RETURN_MASK_ERROR) | |
1957 | { | |
1958 | aexpr = gen_eval_for_expr (scope, cond); | |
1959 | } | |
1960 | ||
1961 | if (ex.reason < 0) | |
1962 | { | |
1963 | /* If we got here, it means the condition could not be parsed to a valid | |
1964 | bytecode expression and thus can't be evaluated on the target's side. | |
1965 | It's no use iterating through the conditions. */ | |
1966 | return NULL; | |
1967 | } | |
1968 | ||
1969 | /* We have a valid agent expression. */ | |
1970 | return aexpr; | |
1971 | } | |
1972 | ||
1973 | /* Based on location BL, create a list of breakpoint conditions to be | |
1974 | passed on to the target. If we have duplicated locations with different | |
1975 | conditions, we will add such conditions to the list. The idea is that the | |
1976 | target will evaluate the list of conditions and will only notify GDB when | |
1977 | one of them is true. */ | |
1978 | ||
1979 | static void | |
1980 | build_target_condition_list (struct bp_location *bl) | |
1981 | { | |
1982 | struct bp_location **locp = NULL, **loc2p; | |
1983 | int null_condition_or_parse_error = 0; | |
1984 | int modified = bl->needs_update; | |
1985 | struct bp_location *loc; | |
1986 | ||
1987 | /* This is only meaningful if the target is | |
1988 | evaluating conditions and if the user has | |
1989 | opted for condition evaluation on the target's | |
1990 | side. */ | |
1991 | if (gdb_evaluates_breakpoint_condition_p () | |
1992 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
1993 | return; | |
1994 | ||
1995 | /* Do a first pass to check for locations with no assigned | |
1996 | conditions or conditions that fail to parse to a valid agent expression | |
1997 | bytecode. If any of these happen, then it's no use to send conditions | |
1998 | to the target since this location will always trigger and generate a | |
1999 | response back to GDB. */ | |
2000 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2001 | { | |
2002 | loc = (*loc2p); | |
2003 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2004 | { | |
2005 | if (modified) | |
2006 | { | |
2007 | struct agent_expr *aexpr; | |
2008 | ||
2009 | /* Re-parse the conditions since something changed. In that | |
2010 | case we already freed the condition bytecodes (see | |
2011 | force_breakpoint_reinsertion). We just | |
2012 | need to parse the condition to bytecodes again. */ | |
2013 | aexpr = parse_cond_to_aexpr (bl->address, loc->cond); | |
2014 | loc->cond_bytecode = aexpr; | |
2015 | ||
2016 | /* Check if we managed to parse the conditional expression | |
2017 | correctly. If not, we will not send this condition | |
2018 | to the target. */ | |
2019 | if (aexpr) | |
2020 | continue; | |
2021 | } | |
2022 | ||
2023 | /* If we have a NULL bytecode expression, it means something | |
2024 | went wrong or we have a null condition expression. */ | |
2025 | if (!loc->cond_bytecode) | |
2026 | { | |
2027 | null_condition_or_parse_error = 1; | |
2028 | break; | |
2029 | } | |
2030 | } | |
2031 | } | |
2032 | ||
2033 | /* If any of these happened, it means we will have to evaluate the conditions | |
2034 | for the location's address on gdb's side. It is no use keeping bytecodes | |
2035 | for all the other duplicate locations, thus we free all of them here. | |
2036 | ||
2037 | This is so we have a finer control over which locations' conditions are | |
2038 | being evaluated by GDB or the remote stub. */ | |
2039 | if (null_condition_or_parse_error) | |
2040 | { | |
2041 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2042 | { | |
2043 | loc = (*loc2p); | |
2044 | if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num) | |
2045 | { | |
2046 | /* Only go as far as the first NULL bytecode is | |
2047 | located. */ | |
2048 | if (!loc->cond_bytecode) | |
2049 | return; | |
2050 | ||
2051 | free_agent_expr (loc->cond_bytecode); | |
2052 | loc->cond_bytecode = NULL; | |
2053 | } | |
2054 | } | |
2055 | } | |
2056 | ||
2057 | /* No NULL conditions or failed bytecode generation. Build a condition list | |
2058 | for this location's address. */ | |
2059 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address) | |
2060 | { | |
2061 | loc = (*loc2p); | |
2062 | if (loc->cond | |
2063 | && is_breakpoint (loc->owner) | |
2064 | && loc->pspace->num == bl->pspace->num | |
2065 | && loc->owner->enable_state == bp_enabled | |
2066 | && loc->enabled) | |
2067 | /* Add the condition to the vector. This will be used later to send the | |
2068 | conditions to the target. */ | |
2069 | VEC_safe_push (agent_expr_p, bl->target_info.conditions, | |
2070 | loc->cond_bytecode); | |
2071 | } | |
2072 | ||
2073 | return; | |
2074 | } | |
2075 | ||
35df4500 TJB |
2076 | /* Insert a low-level "breakpoint" of some type. BL is the breakpoint |
2077 | location. Any error messages are printed to TMP_ERROR_STREAM; and | |
3fbb6ffa | 2078 | DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems. |
c30eee59 TJB |
2079 | Returns 0 for success, 1 if the bp_location type is not supported or |
2080 | -1 for failure. | |
879bfdc2 | 2081 | |
4a64f543 MS |
2082 | NOTE drow/2003-09-09: This routine could be broken down to an |
2083 | object-style method for each breakpoint or catchpoint type. */ | |
26bb91f3 | 2084 | static int |
35df4500 | 2085 | insert_bp_location (struct bp_location *bl, |
26bb91f3 | 2086 | struct ui_file *tmp_error_stream, |
3fbb6ffa | 2087 | int *disabled_breaks, |
26bb91f3 | 2088 | int *hw_breakpoint_error) |
879bfdc2 DJ |
2089 | { |
2090 | int val = 0; | |
2091 | ||
b775012e | 2092 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2093 | return 0; |
2094 | ||
35c63cd8 JB |
2095 | /* Note we don't initialize bl->target_info, as that wipes out |
2096 | the breakpoint location's shadow_contents if the breakpoint | |
2097 | is still inserted at that location. This in turn breaks | |
2098 | target_read_memory which depends on these buffers when | |
2099 | a memory read is requested at the breakpoint location: | |
2100 | Once the target_info has been wiped, we fail to see that | |
2101 | we have a breakpoint inserted at that address and thus | |
2102 | read the breakpoint instead of returning the data saved in | |
2103 | the breakpoint location's shadow contents. */ | |
35df4500 TJB |
2104 | bl->target_info.placed_address = bl->address; |
2105 | bl->target_info.placed_address_space = bl->pspace->aspace; | |
f1310107 | 2106 | bl->target_info.length = bl->length; |
8181d85f | 2107 | |
b775012e LM |
2108 | /* When working with target-side conditions, we must pass all the conditions |
2109 | for the same breakpoint address down to the target since GDB will not | |
2110 | insert those locations. With a list of breakpoint conditions, the target | |
2111 | can decide when to stop and notify GDB. */ | |
2112 | ||
2113 | if (is_breakpoint (bl->owner)) | |
2114 | { | |
2115 | build_target_condition_list (bl); | |
2116 | /* Reset the condition modification marker. */ | |
2117 | bl->needs_update = 0; | |
2118 | } | |
2119 | ||
35df4500 TJB |
2120 | if (bl->loc_type == bp_loc_software_breakpoint |
2121 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
879bfdc2 | 2122 | { |
35df4500 | 2123 | if (bl->owner->type != bp_hardware_breakpoint) |
765dc015 VP |
2124 | { |
2125 | /* If the explicitly specified breakpoint type | |
2126 | is not hardware breakpoint, check the memory map to see | |
2127 | if the breakpoint address is in read only memory or not. | |
4a64f543 | 2128 | |
765dc015 VP |
2129 | Two important cases are: |
2130 | - location type is not hardware breakpoint, memory | |
2131 | is readonly. We change the type of the location to | |
2132 | hardware breakpoint. | |
4a64f543 MS |
2133 | - location type is hardware breakpoint, memory is |
2134 | read-write. This means we've previously made the | |
2135 | location hardware one, but then the memory map changed, | |
2136 | so we undo. | |
765dc015 | 2137 | |
4a64f543 MS |
2138 | When breakpoints are removed, remove_breakpoints will use |
2139 | location types we've just set here, the only possible | |
2140 | problem is that memory map has changed during running | |
2141 | program, but it's not going to work anyway with current | |
2142 | gdb. */ | |
765dc015 | 2143 | struct mem_region *mr |
35df4500 | 2144 | = lookup_mem_region (bl->target_info.placed_address); |
765dc015 VP |
2145 | |
2146 | if (mr) | |
2147 | { | |
2148 | if (automatic_hardware_breakpoints) | |
2149 | { | |
765dc015 VP |
2150 | enum bp_loc_type new_type; |
2151 | ||
2152 | if (mr->attrib.mode != MEM_RW) | |
2153 | new_type = bp_loc_hardware_breakpoint; | |
2154 | else | |
2155 | new_type = bp_loc_software_breakpoint; | |
2156 | ||
35df4500 | 2157 | if (new_type != bl->loc_type) |
765dc015 VP |
2158 | { |
2159 | static int said = 0; | |
cc59ec59 | 2160 | |
35df4500 | 2161 | bl->loc_type = new_type; |
765dc015 VP |
2162 | if (!said) |
2163 | { | |
3e43a32a MS |
2164 | fprintf_filtered (gdb_stdout, |
2165 | _("Note: automatically using " | |
2166 | "hardware breakpoints for " | |
2167 | "read-only addresses.\n")); | |
765dc015 VP |
2168 | said = 1; |
2169 | } | |
2170 | } | |
2171 | } | |
35df4500 | 2172 | else if (bl->loc_type == bp_loc_software_breakpoint |
765dc015 | 2173 | && mr->attrib.mode != MEM_RW) |
3e43a32a MS |
2174 | warning (_("cannot set software breakpoint " |
2175 | "at readonly address %s"), | |
35df4500 | 2176 | paddress (bl->gdbarch, bl->address)); |
765dc015 VP |
2177 | } |
2178 | } | |
2179 | ||
879bfdc2 DJ |
2180 | /* First check to see if we have to handle an overlay. */ |
2181 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
2182 | || bl->section == NULL |
2183 | || !(section_is_overlay (bl->section))) | |
879bfdc2 DJ |
2184 | { |
2185 | /* No overlay handling: just set the breakpoint. */ | |
2186 | ||
348d480f | 2187 | val = bl->owner->ops->insert_location (bl); |
879bfdc2 DJ |
2188 | } |
2189 | else | |
2190 | { | |
4a64f543 | 2191 | /* This breakpoint is in an overlay section. |
879bfdc2 DJ |
2192 | Shall we set a breakpoint at the LMA? */ |
2193 | if (!overlay_events_enabled) | |
2194 | { | |
2195 | /* Yes -- overlay event support is not active, | |
2196 | so we must try to set a breakpoint at the LMA. | |
2197 | This will not work for a hardware breakpoint. */ | |
35df4500 | 2198 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
8a3fe4f8 | 2199 | warning (_("hardware breakpoint %d not supported in overlay!"), |
35df4500 | 2200 | bl->owner->number); |
879bfdc2 DJ |
2201 | else |
2202 | { | |
35df4500 TJB |
2203 | CORE_ADDR addr = overlay_unmapped_address (bl->address, |
2204 | bl->section); | |
879bfdc2 | 2205 | /* Set a software (trap) breakpoint at the LMA. */ |
35df4500 TJB |
2206 | bl->overlay_target_info = bl->target_info; |
2207 | bl->overlay_target_info.placed_address = addr; | |
2208 | val = target_insert_breakpoint (bl->gdbarch, | |
2209 | &bl->overlay_target_info); | |
879bfdc2 | 2210 | if (val != 0) |
99361f52 | 2211 | fprintf_unfiltered (tmp_error_stream, |
3e43a32a MS |
2212 | "Overlay breakpoint %d " |
2213 | "failed: in ROM?\n", | |
35df4500 | 2214 | bl->owner->number); |
879bfdc2 DJ |
2215 | } |
2216 | } | |
2217 | /* Shall we set a breakpoint at the VMA? */ | |
35df4500 | 2218 | if (section_is_mapped (bl->section)) |
879bfdc2 DJ |
2219 | { |
2220 | /* Yes. This overlay section is mapped into memory. */ | |
348d480f | 2221 | val = bl->owner->ops->insert_location (bl); |
879bfdc2 DJ |
2222 | } |
2223 | else | |
2224 | { | |
2225 | /* No. This breakpoint will not be inserted. | |
2226 | No error, but do not mark the bp as 'inserted'. */ | |
2227 | return 0; | |
2228 | } | |
2229 | } | |
2230 | ||
2231 | if (val) | |
2232 | { | |
2233 | /* Can't set the breakpoint. */ | |
35df4500 | 2234 | if (solib_name_from_address (bl->pspace, bl->address)) |
879bfdc2 | 2235 | { |
4a64f543 | 2236 | /* See also: disable_breakpoints_in_shlibs. */ |
879bfdc2 | 2237 | val = 0; |
35df4500 | 2238 | bl->shlib_disabled = 1; |
8d3788bd | 2239 | observer_notify_breakpoint_modified (bl->owner); |
3fbb6ffa TJB |
2240 | if (!*disabled_breaks) |
2241 | { | |
2242 | fprintf_unfiltered (tmp_error_stream, | |
2243 | "Cannot insert breakpoint %d.\n", | |
2244 | bl->owner->number); | |
2245 | fprintf_unfiltered (tmp_error_stream, | |
2246 | "Temporarily disabling shared " | |
2247 | "library breakpoints:\n"); | |
2248 | } | |
2249 | *disabled_breaks = 1; | |
879bfdc2 | 2250 | fprintf_unfiltered (tmp_error_stream, |
35df4500 | 2251 | "breakpoint #%d\n", bl->owner->number); |
879bfdc2 DJ |
2252 | } |
2253 | else | |
879bfdc2 | 2254 | { |
35df4500 | 2255 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
879bfdc2 DJ |
2256 | { |
2257 | *hw_breakpoint_error = 1; | |
3e43a32a MS |
2258 | fprintf_unfiltered (tmp_error_stream, |
2259 | "Cannot insert hardware " | |
2260 | "breakpoint %d.\n", | |
35df4500 | 2261 | bl->owner->number); |
879bfdc2 DJ |
2262 | } |
2263 | else | |
2264 | { | |
2265 | fprintf_unfiltered (tmp_error_stream, | |
2266 | "Cannot insert breakpoint %d.\n", | |
35df4500 | 2267 | bl->owner->number); |
879bfdc2 DJ |
2268 | fprintf_filtered (tmp_error_stream, |
2269 | "Error accessing memory address "); | |
35df4500 | 2270 | fputs_filtered (paddress (bl->gdbarch, bl->address), |
5af949e3 | 2271 | tmp_error_stream); |
879bfdc2 DJ |
2272 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
2273 | safe_strerror (val)); | |
2274 | } | |
2275 | ||
2276 | } | |
2277 | } | |
2278 | else | |
35df4500 | 2279 | bl->inserted = 1; |
879bfdc2 DJ |
2280 | |
2281 | return val; | |
2282 | } | |
2283 | ||
35df4500 | 2284 | else if (bl->loc_type == bp_loc_hardware_watchpoint |
879bfdc2 | 2285 | /* NOTE drow/2003-09-08: This state only exists for removing |
4a64f543 | 2286 | watchpoints. It's not clear that it's necessary... */ |
35df4500 | 2287 | && bl->owner->disposition != disp_del_at_next_stop) |
879bfdc2 | 2288 | { |
77b06cd7 TJB |
2289 | gdb_assert (bl->owner->ops != NULL |
2290 | && bl->owner->ops->insert_location != NULL); | |
2291 | ||
2292 | val = bl->owner->ops->insert_location (bl); | |
85d721b8 PA |
2293 | |
2294 | /* If trying to set a read-watchpoint, and it turns out it's not | |
2295 | supported, try emulating one with an access watchpoint. */ | |
35df4500 | 2296 | if (val == 1 && bl->watchpoint_type == hw_read) |
85d721b8 PA |
2297 | { |
2298 | struct bp_location *loc, **loc_temp; | |
2299 | ||
2300 | /* But don't try to insert it, if there's already another | |
2301 | hw_access location that would be considered a duplicate | |
2302 | of this one. */ | |
2303 | ALL_BP_LOCATIONS (loc, loc_temp) | |
35df4500 | 2304 | if (loc != bl |
85d721b8 | 2305 | && loc->watchpoint_type == hw_access |
35df4500 | 2306 | && watchpoint_locations_match (bl, loc)) |
85d721b8 | 2307 | { |
35df4500 TJB |
2308 | bl->duplicate = 1; |
2309 | bl->inserted = 1; | |
2310 | bl->target_info = loc->target_info; | |
2311 | bl->watchpoint_type = hw_access; | |
85d721b8 PA |
2312 | val = 0; |
2313 | break; | |
2314 | } | |
2315 | ||
2316 | if (val == 1) | |
2317 | { | |
77b06cd7 TJB |
2318 | bl->watchpoint_type = hw_access; |
2319 | val = bl->owner->ops->insert_location (bl); | |
2320 | ||
2321 | if (val) | |
2322 | /* Back to the original value. */ | |
2323 | bl->watchpoint_type = hw_read; | |
85d721b8 PA |
2324 | } |
2325 | } | |
2326 | ||
35df4500 | 2327 | bl->inserted = (val == 0); |
879bfdc2 DJ |
2328 | } |
2329 | ||
35df4500 | 2330 | else if (bl->owner->type == bp_catchpoint) |
879bfdc2 | 2331 | { |
77b06cd7 TJB |
2332 | gdb_assert (bl->owner->ops != NULL |
2333 | && bl->owner->ops->insert_location != NULL); | |
2334 | ||
2335 | val = bl->owner->ops->insert_location (bl); | |
2336 | if (val) | |
2337 | { | |
2338 | bl->owner->enable_state = bp_disabled; | |
2339 | ||
2340 | if (val == 1) | |
2341 | warning (_("\ | |
2342 | Error inserting catchpoint %d: Your system does not support this type\n\ | |
2343 | of catchpoint."), bl->owner->number); | |
2344 | else | |
2345 | warning (_("Error inserting catchpoint %d."), bl->owner->number); | |
2346 | } | |
2347 | ||
2348 | bl->inserted = (val == 0); | |
1640b821 DJ |
2349 | |
2350 | /* We've already printed an error message if there was a problem | |
2351 | inserting this catchpoint, and we've disabled the catchpoint, | |
2352 | so just return success. */ | |
2353 | return 0; | |
879bfdc2 DJ |
2354 | } |
2355 | ||
2356 | return 0; | |
2357 | } | |
2358 | ||
6c95b8df PA |
2359 | /* This function is called when program space PSPACE is about to be |
2360 | deleted. It takes care of updating breakpoints to not reference | |
2361 | PSPACE anymore. */ | |
2362 | ||
2363 | void | |
2364 | breakpoint_program_space_exit (struct program_space *pspace) | |
2365 | { | |
2366 | struct breakpoint *b, *b_temp; | |
876fa593 | 2367 | struct bp_location *loc, **loc_temp; |
6c95b8df PA |
2368 | |
2369 | /* Remove any breakpoint that was set through this program space. */ | |
2370 | ALL_BREAKPOINTS_SAFE (b, b_temp) | |
2371 | { | |
2372 | if (b->pspace == pspace) | |
2373 | delete_breakpoint (b); | |
2374 | } | |
2375 | ||
2376 | /* Breakpoints set through other program spaces could have locations | |
2377 | bound to PSPACE as well. Remove those. */ | |
876fa593 | 2378 | ALL_BP_LOCATIONS (loc, loc_temp) |
6c95b8df PA |
2379 | { |
2380 | struct bp_location *tmp; | |
2381 | ||
2382 | if (loc->pspace == pspace) | |
2383 | { | |
2bdf28a0 | 2384 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
6c95b8df PA |
2385 | if (loc->owner->loc == loc) |
2386 | loc->owner->loc = loc->next; | |
2387 | else | |
2388 | for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next) | |
2389 | if (tmp->next == loc) | |
2390 | { | |
2391 | tmp->next = loc->next; | |
2392 | break; | |
2393 | } | |
2394 | } | |
2395 | } | |
2396 | ||
2397 | /* Now update the global location list to permanently delete the | |
2398 | removed locations above. */ | |
2399 | update_global_location_list (0); | |
2400 | } | |
2401 | ||
74960c60 VP |
2402 | /* Make sure all breakpoints are inserted in inferior. |
2403 | Throws exception on any error. | |
2404 | A breakpoint that is already inserted won't be inserted | |
2405 | again, so calling this function twice is safe. */ | |
2406 | void | |
2407 | insert_breakpoints (void) | |
2408 | { | |
2409 | struct breakpoint *bpt; | |
2410 | ||
2411 | ALL_BREAKPOINTS (bpt) | |
2412 | if (is_hardware_watchpoint (bpt)) | |
3a5c3e22 PA |
2413 | { |
2414 | struct watchpoint *w = (struct watchpoint *) bpt; | |
2415 | ||
2416 | update_watchpoint (w, 0 /* don't reparse. */); | |
2417 | } | |
74960c60 | 2418 | |
b60e7edf | 2419 | update_global_location_list (1); |
74960c60 | 2420 | |
c35b1492 PA |
2421 | /* update_global_location_list does not insert breakpoints when |
2422 | always_inserted_mode is not enabled. Explicitly insert them | |
2423 | now. */ | |
2424 | if (!breakpoints_always_inserted_mode ()) | |
74960c60 VP |
2425 | insert_breakpoint_locations (); |
2426 | } | |
2427 | ||
b775012e LM |
2428 | /* This is used when we need to synch breakpoint conditions between GDB and the |
2429 | target. It is the case with deleting and disabling of breakpoints when using | |
2430 | always-inserted mode. */ | |
2431 | ||
2432 | static void | |
2433 | update_inserted_breakpoint_locations (void) | |
2434 | { | |
2435 | struct bp_location *bl, **blp_tmp; | |
2436 | int error_flag = 0; | |
2437 | int val = 0; | |
2438 | int disabled_breaks = 0; | |
2439 | int hw_breakpoint_error = 0; | |
2440 | ||
2441 | struct ui_file *tmp_error_stream = mem_fileopen (); | |
2442 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); | |
2443 | ||
2444 | /* Explicitly mark the warning -- this will only be printed if | |
2445 | there was an error. */ | |
2446 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
2447 | ||
2448 | save_current_space_and_thread (); | |
2449 | ||
2450 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
2451 | { | |
2452 | /* We only want to update software breakpoints and hardware | |
2453 | breakpoints. */ | |
2454 | if (!is_breakpoint (bl->owner)) | |
2455 | continue; | |
2456 | ||
2457 | /* We only want to update locations that are already inserted | |
2458 | and need updating. This is to avoid unwanted insertion during | |
2459 | deletion of breakpoints. */ | |
2460 | if (!bl->inserted || (bl->inserted && !bl->needs_update)) | |
2461 | continue; | |
2462 | ||
2463 | switch_to_program_space_and_thread (bl->pspace); | |
2464 | ||
2465 | /* For targets that support global breakpoints, there's no need | |
2466 | to select an inferior to insert breakpoint to. In fact, even | |
2467 | if we aren't attached to any process yet, we should still | |
2468 | insert breakpoints. */ | |
2469 | if (!gdbarch_has_global_breakpoints (target_gdbarch) | |
2470 | && ptid_equal (inferior_ptid, null_ptid)) | |
2471 | continue; | |
2472 | ||
2473 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, | |
2474 | &hw_breakpoint_error); | |
2475 | if (val) | |
2476 | error_flag = val; | |
2477 | } | |
2478 | ||
2479 | if (error_flag) | |
2480 | { | |
2481 | target_terminal_ours_for_output (); | |
2482 | error_stream (tmp_error_stream); | |
2483 | } | |
2484 | ||
2485 | do_cleanups (cleanups); | |
2486 | } | |
2487 | ||
c30eee59 | 2488 | /* Used when starting or continuing the program. */ |
c906108c | 2489 | |
74960c60 VP |
2490 | static void |
2491 | insert_breakpoint_locations (void) | |
c906108c | 2492 | { |
a5606eee | 2493 | struct breakpoint *bpt; |
35df4500 | 2494 | struct bp_location *bl, **blp_tmp; |
eacd795a | 2495 | int error_flag = 0; |
c906108c | 2496 | int val = 0; |
3fbb6ffa | 2497 | int disabled_breaks = 0; |
81d0cc19 | 2498 | int hw_breakpoint_error = 0; |
c906108c | 2499 | |
81d0cc19 | 2500 | struct ui_file *tmp_error_stream = mem_fileopen (); |
f7545552 | 2501 | struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream); |
74960c60 | 2502 | |
81d0cc19 GS |
2503 | /* Explicitly mark the warning -- this will only be printed if |
2504 | there was an error. */ | |
2505 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
6c95b8df PA |
2506 | |
2507 | save_current_space_and_thread (); | |
2508 | ||
35df4500 | 2509 | ALL_BP_LOCATIONS (bl, blp_tmp) |
879bfdc2 | 2510 | { |
b775012e | 2511 | if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update)) |
879bfdc2 DJ |
2512 | continue; |
2513 | ||
4a64f543 MS |
2514 | /* There is no point inserting thread-specific breakpoints if |
2515 | the thread no longer exists. ALL_BP_LOCATIONS bp_location | |
2516 | has BL->OWNER always non-NULL. */ | |
35df4500 TJB |
2517 | if (bl->owner->thread != -1 |
2518 | && !valid_thread_id (bl->owner->thread)) | |
f365de73 AS |
2519 | continue; |
2520 | ||
35df4500 | 2521 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df PA |
2522 | |
2523 | /* For targets that support global breakpoints, there's no need | |
2524 | to select an inferior to insert breakpoint to. In fact, even | |
2525 | if we aren't attached to any process yet, we should still | |
2526 | insert breakpoints. */ | |
2527 | if (!gdbarch_has_global_breakpoints (target_gdbarch) | |
2528 | && ptid_equal (inferior_ptid, null_ptid)) | |
2529 | continue; | |
2530 | ||
3fbb6ffa TJB |
2531 | val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks, |
2532 | &hw_breakpoint_error); | |
879bfdc2 | 2533 | if (val) |
eacd795a | 2534 | error_flag = val; |
879bfdc2 | 2535 | } |
c906108c | 2536 | |
4a64f543 MS |
2537 | /* If we failed to insert all locations of a watchpoint, remove |
2538 | them, as half-inserted watchpoint is of limited use. */ | |
a5606eee VP |
2539 | ALL_BREAKPOINTS (bpt) |
2540 | { | |
2541 | int some_failed = 0; | |
2542 | struct bp_location *loc; | |
2543 | ||
2544 | if (!is_hardware_watchpoint (bpt)) | |
2545 | continue; | |
2546 | ||
d6b74ac4 | 2547 | if (!breakpoint_enabled (bpt)) |
a5606eee | 2548 | continue; |
74960c60 VP |
2549 | |
2550 | if (bpt->disposition == disp_del_at_next_stop) | |
2551 | continue; | |
a5606eee VP |
2552 | |
2553 | for (loc = bpt->loc; loc; loc = loc->next) | |
56710373 | 2554 | if (!loc->inserted && should_be_inserted (loc)) |
a5606eee VP |
2555 | { |
2556 | some_failed = 1; | |
2557 | break; | |
2558 | } | |
2559 | if (some_failed) | |
2560 | { | |
2561 | for (loc = bpt->loc; loc; loc = loc->next) | |
2562 | if (loc->inserted) | |
2563 | remove_breakpoint (loc, mark_uninserted); | |
2564 | ||
2565 | hw_breakpoint_error = 1; | |
2566 | fprintf_unfiltered (tmp_error_stream, | |
2567 | "Could not insert hardware watchpoint %d.\n", | |
2568 | bpt->number); | |
eacd795a | 2569 | error_flag = -1; |
a5606eee VP |
2570 | } |
2571 | } | |
2572 | ||
eacd795a | 2573 | if (error_flag) |
81d0cc19 GS |
2574 | { |
2575 | /* If a hardware breakpoint or watchpoint was inserted, add a | |
2576 | message about possibly exhausted resources. */ | |
879bfdc2 | 2577 | if (hw_breakpoint_error) |
81d0cc19 | 2578 | { |
c6510018 MS |
2579 | fprintf_unfiltered (tmp_error_stream, |
2580 | "Could not insert hardware breakpoints:\n\ | |
2581 | You may have requested too many hardware breakpoints/watchpoints.\n"); | |
81d0cc19 | 2582 | } |
81d0cc19 GS |
2583 | target_terminal_ours_for_output (); |
2584 | error_stream (tmp_error_stream); | |
2585 | } | |
f7545552 TT |
2586 | |
2587 | do_cleanups (cleanups); | |
c906108c SS |
2588 | } |
2589 | ||
c30eee59 TJB |
2590 | /* Used when the program stops. |
2591 | Returns zero if successful, or non-zero if there was a problem | |
2592 | removing a breakpoint location. */ | |
2593 | ||
c906108c | 2594 | int |
fba45db2 | 2595 | remove_breakpoints (void) |
c906108c | 2596 | { |
35df4500 | 2597 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 2598 | int val = 0; |
c906108c | 2599 | |
35df4500 | 2600 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2601 | { |
1e4d1764 | 2602 | if (bl->inserted && !is_tracepoint (bl->owner)) |
35df4500 | 2603 | val |= remove_breakpoint (bl, mark_uninserted); |
c5aa993b | 2604 | } |
3a1bae8e | 2605 | return val; |
c906108c SS |
2606 | } |
2607 | ||
6c95b8df PA |
2608 | /* Remove breakpoints of process PID. */ |
2609 | ||
2610 | int | |
2611 | remove_breakpoints_pid (int pid) | |
2612 | { | |
35df4500 | 2613 | struct bp_location *bl, **blp_tmp; |
6c95b8df PA |
2614 | int val; |
2615 | struct inferior *inf = find_inferior_pid (pid); | |
2616 | ||
35df4500 | 2617 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 2618 | { |
35df4500 | 2619 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2620 | continue; |
2621 | ||
35df4500 | 2622 | if (bl->inserted) |
6c95b8df | 2623 | { |
35df4500 | 2624 | val = remove_breakpoint (bl, mark_uninserted); |
6c95b8df PA |
2625 | if (val != 0) |
2626 | return val; | |
2627 | } | |
2628 | } | |
2629 | return 0; | |
2630 | } | |
2631 | ||
c906108c | 2632 | int |
fba45db2 | 2633 | reattach_breakpoints (int pid) |
c906108c | 2634 | { |
6c95b8df | 2635 | struct cleanup *old_chain; |
35df4500 | 2636 | struct bp_location *bl, **blp_tmp; |
c906108c | 2637 | int val; |
86b887df | 2638 | struct ui_file *tmp_error_stream; |
3fbb6ffa | 2639 | int dummy1 = 0, dummy2 = 0; |
6c95b8df PA |
2640 | struct inferior *inf; |
2641 | struct thread_info *tp; | |
2642 | ||
2643 | tp = any_live_thread_of_process (pid); | |
2644 | if (tp == NULL) | |
2645 | return 1; | |
2646 | ||
2647 | inf = find_inferior_pid (pid); | |
2648 | old_chain = save_inferior_ptid (); | |
2649 | ||
2650 | inferior_ptid = tp->ptid; | |
a4954f26 | 2651 | |
86b887df | 2652 | tmp_error_stream = mem_fileopen (); |
a4954f26 | 2653 | make_cleanup_ui_file_delete (tmp_error_stream); |
c906108c | 2654 | |
35df4500 | 2655 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 2656 | { |
35df4500 | 2657 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
2658 | continue; |
2659 | ||
35df4500 | 2660 | if (bl->inserted) |
c5aa993b | 2661 | { |
35df4500 | 2662 | bl->inserted = 0; |
3fbb6ffa | 2663 | val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2); |
c5aa993b JM |
2664 | if (val != 0) |
2665 | { | |
ce696e05 | 2666 | do_cleanups (old_chain); |
c5aa993b JM |
2667 | return val; |
2668 | } | |
2669 | } | |
2670 | } | |
ce696e05 | 2671 | do_cleanups (old_chain); |
c906108c SS |
2672 | return 0; |
2673 | } | |
2674 | ||
e58b0e63 PA |
2675 | static int internal_breakpoint_number = -1; |
2676 | ||
84f4c1fe PM |
2677 | /* Set the breakpoint number of B, depending on the value of INTERNAL. |
2678 | If INTERNAL is non-zero, the breakpoint number will be populated | |
2679 | from internal_breakpoint_number and that variable decremented. | |
e5dd4106 | 2680 | Otherwise the breakpoint number will be populated from |
84f4c1fe PM |
2681 | breakpoint_count and that value incremented. Internal breakpoints |
2682 | do not set the internal var bpnum. */ | |
2683 | static void | |
2684 | set_breakpoint_number (int internal, struct breakpoint *b) | |
2685 | { | |
2686 | if (internal) | |
2687 | b->number = internal_breakpoint_number--; | |
2688 | else | |
2689 | { | |
2690 | set_breakpoint_count (breakpoint_count + 1); | |
2691 | b->number = breakpoint_count; | |
2692 | } | |
2693 | } | |
2694 | ||
e62c965a | 2695 | static struct breakpoint * |
a6d9a66e | 2696 | create_internal_breakpoint (struct gdbarch *gdbarch, |
06edf0c0 | 2697 | CORE_ADDR address, enum bptype type, |
c0a91b2b | 2698 | const struct breakpoint_ops *ops) |
e62c965a | 2699 | { |
e62c965a PP |
2700 | struct symtab_and_line sal; |
2701 | struct breakpoint *b; | |
2702 | ||
4a64f543 | 2703 | init_sal (&sal); /* Initialize to zeroes. */ |
e62c965a PP |
2704 | |
2705 | sal.pc = address; | |
2706 | sal.section = find_pc_overlay (sal.pc); | |
6c95b8df | 2707 | sal.pspace = current_program_space; |
e62c965a | 2708 | |
06edf0c0 | 2709 | b = set_raw_breakpoint (gdbarch, sal, type, ops); |
e62c965a PP |
2710 | b->number = internal_breakpoint_number--; |
2711 | b->disposition = disp_donttouch; | |
2712 | ||
2713 | return b; | |
2714 | } | |
2715 | ||
17450429 PP |
2716 | static const char *const longjmp_names[] = |
2717 | { | |
2718 | "longjmp", "_longjmp", "siglongjmp", "_siglongjmp" | |
2719 | }; | |
2720 | #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names) | |
2721 | ||
2722 | /* Per-objfile data private to breakpoint.c. */ | |
2723 | struct breakpoint_objfile_data | |
2724 | { | |
2725 | /* Minimal symbol for "_ovly_debug_event" (if any). */ | |
2726 | struct minimal_symbol *overlay_msym; | |
2727 | ||
2728 | /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */ | |
2729 | struct minimal_symbol *longjmp_msym[NUM_LONGJMP_NAMES]; | |
2730 | ||
2731 | /* Minimal symbol for "std::terminate()" (if any). */ | |
2732 | struct minimal_symbol *terminate_msym; | |
2733 | ||
2734 | /* Minimal symbol for "_Unwind_DebugHook" (if any). */ | |
2735 | struct minimal_symbol *exception_msym; | |
2736 | }; | |
2737 | ||
2738 | static const struct objfile_data *breakpoint_objfile_key; | |
2739 | ||
2740 | /* Minimal symbol not found sentinel. */ | |
2741 | static struct minimal_symbol msym_not_found; | |
2742 | ||
2743 | /* Returns TRUE if MSYM point to the "not found" sentinel. */ | |
2744 | ||
2745 | static int | |
2746 | msym_not_found_p (const struct minimal_symbol *msym) | |
2747 | { | |
2748 | return msym == &msym_not_found; | |
2749 | } | |
2750 | ||
2751 | /* Return per-objfile data needed by breakpoint.c. | |
2752 | Allocate the data if necessary. */ | |
2753 | ||
2754 | static struct breakpoint_objfile_data * | |
2755 | get_breakpoint_objfile_data (struct objfile *objfile) | |
2756 | { | |
2757 | struct breakpoint_objfile_data *bp_objfile_data; | |
2758 | ||
2759 | bp_objfile_data = objfile_data (objfile, breakpoint_objfile_key); | |
2760 | if (bp_objfile_data == NULL) | |
2761 | { | |
2762 | bp_objfile_data = obstack_alloc (&objfile->objfile_obstack, | |
2763 | sizeof (*bp_objfile_data)); | |
2764 | ||
2765 | memset (bp_objfile_data, 0, sizeof (*bp_objfile_data)); | |
2766 | set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data); | |
2767 | } | |
2768 | return bp_objfile_data; | |
2769 | } | |
2770 | ||
e62c965a | 2771 | static void |
af02033e | 2772 | create_overlay_event_breakpoint (void) |
e62c965a | 2773 | { |
69de3c6a | 2774 | struct objfile *objfile; |
af02033e | 2775 | const char *const func_name = "_ovly_debug_event"; |
e62c965a | 2776 | |
69de3c6a PP |
2777 | ALL_OBJFILES (objfile) |
2778 | { | |
2779 | struct breakpoint *b; | |
17450429 PP |
2780 | struct breakpoint_objfile_data *bp_objfile_data; |
2781 | CORE_ADDR addr; | |
69de3c6a | 2782 | |
17450429 PP |
2783 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
2784 | ||
2785 | if (msym_not_found_p (bp_objfile_data->overlay_msym)) | |
2786 | continue; | |
2787 | ||
2788 | if (bp_objfile_data->overlay_msym == NULL) | |
2789 | { | |
2790 | struct minimal_symbol *m; | |
2791 | ||
2792 | m = lookup_minimal_symbol_text (func_name, objfile); | |
2793 | if (m == NULL) | |
2794 | { | |
2795 | /* Avoid future lookups in this objfile. */ | |
2796 | bp_objfile_data->overlay_msym = &msym_not_found; | |
2797 | continue; | |
2798 | } | |
2799 | bp_objfile_data->overlay_msym = m; | |
2800 | } | |
e62c965a | 2801 | |
17450429 PP |
2802 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym); |
2803 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
2804 | bp_overlay_event, |
2805 | &internal_breakpoint_ops); | |
69de3c6a | 2806 | b->addr_string = xstrdup (func_name); |
e62c965a | 2807 | |
69de3c6a PP |
2808 | if (overlay_debugging == ovly_auto) |
2809 | { | |
2810 | b->enable_state = bp_enabled; | |
2811 | overlay_events_enabled = 1; | |
2812 | } | |
2813 | else | |
2814 | { | |
2815 | b->enable_state = bp_disabled; | |
2816 | overlay_events_enabled = 0; | |
2817 | } | |
e62c965a PP |
2818 | } |
2819 | update_global_location_list (1); | |
2820 | } | |
2821 | ||
0fd8e87f | 2822 | static void |
af02033e | 2823 | create_longjmp_master_breakpoint (void) |
0fd8e87f | 2824 | { |
6c95b8df | 2825 | struct program_space *pspace; |
6c95b8df PA |
2826 | struct cleanup *old_chain; |
2827 | ||
2828 | old_chain = save_current_program_space (); | |
0fd8e87f | 2829 | |
6c95b8df | 2830 | ALL_PSPACES (pspace) |
af02033e PP |
2831 | { |
2832 | struct objfile *objfile; | |
2833 | ||
2834 | set_current_program_space (pspace); | |
2835 | ||
2836 | ALL_OBJFILES (objfile) | |
0fd8e87f | 2837 | { |
af02033e PP |
2838 | int i; |
2839 | struct gdbarch *gdbarch; | |
17450429 | 2840 | struct breakpoint_objfile_data *bp_objfile_data; |
0fd8e87f | 2841 | |
af02033e PP |
2842 | gdbarch = get_objfile_arch (objfile); |
2843 | if (!gdbarch_get_longjmp_target_p (gdbarch)) | |
0fd8e87f UW |
2844 | continue; |
2845 | ||
17450429 PP |
2846 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
2847 | ||
2848 | for (i = 0; i < NUM_LONGJMP_NAMES; i++) | |
af02033e PP |
2849 | { |
2850 | struct breakpoint *b; | |
af02033e | 2851 | const char *func_name; |
17450429 | 2852 | CORE_ADDR addr; |
6c95b8df | 2853 | |
17450429 | 2854 | if (msym_not_found_p (bp_objfile_data->longjmp_msym[i])) |
af02033e | 2855 | continue; |
0fd8e87f | 2856 | |
17450429 PP |
2857 | func_name = longjmp_names[i]; |
2858 | if (bp_objfile_data->longjmp_msym[i] == NULL) | |
2859 | { | |
2860 | struct minimal_symbol *m; | |
2861 | ||
2862 | m = lookup_minimal_symbol_text (func_name, objfile); | |
2863 | if (m == NULL) | |
2864 | { | |
2865 | /* Prevent future lookups in this objfile. */ | |
2866 | bp_objfile_data->longjmp_msym[i] = &msym_not_found; | |
2867 | continue; | |
2868 | } | |
2869 | bp_objfile_data->longjmp_msym[i] = m; | |
2870 | } | |
2871 | ||
2872 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]); | |
06edf0c0 PA |
2873 | b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master, |
2874 | &internal_breakpoint_ops); | |
af02033e PP |
2875 | b->addr_string = xstrdup (func_name); |
2876 | b->enable_state = bp_disabled; | |
2877 | } | |
0fd8e87f | 2878 | } |
af02033e | 2879 | } |
0fd8e87f | 2880 | update_global_location_list (1); |
6c95b8df PA |
2881 | |
2882 | do_cleanups (old_chain); | |
0fd8e87f UW |
2883 | } |
2884 | ||
af02033e | 2885 | /* Create a master std::terminate breakpoint. */ |
aa7d318d | 2886 | static void |
af02033e | 2887 | create_std_terminate_master_breakpoint (void) |
aa7d318d TT |
2888 | { |
2889 | struct program_space *pspace; | |
aa7d318d | 2890 | struct cleanup *old_chain; |
af02033e | 2891 | const char *const func_name = "std::terminate()"; |
aa7d318d TT |
2892 | |
2893 | old_chain = save_current_program_space (); | |
2894 | ||
2895 | ALL_PSPACES (pspace) | |
17450429 PP |
2896 | { |
2897 | struct objfile *objfile; | |
2898 | CORE_ADDR addr; | |
2899 | ||
2900 | set_current_program_space (pspace); | |
2901 | ||
aa7d318d TT |
2902 | ALL_OBJFILES (objfile) |
2903 | { | |
2904 | struct breakpoint *b; | |
17450429 | 2905 | struct breakpoint_objfile_data *bp_objfile_data; |
aa7d318d | 2906 | |
17450429 | 2907 | bp_objfile_data = get_breakpoint_objfile_data (objfile); |
aa7d318d | 2908 | |
17450429 PP |
2909 | if (msym_not_found_p (bp_objfile_data->terminate_msym)) |
2910 | continue; | |
2911 | ||
2912 | if (bp_objfile_data->terminate_msym == NULL) | |
2913 | { | |
2914 | struct minimal_symbol *m; | |
2915 | ||
2916 | m = lookup_minimal_symbol (func_name, NULL, objfile); | |
2917 | if (m == NULL || (MSYMBOL_TYPE (m) != mst_text | |
2918 | && MSYMBOL_TYPE (m) != mst_file_text)) | |
2919 | { | |
2920 | /* Prevent future lookups in this objfile. */ | |
2921 | bp_objfile_data->terminate_msym = &msym_not_found; | |
2922 | continue; | |
2923 | } | |
2924 | bp_objfile_data->terminate_msym = m; | |
2925 | } | |
aa7d318d | 2926 | |
17450429 PP |
2927 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym); |
2928 | b = create_internal_breakpoint (get_objfile_arch (objfile), addr, | |
06edf0c0 PA |
2929 | bp_std_terminate_master, |
2930 | &internal_breakpoint_ops); | |
aa7d318d TT |
2931 | b->addr_string = xstrdup (func_name); |
2932 | b->enable_state = bp_disabled; | |
2933 | } | |
17450429 PP |
2934 | } |
2935 | ||
aa7d318d TT |
2936 | update_global_location_list (1); |
2937 | ||
2938 | do_cleanups (old_chain); | |
2939 | } | |
2940 | ||
186c406b TT |
2941 | /* Install a master breakpoint on the unwinder's debug hook. */ |
2942 | ||
70221824 | 2943 | static void |
186c406b TT |
2944 | create_exception_master_breakpoint (void) |
2945 | { | |
2946 | struct objfile *objfile; | |
17450429 | 2947 | const char *const func_name = "_Unwind_DebugHook"; |
186c406b TT |
2948 | |
2949 | ALL_OBJFILES (objfile) | |
2950 | { | |
17450429 PP |
2951 | struct breakpoint *b; |
2952 | struct gdbarch *gdbarch; | |
2953 | struct breakpoint_objfile_data *bp_objfile_data; | |
2954 | CORE_ADDR addr; | |
2955 | ||
2956 | bp_objfile_data = get_breakpoint_objfile_data (objfile); | |
2957 | ||
2958 | if (msym_not_found_p (bp_objfile_data->exception_msym)) | |
2959 | continue; | |
2960 | ||
2961 | gdbarch = get_objfile_arch (objfile); | |
186c406b | 2962 | |
17450429 | 2963 | if (bp_objfile_data->exception_msym == NULL) |
186c406b | 2964 | { |
17450429 | 2965 | struct minimal_symbol *debug_hook; |
186c406b | 2966 | |
17450429 PP |
2967 | debug_hook = lookup_minimal_symbol (func_name, NULL, objfile); |
2968 | if (debug_hook == NULL) | |
2969 | { | |
2970 | bp_objfile_data->exception_msym = &msym_not_found; | |
2971 | continue; | |
2972 | } | |
2973 | ||
2974 | bp_objfile_data->exception_msym = debug_hook; | |
186c406b | 2975 | } |
17450429 PP |
2976 | |
2977 | addr = SYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym); | |
2978 | addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr, | |
2979 | ¤t_target); | |
06edf0c0 PA |
2980 | b = create_internal_breakpoint (gdbarch, addr, bp_exception_master, |
2981 | &internal_breakpoint_ops); | |
17450429 PP |
2982 | b->addr_string = xstrdup (func_name); |
2983 | b->enable_state = bp_disabled; | |
186c406b TT |
2984 | } |
2985 | ||
2986 | update_global_location_list (1); | |
2987 | } | |
2988 | ||
c906108c | 2989 | void |
fba45db2 | 2990 | update_breakpoints_after_exec (void) |
c906108c | 2991 | { |
35df4500 | 2992 | struct breakpoint *b, *b_tmp; |
876fa593 | 2993 | struct bp_location *bploc, **bplocp_tmp; |
c906108c | 2994 | |
25b22b0a PA |
2995 | /* We're about to delete breakpoints from GDB's lists. If the |
2996 | INSERTED flag is true, GDB will try to lift the breakpoints by | |
2997 | writing the breakpoints' "shadow contents" back into memory. The | |
2998 | "shadow contents" are NOT valid after an exec, so GDB should not | |
2999 | do that. Instead, the target is responsible from marking | |
3000 | breakpoints out as soon as it detects an exec. We don't do that | |
3001 | here instead, because there may be other attempts to delete | |
3002 | breakpoints after detecting an exec and before reaching here. */ | |
876fa593 | 3003 | ALL_BP_LOCATIONS (bploc, bplocp_tmp) |
6c95b8df PA |
3004 | if (bploc->pspace == current_program_space) |
3005 | gdb_assert (!bploc->inserted); | |
c906108c | 3006 | |
35df4500 | 3007 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3008 | { |
6c95b8df PA |
3009 | if (b->pspace != current_program_space) |
3010 | continue; | |
3011 | ||
4a64f543 | 3012 | /* Solib breakpoints must be explicitly reset after an exec(). */ |
c5aa993b JM |
3013 | if (b->type == bp_shlib_event) |
3014 | { | |
3015 | delete_breakpoint (b); | |
3016 | continue; | |
3017 | } | |
c906108c | 3018 | |
4a64f543 | 3019 | /* JIT breakpoints must be explicitly reset after an exec(). */ |
4efc6507 DE |
3020 | if (b->type == bp_jit_event) |
3021 | { | |
3022 | delete_breakpoint (b); | |
3023 | continue; | |
3024 | } | |
3025 | ||
1900040c | 3026 | /* Thread event breakpoints must be set anew after an exec(), |
0fd8e87f UW |
3027 | as must overlay event and longjmp master breakpoints. */ |
3028 | if (b->type == bp_thread_event || b->type == bp_overlay_event | |
186c406b TT |
3029 | || b->type == bp_longjmp_master || b->type == bp_std_terminate_master |
3030 | || b->type == bp_exception_master) | |
c4093a6a JM |
3031 | { |
3032 | delete_breakpoint (b); | |
3033 | continue; | |
3034 | } | |
3035 | ||
4a64f543 | 3036 | /* Step-resume breakpoints are meaningless after an exec(). */ |
2c03e5be | 3037 | if (b->type == bp_step_resume || b->type == bp_hp_step_resume) |
c5aa993b JM |
3038 | { |
3039 | delete_breakpoint (b); | |
3040 | continue; | |
3041 | } | |
3042 | ||
611c83ae PA |
3043 | /* Longjmp and longjmp-resume breakpoints are also meaningless |
3044 | after an exec. */ | |
186c406b TT |
3045 | if (b->type == bp_longjmp || b->type == bp_longjmp_resume |
3046 | || b->type == bp_exception || b->type == bp_exception_resume) | |
611c83ae PA |
3047 | { |
3048 | delete_breakpoint (b); | |
3049 | continue; | |
3050 | } | |
3051 | ||
ce78b96d JB |
3052 | if (b->type == bp_catchpoint) |
3053 | { | |
3054 | /* For now, none of the bp_catchpoint breakpoints need to | |
3055 | do anything at this point. In the future, if some of | |
3056 | the catchpoints need to something, we will need to add | |
3057 | a new method, and call this method from here. */ | |
3058 | continue; | |
3059 | } | |
3060 | ||
c5aa993b JM |
3061 | /* bp_finish is a special case. The only way we ought to be able |
3062 | to see one of these when an exec() has happened, is if the user | |
3063 | caught a vfork, and then said "finish". Ordinarily a finish just | |
3064 | carries them to the call-site of the current callee, by setting | |
3065 | a temporary bp there and resuming. But in this case, the finish | |
3066 | will carry them entirely through the vfork & exec. | |
3067 | ||
3068 | We don't want to allow a bp_finish to remain inserted now. But | |
3069 | we can't safely delete it, 'cause finish_command has a handle to | |
3070 | the bp on a bpstat, and will later want to delete it. There's a | |
3071 | chance (and I've seen it happen) that if we delete the bp_finish | |
3072 | here, that its storage will get reused by the time finish_command | |
3073 | gets 'round to deleting the "use to be a bp_finish" breakpoint. | |
3074 | We really must allow finish_command to delete a bp_finish. | |
3075 | ||
e5dd4106 | 3076 | In the absence of a general solution for the "how do we know |
53a5351d JM |
3077 | it's safe to delete something others may have handles to?" |
3078 | problem, what we'll do here is just uninsert the bp_finish, and | |
3079 | let finish_command delete it. | |
3080 | ||
3081 | (We know the bp_finish is "doomed" in the sense that it's | |
3082 | momentary, and will be deleted as soon as finish_command sees | |
3083 | the inferior stopped. So it doesn't matter that the bp's | |
3084 | address is probably bogus in the new a.out, unlike e.g., the | |
3085 | solib breakpoints.) */ | |
c5aa993b | 3086 | |
c5aa993b JM |
3087 | if (b->type == bp_finish) |
3088 | { | |
3089 | continue; | |
3090 | } | |
3091 | ||
3092 | /* Without a symbolic address, we have little hope of the | |
3093 | pre-exec() address meaning the same thing in the post-exec() | |
4a64f543 | 3094 | a.out. */ |
c5aa993b JM |
3095 | if (b->addr_string == NULL) |
3096 | { | |
3097 | delete_breakpoint (b); | |
3098 | continue; | |
3099 | } | |
c5aa993b | 3100 | } |
1900040c | 3101 | /* FIXME what about longjmp breakpoints? Re-create them here? */ |
af02033e PP |
3102 | create_overlay_event_breakpoint (); |
3103 | create_longjmp_master_breakpoint (); | |
3104 | create_std_terminate_master_breakpoint (); | |
186c406b | 3105 | create_exception_master_breakpoint (); |
c906108c SS |
3106 | } |
3107 | ||
3108 | int | |
fba45db2 | 3109 | detach_breakpoints (int pid) |
c906108c | 3110 | { |
35df4500 | 3111 | struct bp_location *bl, **blp_tmp; |
3a1bae8e | 3112 | int val = 0; |
ce696e05 | 3113 | struct cleanup *old_chain = save_inferior_ptid (); |
6c95b8df | 3114 | struct inferior *inf = current_inferior (); |
c5aa993b | 3115 | |
39f77062 | 3116 | if (pid == PIDGET (inferior_ptid)) |
8a3fe4f8 | 3117 | error (_("Cannot detach breakpoints of inferior_ptid")); |
c5aa993b | 3118 | |
6c95b8df | 3119 | /* Set inferior_ptid; remove_breakpoint_1 uses this global. */ |
ce696e05 | 3120 | inferior_ptid = pid_to_ptid (pid); |
35df4500 | 3121 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3122 | { |
35df4500 | 3123 | if (bl->pspace != inf->pspace) |
6c95b8df PA |
3124 | continue; |
3125 | ||
35df4500 TJB |
3126 | if (bl->inserted) |
3127 | val |= remove_breakpoint_1 (bl, mark_inserted); | |
c5aa993b | 3128 | } |
d03285ec UW |
3129 | |
3130 | /* Detach single-step breakpoints as well. */ | |
3131 | detach_single_step_breakpoints (); | |
3132 | ||
ce696e05 | 3133 | do_cleanups (old_chain); |
3a1bae8e | 3134 | return val; |
c906108c SS |
3135 | } |
3136 | ||
35df4500 | 3137 | /* Remove the breakpoint location BL from the current address space. |
6c95b8df PA |
3138 | Note that this is used to detach breakpoints from a child fork. |
3139 | When we get here, the child isn't in the inferior list, and neither | |
3140 | do we have objects to represent its address space --- we should | |
35df4500 | 3141 | *not* look at bl->pspace->aspace here. */ |
6c95b8df | 3142 | |
c906108c | 3143 | static int |
35df4500 | 3144 | remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is) |
c906108c SS |
3145 | { |
3146 | int val; | |
c5aa993b | 3147 | |
35df4500 TJB |
3148 | /* BL is never in moribund_locations by our callers. */ |
3149 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3150 | |
35df4500 | 3151 | if (bl->owner->enable_state == bp_permanent) |
c2c6d25f JM |
3152 | /* Permanent breakpoints cannot be inserted or removed. */ |
3153 | return 0; | |
3154 | ||
74960c60 VP |
3155 | /* The type of none suggests that owner is actually deleted. |
3156 | This should not ever happen. */ | |
35df4500 | 3157 | gdb_assert (bl->owner->type != bp_none); |
0bde7532 | 3158 | |
35df4500 TJB |
3159 | if (bl->loc_type == bp_loc_software_breakpoint |
3160 | || bl->loc_type == bp_loc_hardware_breakpoint) | |
c906108c | 3161 | { |
c02f5703 MS |
3162 | /* "Normal" instruction breakpoint: either the standard |
3163 | trap-instruction bp (bp_breakpoint), or a | |
3164 | bp_hardware_breakpoint. */ | |
3165 | ||
3166 | /* First check to see if we have to handle an overlay. */ | |
3167 | if (overlay_debugging == ovly_off | |
35df4500 TJB |
3168 | || bl->section == NULL |
3169 | || !(section_is_overlay (bl->section))) | |
c02f5703 MS |
3170 | { |
3171 | /* No overlay handling: just remove the breakpoint. */ | |
348d480f | 3172 | val = bl->owner->ops->remove_location (bl); |
c02f5703 | 3173 | } |
c906108c SS |
3174 | else |
3175 | { | |
4a64f543 | 3176 | /* This breakpoint is in an overlay section. |
c02f5703 MS |
3177 | Did we set a breakpoint at the LMA? */ |
3178 | if (!overlay_events_enabled) | |
3179 | { | |
3180 | /* Yes -- overlay event support is not active, so we | |
3181 | should have set a breakpoint at the LMA. Remove it. | |
3182 | */ | |
c02f5703 MS |
3183 | /* Ignore any failures: if the LMA is in ROM, we will |
3184 | have already warned when we failed to insert it. */ | |
35df4500 TJB |
3185 | if (bl->loc_type == bp_loc_hardware_breakpoint) |
3186 | target_remove_hw_breakpoint (bl->gdbarch, | |
3187 | &bl->overlay_target_info); | |
c02f5703 | 3188 | else |
35df4500 TJB |
3189 | target_remove_breakpoint (bl->gdbarch, |
3190 | &bl->overlay_target_info); | |
c02f5703 MS |
3191 | } |
3192 | /* Did we set a breakpoint at the VMA? | |
3193 | If so, we will have marked the breakpoint 'inserted'. */ | |
35df4500 | 3194 | if (bl->inserted) |
c906108c | 3195 | { |
c02f5703 MS |
3196 | /* Yes -- remove it. Previously we did not bother to |
3197 | remove the breakpoint if the section had been | |
3198 | unmapped, but let's not rely on that being safe. We | |
3199 | don't know what the overlay manager might do. */ | |
aa67235e UW |
3200 | |
3201 | /* However, we should remove *software* breakpoints only | |
3202 | if the section is still mapped, or else we overwrite | |
3203 | wrong code with the saved shadow contents. */ | |
348d480f PA |
3204 | if (bl->loc_type == bp_loc_hardware_breakpoint |
3205 | || section_is_mapped (bl->section)) | |
3206 | val = bl->owner->ops->remove_location (bl); | |
aa67235e UW |
3207 | else |
3208 | val = 0; | |
c906108c | 3209 | } |
c02f5703 MS |
3210 | else |
3211 | { | |
3212 | /* No -- not inserted, so no need to remove. No error. */ | |
3213 | val = 0; | |
3214 | } | |
c906108c | 3215 | } |
879d1e6b UW |
3216 | |
3217 | /* In some cases, we might not be able to remove a breakpoint | |
3218 | in a shared library that has already been removed, but we | |
3219 | have not yet processed the shlib unload event. */ | |
35df4500 | 3220 | if (val && solib_name_from_address (bl->pspace, bl->address)) |
879d1e6b UW |
3221 | val = 0; |
3222 | ||
c906108c SS |
3223 | if (val) |
3224 | return val; | |
35df4500 | 3225 | bl->inserted = (is == mark_inserted); |
c906108c | 3226 | } |
35df4500 | 3227 | else if (bl->loc_type == bp_loc_hardware_watchpoint) |
c906108c | 3228 | { |
77b06cd7 TJB |
3229 | gdb_assert (bl->owner->ops != NULL |
3230 | && bl->owner->ops->remove_location != NULL); | |
3231 | ||
35df4500 | 3232 | bl->inserted = (is == mark_inserted); |
77b06cd7 | 3233 | bl->owner->ops->remove_location (bl); |
2e70b7b9 | 3234 | |
c906108c | 3235 | /* Failure to remove any of the hardware watchpoints comes here. */ |
35df4500 | 3236 | if ((is == mark_uninserted) && (bl->inserted)) |
8a3fe4f8 | 3237 | warning (_("Could not remove hardware watchpoint %d."), |
35df4500 | 3238 | bl->owner->number); |
c906108c | 3239 | } |
35df4500 TJB |
3240 | else if (bl->owner->type == bp_catchpoint |
3241 | && breakpoint_enabled (bl->owner) | |
3242 | && !bl->duplicate) | |
ce78b96d | 3243 | { |
77b06cd7 TJB |
3244 | gdb_assert (bl->owner->ops != NULL |
3245 | && bl->owner->ops->remove_location != NULL); | |
ce78b96d | 3246 | |
77b06cd7 | 3247 | val = bl->owner->ops->remove_location (bl); |
ce78b96d JB |
3248 | if (val) |
3249 | return val; | |
77b06cd7 | 3250 | |
35df4500 | 3251 | bl->inserted = (is == mark_inserted); |
ce78b96d | 3252 | } |
c906108c SS |
3253 | |
3254 | return 0; | |
3255 | } | |
3256 | ||
6c95b8df | 3257 | static int |
35df4500 | 3258 | remove_breakpoint (struct bp_location *bl, insertion_state_t is) |
6c95b8df PA |
3259 | { |
3260 | int ret; | |
3261 | struct cleanup *old_chain; | |
3262 | ||
35df4500 TJB |
3263 | /* BL is never in moribund_locations by our callers. */ |
3264 | gdb_assert (bl->owner != NULL); | |
2bdf28a0 | 3265 | |
35df4500 | 3266 | if (bl->owner->enable_state == bp_permanent) |
6c95b8df PA |
3267 | /* Permanent breakpoints cannot be inserted or removed. */ |
3268 | return 0; | |
3269 | ||
3270 | /* The type of none suggests that owner is actually deleted. | |
3271 | This should not ever happen. */ | |
35df4500 | 3272 | gdb_assert (bl->owner->type != bp_none); |
6c95b8df PA |
3273 | |
3274 | old_chain = save_current_space_and_thread (); | |
3275 | ||
35df4500 | 3276 | switch_to_program_space_and_thread (bl->pspace); |
6c95b8df | 3277 | |
35df4500 | 3278 | ret = remove_breakpoint_1 (bl, is); |
6c95b8df PA |
3279 | |
3280 | do_cleanups (old_chain); | |
3281 | return ret; | |
3282 | } | |
3283 | ||
c906108c SS |
3284 | /* Clear the "inserted" flag in all breakpoints. */ |
3285 | ||
25b22b0a | 3286 | void |
fba45db2 | 3287 | mark_breakpoints_out (void) |
c906108c | 3288 | { |
35df4500 | 3289 | struct bp_location *bl, **blp_tmp; |
c906108c | 3290 | |
35df4500 TJB |
3291 | ALL_BP_LOCATIONS (bl, blp_tmp) |
3292 | if (bl->pspace == current_program_space) | |
3293 | bl->inserted = 0; | |
c906108c SS |
3294 | } |
3295 | ||
53a5351d JM |
3296 | /* Clear the "inserted" flag in all breakpoints and delete any |
3297 | breakpoints which should go away between runs of the program. | |
c906108c SS |
3298 | |
3299 | Plus other such housekeeping that has to be done for breakpoints | |
3300 | between runs. | |
3301 | ||
53a5351d JM |
3302 | Note: this function gets called at the end of a run (by |
3303 | generic_mourn_inferior) and when a run begins (by | |
4a64f543 | 3304 | init_wait_for_inferior). */ |
c906108c SS |
3305 | |
3306 | ||
3307 | ||
3308 | void | |
fba45db2 | 3309 | breakpoint_init_inferior (enum inf_context context) |
c906108c | 3310 | { |
35df4500 TJB |
3311 | struct breakpoint *b, *b_tmp; |
3312 | struct bp_location *bl, **blp_tmp; | |
1c5cfe86 | 3313 | int ix; |
6c95b8df | 3314 | struct program_space *pspace = current_program_space; |
c906108c | 3315 | |
50c71eaf PA |
3316 | /* If breakpoint locations are shared across processes, then there's |
3317 | nothing to do. */ | |
2567c7d9 | 3318 | if (gdbarch_has_global_breakpoints (target_gdbarch)) |
50c71eaf PA |
3319 | return; |
3320 | ||
35df4500 | 3321 | ALL_BP_LOCATIONS (bl, blp_tmp) |
6c95b8df | 3322 | { |
35df4500 TJB |
3323 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
3324 | if (bl->pspace == pspace | |
3325 | && bl->owner->enable_state != bp_permanent) | |
3326 | bl->inserted = 0; | |
6c95b8df | 3327 | } |
075f6582 | 3328 | |
35df4500 | 3329 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 3330 | { |
6c95b8df PA |
3331 | if (b->loc && b->loc->pspace != pspace) |
3332 | continue; | |
3333 | ||
c5aa993b JM |
3334 | switch (b->type) |
3335 | { | |
3336 | case bp_call_dummy: | |
c906108c | 3337 | |
c5aa993b | 3338 | /* If the call dummy breakpoint is at the entry point it will |
ab92d69b PA |
3339 | cause problems when the inferior is rerun, so we better get |
3340 | rid of it. */ | |
3341 | ||
3342 | case bp_watchpoint_scope: | |
3343 | ||
3344 | /* Also get rid of scope breakpoints. */ | |
3345 | ||
3346 | case bp_shlib_event: | |
3347 | ||
3348 | /* Also remove solib event breakpoints. Their addresses may | |
3349 | have changed since the last time we ran the program. | |
3350 | Actually we may now be debugging against different target; | |
3351 | and so the solib backend that installed this breakpoint may | |
3352 | not be used in by the target. E.g., | |
3353 | ||
3354 | (gdb) file prog-linux | |
3355 | (gdb) run # native linux target | |
3356 | ... | |
3357 | (gdb) kill | |
3358 | (gdb) file prog-win.exe | |
3359 | (gdb) tar rem :9999 # remote Windows gdbserver. | |
3360 | */ | |
c906108c | 3361 | |
f59f708a PA |
3362 | case bp_step_resume: |
3363 | ||
3364 | /* Also remove step-resume breakpoints. */ | |
3365 | ||
c5aa993b JM |
3366 | delete_breakpoint (b); |
3367 | break; | |
c906108c | 3368 | |
c5aa993b JM |
3369 | case bp_watchpoint: |
3370 | case bp_hardware_watchpoint: | |
3371 | case bp_read_watchpoint: | |
3372 | case bp_access_watchpoint: | |
3a5c3e22 PA |
3373 | { |
3374 | struct watchpoint *w = (struct watchpoint *) b; | |
c906108c | 3375 | |
3a5c3e22 PA |
3376 | /* Likewise for watchpoints on local expressions. */ |
3377 | if (w->exp_valid_block != NULL) | |
3378 | delete_breakpoint (b); | |
3379 | else if (context == inf_starting) | |
3380 | { | |
3381 | /* Reset val field to force reread of starting value in | |
3382 | insert_breakpoints. */ | |
3383 | if (w->val) | |
3384 | value_free (w->val); | |
3385 | w->val = NULL; | |
3386 | w->val_valid = 0; | |
c860120c | 3387 | } |
3a5c3e22 | 3388 | } |
c5aa993b JM |
3389 | break; |
3390 | default: | |
c5aa993b JM |
3391 | break; |
3392 | } | |
3393 | } | |
1c5cfe86 PA |
3394 | |
3395 | /* Get rid of the moribund locations. */ | |
35df4500 TJB |
3396 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix) |
3397 | decref_bp_location (&bl); | |
1c5cfe86 | 3398 | VEC_free (bp_location_p, moribund_locations); |
c906108c SS |
3399 | } |
3400 | ||
6c95b8df PA |
3401 | /* These functions concern about actual breakpoints inserted in the |
3402 | target --- to e.g. check if we need to do decr_pc adjustment or if | |
3403 | we need to hop over the bkpt --- so we check for address space | |
3404 | match, not program space. */ | |
3405 | ||
c2c6d25f JM |
3406 | /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint |
3407 | exists at PC. It returns ordinary_breakpoint_here if it's an | |
3408 | ordinary breakpoint, or permanent_breakpoint_here if it's a | |
3409 | permanent breakpoint. | |
3410 | - When continuing from a location with an ordinary breakpoint, we | |
3411 | actually single step once before calling insert_breakpoints. | |
e5dd4106 | 3412 | - When continuing from a location with a permanent breakpoint, we |
c2c6d25f JM |
3413 | need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by |
3414 | the target, to advance the PC past the breakpoint. */ | |
c906108c | 3415 | |
c2c6d25f | 3416 | enum breakpoint_here |
6c95b8df | 3417 | breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
c906108c | 3418 | { |
35df4500 | 3419 | struct bp_location *bl, **blp_tmp; |
c2c6d25f | 3420 | int any_breakpoint_here = 0; |
c906108c | 3421 | |
35df4500 | 3422 | ALL_BP_LOCATIONS (bl, blp_tmp) |
075f6582 | 3423 | { |
35df4500 TJB |
3424 | if (bl->loc_type != bp_loc_software_breakpoint |
3425 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3426 | continue; |
3427 | ||
f1310107 | 3428 | /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */ |
35df4500 TJB |
3429 | if ((breakpoint_enabled (bl->owner) |
3430 | || bl->owner->enable_state == bp_permanent) | |
f1310107 | 3431 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3432 | { |
3433 | if (overlay_debugging | |
35df4500 TJB |
3434 | && section_is_overlay (bl->section) |
3435 | && !section_is_mapped (bl->section)) | |
075f6582 | 3436 | continue; /* unmapped overlay -- can't be a match */ |
35df4500 | 3437 | else if (bl->owner->enable_state == bp_permanent) |
075f6582 DJ |
3438 | return permanent_breakpoint_here; |
3439 | else | |
3440 | any_breakpoint_here = 1; | |
3441 | } | |
3442 | } | |
c906108c | 3443 | |
c2c6d25f | 3444 | return any_breakpoint_here ? ordinary_breakpoint_here : 0; |
c906108c SS |
3445 | } |
3446 | ||
1c5cfe86 PA |
3447 | /* Return true if there's a moribund breakpoint at PC. */ |
3448 | ||
3449 | int | |
6c95b8df | 3450 | moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc) |
1c5cfe86 PA |
3451 | { |
3452 | struct bp_location *loc; | |
3453 | int ix; | |
3454 | ||
3455 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
f1310107 | 3456 | if (breakpoint_location_address_match (loc, aspace, pc)) |
1c5cfe86 PA |
3457 | return 1; |
3458 | ||
3459 | return 0; | |
3460 | } | |
c2c6d25f | 3461 | |
c36b740a | 3462 | /* Returns non-zero if there's a breakpoint inserted at PC, which is |
4a64f543 MS |
3463 | inserted using regular breakpoint_chain / bp_location array |
3464 | mechanism. This does not check for single-step breakpoints, which | |
3465 | are inserted and removed using direct target manipulation. */ | |
c906108c SS |
3466 | |
3467 | int | |
4a64f543 MS |
3468 | regular_breakpoint_inserted_here_p (struct address_space *aspace, |
3469 | CORE_ADDR pc) | |
c906108c | 3470 | { |
35df4500 | 3471 | struct bp_location *bl, **blp_tmp; |
c906108c | 3472 | |
35df4500 | 3473 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3474 | { |
35df4500 TJB |
3475 | if (bl->loc_type != bp_loc_software_breakpoint |
3476 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3477 | continue; |
3478 | ||
35df4500 | 3479 | if (bl->inserted |
f1310107 | 3480 | && breakpoint_location_address_match (bl, aspace, pc)) |
075f6582 DJ |
3481 | { |
3482 | if (overlay_debugging | |
35df4500 TJB |
3483 | && section_is_overlay (bl->section) |
3484 | && !section_is_mapped (bl->section)) | |
075f6582 DJ |
3485 | continue; /* unmapped overlay -- can't be a match */ |
3486 | else | |
3487 | return 1; | |
3488 | } | |
c5aa993b | 3489 | } |
c36b740a VP |
3490 | return 0; |
3491 | } | |
3492 | ||
3493 | /* Returns non-zero iff there's either regular breakpoint | |
3494 | or a single step breakpoint inserted at PC. */ | |
3495 | ||
3496 | int | |
6c95b8df | 3497 | breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc) |
c36b740a | 3498 | { |
6c95b8df | 3499 | if (regular_breakpoint_inserted_here_p (aspace, pc)) |
c36b740a | 3500 | return 1; |
c906108c | 3501 | |
6c95b8df | 3502 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3503 | return 1; |
3504 | ||
c906108c SS |
3505 | return 0; |
3506 | } | |
3507 | ||
4fa8626c DJ |
3508 | /* This function returns non-zero iff there is a software breakpoint |
3509 | inserted at PC. */ | |
3510 | ||
3511 | int | |
3e43a32a MS |
3512 | software_breakpoint_inserted_here_p (struct address_space *aspace, |
3513 | CORE_ADDR pc) | |
4fa8626c | 3514 | { |
35df4500 | 3515 | struct bp_location *bl, **blp_tmp; |
4fa8626c | 3516 | |
35df4500 | 3517 | ALL_BP_LOCATIONS (bl, blp_tmp) |
4fa8626c | 3518 | { |
35df4500 | 3519 | if (bl->loc_type != bp_loc_software_breakpoint) |
4fa8626c DJ |
3520 | continue; |
3521 | ||
35df4500 TJB |
3522 | if (bl->inserted |
3523 | && breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6c95b8df | 3524 | aspace, pc)) |
4fa8626c DJ |
3525 | { |
3526 | if (overlay_debugging | |
35df4500 TJB |
3527 | && section_is_overlay (bl->section) |
3528 | && !section_is_mapped (bl->section)) | |
4fa8626c DJ |
3529 | continue; /* unmapped overlay -- can't be a match */ |
3530 | else | |
3531 | return 1; | |
3532 | } | |
3533 | } | |
3534 | ||
1aafd4da | 3535 | /* Also check for software single-step breakpoints. */ |
6c95b8df | 3536 | if (single_step_breakpoint_inserted_here_p (aspace, pc)) |
1aafd4da UW |
3537 | return 1; |
3538 | ||
4fa8626c DJ |
3539 | return 0; |
3540 | } | |
3541 | ||
9093389c PA |
3542 | int |
3543 | hardware_watchpoint_inserted_in_range (struct address_space *aspace, | |
3544 | CORE_ADDR addr, ULONGEST len) | |
3545 | { | |
3546 | struct breakpoint *bpt; | |
3547 | ||
3548 | ALL_BREAKPOINTS (bpt) | |
3549 | { | |
3550 | struct bp_location *loc; | |
3551 | ||
3552 | if (bpt->type != bp_hardware_watchpoint | |
3553 | && bpt->type != bp_access_watchpoint) | |
3554 | continue; | |
3555 | ||
3556 | if (!breakpoint_enabled (bpt)) | |
3557 | continue; | |
3558 | ||
3559 | for (loc = bpt->loc; loc; loc = loc->next) | |
3560 | if (loc->pspace->aspace == aspace && loc->inserted) | |
3561 | { | |
3562 | CORE_ADDR l, h; | |
3563 | ||
3564 | /* Check for intersection. */ | |
3565 | l = max (loc->address, addr); | |
3566 | h = min (loc->address + loc->length, addr + len); | |
3567 | if (l < h) | |
3568 | return 1; | |
3569 | } | |
3570 | } | |
3571 | return 0; | |
3572 | } | |
3573 | ||
075f6582 DJ |
3574 | /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at |
3575 | PC is valid for process/thread PTID. */ | |
c906108c SS |
3576 | |
3577 | int | |
6c95b8df PA |
3578 | breakpoint_thread_match (struct address_space *aspace, CORE_ADDR pc, |
3579 | ptid_t ptid) | |
c906108c | 3580 | { |
35df4500 | 3581 | struct bp_location *bl, **blp_tmp; |
4a306c9a | 3582 | /* The thread and task IDs associated to PTID, computed lazily. */ |
a6f1cd96 | 3583 | int thread = -1; |
4a306c9a | 3584 | int task = 0; |
a6f1cd96 | 3585 | |
35df4500 | 3586 | ALL_BP_LOCATIONS (bl, blp_tmp) |
c5aa993b | 3587 | { |
35df4500 TJB |
3588 | if (bl->loc_type != bp_loc_software_breakpoint |
3589 | && bl->loc_type != bp_loc_hardware_breakpoint) | |
075f6582 DJ |
3590 | continue; |
3591 | ||
35df4500 TJB |
3592 | /* ALL_BP_LOCATIONS bp_location has bl->OWNER always non-NULL. */ |
3593 | if (!breakpoint_enabled (bl->owner) | |
3594 | && bl->owner->enable_state != bp_permanent) | |
a6f1cd96 JB |
3595 | continue; |
3596 | ||
f1310107 | 3597 | if (!breakpoint_location_address_match (bl, aspace, pc)) |
a6f1cd96 JB |
3598 | continue; |
3599 | ||
35df4500 | 3600 | if (bl->owner->thread != -1) |
075f6582 | 3601 | { |
a6f1cd96 JB |
3602 | /* This is a thread-specific breakpoint. Check that ptid |
3603 | matches that thread. If thread hasn't been computed yet, | |
3604 | it is now time to do so. */ | |
3605 | if (thread == -1) | |
3606 | thread = pid_to_thread_id (ptid); | |
35df4500 | 3607 | if (bl->owner->thread != thread) |
a6f1cd96 | 3608 | continue; |
075f6582 | 3609 | } |
a6f1cd96 | 3610 | |
35df4500 | 3611 | if (bl->owner->task != 0) |
4a306c9a JB |
3612 | { |
3613 | /* This is a task-specific breakpoint. Check that ptid | |
3614 | matches that task. If task hasn't been computed yet, | |
3615 | it is now time to do so. */ | |
3616 | if (task == 0) | |
3617 | task = ada_get_task_number (ptid); | |
35df4500 | 3618 | if (bl->owner->task != task) |
4a306c9a JB |
3619 | continue; |
3620 | } | |
3621 | ||
a6f1cd96 | 3622 | if (overlay_debugging |
35df4500 TJB |
3623 | && section_is_overlay (bl->section) |
3624 | && !section_is_mapped (bl->section)) | |
a6f1cd96 JB |
3625 | continue; /* unmapped overlay -- can't be a match */ |
3626 | ||
3627 | return 1; | |
c5aa993b | 3628 | } |
c906108c SS |
3629 | |
3630 | return 0; | |
3631 | } | |
c906108c | 3632 | \f |
c5aa993b | 3633 | |
c906108c SS |
3634 | /* bpstat stuff. External routines' interfaces are documented |
3635 | in breakpoint.h. */ | |
3636 | ||
3637 | int | |
fba45db2 | 3638 | ep_is_catchpoint (struct breakpoint *ep) |
c906108c | 3639 | { |
533be4dd | 3640 | return (ep->type == bp_catchpoint); |
c906108c SS |
3641 | } |
3642 | ||
f431efe5 PA |
3643 | /* Frees any storage that is part of a bpstat. Does not walk the |
3644 | 'next' chain. */ | |
3645 | ||
3646 | static void | |
198757a8 VP |
3647 | bpstat_free (bpstat bs) |
3648 | { | |
3649 | if (bs->old_val != NULL) | |
3650 | value_free (bs->old_val); | |
9add0f1b | 3651 | decref_counted_command_line (&bs->commands); |
f431efe5 | 3652 | decref_bp_location (&bs->bp_location_at); |
198757a8 VP |
3653 | xfree (bs); |
3654 | } | |
3655 | ||
c906108c SS |
3656 | /* Clear a bpstat so that it says we are not at any breakpoint. |
3657 | Also free any storage that is part of a bpstat. */ | |
3658 | ||
3659 | void | |
fba45db2 | 3660 | bpstat_clear (bpstat *bsp) |
c906108c SS |
3661 | { |
3662 | bpstat p; | |
3663 | bpstat q; | |
3664 | ||
3665 | if (bsp == 0) | |
3666 | return; | |
3667 | p = *bsp; | |
3668 | while (p != NULL) | |
3669 | { | |
3670 | q = p->next; | |
198757a8 | 3671 | bpstat_free (p); |
c906108c SS |
3672 | p = q; |
3673 | } | |
3674 | *bsp = NULL; | |
3675 | } | |
3676 | ||
3677 | /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that | |
3678 | is part of the bpstat is copied as well. */ | |
3679 | ||
3680 | bpstat | |
fba45db2 | 3681 | bpstat_copy (bpstat bs) |
c906108c SS |
3682 | { |
3683 | bpstat p = NULL; | |
3684 | bpstat tmp; | |
3685 | bpstat retval = NULL; | |
3686 | ||
3687 | if (bs == NULL) | |
3688 | return bs; | |
3689 | ||
3690 | for (; bs != NULL; bs = bs->next) | |
3691 | { | |
3692 | tmp = (bpstat) xmalloc (sizeof (*tmp)); | |
3693 | memcpy (tmp, bs, sizeof (*tmp)); | |
9add0f1b | 3694 | incref_counted_command_line (tmp->commands); |
f431efe5 | 3695 | incref_bp_location (tmp->bp_location_at); |
31cc81e9 | 3696 | if (bs->old_val != NULL) |
3c3185ac JK |
3697 | { |
3698 | tmp->old_val = value_copy (bs->old_val); | |
3699 | release_value (tmp->old_val); | |
3700 | } | |
31cc81e9 | 3701 | |
c906108c SS |
3702 | if (p == NULL) |
3703 | /* This is the first thing in the chain. */ | |
3704 | retval = tmp; | |
3705 | else | |
3706 | p->next = tmp; | |
3707 | p = tmp; | |
3708 | } | |
3709 | p->next = NULL; | |
3710 | return retval; | |
3711 | } | |
3712 | ||
4a64f543 | 3713 | /* Find the bpstat associated with this breakpoint. */ |
c906108c SS |
3714 | |
3715 | bpstat | |
fba45db2 | 3716 | bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint) |
c906108c | 3717 | { |
c5aa993b JM |
3718 | if (bsp == NULL) |
3719 | return NULL; | |
c906108c | 3720 | |
c5aa993b JM |
3721 | for (; bsp != NULL; bsp = bsp->next) |
3722 | { | |
f431efe5 | 3723 | if (bsp->breakpoint_at == breakpoint) |
c5aa993b JM |
3724 | return bsp; |
3725 | } | |
c906108c SS |
3726 | return NULL; |
3727 | } | |
3728 | ||
4a64f543 MS |
3729 | /* Put in *NUM the breakpoint number of the first breakpoint we are |
3730 | stopped at. *BSP upon return is a bpstat which points to the | |
3731 | remaining breakpoints stopped at (but which is not guaranteed to be | |
3732 | good for anything but further calls to bpstat_num). | |
3733 | ||
8671a17b PA |
3734 | Return 0 if passed a bpstat which does not indicate any breakpoints. |
3735 | Return -1 if stopped at a breakpoint that has been deleted since | |
3736 | we set it. | |
3737 | Return 1 otherwise. */ | |
c906108c SS |
3738 | |
3739 | int | |
8671a17b | 3740 | bpstat_num (bpstat *bsp, int *num) |
c906108c SS |
3741 | { |
3742 | struct breakpoint *b; | |
3743 | ||
3744 | if ((*bsp) == NULL) | |
3745 | return 0; /* No more breakpoint values */ | |
8671a17b | 3746 | |
4a64f543 MS |
3747 | /* We assume we'll never have several bpstats that correspond to a |
3748 | single breakpoint -- otherwise, this function might return the | |
3749 | same number more than once and this will look ugly. */ | |
f431efe5 | 3750 | b = (*bsp)->breakpoint_at; |
8671a17b PA |
3751 | *bsp = (*bsp)->next; |
3752 | if (b == NULL) | |
3753 | return -1; /* breakpoint that's been deleted since */ | |
3754 | ||
3755 | *num = b->number; /* We have its number */ | |
3756 | return 1; | |
c906108c SS |
3757 | } |
3758 | ||
e93ca019 | 3759 | /* See breakpoint.h. */ |
c906108c SS |
3760 | |
3761 | void | |
e93ca019 | 3762 | bpstat_clear_actions (void) |
c906108c | 3763 | { |
e93ca019 JK |
3764 | struct thread_info *tp; |
3765 | bpstat bs; | |
3766 | ||
3767 | if (ptid_equal (inferior_ptid, null_ptid)) | |
3768 | return; | |
3769 | ||
3770 | tp = find_thread_ptid (inferior_ptid); | |
3771 | if (tp == NULL) | |
3772 | return; | |
3773 | ||
3774 | for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next) | |
c906108c | 3775 | { |
9add0f1b | 3776 | decref_counted_command_line (&bs->commands); |
abf85f46 | 3777 | |
c906108c SS |
3778 | if (bs->old_val != NULL) |
3779 | { | |
3780 | value_free (bs->old_val); | |
3781 | bs->old_val = NULL; | |
3782 | } | |
3783 | } | |
3784 | } | |
3785 | ||
f3b1572e PA |
3786 | /* Called when a command is about to proceed the inferior. */ |
3787 | ||
3788 | static void | |
3789 | breakpoint_about_to_proceed (void) | |
3790 | { | |
3791 | if (!ptid_equal (inferior_ptid, null_ptid)) | |
3792 | { | |
3793 | struct thread_info *tp = inferior_thread (); | |
3794 | ||
3795 | /* Allow inferior function calls in breakpoint commands to not | |
3796 | interrupt the command list. When the call finishes | |
3797 | successfully, the inferior will be standing at the same | |
3798 | breakpoint as if nothing happened. */ | |
16c381f0 | 3799 | if (tp->control.in_infcall) |
f3b1572e PA |
3800 | return; |
3801 | } | |
3802 | ||
3803 | breakpoint_proceeded = 1; | |
3804 | } | |
3805 | ||
4a64f543 MS |
3806 | /* Stub for cleaning up our state if we error-out of a breakpoint |
3807 | command. */ | |
c906108c | 3808 | static void |
4efb68b1 | 3809 | cleanup_executing_breakpoints (void *ignore) |
c906108c SS |
3810 | { |
3811 | executing_breakpoint_commands = 0; | |
3812 | } | |
3813 | ||
abf85f46 JK |
3814 | /* Return non-zero iff CMD as the first line of a command sequence is `silent' |
3815 | or its equivalent. */ | |
3816 | ||
3817 | static int | |
3818 | command_line_is_silent (struct command_line *cmd) | |
3819 | { | |
3820 | return cmd && (strcmp ("silent", cmd->line) == 0 | |
3821 | || (xdb_commands && strcmp ("Q", cmd->line) == 0)); | |
3822 | } | |
3823 | ||
4a64f543 MS |
3824 | /* Execute all the commands associated with all the breakpoints at |
3825 | this location. Any of these commands could cause the process to | |
3826 | proceed beyond this point, etc. We look out for such changes by | |
3827 | checking the global "breakpoint_proceeded" after each command. | |
c906108c | 3828 | |
347bddb7 PA |
3829 | Returns true if a breakpoint command resumed the inferior. In that |
3830 | case, it is the caller's responsibility to recall it again with the | |
3831 | bpstat of the current thread. */ | |
3832 | ||
3833 | static int | |
3834 | bpstat_do_actions_1 (bpstat *bsp) | |
c906108c SS |
3835 | { |
3836 | bpstat bs; | |
3837 | struct cleanup *old_chain; | |
347bddb7 | 3838 | int again = 0; |
c906108c SS |
3839 | |
3840 | /* Avoid endless recursion if a `source' command is contained | |
3841 | in bs->commands. */ | |
3842 | if (executing_breakpoint_commands) | |
347bddb7 | 3843 | return 0; |
c906108c SS |
3844 | |
3845 | executing_breakpoint_commands = 1; | |
3846 | old_chain = make_cleanup (cleanup_executing_breakpoints, 0); | |
3847 | ||
cf6c5ffb TT |
3848 | prevent_dont_repeat (); |
3849 | ||
4a64f543 | 3850 | /* This pointer will iterate over the list of bpstat's. */ |
c906108c SS |
3851 | bs = *bsp; |
3852 | ||
3853 | breakpoint_proceeded = 0; | |
3854 | for (; bs != NULL; bs = bs->next) | |
3855 | { | |
9add0f1b | 3856 | struct counted_command_line *ccmd; |
6c50ab1c JB |
3857 | struct command_line *cmd; |
3858 | struct cleanup *this_cmd_tree_chain; | |
3859 | ||
3860 | /* Take ownership of the BSP's command tree, if it has one. | |
3861 | ||
3862 | The command tree could legitimately contain commands like | |
3863 | 'step' and 'next', which call clear_proceed_status, which | |
3864 | frees stop_bpstat's command tree. To make sure this doesn't | |
3865 | free the tree we're executing out from under us, we need to | |
3866 | take ownership of the tree ourselves. Since a given bpstat's | |
3867 | commands are only executed once, we don't need to copy it; we | |
3868 | can clear the pointer in the bpstat, and make sure we free | |
3869 | the tree when we're done. */ | |
9add0f1b TT |
3870 | ccmd = bs->commands; |
3871 | bs->commands = NULL; | |
abf85f46 JK |
3872 | this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd); |
3873 | cmd = ccmd ? ccmd->commands : NULL; | |
3874 | if (command_line_is_silent (cmd)) | |
3875 | { | |
3876 | /* The action has been already done by bpstat_stop_status. */ | |
3877 | cmd = cmd->next; | |
3878 | } | |
6c50ab1c | 3879 | |
c906108c SS |
3880 | while (cmd != NULL) |
3881 | { | |
3882 | execute_control_command (cmd); | |
3883 | ||
3884 | if (breakpoint_proceeded) | |
3885 | break; | |
3886 | else | |
3887 | cmd = cmd->next; | |
3888 | } | |
6c50ab1c JB |
3889 | |
3890 | /* We can free this command tree now. */ | |
3891 | do_cleanups (this_cmd_tree_chain); | |
3892 | ||
c906108c | 3893 | if (breakpoint_proceeded) |
32c1e744 VP |
3894 | { |
3895 | if (target_can_async_p ()) | |
347bddb7 PA |
3896 | /* If we are in async mode, then the target might be still |
3897 | running, not stopped at any breakpoint, so nothing for | |
3898 | us to do here -- just return to the event loop. */ | |
3899 | ; | |
32c1e744 VP |
3900 | else |
3901 | /* In sync mode, when execute_control_command returns | |
3902 | we're already standing on the next breakpoint. | |
347bddb7 PA |
3903 | Breakpoint commands for that stop were not run, since |
3904 | execute_command does not run breakpoint commands -- | |
3905 | only command_line_handler does, but that one is not | |
3906 | involved in execution of breakpoint commands. So, we | |
3907 | can now execute breakpoint commands. It should be | |
3908 | noted that making execute_command do bpstat actions is | |
3909 | not an option -- in this case we'll have recursive | |
3910 | invocation of bpstat for each breakpoint with a | |
3911 | command, and can easily blow up GDB stack. Instead, we | |
3912 | return true, which will trigger the caller to recall us | |
3913 | with the new stop_bpstat. */ | |
3914 | again = 1; | |
3915 | break; | |
32c1e744 | 3916 | } |
c906108c | 3917 | } |
c2b8ed2c | 3918 | do_cleanups (old_chain); |
347bddb7 PA |
3919 | return again; |
3920 | } | |
3921 | ||
3922 | void | |
3923 | bpstat_do_actions (void) | |
3924 | { | |
353d1d73 JK |
3925 | struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup (); |
3926 | ||
347bddb7 PA |
3927 | /* Do any commands attached to breakpoint we are stopped at. */ |
3928 | while (!ptid_equal (inferior_ptid, null_ptid) | |
3929 | && target_has_execution | |
3930 | && !is_exited (inferior_ptid) | |
3931 | && !is_executing (inferior_ptid)) | |
3932 | /* Since in sync mode, bpstat_do_actions may resume the inferior, | |
3933 | and only return when it is stopped at the next breakpoint, we | |
3934 | keep doing breakpoint actions until it returns false to | |
3935 | indicate the inferior was not resumed. */ | |
16c381f0 | 3936 | if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat)) |
347bddb7 | 3937 | break; |
353d1d73 JK |
3938 | |
3939 | discard_cleanups (cleanup_if_error); | |
c906108c SS |
3940 | } |
3941 | ||
fa4727a6 DJ |
3942 | /* Print out the (old or new) value associated with a watchpoint. */ |
3943 | ||
3944 | static void | |
3945 | watchpoint_value_print (struct value *val, struct ui_file *stream) | |
3946 | { | |
3947 | if (val == NULL) | |
3948 | fprintf_unfiltered (stream, _("<unreadable>")); | |
3949 | else | |
79a45b7d TT |
3950 | { |
3951 | struct value_print_options opts; | |
3952 | get_user_print_options (&opts); | |
3953 | value_print (val, stream, &opts); | |
3954 | } | |
fa4727a6 DJ |
3955 | } |
3956 | ||
e514a9d6 | 3957 | /* Generic routine for printing messages indicating why we |
4a64f543 | 3958 | stopped. The behavior of this function depends on the value |
e514a9d6 JM |
3959 | 'print_it' in the bpstat structure. Under some circumstances we |
3960 | may decide not to print anything here and delegate the task to | |
4a64f543 | 3961 | normal_stop(). */ |
e514a9d6 JM |
3962 | |
3963 | static enum print_stop_action | |
3964 | print_bp_stop_message (bpstat bs) | |
3965 | { | |
3966 | switch (bs->print_it) | |
3967 | { | |
3968 | case print_it_noop: | |
4a64f543 | 3969 | /* Nothing should be printed for this bpstat entry. */ |
e514a9d6 JM |
3970 | return PRINT_UNKNOWN; |
3971 | break; | |
3972 | ||
3973 | case print_it_done: | |
3974 | /* We still want to print the frame, but we already printed the | |
4a64f543 | 3975 | relevant messages. */ |
e514a9d6 JM |
3976 | return PRINT_SRC_AND_LOC; |
3977 | break; | |
3978 | ||
3979 | case print_it_normal: | |
4f8d1dc6 | 3980 | { |
f431efe5 PA |
3981 | struct breakpoint *b = bs->breakpoint_at; |
3982 | ||
1a6a67de TJB |
3983 | /* bs->breakpoint_at can be NULL if it was a momentary breakpoint |
3984 | which has since been deleted. */ | |
3985 | if (b == NULL) | |
3986 | return PRINT_UNKNOWN; | |
3987 | ||
348d480f PA |
3988 | /* Normal case. Call the breakpoint's print_it method. */ |
3989 | return b->ops->print_it (bs); | |
4f8d1dc6 | 3990 | } |
348d480f | 3991 | break; |
3086aeae | 3992 | |
e514a9d6 | 3993 | default: |
8e65ff28 | 3994 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 3995 | _("print_bp_stop_message: unrecognized enum value")); |
e514a9d6 | 3996 | break; |
c906108c | 3997 | } |
c906108c SS |
3998 | } |
3999 | ||
edcc5120 TT |
4000 | /* A helper function that prints a shared library stopped event. */ |
4001 | ||
4002 | static void | |
4003 | print_solib_event (int is_catchpoint) | |
4004 | { | |
4005 | int any_deleted | |
4006 | = !VEC_empty (char_ptr, current_program_space->deleted_solibs); | |
4007 | int any_added | |
4008 | = !VEC_empty (so_list_ptr, current_program_space->added_solibs); | |
4009 | ||
4010 | if (!is_catchpoint) | |
4011 | { | |
4012 | if (any_added || any_deleted) | |
4013 | ui_out_text (current_uiout, | |
4014 | _("Stopped due to shared library event:\n")); | |
4015 | else | |
4016 | ui_out_text (current_uiout, | |
4017 | _("Stopped due to shared library event (no " | |
4018 | "libraries added or removed)\n")); | |
4019 | } | |
4020 | ||
4021 | if (ui_out_is_mi_like_p (current_uiout)) | |
4022 | ui_out_field_string (current_uiout, "reason", | |
4023 | async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT)); | |
4024 | ||
4025 | if (any_deleted) | |
4026 | { | |
4027 | struct cleanup *cleanup; | |
4028 | char *name; | |
4029 | int ix; | |
4030 | ||
4031 | ui_out_text (current_uiout, _(" Inferior unloaded ")); | |
4032 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4033 | "removed"); | |
4034 | for (ix = 0; | |
4035 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
4036 | ix, name); | |
4037 | ++ix) | |
4038 | { | |
4039 | if (ix > 0) | |
4040 | ui_out_text (current_uiout, " "); | |
4041 | ui_out_field_string (current_uiout, "library", name); | |
4042 | ui_out_text (current_uiout, "\n"); | |
4043 | } | |
4044 | ||
4045 | do_cleanups (cleanup); | |
4046 | } | |
4047 | ||
4048 | if (any_added) | |
4049 | { | |
4050 | struct so_list *iter; | |
4051 | int ix; | |
4052 | struct cleanup *cleanup; | |
4053 | ||
4054 | ui_out_text (current_uiout, _(" Inferior loaded ")); | |
4055 | cleanup = make_cleanup_ui_out_list_begin_end (current_uiout, | |
4056 | "added"); | |
4057 | for (ix = 0; | |
4058 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
4059 | ix, iter); | |
4060 | ++ix) | |
4061 | { | |
4062 | if (ix > 0) | |
4063 | ui_out_text (current_uiout, " "); | |
4064 | ui_out_field_string (current_uiout, "library", iter->so_name); | |
4065 | ui_out_text (current_uiout, "\n"); | |
4066 | } | |
4067 | ||
4068 | do_cleanups (cleanup); | |
4069 | } | |
4070 | } | |
4071 | ||
e514a9d6 JM |
4072 | /* Print a message indicating what happened. This is called from |
4073 | normal_stop(). The input to this routine is the head of the bpstat | |
36dfb11c TT |
4074 | list - a list of the eventpoints that caused this stop. KIND is |
4075 | the target_waitkind for the stopping event. This | |
e514a9d6 JM |
4076 | routine calls the generic print routine for printing a message |
4077 | about reasons for stopping. This will print (for example) the | |
4078 | "Breakpoint n," part of the output. The return value of this | |
4079 | routine is one of: | |
c906108c | 4080 | |
4a64f543 | 4081 | PRINT_UNKNOWN: Means we printed nothing. |
917317f4 | 4082 | PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent |
4a64f543 | 4083 | code to print the location. An example is |
c5aa993b JM |
4084 | "Breakpoint 1, " which should be followed by |
4085 | the location. | |
917317f4 | 4086 | PRINT_SRC_ONLY: Means we printed something, but there is no need |
c5aa993b JM |
4087 | to also print the location part of the message. |
4088 | An example is the catch/throw messages, which | |
4a64f543 | 4089 | don't require a location appended to the end. |
917317f4 | 4090 | PRINT_NOTHING: We have done some printing and we don't need any |
4a64f543 | 4091 | further info to be printed. */ |
c906108c | 4092 | |
917317f4 | 4093 | enum print_stop_action |
36dfb11c | 4094 | bpstat_print (bpstat bs, int kind) |
c906108c SS |
4095 | { |
4096 | int val; | |
c5aa993b | 4097 | |
c906108c | 4098 | /* Maybe another breakpoint in the chain caused us to stop. |
53a5351d JM |
4099 | (Currently all watchpoints go on the bpstat whether hit or not. |
4100 | That probably could (should) be changed, provided care is taken | |
c906108c | 4101 | with respect to bpstat_explains_signal). */ |
e514a9d6 JM |
4102 | for (; bs; bs = bs->next) |
4103 | { | |
4104 | val = print_bp_stop_message (bs); | |
4105 | if (val == PRINT_SRC_ONLY | |
4106 | || val == PRINT_SRC_AND_LOC | |
4107 | || val == PRINT_NOTHING) | |
4108 | return val; | |
4109 | } | |
c906108c | 4110 | |
36dfb11c TT |
4111 | /* If we had hit a shared library event breakpoint, |
4112 | print_bp_stop_message would print out this message. If we hit an | |
4113 | OS-level shared library event, do the same thing. */ | |
4114 | if (kind == TARGET_WAITKIND_LOADED) | |
4115 | { | |
edcc5120 | 4116 | print_solib_event (0); |
36dfb11c TT |
4117 | return PRINT_NOTHING; |
4118 | } | |
4119 | ||
e514a9d6 | 4120 | /* We reached the end of the chain, or we got a null BS to start |
4a64f543 | 4121 | with and nothing was printed. */ |
917317f4 | 4122 | return PRINT_UNKNOWN; |
c906108c SS |
4123 | } |
4124 | ||
4a64f543 MS |
4125 | /* Evaluate the expression EXP and return 1 if value is zero. This is |
4126 | used inside a catch_errors to evaluate the breakpoint condition. | |
4127 | The argument is a "struct expression *" that has been cast to a | |
4128 | "char *" to make it pass through catch_errors. */ | |
c906108c SS |
4129 | |
4130 | static int | |
4efb68b1 | 4131 | breakpoint_cond_eval (void *exp) |
c906108c | 4132 | { |
278cd55f | 4133 | struct value *mark = value_mark (); |
c5aa993b | 4134 | int i = !value_true (evaluate_expression ((struct expression *) exp)); |
cc59ec59 | 4135 | |
c906108c SS |
4136 | value_free_to_mark (mark); |
4137 | return i; | |
4138 | } | |
4139 | ||
5760d0ab | 4140 | /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */ |
c906108c SS |
4141 | |
4142 | static bpstat | |
5760d0ab | 4143 | bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer) |
c906108c SS |
4144 | { |
4145 | bpstat bs; | |
4146 | ||
4147 | bs = (bpstat) xmalloc (sizeof (*bs)); | |
5760d0ab JK |
4148 | bs->next = NULL; |
4149 | **bs_link_pointer = bs; | |
4150 | *bs_link_pointer = &bs->next; | |
f431efe5 PA |
4151 | bs->breakpoint_at = bl->owner; |
4152 | bs->bp_location_at = bl; | |
4153 | incref_bp_location (bl); | |
c906108c SS |
4154 | /* If the condition is false, etc., don't do the commands. */ |
4155 | bs->commands = NULL; | |
4156 | bs->old_val = NULL; | |
4157 | bs->print_it = print_it_normal; | |
4158 | return bs; | |
4159 | } | |
4160 | \f | |
d983da9c DJ |
4161 | /* The target has stopped with waitstatus WS. Check if any hardware |
4162 | watchpoints have triggered, according to the target. */ | |
4163 | ||
4164 | int | |
4165 | watchpoints_triggered (struct target_waitstatus *ws) | |
4166 | { | |
d92524f1 | 4167 | int stopped_by_watchpoint = target_stopped_by_watchpoint (); |
d983da9c DJ |
4168 | CORE_ADDR addr; |
4169 | struct breakpoint *b; | |
4170 | ||
4171 | if (!stopped_by_watchpoint) | |
4172 | { | |
4173 | /* We were not stopped by a watchpoint. Mark all watchpoints | |
4174 | as not triggered. */ | |
4175 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4176 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4177 | { |
4178 | struct watchpoint *w = (struct watchpoint *) b; | |
4179 | ||
4180 | w->watchpoint_triggered = watch_triggered_no; | |
4181 | } | |
d983da9c DJ |
4182 | |
4183 | return 0; | |
4184 | } | |
4185 | ||
4186 | if (!target_stopped_data_address (¤t_target, &addr)) | |
4187 | { | |
4188 | /* We were stopped by a watchpoint, but we don't know where. | |
4189 | Mark all watchpoints as unknown. */ | |
4190 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4191 | if (is_hardware_watchpoint (b)) |
3a5c3e22 PA |
4192 | { |
4193 | struct watchpoint *w = (struct watchpoint *) b; | |
4194 | ||
4195 | w->watchpoint_triggered = watch_triggered_unknown; | |
4196 | } | |
d983da9c DJ |
4197 | |
4198 | return stopped_by_watchpoint; | |
4199 | } | |
4200 | ||
4201 | /* The target could report the data address. Mark watchpoints | |
4202 | affected by this data address as triggered, and all others as not | |
4203 | triggered. */ | |
4204 | ||
4205 | ALL_BREAKPOINTS (b) | |
cc60f2e3 | 4206 | if (is_hardware_watchpoint (b)) |
d983da9c | 4207 | { |
3a5c3e22 | 4208 | struct watchpoint *w = (struct watchpoint *) b; |
a5606eee | 4209 | struct bp_location *loc; |
d983da9c | 4210 | |
3a5c3e22 | 4211 | w->watchpoint_triggered = watch_triggered_no; |
a5606eee | 4212 | for (loc = b->loc; loc; loc = loc->next) |
9c06b0b4 | 4213 | { |
3a5c3e22 | 4214 | if (is_masked_watchpoint (b)) |
9c06b0b4 | 4215 | { |
3a5c3e22 PA |
4216 | CORE_ADDR newaddr = addr & w->hw_wp_mask; |
4217 | CORE_ADDR start = loc->address & w->hw_wp_mask; | |
9c06b0b4 TJB |
4218 | |
4219 | if (newaddr == start) | |
4220 | { | |
3a5c3e22 | 4221 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4222 | break; |
4223 | } | |
4224 | } | |
4225 | /* Exact match not required. Within range is sufficient. */ | |
4226 | else if (target_watchpoint_addr_within_range (¤t_target, | |
4227 | addr, loc->address, | |
4228 | loc->length)) | |
4229 | { | |
3a5c3e22 | 4230 | w->watchpoint_triggered = watch_triggered_yes; |
9c06b0b4 TJB |
4231 | break; |
4232 | } | |
4233 | } | |
d983da9c DJ |
4234 | } |
4235 | ||
4236 | return 1; | |
4237 | } | |
4238 | ||
c906108c SS |
4239 | /* Possible return values for watchpoint_check (this can't be an enum |
4240 | because of check_errors). */ | |
4241 | /* The watchpoint has been deleted. */ | |
4242 | #define WP_DELETED 1 | |
4243 | /* The value has changed. */ | |
4244 | #define WP_VALUE_CHANGED 2 | |
4245 | /* The value has not changed. */ | |
4246 | #define WP_VALUE_NOT_CHANGED 3 | |
60e1c644 PA |
4247 | /* Ignore this watchpoint, no matter if the value changed or not. */ |
4248 | #define WP_IGNORE 4 | |
c906108c SS |
4249 | |
4250 | #define BP_TEMPFLAG 1 | |
4251 | #define BP_HARDWAREFLAG 2 | |
4252 | ||
4a64f543 MS |
4253 | /* Evaluate watchpoint condition expression and check if its value |
4254 | changed. | |
553e4c11 JB |
4255 | |
4256 | P should be a pointer to struct bpstat, but is defined as a void * | |
4257 | in order for this function to be usable with catch_errors. */ | |
c906108c SS |
4258 | |
4259 | static int | |
4efb68b1 | 4260 | watchpoint_check (void *p) |
c906108c SS |
4261 | { |
4262 | bpstat bs = (bpstat) p; | |
3a5c3e22 | 4263 | struct watchpoint *b; |
c906108c SS |
4264 | struct frame_info *fr; |
4265 | int within_current_scope; | |
4266 | ||
f431efe5 | 4267 | /* BS is built from an existing struct breakpoint. */ |
2bdf28a0 | 4268 | gdb_assert (bs->breakpoint_at != NULL); |
3a5c3e22 | 4269 | b = (struct watchpoint *) bs->breakpoint_at; |
d0fb5eae | 4270 | |
f6bc2008 PA |
4271 | /* If this is a local watchpoint, we only want to check if the |
4272 | watchpoint frame is in scope if the current thread is the thread | |
4273 | that was used to create the watchpoint. */ | |
4274 | if (!watchpoint_in_thread_scope (b)) | |
60e1c644 | 4275 | return WP_IGNORE; |
f6bc2008 | 4276 | |
c906108c SS |
4277 | if (b->exp_valid_block == NULL) |
4278 | within_current_scope = 1; | |
4279 | else | |
4280 | { | |
edb3359d DJ |
4281 | struct frame_info *frame = get_current_frame (); |
4282 | struct gdbarch *frame_arch = get_frame_arch (frame); | |
4283 | CORE_ADDR frame_pc = get_frame_pc (frame); | |
4284 | ||
4a64f543 MS |
4285 | /* in_function_epilogue_p() returns a non-zero value if we're |
4286 | still in the function but the stack frame has already been | |
4287 | invalidated. Since we can't rely on the values of local | |
4288 | variables after the stack has been destroyed, we are treating | |
4289 | the watchpoint in that state as `not changed' without further | |
4290 | checking. Don't mark watchpoints as changed if the current | |
4291 | frame is in an epilogue - even if they are in some other | |
4292 | frame, our view of the stack is likely to be wrong and | |
4293 | frame_find_by_id could error out. */ | |
a0f49112 | 4294 | if (gdbarch_in_function_epilogue_p (frame_arch, frame_pc)) |
60e1c644 | 4295 | return WP_IGNORE; |
a0f49112 | 4296 | |
101dcfbe | 4297 | fr = frame_find_by_id (b->watchpoint_frame); |
c906108c | 4298 | within_current_scope = (fr != NULL); |
69fbadd5 DJ |
4299 | |
4300 | /* If we've gotten confused in the unwinder, we might have | |
4301 | returned a frame that can't describe this variable. */ | |
edb3359d DJ |
4302 | if (within_current_scope) |
4303 | { | |
4304 | struct symbol *function; | |
4305 | ||
4306 | function = get_frame_function (fr); | |
4307 | if (function == NULL | |
4308 | || !contained_in (b->exp_valid_block, | |
4309 | SYMBOL_BLOCK_VALUE (function))) | |
4310 | within_current_scope = 0; | |
4311 | } | |
69fbadd5 | 4312 | |
edb3359d | 4313 | if (within_current_scope) |
c906108c SS |
4314 | /* If we end up stopping, the current frame will get selected |
4315 | in normal_stop. So this call to select_frame won't affect | |
4316 | the user. */ | |
0f7d239c | 4317 | select_frame (fr); |
c906108c | 4318 | } |
c5aa993b | 4319 | |
c906108c SS |
4320 | if (within_current_scope) |
4321 | { | |
4a64f543 MS |
4322 | /* We use value_{,free_to_}mark because it could be a *long* |
4323 | time before we return to the command level and call | |
4324 | free_all_values. We can't call free_all_values because we | |
4325 | might be in the middle of evaluating a function call. */ | |
c906108c | 4326 | |
0cf6dd15 | 4327 | int pc = 0; |
9c06b0b4 | 4328 | struct value *mark; |
fa4727a6 DJ |
4329 | struct value *new_val; |
4330 | ||
3a5c3e22 | 4331 | if (is_masked_watchpoint (&b->base)) |
9c06b0b4 TJB |
4332 | /* Since we don't know the exact trigger address (from |
4333 | stopped_data_address), just tell the user we've triggered | |
4334 | a mask watchpoint. */ | |
4335 | return WP_VALUE_CHANGED; | |
4336 | ||
4337 | mark = value_mark (); | |
0cf6dd15 | 4338 | fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL); |
218d2fc6 | 4339 | |
4a64f543 MS |
4340 | /* We use value_equal_contents instead of value_equal because |
4341 | the latter coerces an array to a pointer, thus comparing just | |
4342 | the address of the array instead of its contents. This is | |
4343 | not what we want. */ | |
fa4727a6 | 4344 | if ((b->val != NULL) != (new_val != NULL) |
218d2fc6 | 4345 | || (b->val != NULL && !value_equal_contents (b->val, new_val))) |
c906108c | 4346 | { |
fa4727a6 DJ |
4347 | if (new_val != NULL) |
4348 | { | |
4349 | release_value (new_val); | |
4350 | value_free_to_mark (mark); | |
4351 | } | |
c906108c SS |
4352 | bs->old_val = b->val; |
4353 | b->val = new_val; | |
fa4727a6 | 4354 | b->val_valid = 1; |
c906108c SS |
4355 | return WP_VALUE_CHANGED; |
4356 | } | |
4357 | else | |
4358 | { | |
60e1c644 | 4359 | /* Nothing changed. */ |
c906108c | 4360 | value_free_to_mark (mark); |
c906108c SS |
4361 | return WP_VALUE_NOT_CHANGED; |
4362 | } | |
4363 | } | |
4364 | else | |
4365 | { | |
79a45e25 PA |
4366 | struct ui_out *uiout = current_uiout; |
4367 | ||
c906108c | 4368 | /* This seems like the only logical thing to do because |
c5aa993b JM |
4369 | if we temporarily ignored the watchpoint, then when |
4370 | we reenter the block in which it is valid it contains | |
4371 | garbage (in the case of a function, it may have two | |
4372 | garbage values, one before and one after the prologue). | |
4373 | So we can't even detect the first assignment to it and | |
4374 | watch after that (since the garbage may or may not equal | |
4375 | the first value assigned). */ | |
348d480f PA |
4376 | /* We print all the stop information in |
4377 | breakpoint_ops->print_it, but in this case, by the time we | |
4378 | call breakpoint_ops->print_it this bp will be deleted | |
4379 | already. So we have no choice but print the information | |
4380 | here. */ | |
9dc5e2a9 | 4381 | if (ui_out_is_mi_like_p (uiout)) |
034dad6f BR |
4382 | ui_out_field_string |
4383 | (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE)); | |
8b93c638 | 4384 | ui_out_text (uiout, "\nWatchpoint "); |
3a5c3e22 | 4385 | ui_out_field_int (uiout, "wpnum", b->base.number); |
3e43a32a MS |
4386 | ui_out_text (uiout, |
4387 | " deleted because the program has left the block in\n\ | |
8b93c638 | 4388 | which its expression is valid.\n"); |
4ce44c66 | 4389 | |
cdac0397 | 4390 | /* Make sure the watchpoint's commands aren't executed. */ |
3a5c3e22 | 4391 | decref_counted_command_line (&b->base.commands); |
d0fb5eae | 4392 | watchpoint_del_at_next_stop (b); |
c906108c SS |
4393 | |
4394 | return WP_DELETED; | |
4395 | } | |
4396 | } | |
4397 | ||
18a18393 | 4398 | /* Return true if it looks like target has stopped due to hitting |
348d480f PA |
4399 | breakpoint location BL. This function does not check if we should |
4400 | stop, only if BL explains the stop. */ | |
4401 | ||
18a18393 | 4402 | static int |
6c95b8df | 4403 | bpstat_check_location (const struct bp_location *bl, |
09ac7c10 TT |
4404 | struct address_space *aspace, CORE_ADDR bp_addr, |
4405 | const struct target_waitstatus *ws) | |
18a18393 VP |
4406 | { |
4407 | struct breakpoint *b = bl->owner; | |
4408 | ||
348d480f | 4409 | /* BL is from an existing breakpoint. */ |
2bdf28a0 JK |
4410 | gdb_assert (b != NULL); |
4411 | ||
09ac7c10 | 4412 | return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws); |
18a18393 VP |
4413 | } |
4414 | ||
3a5c3e22 PA |
4415 | /* Determine if the watched values have actually changed, and we |
4416 | should stop. If not, set BS->stop to 0. */ | |
4417 | ||
18a18393 VP |
4418 | static void |
4419 | bpstat_check_watchpoint (bpstat bs) | |
4420 | { | |
2bdf28a0 | 4421 | const struct bp_location *bl; |
3a5c3e22 | 4422 | struct watchpoint *b; |
2bdf28a0 JK |
4423 | |
4424 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 4425 | bl = bs->bp_location_at; |
2bdf28a0 | 4426 | gdb_assert (bl != NULL); |
3a5c3e22 | 4427 | b = (struct watchpoint *) bs->breakpoint_at; |
2bdf28a0 | 4428 | gdb_assert (b != NULL); |
18a18393 | 4429 | |
18a18393 | 4430 | { |
18a18393 VP |
4431 | int must_check_value = 0; |
4432 | ||
3a5c3e22 | 4433 | if (b->base.type == bp_watchpoint) |
18a18393 VP |
4434 | /* For a software watchpoint, we must always check the |
4435 | watched value. */ | |
4436 | must_check_value = 1; | |
4437 | else if (b->watchpoint_triggered == watch_triggered_yes) | |
4438 | /* We have a hardware watchpoint (read, write, or access) | |
4439 | and the target earlier reported an address watched by | |
4440 | this watchpoint. */ | |
4441 | must_check_value = 1; | |
4442 | else if (b->watchpoint_triggered == watch_triggered_unknown | |
3a5c3e22 | 4443 | && b->base.type == bp_hardware_watchpoint) |
18a18393 VP |
4444 | /* We were stopped by a hardware watchpoint, but the target could |
4445 | not report the data address. We must check the watchpoint's | |
4446 | value. Access and read watchpoints are out of luck; without | |
4447 | a data address, we can't figure it out. */ | |
4448 | must_check_value = 1; | |
3a5c3e22 | 4449 | |
18a18393 VP |
4450 | if (must_check_value) |
4451 | { | |
3e43a32a MS |
4452 | char *message |
4453 | = xstrprintf ("Error evaluating expression for watchpoint %d\n", | |
3a5c3e22 | 4454 | b->base.number); |
18a18393 VP |
4455 | struct cleanup *cleanups = make_cleanup (xfree, message); |
4456 | int e = catch_errors (watchpoint_check, bs, message, | |
4457 | RETURN_MASK_ALL); | |
4458 | do_cleanups (cleanups); | |
4459 | switch (e) | |
4460 | { | |
4461 | case WP_DELETED: | |
4462 | /* We've already printed what needs to be printed. */ | |
4463 | bs->print_it = print_it_done; | |
4464 | /* Stop. */ | |
4465 | break; | |
60e1c644 PA |
4466 | case WP_IGNORE: |
4467 | bs->print_it = print_it_noop; | |
4468 | bs->stop = 0; | |
4469 | break; | |
18a18393 | 4470 | case WP_VALUE_CHANGED: |
3a5c3e22 | 4471 | if (b->base.type == bp_read_watchpoint) |
18a18393 | 4472 | { |
85d721b8 PA |
4473 | /* There are two cases to consider here: |
4474 | ||
4a64f543 | 4475 | 1. We're watching the triggered memory for reads. |
85d721b8 PA |
4476 | In that case, trust the target, and always report |
4477 | the watchpoint hit to the user. Even though | |
4478 | reads don't cause value changes, the value may | |
4479 | have changed since the last time it was read, and | |
4480 | since we're not trapping writes, we will not see | |
4481 | those, and as such we should ignore our notion of | |
4482 | old value. | |
4483 | ||
4a64f543 | 4484 | 2. We're watching the triggered memory for both |
85d721b8 PA |
4485 | reads and writes. There are two ways this may |
4486 | happen: | |
4487 | ||
4a64f543 | 4488 | 2.1. This is a target that can't break on data |
85d721b8 PA |
4489 | reads only, but can break on accesses (reads or |
4490 | writes), such as e.g., x86. We detect this case | |
4491 | at the time we try to insert read watchpoints. | |
4492 | ||
4a64f543 | 4493 | 2.2. Otherwise, the target supports read |
85d721b8 PA |
4494 | watchpoints, but, the user set an access or write |
4495 | watchpoint watching the same memory as this read | |
4496 | watchpoint. | |
4497 | ||
4498 | If we're watching memory writes as well as reads, | |
4499 | ignore watchpoint hits when we find that the | |
4500 | value hasn't changed, as reads don't cause | |
4501 | changes. This still gives false positives when | |
4502 | the program writes the same value to memory as | |
4503 | what there was already in memory (we will confuse | |
4504 | it for a read), but it's much better than | |
4505 | nothing. */ | |
4506 | ||
4507 | int other_write_watchpoint = 0; | |
4508 | ||
4509 | if (bl->watchpoint_type == hw_read) | |
4510 | { | |
4511 | struct breakpoint *other_b; | |
4512 | ||
4513 | ALL_BREAKPOINTS (other_b) | |
3a5c3e22 PA |
4514 | if (other_b->type == bp_hardware_watchpoint |
4515 | || other_b->type == bp_access_watchpoint) | |
85d721b8 | 4516 | { |
3a5c3e22 PA |
4517 | struct watchpoint *other_w = |
4518 | (struct watchpoint *) other_b; | |
4519 | ||
4520 | if (other_w->watchpoint_triggered | |
4521 | == watch_triggered_yes) | |
4522 | { | |
4523 | other_write_watchpoint = 1; | |
4524 | break; | |
4525 | } | |
85d721b8 PA |
4526 | } |
4527 | } | |
4528 | ||
4529 | if (other_write_watchpoint | |
4530 | || bl->watchpoint_type == hw_access) | |
4531 | { | |
4532 | /* We're watching the same memory for writes, | |
4533 | and the value changed since the last time we | |
4534 | updated it, so this trap must be for a write. | |
4535 | Ignore it. */ | |
4536 | bs->print_it = print_it_noop; | |
4537 | bs->stop = 0; | |
4538 | } | |
18a18393 VP |
4539 | } |
4540 | break; | |
4541 | case WP_VALUE_NOT_CHANGED: | |
3a5c3e22 PA |
4542 | if (b->base.type == bp_hardware_watchpoint |
4543 | || b->base.type == bp_watchpoint) | |
18a18393 VP |
4544 | { |
4545 | /* Don't stop: write watchpoints shouldn't fire if | |
4546 | the value hasn't changed. */ | |
4547 | bs->print_it = print_it_noop; | |
4548 | bs->stop = 0; | |
4549 | } | |
4550 | /* Stop. */ | |
4551 | break; | |
4552 | default: | |
4553 | /* Can't happen. */ | |
4554 | case 0: | |
4555 | /* Error from catch_errors. */ | |
3a5c3e22 | 4556 | printf_filtered (_("Watchpoint %d deleted.\n"), b->base.number); |
d0fb5eae | 4557 | watchpoint_del_at_next_stop (b); |
18a18393 VP |
4558 | /* We've already printed what needs to be printed. */ |
4559 | bs->print_it = print_it_done; | |
4560 | break; | |
4561 | } | |
4562 | } | |
4563 | else /* must_check_value == 0 */ | |
4564 | { | |
4565 | /* This is a case where some watchpoint(s) triggered, but | |
4566 | not at the address of this watchpoint, or else no | |
4567 | watchpoint triggered after all. So don't print | |
4568 | anything for this watchpoint. */ | |
4569 | bs->print_it = print_it_noop; | |
4570 | bs->stop = 0; | |
4571 | } | |
4572 | } | |
4573 | } | |
4574 | ||
4575 | ||
4576 | /* Check conditions (condition proper, frame, thread and ignore count) | |
4577 | of breakpoint referred to by BS. If we should not stop for this | |
4578 | breakpoint, set BS->stop to 0. */ | |
f431efe5 | 4579 | |
18a18393 VP |
4580 | static void |
4581 | bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid) | |
4582 | { | |
4583 | int thread_id = pid_to_thread_id (ptid); | |
2bdf28a0 JK |
4584 | const struct bp_location *bl; |
4585 | struct breakpoint *b; | |
4586 | ||
4587 | /* BS is built for existing struct breakpoint. */ | |
f431efe5 | 4588 | bl = bs->bp_location_at; |
2bdf28a0 | 4589 | gdb_assert (bl != NULL); |
f431efe5 | 4590 | b = bs->breakpoint_at; |
2bdf28a0 | 4591 | gdb_assert (b != NULL); |
18a18393 | 4592 | |
b775012e LM |
4593 | /* Even if the target evaluated the condition on its end and notified GDB, we |
4594 | need to do so again since GDB does not know if we stopped due to a | |
4595 | breakpoint or a single step breakpoint. */ | |
4596 | ||
18a18393 | 4597 | if (frame_id_p (b->frame_id) |
edb3359d | 4598 | && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ()))) |
18a18393 VP |
4599 | bs->stop = 0; |
4600 | else if (bs->stop) | |
4601 | { | |
4602 | int value_is_zero = 0; | |
60e1c644 PA |
4603 | struct expression *cond; |
4604 | ||
7371cf6d PM |
4605 | /* Evaluate Python breakpoints that have a "stop" |
4606 | method implemented. */ | |
4607 | if (b->py_bp_object) | |
4608 | bs->stop = gdbpy_should_stop (b->py_bp_object); | |
4609 | ||
60e1c644 | 4610 | if (is_watchpoint (b)) |
3a5c3e22 PA |
4611 | { |
4612 | struct watchpoint *w = (struct watchpoint *) b; | |
4613 | ||
4614 | cond = w->cond_exp; | |
4615 | } | |
60e1c644 PA |
4616 | else |
4617 | cond = bl->cond; | |
4618 | ||
f431efe5 | 4619 | if (cond && b->disposition != disp_del_at_next_stop) |
18a18393 | 4620 | { |
60e1c644 | 4621 | int within_current_scope = 1; |
3a5c3e22 | 4622 | struct watchpoint * w; |
60e1c644 | 4623 | |
c5bc3a77 DJ |
4624 | /* We use value_mark and value_free_to_mark because it could |
4625 | be a long time before we return to the command level and | |
4626 | call free_all_values. We can't call free_all_values | |
4627 | because we might be in the middle of evaluating a | |
4628 | function call. */ | |
4629 | struct value *mark = value_mark (); | |
4630 | ||
3a5c3e22 PA |
4631 | if (is_watchpoint (b)) |
4632 | w = (struct watchpoint *) b; | |
4633 | else | |
4634 | w = NULL; | |
4635 | ||
edb3359d DJ |
4636 | /* Need to select the frame, with all that implies so that |
4637 | the conditions will have the right context. Because we | |
4638 | use the frame, we will not see an inlined function's | |
4639 | variables when we arrive at a breakpoint at the start | |
4640 | of the inlined function; the current frame will be the | |
4641 | call site. */ | |
3a5c3e22 | 4642 | if (w == NULL || w->cond_exp_valid_block == NULL) |
60e1c644 PA |
4643 | select_frame (get_current_frame ()); |
4644 | else | |
4645 | { | |
4646 | struct frame_info *frame; | |
4647 | ||
4648 | /* For local watchpoint expressions, which particular | |
4649 | instance of a local is being watched matters, so we | |
4650 | keep track of the frame to evaluate the expression | |
4651 | in. To evaluate the condition however, it doesn't | |
4652 | really matter which instantiation of the function | |
4653 | where the condition makes sense triggers the | |
4654 | watchpoint. This allows an expression like "watch | |
4655 | global if q > 10" set in `func', catch writes to | |
4656 | global on all threads that call `func', or catch | |
4657 | writes on all recursive calls of `func' by a single | |
4658 | thread. We simply always evaluate the condition in | |
4659 | the innermost frame that's executing where it makes | |
4660 | sense to evaluate the condition. It seems | |
4661 | intuitive. */ | |
3a5c3e22 | 4662 | frame = block_innermost_frame (w->cond_exp_valid_block); |
60e1c644 PA |
4663 | if (frame != NULL) |
4664 | select_frame (frame); | |
4665 | else | |
4666 | within_current_scope = 0; | |
4667 | } | |
4668 | if (within_current_scope) | |
4669 | value_is_zero | |
4670 | = catch_errors (breakpoint_cond_eval, cond, | |
4671 | "Error in testing breakpoint condition:\n", | |
4672 | RETURN_MASK_ALL); | |
4673 | else | |
4674 | { | |
4675 | warning (_("Watchpoint condition cannot be tested " | |
4676 | "in the current scope")); | |
4677 | /* If we failed to set the right context for this | |
4678 | watchpoint, unconditionally report it. */ | |
4679 | value_is_zero = 0; | |
4680 | } | |
4a64f543 | 4681 | /* FIXME-someday, should give breakpoint #. */ |
c5bc3a77 | 4682 | value_free_to_mark (mark); |
18a18393 | 4683 | } |
60e1c644 PA |
4684 | |
4685 | if (cond && value_is_zero) | |
18a18393 VP |
4686 | { |
4687 | bs->stop = 0; | |
4688 | } | |
4689 | else if (b->thread != -1 && b->thread != thread_id) | |
4690 | { | |
4691 | bs->stop = 0; | |
4692 | } | |
4693 | else if (b->ignore_count > 0) | |
4694 | { | |
4695 | b->ignore_count--; | |
4696 | annotate_ignore_count_change (); | |
4697 | bs->stop = 0; | |
4a64f543 | 4698 | /* Increase the hit count even though we don't stop. */ |
18a18393 | 4699 | ++(b->hit_count); |
8d3788bd | 4700 | observer_notify_breakpoint_modified (b); |
18a18393 VP |
4701 | } |
4702 | } | |
4703 | } | |
4704 | ||
4705 | ||
9709f61c | 4706 | /* Get a bpstat associated with having just stopped at address |
d983da9c | 4707 | BP_ADDR in thread PTID. |
c906108c | 4708 | |
d983da9c | 4709 | Determine whether we stopped at a breakpoint, etc, or whether we |
4a64f543 MS |
4710 | don't understand this stop. Result is a chain of bpstat's such |
4711 | that: | |
c906108c | 4712 | |
c5aa993b | 4713 | if we don't understand the stop, the result is a null pointer. |
c906108c | 4714 | |
c5aa993b | 4715 | if we understand why we stopped, the result is not null. |
c906108c | 4716 | |
c5aa993b JM |
4717 | Each element of the chain refers to a particular breakpoint or |
4718 | watchpoint at which we have stopped. (We may have stopped for | |
4719 | several reasons concurrently.) | |
c906108c | 4720 | |
c5aa993b JM |
4721 | Each element of the chain has valid next, breakpoint_at, |
4722 | commands, FIXME??? fields. */ | |
c906108c SS |
4723 | |
4724 | bpstat | |
6c95b8df | 4725 | bpstat_stop_status (struct address_space *aspace, |
09ac7c10 TT |
4726 | CORE_ADDR bp_addr, ptid_t ptid, |
4727 | const struct target_waitstatus *ws) | |
c906108c | 4728 | { |
0d381245 | 4729 | struct breakpoint *b = NULL; |
afe38095 | 4730 | struct bp_location *bl; |
20874c92 | 4731 | struct bp_location *loc; |
5760d0ab JK |
4732 | /* First item of allocated bpstat's. */ |
4733 | bpstat bs_head = NULL, *bs_link = &bs_head; | |
c906108c | 4734 | /* Pointer to the last thing in the chain currently. */ |
5760d0ab | 4735 | bpstat bs; |
20874c92 | 4736 | int ix; |
429374b8 | 4737 | int need_remove_insert; |
f431efe5 | 4738 | int removed_any; |
c906108c | 4739 | |
f431efe5 PA |
4740 | /* First, build the bpstat chain with locations that explain a |
4741 | target stop, while being careful to not set the target running, | |
4742 | as that may invalidate locations (in particular watchpoint | |
4743 | locations are recreated). Resuming will happen here with | |
4744 | breakpoint conditions or watchpoint expressions that include | |
4745 | inferior function calls. */ | |
c5aa993b | 4746 | |
429374b8 JK |
4747 | ALL_BREAKPOINTS (b) |
4748 | { | |
4749 | if (!breakpoint_enabled (b) && b->enable_state != bp_permanent) | |
4750 | continue; | |
a5606eee | 4751 | |
429374b8 JK |
4752 | for (bl = b->loc; bl != NULL; bl = bl->next) |
4753 | { | |
4a64f543 MS |
4754 | /* For hardware watchpoints, we look only at the first |
4755 | location. The watchpoint_check function will work on the | |
4756 | entire expression, not the individual locations. For | |
4757 | read watchpoints, the watchpoints_triggered function has | |
4758 | checked all locations already. */ | |
429374b8 JK |
4759 | if (b->type == bp_hardware_watchpoint && bl != b->loc) |
4760 | break; | |
18a18393 | 4761 | |
429374b8 JK |
4762 | if (bl->shlib_disabled) |
4763 | continue; | |
c5aa993b | 4764 | |
09ac7c10 | 4765 | if (!bpstat_check_location (bl, aspace, bp_addr, ws)) |
429374b8 | 4766 | continue; |
c5aa993b | 4767 | |
4a64f543 MS |
4768 | /* Come here if it's a watchpoint, or if the break address |
4769 | matches. */ | |
c5aa993b | 4770 | |
4a64f543 MS |
4771 | bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to |
4772 | explain stop. */ | |
c5aa993b | 4773 | |
f431efe5 PA |
4774 | /* Assume we stop. Should we find a watchpoint that is not |
4775 | actually triggered, or if the condition of the breakpoint | |
4776 | evaluates as false, we'll reset 'stop' to 0. */ | |
429374b8 JK |
4777 | bs->stop = 1; |
4778 | bs->print = 1; | |
d983da9c | 4779 | |
f431efe5 PA |
4780 | /* If this is a scope breakpoint, mark the associated |
4781 | watchpoint as triggered so that we will handle the | |
4782 | out-of-scope event. We'll get to the watchpoint next | |
4783 | iteration. */ | |
d0fb5eae | 4784 | if (b->type == bp_watchpoint_scope && b->related_breakpoint != b) |
3a5c3e22 PA |
4785 | { |
4786 | struct watchpoint *w = (struct watchpoint *) b->related_breakpoint; | |
4787 | ||
4788 | w->watchpoint_triggered = watch_triggered_yes; | |
4789 | } | |
f431efe5 PA |
4790 | } |
4791 | } | |
4792 | ||
4793 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
4794 | { | |
f1310107 | 4795 | if (breakpoint_location_address_match (loc, aspace, bp_addr)) |
f431efe5 | 4796 | { |
5760d0ab | 4797 | bs = bpstat_alloc (loc, &bs_link); |
f431efe5 PA |
4798 | /* For hits of moribund locations, we should just proceed. */ |
4799 | bs->stop = 0; | |
4800 | bs->print = 0; | |
4801 | bs->print_it = print_it_noop; | |
4802 | } | |
4803 | } | |
4804 | ||
edcc5120 TT |
4805 | /* A bit of special processing for shlib breakpoints. We need to |
4806 | process solib loading here, so that the lists of loaded and | |
4807 | unloaded libraries are correct before we handle "catch load" and | |
4808 | "catch unload". */ | |
4809 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
4810 | { | |
5d268276 | 4811 | if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event) |
edcc5120 TT |
4812 | { |
4813 | handle_solib_event (); | |
4814 | break; | |
4815 | } | |
4816 | } | |
4817 | ||
f431efe5 PA |
4818 | /* Now go through the locations that caused the target to stop, and |
4819 | check whether we're interested in reporting this stop to higher | |
4820 | layers, or whether we should resume the target transparently. */ | |
4821 | ||
4822 | removed_any = 0; | |
4823 | ||
5760d0ab | 4824 | for (bs = bs_head; bs != NULL; bs = bs->next) |
f431efe5 PA |
4825 | { |
4826 | if (!bs->stop) | |
4827 | continue; | |
4828 | ||
f431efe5 | 4829 | b = bs->breakpoint_at; |
348d480f PA |
4830 | b->ops->check_status (bs); |
4831 | if (bs->stop) | |
28010a5d | 4832 | { |
348d480f | 4833 | bpstat_check_breakpoint_conditions (bs, ptid); |
f431efe5 | 4834 | |
429374b8 JK |
4835 | if (bs->stop) |
4836 | { | |
4837 | ++(b->hit_count); | |
8d3788bd | 4838 | observer_notify_breakpoint_modified (b); |
c906108c | 4839 | |
4a64f543 | 4840 | /* We will stop here. */ |
429374b8 JK |
4841 | if (b->disposition == disp_disable) |
4842 | { | |
816338b5 SS |
4843 | --(b->enable_count); |
4844 | if (b->enable_count <= 0 | |
4845 | && b->enable_state != bp_permanent) | |
429374b8 | 4846 | b->enable_state = bp_disabled; |
f431efe5 | 4847 | removed_any = 1; |
429374b8 JK |
4848 | } |
4849 | if (b->silent) | |
4850 | bs->print = 0; | |
4851 | bs->commands = b->commands; | |
9add0f1b | 4852 | incref_counted_command_line (bs->commands); |
abf85f46 JK |
4853 | if (command_line_is_silent (bs->commands |
4854 | ? bs->commands->commands : NULL)) | |
4855 | bs->print = 0; | |
429374b8 JK |
4856 | } |
4857 | ||
348d480f | 4858 | } |
a9b3a50f PA |
4859 | |
4860 | /* Print nothing for this entry if we don't stop or don't | |
4861 | print. */ | |
4862 | if (!bs->stop || !bs->print) | |
4863 | bs->print_it = print_it_noop; | |
429374b8 | 4864 | } |
876fa593 | 4865 | |
d983da9c DJ |
4866 | /* If we aren't stopping, the value of some hardware watchpoint may |
4867 | not have changed, but the intermediate memory locations we are | |
4868 | watching may have. Don't bother if we're stopping; this will get | |
4869 | done later. */ | |
d832cb68 | 4870 | need_remove_insert = 0; |
5760d0ab JK |
4871 | if (! bpstat_causes_stop (bs_head)) |
4872 | for (bs = bs_head; bs != NULL; bs = bs->next) | |
d983da9c | 4873 | if (!bs->stop |
f431efe5 PA |
4874 | && bs->breakpoint_at |
4875 | && is_hardware_watchpoint (bs->breakpoint_at)) | |
d983da9c | 4876 | { |
3a5c3e22 PA |
4877 | struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at; |
4878 | ||
4879 | update_watchpoint (w, 0 /* don't reparse. */); | |
d832cb68 | 4880 | need_remove_insert = 1; |
d983da9c DJ |
4881 | } |
4882 | ||
d832cb68 | 4883 | if (need_remove_insert) |
2d134ed3 | 4884 | update_global_location_list (1); |
f431efe5 PA |
4885 | else if (removed_any) |
4886 | update_global_location_list (0); | |
d832cb68 | 4887 | |
5760d0ab | 4888 | return bs_head; |
c906108c | 4889 | } |
628fe4e4 JK |
4890 | |
4891 | static void | |
4892 | handle_jit_event (void) | |
4893 | { | |
4894 | struct frame_info *frame; | |
4895 | struct gdbarch *gdbarch; | |
4896 | ||
4897 | /* Switch terminal for any messages produced by | |
4898 | breakpoint_re_set. */ | |
4899 | target_terminal_ours_for_output (); | |
4900 | ||
4901 | frame = get_current_frame (); | |
4902 | gdbarch = get_frame_arch (frame); | |
4903 | ||
4904 | jit_event_handler (gdbarch); | |
4905 | ||
4906 | target_terminal_inferior (); | |
4907 | } | |
4908 | ||
edcc5120 TT |
4909 | /* Handle an solib event by calling solib_add. */ |
4910 | ||
4911 | void | |
4912 | handle_solib_event (void) | |
4913 | { | |
4914 | clear_program_space_solib_cache (current_inferior ()->pspace); | |
4915 | ||
4916 | /* Check for any newly added shared libraries if we're supposed to | |
4917 | be adding them automatically. Switch terminal for any messages | |
4918 | produced by breakpoint_re_set. */ | |
4919 | target_terminal_ours_for_output (); | |
4920 | #ifdef SOLIB_ADD | |
4921 | SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add); | |
4922 | #else | |
4923 | solib_add (NULL, 0, ¤t_target, auto_solib_add); | |
4924 | #endif | |
4925 | target_terminal_inferior (); | |
4926 | } | |
4927 | ||
628fe4e4 JK |
4928 | /* Prepare WHAT final decision for infrun. */ |
4929 | ||
4930 | /* Decide what infrun needs to do with this bpstat. */ | |
4931 | ||
c906108c | 4932 | struct bpstat_what |
0e30163f | 4933 | bpstat_what (bpstat bs_head) |
c906108c | 4934 | { |
c906108c | 4935 | struct bpstat_what retval; |
628fe4e4 | 4936 | int jit_event = 0; |
0e30163f | 4937 | bpstat bs; |
c906108c | 4938 | |
628fe4e4 | 4939 | retval.main_action = BPSTAT_WHAT_KEEP_CHECKING; |
aa7d318d | 4940 | retval.call_dummy = STOP_NONE; |
186c406b | 4941 | retval.is_longjmp = 0; |
628fe4e4 | 4942 | |
0e30163f | 4943 | for (bs = bs_head; bs != NULL; bs = bs->next) |
c906108c | 4944 | { |
628fe4e4 JK |
4945 | /* Extract this BS's action. After processing each BS, we check |
4946 | if its action overrides all we've seem so far. */ | |
4947 | enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
4948 | enum bptype bptype; | |
4949 | ||
c906108c | 4950 | if (bs->breakpoint_at == NULL) |
628fe4e4 JK |
4951 | { |
4952 | /* I suspect this can happen if it was a momentary | |
4953 | breakpoint which has since been deleted. */ | |
4954 | bptype = bp_none; | |
4955 | } | |
20874c92 | 4956 | else |
f431efe5 | 4957 | bptype = bs->breakpoint_at->type; |
628fe4e4 JK |
4958 | |
4959 | switch (bptype) | |
c906108c SS |
4960 | { |
4961 | case bp_none: | |
628fe4e4 | 4962 | break; |
c906108c SS |
4963 | case bp_breakpoint: |
4964 | case bp_hardware_breakpoint: | |
4965 | case bp_until: | |
4966 | case bp_finish: | |
a9b3a50f | 4967 | case bp_shlib_event: |
c906108c SS |
4968 | if (bs->stop) |
4969 | { | |
4970 | if (bs->print) | |
628fe4e4 | 4971 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c906108c | 4972 | else |
628fe4e4 | 4973 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c SS |
4974 | } |
4975 | else | |
628fe4e4 | 4976 | this_action = BPSTAT_WHAT_SINGLE; |
c906108c SS |
4977 | break; |
4978 | case bp_watchpoint: | |
4979 | case bp_hardware_watchpoint: | |
4980 | case bp_read_watchpoint: | |
4981 | case bp_access_watchpoint: | |
4982 | if (bs->stop) | |
4983 | { | |
4984 | if (bs->print) | |
628fe4e4 | 4985 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c906108c | 4986 | else |
628fe4e4 | 4987 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c SS |
4988 | } |
4989 | else | |
628fe4e4 JK |
4990 | { |
4991 | /* There was a watchpoint, but we're not stopping. | |
4992 | This requires no further action. */ | |
4993 | } | |
c906108c SS |
4994 | break; |
4995 | case bp_longjmp: | |
186c406b | 4996 | case bp_exception: |
628fe4e4 | 4997 | this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME; |
186c406b | 4998 | retval.is_longjmp = bptype == bp_longjmp; |
c906108c SS |
4999 | break; |
5000 | case bp_longjmp_resume: | |
186c406b | 5001 | case bp_exception_resume: |
628fe4e4 | 5002 | this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME; |
186c406b | 5003 | retval.is_longjmp = bptype == bp_longjmp_resume; |
c906108c SS |
5004 | break; |
5005 | case bp_step_resume: | |
5006 | if (bs->stop) | |
628fe4e4 JK |
5007 | this_action = BPSTAT_WHAT_STEP_RESUME; |
5008 | else | |
c906108c | 5009 | { |
628fe4e4 JK |
5010 | /* It is for the wrong frame. */ |
5011 | this_action = BPSTAT_WHAT_SINGLE; | |
c906108c | 5012 | } |
c906108c | 5013 | break; |
2c03e5be PA |
5014 | case bp_hp_step_resume: |
5015 | if (bs->stop) | |
5016 | this_action = BPSTAT_WHAT_HP_STEP_RESUME; | |
5017 | else | |
5018 | { | |
5019 | /* It is for the wrong frame. */ | |
5020 | this_action = BPSTAT_WHAT_SINGLE; | |
5021 | } | |
5022 | break; | |
c906108c | 5023 | case bp_watchpoint_scope: |
c4093a6a | 5024 | case bp_thread_event: |
1900040c | 5025 | case bp_overlay_event: |
0fd8e87f | 5026 | case bp_longjmp_master: |
aa7d318d | 5027 | case bp_std_terminate_master: |
186c406b | 5028 | case bp_exception_master: |
628fe4e4 | 5029 | this_action = BPSTAT_WHAT_SINGLE; |
c4093a6a | 5030 | break; |
ce78b96d | 5031 | case bp_catchpoint: |
c5aa993b JM |
5032 | if (bs->stop) |
5033 | { | |
5034 | if (bs->print) | |
628fe4e4 | 5035 | this_action = BPSTAT_WHAT_STOP_NOISY; |
c5aa993b | 5036 | else |
628fe4e4 | 5037 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c5aa993b JM |
5038 | } |
5039 | else | |
628fe4e4 JK |
5040 | { |
5041 | /* There was a catchpoint, but we're not stopping. | |
5042 | This requires no further action. */ | |
5043 | } | |
5044 | break; | |
628fe4e4 JK |
5045 | case bp_jit_event: |
5046 | jit_event = 1; | |
5047 | this_action = BPSTAT_WHAT_SINGLE; | |
c5aa993b | 5048 | break; |
c906108c | 5049 | case bp_call_dummy: |
53a5351d JM |
5050 | /* Make sure the action is stop (silent or noisy), |
5051 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5052 | retval.call_dummy = STOP_STACK_DUMMY; |
628fe4e4 | 5053 | this_action = BPSTAT_WHAT_STOP_SILENT; |
aa7d318d TT |
5054 | break; |
5055 | case bp_std_terminate: | |
5056 | /* Make sure the action is stop (silent or noisy), | |
5057 | so infrun.c pops the dummy frame. */ | |
aa7d318d | 5058 | retval.call_dummy = STOP_STD_TERMINATE; |
628fe4e4 | 5059 | this_action = BPSTAT_WHAT_STOP_SILENT; |
c906108c | 5060 | break; |
1042e4c0 | 5061 | case bp_tracepoint: |
7a697b8d | 5062 | case bp_fast_tracepoint: |
0fb4aa4b | 5063 | case bp_static_tracepoint: |
1042e4c0 SS |
5064 | /* Tracepoint hits should not be reported back to GDB, and |
5065 | if one got through somehow, it should have been filtered | |
5066 | out already. */ | |
5067 | internal_error (__FILE__, __LINE__, | |
7a697b8d | 5068 | _("bpstat_what: tracepoint encountered")); |
0e30163f JK |
5069 | break; |
5070 | case bp_gnu_ifunc_resolver: | |
5071 | /* Step over it (and insert bp_gnu_ifunc_resolver_return). */ | |
5072 | this_action = BPSTAT_WHAT_SINGLE; | |
5073 | break; | |
5074 | case bp_gnu_ifunc_resolver_return: | |
5075 | /* The breakpoint will be removed, execution will restart from the | |
5076 | PC of the former breakpoint. */ | |
5077 | this_action = BPSTAT_WHAT_KEEP_CHECKING; | |
5078 | break; | |
628fe4e4 JK |
5079 | default: |
5080 | internal_error (__FILE__, __LINE__, | |
5081 | _("bpstat_what: unhandled bptype %d"), (int) bptype); | |
c906108c | 5082 | } |
628fe4e4 JK |
5083 | |
5084 | retval.main_action = max (retval.main_action, this_action); | |
c906108c | 5085 | } |
628fe4e4 | 5086 | |
0e30163f JK |
5087 | /* These operations may affect the bs->breakpoint_at state so they are |
5088 | delayed after MAIN_ACTION is decided above. */ | |
5089 | ||
628fe4e4 JK |
5090 | if (jit_event) |
5091 | { | |
5092 | if (debug_infrun) | |
5093 | fprintf_unfiltered (gdb_stdlog, "bpstat_what: bp_jit_event\n"); | |
5094 | ||
5095 | handle_jit_event (); | |
5096 | } | |
5097 | ||
0e30163f JK |
5098 | for (bs = bs_head; bs != NULL; bs = bs->next) |
5099 | { | |
5100 | struct breakpoint *b = bs->breakpoint_at; | |
5101 | ||
5102 | if (b == NULL) | |
5103 | continue; | |
5104 | switch (b->type) | |
5105 | { | |
5106 | case bp_gnu_ifunc_resolver: | |
5107 | gnu_ifunc_resolver_stop (b); | |
5108 | break; | |
5109 | case bp_gnu_ifunc_resolver_return: | |
5110 | gnu_ifunc_resolver_return_stop (b); | |
5111 | break; | |
5112 | } | |
5113 | } | |
5114 | ||
c906108c SS |
5115 | return retval; |
5116 | } | |
5117 | ||
5118 | /* Nonzero if we should step constantly (e.g. watchpoints on machines | |
5119 | without hardware support). This isn't related to a specific bpstat, | |
5120 | just to things like whether watchpoints are set. */ | |
5121 | ||
c5aa993b | 5122 | int |
fba45db2 | 5123 | bpstat_should_step (void) |
c906108c SS |
5124 | { |
5125 | struct breakpoint *b; | |
cc59ec59 | 5126 | |
c906108c | 5127 | ALL_BREAKPOINTS (b) |
717a8278 | 5128 | if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL) |
3172dc30 | 5129 | return 1; |
c906108c SS |
5130 | return 0; |
5131 | } | |
5132 | ||
67822962 PA |
5133 | int |
5134 | bpstat_causes_stop (bpstat bs) | |
5135 | { | |
5136 | for (; bs != NULL; bs = bs->next) | |
5137 | if (bs->stop) | |
5138 | return 1; | |
5139 | ||
5140 | return 0; | |
5141 | } | |
5142 | ||
c906108c | 5143 | \f |
c5aa993b | 5144 | |
170b53b2 UW |
5145 | /* Compute a string of spaces suitable to indent the next line |
5146 | so it starts at the position corresponding to the table column | |
5147 | named COL_NAME in the currently active table of UIOUT. */ | |
5148 | ||
5149 | static char * | |
5150 | wrap_indent_at_field (struct ui_out *uiout, const char *col_name) | |
5151 | { | |
5152 | static char wrap_indent[80]; | |
5153 | int i, total_width, width, align; | |
5154 | char *text; | |
5155 | ||
5156 | total_width = 0; | |
5157 | for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++) | |
5158 | { | |
5159 | if (strcmp (text, col_name) == 0) | |
5160 | { | |
5161 | gdb_assert (total_width < sizeof wrap_indent); | |
5162 | memset (wrap_indent, ' ', total_width); | |
5163 | wrap_indent[total_width] = 0; | |
5164 | ||
5165 | return wrap_indent; | |
5166 | } | |
5167 | ||
5168 | total_width += width + 1; | |
5169 | } | |
5170 | ||
5171 | return NULL; | |
5172 | } | |
5173 | ||
b775012e LM |
5174 | /* Determine if the locations of this breakpoint will have their conditions |
5175 | evaluated by the target, host or a mix of both. Returns the following: | |
5176 | ||
5177 | "host": Host evals condition. | |
5178 | "host or target": Host or Target evals condition. | |
5179 | "target": Target evals condition. | |
5180 | */ | |
5181 | ||
5182 | static const char * | |
5183 | bp_condition_evaluator (struct breakpoint *b) | |
5184 | { | |
5185 | struct bp_location *bl; | |
5186 | char host_evals = 0; | |
5187 | char target_evals = 0; | |
5188 | ||
5189 | if (!b) | |
5190 | return NULL; | |
5191 | ||
5192 | if (!is_breakpoint (b)) | |
5193 | return NULL; | |
5194 | ||
5195 | if (gdb_evaluates_breakpoint_condition_p () | |
5196 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5197 | return condition_evaluation_host; | |
5198 | ||
5199 | for (bl = b->loc; bl; bl = bl->next) | |
5200 | { | |
5201 | if (bl->cond_bytecode) | |
5202 | target_evals++; | |
5203 | else | |
5204 | host_evals++; | |
5205 | } | |
5206 | ||
5207 | if (host_evals && target_evals) | |
5208 | return condition_evaluation_both; | |
5209 | else if (target_evals) | |
5210 | return condition_evaluation_target; | |
5211 | else | |
5212 | return condition_evaluation_host; | |
5213 | } | |
5214 | ||
5215 | /* Determine the breakpoint location's condition evaluator. This is | |
5216 | similar to bp_condition_evaluator, but for locations. */ | |
5217 | ||
5218 | static const char * | |
5219 | bp_location_condition_evaluator (struct bp_location *bl) | |
5220 | { | |
5221 | if (bl && !is_breakpoint (bl->owner)) | |
5222 | return NULL; | |
5223 | ||
5224 | if (gdb_evaluates_breakpoint_condition_p () | |
5225 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
5226 | return condition_evaluation_host; | |
5227 | ||
5228 | if (bl && bl->cond_bytecode) | |
5229 | return condition_evaluation_target; | |
5230 | else | |
5231 | return condition_evaluation_host; | |
5232 | } | |
5233 | ||
859825b8 JK |
5234 | /* Print the LOC location out of the list of B->LOC locations. */ |
5235 | ||
170b53b2 UW |
5236 | static void |
5237 | print_breakpoint_location (struct breakpoint *b, | |
5238 | struct bp_location *loc) | |
0d381245 | 5239 | { |
79a45e25 | 5240 | struct ui_out *uiout = current_uiout; |
6c95b8df PA |
5241 | struct cleanup *old_chain = save_current_program_space (); |
5242 | ||
859825b8 JK |
5243 | if (loc != NULL && loc->shlib_disabled) |
5244 | loc = NULL; | |
5245 | ||
6c95b8df PA |
5246 | if (loc != NULL) |
5247 | set_current_program_space (loc->pspace); | |
5248 | ||
56435ebe TT |
5249 | if (b->display_canonical) |
5250 | ui_out_field_string (uiout, "what", b->addr_string); | |
f8eba3c6 | 5251 | else if (loc && loc->source_file) |
0d381245 VP |
5252 | { |
5253 | struct symbol *sym | |
5254 | = find_pc_sect_function (loc->address, loc->section); | |
5255 | if (sym) | |
5256 | { | |
5257 | ui_out_text (uiout, "in "); | |
5258 | ui_out_field_string (uiout, "func", | |
5259 | SYMBOL_PRINT_NAME (sym)); | |
170b53b2 UW |
5260 | ui_out_text (uiout, " "); |
5261 | ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what")); | |
5262 | ui_out_text (uiout, "at "); | |
0d381245 | 5263 | } |
f8eba3c6 | 5264 | ui_out_field_string (uiout, "file", loc->source_file); |
0d381245 VP |
5265 | ui_out_text (uiout, ":"); |
5266 | ||
5267 | if (ui_out_is_mi_like_p (uiout)) | |
5268 | { | |
5269 | struct symtab_and_line sal = find_pc_line (loc->address, 0); | |
5270 | char *fullname = symtab_to_fullname (sal.symtab); | |
5271 | ||
5272 | if (fullname) | |
5273 | ui_out_field_string (uiout, "fullname", fullname); | |
5274 | } | |
5275 | ||
f8eba3c6 | 5276 | ui_out_field_int (uiout, "line", loc->line_number); |
0d381245 | 5277 | } |
859825b8 | 5278 | else if (loc) |
0d381245 | 5279 | { |
f99d8bf4 PA |
5280 | struct ui_file *stb = mem_fileopen (); |
5281 | struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb); | |
170b53b2 | 5282 | |
f99d8bf4 | 5283 | print_address_symbolic (loc->gdbarch, loc->address, stb, |
22e722e1 | 5284 | demangle, ""); |
0d381245 | 5285 | ui_out_field_stream (uiout, "at", stb); |
170b53b2 UW |
5286 | |
5287 | do_cleanups (stb_chain); | |
0d381245 | 5288 | } |
859825b8 JK |
5289 | else |
5290 | ui_out_field_string (uiout, "pending", b->addr_string); | |
6c95b8df | 5291 | |
b775012e LM |
5292 | if (loc && is_breakpoint (b) |
5293 | && breakpoint_condition_evaluation_mode () == condition_evaluation_target | |
5294 | && bp_condition_evaluator (b) == condition_evaluation_both) | |
5295 | { | |
5296 | ui_out_text (uiout, " ("); | |
5297 | ui_out_field_string (uiout, "evaluated-by", | |
5298 | bp_location_condition_evaluator (loc)); | |
5299 | ui_out_text (uiout, ")"); | |
5300 | } | |
5301 | ||
6c95b8df | 5302 | do_cleanups (old_chain); |
0d381245 VP |
5303 | } |
5304 | ||
269b11a2 PA |
5305 | static const char * |
5306 | bptype_string (enum bptype type) | |
c906108c | 5307 | { |
c4093a6a JM |
5308 | struct ep_type_description |
5309 | { | |
5310 | enum bptype type; | |
5311 | char *description; | |
5312 | }; | |
5313 | static struct ep_type_description bptypes[] = | |
c906108c | 5314 | { |
c5aa993b JM |
5315 | {bp_none, "?deleted?"}, |
5316 | {bp_breakpoint, "breakpoint"}, | |
c906108c | 5317 | {bp_hardware_breakpoint, "hw breakpoint"}, |
c5aa993b JM |
5318 | {bp_until, "until"}, |
5319 | {bp_finish, "finish"}, | |
5320 | {bp_watchpoint, "watchpoint"}, | |
c906108c | 5321 | {bp_hardware_watchpoint, "hw watchpoint"}, |
c5aa993b JM |
5322 | {bp_read_watchpoint, "read watchpoint"}, |
5323 | {bp_access_watchpoint, "acc watchpoint"}, | |
5324 | {bp_longjmp, "longjmp"}, | |
5325 | {bp_longjmp_resume, "longjmp resume"}, | |
186c406b TT |
5326 | {bp_exception, "exception"}, |
5327 | {bp_exception_resume, "exception resume"}, | |
c5aa993b | 5328 | {bp_step_resume, "step resume"}, |
2c03e5be | 5329 | {bp_hp_step_resume, "high-priority step resume"}, |
c5aa993b JM |
5330 | {bp_watchpoint_scope, "watchpoint scope"}, |
5331 | {bp_call_dummy, "call dummy"}, | |
aa7d318d | 5332 | {bp_std_terminate, "std::terminate"}, |
c5aa993b | 5333 | {bp_shlib_event, "shlib events"}, |
c4093a6a | 5334 | {bp_thread_event, "thread events"}, |
1900040c | 5335 | {bp_overlay_event, "overlay events"}, |
0fd8e87f | 5336 | {bp_longjmp_master, "longjmp master"}, |
aa7d318d | 5337 | {bp_std_terminate_master, "std::terminate master"}, |
186c406b | 5338 | {bp_exception_master, "exception master"}, |
ce78b96d | 5339 | {bp_catchpoint, "catchpoint"}, |
1042e4c0 | 5340 | {bp_tracepoint, "tracepoint"}, |
7a697b8d | 5341 | {bp_fast_tracepoint, "fast tracepoint"}, |
0fb4aa4b | 5342 | {bp_static_tracepoint, "static tracepoint"}, |
4efc6507 | 5343 | {bp_jit_event, "jit events"}, |
0e30163f JK |
5344 | {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"}, |
5345 | {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"}, | |
c5aa993b | 5346 | }; |
269b11a2 PA |
5347 | |
5348 | if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0]))) | |
5349 | || ((int) type != bptypes[(int) type].type)) | |
5350 | internal_error (__FILE__, __LINE__, | |
5351 | _("bptypes table does not describe type #%d."), | |
5352 | (int) type); | |
5353 | ||
5354 | return bptypes[(int) type].description; | |
5355 | } | |
5356 | ||
5357 | /* Print B to gdb_stdout. */ | |
5358 | ||
5359 | static void | |
5360 | print_one_breakpoint_location (struct breakpoint *b, | |
5361 | struct bp_location *loc, | |
5362 | int loc_number, | |
5363 | struct bp_location **last_loc, | |
269b11a2 PA |
5364 | int allflag) |
5365 | { | |
5366 | struct command_line *l; | |
c2c6d25f | 5367 | static char bpenables[] = "nynny"; |
c906108c | 5368 | |
79a45e25 | 5369 | struct ui_out *uiout = current_uiout; |
0d381245 VP |
5370 | int header_of_multiple = 0; |
5371 | int part_of_multiple = (loc != NULL); | |
79a45b7d TT |
5372 | struct value_print_options opts; |
5373 | ||
5374 | get_user_print_options (&opts); | |
0d381245 VP |
5375 | |
5376 | gdb_assert (!loc || loc_number != 0); | |
4a64f543 MS |
5377 | /* See comment in print_one_breakpoint concerning treatment of |
5378 | breakpoints with single disabled location. */ | |
0d381245 VP |
5379 | if (loc == NULL |
5380 | && (b->loc != NULL | |
5381 | && (b->loc->next != NULL || !b->loc->enabled))) | |
5382 | header_of_multiple = 1; | |
5383 | if (loc == NULL) | |
5384 | loc = b->loc; | |
5385 | ||
c4093a6a JM |
5386 | annotate_record (); |
5387 | ||
5388 | /* 1 */ | |
5389 | annotate_field (0); | |
0d381245 VP |
5390 | if (part_of_multiple) |
5391 | { | |
5392 | char *formatted; | |
0c6773c1 | 5393 | formatted = xstrprintf ("%d.%d", b->number, loc_number); |
0d381245 VP |
5394 | ui_out_field_string (uiout, "number", formatted); |
5395 | xfree (formatted); | |
5396 | } | |
5397 | else | |
5398 | { | |
5399 | ui_out_field_int (uiout, "number", b->number); | |
5400 | } | |
c4093a6a JM |
5401 | |
5402 | /* 2 */ | |
5403 | annotate_field (1); | |
0d381245 VP |
5404 | if (part_of_multiple) |
5405 | ui_out_field_skip (uiout, "type"); | |
269b11a2 PA |
5406 | else |
5407 | ui_out_field_string (uiout, "type", bptype_string (b->type)); | |
c4093a6a JM |
5408 | |
5409 | /* 3 */ | |
5410 | annotate_field (2); | |
0d381245 VP |
5411 | if (part_of_multiple) |
5412 | ui_out_field_skip (uiout, "disp"); | |
5413 | else | |
2cec12e5 | 5414 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); |
0d381245 | 5415 | |
c4093a6a JM |
5416 | |
5417 | /* 4 */ | |
5418 | annotate_field (3); | |
0d381245 | 5419 | if (part_of_multiple) |
54e52265 | 5420 | ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n"); |
0d381245 | 5421 | else |
4a64f543 MS |
5422 | ui_out_field_fmt (uiout, "enabled", "%c", |
5423 | bpenables[(int) b->enable_state]); | |
54e52265 | 5424 | ui_out_spaces (uiout, 2); |
0d381245 | 5425 | |
c4093a6a JM |
5426 | |
5427 | /* 5 and 6 */ | |
3086aeae | 5428 | if (b->ops != NULL && b->ops->print_one != NULL) |
0d381245 | 5429 | { |
4a64f543 MS |
5430 | /* Although the print_one can possibly print all locations, |
5431 | calling it here is not likely to get any nice result. So, | |
5432 | make sure there's just one location. */ | |
0d381245 | 5433 | gdb_assert (b->loc == NULL || b->loc->next == NULL); |
a6d9a66e | 5434 | b->ops->print_one (b, last_loc); |
0d381245 | 5435 | } |
3086aeae DJ |
5436 | else |
5437 | switch (b->type) | |
5438 | { | |
5439 | case bp_none: | |
5440 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 | 5441 | _("print_one_breakpoint: bp_none encountered\n")); |
3086aeae | 5442 | break; |
c906108c | 5443 | |
3086aeae DJ |
5444 | case bp_watchpoint: |
5445 | case bp_hardware_watchpoint: | |
5446 | case bp_read_watchpoint: | |
5447 | case bp_access_watchpoint: | |
3a5c3e22 PA |
5448 | { |
5449 | struct watchpoint *w = (struct watchpoint *) b; | |
5450 | ||
5451 | /* Field 4, the address, is omitted (which makes the columns | |
5452 | not line up too nicely with the headers, but the effect | |
5453 | is relatively readable). */ | |
5454 | if (opts.addressprint) | |
5455 | ui_out_field_skip (uiout, "addr"); | |
5456 | annotate_field (5); | |
5457 | ui_out_field_string (uiout, "what", w->exp_string); | |
5458 | } | |
3086aeae DJ |
5459 | break; |
5460 | ||
3086aeae DJ |
5461 | case bp_breakpoint: |
5462 | case bp_hardware_breakpoint: | |
5463 | case bp_until: | |
5464 | case bp_finish: | |
5465 | case bp_longjmp: | |
5466 | case bp_longjmp_resume: | |
186c406b TT |
5467 | case bp_exception: |
5468 | case bp_exception_resume: | |
3086aeae | 5469 | case bp_step_resume: |
2c03e5be | 5470 | case bp_hp_step_resume: |
3086aeae DJ |
5471 | case bp_watchpoint_scope: |
5472 | case bp_call_dummy: | |
aa7d318d | 5473 | case bp_std_terminate: |
3086aeae DJ |
5474 | case bp_shlib_event: |
5475 | case bp_thread_event: | |
5476 | case bp_overlay_event: | |
0fd8e87f | 5477 | case bp_longjmp_master: |
aa7d318d | 5478 | case bp_std_terminate_master: |
186c406b | 5479 | case bp_exception_master: |
1042e4c0 | 5480 | case bp_tracepoint: |
7a697b8d | 5481 | case bp_fast_tracepoint: |
0fb4aa4b | 5482 | case bp_static_tracepoint: |
4efc6507 | 5483 | case bp_jit_event: |
0e30163f JK |
5484 | case bp_gnu_ifunc_resolver: |
5485 | case bp_gnu_ifunc_resolver_return: | |
79a45b7d | 5486 | if (opts.addressprint) |
3086aeae DJ |
5487 | { |
5488 | annotate_field (4); | |
54e52265 | 5489 | if (header_of_multiple) |
0d381245 | 5490 | ui_out_field_string (uiout, "addr", "<MULTIPLE>"); |
e9bbd7c5 | 5491 | else if (b->loc == NULL || loc->shlib_disabled) |
54e52265 | 5492 | ui_out_field_string (uiout, "addr", "<PENDING>"); |
0101ce28 | 5493 | else |
5af949e3 UW |
5494 | ui_out_field_core_addr (uiout, "addr", |
5495 | loc->gdbarch, loc->address); | |
3086aeae DJ |
5496 | } |
5497 | annotate_field (5); | |
0d381245 | 5498 | if (!header_of_multiple) |
170b53b2 | 5499 | print_breakpoint_location (b, loc); |
0d381245 | 5500 | if (b->loc) |
a6d9a66e | 5501 | *last_loc = b->loc; |
3086aeae DJ |
5502 | break; |
5503 | } | |
c906108c | 5504 | |
6c95b8df PA |
5505 | |
5506 | /* For backward compatibility, don't display inferiors unless there | |
5507 | are several. */ | |
5508 | if (loc != NULL | |
5509 | && !header_of_multiple | |
5510 | && (allflag | |
5511 | || (!gdbarch_has_global_breakpoints (target_gdbarch) | |
5512 | && (number_of_program_spaces () > 1 | |
5513 | || number_of_inferiors () > 1) | |
4a64f543 MS |
5514 | /* LOC is for existing B, it cannot be in |
5515 | moribund_locations and thus having NULL OWNER. */ | |
6c95b8df PA |
5516 | && loc->owner->type != bp_catchpoint))) |
5517 | { | |
5518 | struct inferior *inf; | |
5519 | int first = 1; | |
5520 | ||
5521 | for (inf = inferior_list; inf != NULL; inf = inf->next) | |
5522 | { | |
5523 | if (inf->pspace == loc->pspace) | |
5524 | { | |
5525 | if (first) | |
5526 | { | |
5527 | first = 0; | |
5528 | ui_out_text (uiout, " inf "); | |
5529 | } | |
5530 | else | |
5531 | ui_out_text (uiout, ", "); | |
5532 | ui_out_text (uiout, plongest (inf->num)); | |
5533 | } | |
5534 | } | |
5535 | } | |
5536 | ||
4a306c9a | 5537 | if (!part_of_multiple) |
c4093a6a | 5538 | { |
4a306c9a JB |
5539 | if (b->thread != -1) |
5540 | { | |
5541 | /* FIXME: This seems to be redundant and lost here; see the | |
4a64f543 | 5542 | "stop only in" line a little further down. */ |
4a306c9a JB |
5543 | ui_out_text (uiout, " thread "); |
5544 | ui_out_field_int (uiout, "thread", b->thread); | |
5545 | } | |
5546 | else if (b->task != 0) | |
5547 | { | |
5548 | ui_out_text (uiout, " task "); | |
5549 | ui_out_field_int (uiout, "task", b->task); | |
5550 | } | |
c4093a6a | 5551 | } |
f1310107 | 5552 | |
8b93c638 | 5553 | ui_out_text (uiout, "\n"); |
f1310107 | 5554 | |
348d480f | 5555 | if (!part_of_multiple) |
f1310107 TJB |
5556 | b->ops->print_one_detail (b, uiout); |
5557 | ||
0d381245 | 5558 | if (part_of_multiple && frame_id_p (b->frame_id)) |
c4093a6a JM |
5559 | { |
5560 | annotate_field (6); | |
8b93c638 | 5561 | ui_out_text (uiout, "\tstop only in stack frame at "); |
e5dd4106 | 5562 | /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside |
818dd999 | 5563 | the frame ID. */ |
5af949e3 UW |
5564 | ui_out_field_core_addr (uiout, "frame", |
5565 | b->gdbarch, b->frame_id.stack_addr); | |
8b93c638 | 5566 | ui_out_text (uiout, "\n"); |
c4093a6a JM |
5567 | } |
5568 | ||
28010a5d | 5569 | if (!part_of_multiple && b->cond_string) |
c4093a6a JM |
5570 | { |
5571 | annotate_field (7); | |
d77f58be | 5572 | if (is_tracepoint (b)) |
1042e4c0 SS |
5573 | ui_out_text (uiout, "\ttrace only if "); |
5574 | else | |
5575 | ui_out_text (uiout, "\tstop only if "); | |
0101ce28 | 5576 | ui_out_field_string (uiout, "cond", b->cond_string); |
b775012e LM |
5577 | |
5578 | /* Print whether the target is doing the breakpoint's condition | |
5579 | evaluation. If GDB is doing the evaluation, don't print anything. */ | |
5580 | if (is_breakpoint (b) | |
5581 | && breakpoint_condition_evaluation_mode () | |
5582 | == condition_evaluation_target) | |
5583 | { | |
5584 | ui_out_text (uiout, " ("); | |
5585 | ui_out_field_string (uiout, "evaluated-by", | |
5586 | bp_condition_evaluator (b)); | |
5587 | ui_out_text (uiout, " evals)"); | |
5588 | } | |
0101ce28 JJ |
5589 | ui_out_text (uiout, "\n"); |
5590 | } | |
5591 | ||
0d381245 | 5592 | if (!part_of_multiple && b->thread != -1) |
c4093a6a | 5593 | { |
4a64f543 | 5594 | /* FIXME should make an annotation for this. */ |
8b93c638 JM |
5595 | ui_out_text (uiout, "\tstop only in thread "); |
5596 | ui_out_field_int (uiout, "thread", b->thread); | |
5597 | ui_out_text (uiout, "\n"); | |
c4093a6a JM |
5598 | } |
5599 | ||
63c715c6 | 5600 | if (!part_of_multiple && b->hit_count) |
c4093a6a | 5601 | { |
4a64f543 | 5602 | /* FIXME should make an annotation for this. */ |
8b93c638 JM |
5603 | if (ep_is_catchpoint (b)) |
5604 | ui_out_text (uiout, "\tcatchpoint"); | |
f196051f SS |
5605 | else if (is_tracepoint (b)) |
5606 | ui_out_text (uiout, "\ttracepoint"); | |
8b93c638 JM |
5607 | else |
5608 | ui_out_text (uiout, "\tbreakpoint"); | |
5609 | ui_out_text (uiout, " already hit "); | |
5610 | ui_out_field_int (uiout, "times", b->hit_count); | |
5611 | if (b->hit_count == 1) | |
5612 | ui_out_text (uiout, " time\n"); | |
5613 | else | |
5614 | ui_out_text (uiout, " times\n"); | |
c4093a6a JM |
5615 | } |
5616 | ||
4a64f543 MS |
5617 | /* Output the count also if it is zero, but only if this is mi. |
5618 | FIXME: Should have a better test for this. */ | |
9dc5e2a9 | 5619 | if (ui_out_is_mi_like_p (uiout)) |
63c715c6 | 5620 | if (!part_of_multiple && b->hit_count == 0) |
fb40c209 | 5621 | ui_out_field_int (uiout, "times", b->hit_count); |
8b93c638 | 5622 | |
0d381245 | 5623 | if (!part_of_multiple && b->ignore_count) |
c4093a6a JM |
5624 | { |
5625 | annotate_field (8); | |
8b93c638 JM |
5626 | ui_out_text (uiout, "\tignore next "); |
5627 | ui_out_field_int (uiout, "ignore", b->ignore_count); | |
5628 | ui_out_text (uiout, " hits\n"); | |
c4093a6a | 5629 | } |
059fb39f | 5630 | |
816338b5 SS |
5631 | /* Note that an enable count of 1 corresponds to "enable once" |
5632 | behavior, which is reported by the combination of enablement and | |
5633 | disposition, so we don't need to mention it here. */ | |
5634 | if (!part_of_multiple && b->enable_count > 1) | |
5635 | { | |
5636 | annotate_field (8); | |
5637 | ui_out_text (uiout, "\tdisable after "); | |
5638 | /* Tweak the wording to clarify that ignore and enable counts | |
5639 | are distinct, and have additive effect. */ | |
5640 | if (b->ignore_count) | |
5641 | ui_out_text (uiout, "additional "); | |
5642 | else | |
5643 | ui_out_text (uiout, "next "); | |
5644 | ui_out_field_int (uiout, "enable", b->enable_count); | |
5645 | ui_out_text (uiout, " hits\n"); | |
5646 | } | |
5647 | ||
f196051f SS |
5648 | if (!part_of_multiple && is_tracepoint (b)) |
5649 | { | |
5650 | struct tracepoint *tp = (struct tracepoint *) b; | |
5651 | ||
5652 | if (tp->traceframe_usage) | |
5653 | { | |
5654 | ui_out_text (uiout, "\ttrace buffer usage "); | |
5655 | ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage); | |
5656 | ui_out_text (uiout, " bytes\n"); | |
5657 | } | |
5658 | } | |
5659 | ||
9add0f1b | 5660 | l = b->commands ? b->commands->commands : NULL; |
059fb39f | 5661 | if (!part_of_multiple && l) |
c4093a6a | 5662 | { |
3b31d625 EZ |
5663 | struct cleanup *script_chain; |
5664 | ||
c4093a6a | 5665 | annotate_field (9); |
3b31d625 | 5666 | script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script"); |
8b93c638 | 5667 | print_command_lines (uiout, l, 4); |
3b31d625 | 5668 | do_cleanups (script_chain); |
c4093a6a | 5669 | } |
d24317b4 | 5670 | |
d9b3f62e | 5671 | if (is_tracepoint (b)) |
1042e4c0 | 5672 | { |
d9b3f62e PA |
5673 | struct tracepoint *t = (struct tracepoint *) b; |
5674 | ||
5675 | if (!part_of_multiple && t->pass_count) | |
5676 | { | |
5677 | annotate_field (10); | |
5678 | ui_out_text (uiout, "\tpass count "); | |
5679 | ui_out_field_int (uiout, "pass", t->pass_count); | |
5680 | ui_out_text (uiout, " \n"); | |
5681 | } | |
1042e4c0 SS |
5682 | } |
5683 | ||
d24317b4 VP |
5684 | if (ui_out_is_mi_like_p (uiout) && !part_of_multiple) |
5685 | { | |
3a5c3e22 PA |
5686 | if (is_watchpoint (b)) |
5687 | { | |
5688 | struct watchpoint *w = (struct watchpoint *) b; | |
5689 | ||
5690 | ui_out_field_string (uiout, "original-location", w->exp_string); | |
5691 | } | |
5692 | else if (b->addr_string) | |
d24317b4 | 5693 | ui_out_field_string (uiout, "original-location", b->addr_string); |
d24317b4 | 5694 | } |
c4093a6a | 5695 | } |
c5aa993b | 5696 | |
0d381245 VP |
5697 | static void |
5698 | print_one_breakpoint (struct breakpoint *b, | |
4a64f543 | 5699 | struct bp_location **last_loc, |
6c95b8df | 5700 | int allflag) |
0d381245 | 5701 | { |
8d3788bd | 5702 | struct cleanup *bkpt_chain; |
79a45e25 | 5703 | struct ui_out *uiout = current_uiout; |
8d3788bd VP |
5704 | |
5705 | bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt"); | |
5706 | ||
12c5a436 | 5707 | print_one_breakpoint_location (b, NULL, 0, last_loc, allflag); |
8d3788bd | 5708 | do_cleanups (bkpt_chain); |
0d381245 VP |
5709 | |
5710 | /* If this breakpoint has custom print function, | |
5711 | it's already printed. Otherwise, print individual | |
5712 | locations, if any. */ | |
5713 | if (b->ops == NULL || b->ops->print_one == NULL) | |
5714 | { | |
4a64f543 MS |
5715 | /* If breakpoint has a single location that is disabled, we |
5716 | print it as if it had several locations, since otherwise it's | |
5717 | hard to represent "breakpoint enabled, location disabled" | |
5718 | situation. | |
5719 | ||
5720 | Note that while hardware watchpoints have several locations | |
a3be7890 | 5721 | internally, that's not a property exposed to user. */ |
0d381245 | 5722 | if (b->loc |
a5606eee | 5723 | && !is_hardware_watchpoint (b) |
8d3788bd | 5724 | && (b->loc->next || !b->loc->enabled)) |
0d381245 VP |
5725 | { |
5726 | struct bp_location *loc; | |
5727 | int n = 1; | |
8d3788bd | 5728 | |
0d381245 | 5729 | for (loc = b->loc; loc; loc = loc->next, ++n) |
8d3788bd VP |
5730 | { |
5731 | struct cleanup *inner2 = | |
5732 | make_cleanup_ui_out_tuple_begin_end (uiout, NULL); | |
5733 | print_one_breakpoint_location (b, loc, n, last_loc, allflag); | |
5734 | do_cleanups (inner2); | |
5735 | } | |
0d381245 VP |
5736 | } |
5737 | } | |
5738 | } | |
5739 | ||
a6d9a66e UW |
5740 | static int |
5741 | breakpoint_address_bits (struct breakpoint *b) | |
5742 | { | |
5743 | int print_address_bits = 0; | |
5744 | struct bp_location *loc; | |
5745 | ||
5746 | for (loc = b->loc; loc; loc = loc->next) | |
5747 | { | |
c7437ca6 PA |
5748 | int addr_bit; |
5749 | ||
5750 | /* Software watchpoints that aren't watching memory don't have | |
5751 | an address to print. */ | |
5752 | if (b->type == bp_watchpoint && loc->watchpoint_type == -1) | |
5753 | continue; | |
5754 | ||
5755 | addr_bit = gdbarch_addr_bit (loc->gdbarch); | |
a6d9a66e UW |
5756 | if (addr_bit > print_address_bits) |
5757 | print_address_bits = addr_bit; | |
5758 | } | |
5759 | ||
5760 | return print_address_bits; | |
5761 | } | |
0d381245 | 5762 | |
c4093a6a JM |
5763 | struct captured_breakpoint_query_args |
5764 | { | |
5765 | int bnum; | |
5766 | }; | |
c5aa993b | 5767 | |
c4093a6a | 5768 | static int |
2b65245e | 5769 | do_captured_breakpoint_query (struct ui_out *uiout, void *data) |
c4093a6a JM |
5770 | { |
5771 | struct captured_breakpoint_query_args *args = data; | |
52f0bd74 | 5772 | struct breakpoint *b; |
a6d9a66e | 5773 | struct bp_location *dummy_loc = NULL; |
cc59ec59 | 5774 | |
c4093a6a JM |
5775 | ALL_BREAKPOINTS (b) |
5776 | { | |
5777 | if (args->bnum == b->number) | |
c5aa993b | 5778 | { |
12c5a436 | 5779 | print_one_breakpoint (b, &dummy_loc, 0); |
c4093a6a | 5780 | return GDB_RC_OK; |
c5aa993b | 5781 | } |
c4093a6a JM |
5782 | } |
5783 | return GDB_RC_NONE; | |
5784 | } | |
c5aa993b | 5785 | |
c4093a6a | 5786 | enum gdb_rc |
4a64f543 MS |
5787 | gdb_breakpoint_query (struct ui_out *uiout, int bnum, |
5788 | char **error_message) | |
c4093a6a JM |
5789 | { |
5790 | struct captured_breakpoint_query_args args; | |
cc59ec59 | 5791 | |
c4093a6a JM |
5792 | args.bnum = bnum; |
5793 | /* For the moment we don't trust print_one_breakpoint() to not throw | |
4a64f543 | 5794 | an error. */ |
b0b13bb4 DJ |
5795 | if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, |
5796 | error_message, RETURN_MASK_ALL) < 0) | |
5797 | return GDB_RC_FAIL; | |
5798 | else | |
5799 | return GDB_RC_OK; | |
c4093a6a | 5800 | } |
c5aa993b | 5801 | |
09d682a4 TT |
5802 | /* Return true if this breakpoint was set by the user, false if it is |
5803 | internal or momentary. */ | |
5804 | ||
5805 | int | |
5806 | user_breakpoint_p (struct breakpoint *b) | |
5807 | { | |
46c6471b | 5808 | return b->number > 0; |
09d682a4 TT |
5809 | } |
5810 | ||
7f3b0473 | 5811 | /* Print information on user settable breakpoint (watchpoint, etc) |
d77f58be SS |
5812 | number BNUM. If BNUM is -1 print all user-settable breakpoints. |
5813 | If ALLFLAG is non-zero, include non-user-settable breakpoints. If | |
5814 | FILTER is non-NULL, call it on each breakpoint and only include the | |
5815 | ones for which it returns non-zero. Return the total number of | |
5816 | breakpoints listed. */ | |
c906108c | 5817 | |
d77f58be | 5818 | static int |
e5a67952 | 5819 | breakpoint_1 (char *args, int allflag, |
4a64f543 | 5820 | int (*filter) (const struct breakpoint *)) |
c4093a6a | 5821 | { |
52f0bd74 | 5822 | struct breakpoint *b; |
a6d9a66e | 5823 | struct bp_location *last_loc = NULL; |
7f3b0473 | 5824 | int nr_printable_breakpoints; |
3b31d625 | 5825 | struct cleanup *bkpttbl_chain; |
79a45b7d | 5826 | struct value_print_options opts; |
a6d9a66e | 5827 | int print_address_bits = 0; |
269b11a2 | 5828 | int print_type_col_width = 14; |
79a45e25 | 5829 | struct ui_out *uiout = current_uiout; |
269b11a2 | 5830 | |
79a45b7d TT |
5831 | get_user_print_options (&opts); |
5832 | ||
4a64f543 MS |
5833 | /* Compute the number of rows in the table, as well as the size |
5834 | required for address fields. */ | |
7f3b0473 AC |
5835 | nr_printable_breakpoints = 0; |
5836 | ALL_BREAKPOINTS (b) | |
e5a67952 MS |
5837 | { |
5838 | /* If we have a filter, only list the breakpoints it accepts. */ | |
5839 | if (filter && !filter (b)) | |
5840 | continue; | |
5841 | ||
5842 | /* If we have an "args" string, it is a list of breakpoints to | |
5843 | accept. Skip the others. */ | |
5844 | if (args != NULL && *args != '\0') | |
5845 | { | |
5846 | if (allflag && parse_and_eval_long (args) != b->number) | |
5847 | continue; | |
5848 | if (!allflag && !number_is_in_list (args, b->number)) | |
5849 | continue; | |
5850 | } | |
269b11a2 | 5851 | |
e5a67952 MS |
5852 | if (allflag || user_breakpoint_p (b)) |
5853 | { | |
5854 | int addr_bit, type_len; | |
a6d9a66e | 5855 | |
e5a67952 MS |
5856 | addr_bit = breakpoint_address_bits (b); |
5857 | if (addr_bit > print_address_bits) | |
5858 | print_address_bits = addr_bit; | |
269b11a2 | 5859 | |
e5a67952 MS |
5860 | type_len = strlen (bptype_string (b->type)); |
5861 | if (type_len > print_type_col_width) | |
5862 | print_type_col_width = type_len; | |
5863 | ||
5864 | nr_printable_breakpoints++; | |
5865 | } | |
5866 | } | |
7f3b0473 | 5867 | |
79a45b7d | 5868 | if (opts.addressprint) |
3b31d625 | 5869 | bkpttbl_chain |
3e43a32a MS |
5870 | = make_cleanup_ui_out_table_begin_end (uiout, 6, |
5871 | nr_printable_breakpoints, | |
3b31d625 | 5872 | "BreakpointTable"); |
8b93c638 | 5873 | else |
3b31d625 | 5874 | bkpttbl_chain |
3e43a32a MS |
5875 | = make_cleanup_ui_out_table_begin_end (uiout, 5, |
5876 | nr_printable_breakpoints, | |
3b31d625 | 5877 | "BreakpointTable"); |
8b93c638 | 5878 | |
7f3b0473 | 5879 | if (nr_printable_breakpoints > 0) |
d7faa9e7 AC |
5880 | annotate_breakpoints_headers (); |
5881 | if (nr_printable_breakpoints > 0) | |
5882 | annotate_field (0); | |
4a64f543 | 5883 | ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */ |
d7faa9e7 AC |
5884 | if (nr_printable_breakpoints > 0) |
5885 | annotate_field (1); | |
269b11a2 | 5886 | ui_out_table_header (uiout, print_type_col_width, ui_left, |
4a64f543 | 5887 | "type", "Type"); /* 2 */ |
d7faa9e7 AC |
5888 | if (nr_printable_breakpoints > 0) |
5889 | annotate_field (2); | |
4a64f543 | 5890 | ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */ |
d7faa9e7 AC |
5891 | if (nr_printable_breakpoints > 0) |
5892 | annotate_field (3); | |
54e52265 | 5893 | ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */ |
79a45b7d | 5894 | if (opts.addressprint) |
e5a67952 MS |
5895 | { |
5896 | if (nr_printable_breakpoints > 0) | |
5897 | annotate_field (4); | |
5898 | if (print_address_bits <= 32) | |
5899 | ui_out_table_header (uiout, 10, ui_left, | |
5900 | "addr", "Address"); /* 5 */ | |
5901 | else | |
5902 | ui_out_table_header (uiout, 18, ui_left, | |
5903 | "addr", "Address"); /* 5 */ | |
5904 | } | |
d7faa9e7 AC |
5905 | if (nr_printable_breakpoints > 0) |
5906 | annotate_field (5); | |
5907 | ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */ | |
5908 | ui_out_table_body (uiout); | |
5909 | if (nr_printable_breakpoints > 0) | |
5910 | annotate_breakpoints_table (); | |
7f3b0473 | 5911 | |
c4093a6a | 5912 | ALL_BREAKPOINTS (b) |
e5a67952 MS |
5913 | { |
5914 | QUIT; | |
5915 | /* If we have a filter, only list the breakpoints it accepts. */ | |
5916 | if (filter && !filter (b)) | |
5917 | continue; | |
5918 | ||
5919 | /* If we have an "args" string, it is a list of breakpoints to | |
5920 | accept. Skip the others. */ | |
5921 | ||
5922 | if (args != NULL && *args != '\0') | |
5923 | { | |
5924 | if (allflag) /* maintenance info breakpoint */ | |
5925 | { | |
5926 | if (parse_and_eval_long (args) != b->number) | |
5927 | continue; | |
5928 | } | |
5929 | else /* all others */ | |
5930 | { | |
5931 | if (!number_is_in_list (args, b->number)) | |
5932 | continue; | |
5933 | } | |
5934 | } | |
5935 | /* We only print out user settable breakpoints unless the | |
5936 | allflag is set. */ | |
5937 | if (allflag || user_breakpoint_p (b)) | |
12c5a436 | 5938 | print_one_breakpoint (b, &last_loc, allflag); |
e5a67952 MS |
5939 | } |
5940 | ||
3b31d625 | 5941 | do_cleanups (bkpttbl_chain); |
698384cd | 5942 | |
7f3b0473 | 5943 | if (nr_printable_breakpoints == 0) |
c906108c | 5944 | { |
4a64f543 MS |
5945 | /* If there's a filter, let the caller decide how to report |
5946 | empty list. */ | |
d77f58be SS |
5947 | if (!filter) |
5948 | { | |
e5a67952 | 5949 | if (args == NULL || *args == '\0') |
d77f58be SS |
5950 | ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n"); |
5951 | else | |
4a64f543 | 5952 | ui_out_message (uiout, 0, |
e5a67952 MS |
5953 | "No breakpoint or watchpoint matching '%s'.\n", |
5954 | args); | |
d77f58be | 5955 | } |
c906108c SS |
5956 | } |
5957 | else | |
c4093a6a | 5958 | { |
a6d9a66e UW |
5959 | if (last_loc && !server_command) |
5960 | set_next_address (last_loc->gdbarch, last_loc->address); | |
c4093a6a | 5961 | } |
c906108c | 5962 | |
4a64f543 | 5963 | /* FIXME? Should this be moved up so that it is only called when |
c4093a6a | 5964 | there have been breakpoints? */ |
c906108c | 5965 | annotate_breakpoints_table_end (); |
d77f58be SS |
5966 | |
5967 | return nr_printable_breakpoints; | |
c906108c SS |
5968 | } |
5969 | ||
ad443146 SS |
5970 | /* Display the value of default-collect in a way that is generally |
5971 | compatible with the breakpoint list. */ | |
5972 | ||
5973 | static void | |
5974 | default_collect_info (void) | |
5975 | { | |
79a45e25 PA |
5976 | struct ui_out *uiout = current_uiout; |
5977 | ||
ad443146 SS |
5978 | /* If it has no value (which is frequently the case), say nothing; a |
5979 | message like "No default-collect." gets in user's face when it's | |
5980 | not wanted. */ | |
5981 | if (!*default_collect) | |
5982 | return; | |
5983 | ||
5984 | /* The following phrase lines up nicely with per-tracepoint collect | |
5985 | actions. */ | |
5986 | ui_out_text (uiout, "default collect "); | |
5987 | ui_out_field_string (uiout, "default-collect", default_collect); | |
5988 | ui_out_text (uiout, " \n"); | |
5989 | } | |
5990 | ||
c906108c | 5991 | static void |
e5a67952 | 5992 | breakpoints_info (char *args, int from_tty) |
c906108c | 5993 | { |
e5a67952 | 5994 | breakpoint_1 (args, 0, NULL); |
ad443146 SS |
5995 | |
5996 | default_collect_info (); | |
d77f58be SS |
5997 | } |
5998 | ||
5999 | static void | |
e5a67952 | 6000 | watchpoints_info (char *args, int from_tty) |
d77f58be | 6001 | { |
e5a67952 | 6002 | int num_printed = breakpoint_1 (args, 0, is_watchpoint); |
79a45e25 | 6003 | struct ui_out *uiout = current_uiout; |
d77f58be SS |
6004 | |
6005 | if (num_printed == 0) | |
6006 | { | |
e5a67952 | 6007 | if (args == NULL || *args == '\0') |
d77f58be SS |
6008 | ui_out_message (uiout, 0, "No watchpoints.\n"); |
6009 | else | |
e5a67952 | 6010 | ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args); |
d77f58be | 6011 | } |
c906108c SS |
6012 | } |
6013 | ||
7a292a7a | 6014 | static void |
e5a67952 | 6015 | maintenance_info_breakpoints (char *args, int from_tty) |
c906108c | 6016 | { |
e5a67952 | 6017 | breakpoint_1 (args, 1, NULL); |
ad443146 SS |
6018 | |
6019 | default_collect_info (); | |
c906108c SS |
6020 | } |
6021 | ||
0d381245 | 6022 | static int |
714835d5 | 6023 | breakpoint_has_pc (struct breakpoint *b, |
6c95b8df | 6024 | struct program_space *pspace, |
714835d5 | 6025 | CORE_ADDR pc, struct obj_section *section) |
0d381245 VP |
6026 | { |
6027 | struct bp_location *bl = b->loc; | |
cc59ec59 | 6028 | |
0d381245 VP |
6029 | for (; bl; bl = bl->next) |
6030 | { | |
6c95b8df PA |
6031 | if (bl->pspace == pspace |
6032 | && bl->address == pc | |
0d381245 VP |
6033 | && (!overlay_debugging || bl->section == section)) |
6034 | return 1; | |
6035 | } | |
6036 | return 0; | |
6037 | } | |
6038 | ||
672f9b60 | 6039 | /* Print a message describing any user-breakpoints set at PC. This |
6c95b8df PA |
6040 | concerns with logical breakpoints, so we match program spaces, not |
6041 | address spaces. */ | |
c906108c SS |
6042 | |
6043 | static void | |
6c95b8df PA |
6044 | describe_other_breakpoints (struct gdbarch *gdbarch, |
6045 | struct program_space *pspace, CORE_ADDR pc, | |
5af949e3 | 6046 | struct obj_section *section, int thread) |
c906108c | 6047 | { |
52f0bd74 AC |
6048 | int others = 0; |
6049 | struct breakpoint *b; | |
c906108c SS |
6050 | |
6051 | ALL_BREAKPOINTS (b) | |
672f9b60 KP |
6052 | others += (user_breakpoint_p (b) |
6053 | && breakpoint_has_pc (b, pspace, pc, section)); | |
c906108c SS |
6054 | if (others > 0) |
6055 | { | |
a3f17187 AC |
6056 | if (others == 1) |
6057 | printf_filtered (_("Note: breakpoint ")); | |
6058 | else /* if (others == ???) */ | |
6059 | printf_filtered (_("Note: breakpoints ")); | |
c906108c | 6060 | ALL_BREAKPOINTS (b) |
672f9b60 | 6061 | if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section)) |
0d381245 VP |
6062 | { |
6063 | others--; | |
6064 | printf_filtered ("%d", b->number); | |
6065 | if (b->thread == -1 && thread != -1) | |
6066 | printf_filtered (" (all threads)"); | |
6067 | else if (b->thread != -1) | |
6068 | printf_filtered (" (thread %d)", b->thread); | |
6069 | printf_filtered ("%s%s ", | |
059fb39f | 6070 | ((b->enable_state == bp_disabled |
f8eba3c6 | 6071 | || b->enable_state == bp_call_disabled) |
0d381245 VP |
6072 | ? " (disabled)" |
6073 | : b->enable_state == bp_permanent | |
6074 | ? " (permanent)" | |
6075 | : ""), | |
6076 | (others > 1) ? "," | |
6077 | : ((others == 1) ? " and" : "")); | |
6078 | } | |
a3f17187 | 6079 | printf_filtered (_("also set at pc ")); |
5af949e3 | 6080 | fputs_filtered (paddress (gdbarch, pc), gdb_stdout); |
c906108c SS |
6081 | printf_filtered (".\n"); |
6082 | } | |
6083 | } | |
6084 | \f | |
c906108c | 6085 | |
e4f237da KB |
6086 | /* Return true iff it is meaningful to use the address member of |
6087 | BPT. For some breakpoint types, the address member is irrelevant | |
6088 | and it makes no sense to attempt to compare it to other addresses | |
6089 | (or use it for any other purpose either). | |
6090 | ||
4a64f543 MS |
6091 | More specifically, each of the following breakpoint types will |
6092 | always have a zero valued address and we don't want to mark | |
6093 | breakpoints of any of these types to be a duplicate of an actual | |
6094 | breakpoint at address zero: | |
e4f237da KB |
6095 | |
6096 | bp_watchpoint | |
2d134ed3 PA |
6097 | bp_catchpoint |
6098 | ||
6099 | */ | |
e4f237da KB |
6100 | |
6101 | static int | |
6102 | breakpoint_address_is_meaningful (struct breakpoint *bpt) | |
6103 | { | |
6104 | enum bptype type = bpt->type; | |
6105 | ||
2d134ed3 PA |
6106 | return (type != bp_watchpoint && type != bp_catchpoint); |
6107 | } | |
6108 | ||
6109 | /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns | |
6110 | true if LOC1 and LOC2 represent the same watchpoint location. */ | |
6111 | ||
6112 | static int | |
4a64f543 MS |
6113 | watchpoint_locations_match (struct bp_location *loc1, |
6114 | struct bp_location *loc2) | |
2d134ed3 | 6115 | { |
3a5c3e22 PA |
6116 | struct watchpoint *w1 = (struct watchpoint *) loc1->owner; |
6117 | struct watchpoint *w2 = (struct watchpoint *) loc2->owner; | |
6118 | ||
6119 | /* Both of them must exist. */ | |
6120 | gdb_assert (w1 != NULL); | |
6121 | gdb_assert (w2 != NULL); | |
2bdf28a0 | 6122 | |
4a64f543 MS |
6123 | /* If the target can evaluate the condition expression in hardware, |
6124 | then we we need to insert both watchpoints even if they are at | |
6125 | the same place. Otherwise the watchpoint will only trigger when | |
6126 | the condition of whichever watchpoint was inserted evaluates to | |
6127 | true, not giving a chance for GDB to check the condition of the | |
6128 | other watchpoint. */ | |
3a5c3e22 | 6129 | if ((w1->cond_exp |
4a64f543 MS |
6130 | && target_can_accel_watchpoint_condition (loc1->address, |
6131 | loc1->length, | |
0cf6dd15 | 6132 | loc1->watchpoint_type, |
3a5c3e22 PA |
6133 | w1->cond_exp)) |
6134 | || (w2->cond_exp | |
4a64f543 MS |
6135 | && target_can_accel_watchpoint_condition (loc2->address, |
6136 | loc2->length, | |
0cf6dd15 | 6137 | loc2->watchpoint_type, |
3a5c3e22 | 6138 | w2->cond_exp))) |
0cf6dd15 TJB |
6139 | return 0; |
6140 | ||
85d721b8 PA |
6141 | /* Note that this checks the owner's type, not the location's. In |
6142 | case the target does not support read watchpoints, but does | |
6143 | support access watchpoints, we'll have bp_read_watchpoint | |
6144 | watchpoints with hw_access locations. Those should be considered | |
6145 | duplicates of hw_read locations. The hw_read locations will | |
6146 | become hw_access locations later. */ | |
2d134ed3 PA |
6147 | return (loc1->owner->type == loc2->owner->type |
6148 | && loc1->pspace->aspace == loc2->pspace->aspace | |
6149 | && loc1->address == loc2->address | |
6150 | && loc1->length == loc2->length); | |
e4f237da KB |
6151 | } |
6152 | ||
6c95b8df PA |
6153 | /* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the |
6154 | same breakpoint location. In most targets, this can only be true | |
6155 | if ASPACE1 matches ASPACE2. On targets that have global | |
6156 | breakpoints, the address space doesn't really matter. */ | |
6157 | ||
6158 | static int | |
6159 | breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1, | |
6160 | struct address_space *aspace2, CORE_ADDR addr2) | |
6161 | { | |
6162 | return ((gdbarch_has_global_breakpoints (target_gdbarch) | |
6163 | || aspace1 == aspace2) | |
6164 | && addr1 == addr2); | |
6165 | } | |
6166 | ||
f1310107 TJB |
6167 | /* Returns true if {ASPACE2,ADDR2} falls within the range determined by |
6168 | {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1 | |
6169 | matches ASPACE2. On targets that have global breakpoints, the address | |
6170 | space doesn't really matter. */ | |
6171 | ||
6172 | static int | |
6173 | breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1, | |
6174 | int len1, struct address_space *aspace2, | |
6175 | CORE_ADDR addr2) | |
6176 | { | |
6177 | return ((gdbarch_has_global_breakpoints (target_gdbarch) | |
6178 | || aspace1 == aspace2) | |
6179 | && addr2 >= addr1 && addr2 < addr1 + len1); | |
6180 | } | |
6181 | ||
6182 | /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be | |
6183 | a ranged breakpoint. In most targets, a match happens only if ASPACE | |
6184 | matches the breakpoint's address space. On targets that have global | |
6185 | breakpoints, the address space doesn't really matter. */ | |
6186 | ||
6187 | static int | |
6188 | breakpoint_location_address_match (struct bp_location *bl, | |
6189 | struct address_space *aspace, | |
6190 | CORE_ADDR addr) | |
6191 | { | |
6192 | return (breakpoint_address_match (bl->pspace->aspace, bl->address, | |
6193 | aspace, addr) | |
6194 | || (bl->length | |
6195 | && breakpoint_address_match_range (bl->pspace->aspace, | |
6196 | bl->address, bl->length, | |
6197 | aspace, addr))); | |
6198 | } | |
6199 | ||
1e4d1764 YQ |
6200 | /* If LOC1 and LOC2's owners are not tracepoints, returns false directly. |
6201 | Then, if LOC1 and LOC2 represent the same tracepoint location, returns | |
6202 | true, otherwise returns false. */ | |
6203 | ||
6204 | static int | |
6205 | tracepoint_locations_match (struct bp_location *loc1, | |
6206 | struct bp_location *loc2) | |
6207 | { | |
6208 | if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner)) | |
6209 | /* Since tracepoint locations are never duplicated with others', tracepoint | |
6210 | locations at the same address of different tracepoints are regarded as | |
6211 | different locations. */ | |
6212 | return (loc1->address == loc2->address && loc1->owner == loc2->owner); | |
6213 | else | |
6214 | return 0; | |
6215 | } | |
6216 | ||
2d134ed3 PA |
6217 | /* Assuming LOC1 and LOC2's types' have meaningful target addresses |
6218 | (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2 | |
6219 | represent the same location. */ | |
6220 | ||
6221 | static int | |
4a64f543 MS |
6222 | breakpoint_locations_match (struct bp_location *loc1, |
6223 | struct bp_location *loc2) | |
2d134ed3 | 6224 | { |
2bdf28a0 JK |
6225 | int hw_point1, hw_point2; |
6226 | ||
6227 | /* Both of them must not be in moribund_locations. */ | |
6228 | gdb_assert (loc1->owner != NULL); | |
6229 | gdb_assert (loc2->owner != NULL); | |
6230 | ||
6231 | hw_point1 = is_hardware_watchpoint (loc1->owner); | |
6232 | hw_point2 = is_hardware_watchpoint (loc2->owner); | |
2d134ed3 PA |
6233 | |
6234 | if (hw_point1 != hw_point2) | |
6235 | return 0; | |
6236 | else if (hw_point1) | |
6237 | return watchpoint_locations_match (loc1, loc2); | |
1e4d1764 YQ |
6238 | else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner)) |
6239 | return tracepoint_locations_match (loc1, loc2); | |
2d134ed3 | 6240 | else |
f1310107 TJB |
6241 | /* We compare bp_location.length in order to cover ranged breakpoints. */ |
6242 | return (breakpoint_address_match (loc1->pspace->aspace, loc1->address, | |
6243 | loc2->pspace->aspace, loc2->address) | |
6244 | && loc1->length == loc2->length); | |
2d134ed3 PA |
6245 | } |
6246 | ||
76897487 KB |
6247 | static void |
6248 | breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr, | |
6249 | int bnum, int have_bnum) | |
6250 | { | |
f63fbe86 MS |
6251 | /* The longest string possibly returned by hex_string_custom |
6252 | is 50 chars. These must be at least that big for safety. */ | |
6253 | char astr1[64]; | |
6254 | char astr2[64]; | |
76897487 | 6255 | |
bb599908 PH |
6256 | strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8)); |
6257 | strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8)); | |
76897487 | 6258 | if (have_bnum) |
8a3fe4f8 | 6259 | warning (_("Breakpoint %d address previously adjusted from %s to %s."), |
76897487 KB |
6260 | bnum, astr1, astr2); |
6261 | else | |
8a3fe4f8 | 6262 | warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2); |
76897487 KB |
6263 | } |
6264 | ||
4a64f543 MS |
6265 | /* Adjust a breakpoint's address to account for architectural |
6266 | constraints on breakpoint placement. Return the adjusted address. | |
6267 | Note: Very few targets require this kind of adjustment. For most | |
6268 | targets, this function is simply the identity function. */ | |
76897487 KB |
6269 | |
6270 | static CORE_ADDR | |
a6d9a66e UW |
6271 | adjust_breakpoint_address (struct gdbarch *gdbarch, |
6272 | CORE_ADDR bpaddr, enum bptype bptype) | |
76897487 | 6273 | { |
a6d9a66e | 6274 | if (!gdbarch_adjust_breakpoint_address_p (gdbarch)) |
76897487 KB |
6275 | { |
6276 | /* Very few targets need any kind of breakpoint adjustment. */ | |
6277 | return bpaddr; | |
6278 | } | |
88f7da05 KB |
6279 | else if (bptype == bp_watchpoint |
6280 | || bptype == bp_hardware_watchpoint | |
6281 | || bptype == bp_read_watchpoint | |
6282 | || bptype == bp_access_watchpoint | |
fe798b75 | 6283 | || bptype == bp_catchpoint) |
88f7da05 KB |
6284 | { |
6285 | /* Watchpoints and the various bp_catch_* eventpoints should not | |
6286 | have their addresses modified. */ | |
6287 | return bpaddr; | |
6288 | } | |
76897487 KB |
6289 | else |
6290 | { | |
6291 | CORE_ADDR adjusted_bpaddr; | |
6292 | ||
6293 | /* Some targets have architectural constraints on the placement | |
6294 | of breakpoint instructions. Obtain the adjusted address. */ | |
a6d9a66e | 6295 | adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr); |
76897487 KB |
6296 | |
6297 | /* An adjusted breakpoint address can significantly alter | |
6298 | a user's expectations. Print a warning if an adjustment | |
6299 | is required. */ | |
6300 | if (adjusted_bpaddr != bpaddr) | |
6301 | breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0); | |
6302 | ||
6303 | return adjusted_bpaddr; | |
6304 | } | |
6305 | } | |
6306 | ||
28010a5d PA |
6307 | void |
6308 | init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops, | |
6309 | struct breakpoint *owner) | |
7cc221ef | 6310 | { |
7cc221ef DJ |
6311 | memset (loc, 0, sizeof (*loc)); |
6312 | ||
348d480f PA |
6313 | gdb_assert (ops != NULL); |
6314 | ||
28010a5d PA |
6315 | loc->ops = ops; |
6316 | loc->owner = owner; | |
511a6cd4 | 6317 | loc->cond = NULL; |
b775012e | 6318 | loc->cond_bytecode = NULL; |
0d381245 VP |
6319 | loc->shlib_disabled = 0; |
6320 | loc->enabled = 1; | |
e049a4b5 | 6321 | |
28010a5d | 6322 | switch (owner->type) |
e049a4b5 DJ |
6323 | { |
6324 | case bp_breakpoint: | |
6325 | case bp_until: | |
6326 | case bp_finish: | |
6327 | case bp_longjmp: | |
6328 | case bp_longjmp_resume: | |
186c406b TT |
6329 | case bp_exception: |
6330 | case bp_exception_resume: | |
e049a4b5 | 6331 | case bp_step_resume: |
2c03e5be | 6332 | case bp_hp_step_resume: |
e049a4b5 DJ |
6333 | case bp_watchpoint_scope: |
6334 | case bp_call_dummy: | |
aa7d318d | 6335 | case bp_std_terminate: |
e049a4b5 DJ |
6336 | case bp_shlib_event: |
6337 | case bp_thread_event: | |
6338 | case bp_overlay_event: | |
4efc6507 | 6339 | case bp_jit_event: |
0fd8e87f | 6340 | case bp_longjmp_master: |
aa7d318d | 6341 | case bp_std_terminate_master: |
186c406b | 6342 | case bp_exception_master: |
0e30163f JK |
6343 | case bp_gnu_ifunc_resolver: |
6344 | case bp_gnu_ifunc_resolver_return: | |
e049a4b5 | 6345 | loc->loc_type = bp_loc_software_breakpoint; |
b775012e | 6346 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6347 | break; |
6348 | case bp_hardware_breakpoint: | |
6349 | loc->loc_type = bp_loc_hardware_breakpoint; | |
b775012e | 6350 | mark_breakpoint_location_modified (loc); |
e049a4b5 DJ |
6351 | break; |
6352 | case bp_hardware_watchpoint: | |
6353 | case bp_read_watchpoint: | |
6354 | case bp_access_watchpoint: | |
6355 | loc->loc_type = bp_loc_hardware_watchpoint; | |
6356 | break; | |
6357 | case bp_watchpoint: | |
ce78b96d | 6358 | case bp_catchpoint: |
15c3d785 PA |
6359 | case bp_tracepoint: |
6360 | case bp_fast_tracepoint: | |
0fb4aa4b | 6361 | case bp_static_tracepoint: |
e049a4b5 DJ |
6362 | loc->loc_type = bp_loc_other; |
6363 | break; | |
6364 | default: | |
e2e0b3e5 | 6365 | internal_error (__FILE__, __LINE__, _("unknown breakpoint type")); |
e049a4b5 DJ |
6366 | } |
6367 | ||
f431efe5 | 6368 | loc->refc = 1; |
28010a5d PA |
6369 | } |
6370 | ||
6371 | /* Allocate a struct bp_location. */ | |
6372 | ||
6373 | static struct bp_location * | |
6374 | allocate_bp_location (struct breakpoint *bpt) | |
6375 | { | |
348d480f PA |
6376 | return bpt->ops->allocate_location (bpt); |
6377 | } | |
7cc221ef | 6378 | |
f431efe5 PA |
6379 | static void |
6380 | free_bp_location (struct bp_location *loc) | |
fe3f5fa8 | 6381 | { |
348d480f | 6382 | loc->ops->dtor (loc); |
fe3f5fa8 VP |
6383 | xfree (loc); |
6384 | } | |
6385 | ||
f431efe5 PA |
6386 | /* Increment reference count. */ |
6387 | ||
6388 | static void | |
6389 | incref_bp_location (struct bp_location *bl) | |
6390 | { | |
6391 | ++bl->refc; | |
6392 | } | |
6393 | ||
6394 | /* Decrement reference count. If the reference count reaches 0, | |
6395 | destroy the bp_location. Sets *BLP to NULL. */ | |
6396 | ||
6397 | static void | |
6398 | decref_bp_location (struct bp_location **blp) | |
6399 | { | |
0807b50c PA |
6400 | gdb_assert ((*blp)->refc > 0); |
6401 | ||
f431efe5 PA |
6402 | if (--(*blp)->refc == 0) |
6403 | free_bp_location (*blp); | |
6404 | *blp = NULL; | |
6405 | } | |
6406 | ||
346774a9 | 6407 | /* Add breakpoint B at the end of the global breakpoint chain. */ |
c906108c | 6408 | |
346774a9 PA |
6409 | static void |
6410 | add_to_breakpoint_chain (struct breakpoint *b) | |
c906108c | 6411 | { |
346774a9 | 6412 | struct breakpoint *b1; |
c906108c | 6413 | |
346774a9 PA |
6414 | /* Add this breakpoint to the end of the chain so that a list of |
6415 | breakpoints will come out in order of increasing numbers. */ | |
6416 | ||
6417 | b1 = breakpoint_chain; | |
6418 | if (b1 == 0) | |
6419 | breakpoint_chain = b; | |
6420 | else | |
6421 | { | |
6422 | while (b1->next) | |
6423 | b1 = b1->next; | |
6424 | b1->next = b; | |
6425 | } | |
6426 | } | |
6427 | ||
6428 | /* Initializes breakpoint B with type BPTYPE and no locations yet. */ | |
6429 | ||
6430 | static void | |
6431 | init_raw_breakpoint_without_location (struct breakpoint *b, | |
6432 | struct gdbarch *gdbarch, | |
28010a5d | 6433 | enum bptype bptype, |
c0a91b2b | 6434 | const struct breakpoint_ops *ops) |
346774a9 | 6435 | { |
c906108c | 6436 | memset (b, 0, sizeof (*b)); |
2219d63c | 6437 | |
348d480f PA |
6438 | gdb_assert (ops != NULL); |
6439 | ||
28010a5d | 6440 | b->ops = ops; |
4d28f7a8 | 6441 | b->type = bptype; |
a6d9a66e | 6442 | b->gdbarch = gdbarch; |
c906108c SS |
6443 | b->language = current_language->la_language; |
6444 | b->input_radix = input_radix; | |
6445 | b->thread = -1; | |
b5de0fa7 | 6446 | b->enable_state = bp_enabled; |
c906108c SS |
6447 | b->next = 0; |
6448 | b->silent = 0; | |
6449 | b->ignore_count = 0; | |
6450 | b->commands = NULL; | |
818dd999 | 6451 | b->frame_id = null_frame_id; |
0d381245 | 6452 | b->condition_not_parsed = 0; |
84f4c1fe | 6453 | b->py_bp_object = NULL; |
d0fb5eae | 6454 | b->related_breakpoint = b; |
346774a9 PA |
6455 | } |
6456 | ||
6457 | /* Helper to set_raw_breakpoint below. Creates a breakpoint | |
6458 | that has type BPTYPE and has no locations as yet. */ | |
346774a9 PA |
6459 | |
6460 | static struct breakpoint * | |
6461 | set_raw_breakpoint_without_location (struct gdbarch *gdbarch, | |
348d480f | 6462 | enum bptype bptype, |
c0a91b2b | 6463 | const struct breakpoint_ops *ops) |
346774a9 PA |
6464 | { |
6465 | struct breakpoint *b = XNEW (struct breakpoint); | |
6466 | ||
348d480f | 6467 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
c56053d2 | 6468 | add_to_breakpoint_chain (b); |
0d381245 VP |
6469 | return b; |
6470 | } | |
6471 | ||
0e30163f JK |
6472 | /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function |
6473 | resolutions should be made as the user specified the location explicitly | |
6474 | enough. */ | |
6475 | ||
0d381245 | 6476 | static void |
0e30163f | 6477 | set_breakpoint_location_function (struct bp_location *loc, int explicit_loc) |
0d381245 | 6478 | { |
2bdf28a0 JK |
6479 | gdb_assert (loc->owner != NULL); |
6480 | ||
0d381245 | 6481 | if (loc->owner->type == bp_breakpoint |
1042e4c0 | 6482 | || loc->owner->type == bp_hardware_breakpoint |
d77f58be | 6483 | || is_tracepoint (loc->owner)) |
0d381245 | 6484 | { |
0e30163f | 6485 | int is_gnu_ifunc; |
2c02bd72 | 6486 | const char *function_name; |
0e30163f | 6487 | |
2c02bd72 | 6488 | find_pc_partial_function_gnu_ifunc (loc->address, &function_name, |
0e30163f JK |
6489 | NULL, NULL, &is_gnu_ifunc); |
6490 | ||
6491 | if (is_gnu_ifunc && !explicit_loc) | |
6492 | { | |
6493 | struct breakpoint *b = loc->owner; | |
6494 | ||
6495 | gdb_assert (loc->pspace == current_program_space); | |
2c02bd72 | 6496 | if (gnu_ifunc_resolve_name (function_name, |
0e30163f JK |
6497 | &loc->requested_address)) |
6498 | { | |
6499 | /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */ | |
6500 | loc->address = adjust_breakpoint_address (loc->gdbarch, | |
6501 | loc->requested_address, | |
6502 | b->type); | |
6503 | } | |
6504 | else if (b->type == bp_breakpoint && b->loc == loc | |
6505 | && loc->next == NULL && b->related_breakpoint == b) | |
6506 | { | |
6507 | /* Create only the whole new breakpoint of this type but do not | |
6508 | mess more complicated breakpoints with multiple locations. */ | |
6509 | b->type = bp_gnu_ifunc_resolver; | |
6510 | } | |
6511 | } | |
6512 | ||
2c02bd72 DE |
6513 | if (function_name) |
6514 | loc->function_name = xstrdup (function_name); | |
0d381245 VP |
6515 | } |
6516 | } | |
6517 | ||
a6d9a66e | 6518 | /* Attempt to determine architecture of location identified by SAL. */ |
1bfeeb0f | 6519 | struct gdbarch * |
a6d9a66e UW |
6520 | get_sal_arch (struct symtab_and_line sal) |
6521 | { | |
6522 | if (sal.section) | |
6523 | return get_objfile_arch (sal.section->objfile); | |
6524 | if (sal.symtab) | |
6525 | return get_objfile_arch (sal.symtab->objfile); | |
6526 | ||
6527 | return NULL; | |
6528 | } | |
6529 | ||
346774a9 PA |
6530 | /* Low level routine for partially initializing a breakpoint of type |
6531 | BPTYPE. The newly created breakpoint's address, section, source | |
c56053d2 | 6532 | file name, and line number are provided by SAL. |
0d381245 VP |
6533 | |
6534 | It is expected that the caller will complete the initialization of | |
6535 | the newly created breakpoint struct as well as output any status | |
c56053d2 | 6536 | information regarding the creation of a new breakpoint. */ |
0d381245 | 6537 | |
346774a9 PA |
6538 | static void |
6539 | init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch, | |
28010a5d | 6540 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 6541 | const struct breakpoint_ops *ops) |
0d381245 | 6542 | { |
28010a5d | 6543 | init_raw_breakpoint_without_location (b, gdbarch, bptype, ops); |
346774a9 | 6544 | |
3742cc8b | 6545 | add_location_to_breakpoint (b, &sal); |
0d381245 | 6546 | |
6c95b8df PA |
6547 | if (bptype != bp_catchpoint) |
6548 | gdb_assert (sal.pspace != NULL); | |
6549 | ||
f8eba3c6 TT |
6550 | /* Store the program space that was used to set the breakpoint, |
6551 | except for ordinary breakpoints, which are independent of the | |
6552 | program space. */ | |
6553 | if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint) | |
6554 | b->pspace = sal.pspace; | |
0d381245 | 6555 | |
c906108c | 6556 | breakpoints_changed (); |
346774a9 | 6557 | } |
c906108c | 6558 | |
346774a9 PA |
6559 | /* set_raw_breakpoint is a low level routine for allocating and |
6560 | partially initializing a breakpoint of type BPTYPE. The newly | |
6561 | created breakpoint's address, section, source file name, and line | |
6562 | number are provided by SAL. The newly created and partially | |
6563 | initialized breakpoint is added to the breakpoint chain and | |
6564 | is also returned as the value of this function. | |
6565 | ||
6566 | It is expected that the caller will complete the initialization of | |
6567 | the newly created breakpoint struct as well as output any status | |
6568 | information regarding the creation of a new breakpoint. In | |
6569 | particular, set_raw_breakpoint does NOT set the breakpoint | |
6570 | number! Care should be taken to not allow an error to occur | |
6571 | prior to completing the initialization of the breakpoint. If this | |
6572 | should happen, a bogus breakpoint will be left on the chain. */ | |
6573 | ||
6574 | struct breakpoint * | |
6575 | set_raw_breakpoint (struct gdbarch *gdbarch, | |
348d480f | 6576 | struct symtab_and_line sal, enum bptype bptype, |
c0a91b2b | 6577 | const struct breakpoint_ops *ops) |
346774a9 PA |
6578 | { |
6579 | struct breakpoint *b = XNEW (struct breakpoint); | |
6580 | ||
348d480f | 6581 | init_raw_breakpoint (b, gdbarch, sal, bptype, ops); |
c56053d2 | 6582 | add_to_breakpoint_chain (b); |
c906108c SS |
6583 | return b; |
6584 | } | |
6585 | ||
c2c6d25f JM |
6586 | |
6587 | /* Note that the breakpoint object B describes a permanent breakpoint | |
6588 | instruction, hard-wired into the inferior's code. */ | |
6589 | void | |
6590 | make_breakpoint_permanent (struct breakpoint *b) | |
6591 | { | |
0d381245 | 6592 | struct bp_location *bl; |
cc59ec59 | 6593 | |
b5de0fa7 | 6594 | b->enable_state = bp_permanent; |
c2c6d25f | 6595 | |
4a64f543 MS |
6596 | /* By definition, permanent breakpoints are already present in the |
6597 | code. Mark all locations as inserted. For now, | |
6598 | make_breakpoint_permanent is called in just one place, so it's | |
6599 | hard to say if it's reasonable to have permanent breakpoint with | |
e5dd4106 | 6600 | multiple locations or not, but it's easy to implement. */ |
0d381245 VP |
6601 | for (bl = b->loc; bl; bl = bl->next) |
6602 | bl->inserted = 1; | |
c2c6d25f JM |
6603 | } |
6604 | ||
53a5351d | 6605 | /* Call this routine when stepping and nexting to enable a breakpoint |
186c406b TT |
6606 | if we do a longjmp() or 'throw' in TP. FRAME is the frame which |
6607 | initiated the operation. */ | |
c906108c SS |
6608 | |
6609 | void | |
186c406b | 6610 | set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame) |
c906108c | 6611 | { |
35df4500 | 6612 | struct breakpoint *b, *b_tmp; |
186c406b | 6613 | int thread = tp->num; |
0fd8e87f UW |
6614 | |
6615 | /* To avoid having to rescan all objfile symbols at every step, | |
6616 | we maintain a list of continually-inserted but always disabled | |
6617 | longjmp "master" breakpoints. Here, we simply create momentary | |
6618 | clones of those and enable them for the requested thread. */ | |
35df4500 | 6619 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df | 6620 | if (b->pspace == current_program_space |
186c406b TT |
6621 | && (b->type == bp_longjmp_master |
6622 | || b->type == bp_exception_master)) | |
0fd8e87f | 6623 | { |
06edf0c0 PA |
6624 | enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception; |
6625 | struct breakpoint *clone; | |
cc59ec59 | 6626 | |
06edf0c0 PA |
6627 | clone = momentary_breakpoint_from_master (b, type, |
6628 | &momentary_breakpoint_ops); | |
0fd8e87f UW |
6629 | clone->thread = thread; |
6630 | } | |
186c406b TT |
6631 | |
6632 | tp->initiating_frame = frame; | |
c906108c SS |
6633 | } |
6634 | ||
611c83ae | 6635 | /* Delete all longjmp breakpoints from THREAD. */ |
c906108c | 6636 | void |
611c83ae | 6637 | delete_longjmp_breakpoint (int thread) |
c906108c | 6638 | { |
35df4500 | 6639 | struct breakpoint *b, *b_tmp; |
c906108c | 6640 | |
35df4500 | 6641 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
186c406b | 6642 | if (b->type == bp_longjmp || b->type == bp_exception) |
611c83ae PA |
6643 | { |
6644 | if (b->thread == thread) | |
6645 | delete_breakpoint (b); | |
6646 | } | |
c906108c SS |
6647 | } |
6648 | ||
f59f708a PA |
6649 | void |
6650 | delete_longjmp_breakpoint_at_next_stop (int thread) | |
6651 | { | |
6652 | struct breakpoint *b, *b_tmp; | |
6653 | ||
6654 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
6655 | if (b->type == bp_longjmp || b->type == bp_exception) | |
6656 | { | |
6657 | if (b->thread == thread) | |
6658 | b->disposition = disp_del_at_next_stop; | |
6659 | } | |
6660 | } | |
6661 | ||
1900040c MS |
6662 | void |
6663 | enable_overlay_breakpoints (void) | |
6664 | { | |
52f0bd74 | 6665 | struct breakpoint *b; |
1900040c MS |
6666 | |
6667 | ALL_BREAKPOINTS (b) | |
6668 | if (b->type == bp_overlay_event) | |
6669 | { | |
6670 | b->enable_state = bp_enabled; | |
b60e7edf | 6671 | update_global_location_list (1); |
c02f5703 | 6672 | overlay_events_enabled = 1; |
1900040c MS |
6673 | } |
6674 | } | |
6675 | ||
6676 | void | |
6677 | disable_overlay_breakpoints (void) | |
6678 | { | |
52f0bd74 | 6679 | struct breakpoint *b; |
1900040c MS |
6680 | |
6681 | ALL_BREAKPOINTS (b) | |
6682 | if (b->type == bp_overlay_event) | |
6683 | { | |
6684 | b->enable_state = bp_disabled; | |
b60e7edf | 6685 | update_global_location_list (0); |
c02f5703 | 6686 | overlay_events_enabled = 0; |
1900040c MS |
6687 | } |
6688 | } | |
6689 | ||
aa7d318d TT |
6690 | /* Set an active std::terminate breakpoint for each std::terminate |
6691 | master breakpoint. */ | |
6692 | void | |
6693 | set_std_terminate_breakpoint (void) | |
6694 | { | |
35df4500 | 6695 | struct breakpoint *b, *b_tmp; |
aa7d318d | 6696 | |
35df4500 | 6697 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
6698 | if (b->pspace == current_program_space |
6699 | && b->type == bp_std_terminate_master) | |
6700 | { | |
06edf0c0 PA |
6701 | momentary_breakpoint_from_master (b, bp_std_terminate, |
6702 | &momentary_breakpoint_ops); | |
aa7d318d TT |
6703 | } |
6704 | } | |
6705 | ||
6706 | /* Delete all the std::terminate breakpoints. */ | |
6707 | void | |
6708 | delete_std_terminate_breakpoint (void) | |
6709 | { | |
35df4500 | 6710 | struct breakpoint *b, *b_tmp; |
aa7d318d | 6711 | |
35df4500 | 6712 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
aa7d318d TT |
6713 | if (b->type == bp_std_terminate) |
6714 | delete_breakpoint (b); | |
6715 | } | |
6716 | ||
c4093a6a | 6717 | struct breakpoint * |
a6d9a66e | 6718 | create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
c4093a6a JM |
6719 | { |
6720 | struct breakpoint *b; | |
c4093a6a | 6721 | |
06edf0c0 PA |
6722 | b = create_internal_breakpoint (gdbarch, address, bp_thread_event, |
6723 | &internal_breakpoint_ops); | |
6724 | ||
b5de0fa7 | 6725 | b->enable_state = bp_enabled; |
c4093a6a | 6726 | /* addr_string has to be used or breakpoint_re_set will delete me. */ |
5af949e3 UW |
6727 | b->addr_string |
6728 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
c4093a6a | 6729 | |
b60e7edf | 6730 | update_global_location_list_nothrow (1); |
74960c60 | 6731 | |
c4093a6a JM |
6732 | return b; |
6733 | } | |
6734 | ||
6735 | void | |
6736 | remove_thread_event_breakpoints (void) | |
6737 | { | |
35df4500 | 6738 | struct breakpoint *b, *b_tmp; |
c4093a6a | 6739 | |
35df4500 | 6740 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
6741 | if (b->type == bp_thread_event |
6742 | && b->loc->pspace == current_program_space) | |
c4093a6a JM |
6743 | delete_breakpoint (b); |
6744 | } | |
6745 | ||
0101ce28 JJ |
6746 | struct lang_and_radix |
6747 | { | |
6748 | enum language lang; | |
6749 | int radix; | |
6750 | }; | |
6751 | ||
4efc6507 DE |
6752 | /* Create a breakpoint for JIT code registration and unregistration. */ |
6753 | ||
6754 | struct breakpoint * | |
6755 | create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) | |
6756 | { | |
6757 | struct breakpoint *b; | |
6758 | ||
06edf0c0 PA |
6759 | b = create_internal_breakpoint (gdbarch, address, bp_jit_event, |
6760 | &internal_breakpoint_ops); | |
4efc6507 DE |
6761 | update_global_location_list_nothrow (1); |
6762 | return b; | |
6763 | } | |
0101ce28 | 6764 | |
03673fc7 PP |
6765 | /* Remove JIT code registration and unregistration breakpoint(s). */ |
6766 | ||
6767 | void | |
6768 | remove_jit_event_breakpoints (void) | |
6769 | { | |
6770 | struct breakpoint *b, *b_tmp; | |
6771 | ||
6772 | ALL_BREAKPOINTS_SAFE (b, b_tmp) | |
6773 | if (b->type == bp_jit_event | |
6774 | && b->loc->pspace == current_program_space) | |
6775 | delete_breakpoint (b); | |
6776 | } | |
6777 | ||
cae688ec JJ |
6778 | void |
6779 | remove_solib_event_breakpoints (void) | |
6780 | { | |
35df4500 | 6781 | struct breakpoint *b, *b_tmp; |
cae688ec | 6782 | |
35df4500 | 6783 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
6c95b8df PA |
6784 | if (b->type == bp_shlib_event |
6785 | && b->loc->pspace == current_program_space) | |
cae688ec JJ |
6786 | delete_breakpoint (b); |
6787 | } | |
6788 | ||
6789 | struct breakpoint * | |
a6d9a66e | 6790 | create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address) |
cae688ec JJ |
6791 | { |
6792 | struct breakpoint *b; | |
6793 | ||
06edf0c0 PA |
6794 | b = create_internal_breakpoint (gdbarch, address, bp_shlib_event, |
6795 | &internal_breakpoint_ops); | |
b60e7edf | 6796 | update_global_location_list_nothrow (1); |
cae688ec JJ |
6797 | return b; |
6798 | } | |
6799 | ||
6800 | /* Disable any breakpoints that are on code in shared libraries. Only | |
6801 | apply to enabled breakpoints, disabled ones can just stay disabled. */ | |
6802 | ||
6803 | void | |
cb851954 | 6804 | disable_breakpoints_in_shlibs (void) |
cae688ec | 6805 | { |
876fa593 | 6806 | struct bp_location *loc, **locp_tmp; |
cae688ec | 6807 | |
876fa593 | 6808 | ALL_BP_LOCATIONS (loc, locp_tmp) |
cae688ec | 6809 | { |
2bdf28a0 | 6810 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 6811 | struct breakpoint *b = loc->owner; |
2bdf28a0 | 6812 | |
4a64f543 MS |
6813 | /* We apply the check to all breakpoints, including disabled for |
6814 | those with loc->duplicate set. This is so that when breakpoint | |
6815 | becomes enabled, or the duplicate is removed, gdb will try to | |
6816 | insert all breakpoints. If we don't set shlib_disabled here, | |
6817 | we'll try to insert those breakpoints and fail. */ | |
1042e4c0 | 6818 | if (((b->type == bp_breakpoint) |
508ccb1f | 6819 | || (b->type == bp_jit_event) |
1042e4c0 | 6820 | || (b->type == bp_hardware_breakpoint) |
d77f58be | 6821 | || (is_tracepoint (b))) |
6c95b8df | 6822 | && loc->pspace == current_program_space |
0d381245 | 6823 | && !loc->shlib_disabled |
a77053c2 | 6824 | #ifdef PC_SOLIB |
0d381245 | 6825 | && PC_SOLIB (loc->address) |
a77053c2 | 6826 | #else |
6c95b8df | 6827 | && solib_name_from_address (loc->pspace, loc->address) |
a77053c2 MK |
6828 | #endif |
6829 | ) | |
0d381245 VP |
6830 | { |
6831 | loc->shlib_disabled = 1; | |
6832 | } | |
cae688ec JJ |
6833 | } |
6834 | } | |
6835 | ||
1e4d1764 YQ |
6836 | /* Disable any breakpoints and tracepoints that are in an unloaded shared |
6837 | library. Only apply to enabled breakpoints, disabled ones can just stay | |
4a64f543 | 6838 | disabled. */ |
84acb35a | 6839 | |
75149521 | 6840 | static void |
84acb35a JJ |
6841 | disable_breakpoints_in_unloaded_shlib (struct so_list *solib) |
6842 | { | |
876fa593 | 6843 | struct bp_location *loc, **locp_tmp; |
84acb35a JJ |
6844 | int disabled_shlib_breaks = 0; |
6845 | ||
c86cf029 VP |
6846 | /* SunOS a.out shared libraries are always mapped, so do not |
6847 | disable breakpoints; they will only be reported as unloaded | |
6848 | through clear_solib when GDB discards its shared library | |
6849 | list. See clear_solib for more information. */ | |
6850 | if (exec_bfd != NULL | |
6851 | && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour) | |
6852 | return; | |
6853 | ||
876fa593 | 6854 | ALL_BP_LOCATIONS (loc, locp_tmp) |
84acb35a | 6855 | { |
2bdf28a0 | 6856 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */ |
0d381245 | 6857 | struct breakpoint *b = loc->owner; |
cc59ec59 | 6858 | |
1e4d1764 | 6859 | if (solib->pspace == loc->pspace |
e2dd7057 | 6860 | && !loc->shlib_disabled |
1e4d1764 YQ |
6861 | && (((b->type == bp_breakpoint |
6862 | || b->type == bp_jit_event | |
6863 | || b->type == bp_hardware_breakpoint) | |
6864 | && (loc->loc_type == bp_loc_hardware_breakpoint | |
6865 | || loc->loc_type == bp_loc_software_breakpoint)) | |
6866 | || is_tracepoint (b)) | |
e2dd7057 | 6867 | && solib_contains_address_p (solib, loc->address)) |
84acb35a | 6868 | { |
e2dd7057 PP |
6869 | loc->shlib_disabled = 1; |
6870 | /* At this point, we cannot rely on remove_breakpoint | |
6871 | succeeding so we must mark the breakpoint as not inserted | |
6872 | to prevent future errors occurring in remove_breakpoints. */ | |
6873 | loc->inserted = 0; | |
8d3788bd VP |
6874 | |
6875 | /* This may cause duplicate notifications for the same breakpoint. */ | |
6876 | observer_notify_breakpoint_modified (b); | |
6877 | ||
e2dd7057 PP |
6878 | if (!disabled_shlib_breaks) |
6879 | { | |
6880 | target_terminal_ours_for_output (); | |
3e43a32a MS |
6881 | warning (_("Temporarily disabling breakpoints " |
6882 | "for unloaded shared library \"%s\""), | |
e2dd7057 | 6883 | solib->so_name); |
84acb35a | 6884 | } |
e2dd7057 | 6885 | disabled_shlib_breaks = 1; |
84acb35a JJ |
6886 | } |
6887 | } | |
84acb35a JJ |
6888 | } |
6889 | ||
ce78b96d JB |
6890 | /* FORK & VFORK catchpoints. */ |
6891 | ||
e29a4733 PA |
6892 | /* An instance of this type is used to represent a fork or vfork |
6893 | catchpoint. It includes a "struct breakpoint" as a kind of base | |
6894 | class; users downcast to "struct breakpoint *" when needed. A | |
6895 | breakpoint is really of this type iff its ops pointer points to | |
6896 | CATCH_FORK_BREAKPOINT_OPS. */ | |
6897 | ||
6898 | struct fork_catchpoint | |
6899 | { | |
6900 | /* The base class. */ | |
6901 | struct breakpoint base; | |
6902 | ||
6903 | /* Process id of a child process whose forking triggered this | |
6904 | catchpoint. This field is only valid immediately after this | |
6905 | catchpoint has triggered. */ | |
6906 | ptid_t forked_inferior_pid; | |
6907 | }; | |
6908 | ||
4a64f543 MS |
6909 | /* Implement the "insert" breakpoint_ops method for fork |
6910 | catchpoints. */ | |
ce78b96d | 6911 | |
77b06cd7 TJB |
6912 | static int |
6913 | insert_catch_fork (struct bp_location *bl) | |
ce78b96d | 6914 | { |
77b06cd7 | 6915 | return target_insert_fork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
6916 | } |
6917 | ||
4a64f543 MS |
6918 | /* Implement the "remove" breakpoint_ops method for fork |
6919 | catchpoints. */ | |
ce78b96d JB |
6920 | |
6921 | static int | |
77b06cd7 | 6922 | remove_catch_fork (struct bp_location *bl) |
ce78b96d JB |
6923 | { |
6924 | return target_remove_fork_catchpoint (PIDGET (inferior_ptid)); | |
6925 | } | |
6926 | ||
6927 | /* Implement the "breakpoint_hit" breakpoint_ops method for fork | |
6928 | catchpoints. */ | |
6929 | ||
6930 | static int | |
f1310107 | 6931 | breakpoint_hit_catch_fork (const struct bp_location *bl, |
09ac7c10 TT |
6932 | struct address_space *aspace, CORE_ADDR bp_addr, |
6933 | const struct target_waitstatus *ws) | |
ce78b96d | 6934 | { |
e29a4733 PA |
6935 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
6936 | ||
f90263c1 TT |
6937 | if (ws->kind != TARGET_WAITKIND_FORKED) |
6938 | return 0; | |
6939 | ||
6940 | c->forked_inferior_pid = ws->value.related_pid; | |
6941 | return 1; | |
ce78b96d JB |
6942 | } |
6943 | ||
4a64f543 MS |
6944 | /* Implement the "print_it" breakpoint_ops method for fork |
6945 | catchpoints. */ | |
ce78b96d JB |
6946 | |
6947 | static enum print_stop_action | |
348d480f | 6948 | print_it_catch_fork (bpstat bs) |
ce78b96d | 6949 | { |
36dfb11c | 6950 | struct ui_out *uiout = current_uiout; |
348d480f PA |
6951 | struct breakpoint *b = bs->breakpoint_at; |
6952 | struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at; | |
e29a4733 | 6953 | |
ce78b96d | 6954 | annotate_catchpoint (b->number); |
36dfb11c TT |
6955 | if (b->disposition == disp_del) |
6956 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
6957 | else | |
6958 | ui_out_text (uiout, "\nCatchpoint "); | |
6959 | if (ui_out_is_mi_like_p (uiout)) | |
6960 | { | |
6961 | ui_out_field_string (uiout, "reason", | |
6962 | async_reason_lookup (EXEC_ASYNC_FORK)); | |
6963 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
6964 | } | |
6965 | ui_out_field_int (uiout, "bkptno", b->number); | |
6966 | ui_out_text (uiout, " (forked process "); | |
6967 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
6968 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
6969 | return PRINT_SRC_AND_LOC; |
6970 | } | |
6971 | ||
4a64f543 MS |
6972 | /* Implement the "print_one" breakpoint_ops method for fork |
6973 | catchpoints. */ | |
ce78b96d JB |
6974 | |
6975 | static void | |
a6d9a66e | 6976 | print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 6977 | { |
e29a4733 | 6978 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 6979 | struct value_print_options opts; |
79a45e25 | 6980 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
6981 | |
6982 | get_user_print_options (&opts); | |
6983 | ||
4a64f543 MS |
6984 | /* Field 4, the address, is omitted (which makes the columns not |
6985 | line up too nicely with the headers, but the effect is relatively | |
6986 | readable). */ | |
79a45b7d | 6987 | if (opts.addressprint) |
ce78b96d JB |
6988 | ui_out_field_skip (uiout, "addr"); |
6989 | annotate_field (5); | |
6990 | ui_out_text (uiout, "fork"); | |
e29a4733 | 6991 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
6992 | { |
6993 | ui_out_text (uiout, ", process "); | |
6994 | ui_out_field_int (uiout, "what", | |
e29a4733 | 6995 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
6996 | ui_out_spaces (uiout, 1); |
6997 | } | |
6998 | } | |
6999 | ||
7000 | /* Implement the "print_mention" breakpoint_ops method for fork | |
7001 | catchpoints. */ | |
7002 | ||
7003 | static void | |
7004 | print_mention_catch_fork (struct breakpoint *b) | |
7005 | { | |
7006 | printf_filtered (_("Catchpoint %d (fork)"), b->number); | |
7007 | } | |
7008 | ||
6149aea9 PA |
7009 | /* Implement the "print_recreate" breakpoint_ops method for fork |
7010 | catchpoints. */ | |
7011 | ||
7012 | static void | |
7013 | print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp) | |
7014 | { | |
7015 | fprintf_unfiltered (fp, "catch fork"); | |
d9b3f62e | 7016 | print_recreate_thread (b, fp); |
6149aea9 PA |
7017 | } |
7018 | ||
ce78b96d JB |
7019 | /* The breakpoint_ops structure to be used in fork catchpoints. */ |
7020 | ||
2060206e | 7021 | static struct breakpoint_ops catch_fork_breakpoint_ops; |
ce78b96d | 7022 | |
4a64f543 MS |
7023 | /* Implement the "insert" breakpoint_ops method for vfork |
7024 | catchpoints. */ | |
ce78b96d | 7025 | |
77b06cd7 TJB |
7026 | static int |
7027 | insert_catch_vfork (struct bp_location *bl) | |
ce78b96d | 7028 | { |
77b06cd7 | 7029 | return target_insert_vfork_catchpoint (PIDGET (inferior_ptid)); |
ce78b96d JB |
7030 | } |
7031 | ||
4a64f543 MS |
7032 | /* Implement the "remove" breakpoint_ops method for vfork |
7033 | catchpoints. */ | |
ce78b96d JB |
7034 | |
7035 | static int | |
77b06cd7 | 7036 | remove_catch_vfork (struct bp_location *bl) |
ce78b96d JB |
7037 | { |
7038 | return target_remove_vfork_catchpoint (PIDGET (inferior_ptid)); | |
7039 | } | |
7040 | ||
7041 | /* Implement the "breakpoint_hit" breakpoint_ops method for vfork | |
7042 | catchpoints. */ | |
7043 | ||
7044 | static int | |
f1310107 | 7045 | breakpoint_hit_catch_vfork (const struct bp_location *bl, |
09ac7c10 TT |
7046 | struct address_space *aspace, CORE_ADDR bp_addr, |
7047 | const struct target_waitstatus *ws) | |
ce78b96d | 7048 | { |
e29a4733 PA |
7049 | struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner; |
7050 | ||
f90263c1 TT |
7051 | if (ws->kind != TARGET_WAITKIND_VFORKED) |
7052 | return 0; | |
7053 | ||
7054 | c->forked_inferior_pid = ws->value.related_pid; | |
7055 | return 1; | |
ce78b96d JB |
7056 | } |
7057 | ||
4a64f543 MS |
7058 | /* Implement the "print_it" breakpoint_ops method for vfork |
7059 | catchpoints. */ | |
ce78b96d JB |
7060 | |
7061 | static enum print_stop_action | |
348d480f | 7062 | print_it_catch_vfork (bpstat bs) |
ce78b96d | 7063 | { |
36dfb11c | 7064 | struct ui_out *uiout = current_uiout; |
348d480f | 7065 | struct breakpoint *b = bs->breakpoint_at; |
e29a4733 PA |
7066 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
7067 | ||
ce78b96d | 7068 | annotate_catchpoint (b->number); |
36dfb11c TT |
7069 | if (b->disposition == disp_del) |
7070 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7071 | else | |
7072 | ui_out_text (uiout, "\nCatchpoint "); | |
7073 | if (ui_out_is_mi_like_p (uiout)) | |
7074 | { | |
7075 | ui_out_field_string (uiout, "reason", | |
7076 | async_reason_lookup (EXEC_ASYNC_VFORK)); | |
7077 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7078 | } | |
7079 | ui_out_field_int (uiout, "bkptno", b->number); | |
7080 | ui_out_text (uiout, " (vforked process "); | |
7081 | ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid)); | |
7082 | ui_out_text (uiout, "), "); | |
ce78b96d JB |
7083 | return PRINT_SRC_AND_LOC; |
7084 | } | |
7085 | ||
4a64f543 MS |
7086 | /* Implement the "print_one" breakpoint_ops method for vfork |
7087 | catchpoints. */ | |
ce78b96d JB |
7088 | |
7089 | static void | |
a6d9a66e | 7090 | print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc) |
ce78b96d | 7091 | { |
e29a4733 | 7092 | struct fork_catchpoint *c = (struct fork_catchpoint *) b; |
79a45b7d | 7093 | struct value_print_options opts; |
79a45e25 | 7094 | struct ui_out *uiout = current_uiout; |
79a45b7d TT |
7095 | |
7096 | get_user_print_options (&opts); | |
4a64f543 MS |
7097 | /* Field 4, the address, is omitted (which makes the columns not |
7098 | line up too nicely with the headers, but the effect is relatively | |
7099 | readable). */ | |
79a45b7d | 7100 | if (opts.addressprint) |
ce78b96d JB |
7101 | ui_out_field_skip (uiout, "addr"); |
7102 | annotate_field (5); | |
7103 | ui_out_text (uiout, "vfork"); | |
e29a4733 | 7104 | if (!ptid_equal (c->forked_inferior_pid, null_ptid)) |
ce78b96d JB |
7105 | { |
7106 | ui_out_text (uiout, ", process "); | |
7107 | ui_out_field_int (uiout, "what", | |
e29a4733 | 7108 | ptid_get_pid (c->forked_inferior_pid)); |
ce78b96d JB |
7109 | ui_out_spaces (uiout, 1); |
7110 | } | |
7111 | } | |
7112 | ||
7113 | /* Implement the "print_mention" breakpoint_ops method for vfork | |
7114 | catchpoints. */ | |
7115 | ||
7116 | static void | |
7117 | print_mention_catch_vfork (struct breakpoint *b) | |
7118 | { | |
7119 | printf_filtered (_("Catchpoint %d (vfork)"), b->number); | |
7120 | } | |
7121 | ||
6149aea9 PA |
7122 | /* Implement the "print_recreate" breakpoint_ops method for vfork |
7123 | catchpoints. */ | |
7124 | ||
7125 | static void | |
7126 | print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp) | |
7127 | { | |
7128 | fprintf_unfiltered (fp, "catch vfork"); | |
d9b3f62e | 7129 | print_recreate_thread (b, fp); |
6149aea9 PA |
7130 | } |
7131 | ||
ce78b96d JB |
7132 | /* The breakpoint_ops structure to be used in vfork catchpoints. */ |
7133 | ||
2060206e | 7134 | static struct breakpoint_ops catch_vfork_breakpoint_ops; |
ce78b96d | 7135 | |
edcc5120 TT |
7136 | /* An instance of this type is used to represent an solib catchpoint. |
7137 | It includes a "struct breakpoint" as a kind of base class; users | |
7138 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
7139 | really of this type iff its ops pointer points to | |
7140 | CATCH_SOLIB_BREAKPOINT_OPS. */ | |
7141 | ||
7142 | struct solib_catchpoint | |
7143 | { | |
7144 | /* The base class. */ | |
7145 | struct breakpoint base; | |
7146 | ||
7147 | /* True for "catch load", false for "catch unload". */ | |
7148 | unsigned char is_load; | |
7149 | ||
7150 | /* Regular expression to match, if any. COMPILED is only valid when | |
7151 | REGEX is non-NULL. */ | |
7152 | char *regex; | |
7153 | regex_t compiled; | |
7154 | }; | |
7155 | ||
7156 | static void | |
7157 | dtor_catch_solib (struct breakpoint *b) | |
7158 | { | |
7159 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7160 | ||
7161 | if (self->regex) | |
7162 | regfree (&self->compiled); | |
7163 | xfree (self->regex); | |
7164 | ||
7165 | base_breakpoint_ops.dtor (b); | |
7166 | } | |
7167 | ||
7168 | static int | |
7169 | insert_catch_solib (struct bp_location *ignore) | |
7170 | { | |
7171 | return 0; | |
7172 | } | |
7173 | ||
7174 | static int | |
7175 | remove_catch_solib (struct bp_location *ignore) | |
7176 | { | |
7177 | return 0; | |
7178 | } | |
7179 | ||
7180 | static int | |
7181 | breakpoint_hit_catch_solib (const struct bp_location *bl, | |
7182 | struct address_space *aspace, | |
7183 | CORE_ADDR bp_addr, | |
7184 | const struct target_waitstatus *ws) | |
7185 | { | |
7186 | struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner; | |
7187 | struct breakpoint *other; | |
7188 | ||
7189 | if (ws->kind == TARGET_WAITKIND_LOADED) | |
7190 | return 1; | |
7191 | ||
7192 | ALL_BREAKPOINTS (other) | |
7193 | { | |
7194 | struct bp_location *other_bl; | |
7195 | ||
7196 | if (other == bl->owner) | |
7197 | continue; | |
7198 | ||
7199 | if (other->type != bp_shlib_event) | |
7200 | continue; | |
7201 | ||
7202 | if (self->base.pspace != NULL && other->pspace != self->base.pspace) | |
7203 | continue; | |
7204 | ||
7205 | for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next) | |
7206 | { | |
7207 | if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws)) | |
7208 | return 1; | |
7209 | } | |
7210 | } | |
7211 | ||
7212 | return 0; | |
7213 | } | |
7214 | ||
7215 | static void | |
7216 | check_status_catch_solib (struct bpstats *bs) | |
7217 | { | |
7218 | struct solib_catchpoint *self | |
7219 | = (struct solib_catchpoint *) bs->breakpoint_at; | |
7220 | int ix; | |
7221 | ||
7222 | if (self->is_load) | |
7223 | { | |
7224 | struct so_list *iter; | |
7225 | ||
7226 | for (ix = 0; | |
7227 | VEC_iterate (so_list_ptr, current_program_space->added_solibs, | |
7228 | ix, iter); | |
7229 | ++ix) | |
7230 | { | |
7231 | if (!self->regex | |
7232 | || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0) | |
7233 | return; | |
7234 | } | |
7235 | } | |
7236 | else | |
7237 | { | |
7238 | char *iter; | |
7239 | ||
7240 | for (ix = 0; | |
7241 | VEC_iterate (char_ptr, current_program_space->deleted_solibs, | |
7242 | ix, iter); | |
7243 | ++ix) | |
7244 | { | |
7245 | if (!self->regex | |
7246 | || regexec (&self->compiled, iter, 0, NULL, 0) == 0) | |
7247 | return; | |
7248 | } | |
7249 | } | |
7250 | ||
7251 | bs->stop = 0; | |
7252 | bs->print_it = print_it_noop; | |
7253 | } | |
7254 | ||
7255 | static enum print_stop_action | |
7256 | print_it_catch_solib (bpstat bs) | |
7257 | { | |
7258 | struct breakpoint *b = bs->breakpoint_at; | |
7259 | struct ui_out *uiout = current_uiout; | |
7260 | ||
7261 | annotate_catchpoint (b->number); | |
7262 | if (b->disposition == disp_del) | |
7263 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7264 | else | |
7265 | ui_out_text (uiout, "\nCatchpoint "); | |
7266 | ui_out_field_int (uiout, "bkptno", b->number); | |
7267 | ui_out_text (uiout, "\n"); | |
7268 | if (ui_out_is_mi_like_p (uiout)) | |
7269 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7270 | print_solib_event (1); | |
7271 | return PRINT_SRC_AND_LOC; | |
7272 | } | |
7273 | ||
7274 | static void | |
7275 | print_one_catch_solib (struct breakpoint *b, struct bp_location **locs) | |
7276 | { | |
7277 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7278 | struct value_print_options opts; | |
7279 | struct ui_out *uiout = current_uiout; | |
7280 | char *msg; | |
7281 | ||
7282 | get_user_print_options (&opts); | |
7283 | /* Field 4, the address, is omitted (which makes the columns not | |
7284 | line up too nicely with the headers, but the effect is relatively | |
7285 | readable). */ | |
7286 | if (opts.addressprint) | |
7287 | { | |
7288 | annotate_field (4); | |
7289 | ui_out_field_skip (uiout, "addr"); | |
7290 | } | |
7291 | ||
7292 | annotate_field (5); | |
7293 | if (self->is_load) | |
7294 | { | |
7295 | if (self->regex) | |
7296 | msg = xstrprintf (_("load of library matching %s"), self->regex); | |
7297 | else | |
7298 | msg = xstrdup (_("load of library")); | |
7299 | } | |
7300 | else | |
7301 | { | |
7302 | if (self->regex) | |
7303 | msg = xstrprintf (_("unload of library matching %s"), self->regex); | |
7304 | else | |
7305 | msg = xstrdup (_("unload of library")); | |
7306 | } | |
7307 | ui_out_field_string (uiout, "what", msg); | |
7308 | xfree (msg); | |
7309 | } | |
7310 | ||
7311 | static void | |
7312 | print_mention_catch_solib (struct breakpoint *b) | |
7313 | { | |
7314 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7315 | ||
7316 | printf_filtered (_("Catchpoint %d (%s)"), b->number, | |
7317 | self->is_load ? "load" : "unload"); | |
7318 | } | |
7319 | ||
7320 | static void | |
7321 | print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp) | |
7322 | { | |
7323 | struct solib_catchpoint *self = (struct solib_catchpoint *) b; | |
7324 | ||
7325 | fprintf_unfiltered (fp, "%s %s", | |
7326 | b->disposition == disp_del ? "tcatch" : "catch", | |
7327 | self->is_load ? "load" : "unload"); | |
7328 | if (self->regex) | |
7329 | fprintf_unfiltered (fp, " %s", self->regex); | |
7330 | fprintf_unfiltered (fp, "\n"); | |
7331 | } | |
7332 | ||
7333 | static struct breakpoint_ops catch_solib_breakpoint_ops; | |
7334 | ||
7335 | /* A helper function that does all the work for "catch load" and | |
7336 | "catch unload". */ | |
7337 | ||
7338 | static void | |
7339 | catch_load_or_unload (char *arg, int from_tty, int is_load, | |
7340 | struct cmd_list_element *command) | |
7341 | { | |
7342 | struct solib_catchpoint *c; | |
7343 | struct gdbarch *gdbarch = get_current_arch (); | |
7344 | int tempflag; | |
7345 | regex_t compiled; | |
7346 | struct cleanup *cleanup; | |
7347 | ||
7348 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
7349 | ||
7350 | if (!arg) | |
7351 | arg = ""; | |
7352 | arg = skip_spaces (arg); | |
7353 | ||
7354 | c = XCNEW (struct solib_catchpoint); | |
7355 | cleanup = make_cleanup (xfree, c); | |
7356 | ||
7357 | if (*arg != '\0') | |
7358 | { | |
7359 | int errcode; | |
7360 | ||
7361 | errcode = regcomp (&c->compiled, arg, REG_NOSUB); | |
7362 | if (errcode != 0) | |
7363 | { | |
7364 | char *err = get_regcomp_error (errcode, &c->compiled); | |
7365 | ||
7366 | make_cleanup (xfree, err); | |
7367 | error (_("Invalid regexp (%s): %s"), err, arg); | |
7368 | } | |
7369 | c->regex = xstrdup (arg); | |
7370 | } | |
7371 | ||
7372 | c->is_load = is_load; | |
7373 | init_catchpoint (&c->base, gdbarch, tempflag, NULL, | |
7374 | &catch_solib_breakpoint_ops); | |
7375 | ||
7376 | discard_cleanups (cleanup); | |
7377 | install_breakpoint (0, &c->base, 1); | |
7378 | } | |
7379 | ||
7380 | static void | |
7381 | catch_load_command_1 (char *arg, int from_tty, | |
7382 | struct cmd_list_element *command) | |
7383 | { | |
7384 | catch_load_or_unload (arg, from_tty, 1, command); | |
7385 | } | |
7386 | ||
7387 | static void | |
7388 | catch_unload_command_1 (char *arg, int from_tty, | |
7389 | struct cmd_list_element *command) | |
7390 | { | |
7391 | catch_load_or_unload (arg, from_tty, 0, command); | |
7392 | } | |
7393 | ||
fa3064dd YQ |
7394 | DEF_VEC_I(int); |
7395 | ||
be5c67c1 PA |
7396 | /* An instance of this type is used to represent a syscall catchpoint. |
7397 | It includes a "struct breakpoint" as a kind of base class; users | |
7398 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
7399 | really of this type iff its ops pointer points to | |
7400 | CATCH_SYSCALL_BREAKPOINT_OPS. */ | |
7401 | ||
7402 | struct syscall_catchpoint | |
7403 | { | |
7404 | /* The base class. */ | |
7405 | struct breakpoint base; | |
7406 | ||
7407 | /* Syscall numbers used for the 'catch syscall' feature. If no | |
7408 | syscall has been specified for filtering, its value is NULL. | |
7409 | Otherwise, it holds a list of all syscalls to be caught. The | |
7410 | list elements are allocated with xmalloc. */ | |
7411 | VEC(int) *syscalls_to_be_caught; | |
7412 | }; | |
7413 | ||
7414 | /* Implement the "dtor" breakpoint_ops method for syscall | |
7415 | catchpoints. */ | |
7416 | ||
7417 | static void | |
7418 | dtor_catch_syscall (struct breakpoint *b) | |
7419 | { | |
7420 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; | |
7421 | ||
7422 | VEC_free (int, c->syscalls_to_be_caught); | |
348d480f | 7423 | |
2060206e | 7424 | base_breakpoint_ops.dtor (b); |
be5c67c1 PA |
7425 | } |
7426 | ||
fa3064dd YQ |
7427 | static const struct inferior_data *catch_syscall_inferior_data = NULL; |
7428 | ||
7429 | struct catch_syscall_inferior_data | |
7430 | { | |
7431 | /* We keep a count of the number of times the user has requested a | |
7432 | particular syscall to be tracked, and pass this information to the | |
7433 | target. This lets capable targets implement filtering directly. */ | |
7434 | ||
7435 | /* Number of times that "any" syscall is requested. */ | |
7436 | int any_syscall_count; | |
7437 | ||
7438 | /* Count of each system call. */ | |
7439 | VEC(int) *syscalls_counts; | |
7440 | ||
7441 | /* This counts all syscall catch requests, so we can readily determine | |
7442 | if any catching is necessary. */ | |
7443 | int total_syscalls_count; | |
7444 | }; | |
7445 | ||
7446 | static struct catch_syscall_inferior_data* | |
7447 | get_catch_syscall_inferior_data (struct inferior *inf) | |
7448 | { | |
7449 | struct catch_syscall_inferior_data *inf_data; | |
7450 | ||
7451 | inf_data = inferior_data (inf, catch_syscall_inferior_data); | |
7452 | if (inf_data == NULL) | |
7453 | { | |
7454 | inf_data = XZALLOC (struct catch_syscall_inferior_data); | |
7455 | set_inferior_data (inf, catch_syscall_inferior_data, inf_data); | |
7456 | } | |
7457 | ||
7458 | return inf_data; | |
7459 | } | |
7460 | ||
7461 | static void | |
7462 | catch_syscall_inferior_data_cleanup (struct inferior *inf, void *arg) | |
7463 | { | |
7464 | xfree (arg); | |
7465 | } | |
7466 | ||
7467 | ||
a96d9b2e SDJ |
7468 | /* Implement the "insert" breakpoint_ops method for syscall |
7469 | catchpoints. */ | |
7470 | ||
77b06cd7 TJB |
7471 | static int |
7472 | insert_catch_syscall (struct bp_location *bl) | |
a96d9b2e | 7473 | { |
be5c67c1 | 7474 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 7475 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
7476 | struct catch_syscall_inferior_data *inf_data |
7477 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 7478 | |
fa3064dd | 7479 | ++inf_data->total_syscalls_count; |
be5c67c1 | 7480 | if (!c->syscalls_to_be_caught) |
fa3064dd | 7481 | ++inf_data->any_syscall_count; |
a96d9b2e SDJ |
7482 | else |
7483 | { | |
7484 | int i, iter; | |
cc59ec59 | 7485 | |
a96d9b2e | 7486 | for (i = 0; |
be5c67c1 | 7487 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
7488 | i++) |
7489 | { | |
7490 | int elem; | |
cc59ec59 | 7491 | |
fa3064dd | 7492 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e | 7493 | { |
fa3064dd | 7494 | int old_size = VEC_length (int, inf_data->syscalls_counts); |
3e43a32a MS |
7495 | uintptr_t vec_addr_offset |
7496 | = old_size * ((uintptr_t) sizeof (int)); | |
a96d9b2e | 7497 | uintptr_t vec_addr; |
fa3064dd YQ |
7498 | VEC_safe_grow (int, inf_data->syscalls_counts, iter + 1); |
7499 | vec_addr = ((uintptr_t) VEC_address (int, | |
7500 | inf_data->syscalls_counts) | |
7501 | + vec_addr_offset); | |
a96d9b2e SDJ |
7502 | memset ((void *) vec_addr, 0, |
7503 | (iter + 1 - old_size) * sizeof (int)); | |
7504 | } | |
fa3064dd YQ |
7505 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
7506 | VEC_replace (int, inf_data->syscalls_counts, iter, ++elem); | |
a96d9b2e SDJ |
7507 | } |
7508 | } | |
7509 | ||
77b06cd7 | 7510 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), |
fa3064dd YQ |
7511 | inf_data->total_syscalls_count != 0, |
7512 | inf_data->any_syscall_count, | |
7513 | VEC_length (int, | |
7514 | inf_data->syscalls_counts), | |
7515 | VEC_address (int, | |
7516 | inf_data->syscalls_counts)); | |
a96d9b2e SDJ |
7517 | } |
7518 | ||
7519 | /* Implement the "remove" breakpoint_ops method for syscall | |
7520 | catchpoints. */ | |
7521 | ||
7522 | static int | |
77b06cd7 | 7523 | remove_catch_syscall (struct bp_location *bl) |
a96d9b2e | 7524 | { |
be5c67c1 | 7525 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bl->owner; |
a96d9b2e | 7526 | struct inferior *inf = current_inferior (); |
fa3064dd YQ |
7527 | struct catch_syscall_inferior_data *inf_data |
7528 | = get_catch_syscall_inferior_data (inf); | |
a96d9b2e | 7529 | |
fa3064dd | 7530 | --inf_data->total_syscalls_count; |
be5c67c1 | 7531 | if (!c->syscalls_to_be_caught) |
fa3064dd | 7532 | --inf_data->any_syscall_count; |
a96d9b2e SDJ |
7533 | else |
7534 | { | |
7535 | int i, iter; | |
cc59ec59 | 7536 | |
a96d9b2e | 7537 | for (i = 0; |
be5c67c1 | 7538 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
7539 | i++) |
7540 | { | |
7541 | int elem; | |
fa3064dd | 7542 | if (iter >= VEC_length (int, inf_data->syscalls_counts)) |
a96d9b2e SDJ |
7543 | /* Shouldn't happen. */ |
7544 | continue; | |
fa3064dd YQ |
7545 | elem = VEC_index (int, inf_data->syscalls_counts, iter); |
7546 | VEC_replace (int, inf_data->syscalls_counts, iter, --elem); | |
a96d9b2e SDJ |
7547 | } |
7548 | } | |
7549 | ||
7550 | return target_set_syscall_catchpoint (PIDGET (inferior_ptid), | |
fa3064dd YQ |
7551 | inf_data->total_syscalls_count != 0, |
7552 | inf_data->any_syscall_count, | |
7553 | VEC_length (int, | |
7554 | inf_data->syscalls_counts), | |
3e43a32a | 7555 | VEC_address (int, |
fa3064dd | 7556 | inf_data->syscalls_counts)); |
a96d9b2e SDJ |
7557 | } |
7558 | ||
7559 | /* Implement the "breakpoint_hit" breakpoint_ops method for syscall | |
7560 | catchpoints. */ | |
7561 | ||
7562 | static int | |
f1310107 | 7563 | breakpoint_hit_catch_syscall (const struct bp_location *bl, |
09ac7c10 TT |
7564 | struct address_space *aspace, CORE_ADDR bp_addr, |
7565 | const struct target_waitstatus *ws) | |
a96d9b2e | 7566 | { |
4a64f543 MS |
7567 | /* We must check if we are catching specific syscalls in this |
7568 | breakpoint. If we are, then we must guarantee that the called | |
7569 | syscall is the same syscall we are catching. */ | |
a96d9b2e | 7570 | int syscall_number = 0; |
be5c67c1 PA |
7571 | const struct syscall_catchpoint *c |
7572 | = (const struct syscall_catchpoint *) bl->owner; | |
a96d9b2e | 7573 | |
f90263c1 TT |
7574 | if (ws->kind != TARGET_WAITKIND_SYSCALL_ENTRY |
7575 | && ws->kind != TARGET_WAITKIND_SYSCALL_RETURN) | |
a96d9b2e SDJ |
7576 | return 0; |
7577 | ||
f90263c1 TT |
7578 | syscall_number = ws->value.syscall_number; |
7579 | ||
a96d9b2e | 7580 | /* Now, checking if the syscall is the same. */ |
be5c67c1 | 7581 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
7582 | { |
7583 | int i, iter; | |
cc59ec59 | 7584 | |
a96d9b2e | 7585 | for (i = 0; |
be5c67c1 | 7586 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
7587 | i++) |
7588 | if (syscall_number == iter) | |
7589 | break; | |
7590 | /* Not the same. */ | |
7591 | if (!iter) | |
7592 | return 0; | |
7593 | } | |
7594 | ||
7595 | return 1; | |
7596 | } | |
7597 | ||
7598 | /* Implement the "print_it" breakpoint_ops method for syscall | |
7599 | catchpoints. */ | |
7600 | ||
7601 | static enum print_stop_action | |
348d480f | 7602 | print_it_catch_syscall (bpstat bs) |
a96d9b2e | 7603 | { |
36dfb11c | 7604 | struct ui_out *uiout = current_uiout; |
348d480f | 7605 | struct breakpoint *b = bs->breakpoint_at; |
a96d9b2e SDJ |
7606 | /* These are needed because we want to know in which state a |
7607 | syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY | |
7608 | or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we | |
7609 | must print "called syscall" or "returned from syscall". */ | |
7610 | ptid_t ptid; | |
7611 | struct target_waitstatus last; | |
7612 | struct syscall s; | |
a96d9b2e SDJ |
7613 | char *syscall_id; |
7614 | ||
7615 | get_last_target_status (&ptid, &last); | |
7616 | ||
7617 | get_syscall_by_number (last.value.syscall_number, &s); | |
7618 | ||
7619 | annotate_catchpoint (b->number); | |
7620 | ||
36dfb11c TT |
7621 | if (b->disposition == disp_del) |
7622 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
a96d9b2e | 7623 | else |
36dfb11c TT |
7624 | ui_out_text (uiout, "\nCatchpoint "); |
7625 | if (ui_out_is_mi_like_p (uiout)) | |
7626 | { | |
7627 | ui_out_field_string (uiout, "reason", | |
7628 | async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY | |
7629 | ? EXEC_ASYNC_SYSCALL_ENTRY | |
7630 | : EXEC_ASYNC_SYSCALL_RETURN)); | |
7631 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7632 | } | |
7633 | ui_out_field_int (uiout, "bkptno", b->number); | |
a96d9b2e SDJ |
7634 | |
7635 | if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY) | |
36dfb11c TT |
7636 | ui_out_text (uiout, " (call to syscall "); |
7637 | else | |
7638 | ui_out_text (uiout, " (returned from syscall "); | |
a96d9b2e | 7639 | |
36dfb11c TT |
7640 | if (s.name == NULL || ui_out_is_mi_like_p (uiout)) |
7641 | ui_out_field_int (uiout, "syscall-number", last.value.syscall_number); | |
7642 | if (s.name != NULL) | |
7643 | ui_out_field_string (uiout, "syscall-name", s.name); | |
7644 | ||
7645 | ui_out_text (uiout, "), "); | |
a96d9b2e SDJ |
7646 | |
7647 | return PRINT_SRC_AND_LOC; | |
7648 | } | |
7649 | ||
7650 | /* Implement the "print_one" breakpoint_ops method for syscall | |
7651 | catchpoints. */ | |
7652 | ||
7653 | static void | |
7654 | print_one_catch_syscall (struct breakpoint *b, | |
f1310107 | 7655 | struct bp_location **last_loc) |
a96d9b2e | 7656 | { |
be5c67c1 | 7657 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
a96d9b2e | 7658 | struct value_print_options opts; |
79a45e25 | 7659 | struct ui_out *uiout = current_uiout; |
a96d9b2e SDJ |
7660 | |
7661 | get_user_print_options (&opts); | |
4a64f543 MS |
7662 | /* Field 4, the address, is omitted (which makes the columns not |
7663 | line up too nicely with the headers, but the effect is relatively | |
7664 | readable). */ | |
a96d9b2e SDJ |
7665 | if (opts.addressprint) |
7666 | ui_out_field_skip (uiout, "addr"); | |
7667 | annotate_field (5); | |
7668 | ||
be5c67c1 PA |
7669 | if (c->syscalls_to_be_caught |
7670 | && VEC_length (int, c->syscalls_to_be_caught) > 1) | |
a96d9b2e SDJ |
7671 | ui_out_text (uiout, "syscalls \""); |
7672 | else | |
7673 | ui_out_text (uiout, "syscall \""); | |
7674 | ||
be5c67c1 | 7675 | if (c->syscalls_to_be_caught) |
a96d9b2e SDJ |
7676 | { |
7677 | int i, iter; | |
7678 | char *text = xstrprintf ("%s", ""); | |
cc59ec59 | 7679 | |
a96d9b2e | 7680 | for (i = 0; |
be5c67c1 | 7681 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
7682 | i++) |
7683 | { | |
7684 | char *x = text; | |
7685 | struct syscall s; | |
7686 | get_syscall_by_number (iter, &s); | |
7687 | ||
7688 | if (s.name != NULL) | |
7689 | text = xstrprintf ("%s%s, ", text, s.name); | |
7690 | else | |
7691 | text = xstrprintf ("%s%d, ", text, iter); | |
7692 | ||
7693 | /* We have to xfree the last 'text' (now stored at 'x') | |
e5dd4106 | 7694 | because xstrprintf dynamically allocates new space for it |
a96d9b2e SDJ |
7695 | on every call. */ |
7696 | xfree (x); | |
7697 | } | |
7698 | /* Remove the last comma. */ | |
7699 | text[strlen (text) - 2] = '\0'; | |
7700 | ui_out_field_string (uiout, "what", text); | |
7701 | } | |
7702 | else | |
7703 | ui_out_field_string (uiout, "what", "<any syscall>"); | |
7704 | ui_out_text (uiout, "\" "); | |
7705 | } | |
7706 | ||
7707 | /* Implement the "print_mention" breakpoint_ops method for syscall | |
7708 | catchpoints. */ | |
7709 | ||
7710 | static void | |
7711 | print_mention_catch_syscall (struct breakpoint *b) | |
7712 | { | |
be5c67c1 PA |
7713 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
7714 | ||
7715 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
7716 | { |
7717 | int i, iter; | |
7718 | ||
be5c67c1 | 7719 | if (VEC_length (int, c->syscalls_to_be_caught) > 1) |
a96d9b2e SDJ |
7720 | printf_filtered (_("Catchpoint %d (syscalls"), b->number); |
7721 | else | |
7722 | printf_filtered (_("Catchpoint %d (syscall"), b->number); | |
7723 | ||
7724 | for (i = 0; | |
be5c67c1 | 7725 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
7726 | i++) |
7727 | { | |
7728 | struct syscall s; | |
7729 | get_syscall_by_number (iter, &s); | |
7730 | ||
7731 | if (s.name) | |
7732 | printf_filtered (" '%s' [%d]", s.name, s.number); | |
7733 | else | |
7734 | printf_filtered (" %d", s.number); | |
7735 | } | |
7736 | printf_filtered (")"); | |
7737 | } | |
7738 | else | |
7739 | printf_filtered (_("Catchpoint %d (any syscall)"), | |
7740 | b->number); | |
7741 | } | |
7742 | ||
6149aea9 PA |
7743 | /* Implement the "print_recreate" breakpoint_ops method for syscall |
7744 | catchpoints. */ | |
7745 | ||
7746 | static void | |
7747 | print_recreate_catch_syscall (struct breakpoint *b, struct ui_file *fp) | |
7748 | { | |
be5c67c1 PA |
7749 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) b; |
7750 | ||
6149aea9 PA |
7751 | fprintf_unfiltered (fp, "catch syscall"); |
7752 | ||
be5c67c1 | 7753 | if (c->syscalls_to_be_caught) |
6149aea9 PA |
7754 | { |
7755 | int i, iter; | |
7756 | ||
7757 | for (i = 0; | |
be5c67c1 | 7758 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
6149aea9 PA |
7759 | i++) |
7760 | { | |
7761 | struct syscall s; | |
7762 | ||
7763 | get_syscall_by_number (iter, &s); | |
7764 | if (s.name) | |
7765 | fprintf_unfiltered (fp, " %s", s.name); | |
7766 | else | |
7767 | fprintf_unfiltered (fp, " %d", s.number); | |
7768 | } | |
7769 | } | |
d9b3f62e | 7770 | print_recreate_thread (b, fp); |
6149aea9 PA |
7771 | } |
7772 | ||
a96d9b2e SDJ |
7773 | /* The breakpoint_ops structure to be used in syscall catchpoints. */ |
7774 | ||
2060206e | 7775 | static struct breakpoint_ops catch_syscall_breakpoint_ops; |
a96d9b2e SDJ |
7776 | |
7777 | /* Returns non-zero if 'b' is a syscall catchpoint. */ | |
7778 | ||
7779 | static int | |
7780 | syscall_catchpoint_p (struct breakpoint *b) | |
7781 | { | |
7782 | return (b->ops == &catch_syscall_breakpoint_ops); | |
7783 | } | |
7784 | ||
346774a9 PA |
7785 | /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG |
7786 | is non-zero, then make the breakpoint temporary. If COND_STRING is | |
7787 | not NULL, then store it in the breakpoint. OPS, if not NULL, is | |
7788 | the breakpoint_ops structure associated to the catchpoint. */ | |
ce78b96d | 7789 | |
346774a9 PA |
7790 | static void |
7791 | init_catchpoint (struct breakpoint *b, | |
7792 | struct gdbarch *gdbarch, int tempflag, | |
7793 | char *cond_string, | |
c0a91b2b | 7794 | const struct breakpoint_ops *ops) |
c906108c | 7795 | { |
c5aa993b | 7796 | struct symtab_and_line sal; |
346774a9 | 7797 | |
fe39c653 | 7798 | init_sal (&sal); |
6c95b8df | 7799 | sal.pspace = current_program_space; |
c5aa993b | 7800 | |
28010a5d | 7801 | init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops); |
ce78b96d | 7802 | |
1b36a34b | 7803 | b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string); |
b5de0fa7 | 7804 | b->disposition = tempflag ? disp_del : disp_donttouch; |
346774a9 PA |
7805 | } |
7806 | ||
28010a5d | 7807 | void |
3ea46bff | 7808 | install_breakpoint (int internal, struct breakpoint *b, int update_gll) |
c56053d2 PA |
7809 | { |
7810 | add_to_breakpoint_chain (b); | |
3a5c3e22 PA |
7811 | set_breakpoint_number (internal, b); |
7812 | if (!internal) | |
7813 | mention (b); | |
c56053d2 | 7814 | observer_notify_breakpoint_created (b); |
3ea46bff YQ |
7815 | |
7816 | if (update_gll) | |
7817 | update_global_location_list (1); | |
c56053d2 PA |
7818 | } |
7819 | ||
9b70b993 | 7820 | static void |
a6d9a66e UW |
7821 | create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch, |
7822 | int tempflag, char *cond_string, | |
c0a91b2b | 7823 | const struct breakpoint_ops *ops) |
c906108c | 7824 | { |
e29a4733 | 7825 | struct fork_catchpoint *c = XNEW (struct fork_catchpoint); |
ce78b96d | 7826 | |
e29a4733 PA |
7827 | init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops); |
7828 | ||
7829 | c->forked_inferior_pid = null_ptid; | |
7830 | ||
3ea46bff | 7831 | install_breakpoint (0, &c->base, 1); |
c906108c SS |
7832 | } |
7833 | ||
fe798b75 JB |
7834 | /* Exec catchpoints. */ |
7835 | ||
b4d90040 PA |
7836 | /* An instance of this type is used to represent an exec catchpoint. |
7837 | It includes a "struct breakpoint" as a kind of base class; users | |
7838 | downcast to "struct breakpoint *" when needed. A breakpoint is | |
7839 | really of this type iff its ops pointer points to | |
7840 | CATCH_EXEC_BREAKPOINT_OPS. */ | |
7841 | ||
7842 | struct exec_catchpoint | |
7843 | { | |
7844 | /* The base class. */ | |
7845 | struct breakpoint base; | |
7846 | ||
7847 | /* Filename of a program whose exec triggered this catchpoint. | |
7848 | This field is only valid immediately after this catchpoint has | |
7849 | triggered. */ | |
7850 | char *exec_pathname; | |
7851 | }; | |
7852 | ||
7853 | /* Implement the "dtor" breakpoint_ops method for exec | |
7854 | catchpoints. */ | |
7855 | ||
7856 | static void | |
7857 | dtor_catch_exec (struct breakpoint *b) | |
7858 | { | |
7859 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; | |
7860 | ||
7861 | xfree (c->exec_pathname); | |
348d480f | 7862 | |
2060206e | 7863 | base_breakpoint_ops.dtor (b); |
b4d90040 PA |
7864 | } |
7865 | ||
77b06cd7 TJB |
7866 | static int |
7867 | insert_catch_exec (struct bp_location *bl) | |
c906108c | 7868 | { |
77b06cd7 | 7869 | return target_insert_exec_catchpoint (PIDGET (inferior_ptid)); |
fe798b75 | 7870 | } |
c906108c | 7871 | |
fe798b75 | 7872 | static int |
77b06cd7 | 7873 | remove_catch_exec (struct bp_location *bl) |
fe798b75 JB |
7874 | { |
7875 | return target_remove_exec_catchpoint (PIDGET (inferior_ptid)); | |
7876 | } | |
c906108c | 7877 | |
fe798b75 | 7878 | static int |
f1310107 | 7879 | breakpoint_hit_catch_exec (const struct bp_location *bl, |
09ac7c10 TT |
7880 | struct address_space *aspace, CORE_ADDR bp_addr, |
7881 | const struct target_waitstatus *ws) | |
fe798b75 | 7882 | { |
b4d90040 PA |
7883 | struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner; |
7884 | ||
f90263c1 TT |
7885 | if (ws->kind != TARGET_WAITKIND_EXECD) |
7886 | return 0; | |
7887 | ||
7888 | c->exec_pathname = xstrdup (ws->value.execd_pathname); | |
7889 | return 1; | |
fe798b75 | 7890 | } |
c906108c | 7891 | |
fe798b75 | 7892 | static enum print_stop_action |
348d480f | 7893 | print_it_catch_exec (bpstat bs) |
fe798b75 | 7894 | { |
36dfb11c | 7895 | struct ui_out *uiout = current_uiout; |
348d480f | 7896 | struct breakpoint *b = bs->breakpoint_at; |
b4d90040 PA |
7897 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
7898 | ||
fe798b75 | 7899 | annotate_catchpoint (b->number); |
36dfb11c TT |
7900 | if (b->disposition == disp_del) |
7901 | ui_out_text (uiout, "\nTemporary catchpoint "); | |
7902 | else | |
7903 | ui_out_text (uiout, "\nCatchpoint "); | |
7904 | if (ui_out_is_mi_like_p (uiout)) | |
7905 | { | |
7906 | ui_out_field_string (uiout, "reason", | |
7907 | async_reason_lookup (EXEC_ASYNC_EXEC)); | |
7908 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
7909 | } | |
7910 | ui_out_field_int (uiout, "bkptno", b->number); | |
7911 | ui_out_text (uiout, " (exec'd "); | |
7912 | ui_out_field_string (uiout, "new-exec", c->exec_pathname); | |
7913 | ui_out_text (uiout, "), "); | |
7914 | ||
fe798b75 | 7915 | return PRINT_SRC_AND_LOC; |
c906108c SS |
7916 | } |
7917 | ||
fe798b75 | 7918 | static void |
a6d9a66e | 7919 | print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc) |
fe798b75 | 7920 | { |
b4d90040 | 7921 | struct exec_catchpoint *c = (struct exec_catchpoint *) b; |
fe798b75 | 7922 | struct value_print_options opts; |
79a45e25 | 7923 | struct ui_out *uiout = current_uiout; |
fe798b75 JB |
7924 | |
7925 | get_user_print_options (&opts); | |
7926 | ||
7927 | /* Field 4, the address, is omitted (which makes the columns | |
7928 | not line up too nicely with the headers, but the effect | |
7929 | is relatively readable). */ | |
7930 | if (opts.addressprint) | |
7931 | ui_out_field_skip (uiout, "addr"); | |
7932 | annotate_field (5); | |
7933 | ui_out_text (uiout, "exec"); | |
b4d90040 | 7934 | if (c->exec_pathname != NULL) |
fe798b75 JB |
7935 | { |
7936 | ui_out_text (uiout, ", program \""); | |
b4d90040 | 7937 | ui_out_field_string (uiout, "what", c->exec_pathname); |
fe798b75 JB |
7938 | ui_out_text (uiout, "\" "); |
7939 | } | |
7940 | } | |
7941 | ||
7942 | static void | |
7943 | print_mention_catch_exec (struct breakpoint *b) | |
7944 | { | |
7945 | printf_filtered (_("Catchpoint %d (exec)"), b->number); | |
7946 | } | |
7947 | ||
6149aea9 PA |
7948 | /* Implement the "print_recreate" breakpoint_ops method for exec |
7949 | catchpoints. */ | |
7950 | ||
7951 | static void | |
7952 | print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp) | |
7953 | { | |
7954 | fprintf_unfiltered (fp, "catch exec"); | |
d9b3f62e | 7955 | print_recreate_thread (b, fp); |
6149aea9 PA |
7956 | } |
7957 | ||
2060206e | 7958 | static struct breakpoint_ops catch_exec_breakpoint_ops; |
fe798b75 | 7959 | |
a96d9b2e SDJ |
7960 | static void |
7961 | create_syscall_event_catchpoint (int tempflag, VEC(int) *filter, | |
c0a91b2b | 7962 | const struct breakpoint_ops *ops) |
a96d9b2e | 7963 | { |
be5c67c1 | 7964 | struct syscall_catchpoint *c; |
a96d9b2e | 7965 | struct gdbarch *gdbarch = get_current_arch (); |
a96d9b2e | 7966 | |
be5c67c1 PA |
7967 | c = XNEW (struct syscall_catchpoint); |
7968 | init_catchpoint (&c->base, gdbarch, tempflag, NULL, ops); | |
7969 | c->syscalls_to_be_caught = filter; | |
a96d9b2e | 7970 | |
3ea46bff | 7971 | install_breakpoint (0, &c->base, 1); |
a96d9b2e SDJ |
7972 | } |
7973 | ||
c906108c | 7974 | static int |
fba45db2 | 7975 | hw_breakpoint_used_count (void) |
c906108c | 7976 | { |
c906108c | 7977 | int i = 0; |
f1310107 TJB |
7978 | struct breakpoint *b; |
7979 | struct bp_location *bl; | |
c906108c SS |
7980 | |
7981 | ALL_BREAKPOINTS (b) | |
c5aa993b | 7982 | { |
d6b74ac4 | 7983 | if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b)) |
f1310107 TJB |
7984 | for (bl = b->loc; bl; bl = bl->next) |
7985 | { | |
7986 | /* Special types of hardware breakpoints may use more than | |
7987 | one register. */ | |
348d480f | 7988 | i += b->ops->resources_needed (bl); |
f1310107 | 7989 | } |
c5aa993b | 7990 | } |
c906108c SS |
7991 | |
7992 | return i; | |
7993 | } | |
7994 | ||
a1398e0c PA |
7995 | /* Returns the resources B would use if it were a hardware |
7996 | watchpoint. */ | |
7997 | ||
c906108c | 7998 | static int |
a1398e0c | 7999 | hw_watchpoint_use_count (struct breakpoint *b) |
c906108c | 8000 | { |
c906108c | 8001 | int i = 0; |
e09342b5 | 8002 | struct bp_location *bl; |
c906108c | 8003 | |
a1398e0c PA |
8004 | if (!breakpoint_enabled (b)) |
8005 | return 0; | |
8006 | ||
8007 | for (bl = b->loc; bl; bl = bl->next) | |
8008 | { | |
8009 | /* Special types of hardware watchpoints may use more than | |
8010 | one register. */ | |
8011 | i += b->ops->resources_needed (bl); | |
8012 | } | |
8013 | ||
8014 | return i; | |
8015 | } | |
8016 | ||
8017 | /* Returns the sum the used resources of all hardware watchpoints of | |
8018 | type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED | |
8019 | the sum of the used resources of all hardware watchpoints of other | |
8020 | types _not_ TYPE. */ | |
8021 | ||
8022 | static int | |
8023 | hw_watchpoint_used_count_others (struct breakpoint *except, | |
8024 | enum bptype type, int *other_type_used) | |
8025 | { | |
8026 | int i = 0; | |
8027 | struct breakpoint *b; | |
8028 | ||
c906108c SS |
8029 | *other_type_used = 0; |
8030 | ALL_BREAKPOINTS (b) | |
e09342b5 | 8031 | { |
a1398e0c PA |
8032 | if (b == except) |
8033 | continue; | |
e09342b5 TJB |
8034 | if (!breakpoint_enabled (b)) |
8035 | continue; | |
8036 | ||
a1398e0c PA |
8037 | if (b->type == type) |
8038 | i += hw_watchpoint_use_count (b); | |
8039 | else if (is_hardware_watchpoint (b)) | |
8040 | *other_type_used = 1; | |
e09342b5 TJB |
8041 | } |
8042 | ||
c906108c SS |
8043 | return i; |
8044 | } | |
8045 | ||
c906108c | 8046 | void |
fba45db2 | 8047 | disable_watchpoints_before_interactive_call_start (void) |
c906108c | 8048 | { |
c5aa993b | 8049 | struct breakpoint *b; |
c906108c SS |
8050 | |
8051 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8052 | { |
cc60f2e3 | 8053 | if (is_watchpoint (b) && breakpoint_enabled (b)) |
c5aa993b | 8054 | { |
b5de0fa7 | 8055 | b->enable_state = bp_call_disabled; |
b60e7edf | 8056 | update_global_location_list (0); |
c5aa993b JM |
8057 | } |
8058 | } | |
c906108c SS |
8059 | } |
8060 | ||
8061 | void | |
fba45db2 | 8062 | enable_watchpoints_after_interactive_call_stop (void) |
c906108c | 8063 | { |
c5aa993b | 8064 | struct breakpoint *b; |
c906108c SS |
8065 | |
8066 | ALL_BREAKPOINTS (b) | |
c5aa993b | 8067 | { |
cc60f2e3 | 8068 | if (is_watchpoint (b) && b->enable_state == bp_call_disabled) |
c5aa993b | 8069 | { |
b5de0fa7 | 8070 | b->enable_state = bp_enabled; |
b60e7edf | 8071 | update_global_location_list (1); |
c5aa993b JM |
8072 | } |
8073 | } | |
c906108c SS |
8074 | } |
8075 | ||
8bea4e01 UW |
8076 | void |
8077 | disable_breakpoints_before_startup (void) | |
8078 | { | |
6c95b8df | 8079 | current_program_space->executing_startup = 1; |
f8eba3c6 | 8080 | update_global_location_list (0); |
8bea4e01 UW |
8081 | } |
8082 | ||
8083 | void | |
8084 | enable_breakpoints_after_startup (void) | |
8085 | { | |
6c95b8df | 8086 | current_program_space->executing_startup = 0; |
f8eba3c6 | 8087 | breakpoint_re_set (); |
8bea4e01 UW |
8088 | } |
8089 | ||
c906108c SS |
8090 | |
8091 | /* Set a breakpoint that will evaporate an end of command | |
8092 | at address specified by SAL. | |
8093 | Restrict it to frame FRAME if FRAME is nonzero. */ | |
8094 | ||
8095 | struct breakpoint * | |
a6d9a66e UW |
8096 | set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal, |
8097 | struct frame_id frame_id, enum bptype type) | |
c906108c | 8098 | { |
52f0bd74 | 8099 | struct breakpoint *b; |
edb3359d DJ |
8100 | |
8101 | /* If FRAME_ID is valid, it should be a real frame, not an inlined | |
8102 | one. */ | |
8103 | gdb_assert (!frame_id_inlined_p (frame_id)); | |
8104 | ||
06edf0c0 | 8105 | b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops); |
b5de0fa7 EZ |
8106 | b->enable_state = bp_enabled; |
8107 | b->disposition = disp_donttouch; | |
818dd999 | 8108 | b->frame_id = frame_id; |
c906108c | 8109 | |
4a64f543 MS |
8110 | /* If we're debugging a multi-threaded program, then we want |
8111 | momentary breakpoints to be active in only a single thread of | |
8112 | control. */ | |
39f77062 KB |
8113 | if (in_thread_list (inferior_ptid)) |
8114 | b->thread = pid_to_thread_id (inferior_ptid); | |
c906108c | 8115 | |
b60e7edf | 8116 | update_global_location_list_nothrow (1); |
74960c60 | 8117 | |
c906108c SS |
8118 | return b; |
8119 | } | |
611c83ae | 8120 | |
06edf0c0 PA |
8121 | /* Make a momentary breakpoint based on the master breakpoint ORIG. |
8122 | The new breakpoint will have type TYPE, and use OPS as it | |
8123 | breakpoint_ops. */ | |
e58b0e63 | 8124 | |
06edf0c0 PA |
8125 | static struct breakpoint * |
8126 | momentary_breakpoint_from_master (struct breakpoint *orig, | |
8127 | enum bptype type, | |
c0a91b2b | 8128 | const struct breakpoint_ops *ops) |
e58b0e63 PA |
8129 | { |
8130 | struct breakpoint *copy; | |
8131 | ||
06edf0c0 | 8132 | copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops); |
e58b0e63 | 8133 | copy->loc = allocate_bp_location (copy); |
0e30163f | 8134 | set_breakpoint_location_function (copy->loc, 1); |
e58b0e63 | 8135 | |
a6d9a66e | 8136 | copy->loc->gdbarch = orig->loc->gdbarch; |
e58b0e63 PA |
8137 | copy->loc->requested_address = orig->loc->requested_address; |
8138 | copy->loc->address = orig->loc->address; | |
8139 | copy->loc->section = orig->loc->section; | |
6c95b8df | 8140 | copy->loc->pspace = orig->loc->pspace; |
e58b0e63 | 8141 | |
f8eba3c6 TT |
8142 | if (orig->loc->source_file != NULL) |
8143 | copy->loc->source_file = xstrdup (orig->loc->source_file); | |
e58b0e63 | 8144 | |
f8eba3c6 | 8145 | copy->loc->line_number = orig->loc->line_number; |
e58b0e63 PA |
8146 | copy->frame_id = orig->frame_id; |
8147 | copy->thread = orig->thread; | |
6c95b8df | 8148 | copy->pspace = orig->pspace; |
e58b0e63 PA |
8149 | |
8150 | copy->enable_state = bp_enabled; | |
8151 | copy->disposition = disp_donttouch; | |
8152 | copy->number = internal_breakpoint_number--; | |
8153 | ||
8154 | update_global_location_list_nothrow (0); | |
8155 | return copy; | |
8156 | } | |
8157 | ||
06edf0c0 PA |
8158 | /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if |
8159 | ORIG is NULL. */ | |
8160 | ||
8161 | struct breakpoint * | |
8162 | clone_momentary_breakpoint (struct breakpoint *orig) | |
8163 | { | |
8164 | /* If there's nothing to clone, then return nothing. */ | |
8165 | if (orig == NULL) | |
8166 | return NULL; | |
8167 | ||
8168 | return momentary_breakpoint_from_master (orig, orig->type, orig->ops); | |
8169 | } | |
8170 | ||
611c83ae | 8171 | struct breakpoint * |
a6d9a66e UW |
8172 | set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc, |
8173 | enum bptype type) | |
611c83ae PA |
8174 | { |
8175 | struct symtab_and_line sal; | |
8176 | ||
8177 | sal = find_pc_line (pc, 0); | |
8178 | sal.pc = pc; | |
8179 | sal.section = find_pc_overlay (pc); | |
8180 | sal.explicit_pc = 1; | |
8181 | ||
a6d9a66e | 8182 | return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type); |
611c83ae | 8183 | } |
c906108c | 8184 | \f |
c5aa993b | 8185 | |
c906108c SS |
8186 | /* Tell the user we have just set a breakpoint B. */ |
8187 | ||
8188 | static void | |
fba45db2 | 8189 | mention (struct breakpoint *b) |
c906108c | 8190 | { |
348d480f | 8191 | b->ops->print_mention (b); |
79a45e25 | 8192 | if (ui_out_is_mi_like_p (current_uiout)) |
fb40c209 | 8193 | return; |
c906108c SS |
8194 | printf_filtered ("\n"); |
8195 | } | |
c906108c | 8196 | \f |
c5aa993b | 8197 | |
0d381245 | 8198 | static struct bp_location * |
39d61571 | 8199 | add_location_to_breakpoint (struct breakpoint *b, |
0d381245 VP |
8200 | const struct symtab_and_line *sal) |
8201 | { | |
8202 | struct bp_location *loc, **tmp; | |
3742cc8b YQ |
8203 | CORE_ADDR adjusted_address; |
8204 | struct gdbarch *loc_gdbarch = get_sal_arch (*sal); | |
8205 | ||
8206 | if (loc_gdbarch == NULL) | |
8207 | loc_gdbarch = b->gdbarch; | |
8208 | ||
8209 | /* Adjust the breakpoint's address prior to allocating a location. | |
8210 | Once we call allocate_bp_location(), that mostly uninitialized | |
8211 | location will be placed on the location chain. Adjustment of the | |
8212 | breakpoint may cause target_read_memory() to be called and we do | |
8213 | not want its scan of the location chain to find a breakpoint and | |
8214 | location that's only been partially initialized. */ | |
8215 | adjusted_address = adjust_breakpoint_address (loc_gdbarch, | |
8216 | sal->pc, b->type); | |
0d381245 | 8217 | |
39d61571 | 8218 | loc = allocate_bp_location (b); |
0d381245 VP |
8219 | for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next)) |
8220 | ; | |
8221 | *tmp = loc; | |
3742cc8b | 8222 | |
0d381245 | 8223 | loc->requested_address = sal->pc; |
3742cc8b | 8224 | loc->address = adjusted_address; |
6c95b8df PA |
8225 | loc->pspace = sal->pspace; |
8226 | gdb_assert (loc->pspace != NULL); | |
0d381245 | 8227 | loc->section = sal->section; |
3742cc8b | 8228 | loc->gdbarch = loc_gdbarch; |
f8eba3c6 TT |
8229 | |
8230 | if (sal->symtab != NULL) | |
8231 | loc->source_file = xstrdup (sal->symtab->filename); | |
8232 | loc->line_number = sal->line; | |
8233 | ||
0e30163f JK |
8234 | set_breakpoint_location_function (loc, |
8235 | sal->explicit_pc || sal->explicit_line); | |
0d381245 VP |
8236 | return loc; |
8237 | } | |
514f746b AR |
8238 | \f |
8239 | ||
8240 | /* Return 1 if LOC is pointing to a permanent breakpoint, | |
8241 | return 0 otherwise. */ | |
8242 | ||
8243 | static int | |
8244 | bp_loc_is_permanent (struct bp_location *loc) | |
8245 | { | |
8246 | int len; | |
8247 | CORE_ADDR addr; | |
1afeeb75 | 8248 | const gdb_byte *bpoint; |
514f746b | 8249 | gdb_byte *target_mem; |
939c61fa JK |
8250 | struct cleanup *cleanup; |
8251 | int retval = 0; | |
514f746b AR |
8252 | |
8253 | gdb_assert (loc != NULL); | |
8254 | ||
8255 | addr = loc->address; | |
1afeeb75 | 8256 | bpoint = gdbarch_breakpoint_from_pc (loc->gdbarch, &addr, &len); |
514f746b | 8257 | |
939c61fa | 8258 | /* Software breakpoints unsupported? */ |
1afeeb75 | 8259 | if (bpoint == NULL) |
939c61fa JK |
8260 | return 0; |
8261 | ||
514f746b AR |
8262 | target_mem = alloca (len); |
8263 | ||
939c61fa JK |
8264 | /* Enable the automatic memory restoration from breakpoints while |
8265 | we read the memory. Otherwise we could say about our temporary | |
8266 | breakpoints they are permanent. */ | |
6c95b8df PA |
8267 | cleanup = save_current_space_and_thread (); |
8268 | ||
8269 | switch_to_program_space_and_thread (loc->pspace); | |
8270 | make_show_memory_breakpoints_cleanup (0); | |
939c61fa | 8271 | |
514f746b | 8272 | if (target_read_memory (loc->address, target_mem, len) == 0 |
1afeeb75 | 8273 | && memcmp (target_mem, bpoint, len) == 0) |
939c61fa | 8274 | retval = 1; |
514f746b | 8275 | |
939c61fa JK |
8276 | do_cleanups (cleanup); |
8277 | ||
8278 | return retval; | |
514f746b AR |
8279 | } |
8280 | ||
8281 | ||
c3f6f71d | 8282 | |
018d34a4 VP |
8283 | /* Create a breakpoint with SAL as location. Use ADDR_STRING |
8284 | as textual description of the location, and COND_STRING | |
db107f19 | 8285 | as condition expression. */ |
018d34a4 VP |
8286 | |
8287 | static void | |
d9b3f62e PA |
8288 | init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch, |
8289 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 8290 | char *filter, char *cond_string, |
d9b3f62e PA |
8291 | enum bptype type, enum bpdisp disposition, |
8292 | int thread, int task, int ignore_count, | |
c0a91b2b | 8293 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
8294 | int enabled, int internal, unsigned flags, |
8295 | int display_canonical) | |
018d34a4 | 8296 | { |
0d381245 | 8297 | int i; |
018d34a4 VP |
8298 | |
8299 | if (type == bp_hardware_breakpoint) | |
8300 | { | |
fbbd034e AS |
8301 | int target_resources_ok; |
8302 | ||
8303 | i = hw_breakpoint_used_count (); | |
8304 | target_resources_ok = | |
8305 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
018d34a4 VP |
8306 | i + 1, 0); |
8307 | if (target_resources_ok == 0) | |
8308 | error (_("No hardware breakpoint support in the target.")); | |
8309 | else if (target_resources_ok < 0) | |
8310 | error (_("Hardware breakpoints used exceeds limit.")); | |
8311 | } | |
8312 | ||
6c95b8df PA |
8313 | gdb_assert (sals.nelts > 0); |
8314 | ||
0d381245 VP |
8315 | for (i = 0; i < sals.nelts; ++i) |
8316 | { | |
8317 | struct symtab_and_line sal = sals.sals[i]; | |
8318 | struct bp_location *loc; | |
8319 | ||
8320 | if (from_tty) | |
5af949e3 UW |
8321 | { |
8322 | struct gdbarch *loc_gdbarch = get_sal_arch (sal); | |
8323 | if (!loc_gdbarch) | |
8324 | loc_gdbarch = gdbarch; | |
8325 | ||
8326 | describe_other_breakpoints (loc_gdbarch, | |
6c95b8df | 8327 | sal.pspace, sal.pc, sal.section, thread); |
5af949e3 | 8328 | } |
0d381245 VP |
8329 | |
8330 | if (i == 0) | |
8331 | { | |
d9b3f62e | 8332 | init_raw_breakpoint (b, gdbarch, sal, type, ops); |
0d381245 | 8333 | b->thread = thread; |
4a306c9a | 8334 | b->task = task; |
018d34a4 | 8335 | |
0d381245 VP |
8336 | b->cond_string = cond_string; |
8337 | b->ignore_count = ignore_count; | |
41447f92 | 8338 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
0d381245 | 8339 | b->disposition = disposition; |
6c95b8df | 8340 | |
44f238bb PA |
8341 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
8342 | b->loc->inserted = 1; | |
8343 | ||
0fb4aa4b PA |
8344 | if (type == bp_static_tracepoint) |
8345 | { | |
d9b3f62e | 8346 | struct tracepoint *t = (struct tracepoint *) b; |
0fb4aa4b PA |
8347 | struct static_tracepoint_marker marker; |
8348 | ||
983af33b | 8349 | if (strace_marker_p (b)) |
0fb4aa4b PA |
8350 | { |
8351 | /* We already know the marker exists, otherwise, we | |
8352 | wouldn't see a sal for it. */ | |
8353 | char *p = &addr_string[3]; | |
8354 | char *endp; | |
8355 | char *marker_str; | |
0fb4aa4b | 8356 | |
e9cafbcc | 8357 | p = skip_spaces (p); |
0fb4aa4b | 8358 | |
e9cafbcc | 8359 | endp = skip_to_space (p); |
0fb4aa4b PA |
8360 | |
8361 | marker_str = savestring (p, endp - p); | |
d9b3f62e | 8362 | t->static_trace_marker_id = marker_str; |
0fb4aa4b | 8363 | |
3e43a32a MS |
8364 | printf_filtered (_("Probed static tracepoint " |
8365 | "marker \"%s\"\n"), | |
d9b3f62e | 8366 | t->static_trace_marker_id); |
0fb4aa4b PA |
8367 | } |
8368 | else if (target_static_tracepoint_marker_at (sal.pc, &marker)) | |
8369 | { | |
d9b3f62e | 8370 | t->static_trace_marker_id = xstrdup (marker.str_id); |
0fb4aa4b PA |
8371 | release_static_tracepoint_marker (&marker); |
8372 | ||
3e43a32a MS |
8373 | printf_filtered (_("Probed static tracepoint " |
8374 | "marker \"%s\"\n"), | |
d9b3f62e | 8375 | t->static_trace_marker_id); |
0fb4aa4b PA |
8376 | } |
8377 | else | |
3e43a32a MS |
8378 | warning (_("Couldn't determine the static " |
8379 | "tracepoint marker to probe")); | |
0fb4aa4b PA |
8380 | } |
8381 | ||
0d381245 VP |
8382 | loc = b->loc; |
8383 | } | |
8384 | else | |
018d34a4 | 8385 | { |
39d61571 | 8386 | loc = add_location_to_breakpoint (b, &sal); |
44f238bb PA |
8387 | if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0) |
8388 | loc->inserted = 1; | |
0d381245 VP |
8389 | } |
8390 | ||
514f746b AR |
8391 | if (bp_loc_is_permanent (loc)) |
8392 | make_breakpoint_permanent (b); | |
8393 | ||
0d381245 VP |
8394 | if (b->cond_string) |
8395 | { | |
8396 | char *arg = b->cond_string; | |
d32a6982 | 8397 | loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0); |
0d381245 | 8398 | if (*arg) |
db107f19 | 8399 | error (_("Garbage %s follows condition"), arg); |
018d34a4 | 8400 | } |
0d381245 | 8401 | } |
018d34a4 | 8402 | |
56435ebe | 8403 | b->display_canonical = display_canonical; |
018d34a4 VP |
8404 | if (addr_string) |
8405 | b->addr_string = addr_string; | |
8406 | else | |
8407 | /* addr_string has to be used or breakpoint_re_set will delete | |
8408 | me. */ | |
5af949e3 UW |
8409 | b->addr_string |
8410 | = xstrprintf ("*%s", paddress (b->loc->gdbarch, b->loc->address)); | |
f8eba3c6 | 8411 | b->filter = filter; |
d9b3f62e | 8412 | } |
018d34a4 | 8413 | |
d9b3f62e PA |
8414 | static void |
8415 | create_breakpoint_sal (struct gdbarch *gdbarch, | |
8416 | struct symtabs_and_lines sals, char *addr_string, | |
f8eba3c6 | 8417 | char *filter, char *cond_string, |
d9b3f62e PA |
8418 | enum bptype type, enum bpdisp disposition, |
8419 | int thread, int task, int ignore_count, | |
c0a91b2b | 8420 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb PA |
8421 | int enabled, int internal, unsigned flags, |
8422 | int display_canonical) | |
d9b3f62e PA |
8423 | { |
8424 | struct breakpoint *b; | |
8425 | struct cleanup *old_chain; | |
8426 | ||
8427 | if (is_tracepoint_type (type)) | |
8428 | { | |
8429 | struct tracepoint *t; | |
8430 | ||
8431 | t = XCNEW (struct tracepoint); | |
8432 | b = &t->base; | |
8433 | } | |
8434 | else | |
8435 | b = XNEW (struct breakpoint); | |
8436 | ||
8437 | old_chain = make_cleanup (xfree, b); | |
8438 | ||
8439 | init_breakpoint_sal (b, gdbarch, | |
8440 | sals, addr_string, | |
f8eba3c6 | 8441 | filter, cond_string, |
d9b3f62e PA |
8442 | type, disposition, |
8443 | thread, task, ignore_count, | |
8444 | ops, from_tty, | |
44f238bb PA |
8445 | enabled, internal, flags, |
8446 | display_canonical); | |
d9b3f62e PA |
8447 | discard_cleanups (old_chain); |
8448 | ||
3ea46bff | 8449 | install_breakpoint (internal, b, 0); |
018d34a4 VP |
8450 | } |
8451 | ||
8452 | /* Add SALS.nelts breakpoints to the breakpoint table. For each | |
8453 | SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i] | |
8454 | value. COND_STRING, if not NULL, specified the condition to be | |
8455 | used for all breakpoints. Essentially the only case where | |
8456 | SALS.nelts is not 1 is when we set a breakpoint on an overloaded | |
8457 | function. In that case, it's still not possible to specify | |
8458 | separate conditions for different overloaded functions, so | |
8459 | we take just a single condition string. | |
8460 | ||
c3f6f71d | 8461 | NOTE: If the function succeeds, the caller is expected to cleanup |
018d34a4 | 8462 | the arrays ADDR_STRING, COND_STRING, and SALS (but not the |
c3f6f71d JM |
8463 | array contents). If the function fails (error() is called), the |
8464 | caller is expected to cleanups both the ADDR_STRING, COND_STRING, | |
4a64f543 | 8465 | COND and SALS arrays and each of those arrays contents. */ |
c906108c SS |
8466 | |
8467 | static void | |
8cdf0e15 | 8468 | create_breakpoints_sal (struct gdbarch *gdbarch, |
7efd8fc2 | 8469 | struct linespec_result *canonical, |
8cdf0e15 VP |
8470 | char *cond_string, |
8471 | enum bptype type, enum bpdisp disposition, | |
8472 | int thread, int task, int ignore_count, | |
c0a91b2b | 8473 | const struct breakpoint_ops *ops, int from_tty, |
44f238bb | 8474 | int enabled, int internal, unsigned flags) |
c906108c | 8475 | { |
018d34a4 | 8476 | int i; |
f8eba3c6 | 8477 | struct linespec_sals *lsal; |
cc59ec59 | 8478 | |
f8eba3c6 TT |
8479 | if (canonical->pre_expanded) |
8480 | gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1); | |
8481 | ||
8482 | for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i) | |
c3f6f71d | 8483 | { |
f8eba3c6 TT |
8484 | /* Note that 'addr_string' can be NULL in the case of a plain |
8485 | 'break', without arguments. */ | |
8486 | char *addr_string = (canonical->addr_string | |
8487 | ? xstrdup (canonical->addr_string) | |
8488 | : NULL); | |
8489 | char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL; | |
8490 | struct cleanup *inner = make_cleanup (xfree, addr_string); | |
0d381245 | 8491 | |
f8eba3c6 TT |
8492 | make_cleanup (xfree, filter_string); |
8493 | create_breakpoint_sal (gdbarch, lsal->sals, | |
8494 | addr_string, | |
8495 | filter_string, | |
8cdf0e15 | 8496 | cond_string, type, disposition, |
84f4c1fe | 8497 | thread, task, ignore_count, ops, |
44f238bb | 8498 | from_tty, enabled, internal, flags, |
56435ebe | 8499 | canonical->special_display); |
f8eba3c6 | 8500 | discard_cleanups (inner); |
c3f6f71d | 8501 | } |
c3f6f71d | 8502 | } |
c906108c | 8503 | |
9998af43 | 8504 | /* Parse ADDRESS which is assumed to be a SAL specification possibly |
c3f6f71d | 8505 | followed by conditionals. On return, SALS contains an array of SAL |
4a64f543 | 8506 | addresses found. ADDR_STRING contains a vector of (canonical) |
9998af43 TJB |
8507 | address strings. ADDRESS points to the end of the SAL. |
8508 | ||
8509 | The array and the line spec strings are allocated on the heap, it is | |
8510 | the caller's responsibility to free them. */ | |
c906108c | 8511 | |
b9362cc7 | 8512 | static void |
c3f6f71d | 8513 | parse_breakpoint_sals (char **address, |
58438ac1 | 8514 | struct linespec_result *canonical) |
c3f6f71d JM |
8515 | { |
8516 | char *addr_start = *address; | |
cc59ec59 | 8517 | |
c3f6f71d | 8518 | /* If no arg given, or if first arg is 'if ', use the default |
4a64f543 | 8519 | breakpoint. */ |
c3f6f71d JM |
8520 | if ((*address) == NULL |
8521 | || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2]))) | |
c906108c | 8522 | { |
1bfeeb0f JL |
8523 | /* The last displayed codepoint, if it's valid, is our default breakpoint |
8524 | address. */ | |
8525 | if (last_displayed_sal_is_valid ()) | |
c906108c | 8526 | { |
f8eba3c6 | 8527 | struct linespec_sals lsal; |
c3f6f71d | 8528 | struct symtab_and_line sal; |
cc59ec59 | 8529 | |
4a64f543 | 8530 | init_sal (&sal); /* Initialize to zeroes. */ |
f8eba3c6 | 8531 | lsal.sals.sals = (struct symtab_and_line *) |
c906108c | 8532 | xmalloc (sizeof (struct symtab_and_line)); |
1bfeeb0f JL |
8533 | |
8534 | /* Set sal's pspace, pc, symtab, and line to the values | |
8535 | corresponding to the last call to print_frame_info. */ | |
8536 | get_last_displayed_sal (&sal); | |
8537 | sal.section = find_pc_overlay (sal.pc); | |
00903456 | 8538 | |
4a64f543 | 8539 | /* "break" without arguments is equivalent to "break *PC" |
1bfeeb0f JL |
8540 | where PC is the last displayed codepoint's address. So |
8541 | make sure to set sal.explicit_pc to prevent GDB from | |
8542 | trying to expand the list of sals to include all other | |
8543 | instances with the same symtab and line. */ | |
00903456 JK |
8544 | sal.explicit_pc = 1; |
8545 | ||
f8eba3c6 TT |
8546 | lsal.sals.sals[0] = sal; |
8547 | lsal.sals.nelts = 1; | |
8548 | lsal.canonical = NULL; | |
8549 | ||
8550 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
c906108c SS |
8551 | } |
8552 | else | |
8a3fe4f8 | 8553 | error (_("No default breakpoint address now.")); |
c906108c SS |
8554 | } |
8555 | else | |
8556 | { | |
c906108c | 8557 | /* Force almost all breakpoints to be in terms of the |
4a64f543 MS |
8558 | current_source_symtab (which is decode_line_1's default). |
8559 | This should produce the results we want almost all of the | |
f8eba3c6 TT |
8560 | time while leaving default_breakpoint_* alone. */ |
8561 | if (last_displayed_sal_is_valid ()) | |
8562 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, | |
8563 | get_last_displayed_symtab (), | |
8564 | get_last_displayed_line (), | |
8565 | canonical, NULL, NULL); | |
c906108c | 8566 | else |
f8eba3c6 TT |
8567 | decode_line_full (address, DECODE_LINE_FUNFIRSTLINE, |
8568 | (struct symtab *) NULL, 0, | |
8569 | canonical, NULL, NULL); | |
c906108c | 8570 | } |
c3f6f71d | 8571 | } |
c906108c | 8572 | |
c906108c | 8573 | |
c3f6f71d | 8574 | /* Convert each SAL into a real PC. Verify that the PC can be |
4a64f543 | 8575 | inserted as a breakpoint. If it can't throw an error. */ |
c906108c | 8576 | |
b9362cc7 | 8577 | static void |
23e7acfb | 8578 | breakpoint_sals_to_pc (struct symtabs_and_lines *sals) |
c3f6f71d JM |
8579 | { |
8580 | int i; | |
cc59ec59 | 8581 | |
c3f6f71d | 8582 | for (i = 0; i < sals->nelts; i++) |
ee53e872 | 8583 | resolve_sal_pc (&sals->sals[i]); |
c3f6f71d JM |
8584 | } |
8585 | ||
7a697b8d SS |
8586 | /* Fast tracepoints may have restrictions on valid locations. For |
8587 | instance, a fast tracepoint using a jump instead of a trap will | |
8588 | likely have to overwrite more bytes than a trap would, and so can | |
8589 | only be placed where the instruction is longer than the jump, or a | |
8590 | multi-instruction sequence does not have a jump into the middle of | |
8591 | it, etc. */ | |
8592 | ||
8593 | static void | |
8594 | check_fast_tracepoint_sals (struct gdbarch *gdbarch, | |
8595 | struct symtabs_and_lines *sals) | |
8596 | { | |
8597 | int i, rslt; | |
8598 | struct symtab_and_line *sal; | |
8599 | char *msg; | |
8600 | struct cleanup *old_chain; | |
8601 | ||
8602 | for (i = 0; i < sals->nelts; i++) | |
8603 | { | |
f8eba3c6 TT |
8604 | struct gdbarch *sarch; |
8605 | ||
7a697b8d SS |
8606 | sal = &sals->sals[i]; |
8607 | ||
f8eba3c6 TT |
8608 | sarch = get_sal_arch (*sal); |
8609 | /* We fall back to GDBARCH if there is no architecture | |
8610 | associated with SAL. */ | |
8611 | if (sarch == NULL) | |
8612 | sarch = gdbarch; | |
8613 | rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, | |
7a697b8d SS |
8614 | NULL, &msg); |
8615 | old_chain = make_cleanup (xfree, msg); | |
8616 | ||
8617 | if (!rslt) | |
8618 | error (_("May not have a fast tracepoint at 0x%s%s"), | |
f8eba3c6 | 8619 | paddress (sarch, sal->pc), (msg ? msg : "")); |
7a697b8d SS |
8620 | |
8621 | do_cleanups (old_chain); | |
8622 | } | |
8623 | } | |
8624 | ||
018d34a4 VP |
8625 | /* Given TOK, a string specification of condition and thread, as |
8626 | accepted by the 'break' command, extract the condition | |
8627 | string and thread number and set *COND_STRING and *THREAD. | |
4a64f543 | 8628 | PC identifies the context at which the condition should be parsed. |
018d34a4 VP |
8629 | If no condition is found, *COND_STRING is set to NULL. |
8630 | If no thread is found, *THREAD is set to -1. */ | |
8631 | static void | |
8632 | find_condition_and_thread (char *tok, CORE_ADDR pc, | |
4a306c9a | 8633 | char **cond_string, int *thread, int *task) |
018d34a4 VP |
8634 | { |
8635 | *cond_string = NULL; | |
8636 | *thread = -1; | |
8637 | while (tok && *tok) | |
8638 | { | |
8639 | char *end_tok; | |
8640 | int toklen; | |
8641 | char *cond_start = NULL; | |
8642 | char *cond_end = NULL; | |
cc59ec59 | 8643 | |
e9cafbcc | 8644 | tok = skip_spaces (tok); |
018d34a4 | 8645 | |
e9cafbcc | 8646 | end_tok = skip_to_space (tok); |
018d34a4 VP |
8647 | |
8648 | toklen = end_tok - tok; | |
8649 | ||
8650 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) | |
8651 | { | |
f7545552 TT |
8652 | struct expression *expr; |
8653 | ||
018d34a4 | 8654 | tok = cond_start = end_tok + 1; |
f7545552 TT |
8655 | expr = parse_exp_1 (&tok, block_for_pc (pc), 0); |
8656 | xfree (expr); | |
018d34a4 VP |
8657 | cond_end = tok; |
8658 | *cond_string = savestring (cond_start, | |
8659 | cond_end - cond_start); | |
8660 | } | |
8661 | else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0) | |
8662 | { | |
8663 | char *tmptok; | |
8664 | ||
8665 | tok = end_tok + 1; | |
8666 | tmptok = tok; | |
8667 | *thread = strtol (tok, &tok, 0); | |
8668 | if (tok == tmptok) | |
8669 | error (_("Junk after thread keyword.")); | |
8670 | if (!valid_thread_id (*thread)) | |
8671 | error (_("Unknown thread %d."), *thread); | |
8672 | } | |
4a306c9a JB |
8673 | else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0) |
8674 | { | |
8675 | char *tmptok; | |
8676 | ||
8677 | tok = end_tok + 1; | |
8678 | tmptok = tok; | |
8679 | *task = strtol (tok, &tok, 0); | |
8680 | if (tok == tmptok) | |
8681 | error (_("Junk after task keyword.")); | |
8682 | if (!valid_task_id (*task)) | |
b6199126 | 8683 | error (_("Unknown task %d."), *task); |
4a306c9a | 8684 | } |
018d34a4 VP |
8685 | else |
8686 | error (_("Junk at end of arguments.")); | |
8687 | } | |
8688 | } | |
8689 | ||
0fb4aa4b PA |
8690 | /* Decode a static tracepoint marker spec. */ |
8691 | ||
8692 | static struct symtabs_and_lines | |
8693 | decode_static_tracepoint_spec (char **arg_p) | |
8694 | { | |
8695 | VEC(static_tracepoint_marker_p) *markers = NULL; | |
8696 | struct symtabs_and_lines sals; | |
8697 | struct symtab_and_line sal; | |
8698 | struct symbol *sym; | |
8699 | struct cleanup *old_chain; | |
8700 | char *p = &(*arg_p)[3]; | |
8701 | char *endp; | |
8702 | char *marker_str; | |
8703 | int i; | |
8704 | ||
e9cafbcc | 8705 | p = skip_spaces (p); |
0fb4aa4b | 8706 | |
e9cafbcc | 8707 | endp = skip_to_space (p); |
0fb4aa4b PA |
8708 | |
8709 | marker_str = savestring (p, endp - p); | |
8710 | old_chain = make_cleanup (xfree, marker_str); | |
8711 | ||
8712 | markers = target_static_tracepoint_markers_by_strid (marker_str); | |
8713 | if (VEC_empty(static_tracepoint_marker_p, markers)) | |
8714 | error (_("No known static tracepoint marker named %s"), marker_str); | |
8715 | ||
8716 | sals.nelts = VEC_length(static_tracepoint_marker_p, markers); | |
8717 | sals.sals = xmalloc (sizeof *sals.sals * sals.nelts); | |
8718 | ||
8719 | for (i = 0; i < sals.nelts; i++) | |
8720 | { | |
8721 | struct static_tracepoint_marker *marker; | |
8722 | ||
8723 | marker = VEC_index (static_tracepoint_marker_p, markers, i); | |
8724 | ||
8725 | init_sal (&sals.sals[i]); | |
8726 | ||
8727 | sals.sals[i] = find_pc_line (marker->address, 0); | |
8728 | sals.sals[i].pc = marker->address; | |
8729 | ||
8730 | release_static_tracepoint_marker (marker); | |
8731 | } | |
8732 | ||
8733 | do_cleanups (old_chain); | |
8734 | ||
8735 | *arg_p = endp; | |
8736 | return sals; | |
8737 | } | |
8738 | ||
fd9b8c24 PA |
8739 | /* Set a breakpoint. This function is shared between CLI and MI |
8740 | functions for setting a breakpoint. This function has two major | |
8741 | modes of operations, selected by the PARSE_CONDITION_AND_THREAD | |
8742 | parameter. If non-zero, the function will parse arg, extracting | |
4a64f543 MS |
8743 | breakpoint location, address and thread. Otherwise, ARG is just |
8744 | the location of breakpoint, with condition and thread specified by | |
8745 | the COND_STRING and THREAD parameters. If INTERNAL is non-zero, | |
8746 | the breakpoint number will be allocated from the internal | |
8747 | breakpoint count. Returns true if any breakpoint was created; | |
8748 | false otherwise. */ | |
0101ce28 | 8749 | |
8cdf0e15 VP |
8750 | int |
8751 | create_breakpoint (struct gdbarch *gdbarch, | |
8752 | char *arg, char *cond_string, int thread, | |
8753 | int parse_condition_and_thread, | |
0fb4aa4b | 8754 | int tempflag, enum bptype type_wanted, |
8cdf0e15 VP |
8755 | int ignore_count, |
8756 | enum auto_boolean pending_break_support, | |
c0a91b2b | 8757 | const struct breakpoint_ops *ops, |
44f238bb PA |
8758 | int from_tty, int enabled, int internal, |
8759 | unsigned flags) | |
c3f6f71d | 8760 | { |
b78a6381 | 8761 | volatile struct gdb_exception e; |
f8eba3c6 | 8762 | char *copy_arg = NULL; |
c3f6f71d | 8763 | char *addr_start = arg; |
7efd8fc2 | 8764 | struct linespec_result canonical; |
c3f6f71d | 8765 | struct cleanup *old_chain; |
80c99de1 | 8766 | struct cleanup *bkpt_chain = NULL; |
05ff989b | 8767 | int i; |
0101ce28 | 8768 | int pending = 0; |
4a306c9a | 8769 | int task = 0; |
86b17b60 | 8770 | int prev_bkpt_count = breakpoint_count; |
c3f6f71d | 8771 | |
348d480f PA |
8772 | gdb_assert (ops != NULL); |
8773 | ||
7efd8fc2 | 8774 | init_linespec_result (&canonical); |
c3f6f71d | 8775 | |
b78a6381 TT |
8776 | TRY_CATCH (e, RETURN_MASK_ALL) |
8777 | { | |
983af33b SDJ |
8778 | ops->create_sals_from_address (&arg, &canonical, type_wanted, |
8779 | addr_start, ©_arg); | |
b78a6381 | 8780 | } |
0101ce28 JJ |
8781 | |
8782 | /* If caller is interested in rc value from parse, set value. */ | |
05ff989b | 8783 | switch (e.reason) |
0101ce28 | 8784 | { |
983af33b SDJ |
8785 | case GDB_NO_ERROR: |
8786 | if (VEC_empty (linespec_sals, canonical.sals)) | |
8787 | return 0; | |
8788 | break; | |
05ff989b AC |
8789 | case RETURN_ERROR: |
8790 | switch (e.error) | |
0101ce28 | 8791 | { |
05ff989b | 8792 | case NOT_FOUND_ERROR: |
0101ce28 | 8793 | |
05ff989b AC |
8794 | /* If pending breakpoint support is turned off, throw |
8795 | error. */ | |
fa8d40ab JJ |
8796 | |
8797 | if (pending_break_support == AUTO_BOOLEAN_FALSE) | |
723a2275 VP |
8798 | throw_exception (e); |
8799 | ||
8800 | exception_print (gdb_stderr, e); | |
fa8d40ab | 8801 | |
05ff989b AC |
8802 | /* If pending breakpoint support is auto query and the user |
8803 | selects no, then simply return the error code. */ | |
059fb39f | 8804 | if (pending_break_support == AUTO_BOOLEAN_AUTO |
bfccc43c YQ |
8805 | && !nquery (_("Make %s pending on future shared library load? "), |
8806 | bptype_string (type_wanted))) | |
fd9b8c24 | 8807 | return 0; |
fa8d40ab | 8808 | |
05ff989b AC |
8809 | /* At this point, either the user was queried about setting |
8810 | a pending breakpoint and selected yes, or pending | |
8811 | breakpoint behavior is on and thus a pending breakpoint | |
8812 | is defaulted on behalf of the user. */ | |
f8eba3c6 TT |
8813 | { |
8814 | struct linespec_sals lsal; | |
8815 | ||
8816 | copy_arg = xstrdup (addr_start); | |
8817 | lsal.canonical = xstrdup (copy_arg); | |
8818 | lsal.sals.nelts = 1; | |
8819 | lsal.sals.sals = XNEW (struct symtab_and_line); | |
8820 | init_sal (&lsal.sals.sals[0]); | |
8821 | pending = 1; | |
8822 | VEC_safe_push (linespec_sals, canonical.sals, &lsal); | |
8823 | } | |
05ff989b AC |
8824 | break; |
8825 | default: | |
98deb0da | 8826 | throw_exception (e); |
0101ce28 | 8827 | } |
2abae994 | 8828 | break; |
05ff989b | 8829 | default: |
983af33b | 8830 | throw_exception (e); |
0101ce28 | 8831 | } |
c3f6f71d | 8832 | |
4a64f543 | 8833 | /* Create a chain of things that always need to be cleaned up. */ |
f8eba3c6 | 8834 | old_chain = make_cleanup_destroy_linespec_result (&canonical); |
c3f6f71d | 8835 | |
c3f6f71d JM |
8836 | /* ----------------------------- SNIP ----------------------------- |
8837 | Anything added to the cleanup chain beyond this point is assumed | |
8838 | to be part of a breakpoint. If the breakpoint create succeeds | |
80c99de1 PA |
8839 | then the memory is not reclaimed. */ |
8840 | bkpt_chain = make_cleanup (null_cleanup, 0); | |
c3f6f71d | 8841 | |
c3f6f71d JM |
8842 | /* Resolve all line numbers to PC's and verify that the addresses |
8843 | are ok for the target. */ | |
0101ce28 | 8844 | if (!pending) |
f8eba3c6 TT |
8845 | { |
8846 | int ix; | |
8847 | struct linespec_sals *iter; | |
8848 | ||
8849 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
8850 | breakpoint_sals_to_pc (&iter->sals); | |
8851 | } | |
c3f6f71d | 8852 | |
7a697b8d | 8853 | /* Fast tracepoints may have additional restrictions on location. */ |
bfccc43c | 8854 | if (!pending && type_wanted == bp_fast_tracepoint) |
f8eba3c6 TT |
8855 | { |
8856 | int ix; | |
8857 | struct linespec_sals *iter; | |
8858 | ||
8859 | for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix) | |
8860 | check_fast_tracepoint_sals (gdbarch, &iter->sals); | |
8861 | } | |
7a697b8d | 8862 | |
c3f6f71d JM |
8863 | /* Verify that condition can be parsed, before setting any |
8864 | breakpoints. Allocate a separate condition expression for each | |
4a64f543 | 8865 | breakpoint. */ |
0101ce28 | 8866 | if (!pending) |
c3f6f71d | 8867 | { |
f8eba3c6 TT |
8868 | struct linespec_sals *lsal; |
8869 | ||
8870 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
8871 | ||
2f069f6f | 8872 | if (parse_condition_and_thread) |
72b2ff0e VP |
8873 | { |
8874 | /* Here we only parse 'arg' to separate condition | |
8875 | from thread number, so parsing in context of first | |
8876 | sal is OK. When setting the breakpoint we'll | |
8877 | re-parse it in context of each sal. */ | |
8878 | cond_string = NULL; | |
8879 | thread = -1; | |
f8eba3c6 | 8880 | find_condition_and_thread (arg, lsal->sals.sals[0].pc, &cond_string, |
4a306c9a | 8881 | &thread, &task); |
72b2ff0e VP |
8882 | if (cond_string) |
8883 | make_cleanup (xfree, cond_string); | |
8884 | } | |
2f069f6f | 8885 | else |
72b2ff0e VP |
8886 | { |
8887 | /* Create a private copy of condition string. */ | |
8888 | if (cond_string) | |
8889 | { | |
8890 | cond_string = xstrdup (cond_string); | |
8891 | make_cleanup (xfree, cond_string); | |
8892 | } | |
8893 | } | |
0fb4aa4b | 8894 | |
983af33b | 8895 | ops->create_breakpoints_sal (gdbarch, &canonical, lsal, |
d9b3f62e PA |
8896 | cond_string, type_wanted, |
8897 | tempflag ? disp_del : disp_donttouch, | |
8898 | thread, task, ignore_count, ops, | |
44f238bb | 8899 | from_tty, enabled, internal, flags); |
c906108c | 8900 | } |
0101ce28 JJ |
8901 | else |
8902 | { | |
0101ce28 JJ |
8903 | struct breakpoint *b; |
8904 | ||
0101ce28 JJ |
8905 | make_cleanup (xfree, copy_arg); |
8906 | ||
bfccc43c YQ |
8907 | if (is_tracepoint_type (type_wanted)) |
8908 | { | |
8909 | struct tracepoint *t; | |
8910 | ||
8911 | t = XCNEW (struct tracepoint); | |
8912 | b = &t->base; | |
8913 | } | |
8914 | else | |
8915 | b = XNEW (struct breakpoint); | |
8916 | ||
8917 | init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops); | |
8918 | ||
f8eba3c6 | 8919 | b->addr_string = copy_arg; |
72b2ff0e | 8920 | b->cond_string = NULL; |
0101ce28 | 8921 | b->ignore_count = ignore_count; |
0101ce28 | 8922 | b->disposition = tempflag ? disp_del : disp_donttouch; |
0d381245 | 8923 | b->condition_not_parsed = 1; |
41447f92 | 8924 | b->enable_state = enabled ? bp_enabled : bp_disabled; |
cc72b2a2 KP |
8925 | if ((type_wanted != bp_breakpoint |
8926 | && type_wanted != bp_hardware_breakpoint) || thread != -1) | |
f8eba3c6 | 8927 | b->pspace = current_program_space; |
8bea4e01 | 8928 | |
bfccc43c | 8929 | install_breakpoint (internal, b, 0); |
0101ce28 JJ |
8930 | } |
8931 | ||
f8eba3c6 | 8932 | if (VEC_length (linespec_sals, canonical.sals) > 1) |
95a42b64 | 8933 | { |
3e43a32a MS |
8934 | warning (_("Multiple breakpoints were set.\nUse the " |
8935 | "\"delete\" command to delete unwanted breakpoints.")); | |
86b17b60 | 8936 | prev_breakpoint_count = prev_bkpt_count; |
95a42b64 TT |
8937 | } |
8938 | ||
80c99de1 PA |
8939 | /* That's it. Discard the cleanups for data inserted into the |
8940 | breakpoint. */ | |
8941 | discard_cleanups (bkpt_chain); | |
8942 | /* But cleanup everything else. */ | |
c3f6f71d | 8943 | do_cleanups (old_chain); |
217dc9e2 | 8944 | |
80c99de1 | 8945 | /* error call may happen here - have BKPT_CHAIN already discarded. */ |
217dc9e2 | 8946 | update_global_location_list (1); |
fd9b8c24 PA |
8947 | |
8948 | return 1; | |
c3f6f71d | 8949 | } |
c906108c | 8950 | |
348d480f | 8951 | /* Set a breakpoint. |
72b2ff0e VP |
8952 | ARG is a string describing breakpoint address, |
8953 | condition, and thread. | |
8954 | FLAG specifies if a breakpoint is hardware on, | |
8955 | and if breakpoint is temporary, using BP_HARDWARE_FLAG | |
8956 | and BP_TEMPFLAG. */ | |
348d480f | 8957 | |
98deb0da | 8958 | static void |
72b2ff0e | 8959 | break_command_1 (char *arg, int flag, int from_tty) |
c3f6f71d | 8960 | { |
72b2ff0e | 8961 | int tempflag = flag & BP_TEMPFLAG; |
0fb4aa4b PA |
8962 | enum bptype type_wanted = (flag & BP_HARDWAREFLAG |
8963 | ? bp_hardware_breakpoint | |
8964 | : bp_breakpoint); | |
c3f6f71d | 8965 | |
8cdf0e15 VP |
8966 | create_breakpoint (get_current_arch (), |
8967 | arg, | |
8968 | NULL, 0, 1 /* parse arg */, | |
0fb4aa4b | 8969 | tempflag, type_wanted, |
8cdf0e15 VP |
8970 | 0 /* Ignore count */, |
8971 | pending_break_support, | |
348d480f | 8972 | &bkpt_breakpoint_ops, |
8cdf0e15 | 8973 | from_tty, |
84f4c1fe | 8974 | 1 /* enabled */, |
44f238bb PA |
8975 | 0 /* internal */, |
8976 | 0); | |
c906108c SS |
8977 | } |
8978 | ||
c906108c SS |
8979 | /* Helper function for break_command_1 and disassemble_command. */ |
8980 | ||
8981 | void | |
fba45db2 | 8982 | resolve_sal_pc (struct symtab_and_line *sal) |
c906108c SS |
8983 | { |
8984 | CORE_ADDR pc; | |
8985 | ||
8986 | if (sal->pc == 0 && sal->symtab != NULL) | |
8987 | { | |
8988 | if (!find_line_pc (sal->symtab, sal->line, &pc)) | |
8a3fe4f8 | 8989 | error (_("No line %d in file \"%s\"."), |
c906108c SS |
8990 | sal->line, sal->symtab->filename); |
8991 | sal->pc = pc; | |
6a048695 | 8992 | |
4a64f543 MS |
8993 | /* If this SAL corresponds to a breakpoint inserted using a line |
8994 | number, then skip the function prologue if necessary. */ | |
6a048695 | 8995 | if (sal->explicit_line) |
059acae7 | 8996 | skip_prologue_sal (sal); |
c906108c SS |
8997 | } |
8998 | ||
8999 | if (sal->section == 0 && sal->symtab != NULL) | |
9000 | { | |
9001 | struct blockvector *bv; | |
c5aa993b JM |
9002 | struct block *b; |
9003 | struct symbol *sym; | |
c906108c | 9004 | |
801e3a5b | 9005 | bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab); |
c906108c SS |
9006 | if (bv != NULL) |
9007 | { | |
7f0df278 | 9008 | sym = block_linkage_function (b); |
c906108c SS |
9009 | if (sym != NULL) |
9010 | { | |
9011 | fixup_symbol_section (sym, sal->symtab->objfile); | |
714835d5 | 9012 | sal->section = SYMBOL_OBJ_SECTION (sym); |
c906108c SS |
9013 | } |
9014 | else | |
9015 | { | |
4a64f543 MS |
9016 | /* It really is worthwhile to have the section, so we'll |
9017 | just have to look harder. This case can be executed | |
9018 | if we have line numbers but no functions (as can | |
9019 | happen in assembly source). */ | |
c906108c | 9020 | |
c5aa993b | 9021 | struct minimal_symbol *msym; |
6c95b8df PA |
9022 | struct cleanup *old_chain = save_current_space_and_thread (); |
9023 | ||
9024 | switch_to_program_space_and_thread (sal->pspace); | |
c906108c SS |
9025 | |
9026 | msym = lookup_minimal_symbol_by_pc (sal->pc); | |
9027 | if (msym) | |
714835d5 | 9028 | sal->section = SYMBOL_OBJ_SECTION (msym); |
6c95b8df PA |
9029 | |
9030 | do_cleanups (old_chain); | |
c906108c SS |
9031 | } |
9032 | } | |
9033 | } | |
9034 | } | |
9035 | ||
9036 | void | |
fba45db2 | 9037 | break_command (char *arg, int from_tty) |
c906108c | 9038 | { |
db107f19 | 9039 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9040 | } |
9041 | ||
c906108c | 9042 | void |
fba45db2 | 9043 | tbreak_command (char *arg, int from_tty) |
c906108c | 9044 | { |
db107f19 | 9045 | break_command_1 (arg, BP_TEMPFLAG, from_tty); |
c906108c SS |
9046 | } |
9047 | ||
c906108c | 9048 | static void |
fba45db2 | 9049 | hbreak_command (char *arg, int from_tty) |
c906108c | 9050 | { |
db107f19 | 9051 | break_command_1 (arg, BP_HARDWAREFLAG, from_tty); |
c906108c SS |
9052 | } |
9053 | ||
9054 | static void | |
fba45db2 | 9055 | thbreak_command (char *arg, int from_tty) |
c906108c | 9056 | { |
db107f19 | 9057 | break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty); |
c906108c SS |
9058 | } |
9059 | ||
9060 | static void | |
fba45db2 | 9061 | stop_command (char *arg, int from_tty) |
c906108c | 9062 | { |
a3f17187 | 9063 | printf_filtered (_("Specify the type of breakpoint to set.\n\ |
c906108c | 9064 | Usage: stop in <function | address>\n\ |
a3f17187 | 9065 | stop at <line>\n")); |
c906108c SS |
9066 | } |
9067 | ||
9068 | static void | |
fba45db2 | 9069 | stopin_command (char *arg, int from_tty) |
c906108c SS |
9070 | { |
9071 | int badInput = 0; | |
9072 | ||
c5aa993b | 9073 | if (arg == (char *) NULL) |
c906108c SS |
9074 | badInput = 1; |
9075 | else if (*arg != '*') | |
9076 | { | |
9077 | char *argptr = arg; | |
9078 | int hasColon = 0; | |
9079 | ||
4a64f543 | 9080 | /* Look for a ':'. If this is a line number specification, then |
53a5351d | 9081 | say it is bad, otherwise, it should be an address or |
4a64f543 | 9082 | function/method name. */ |
c906108c | 9083 | while (*argptr && !hasColon) |
c5aa993b JM |
9084 | { |
9085 | hasColon = (*argptr == ':'); | |
9086 | argptr++; | |
9087 | } | |
c906108c SS |
9088 | |
9089 | if (hasColon) | |
c5aa993b | 9090 | badInput = (*argptr != ':'); /* Not a class::method */ |
c906108c | 9091 | else |
c5aa993b | 9092 | badInput = isdigit (*arg); /* a simple line number */ |
c906108c SS |
9093 | } |
9094 | ||
9095 | if (badInput) | |
a3f17187 | 9096 | printf_filtered (_("Usage: stop in <function | address>\n")); |
c906108c | 9097 | else |
db107f19 | 9098 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9099 | } |
9100 | ||
9101 | static void | |
fba45db2 | 9102 | stopat_command (char *arg, int from_tty) |
c906108c SS |
9103 | { |
9104 | int badInput = 0; | |
9105 | ||
c5aa993b | 9106 | if (arg == (char *) NULL || *arg == '*') /* no line number */ |
c906108c SS |
9107 | badInput = 1; |
9108 | else | |
9109 | { | |
9110 | char *argptr = arg; | |
9111 | int hasColon = 0; | |
9112 | ||
4a64f543 MS |
9113 | /* Look for a ':'. If there is a '::' then get out, otherwise |
9114 | it is probably a line number. */ | |
c906108c | 9115 | while (*argptr && !hasColon) |
c5aa993b JM |
9116 | { |
9117 | hasColon = (*argptr == ':'); | |
9118 | argptr++; | |
9119 | } | |
c906108c SS |
9120 | |
9121 | if (hasColon) | |
c5aa993b | 9122 | badInput = (*argptr == ':'); /* we have class::method */ |
c906108c | 9123 | else |
c5aa993b | 9124 | badInput = !isdigit (*arg); /* not a line number */ |
c906108c SS |
9125 | } |
9126 | ||
9127 | if (badInput) | |
a3f17187 | 9128 | printf_filtered (_("Usage: stop at <line>\n")); |
c906108c | 9129 | else |
db107f19 | 9130 | break_command_1 (arg, 0, from_tty); |
c906108c SS |
9131 | } |
9132 | ||
f1310107 TJB |
9133 | /* Implement the "breakpoint_hit" breakpoint_ops method for |
9134 | ranged breakpoints. */ | |
9135 | ||
9136 | static int | |
9137 | breakpoint_hit_ranged_breakpoint (const struct bp_location *bl, | |
9138 | struct address_space *aspace, | |
09ac7c10 TT |
9139 | CORE_ADDR bp_addr, |
9140 | const struct target_waitstatus *ws) | |
f1310107 | 9141 | { |
09ac7c10 TT |
9142 | if (ws->kind != TARGET_WAITKIND_STOPPED |
9143 | || ws->value.sig != TARGET_SIGNAL_TRAP) | |
9144 | return 0; | |
9145 | ||
f1310107 TJB |
9146 | return breakpoint_address_match_range (bl->pspace->aspace, bl->address, |
9147 | bl->length, aspace, bp_addr); | |
9148 | } | |
9149 | ||
9150 | /* Implement the "resources_needed" breakpoint_ops method for | |
9151 | ranged breakpoints. */ | |
9152 | ||
9153 | static int | |
9154 | resources_needed_ranged_breakpoint (const struct bp_location *bl) | |
9155 | { | |
9156 | return target_ranged_break_num_registers (); | |
9157 | } | |
9158 | ||
9159 | /* Implement the "print_it" breakpoint_ops method for | |
9160 | ranged breakpoints. */ | |
9161 | ||
9162 | static enum print_stop_action | |
348d480f | 9163 | print_it_ranged_breakpoint (bpstat bs) |
f1310107 | 9164 | { |
348d480f | 9165 | struct breakpoint *b = bs->breakpoint_at; |
f1310107 | 9166 | struct bp_location *bl = b->loc; |
79a45e25 | 9167 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
9168 | |
9169 | gdb_assert (b->type == bp_hardware_breakpoint); | |
9170 | ||
9171 | /* Ranged breakpoints have only one location. */ | |
9172 | gdb_assert (bl && bl->next == NULL); | |
9173 | ||
9174 | annotate_breakpoint (b->number); | |
9175 | if (b->disposition == disp_del) | |
9176 | ui_out_text (uiout, "\nTemporary ranged breakpoint "); | |
9177 | else | |
9178 | ui_out_text (uiout, "\nRanged breakpoint "); | |
9179 | if (ui_out_is_mi_like_p (uiout)) | |
9180 | { | |
9181 | ui_out_field_string (uiout, "reason", | |
9182 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
9183 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
9184 | } | |
9185 | ui_out_field_int (uiout, "bkptno", b->number); | |
9186 | ui_out_text (uiout, ", "); | |
9187 | ||
9188 | return PRINT_SRC_AND_LOC; | |
9189 | } | |
9190 | ||
9191 | /* Implement the "print_one" breakpoint_ops method for | |
9192 | ranged breakpoints. */ | |
9193 | ||
9194 | static void | |
9195 | print_one_ranged_breakpoint (struct breakpoint *b, | |
9196 | struct bp_location **last_loc) | |
9197 | { | |
9198 | struct bp_location *bl = b->loc; | |
9199 | struct value_print_options opts; | |
79a45e25 | 9200 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
9201 | |
9202 | /* Ranged breakpoints have only one location. */ | |
9203 | gdb_assert (bl && bl->next == NULL); | |
9204 | ||
9205 | get_user_print_options (&opts); | |
9206 | ||
9207 | if (opts.addressprint) | |
9208 | /* We don't print the address range here, it will be printed later | |
9209 | by print_one_detail_ranged_breakpoint. */ | |
9210 | ui_out_field_skip (uiout, "addr"); | |
9211 | annotate_field (5); | |
9212 | print_breakpoint_location (b, bl); | |
9213 | *last_loc = bl; | |
9214 | } | |
9215 | ||
9216 | /* Implement the "print_one_detail" breakpoint_ops method for | |
9217 | ranged breakpoints. */ | |
9218 | ||
9219 | static void | |
9220 | print_one_detail_ranged_breakpoint (const struct breakpoint *b, | |
9221 | struct ui_out *uiout) | |
9222 | { | |
9223 | CORE_ADDR address_start, address_end; | |
9224 | struct bp_location *bl = b->loc; | |
f99d8bf4 PA |
9225 | struct ui_file *stb = mem_fileopen (); |
9226 | struct cleanup *cleanup = make_cleanup_ui_file_delete (stb); | |
f1310107 TJB |
9227 | |
9228 | gdb_assert (bl); | |
9229 | ||
9230 | address_start = bl->address; | |
9231 | address_end = address_start + bl->length - 1; | |
9232 | ||
9233 | ui_out_text (uiout, "\taddress range: "); | |
f99d8bf4 | 9234 | fprintf_unfiltered (stb, "[%s, %s]", |
f1310107 TJB |
9235 | print_core_address (bl->gdbarch, address_start), |
9236 | print_core_address (bl->gdbarch, address_end)); | |
9237 | ui_out_field_stream (uiout, "addr", stb); | |
9238 | ui_out_text (uiout, "\n"); | |
9239 | ||
9240 | do_cleanups (cleanup); | |
9241 | } | |
9242 | ||
9243 | /* Implement the "print_mention" breakpoint_ops method for | |
9244 | ranged breakpoints. */ | |
9245 | ||
9246 | static void | |
9247 | print_mention_ranged_breakpoint (struct breakpoint *b) | |
9248 | { | |
9249 | struct bp_location *bl = b->loc; | |
79a45e25 | 9250 | struct ui_out *uiout = current_uiout; |
f1310107 TJB |
9251 | |
9252 | gdb_assert (bl); | |
9253 | gdb_assert (b->type == bp_hardware_breakpoint); | |
9254 | ||
9255 | if (ui_out_is_mi_like_p (uiout)) | |
9256 | return; | |
9257 | ||
9258 | printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."), | |
9259 | b->number, paddress (bl->gdbarch, bl->address), | |
9260 | paddress (bl->gdbarch, bl->address + bl->length - 1)); | |
9261 | } | |
9262 | ||
9263 | /* Implement the "print_recreate" breakpoint_ops method for | |
9264 | ranged breakpoints. */ | |
9265 | ||
9266 | static void | |
9267 | print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp) | |
9268 | { | |
9269 | fprintf_unfiltered (fp, "break-range %s, %s", b->addr_string, | |
9270 | b->addr_string_range_end); | |
d9b3f62e | 9271 | print_recreate_thread (b, fp); |
f1310107 TJB |
9272 | } |
9273 | ||
9274 | /* The breakpoint_ops structure to be used in ranged breakpoints. */ | |
9275 | ||
2060206e | 9276 | static struct breakpoint_ops ranged_breakpoint_ops; |
f1310107 TJB |
9277 | |
9278 | /* Find the address where the end of the breakpoint range should be | |
9279 | placed, given the SAL of the end of the range. This is so that if | |
9280 | the user provides a line number, the end of the range is set to the | |
9281 | last instruction of the given line. */ | |
9282 | ||
9283 | static CORE_ADDR | |
9284 | find_breakpoint_range_end (struct symtab_and_line sal) | |
9285 | { | |
9286 | CORE_ADDR end; | |
9287 | ||
9288 | /* If the user provided a PC value, use it. Otherwise, | |
9289 | find the address of the end of the given location. */ | |
9290 | if (sal.explicit_pc) | |
9291 | end = sal.pc; | |
9292 | else | |
9293 | { | |
9294 | int ret; | |
9295 | CORE_ADDR start; | |
9296 | ||
9297 | ret = find_line_pc_range (sal, &start, &end); | |
9298 | if (!ret) | |
9299 | error (_("Could not find location of the end of the range.")); | |
9300 | ||
9301 | /* find_line_pc_range returns the start of the next line. */ | |
9302 | end--; | |
9303 | } | |
9304 | ||
9305 | return end; | |
9306 | } | |
9307 | ||
9308 | /* Implement the "break-range" CLI command. */ | |
9309 | ||
9310 | static void | |
9311 | break_range_command (char *arg, int from_tty) | |
9312 | { | |
9313 | char *arg_start, *addr_string_start, *addr_string_end; | |
9314 | struct linespec_result canonical_start, canonical_end; | |
9315 | int bp_count, can_use_bp, length; | |
9316 | CORE_ADDR end; | |
9317 | struct breakpoint *b; | |
9318 | struct symtab_and_line sal_start, sal_end; | |
f1310107 | 9319 | struct cleanup *cleanup_bkpt; |
f8eba3c6 | 9320 | struct linespec_sals *lsal_start, *lsal_end; |
f1310107 TJB |
9321 | |
9322 | /* We don't support software ranged breakpoints. */ | |
9323 | if (target_ranged_break_num_registers () < 0) | |
9324 | error (_("This target does not support hardware ranged breakpoints.")); | |
9325 | ||
9326 | bp_count = hw_breakpoint_used_count (); | |
9327 | bp_count += target_ranged_break_num_registers (); | |
9328 | can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint, | |
9329 | bp_count, 0); | |
9330 | if (can_use_bp < 0) | |
9331 | error (_("Hardware breakpoints used exceeds limit.")); | |
9332 | ||
f8eba3c6 | 9333 | arg = skip_spaces (arg); |
f1310107 TJB |
9334 | if (arg == NULL || arg[0] == '\0') |
9335 | error(_("No address range specified.")); | |
9336 | ||
f1310107 TJB |
9337 | init_linespec_result (&canonical_start); |
9338 | ||
f8eba3c6 TT |
9339 | arg_start = arg; |
9340 | parse_breakpoint_sals (&arg, &canonical_start); | |
f1310107 | 9341 | |
f8eba3c6 | 9342 | cleanup_bkpt = make_cleanup_destroy_linespec_result (&canonical_start); |
f1310107 TJB |
9343 | |
9344 | if (arg[0] != ',') | |
9345 | error (_("Too few arguments.")); | |
f8eba3c6 | 9346 | else if (VEC_empty (linespec_sals, canonical_start.sals)) |
f1310107 | 9347 | error (_("Could not find location of the beginning of the range.")); |
f8eba3c6 TT |
9348 | |
9349 | lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0); | |
9350 | ||
9351 | if (VEC_length (linespec_sals, canonical_start.sals) > 1 | |
9352 | || lsal_start->sals.nelts != 1) | |
f1310107 TJB |
9353 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
9354 | ||
f8eba3c6 TT |
9355 | sal_start = lsal_start->sals.sals[0]; |
9356 | addr_string_start = savestring (arg_start, arg - arg_start); | |
9357 | make_cleanup (xfree, addr_string_start); | |
f1310107 TJB |
9358 | |
9359 | arg++; /* Skip the comma. */ | |
f8eba3c6 | 9360 | arg = skip_spaces (arg); |
f1310107 TJB |
9361 | |
9362 | /* Parse the end location. */ | |
9363 | ||
f1310107 TJB |
9364 | init_linespec_result (&canonical_end); |
9365 | arg_start = arg; | |
9366 | ||
f8eba3c6 | 9367 | /* We call decode_line_full directly here instead of using |
f1310107 TJB |
9368 | parse_breakpoint_sals because we need to specify the start location's |
9369 | symtab and line as the default symtab and line for the end of the | |
9370 | range. This makes it possible to have ranges like "foo.c:27, +14", | |
9371 | where +14 means 14 lines from the start location. */ | |
f8eba3c6 TT |
9372 | decode_line_full (&arg, DECODE_LINE_FUNFIRSTLINE, |
9373 | sal_start.symtab, sal_start.line, | |
9374 | &canonical_end, NULL, NULL); | |
9375 | ||
9376 | make_cleanup_destroy_linespec_result (&canonical_end); | |
f1310107 | 9377 | |
f8eba3c6 | 9378 | if (VEC_empty (linespec_sals, canonical_end.sals)) |
f1310107 | 9379 | error (_("Could not find location of the end of the range.")); |
f8eba3c6 TT |
9380 | |
9381 | lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0); | |
9382 | if (VEC_length (linespec_sals, canonical_end.sals) > 1 | |
9383 | || lsal_end->sals.nelts != 1) | |
f1310107 TJB |
9384 | error (_("Cannot create a ranged breakpoint with multiple locations.")); |
9385 | ||
f8eba3c6 TT |
9386 | sal_end = lsal_end->sals.sals[0]; |
9387 | addr_string_end = savestring (arg_start, arg - arg_start); | |
9388 | make_cleanup (xfree, addr_string_end); | |
f1310107 TJB |
9389 | |
9390 | end = find_breakpoint_range_end (sal_end); | |
9391 | if (sal_start.pc > end) | |
177b42fe | 9392 | error (_("Invalid address range, end precedes start.")); |
f1310107 TJB |
9393 | |
9394 | length = end - sal_start.pc + 1; | |
9395 | if (length < 0) | |
9396 | /* Length overflowed. */ | |
9397 | error (_("Address range too large.")); | |
9398 | else if (length == 1) | |
9399 | { | |
9400 | /* This range is simple enough to be handled by | |
9401 | the `hbreak' command. */ | |
9402 | hbreak_command (addr_string_start, 1); | |
9403 | ||
9404 | do_cleanups (cleanup_bkpt); | |
9405 | ||
9406 | return; | |
9407 | } | |
9408 | ||
9409 | /* Now set up the breakpoint. */ | |
9410 | b = set_raw_breakpoint (get_current_arch (), sal_start, | |
348d480f | 9411 | bp_hardware_breakpoint, &ranged_breakpoint_ops); |
f1310107 TJB |
9412 | set_breakpoint_count (breakpoint_count + 1); |
9413 | b->number = breakpoint_count; | |
9414 | b->disposition = disp_donttouch; | |
f8eba3c6 TT |
9415 | b->addr_string = xstrdup (addr_string_start); |
9416 | b->addr_string_range_end = xstrdup (addr_string_end); | |
f1310107 TJB |
9417 | b->loc->length = length; |
9418 | ||
f8eba3c6 | 9419 | do_cleanups (cleanup_bkpt); |
f1310107 TJB |
9420 | |
9421 | mention (b); | |
8d3788bd | 9422 | observer_notify_breakpoint_created (b); |
f1310107 TJB |
9423 | update_global_location_list (1); |
9424 | } | |
9425 | ||
4a64f543 MS |
9426 | /* Return non-zero if EXP is verified as constant. Returned zero |
9427 | means EXP is variable. Also the constant detection may fail for | |
9428 | some constant expressions and in such case still falsely return | |
9429 | zero. */ | |
2e6e3d9c | 9430 | |
65d79d4b SDJ |
9431 | static int |
9432 | watchpoint_exp_is_const (const struct expression *exp) | |
9433 | { | |
9434 | int i = exp->nelts; | |
9435 | ||
9436 | while (i > 0) | |
9437 | { | |
9438 | int oplenp, argsp; | |
9439 | ||
9440 | /* We are only interested in the descriptor of each element. */ | |
9441 | operator_length (exp, i, &oplenp, &argsp); | |
9442 | i -= oplenp; | |
9443 | ||
9444 | switch (exp->elts[i].opcode) | |
9445 | { | |
9446 | case BINOP_ADD: | |
9447 | case BINOP_SUB: | |
9448 | case BINOP_MUL: | |
9449 | case BINOP_DIV: | |
9450 | case BINOP_REM: | |
9451 | case BINOP_MOD: | |
9452 | case BINOP_LSH: | |
9453 | case BINOP_RSH: | |
9454 | case BINOP_LOGICAL_AND: | |
9455 | case BINOP_LOGICAL_OR: | |
9456 | case BINOP_BITWISE_AND: | |
9457 | case BINOP_BITWISE_IOR: | |
9458 | case BINOP_BITWISE_XOR: | |
9459 | case BINOP_EQUAL: | |
9460 | case BINOP_NOTEQUAL: | |
9461 | case BINOP_LESS: | |
9462 | case BINOP_GTR: | |
9463 | case BINOP_LEQ: | |
9464 | case BINOP_GEQ: | |
9465 | case BINOP_REPEAT: | |
9466 | case BINOP_COMMA: | |
9467 | case BINOP_EXP: | |
9468 | case BINOP_MIN: | |
9469 | case BINOP_MAX: | |
9470 | case BINOP_INTDIV: | |
9471 | case BINOP_CONCAT: | |
9472 | case BINOP_IN: | |
9473 | case BINOP_RANGE: | |
9474 | case TERNOP_COND: | |
9475 | case TERNOP_SLICE: | |
9476 | case TERNOP_SLICE_COUNT: | |
9477 | ||
9478 | case OP_LONG: | |
9479 | case OP_DOUBLE: | |
9480 | case OP_DECFLOAT: | |
9481 | case OP_LAST: | |
9482 | case OP_COMPLEX: | |
9483 | case OP_STRING: | |
9484 | case OP_BITSTRING: | |
9485 | case OP_ARRAY: | |
9486 | case OP_TYPE: | |
9487 | case OP_NAME: | |
9488 | case OP_OBJC_NSSTRING: | |
9489 | ||
9490 | case UNOP_NEG: | |
9491 | case UNOP_LOGICAL_NOT: | |
9492 | case UNOP_COMPLEMENT: | |
9493 | case UNOP_ADDR: | |
9494 | case UNOP_HIGH: | |
aeaa2474 | 9495 | case UNOP_CAST: |
4a64f543 MS |
9496 | /* Unary, binary and ternary operators: We have to check |
9497 | their operands. If they are constant, then so is the | |
9498 | result of that operation. For instance, if A and B are | |
9499 | determined to be constants, then so is "A + B". | |
9500 | ||
9501 | UNOP_IND is one exception to the rule above, because the | |
9502 | value of *ADDR is not necessarily a constant, even when | |
9503 | ADDR is. */ | |
65d79d4b SDJ |
9504 | break; |
9505 | ||
9506 | case OP_VAR_VALUE: | |
9507 | /* Check whether the associated symbol is a constant. | |
4a64f543 | 9508 | |
65d79d4b | 9509 | We use SYMBOL_CLASS rather than TYPE_CONST because it's |
4a64f543 MS |
9510 | possible that a buggy compiler could mark a variable as |
9511 | constant even when it is not, and TYPE_CONST would return | |
9512 | true in this case, while SYMBOL_CLASS wouldn't. | |
9513 | ||
9514 | We also have to check for function symbols because they | |
9515 | are always constant. */ | |
65d79d4b SDJ |
9516 | { |
9517 | struct symbol *s = exp->elts[i + 2].symbol; | |
9518 | ||
9519 | if (SYMBOL_CLASS (s) != LOC_BLOCK | |
9520 | && SYMBOL_CLASS (s) != LOC_CONST | |
9521 | && SYMBOL_CLASS (s) != LOC_CONST_BYTES) | |
9522 | return 0; | |
9523 | break; | |
9524 | } | |
9525 | ||
9526 | /* The default action is to return 0 because we are using | |
9527 | the optimistic approach here: If we don't know something, | |
9528 | then it is not a constant. */ | |
9529 | default: | |
9530 | return 0; | |
9531 | } | |
9532 | } | |
9533 | ||
9534 | return 1; | |
9535 | } | |
9536 | ||
3a5c3e22 PA |
9537 | /* Implement the "dtor" breakpoint_ops method for watchpoints. */ |
9538 | ||
9539 | static void | |
9540 | dtor_watchpoint (struct breakpoint *self) | |
9541 | { | |
9542 | struct watchpoint *w = (struct watchpoint *) self; | |
9543 | ||
9544 | xfree (w->cond_exp); | |
9545 | xfree (w->exp); | |
9546 | xfree (w->exp_string); | |
9547 | xfree (w->exp_string_reparse); | |
9548 | value_free (w->val); | |
9549 | ||
9550 | base_breakpoint_ops.dtor (self); | |
9551 | } | |
9552 | ||
348d480f PA |
9553 | /* Implement the "re_set" breakpoint_ops method for watchpoints. */ |
9554 | ||
9555 | static void | |
9556 | re_set_watchpoint (struct breakpoint *b) | |
9557 | { | |
3a5c3e22 PA |
9558 | struct watchpoint *w = (struct watchpoint *) b; |
9559 | ||
348d480f PA |
9560 | /* Watchpoint can be either on expression using entirely global |
9561 | variables, or it can be on local variables. | |
9562 | ||
9563 | Watchpoints of the first kind are never auto-deleted, and even | |
9564 | persist across program restarts. Since they can use variables | |
9565 | from shared libraries, we need to reparse expression as libraries | |
9566 | are loaded and unloaded. | |
9567 | ||
9568 | Watchpoints on local variables can also change meaning as result | |
9569 | of solib event. For example, if a watchpoint uses both a local | |
9570 | and a global variables in expression, it's a local watchpoint, | |
9571 | but unloading of a shared library will make the expression | |
9572 | invalid. This is not a very common use case, but we still | |
9573 | re-evaluate expression, to avoid surprises to the user. | |
9574 | ||
9575 | Note that for local watchpoints, we re-evaluate it only if | |
9576 | watchpoints frame id is still valid. If it's not, it means the | |
9577 | watchpoint is out of scope and will be deleted soon. In fact, | |
9578 | I'm not sure we'll ever be called in this case. | |
9579 | ||
9580 | If a local watchpoint's frame id is still valid, then | |
3a5c3e22 | 9581 | w->exp_valid_block is likewise valid, and we can safely use it. |
348d480f | 9582 | |
3a5c3e22 PA |
9583 | Don't do anything about disabled watchpoints, since they will be |
9584 | reevaluated again when enabled. */ | |
9585 | update_watchpoint (w, 1 /* reparse */); | |
348d480f PA |
9586 | } |
9587 | ||
77b06cd7 TJB |
9588 | /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */ |
9589 | ||
9590 | static int | |
9591 | insert_watchpoint (struct bp_location *bl) | |
9592 | { | |
3a5c3e22 PA |
9593 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9594 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
9595 | |
9596 | return target_insert_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 9597 | w->cond_exp); |
77b06cd7 TJB |
9598 | } |
9599 | ||
9600 | /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */ | |
9601 | ||
9602 | static int | |
9603 | remove_watchpoint (struct bp_location *bl) | |
9604 | { | |
3a5c3e22 PA |
9605 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9606 | int length = w->exact ? 1 : bl->length; | |
e09342b5 TJB |
9607 | |
9608 | return target_remove_watchpoint (bl->address, length, bl->watchpoint_type, | |
3a5c3e22 | 9609 | w->cond_exp); |
e09342b5 TJB |
9610 | } |
9611 | ||
e09342b5 | 9612 | static int |
348d480f | 9613 | breakpoint_hit_watchpoint (const struct bp_location *bl, |
09ac7c10 TT |
9614 | struct address_space *aspace, CORE_ADDR bp_addr, |
9615 | const struct target_waitstatus *ws) | |
e09342b5 | 9616 | { |
348d480f | 9617 | struct breakpoint *b = bl->owner; |
3a5c3e22 | 9618 | struct watchpoint *w = (struct watchpoint *) b; |
77b06cd7 | 9619 | |
348d480f PA |
9620 | /* Continuable hardware watchpoints are treated as non-existent if the |
9621 | reason we stopped wasn't a hardware watchpoint (we didn't stop on | |
9622 | some data address). Otherwise gdb won't stop on a break instruction | |
9623 | in the code (not from a breakpoint) when a hardware watchpoint has | |
9624 | been defined. Also skip watchpoints which we know did not trigger | |
9625 | (did not match the data address). */ | |
9626 | if (is_hardware_watchpoint (b) | |
3a5c3e22 | 9627 | && w->watchpoint_triggered == watch_triggered_no) |
348d480f | 9628 | return 0; |
9c06b0b4 | 9629 | |
348d480f | 9630 | return 1; |
9c06b0b4 TJB |
9631 | } |
9632 | ||
348d480f PA |
9633 | static void |
9634 | check_status_watchpoint (bpstat bs) | |
9c06b0b4 | 9635 | { |
348d480f | 9636 | gdb_assert (is_watchpoint (bs->breakpoint_at)); |
9c06b0b4 | 9637 | |
348d480f | 9638 | bpstat_check_watchpoint (bs); |
9c06b0b4 TJB |
9639 | } |
9640 | ||
9641 | /* Implement the "resources_needed" breakpoint_ops method for | |
348d480f | 9642 | hardware watchpoints. */ |
9c06b0b4 TJB |
9643 | |
9644 | static int | |
348d480f | 9645 | resources_needed_watchpoint (const struct bp_location *bl) |
9c06b0b4 | 9646 | { |
3a5c3e22 PA |
9647 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9648 | int length = w->exact? 1 : bl->length; | |
348d480f PA |
9649 | |
9650 | return target_region_ok_for_hw_watchpoint (bl->address, length); | |
9c06b0b4 TJB |
9651 | } |
9652 | ||
9653 | /* Implement the "works_in_software_mode" breakpoint_ops method for | |
348d480f | 9654 | hardware watchpoints. */ |
9c06b0b4 TJB |
9655 | |
9656 | static int | |
348d480f | 9657 | works_in_software_mode_watchpoint (const struct breakpoint *b) |
9c06b0b4 | 9658 | { |
efa80663 PA |
9659 | /* Read and access watchpoints only work with hardware support. */ |
9660 | return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint; | |
9c06b0b4 TJB |
9661 | } |
9662 | ||
9c06b0b4 | 9663 | static enum print_stop_action |
348d480f | 9664 | print_it_watchpoint (bpstat bs) |
9c06b0b4 | 9665 | { |
348d480f PA |
9666 | struct cleanup *old_chain; |
9667 | struct breakpoint *b; | |
9668 | const struct bp_location *bl; | |
f99d8bf4 | 9669 | struct ui_file *stb; |
348d480f | 9670 | enum print_stop_action result; |
3a5c3e22 | 9671 | struct watchpoint *w; |
79a45e25 | 9672 | struct ui_out *uiout = current_uiout; |
348d480f PA |
9673 | |
9674 | gdb_assert (bs->bp_location_at != NULL); | |
9675 | ||
9676 | bl = bs->bp_location_at; | |
9677 | b = bs->breakpoint_at; | |
3a5c3e22 | 9678 | w = (struct watchpoint *) b; |
348d480f | 9679 | |
f99d8bf4 PA |
9680 | stb = mem_fileopen (); |
9681 | old_chain = make_cleanup_ui_file_delete (stb); | |
9c06b0b4 TJB |
9682 | |
9683 | switch (b->type) | |
9684 | { | |
348d480f | 9685 | case bp_watchpoint: |
9c06b0b4 TJB |
9686 | case bp_hardware_watchpoint: |
9687 | annotate_watchpoint (b->number); | |
9688 | if (ui_out_is_mi_like_p (uiout)) | |
9689 | ui_out_field_string | |
9690 | (uiout, "reason", | |
9691 | async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER)); | |
348d480f PA |
9692 | mention (b); |
9693 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
9694 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 9695 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
9696 | ui_out_field_stream (uiout, "old", stb); |
9697 | ui_out_text (uiout, "\nNew value = "); | |
f99d8bf4 | 9698 | watchpoint_value_print (w->val, stb); |
348d480f PA |
9699 | ui_out_field_stream (uiout, "new", stb); |
9700 | ui_out_text (uiout, "\n"); | |
9701 | /* More than one watchpoint may have been triggered. */ | |
9702 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
9703 | break; |
9704 | ||
9705 | case bp_read_watchpoint: | |
9706 | if (ui_out_is_mi_like_p (uiout)) | |
9707 | ui_out_field_string | |
9708 | (uiout, "reason", | |
9709 | async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER)); | |
348d480f PA |
9710 | mention (b); |
9711 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
9712 | ui_out_text (uiout, "\nValue = "); | |
f99d8bf4 | 9713 | watchpoint_value_print (w->val, stb); |
348d480f PA |
9714 | ui_out_field_stream (uiout, "value", stb); |
9715 | ui_out_text (uiout, "\n"); | |
9716 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
9717 | break; |
9718 | ||
9719 | case bp_access_watchpoint: | |
348d480f PA |
9720 | if (bs->old_val != NULL) |
9721 | { | |
9722 | annotate_watchpoint (b->number); | |
9723 | if (ui_out_is_mi_like_p (uiout)) | |
9724 | ui_out_field_string | |
9725 | (uiout, "reason", | |
9726 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
9727 | mention (b); | |
9728 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
9729 | ui_out_text (uiout, "\nOld value = "); | |
f99d8bf4 | 9730 | watchpoint_value_print (bs->old_val, stb); |
348d480f PA |
9731 | ui_out_field_stream (uiout, "old", stb); |
9732 | ui_out_text (uiout, "\nNew value = "); | |
9733 | } | |
9734 | else | |
9735 | { | |
9736 | mention (b); | |
9737 | if (ui_out_is_mi_like_p (uiout)) | |
9738 | ui_out_field_string | |
9739 | (uiout, "reason", | |
9740 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
9741 | make_cleanup_ui_out_tuple_begin_end (uiout, "value"); | |
9742 | ui_out_text (uiout, "\nValue = "); | |
9743 | } | |
f99d8bf4 | 9744 | watchpoint_value_print (w->val, stb); |
348d480f PA |
9745 | ui_out_field_stream (uiout, "new", stb); |
9746 | ui_out_text (uiout, "\n"); | |
9747 | result = PRINT_UNKNOWN; | |
9c06b0b4 TJB |
9748 | break; |
9749 | default: | |
348d480f | 9750 | result = PRINT_UNKNOWN; |
9c06b0b4 TJB |
9751 | } |
9752 | ||
348d480f PA |
9753 | do_cleanups (old_chain); |
9754 | return result; | |
9755 | } | |
9756 | ||
9757 | /* Implement the "print_mention" breakpoint_ops method for hardware | |
9758 | watchpoints. */ | |
9759 | ||
9760 | static void | |
9761 | print_mention_watchpoint (struct breakpoint *b) | |
9762 | { | |
9763 | struct cleanup *ui_out_chain; | |
3a5c3e22 | 9764 | struct watchpoint *w = (struct watchpoint *) b; |
79a45e25 | 9765 | struct ui_out *uiout = current_uiout; |
348d480f PA |
9766 | |
9767 | switch (b->type) | |
9768 | { | |
9769 | case bp_watchpoint: | |
9770 | ui_out_text (uiout, "Watchpoint "); | |
9771 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
9772 | break; | |
9773 | case bp_hardware_watchpoint: | |
9774 | ui_out_text (uiout, "Hardware watchpoint "); | |
9775 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
9776 | break; | |
9777 | case bp_read_watchpoint: | |
9778 | ui_out_text (uiout, "Hardware read watchpoint "); | |
9779 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
9780 | break; | |
9781 | case bp_access_watchpoint: | |
9782 | ui_out_text (uiout, "Hardware access (read/write) watchpoint "); | |
9783 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
9784 | break; | |
9785 | default: | |
9786 | internal_error (__FILE__, __LINE__, | |
9787 | _("Invalid hardware watchpoint type.")); | |
9788 | } | |
9789 | ||
9790 | ui_out_field_int (uiout, "number", b->number); | |
9791 | ui_out_text (uiout, ": "); | |
3a5c3e22 | 9792 | ui_out_field_string (uiout, "exp", w->exp_string); |
348d480f PA |
9793 | do_cleanups (ui_out_chain); |
9794 | } | |
9795 | ||
9796 | /* Implement the "print_recreate" breakpoint_ops method for | |
9797 | watchpoints. */ | |
9798 | ||
9799 | static void | |
9800 | print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp) | |
9801 | { | |
3a5c3e22 PA |
9802 | struct watchpoint *w = (struct watchpoint *) b; |
9803 | ||
348d480f PA |
9804 | switch (b->type) |
9805 | { | |
9806 | case bp_watchpoint: | |
9807 | case bp_hardware_watchpoint: | |
9808 | fprintf_unfiltered (fp, "watch"); | |
9809 | break; | |
9810 | case bp_read_watchpoint: | |
9811 | fprintf_unfiltered (fp, "rwatch"); | |
9812 | break; | |
9813 | case bp_access_watchpoint: | |
9814 | fprintf_unfiltered (fp, "awatch"); | |
9815 | break; | |
9816 | default: | |
9817 | internal_error (__FILE__, __LINE__, | |
9818 | _("Invalid watchpoint type.")); | |
9819 | } | |
9820 | ||
3a5c3e22 | 9821 | fprintf_unfiltered (fp, " %s", w->exp_string); |
d9b3f62e | 9822 | print_recreate_thread (b, fp); |
348d480f PA |
9823 | } |
9824 | ||
9825 | /* The breakpoint_ops structure to be used in hardware watchpoints. */ | |
9826 | ||
2060206e | 9827 | static struct breakpoint_ops watchpoint_breakpoint_ops; |
348d480f PA |
9828 | |
9829 | /* Implement the "insert" breakpoint_ops method for | |
9830 | masked hardware watchpoints. */ | |
9831 | ||
9832 | static int | |
9833 | insert_masked_watchpoint (struct bp_location *bl) | |
9834 | { | |
3a5c3e22 PA |
9835 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9836 | ||
9837 | return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask, | |
348d480f PA |
9838 | bl->watchpoint_type); |
9839 | } | |
9840 | ||
9841 | /* Implement the "remove" breakpoint_ops method for | |
9842 | masked hardware watchpoints. */ | |
9843 | ||
9844 | static int | |
9845 | remove_masked_watchpoint (struct bp_location *bl) | |
9846 | { | |
3a5c3e22 PA |
9847 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9848 | ||
9849 | return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask, | |
348d480f PA |
9850 | bl->watchpoint_type); |
9851 | } | |
9852 | ||
9853 | /* Implement the "resources_needed" breakpoint_ops method for | |
9854 | masked hardware watchpoints. */ | |
9855 | ||
9856 | static int | |
9857 | resources_needed_masked_watchpoint (const struct bp_location *bl) | |
9858 | { | |
3a5c3e22 PA |
9859 | struct watchpoint *w = (struct watchpoint *) bl->owner; |
9860 | ||
9861 | return target_masked_watch_num_registers (bl->address, w->hw_wp_mask); | |
348d480f PA |
9862 | } |
9863 | ||
9864 | /* Implement the "works_in_software_mode" breakpoint_ops method for | |
9865 | masked hardware watchpoints. */ | |
9866 | ||
9867 | static int | |
9868 | works_in_software_mode_masked_watchpoint (const struct breakpoint *b) | |
9869 | { | |
9870 | return 0; | |
9871 | } | |
9872 | ||
9873 | /* Implement the "print_it" breakpoint_ops method for | |
9874 | masked hardware watchpoints. */ | |
9875 | ||
9876 | static enum print_stop_action | |
9877 | print_it_masked_watchpoint (bpstat bs) | |
9878 | { | |
9879 | struct breakpoint *b = bs->breakpoint_at; | |
79a45e25 | 9880 | struct ui_out *uiout = current_uiout; |
348d480f PA |
9881 | |
9882 | /* Masked watchpoints have only one location. */ | |
9883 | gdb_assert (b->loc && b->loc->next == NULL); | |
9884 | ||
9885 | switch (b->type) | |
9886 | { | |
9887 | case bp_hardware_watchpoint: | |
9888 | annotate_watchpoint (b->number); | |
9889 | if (ui_out_is_mi_like_p (uiout)) | |
9890 | ui_out_field_string | |
9891 | (uiout, "reason", | |
9892 | async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER)); | |
9893 | break; | |
9894 | ||
9895 | case bp_read_watchpoint: | |
9896 | if (ui_out_is_mi_like_p (uiout)) | |
9897 | ui_out_field_string | |
9898 | (uiout, "reason", | |
9899 | async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER)); | |
9900 | break; | |
9901 | ||
9902 | case bp_access_watchpoint: | |
9903 | if (ui_out_is_mi_like_p (uiout)) | |
9904 | ui_out_field_string | |
9905 | (uiout, "reason", | |
9906 | async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER)); | |
9907 | break; | |
9908 | default: | |
9909 | internal_error (__FILE__, __LINE__, | |
9910 | _("Invalid hardware watchpoint type.")); | |
9911 | } | |
9912 | ||
9913 | mention (b); | |
9c06b0b4 TJB |
9914 | ui_out_text (uiout, _("\n\ |
9915 | Check the underlying instruction at PC for the memory\n\ | |
9916 | address and value which triggered this watchpoint.\n")); | |
9917 | ui_out_text (uiout, "\n"); | |
9918 | ||
9919 | /* More than one watchpoint may have been triggered. */ | |
9920 | return PRINT_UNKNOWN; | |
9921 | } | |
9922 | ||
9923 | /* Implement the "print_one_detail" breakpoint_ops method for | |
9924 | masked hardware watchpoints. */ | |
9925 | ||
9926 | static void | |
9927 | print_one_detail_masked_watchpoint (const struct breakpoint *b, | |
9928 | struct ui_out *uiout) | |
9929 | { | |
3a5c3e22 PA |
9930 | struct watchpoint *w = (struct watchpoint *) b; |
9931 | ||
9c06b0b4 TJB |
9932 | /* Masked watchpoints have only one location. */ |
9933 | gdb_assert (b->loc && b->loc->next == NULL); | |
9934 | ||
9935 | ui_out_text (uiout, "\tmask "); | |
3a5c3e22 | 9936 | ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask); |
9c06b0b4 TJB |
9937 | ui_out_text (uiout, "\n"); |
9938 | } | |
9939 | ||
9940 | /* Implement the "print_mention" breakpoint_ops method for | |
9941 | masked hardware watchpoints. */ | |
9942 | ||
9943 | static void | |
9944 | print_mention_masked_watchpoint (struct breakpoint *b) | |
9945 | { | |
3a5c3e22 | 9946 | struct watchpoint *w = (struct watchpoint *) b; |
79a45e25 | 9947 | struct ui_out *uiout = current_uiout; |
9c06b0b4 TJB |
9948 | struct cleanup *ui_out_chain; |
9949 | ||
9950 | switch (b->type) | |
9951 | { | |
9952 | case bp_hardware_watchpoint: | |
9953 | ui_out_text (uiout, "Masked hardware watchpoint "); | |
9954 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
9955 | break; | |
9956 | case bp_read_watchpoint: | |
9957 | ui_out_text (uiout, "Masked hardware read watchpoint "); | |
9958 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
9959 | break; | |
9960 | case bp_access_watchpoint: | |
9961 | ui_out_text (uiout, "Masked hardware access (read/write) watchpoint "); | |
9962 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
9963 | break; | |
9964 | default: | |
9965 | internal_error (__FILE__, __LINE__, | |
9966 | _("Invalid hardware watchpoint type.")); | |
9967 | } | |
9968 | ||
9969 | ui_out_field_int (uiout, "number", b->number); | |
9970 | ui_out_text (uiout, ": "); | |
3a5c3e22 | 9971 | ui_out_field_string (uiout, "exp", w->exp_string); |
9c06b0b4 TJB |
9972 | do_cleanups (ui_out_chain); |
9973 | } | |
9974 | ||
9975 | /* Implement the "print_recreate" breakpoint_ops method for | |
9976 | masked hardware watchpoints. */ | |
9977 | ||
9978 | static void | |
9979 | print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp) | |
9980 | { | |
3a5c3e22 | 9981 | struct watchpoint *w = (struct watchpoint *) b; |
9c06b0b4 TJB |
9982 | char tmp[40]; |
9983 | ||
9984 | switch (b->type) | |
9985 | { | |
9986 | case bp_hardware_watchpoint: | |
9987 | fprintf_unfiltered (fp, "watch"); | |
9988 | break; | |
9989 | case bp_read_watchpoint: | |
9990 | fprintf_unfiltered (fp, "rwatch"); | |
9991 | break; | |
9992 | case bp_access_watchpoint: | |
9993 | fprintf_unfiltered (fp, "awatch"); | |
9994 | break; | |
9995 | default: | |
9996 | internal_error (__FILE__, __LINE__, | |
9997 | _("Invalid hardware watchpoint type.")); | |
9998 | } | |
9999 | ||
3a5c3e22 PA |
10000 | sprintf_vma (tmp, w->hw_wp_mask); |
10001 | fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp); | |
d9b3f62e | 10002 | print_recreate_thread (b, fp); |
9c06b0b4 TJB |
10003 | } |
10004 | ||
10005 | /* The breakpoint_ops structure to be used in masked hardware watchpoints. */ | |
10006 | ||
2060206e | 10007 | static struct breakpoint_ops masked_watchpoint_breakpoint_ops; |
9c06b0b4 TJB |
10008 | |
10009 | /* Tell whether the given watchpoint is a masked hardware watchpoint. */ | |
10010 | ||
10011 | static int | |
10012 | is_masked_watchpoint (const struct breakpoint *b) | |
10013 | { | |
10014 | return b->ops == &masked_watchpoint_breakpoint_ops; | |
10015 | } | |
10016 | ||
53a5351d JM |
10017 | /* accessflag: hw_write: watch write, |
10018 | hw_read: watch read, | |
10019 | hw_access: watch access (read or write) */ | |
c906108c | 10020 | static void |
84f4c1fe PM |
10021 | watch_command_1 (char *arg, int accessflag, int from_tty, |
10022 | int just_location, int internal) | |
c906108c | 10023 | { |
a9634178 | 10024 | volatile struct gdb_exception e; |
d983da9c | 10025 | struct breakpoint *b, *scope_breakpoint = NULL; |
c906108c | 10026 | struct expression *exp; |
60e1c644 | 10027 | struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL; |
a1442452 | 10028 | struct value *val, *mark, *result; |
c906108c | 10029 | struct frame_info *frame; |
c906108c SS |
10030 | char *exp_start = NULL; |
10031 | char *exp_end = NULL; | |
9c06b0b4 TJB |
10032 | char *tok, *end_tok; |
10033 | int toklen = -1; | |
c906108c SS |
10034 | char *cond_start = NULL; |
10035 | char *cond_end = NULL; | |
c906108c | 10036 | enum bptype bp_type; |
37e4754d | 10037 | int thread = -1; |
0cf6dd15 | 10038 | int pc = 0; |
9c06b0b4 TJB |
10039 | /* Flag to indicate whether we are going to use masks for |
10040 | the hardware watchpoint. */ | |
10041 | int use_mask = 0; | |
10042 | CORE_ADDR mask = 0; | |
3a5c3e22 | 10043 | struct watchpoint *w; |
c906108c | 10044 | |
37e4754d LM |
10045 | /* Make sure that we actually have parameters to parse. */ |
10046 | if (arg != NULL && arg[0] != '\0') | |
10047 | { | |
9c06b0b4 | 10048 | char *value_start; |
37e4754d | 10049 | |
9c06b0b4 TJB |
10050 | /* Look for "parameter value" pairs at the end |
10051 | of the arguments string. */ | |
10052 | for (tok = arg + strlen (arg) - 1; tok > arg; tok--) | |
10053 | { | |
10054 | /* Skip whitespace at the end of the argument list. */ | |
10055 | while (tok > arg && (*tok == ' ' || *tok == '\t')) | |
10056 | tok--; | |
10057 | ||
10058 | /* Find the beginning of the last token. | |
10059 | This is the value of the parameter. */ | |
10060 | while (tok > arg && (*tok != ' ' && *tok != '\t')) | |
10061 | tok--; | |
10062 | value_start = tok + 1; | |
10063 | ||
10064 | /* Skip whitespace. */ | |
10065 | while (tok > arg && (*tok == ' ' || *tok == '\t')) | |
10066 | tok--; | |
10067 | ||
10068 | end_tok = tok; | |
10069 | ||
10070 | /* Find the beginning of the second to last token. | |
10071 | This is the parameter itself. */ | |
10072 | while (tok > arg && (*tok != ' ' && *tok != '\t')) | |
10073 | tok--; | |
10074 | tok++; | |
10075 | toklen = end_tok - tok + 1; | |
10076 | ||
10077 | if (toklen == 6 && !strncmp (tok, "thread", 6)) | |
10078 | { | |
10079 | /* At this point we've found a "thread" token, which means | |
10080 | the user is trying to set a watchpoint that triggers | |
10081 | only in a specific thread. */ | |
10082 | char *endp; | |
37e4754d | 10083 | |
9c06b0b4 TJB |
10084 | if (thread != -1) |
10085 | error(_("You can specify only one thread.")); | |
37e4754d | 10086 | |
9c06b0b4 TJB |
10087 | /* Extract the thread ID from the next token. */ |
10088 | thread = strtol (value_start, &endp, 0); | |
37e4754d | 10089 | |
9c06b0b4 TJB |
10090 | /* Check if the user provided a valid numeric value for the |
10091 | thread ID. */ | |
10092 | if (*endp != ' ' && *endp != '\t' && *endp != '\0') | |
10093 | error (_("Invalid thread ID specification %s."), value_start); | |
10094 | ||
10095 | /* Check if the thread actually exists. */ | |
10096 | if (!valid_thread_id (thread)) | |
10097 | error (_("Unknown thread %d."), thread); | |
10098 | } | |
10099 | else if (toklen == 4 && !strncmp (tok, "mask", 4)) | |
10100 | { | |
10101 | /* We've found a "mask" token, which means the user wants to | |
10102 | create a hardware watchpoint that is going to have the mask | |
10103 | facility. */ | |
10104 | struct value *mask_value, *mark; | |
37e4754d | 10105 | |
9c06b0b4 TJB |
10106 | if (use_mask) |
10107 | error(_("You can specify only one mask.")); | |
37e4754d | 10108 | |
9c06b0b4 | 10109 | use_mask = just_location = 1; |
37e4754d | 10110 | |
9c06b0b4 TJB |
10111 | mark = value_mark (); |
10112 | mask_value = parse_to_comma_and_eval (&value_start); | |
10113 | mask = value_as_address (mask_value); | |
10114 | value_free_to_mark (mark); | |
10115 | } | |
10116 | else | |
10117 | /* We didn't recognize what we found. We should stop here. */ | |
10118 | break; | |
37e4754d | 10119 | |
9c06b0b4 TJB |
10120 | /* Truncate the string and get rid of the "parameter value" pair before |
10121 | the arguments string is parsed by the parse_exp_1 function. */ | |
10122 | *tok = '\0'; | |
10123 | } | |
37e4754d LM |
10124 | } |
10125 | ||
10126 | /* Parse the rest of the arguments. */ | |
c906108c SS |
10127 | innermost_block = NULL; |
10128 | exp_start = arg; | |
10129 | exp = parse_exp_1 (&arg, 0, 0); | |
10130 | exp_end = arg; | |
fa8a61dc TT |
10131 | /* Remove trailing whitespace from the expression before saving it. |
10132 | This makes the eventual display of the expression string a bit | |
10133 | prettier. */ | |
10134 | while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t')) | |
10135 | --exp_end; | |
10136 | ||
65d79d4b SDJ |
10137 | /* Checking if the expression is not constant. */ |
10138 | if (watchpoint_exp_is_const (exp)) | |
10139 | { | |
10140 | int len; | |
10141 | ||
10142 | len = exp_end - exp_start; | |
10143 | while (len > 0 && isspace (exp_start[len - 1])) | |
10144 | len--; | |
10145 | error (_("Cannot watch constant value `%.*s'."), len, exp_start); | |
10146 | } | |
10147 | ||
c906108c SS |
10148 | exp_valid_block = innermost_block; |
10149 | mark = value_mark (); | |
a1442452 | 10150 | fetch_subexp_value (exp, &pc, &val, &result, NULL); |
06a64a0b TT |
10151 | |
10152 | if (just_location) | |
10153 | { | |
9c06b0b4 TJB |
10154 | int ret; |
10155 | ||
06a64a0b | 10156 | exp_valid_block = NULL; |
a1442452 | 10157 | val = value_addr (result); |
06a64a0b TT |
10158 | release_value (val); |
10159 | value_free_to_mark (mark); | |
9c06b0b4 TJB |
10160 | |
10161 | if (use_mask) | |
10162 | { | |
10163 | ret = target_masked_watch_num_registers (value_as_address (val), | |
10164 | mask); | |
10165 | if (ret == -1) | |
10166 | error (_("This target does not support masked watchpoints.")); | |
10167 | else if (ret == -2) | |
10168 | error (_("Invalid mask or memory region.")); | |
10169 | } | |
06a64a0b TT |
10170 | } |
10171 | else if (val != NULL) | |
fa4727a6 | 10172 | release_value (val); |
c906108c | 10173 | |
e9cafbcc TT |
10174 | tok = skip_spaces (arg); |
10175 | end_tok = skip_to_space (tok); | |
c906108c SS |
10176 | |
10177 | toklen = end_tok - tok; | |
10178 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) | |
10179 | { | |
2d134ed3 PA |
10180 | struct expression *cond; |
10181 | ||
60e1c644 | 10182 | innermost_block = NULL; |
c906108c SS |
10183 | tok = cond_start = end_tok + 1; |
10184 | cond = parse_exp_1 (&tok, 0, 0); | |
60e1c644 PA |
10185 | |
10186 | /* The watchpoint expression may not be local, but the condition | |
10187 | may still be. E.g.: `watch global if local > 0'. */ | |
10188 | cond_exp_valid_block = innermost_block; | |
10189 | ||
2d134ed3 | 10190 | xfree (cond); |
c906108c SS |
10191 | cond_end = tok; |
10192 | } | |
10193 | if (*tok) | |
8a3fe4f8 | 10194 | error (_("Junk at end of command.")); |
c906108c | 10195 | |
53a5351d | 10196 | if (accessflag == hw_read) |
c5aa993b | 10197 | bp_type = bp_read_watchpoint; |
53a5351d | 10198 | else if (accessflag == hw_access) |
c5aa993b JM |
10199 | bp_type = bp_access_watchpoint; |
10200 | else | |
10201 | bp_type = bp_hardware_watchpoint; | |
c906108c | 10202 | |
d983da9c | 10203 | frame = block_innermost_frame (exp_valid_block); |
d983da9c DJ |
10204 | |
10205 | /* If the expression is "local", then set up a "watchpoint scope" | |
10206 | breakpoint at the point where we've left the scope of the watchpoint | |
10207 | expression. Create the scope breakpoint before the watchpoint, so | |
10208 | that we will encounter it first in bpstat_stop_status. */ | |
60e1c644 | 10209 | if (exp_valid_block && frame) |
d983da9c | 10210 | { |
edb3359d DJ |
10211 | if (frame_id_p (frame_unwind_caller_id (frame))) |
10212 | { | |
10213 | scope_breakpoint | |
a6d9a66e UW |
10214 | = create_internal_breakpoint (frame_unwind_caller_arch (frame), |
10215 | frame_unwind_caller_pc (frame), | |
06edf0c0 PA |
10216 | bp_watchpoint_scope, |
10217 | &momentary_breakpoint_ops); | |
d983da9c | 10218 | |
edb3359d | 10219 | scope_breakpoint->enable_state = bp_enabled; |
d983da9c | 10220 | |
edb3359d DJ |
10221 | /* Automatically delete the breakpoint when it hits. */ |
10222 | scope_breakpoint->disposition = disp_del; | |
d983da9c | 10223 | |
edb3359d DJ |
10224 | /* Only break in the proper frame (help with recursion). */ |
10225 | scope_breakpoint->frame_id = frame_unwind_caller_id (frame); | |
d983da9c | 10226 | |
edb3359d | 10227 | /* Set the address at which we will stop. */ |
a6d9a66e UW |
10228 | scope_breakpoint->loc->gdbarch |
10229 | = frame_unwind_caller_arch (frame); | |
edb3359d DJ |
10230 | scope_breakpoint->loc->requested_address |
10231 | = frame_unwind_caller_pc (frame); | |
10232 | scope_breakpoint->loc->address | |
a6d9a66e UW |
10233 | = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch, |
10234 | scope_breakpoint->loc->requested_address, | |
edb3359d DJ |
10235 | scope_breakpoint->type); |
10236 | } | |
d983da9c DJ |
10237 | } |
10238 | ||
c906108c | 10239 | /* Now set up the breakpoint. */ |
3a5c3e22 PA |
10240 | |
10241 | w = XCNEW (struct watchpoint); | |
10242 | b = &w->base; | |
348d480f | 10243 | if (use_mask) |
3a5c3e22 PA |
10244 | init_raw_breakpoint_without_location (b, NULL, bp_type, |
10245 | &masked_watchpoint_breakpoint_ops); | |
348d480f | 10246 | else |
3a5c3e22 PA |
10247 | init_raw_breakpoint_without_location (b, NULL, bp_type, |
10248 | &watchpoint_breakpoint_ops); | |
37e4754d | 10249 | b->thread = thread; |
b5de0fa7 | 10250 | b->disposition = disp_donttouch; |
348d480f | 10251 | b->pspace = current_program_space; |
3a5c3e22 PA |
10252 | w->exp = exp; |
10253 | w->exp_valid_block = exp_valid_block; | |
10254 | w->cond_exp_valid_block = cond_exp_valid_block; | |
06a64a0b TT |
10255 | if (just_location) |
10256 | { | |
10257 | struct type *t = value_type (val); | |
10258 | CORE_ADDR addr = value_as_address (val); | |
10259 | char *name; | |
10260 | ||
10261 | t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t))); | |
10262 | name = type_to_string (t); | |
10263 | ||
3a5c3e22 | 10264 | w->exp_string_reparse = xstrprintf ("* (%s *) %s", name, |
d63d0675 | 10265 | core_addr_to_string (addr)); |
06a64a0b TT |
10266 | xfree (name); |
10267 | ||
3a5c3e22 | 10268 | w->exp_string = xstrprintf ("-location %.*s", |
d63d0675 JK |
10269 | (int) (exp_end - exp_start), exp_start); |
10270 | ||
06a64a0b TT |
10271 | /* The above expression is in C. */ |
10272 | b->language = language_c; | |
10273 | } | |
10274 | else | |
3a5c3e22 | 10275 | w->exp_string = savestring (exp_start, exp_end - exp_start); |
9c06b0b4 TJB |
10276 | |
10277 | if (use_mask) | |
10278 | { | |
3a5c3e22 | 10279 | w->hw_wp_mask = mask; |
9c06b0b4 TJB |
10280 | } |
10281 | else | |
10282 | { | |
3a5c3e22 PA |
10283 | w->val = val; |
10284 | w->val_valid = 1; | |
9c06b0b4 | 10285 | } |
77b06cd7 | 10286 | |
c906108c SS |
10287 | if (cond_start) |
10288 | b->cond_string = savestring (cond_start, cond_end - cond_start); | |
10289 | else | |
10290 | b->cond_string = 0; | |
c5aa993b | 10291 | |
c906108c | 10292 | if (frame) |
f6bc2008 | 10293 | { |
3a5c3e22 PA |
10294 | w->watchpoint_frame = get_frame_id (frame); |
10295 | w->watchpoint_thread = inferior_ptid; | |
f6bc2008 | 10296 | } |
c906108c | 10297 | else |
f6bc2008 | 10298 | { |
3a5c3e22 PA |
10299 | w->watchpoint_frame = null_frame_id; |
10300 | w->watchpoint_thread = null_ptid; | |
f6bc2008 | 10301 | } |
c906108c | 10302 | |
d983da9c | 10303 | if (scope_breakpoint != NULL) |
c906108c | 10304 | { |
d983da9c DJ |
10305 | /* The scope breakpoint is related to the watchpoint. We will |
10306 | need to act on them together. */ | |
10307 | b->related_breakpoint = scope_breakpoint; | |
10308 | scope_breakpoint->related_breakpoint = b; | |
c906108c | 10309 | } |
d983da9c | 10310 | |
06a64a0b TT |
10311 | if (!just_location) |
10312 | value_free_to_mark (mark); | |
2d134ed3 | 10313 | |
a9634178 TJB |
10314 | TRY_CATCH (e, RETURN_MASK_ALL) |
10315 | { | |
10316 | /* Finally update the new watchpoint. This creates the locations | |
10317 | that should be inserted. */ | |
3a5c3e22 | 10318 | update_watchpoint (w, 1); |
a9634178 TJB |
10319 | } |
10320 | if (e.reason < 0) | |
10321 | { | |
10322 | delete_breakpoint (b); | |
10323 | throw_exception (e); | |
10324 | } | |
10325 | ||
3ea46bff | 10326 | install_breakpoint (internal, b, 1); |
c906108c SS |
10327 | } |
10328 | ||
e09342b5 | 10329 | /* Return count of debug registers needed to watch the given expression. |
e09342b5 | 10330 | If the watchpoint cannot be handled in hardware return zero. */ |
c906108c | 10331 | |
c906108c | 10332 | static int |
a9634178 | 10333 | can_use_hardware_watchpoint (struct value *v) |
c906108c SS |
10334 | { |
10335 | int found_memory_cnt = 0; | |
2e70b7b9 | 10336 | struct value *head = v; |
c906108c SS |
10337 | |
10338 | /* Did the user specifically forbid us to use hardware watchpoints? */ | |
c5aa993b | 10339 | if (!can_use_hw_watchpoints) |
c906108c | 10340 | return 0; |
c5aa993b | 10341 | |
5c44784c JM |
10342 | /* Make sure that the value of the expression depends only upon |
10343 | memory contents, and values computed from them within GDB. If we | |
10344 | find any register references or function calls, we can't use a | |
10345 | hardware watchpoint. | |
10346 | ||
10347 | The idea here is that evaluating an expression generates a series | |
10348 | of values, one holding the value of every subexpression. (The | |
10349 | expression a*b+c has five subexpressions: a, b, a*b, c, and | |
10350 | a*b+c.) GDB's values hold almost enough information to establish | |
10351 | the criteria given above --- they identify memory lvalues, | |
10352 | register lvalues, computed values, etcetera. So we can evaluate | |
10353 | the expression, and then scan the chain of values that leaves | |
10354 | behind to decide whether we can detect any possible change to the | |
10355 | expression's final value using only hardware watchpoints. | |
10356 | ||
10357 | However, I don't think that the values returned by inferior | |
10358 | function calls are special in any way. So this function may not | |
10359 | notice that an expression involving an inferior function call | |
10360 | can't be watched with hardware watchpoints. FIXME. */ | |
17cf0ecd | 10361 | for (; v; v = value_next (v)) |
c906108c | 10362 | { |
5c44784c | 10363 | if (VALUE_LVAL (v) == lval_memory) |
c906108c | 10364 | { |
8464be76 DJ |
10365 | if (v != head && value_lazy (v)) |
10366 | /* A lazy memory lvalue in the chain is one that GDB never | |
10367 | needed to fetch; we either just used its address (e.g., | |
10368 | `a' in `a.b') or we never needed it at all (e.g., `a' | |
10369 | in `a,b'). This doesn't apply to HEAD; if that is | |
10370 | lazy then it was not readable, but watch it anyway. */ | |
5c44784c | 10371 | ; |
53a5351d | 10372 | else |
5c44784c JM |
10373 | { |
10374 | /* Ahh, memory we actually used! Check if we can cover | |
10375 | it with hardware watchpoints. */ | |
df407dfe | 10376 | struct type *vtype = check_typedef (value_type (v)); |
2e70b7b9 MS |
10377 | |
10378 | /* We only watch structs and arrays if user asked for it | |
10379 | explicitly, never if they just happen to appear in a | |
10380 | middle of some value chain. */ | |
10381 | if (v == head | |
10382 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT | |
10383 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
10384 | { | |
42ae5230 | 10385 | CORE_ADDR vaddr = value_address (v); |
e09342b5 TJB |
10386 | int len; |
10387 | int num_regs; | |
10388 | ||
a9634178 | 10389 | len = (target_exact_watchpoints |
e09342b5 TJB |
10390 | && is_scalar_type_recursive (vtype))? |
10391 | 1 : TYPE_LENGTH (value_type (v)); | |
2e70b7b9 | 10392 | |
e09342b5 TJB |
10393 | num_regs = target_region_ok_for_hw_watchpoint (vaddr, len); |
10394 | if (!num_regs) | |
2e70b7b9 MS |
10395 | return 0; |
10396 | else | |
e09342b5 | 10397 | found_memory_cnt += num_regs; |
2e70b7b9 | 10398 | } |
5c44784c | 10399 | } |
c5aa993b | 10400 | } |
5086187c AC |
10401 | else if (VALUE_LVAL (v) != not_lval |
10402 | && deprecated_value_modifiable (v) == 0) | |
38b6c3b3 | 10403 | return 0; /* These are values from the history (e.g., $1). */ |
5086187c | 10404 | else if (VALUE_LVAL (v) == lval_register) |
38b6c3b3 | 10405 | return 0; /* Cannot watch a register with a HW watchpoint. */ |
c906108c SS |
10406 | } |
10407 | ||
10408 | /* The expression itself looks suitable for using a hardware | |
10409 | watchpoint, but give the target machine a chance to reject it. */ | |
10410 | return found_memory_cnt; | |
10411 | } | |
10412 | ||
8b93c638 | 10413 | void |
84f4c1fe | 10414 | watch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 10415 | { |
84f4c1fe | 10416 | watch_command_1 (arg, hw_write, from_tty, 0, internal); |
06a64a0b TT |
10417 | } |
10418 | ||
10419 | /* A helper function that looks for an argument at the start of a | |
10420 | string. The argument must also either be at the end of the string, | |
10421 | or be followed by whitespace. Returns 1 if it finds the argument, | |
10422 | 0 otherwise. If the argument is found, it updates *STR. */ | |
10423 | ||
10424 | static int | |
10425 | check_for_argument (char **str, char *arg, int arg_len) | |
10426 | { | |
10427 | if (strncmp (*str, arg, arg_len) == 0 | |
10428 | && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len]))) | |
10429 | { | |
10430 | *str += arg_len; | |
10431 | return 1; | |
10432 | } | |
10433 | return 0; | |
10434 | } | |
10435 | ||
10436 | /* A helper function that looks for the "-location" argument and then | |
10437 | calls watch_command_1. */ | |
10438 | ||
10439 | static void | |
10440 | watch_maybe_just_location (char *arg, int accessflag, int from_tty) | |
10441 | { | |
10442 | int just_location = 0; | |
10443 | ||
10444 | if (arg | |
10445 | && (check_for_argument (&arg, "-location", sizeof ("-location") - 1) | |
10446 | || check_for_argument (&arg, "-l", sizeof ("-l") - 1))) | |
10447 | { | |
e9cafbcc | 10448 | arg = skip_spaces (arg); |
06a64a0b TT |
10449 | just_location = 1; |
10450 | } | |
10451 | ||
84f4c1fe | 10452 | watch_command_1 (arg, accessflag, from_tty, just_location, 0); |
8b93c638 | 10453 | } |
8926118c | 10454 | |
c5aa993b | 10455 | static void |
fba45db2 | 10456 | watch_command (char *arg, int from_tty) |
c906108c | 10457 | { |
06a64a0b | 10458 | watch_maybe_just_location (arg, hw_write, from_tty); |
c906108c SS |
10459 | } |
10460 | ||
8b93c638 | 10461 | void |
84f4c1fe | 10462 | rwatch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 10463 | { |
84f4c1fe | 10464 | watch_command_1 (arg, hw_read, from_tty, 0, internal); |
8b93c638 | 10465 | } |
8926118c | 10466 | |
c5aa993b | 10467 | static void |
fba45db2 | 10468 | rwatch_command (char *arg, int from_tty) |
c906108c | 10469 | { |
06a64a0b | 10470 | watch_maybe_just_location (arg, hw_read, from_tty); |
c906108c SS |
10471 | } |
10472 | ||
8b93c638 | 10473 | void |
84f4c1fe | 10474 | awatch_command_wrapper (char *arg, int from_tty, int internal) |
8b93c638 | 10475 | { |
84f4c1fe | 10476 | watch_command_1 (arg, hw_access, from_tty, 0, internal); |
8b93c638 | 10477 | } |
8926118c | 10478 | |
c5aa993b | 10479 | static void |
fba45db2 | 10480 | awatch_command (char *arg, int from_tty) |
c906108c | 10481 | { |
06a64a0b | 10482 | watch_maybe_just_location (arg, hw_access, from_tty); |
c906108c | 10483 | } |
c906108c | 10484 | \f |
c5aa993b | 10485 | |
43ff13b4 | 10486 | /* Helper routines for the until_command routine in infcmd.c. Here |
c906108c SS |
10487 | because it uses the mechanisms of breakpoints. */ |
10488 | ||
bfec99b2 PA |
10489 | struct until_break_command_continuation_args |
10490 | { | |
10491 | struct breakpoint *breakpoint; | |
10492 | struct breakpoint *breakpoint2; | |
186c406b | 10493 | int thread_num; |
bfec99b2 PA |
10494 | }; |
10495 | ||
43ff13b4 | 10496 | /* This function is called by fetch_inferior_event via the |
4a64f543 | 10497 | cmd_continuation pointer, to complete the until command. It takes |
43ff13b4 | 10498 | care of cleaning up the temporary breakpoints set up by the until |
4a64f543 | 10499 | command. */ |
c2c6d25f | 10500 | static void |
fa4cd53f | 10501 | until_break_command_continuation (void *arg, int err) |
43ff13b4 | 10502 | { |
bfec99b2 PA |
10503 | struct until_break_command_continuation_args *a = arg; |
10504 | ||
10505 | delete_breakpoint (a->breakpoint); | |
10506 | if (a->breakpoint2) | |
10507 | delete_breakpoint (a->breakpoint2); | |
186c406b | 10508 | delete_longjmp_breakpoint (a->thread_num); |
43ff13b4 JM |
10509 | } |
10510 | ||
c906108c | 10511 | void |
ae66c1fc | 10512 | until_break_command (char *arg, int from_tty, int anywhere) |
c906108c SS |
10513 | { |
10514 | struct symtabs_and_lines sals; | |
10515 | struct symtab_and_line sal; | |
206415a3 | 10516 | struct frame_info *frame = get_selected_frame (NULL); |
883bc8d1 PA |
10517 | struct gdbarch *frame_gdbarch = get_frame_arch (frame); |
10518 | struct frame_id stack_frame_id = get_stack_frame_id (frame); | |
10519 | struct frame_id caller_frame_id = frame_unwind_caller_id (frame); | |
c906108c | 10520 | struct breakpoint *breakpoint; |
f107f563 | 10521 | struct breakpoint *breakpoint2 = NULL; |
c906108c | 10522 | struct cleanup *old_chain; |
186c406b TT |
10523 | int thread; |
10524 | struct thread_info *tp; | |
c906108c SS |
10525 | |
10526 | clear_proceed_status (); | |
10527 | ||
10528 | /* Set a breakpoint where the user wants it and at return from | |
4a64f543 | 10529 | this function. */ |
c5aa993b | 10530 | |
1bfeeb0f | 10531 | if (last_displayed_sal_is_valid ()) |
f8eba3c6 | 10532 | sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE, |
1bfeeb0f | 10533 | get_last_displayed_symtab (), |
f8eba3c6 | 10534 | get_last_displayed_line ()); |
c906108c | 10535 | else |
f8eba3c6 TT |
10536 | sals = decode_line_1 (&arg, DECODE_LINE_FUNFIRSTLINE, |
10537 | (struct symtab *) NULL, 0); | |
c5aa993b | 10538 | |
c906108c | 10539 | if (sals.nelts != 1) |
8a3fe4f8 | 10540 | error (_("Couldn't get information on specified line.")); |
c5aa993b | 10541 | |
c906108c | 10542 | sal = sals.sals[0]; |
4a64f543 | 10543 | xfree (sals.sals); /* malloc'd, so freed. */ |
c5aa993b | 10544 | |
c906108c | 10545 | if (*arg) |
8a3fe4f8 | 10546 | error (_("Junk at end of arguments.")); |
c5aa993b | 10547 | |
c906108c | 10548 | resolve_sal_pc (&sal); |
c5aa993b | 10549 | |
186c406b TT |
10550 | tp = inferior_thread (); |
10551 | thread = tp->num; | |
10552 | ||
883bc8d1 PA |
10553 | old_chain = make_cleanup (null_cleanup, NULL); |
10554 | ||
10555 | /* Installing a breakpoint invalidates the frame chain (as it may | |
10556 | need to switch threads), so do any frame handling first. */ | |
10557 | ||
ae66c1fc EZ |
10558 | /* Keep within the current frame, or in frames called by the current |
10559 | one. */ | |
edb3359d | 10560 | |
883bc8d1 | 10561 | if (frame_id_p (caller_frame_id)) |
c906108c | 10562 | { |
883bc8d1 PA |
10563 | struct symtab_and_line sal2; |
10564 | ||
10565 | sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0); | |
10566 | sal2.pc = frame_unwind_caller_pc (frame); | |
a6d9a66e | 10567 | breakpoint2 = set_momentary_breakpoint (frame_unwind_caller_arch (frame), |
883bc8d1 PA |
10568 | sal2, |
10569 | caller_frame_id, | |
f107f563 VP |
10570 | bp_until); |
10571 | make_cleanup_delete_breakpoint (breakpoint2); | |
186c406b | 10572 | |
883bc8d1 | 10573 | set_longjmp_breakpoint (tp, caller_frame_id); |
186c406b | 10574 | make_cleanup (delete_longjmp_breakpoint_cleanup, &thread); |
c906108c | 10575 | } |
c5aa993b | 10576 | |
c70a6932 JK |
10577 | /* set_momentary_breakpoint could invalidate FRAME. */ |
10578 | frame = NULL; | |
10579 | ||
883bc8d1 PA |
10580 | if (anywhere) |
10581 | /* If the user told us to continue until a specified location, | |
10582 | we don't specify a frame at which we need to stop. */ | |
10583 | breakpoint = set_momentary_breakpoint (frame_gdbarch, sal, | |
10584 | null_frame_id, bp_until); | |
10585 | else | |
10586 | /* Otherwise, specify the selected frame, because we want to stop | |
10587 | only at the very same frame. */ | |
10588 | breakpoint = set_momentary_breakpoint (frame_gdbarch, sal, | |
10589 | stack_frame_id, bp_until); | |
10590 | make_cleanup_delete_breakpoint (breakpoint); | |
10591 | ||
c906108c | 10592 | proceed (-1, TARGET_SIGNAL_DEFAULT, 0); |
f107f563 | 10593 | |
4a64f543 MS |
10594 | /* If we are running asynchronously, and proceed call above has |
10595 | actually managed to start the target, arrange for breakpoints to | |
10596 | be deleted when the target stops. Otherwise, we're already | |
10597 | stopped and delete breakpoints via cleanup chain. */ | |
f107f563 | 10598 | |
8ea051c5 | 10599 | if (target_can_async_p () && is_running (inferior_ptid)) |
f107f563 | 10600 | { |
bfec99b2 PA |
10601 | struct until_break_command_continuation_args *args; |
10602 | args = xmalloc (sizeof (*args)); | |
f107f563 | 10603 | |
bfec99b2 PA |
10604 | args->breakpoint = breakpoint; |
10605 | args->breakpoint2 = breakpoint2; | |
186c406b | 10606 | args->thread_num = thread; |
f107f563 VP |
10607 | |
10608 | discard_cleanups (old_chain); | |
95e54da7 PA |
10609 | add_continuation (inferior_thread (), |
10610 | until_break_command_continuation, args, | |
604ead4a | 10611 | xfree); |
f107f563 VP |
10612 | } |
10613 | else | |
c5aa993b | 10614 | do_cleanups (old_chain); |
c906108c | 10615 | } |
ae66c1fc | 10616 | |
c906108c SS |
10617 | /* This function attempts to parse an optional "if <cond>" clause |
10618 | from the arg string. If one is not found, it returns NULL. | |
c5aa993b | 10619 | |
c906108c SS |
10620 | Else, it returns a pointer to the condition string. (It does not |
10621 | attempt to evaluate the string against a particular block.) And, | |
10622 | it updates arg to point to the first character following the parsed | |
4a64f543 | 10623 | if clause in the arg string. */ |
53a5351d | 10624 | |
c906108c | 10625 | static char * |
fba45db2 | 10626 | ep_parse_optional_if_clause (char **arg) |
c906108c | 10627 | { |
c5aa993b JM |
10628 | char *cond_string; |
10629 | ||
10630 | if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2])) | |
c906108c | 10631 | return NULL; |
c5aa993b | 10632 | |
4a64f543 | 10633 | /* Skip the "if" keyword. */ |
c906108c | 10634 | (*arg) += 2; |
c5aa993b | 10635 | |
c906108c | 10636 | /* Skip any extra leading whitespace, and record the start of the |
4a64f543 | 10637 | condition string. */ |
e9cafbcc | 10638 | *arg = skip_spaces (*arg); |
c906108c | 10639 | cond_string = *arg; |
c5aa993b | 10640 | |
4a64f543 MS |
10641 | /* Assume that the condition occupies the remainder of the arg |
10642 | string. */ | |
c906108c | 10643 | (*arg) += strlen (cond_string); |
c5aa993b | 10644 | |
c906108c SS |
10645 | return cond_string; |
10646 | } | |
c5aa993b | 10647 | |
c906108c SS |
10648 | /* Commands to deal with catching events, such as signals, exceptions, |
10649 | process start/exit, etc. */ | |
c5aa993b JM |
10650 | |
10651 | typedef enum | |
10652 | { | |
44feb3ce TT |
10653 | catch_fork_temporary, catch_vfork_temporary, |
10654 | catch_fork_permanent, catch_vfork_permanent | |
c5aa993b JM |
10655 | } |
10656 | catch_fork_kind; | |
10657 | ||
c906108c | 10658 | static void |
cc59ec59 MS |
10659 | catch_fork_command_1 (char *arg, int from_tty, |
10660 | struct cmd_list_element *command) | |
c906108c | 10661 | { |
a6d9a66e | 10662 | struct gdbarch *gdbarch = get_current_arch (); |
c5aa993b | 10663 | char *cond_string = NULL; |
44feb3ce TT |
10664 | catch_fork_kind fork_kind; |
10665 | int tempflag; | |
10666 | ||
10667 | fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command); | |
10668 | tempflag = (fork_kind == catch_fork_temporary | |
10669 | || fork_kind == catch_vfork_temporary); | |
c5aa993b | 10670 | |
44feb3ce TT |
10671 | if (!arg) |
10672 | arg = ""; | |
e9cafbcc | 10673 | arg = skip_spaces (arg); |
c5aa993b | 10674 | |
c906108c | 10675 | /* The allowed syntax is: |
c5aa993b JM |
10676 | catch [v]fork |
10677 | catch [v]fork if <cond> | |
10678 | ||
4a64f543 | 10679 | First, check if there's an if clause. */ |
c906108c | 10680 | cond_string = ep_parse_optional_if_clause (&arg); |
c5aa993b | 10681 | |
c906108c | 10682 | if ((*arg != '\0') && !isspace (*arg)) |
8a3fe4f8 | 10683 | error (_("Junk at end of arguments.")); |
c5aa993b | 10684 | |
c906108c | 10685 | /* If this target supports it, create a fork or vfork catchpoint |
4a64f543 | 10686 | and enable reporting of such events. */ |
c5aa993b JM |
10687 | switch (fork_kind) |
10688 | { | |
44feb3ce TT |
10689 | case catch_fork_temporary: |
10690 | case catch_fork_permanent: | |
a6d9a66e | 10691 | create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string, |
ce78b96d | 10692 | &catch_fork_breakpoint_ops); |
c906108c | 10693 | break; |
44feb3ce TT |
10694 | case catch_vfork_temporary: |
10695 | case catch_vfork_permanent: | |
a6d9a66e | 10696 | create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string, |
ce78b96d | 10697 | &catch_vfork_breakpoint_ops); |
c906108c | 10698 | break; |
c5aa993b | 10699 | default: |
8a3fe4f8 | 10700 | error (_("unsupported or unknown fork kind; cannot catch it")); |
c906108c | 10701 | break; |
c5aa993b | 10702 | } |
c906108c SS |
10703 | } |
10704 | ||
10705 | static void | |
cc59ec59 MS |
10706 | catch_exec_command_1 (char *arg, int from_tty, |
10707 | struct cmd_list_element *command) | |
c906108c | 10708 | { |
b4d90040 | 10709 | struct exec_catchpoint *c; |
a6d9a66e | 10710 | struct gdbarch *gdbarch = get_current_arch (); |
44feb3ce | 10711 | int tempflag; |
c5aa993b | 10712 | char *cond_string = NULL; |
c906108c | 10713 | |
44feb3ce TT |
10714 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; |
10715 | ||
10716 | if (!arg) | |
10717 | arg = ""; | |
e9cafbcc | 10718 | arg = skip_spaces (arg); |
c906108c SS |
10719 | |
10720 | /* The allowed syntax is: | |
c5aa993b JM |
10721 | catch exec |
10722 | catch exec if <cond> | |
c906108c | 10723 | |
4a64f543 | 10724 | First, check if there's an if clause. */ |
c906108c SS |
10725 | cond_string = ep_parse_optional_if_clause (&arg); |
10726 | ||
10727 | if ((*arg != '\0') && !isspace (*arg)) | |
8a3fe4f8 | 10728 | error (_("Junk at end of arguments.")); |
c906108c | 10729 | |
b4d90040 PA |
10730 | c = XNEW (struct exec_catchpoint); |
10731 | init_catchpoint (&c->base, gdbarch, tempflag, cond_string, | |
10732 | &catch_exec_breakpoint_ops); | |
10733 | c->exec_pathname = NULL; | |
10734 | ||
3ea46bff | 10735 | install_breakpoint (0, &c->base, 1); |
c906108c | 10736 | } |
c5aa993b | 10737 | |
3086aeae | 10738 | static enum print_stop_action |
348d480f | 10739 | print_it_exception_catchpoint (bpstat bs) |
3086aeae | 10740 | { |
79a45e25 | 10741 | struct ui_out *uiout = current_uiout; |
348d480f | 10742 | struct breakpoint *b = bs->breakpoint_at; |
ade92717 | 10743 | int bp_temp, bp_throw; |
3086aeae | 10744 | |
ade92717 | 10745 | annotate_catchpoint (b->number); |
3086aeae | 10746 | |
ade92717 AR |
10747 | bp_throw = strstr (b->addr_string, "throw") != NULL; |
10748 | if (b->loc->address != b->loc->requested_address) | |
10749 | breakpoint_adjustment_warning (b->loc->requested_address, | |
10750 | b->loc->address, | |
10751 | b->number, 1); | |
df2b6d2d | 10752 | bp_temp = b->disposition == disp_del; |
ade92717 AR |
10753 | ui_out_text (uiout, |
10754 | bp_temp ? "Temporary catchpoint " | |
10755 | : "Catchpoint "); | |
10756 | if (!ui_out_is_mi_like_p (uiout)) | |
10757 | ui_out_field_int (uiout, "bkptno", b->number); | |
10758 | ui_out_text (uiout, | |
c0b37c48 AR |
10759 | bp_throw ? " (exception thrown), " |
10760 | : " (exception caught), "); | |
ade92717 AR |
10761 | if (ui_out_is_mi_like_p (uiout)) |
10762 | { | |
10763 | ui_out_field_string (uiout, "reason", | |
10764 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
10765 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
10766 | ui_out_field_int (uiout, "bkptno", b->number); | |
10767 | } | |
3086aeae DJ |
10768 | return PRINT_SRC_AND_LOC; |
10769 | } | |
10770 | ||
10771 | static void | |
cc59ec59 MS |
10772 | print_one_exception_catchpoint (struct breakpoint *b, |
10773 | struct bp_location **last_loc) | |
3086aeae | 10774 | { |
79a45b7d | 10775 | struct value_print_options opts; |
79a45e25 | 10776 | struct ui_out *uiout = current_uiout; |
cc59ec59 | 10777 | |
79a45b7d TT |
10778 | get_user_print_options (&opts); |
10779 | if (opts.addressprint) | |
3086aeae DJ |
10780 | { |
10781 | annotate_field (4); | |
604133b5 AR |
10782 | if (b->loc == NULL || b->loc->shlib_disabled) |
10783 | ui_out_field_string (uiout, "addr", "<PENDING>"); | |
10784 | else | |
5af949e3 UW |
10785 | ui_out_field_core_addr (uiout, "addr", |
10786 | b->loc->gdbarch, b->loc->address); | |
3086aeae DJ |
10787 | } |
10788 | annotate_field (5); | |
604133b5 | 10789 | if (b->loc) |
a6d9a66e | 10790 | *last_loc = b->loc; |
3086aeae DJ |
10791 | if (strstr (b->addr_string, "throw") != NULL) |
10792 | ui_out_field_string (uiout, "what", "exception throw"); | |
10793 | else | |
10794 | ui_out_field_string (uiout, "what", "exception catch"); | |
10795 | } | |
10796 | ||
10797 | static void | |
10798 | print_mention_exception_catchpoint (struct breakpoint *b) | |
10799 | { | |
79a45e25 | 10800 | struct ui_out *uiout = current_uiout; |
ade92717 AR |
10801 | int bp_temp; |
10802 | int bp_throw; | |
10803 | ||
df2b6d2d | 10804 | bp_temp = b->disposition == disp_del; |
ade92717 AR |
10805 | bp_throw = strstr (b->addr_string, "throw") != NULL; |
10806 | ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ") | |
10807 | : _("Catchpoint ")); | |
10808 | ui_out_field_int (uiout, "bkptno", b->number); | |
10809 | ui_out_text (uiout, bp_throw ? _(" (throw)") | |
10810 | : _(" (catch)")); | |
3086aeae DJ |
10811 | } |
10812 | ||
6149aea9 PA |
10813 | /* Implement the "print_recreate" breakpoint_ops method for throw and |
10814 | catch catchpoints. */ | |
10815 | ||
10816 | static void | |
4a64f543 MS |
10817 | print_recreate_exception_catchpoint (struct breakpoint *b, |
10818 | struct ui_file *fp) | |
6149aea9 PA |
10819 | { |
10820 | int bp_temp; | |
10821 | int bp_throw; | |
10822 | ||
10823 | bp_temp = b->disposition == disp_del; | |
10824 | bp_throw = strstr (b->addr_string, "throw") != NULL; | |
10825 | fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch "); | |
10826 | fprintf_unfiltered (fp, bp_throw ? "throw" : "catch"); | |
d9b3f62e | 10827 | print_recreate_thread (b, fp); |
6149aea9 PA |
10828 | } |
10829 | ||
2060206e | 10830 | static struct breakpoint_ops gnu_v3_exception_catchpoint_ops; |
3086aeae DJ |
10831 | |
10832 | static int | |
10833 | handle_gnu_v3_exceptions (int tempflag, char *cond_string, | |
10834 | enum exception_event_kind ex_event, int from_tty) | |
10835 | { | |
604133b5 AR |
10836 | char *trigger_func_name; |
10837 | ||
3086aeae | 10838 | if (ex_event == EX_EVENT_CATCH) |
604133b5 | 10839 | trigger_func_name = "__cxa_begin_catch"; |
3086aeae | 10840 | else |
604133b5 | 10841 | trigger_func_name = "__cxa_throw"; |
3086aeae | 10842 | |
8cdf0e15 VP |
10843 | create_breakpoint (get_current_arch (), |
10844 | trigger_func_name, cond_string, -1, | |
10845 | 0 /* condition and thread are valid. */, | |
0fb4aa4b | 10846 | tempflag, bp_breakpoint, |
8cdf0e15 VP |
10847 | 0, |
10848 | AUTO_BOOLEAN_TRUE /* pending */, | |
10849 | &gnu_v3_exception_catchpoint_ops, from_tty, | |
84f4c1fe | 10850 | 1 /* enabled */, |
44f238bb PA |
10851 | 0 /* internal */, |
10852 | 0); | |
3086aeae | 10853 | |
3086aeae DJ |
10854 | return 1; |
10855 | } | |
10856 | ||
4a64f543 | 10857 | /* Deal with "catch catch" and "catch throw" commands. */ |
c906108c SS |
10858 | |
10859 | static void | |
fba45db2 KB |
10860 | catch_exception_command_1 (enum exception_event_kind ex_event, char *arg, |
10861 | int tempflag, int from_tty) | |
c906108c | 10862 | { |
c5aa993b | 10863 | char *cond_string = NULL; |
c5aa993b | 10864 | |
44feb3ce TT |
10865 | if (!arg) |
10866 | arg = ""; | |
e9cafbcc | 10867 | arg = skip_spaces (arg); |
c5aa993b | 10868 | |
c906108c SS |
10869 | cond_string = ep_parse_optional_if_clause (&arg); |
10870 | ||
10871 | if ((*arg != '\0') && !isspace (*arg)) | |
8a3fe4f8 | 10872 | error (_("Junk at end of arguments.")); |
c906108c | 10873 | |
059fb39f PM |
10874 | if (ex_event != EX_EVENT_THROW |
10875 | && ex_event != EX_EVENT_CATCH) | |
8a3fe4f8 | 10876 | error (_("Unsupported or unknown exception event; cannot catch it")); |
c906108c | 10877 | |
3086aeae DJ |
10878 | if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty)) |
10879 | return; | |
10880 | ||
8a3fe4f8 | 10881 | warning (_("Unsupported with this platform/compiler combination.")); |
c906108c SS |
10882 | } |
10883 | ||
44feb3ce TT |
10884 | /* Implementation of "catch catch" command. */ |
10885 | ||
10886 | static void | |
10887 | catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command) | |
10888 | { | |
10889 | int tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
cc59ec59 | 10890 | |
44feb3ce TT |
10891 | catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty); |
10892 | } | |
10893 | ||
10894 | /* Implementation of "catch throw" command. */ | |
10895 | ||
10896 | static void | |
10897 | catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command) | |
10898 | { | |
10899 | int tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
cc59ec59 | 10900 | |
44feb3ce TT |
10901 | catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty); |
10902 | } | |
10903 | ||
9ac4176b | 10904 | void |
28010a5d PA |
10905 | init_ada_exception_breakpoint (struct breakpoint *b, |
10906 | struct gdbarch *gdbarch, | |
10907 | struct symtab_and_line sal, | |
10908 | char *addr_string, | |
c0a91b2b | 10909 | const struct breakpoint_ops *ops, |
28010a5d PA |
10910 | int tempflag, |
10911 | int from_tty) | |
f7f9143b | 10912 | { |
f7f9143b JB |
10913 | if (from_tty) |
10914 | { | |
5af949e3 UW |
10915 | struct gdbarch *loc_gdbarch = get_sal_arch (sal); |
10916 | if (!loc_gdbarch) | |
10917 | loc_gdbarch = gdbarch; | |
10918 | ||
6c95b8df PA |
10919 | describe_other_breakpoints (loc_gdbarch, |
10920 | sal.pspace, sal.pc, sal.section, -1); | |
f7f9143b JB |
10921 | /* FIXME: brobecker/2006-12-28: Actually, re-implement a special |
10922 | version for exception catchpoints, because two catchpoints | |
10923 | used for different exception names will use the same address. | |
10924 | In this case, a "breakpoint ... also set at..." warning is | |
4a64f543 | 10925 | unproductive. Besides, the warning phrasing is also a bit |
e5dd4106 | 10926 | inappropriate, we should use the word catchpoint, and tell |
f7f9143b JB |
10927 | the user what type of catchpoint it is. The above is good |
10928 | enough for now, though. */ | |
10929 | } | |
10930 | ||
28010a5d | 10931 | init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops); |
f7f9143b JB |
10932 | |
10933 | b->enable_state = bp_enabled; | |
10934 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
f7f9143b JB |
10935 | b->addr_string = addr_string; |
10936 | b->language = language_ada; | |
f7f9143b JB |
10937 | } |
10938 | ||
a96d9b2e SDJ |
10939 | /* Splits the argument using space as delimiter. Returns an xmalloc'd |
10940 | filter list, or NULL if no filtering is required. */ | |
10941 | static VEC(int) * | |
10942 | catch_syscall_split_args (char *arg) | |
10943 | { | |
10944 | VEC(int) *result = NULL; | |
29d0bb3d | 10945 | struct cleanup *cleanup = make_cleanup (VEC_cleanup (int), &result); |
a96d9b2e SDJ |
10946 | |
10947 | while (*arg != '\0') | |
10948 | { | |
10949 | int i, syscall_number; | |
10950 | char *endptr; | |
10951 | char cur_name[128]; | |
10952 | struct syscall s; | |
10953 | ||
10954 | /* Skip whitespace. */ | |
10955 | while (isspace (*arg)) | |
10956 | arg++; | |
10957 | ||
10958 | for (i = 0; i < 127 && arg[i] && !isspace (arg[i]); ++i) | |
10959 | cur_name[i] = arg[i]; | |
10960 | cur_name[i] = '\0'; | |
10961 | arg += i; | |
10962 | ||
10963 | /* Check if the user provided a syscall name or a number. */ | |
10964 | syscall_number = (int) strtol (cur_name, &endptr, 0); | |
10965 | if (*endptr == '\0') | |
bccd0dd2 | 10966 | get_syscall_by_number (syscall_number, &s); |
a96d9b2e SDJ |
10967 | else |
10968 | { | |
10969 | /* We have a name. Let's check if it's valid and convert it | |
10970 | to a number. */ | |
10971 | get_syscall_by_name (cur_name, &s); | |
10972 | ||
10973 | if (s.number == UNKNOWN_SYSCALL) | |
4a64f543 MS |
10974 | /* Here we have to issue an error instead of a warning, |
10975 | because GDB cannot do anything useful if there's no | |
10976 | syscall number to be caught. */ | |
a96d9b2e SDJ |
10977 | error (_("Unknown syscall name '%s'."), cur_name); |
10978 | } | |
10979 | ||
10980 | /* Ok, it's valid. */ | |
10981 | VEC_safe_push (int, result, s.number); | |
10982 | } | |
10983 | ||
10984 | discard_cleanups (cleanup); | |
10985 | return result; | |
10986 | } | |
10987 | ||
10988 | /* Implement the "catch syscall" command. */ | |
10989 | ||
10990 | static void | |
cc59ec59 MS |
10991 | catch_syscall_command_1 (char *arg, int from_tty, |
10992 | struct cmd_list_element *command) | |
a96d9b2e SDJ |
10993 | { |
10994 | int tempflag; | |
10995 | VEC(int) *filter; | |
10996 | struct syscall s; | |
10997 | struct gdbarch *gdbarch = get_current_arch (); | |
10998 | ||
10999 | /* Checking if the feature if supported. */ | |
11000 | if (gdbarch_get_syscall_number_p (gdbarch) == 0) | |
11001 | error (_("The feature 'catch syscall' is not supported on \ | |
ea666128 | 11002 | this architecture yet.")); |
a96d9b2e SDJ |
11003 | |
11004 | tempflag = get_cmd_context (command) == CATCH_TEMPORARY; | |
11005 | ||
e9cafbcc | 11006 | arg = skip_spaces (arg); |
a96d9b2e SDJ |
11007 | |
11008 | /* We need to do this first "dummy" translation in order | |
11009 | to get the syscall XML file loaded or, most important, | |
11010 | to display a warning to the user if there's no XML file | |
11011 | for his/her architecture. */ | |
11012 | get_syscall_by_number (0, &s); | |
11013 | ||
11014 | /* The allowed syntax is: | |
11015 | catch syscall | |
11016 | catch syscall <name | number> [<name | number> ... <name | number>] | |
11017 | ||
11018 | Let's check if there's a syscall name. */ | |
11019 | ||
11020 | if (arg != NULL) | |
11021 | filter = catch_syscall_split_args (arg); | |
11022 | else | |
11023 | filter = NULL; | |
11024 | ||
11025 | create_syscall_event_catchpoint (tempflag, filter, | |
11026 | &catch_syscall_breakpoint_ops); | |
11027 | } | |
11028 | ||
c906108c | 11029 | static void |
fba45db2 | 11030 | catch_command (char *arg, int from_tty) |
c906108c | 11031 | { |
44feb3ce | 11032 | error (_("Catch requires an event name.")); |
c906108c SS |
11033 | } |
11034 | \f | |
11035 | ||
11036 | static void | |
fba45db2 | 11037 | tcatch_command (char *arg, int from_tty) |
c906108c | 11038 | { |
44feb3ce | 11039 | error (_("Catch requires an event name.")); |
c906108c SS |
11040 | } |
11041 | ||
8a2c437b TT |
11042 | /* A qsort comparison function that sorts breakpoints in order. */ |
11043 | ||
11044 | static int | |
11045 | compare_breakpoints (const void *a, const void *b) | |
11046 | { | |
11047 | const breakpoint_p *ba = a; | |
11048 | uintptr_t ua = (uintptr_t) *ba; | |
11049 | const breakpoint_p *bb = b; | |
11050 | uintptr_t ub = (uintptr_t) *bb; | |
11051 | ||
11052 | if ((*ba)->number < (*bb)->number) | |
11053 | return -1; | |
11054 | else if ((*ba)->number > (*bb)->number) | |
11055 | return 1; | |
11056 | ||
11057 | /* Now sort by address, in case we see, e..g, two breakpoints with | |
11058 | the number 0. */ | |
11059 | if (ua < ub) | |
11060 | return -1; | |
11061 | return ub > ub ? 1 : 0; | |
11062 | } | |
11063 | ||
80f8a6eb | 11064 | /* Delete breakpoints by address or line. */ |
c906108c SS |
11065 | |
11066 | static void | |
fba45db2 | 11067 | clear_command (char *arg, int from_tty) |
c906108c | 11068 | { |
8a2c437b | 11069 | struct breakpoint *b, *prev; |
d6e956e5 VP |
11070 | VEC(breakpoint_p) *found = 0; |
11071 | int ix; | |
c906108c SS |
11072 | int default_match; |
11073 | struct symtabs_and_lines sals; | |
11074 | struct symtab_and_line sal; | |
c906108c | 11075 | int i; |
8a2c437b | 11076 | struct cleanup *cleanups = make_cleanup (null_cleanup, NULL); |
c906108c SS |
11077 | |
11078 | if (arg) | |
11079 | { | |
f8eba3c6 TT |
11080 | sals = decode_line_spec (arg, (DECODE_LINE_FUNFIRSTLINE |
11081 | | DECODE_LINE_LIST_MODE)); | |
c906108c SS |
11082 | default_match = 0; |
11083 | } | |
11084 | else | |
11085 | { | |
c5aa993b | 11086 | sals.sals = (struct symtab_and_line *) |
c906108c | 11087 | xmalloc (sizeof (struct symtab_and_line)); |
80f8a6eb | 11088 | make_cleanup (xfree, sals.sals); |
4a64f543 | 11089 | init_sal (&sal); /* Initialize to zeroes. */ |
1bfeeb0f JL |
11090 | |
11091 | /* Set sal's line, symtab, pc, and pspace to the values | |
11092 | corresponding to the last call to print_frame_info. If the | |
11093 | codepoint is not valid, this will set all the fields to 0. */ | |
11094 | get_last_displayed_sal (&sal); | |
c906108c | 11095 | if (sal.symtab == 0) |
8a3fe4f8 | 11096 | error (_("No source file specified.")); |
c906108c SS |
11097 | |
11098 | sals.sals[0] = sal; | |
11099 | sals.nelts = 1; | |
11100 | ||
11101 | default_match = 1; | |
11102 | } | |
11103 | ||
4a64f543 MS |
11104 | /* We don't call resolve_sal_pc here. That's not as bad as it |
11105 | seems, because all existing breakpoints typically have both | |
11106 | file/line and pc set. So, if clear is given file/line, we can | |
11107 | match this to existing breakpoint without obtaining pc at all. | |
ed0616c6 VP |
11108 | |
11109 | We only support clearing given the address explicitly | |
11110 | present in breakpoint table. Say, we've set breakpoint | |
4a64f543 | 11111 | at file:line. There were several PC values for that file:line, |
ed0616c6 | 11112 | due to optimization, all in one block. |
4a64f543 MS |
11113 | |
11114 | We've picked one PC value. If "clear" is issued with another | |
ed0616c6 VP |
11115 | PC corresponding to the same file:line, the breakpoint won't |
11116 | be cleared. We probably can still clear the breakpoint, but | |
11117 | since the other PC value is never presented to user, user | |
11118 | can only find it by guessing, and it does not seem important | |
11119 | to support that. */ | |
11120 | ||
4a64f543 MS |
11121 | /* For each line spec given, delete bps which correspond to it. Do |
11122 | it in two passes, solely to preserve the current behavior that | |
11123 | from_tty is forced true if we delete more than one | |
11124 | breakpoint. */ | |
c906108c | 11125 | |
80f8a6eb | 11126 | found = NULL; |
8a2c437b | 11127 | make_cleanup (VEC_cleanup (breakpoint_p), &found); |
c906108c SS |
11128 | for (i = 0; i < sals.nelts; i++) |
11129 | { | |
4aac40c8 TT |
11130 | int is_abs, sal_name_len; |
11131 | ||
c906108c | 11132 | /* If exact pc given, clear bpts at that pc. |
c5aa993b JM |
11133 | If line given (pc == 0), clear all bpts on specified line. |
11134 | If defaulting, clear all bpts on default line | |
c906108c | 11135 | or at default pc. |
c5aa993b JM |
11136 | |
11137 | defaulting sal.pc != 0 tests to do | |
11138 | ||
11139 | 0 1 pc | |
11140 | 1 1 pc _and_ line | |
11141 | 0 0 line | |
11142 | 1 0 <can't happen> */ | |
c906108c SS |
11143 | |
11144 | sal = sals.sals[i]; | |
4aac40c8 TT |
11145 | is_abs = sal.symtab == NULL ? 1 : IS_ABSOLUTE_PATH (sal.symtab->filename); |
11146 | sal_name_len = is_abs ? 0 : strlen (sal.symtab->filename); | |
c906108c | 11147 | |
4a64f543 | 11148 | /* Find all matching breakpoints and add them to 'found'. */ |
d6e956e5 | 11149 | ALL_BREAKPOINTS (b) |
c5aa993b | 11150 | { |
0d381245 | 11151 | int match = 0; |
4a64f543 | 11152 | /* Are we going to delete b? */ |
cc60f2e3 | 11153 | if (b->type != bp_none && !is_watchpoint (b)) |
0d381245 VP |
11154 | { |
11155 | struct bp_location *loc = b->loc; | |
11156 | for (; loc; loc = loc->next) | |
11157 | { | |
f8eba3c6 TT |
11158 | /* If the user specified file:line, don't allow a PC |
11159 | match. This matches historical gdb behavior. */ | |
11160 | int pc_match = (!sal.explicit_line | |
11161 | && sal.pc | |
11162 | && (loc->pspace == sal.pspace) | |
11163 | && (loc->address == sal.pc) | |
11164 | && (!section_is_overlay (loc->section) | |
11165 | || loc->section == sal.section)); | |
4aac40c8 TT |
11166 | int line_match = 0; |
11167 | ||
11168 | if ((default_match || sal.explicit_line) | |
11169 | && loc->source_file != NULL | |
11170 | && sal.symtab != NULL | |
11171 | && sal.pspace == loc->pspace | |
11172 | && loc->line_number == sal.line) | |
11173 | { | |
11174 | if (filename_cmp (loc->source_file, | |
11175 | sal.symtab->filename) == 0) | |
11176 | line_match = 1; | |
11177 | else if (!IS_ABSOLUTE_PATH (sal.symtab->filename) | |
11178 | && compare_filenames_for_search (loc->source_file, | |
11179 | sal.symtab->filename, | |
11180 | sal_name_len)) | |
11181 | line_match = 1; | |
11182 | } | |
11183 | ||
0d381245 VP |
11184 | if (pc_match || line_match) |
11185 | { | |
11186 | match = 1; | |
11187 | break; | |
11188 | } | |
11189 | } | |
11190 | } | |
11191 | ||
11192 | if (match) | |
d6e956e5 | 11193 | VEC_safe_push(breakpoint_p, found, b); |
c906108c | 11194 | } |
80f8a6eb | 11195 | } |
8a2c437b | 11196 | |
80f8a6eb | 11197 | /* Now go thru the 'found' chain and delete them. */ |
d6e956e5 | 11198 | if (VEC_empty(breakpoint_p, found)) |
80f8a6eb MS |
11199 | { |
11200 | if (arg) | |
8a3fe4f8 | 11201 | error (_("No breakpoint at %s."), arg); |
80f8a6eb | 11202 | else |
8a3fe4f8 | 11203 | error (_("No breakpoint at this line.")); |
80f8a6eb | 11204 | } |
c906108c | 11205 | |
8a2c437b TT |
11206 | /* Remove duplicates from the vec. */ |
11207 | qsort (VEC_address (breakpoint_p, found), | |
11208 | VEC_length (breakpoint_p, found), | |
11209 | sizeof (breakpoint_p), | |
11210 | compare_breakpoints); | |
11211 | prev = VEC_index (breakpoint_p, found, 0); | |
11212 | for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix) | |
11213 | { | |
11214 | if (b == prev) | |
11215 | { | |
11216 | VEC_ordered_remove (breakpoint_p, found, ix); | |
11217 | --ix; | |
11218 | } | |
11219 | } | |
11220 | ||
d6e956e5 | 11221 | if (VEC_length(breakpoint_p, found) > 1) |
4a64f543 | 11222 | from_tty = 1; /* Always report if deleted more than one. */ |
80f8a6eb | 11223 | if (from_tty) |
a3f17187 | 11224 | { |
d6e956e5 | 11225 | if (VEC_length(breakpoint_p, found) == 1) |
a3f17187 AC |
11226 | printf_unfiltered (_("Deleted breakpoint ")); |
11227 | else | |
11228 | printf_unfiltered (_("Deleted breakpoints ")); | |
11229 | } | |
80f8a6eb | 11230 | breakpoints_changed (); |
d6e956e5 VP |
11231 | |
11232 | for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++) | |
80f8a6eb | 11233 | { |
c5aa993b | 11234 | if (from_tty) |
d6e956e5 VP |
11235 | printf_unfiltered ("%d ", b->number); |
11236 | delete_breakpoint (b); | |
c906108c | 11237 | } |
80f8a6eb MS |
11238 | if (from_tty) |
11239 | putchar_unfiltered ('\n'); | |
8a2c437b TT |
11240 | |
11241 | do_cleanups (cleanups); | |
c906108c SS |
11242 | } |
11243 | \f | |
11244 | /* Delete breakpoint in BS if they are `delete' breakpoints and | |
11245 | all breakpoints that are marked for deletion, whether hit or not. | |
11246 | This is called after any breakpoint is hit, or after errors. */ | |
11247 | ||
11248 | void | |
fba45db2 | 11249 | breakpoint_auto_delete (bpstat bs) |
c906108c | 11250 | { |
35df4500 | 11251 | struct breakpoint *b, *b_tmp; |
c906108c SS |
11252 | |
11253 | for (; bs; bs = bs->next) | |
f431efe5 PA |
11254 | if (bs->breakpoint_at |
11255 | && bs->breakpoint_at->disposition == disp_del | |
c906108c | 11256 | && bs->stop) |
f431efe5 | 11257 | delete_breakpoint (bs->breakpoint_at); |
c906108c | 11258 | |
35df4500 | 11259 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 11260 | { |
b5de0fa7 | 11261 | if (b->disposition == disp_del_at_next_stop) |
c5aa993b JM |
11262 | delete_breakpoint (b); |
11263 | } | |
c906108c SS |
11264 | } |
11265 | ||
4a64f543 MS |
11266 | /* A comparison function for bp_location AP and BP being interfaced to |
11267 | qsort. Sort elements primarily by their ADDRESS (no matter what | |
11268 | does breakpoint_address_is_meaningful say for its OWNER), | |
11269 | secondarily by ordering first bp_permanent OWNERed elements and | |
11270 | terciarily just ensuring the array is sorted stable way despite | |
e5dd4106 | 11271 | qsort being an unstable algorithm. */ |
876fa593 JK |
11272 | |
11273 | static int | |
494cfb0f | 11274 | bp_location_compare (const void *ap, const void *bp) |
876fa593 | 11275 | { |
494cfb0f JK |
11276 | struct bp_location *a = *(void **) ap; |
11277 | struct bp_location *b = *(void **) bp; | |
2bdf28a0 | 11278 | /* A and B come from existing breakpoints having non-NULL OWNER. */ |
876fa593 JK |
11279 | int a_perm = a->owner->enable_state == bp_permanent; |
11280 | int b_perm = b->owner->enable_state == bp_permanent; | |
11281 | ||
11282 | if (a->address != b->address) | |
11283 | return (a->address > b->address) - (a->address < b->address); | |
11284 | ||
dea2aa5f LM |
11285 | /* Sort locations at the same address by their pspace number, keeping |
11286 | locations of the same inferior (in a multi-inferior environment) | |
11287 | grouped. */ | |
11288 | ||
11289 | if (a->pspace->num != b->pspace->num) | |
11290 | return ((a->pspace->num > b->pspace->num) | |
11291 | - (a->pspace->num < b->pspace->num)); | |
11292 | ||
876fa593 JK |
11293 | /* Sort permanent breakpoints first. */ |
11294 | if (a_perm != b_perm) | |
11295 | return (a_perm < b_perm) - (a_perm > b_perm); | |
11296 | ||
c56a97f9 JK |
11297 | /* Make the internal GDB representation stable across GDB runs |
11298 | where A and B memory inside GDB can differ. Breakpoint locations of | |
11299 | the same type at the same address can be sorted in arbitrary order. */ | |
876fa593 JK |
11300 | |
11301 | if (a->owner->number != b->owner->number) | |
c56a97f9 JK |
11302 | return ((a->owner->number > b->owner->number) |
11303 | - (a->owner->number < b->owner->number)); | |
876fa593 JK |
11304 | |
11305 | return (a > b) - (a < b); | |
11306 | } | |
11307 | ||
876fa593 | 11308 | /* Set bp_location_placed_address_before_address_max and |
4a64f543 MS |
11309 | bp_location_shadow_len_after_address_max according to the current |
11310 | content of the bp_location array. */ | |
f7545552 TT |
11311 | |
11312 | static void | |
876fa593 | 11313 | bp_location_target_extensions_update (void) |
f7545552 | 11314 | { |
876fa593 JK |
11315 | struct bp_location *bl, **blp_tmp; |
11316 | ||
11317 | bp_location_placed_address_before_address_max = 0; | |
11318 | bp_location_shadow_len_after_address_max = 0; | |
11319 | ||
11320 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
11321 | { | |
11322 | CORE_ADDR start, end, addr; | |
11323 | ||
11324 | if (!bp_location_has_shadow (bl)) | |
11325 | continue; | |
11326 | ||
11327 | start = bl->target_info.placed_address; | |
11328 | end = start + bl->target_info.shadow_len; | |
11329 | ||
11330 | gdb_assert (bl->address >= start); | |
11331 | addr = bl->address - start; | |
11332 | if (addr > bp_location_placed_address_before_address_max) | |
11333 | bp_location_placed_address_before_address_max = addr; | |
11334 | ||
11335 | /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */ | |
11336 | ||
11337 | gdb_assert (bl->address < end); | |
11338 | addr = end - bl->address; | |
11339 | if (addr > bp_location_shadow_len_after_address_max) | |
11340 | bp_location_shadow_len_after_address_max = addr; | |
11341 | } | |
f7545552 TT |
11342 | } |
11343 | ||
1e4d1764 YQ |
11344 | /* Download tracepoint locations if they haven't been. */ |
11345 | ||
11346 | static void | |
11347 | download_tracepoint_locations (void) | |
11348 | { | |
11349 | struct bp_location *bl, **blp_tmp; | |
11350 | struct cleanup *old_chain; | |
11351 | ||
11352 | if (!target_can_download_tracepoint ()) | |
11353 | return; | |
11354 | ||
11355 | old_chain = save_current_space_and_thread (); | |
11356 | ||
11357 | ALL_BP_LOCATIONS (bl, blp_tmp) | |
11358 | { | |
11359 | struct tracepoint *t; | |
11360 | ||
11361 | if (!is_tracepoint (bl->owner)) | |
11362 | continue; | |
11363 | ||
11364 | if ((bl->owner->type == bp_fast_tracepoint | |
11365 | ? !may_insert_fast_tracepoints | |
11366 | : !may_insert_tracepoints)) | |
11367 | continue; | |
11368 | ||
11369 | /* In tracepoint, locations are _never_ duplicated, so | |
11370 | should_be_inserted is equivalent to | |
11371 | unduplicated_should_be_inserted. */ | |
11372 | if (!should_be_inserted (bl) || bl->inserted) | |
11373 | continue; | |
11374 | ||
11375 | switch_to_program_space_and_thread (bl->pspace); | |
11376 | ||
11377 | target_download_tracepoint (bl); | |
11378 | ||
11379 | bl->inserted = 1; | |
11380 | t = (struct tracepoint *) bl->owner; | |
11381 | t->number_on_target = bl->owner->number; | |
11382 | } | |
11383 | ||
11384 | do_cleanups (old_chain); | |
11385 | } | |
11386 | ||
934709f0 PW |
11387 | /* Swap the insertion/duplication state between two locations. */ |
11388 | ||
11389 | static void | |
11390 | swap_insertion (struct bp_location *left, struct bp_location *right) | |
11391 | { | |
11392 | const int left_inserted = left->inserted; | |
11393 | const int left_duplicate = left->duplicate; | |
b775012e | 11394 | const int left_needs_update = left->needs_update; |
934709f0 PW |
11395 | const struct bp_target_info left_target_info = left->target_info; |
11396 | ||
1e4d1764 YQ |
11397 | /* Locations of tracepoints can never be duplicated. */ |
11398 | if (is_tracepoint (left->owner)) | |
11399 | gdb_assert (!left->duplicate); | |
11400 | if (is_tracepoint (right->owner)) | |
11401 | gdb_assert (!right->duplicate); | |
11402 | ||
934709f0 PW |
11403 | left->inserted = right->inserted; |
11404 | left->duplicate = right->duplicate; | |
b775012e | 11405 | left->needs_update = right->needs_update; |
934709f0 PW |
11406 | left->target_info = right->target_info; |
11407 | right->inserted = left_inserted; | |
11408 | right->duplicate = left_duplicate; | |
b775012e | 11409 | right->needs_update = left_needs_update; |
934709f0 PW |
11410 | right->target_info = left_target_info; |
11411 | } | |
11412 | ||
b775012e LM |
11413 | /* Force the re-insertion of the locations at ADDRESS. This is called |
11414 | once a new/deleted/modified duplicate location is found and we are evaluating | |
11415 | conditions on the target's side. Such conditions need to be updated on | |
11416 | the target. */ | |
11417 | ||
11418 | static void | |
11419 | force_breakpoint_reinsertion (struct bp_location *bl) | |
11420 | { | |
11421 | struct bp_location **locp = NULL, **loc2p; | |
11422 | struct bp_location *loc; | |
11423 | CORE_ADDR address = 0; | |
11424 | int pspace_num; | |
11425 | ||
11426 | address = bl->address; | |
11427 | pspace_num = bl->pspace->num; | |
11428 | ||
11429 | /* This is only meaningful if the target is | |
11430 | evaluating conditions and if the user has | |
11431 | opted for condition evaluation on the target's | |
11432 | side. */ | |
11433 | if (gdb_evaluates_breakpoint_condition_p () | |
11434 | || !target_supports_evaluation_of_breakpoint_conditions ()) | |
11435 | return; | |
11436 | ||
11437 | /* Flag all breakpoint locations with this address and | |
11438 | the same program space as the location | |
11439 | as "its condition has changed". We need to | |
11440 | update the conditions on the target's side. */ | |
11441 | ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address) | |
11442 | { | |
11443 | loc = *loc2p; | |
11444 | ||
11445 | if (!is_breakpoint (loc->owner) | |
11446 | || pspace_num != loc->pspace->num) | |
11447 | continue; | |
11448 | ||
11449 | /* Flag the location appropriately. We use a different state to | |
11450 | let everyone know that we already updated the set of locations | |
11451 | with addr bl->address and program space bl->pspace. This is so | |
11452 | we don't have to keep calling these functions just to mark locations | |
11453 | that have already been marked. */ | |
11454 | loc->condition_changed = condition_updated; | |
11455 | ||
11456 | /* Free the agent expression bytecode as well. We will compute | |
11457 | it later on. */ | |
11458 | if (loc->cond_bytecode) | |
11459 | { | |
11460 | free_agent_expr (loc->cond_bytecode); | |
11461 | loc->cond_bytecode = NULL; | |
11462 | } | |
11463 | } | |
11464 | } | |
11465 | ||
4cd9bd08 | 11466 | /* If SHOULD_INSERT is false, do not insert any breakpoint locations |
b60e7edf PA |
11467 | into the inferior, only remove already-inserted locations that no |
11468 | longer should be inserted. Functions that delete a breakpoint or | |
11469 | breakpoints should pass false, so that deleting a breakpoint | |
11470 | doesn't have the side effect of inserting the locations of other | |
11471 | breakpoints that are marked not-inserted, but should_be_inserted | |
11472 | returns true on them. | |
11473 | ||
11474 | This behaviour is useful is situations close to tear-down -- e.g., | |
11475 | after an exec, while the target still has execution, but breakpoint | |
11476 | shadows of the previous executable image should *NOT* be restored | |
11477 | to the new image; or before detaching, where the target still has | |
11478 | execution and wants to delete breakpoints from GDB's lists, and all | |
11479 | breakpoints had already been removed from the inferior. */ | |
11480 | ||
0d381245 | 11481 | static void |
b60e7edf | 11482 | update_global_location_list (int should_insert) |
0d381245 | 11483 | { |
74960c60 | 11484 | struct breakpoint *b; |
876fa593 | 11485 | struct bp_location **locp, *loc; |
f7545552 | 11486 | struct cleanup *cleanups; |
b775012e LM |
11487 | /* Last breakpoint location address that was marked for update. */ |
11488 | CORE_ADDR last_addr = 0; | |
11489 | /* Last breakpoint location program space that was marked for update. */ | |
11490 | int last_pspace_num = -1; | |
f7545552 | 11491 | |
2d134ed3 PA |
11492 | /* Used in the duplicates detection below. When iterating over all |
11493 | bp_locations, points to the first bp_location of a given address. | |
11494 | Breakpoints and watchpoints of different types are never | |
11495 | duplicates of each other. Keep one pointer for each type of | |
11496 | breakpoint/watchpoint, so we only need to loop over all locations | |
11497 | once. */ | |
11498 | struct bp_location *bp_loc_first; /* breakpoint */ | |
11499 | struct bp_location *wp_loc_first; /* hardware watchpoint */ | |
11500 | struct bp_location *awp_loc_first; /* access watchpoint */ | |
11501 | struct bp_location *rwp_loc_first; /* read watchpoint */ | |
876fa593 | 11502 | |
4a64f543 MS |
11503 | /* Saved former bp_location array which we compare against the newly |
11504 | built bp_location from the current state of ALL_BREAKPOINTS. */ | |
876fa593 JK |
11505 | struct bp_location **old_location, **old_locp; |
11506 | unsigned old_location_count; | |
11507 | ||
11508 | old_location = bp_location; | |
11509 | old_location_count = bp_location_count; | |
11510 | bp_location = NULL; | |
11511 | bp_location_count = 0; | |
11512 | cleanups = make_cleanup (xfree, old_location); | |
0d381245 | 11513 | |
74960c60 | 11514 | ALL_BREAKPOINTS (b) |
876fa593 JK |
11515 | for (loc = b->loc; loc; loc = loc->next) |
11516 | bp_location_count++; | |
11517 | ||
11518 | bp_location = xmalloc (sizeof (*bp_location) * bp_location_count); | |
11519 | locp = bp_location; | |
11520 | ALL_BREAKPOINTS (b) | |
11521 | for (loc = b->loc; loc; loc = loc->next) | |
11522 | *locp++ = loc; | |
11523 | qsort (bp_location, bp_location_count, sizeof (*bp_location), | |
494cfb0f | 11524 | bp_location_compare); |
876fa593 JK |
11525 | |
11526 | bp_location_target_extensions_update (); | |
74960c60 | 11527 | |
4a64f543 MS |
11528 | /* Identify bp_location instances that are no longer present in the |
11529 | new list, and therefore should be freed. Note that it's not | |
11530 | necessary that those locations should be removed from inferior -- | |
11531 | if there's another location at the same address (previously | |
11532 | marked as duplicate), we don't need to remove/insert the | |
11533 | location. | |
876fa593 | 11534 | |
4a64f543 MS |
11535 | LOCP is kept in sync with OLD_LOCP, each pointing to the current |
11536 | and former bp_location array state respectively. */ | |
876fa593 JK |
11537 | |
11538 | locp = bp_location; | |
11539 | for (old_locp = old_location; old_locp < old_location + old_location_count; | |
11540 | old_locp++) | |
74960c60 | 11541 | { |
876fa593 | 11542 | struct bp_location *old_loc = *old_locp; |
c7d46a38 | 11543 | struct bp_location **loc2p; |
876fa593 | 11544 | |
e5dd4106 | 11545 | /* Tells if 'old_loc' is found among the new locations. If |
4a64f543 | 11546 | not, we have to free it. */ |
c7d46a38 | 11547 | int found_object = 0; |
20874c92 VP |
11548 | /* Tells if the location should remain inserted in the target. */ |
11549 | int keep_in_target = 0; | |
11550 | int removed = 0; | |
876fa593 | 11551 | |
4a64f543 MS |
11552 | /* Skip LOCP entries which will definitely never be needed. |
11553 | Stop either at or being the one matching OLD_LOC. */ | |
876fa593 | 11554 | while (locp < bp_location + bp_location_count |
c7d46a38 | 11555 | && (*locp)->address < old_loc->address) |
876fa593 | 11556 | locp++; |
c7d46a38 PA |
11557 | |
11558 | for (loc2p = locp; | |
11559 | (loc2p < bp_location + bp_location_count | |
11560 | && (*loc2p)->address == old_loc->address); | |
11561 | loc2p++) | |
11562 | { | |
b775012e LM |
11563 | /* Check if this is a new/duplicated location or a duplicated |
11564 | location that had its condition modified. If so, we want to send | |
11565 | its condition to the target if evaluation of conditions is taking | |
11566 | place there. */ | |
11567 | if ((*loc2p)->condition_changed == condition_modified | |
11568 | && (last_addr != old_loc->address | |
11569 | || last_pspace_num != old_loc->pspace->num)) | |
c7d46a38 | 11570 | { |
b775012e LM |
11571 | force_breakpoint_reinsertion (*loc2p); |
11572 | last_pspace_num = old_loc->pspace->num; | |
c7d46a38 | 11573 | } |
b775012e LM |
11574 | |
11575 | if (*loc2p == old_loc) | |
11576 | found_object = 1; | |
c7d46a38 | 11577 | } |
74960c60 | 11578 | |
b775012e LM |
11579 | /* We have already handled this address, update it so that we don't |
11580 | have to go through updates again. */ | |
11581 | last_addr = old_loc->address; | |
11582 | ||
11583 | /* Target-side condition evaluation: Handle deleted locations. */ | |
11584 | if (!found_object) | |
11585 | force_breakpoint_reinsertion (old_loc); | |
11586 | ||
4a64f543 MS |
11587 | /* If this location is no longer present, and inserted, look if |
11588 | there's maybe a new location at the same address. If so, | |
11589 | mark that one inserted, and don't remove this one. This is | |
11590 | needed so that we don't have a time window where a breakpoint | |
11591 | at certain location is not inserted. */ | |
74960c60 | 11592 | |
876fa593 | 11593 | if (old_loc->inserted) |
0d381245 | 11594 | { |
4a64f543 MS |
11595 | /* If the location is inserted now, we might have to remove |
11596 | it. */ | |
74960c60 | 11597 | |
876fa593 | 11598 | if (found_object && should_be_inserted (old_loc)) |
74960c60 | 11599 | { |
4a64f543 MS |
11600 | /* The location is still present in the location list, |
11601 | and still should be inserted. Don't do anything. */ | |
20874c92 | 11602 | keep_in_target = 1; |
74960c60 VP |
11603 | } |
11604 | else | |
11605 | { | |
b775012e LM |
11606 | /* This location still exists, but it won't be kept in the |
11607 | target since it may have been disabled. We proceed to | |
11608 | remove its target-side condition. */ | |
11609 | ||
4a64f543 MS |
11610 | /* The location is either no longer present, or got |
11611 | disabled. See if there's another location at the | |
11612 | same address, in which case we don't need to remove | |
11613 | this one from the target. */ | |
876fa593 | 11614 | |
2bdf28a0 | 11615 | /* OLD_LOC comes from existing struct breakpoint. */ |
876fa593 JK |
11616 | if (breakpoint_address_is_meaningful (old_loc->owner)) |
11617 | { | |
876fa593 | 11618 | for (loc2p = locp; |
c7d46a38 PA |
11619 | (loc2p < bp_location + bp_location_count |
11620 | && (*loc2p)->address == old_loc->address); | |
876fa593 JK |
11621 | loc2p++) |
11622 | { | |
11623 | struct bp_location *loc2 = *loc2p; | |
11624 | ||
2d134ed3 | 11625 | if (breakpoint_locations_match (loc2, old_loc)) |
c7d46a38 | 11626 | { |
85d721b8 PA |
11627 | /* Read watchpoint locations are switched to |
11628 | access watchpoints, if the former are not | |
11629 | supported, but the latter are. */ | |
11630 | if (is_hardware_watchpoint (old_loc->owner)) | |
11631 | { | |
11632 | gdb_assert (is_hardware_watchpoint (loc2->owner)); | |
11633 | loc2->watchpoint_type = old_loc->watchpoint_type; | |
11634 | } | |
11635 | ||
934709f0 PW |
11636 | /* loc2 is a duplicated location. We need to check |
11637 | if it should be inserted in case it will be | |
11638 | unduplicated. */ | |
11639 | if (loc2 != old_loc | |
11640 | && unduplicated_should_be_inserted (loc2)) | |
c7d46a38 | 11641 | { |
934709f0 | 11642 | swap_insertion (old_loc, loc2); |
c7d46a38 PA |
11643 | keep_in_target = 1; |
11644 | break; | |
11645 | } | |
876fa593 JK |
11646 | } |
11647 | } | |
11648 | } | |
74960c60 VP |
11649 | } |
11650 | ||
20874c92 VP |
11651 | if (!keep_in_target) |
11652 | { | |
876fa593 | 11653 | if (remove_breakpoint (old_loc, mark_uninserted)) |
20874c92 | 11654 | { |
4a64f543 MS |
11655 | /* This is just about all we can do. We could keep |
11656 | this location on the global list, and try to | |
11657 | remove it next time, but there's no particular | |
11658 | reason why we will succeed next time. | |
20874c92 | 11659 | |
4a64f543 MS |
11660 | Note that at this point, old_loc->owner is still |
11661 | valid, as delete_breakpoint frees the breakpoint | |
11662 | only after calling us. */ | |
3e43a32a MS |
11663 | printf_filtered (_("warning: Error removing " |
11664 | "breakpoint %d\n"), | |
876fa593 | 11665 | old_loc->owner->number); |
20874c92 VP |
11666 | } |
11667 | removed = 1; | |
11668 | } | |
0d381245 | 11669 | } |
74960c60 VP |
11670 | |
11671 | if (!found_object) | |
1c5cfe86 | 11672 | { |
db82e815 PA |
11673 | if (removed && non_stop |
11674 | && breakpoint_address_is_meaningful (old_loc->owner) | |
11675 | && !is_hardware_watchpoint (old_loc->owner)) | |
20874c92 | 11676 | { |
db82e815 PA |
11677 | /* This location was removed from the target. In |
11678 | non-stop mode, a race condition is possible where | |
11679 | we've removed a breakpoint, but stop events for that | |
11680 | breakpoint are already queued and will arrive later. | |
11681 | We apply an heuristic to be able to distinguish such | |
11682 | SIGTRAPs from other random SIGTRAPs: we keep this | |
11683 | breakpoint location for a bit, and will retire it | |
11684 | after we see some number of events. The theory here | |
11685 | is that reporting of events should, "on the average", | |
11686 | be fair, so after a while we'll see events from all | |
11687 | threads that have anything of interest, and no longer | |
11688 | need to keep this breakpoint location around. We | |
11689 | don't hold locations forever so to reduce chances of | |
11690 | mistaking a non-breakpoint SIGTRAP for a breakpoint | |
11691 | SIGTRAP. | |
11692 | ||
11693 | The heuristic failing can be disastrous on | |
11694 | decr_pc_after_break targets. | |
11695 | ||
11696 | On decr_pc_after_break targets, like e.g., x86-linux, | |
11697 | if we fail to recognize a late breakpoint SIGTRAP, | |
11698 | because events_till_retirement has reached 0 too | |
11699 | soon, we'll fail to do the PC adjustment, and report | |
11700 | a random SIGTRAP to the user. When the user resumes | |
11701 | the inferior, it will most likely immediately crash | |
2dec564e | 11702 | with SIGILL/SIGBUS/SIGSEGV, or worse, get silently |
db82e815 PA |
11703 | corrupted, because of being resumed e.g., in the |
11704 | middle of a multi-byte instruction, or skipped a | |
11705 | one-byte instruction. This was actually seen happen | |
11706 | on native x86-linux, and should be less rare on | |
11707 | targets that do not support new thread events, like | |
11708 | remote, due to the heuristic depending on | |
11709 | thread_count. | |
11710 | ||
11711 | Mistaking a random SIGTRAP for a breakpoint trap | |
11712 | causes similar symptoms (PC adjustment applied when | |
11713 | it shouldn't), but then again, playing with SIGTRAPs | |
11714 | behind the debugger's back is asking for trouble. | |
11715 | ||
11716 | Since hardware watchpoint traps are always | |
11717 | distinguishable from other traps, so we don't need to | |
11718 | apply keep hardware watchpoint moribund locations | |
11719 | around. We simply always ignore hardware watchpoint | |
11720 | traps we can no longer explain. */ | |
11721 | ||
876fa593 JK |
11722 | old_loc->events_till_retirement = 3 * (thread_count () + 1); |
11723 | old_loc->owner = NULL; | |
20874c92 | 11724 | |
876fa593 | 11725 | VEC_safe_push (bp_location_p, moribund_locations, old_loc); |
1c5cfe86 PA |
11726 | } |
11727 | else | |
f431efe5 PA |
11728 | { |
11729 | old_loc->owner = NULL; | |
11730 | decref_bp_location (&old_loc); | |
11731 | } | |
20874c92 | 11732 | } |
74960c60 | 11733 | } |
1c5cfe86 | 11734 | |
348d480f PA |
11735 | /* Rescan breakpoints at the same address and section, marking the |
11736 | first one as "first" and any others as "duplicates". This is so | |
11737 | that the bpt instruction is only inserted once. If we have a | |
11738 | permanent breakpoint at the same place as BPT, make that one the | |
11739 | official one, and the rest as duplicates. Permanent breakpoints | |
11740 | are sorted first for the same address. | |
11741 | ||
11742 | Do the same for hardware watchpoints, but also considering the | |
11743 | watchpoint's type (regular/access/read) and length. */ | |
11744 | ||
11745 | bp_loc_first = NULL; | |
11746 | wp_loc_first = NULL; | |
11747 | awp_loc_first = NULL; | |
11748 | rwp_loc_first = NULL; | |
11749 | ALL_BP_LOCATIONS (loc, locp) | |
11750 | { | |
11751 | /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always | |
11752 | non-NULL. */ | |
348d480f | 11753 | struct bp_location **loc_first_p; |
d3fbdd86 | 11754 | b = loc->owner; |
348d480f | 11755 | |
f8eba3c6 | 11756 | if (!should_be_inserted (loc) |
348d480f | 11757 | || !breakpoint_address_is_meaningful (b) |
1e4d1764 YQ |
11758 | /* Don't detect duplicate for tracepoint locations because they are |
11759 | never duplicated. See the comments in field `duplicate' of | |
11760 | `struct bp_location'. */ | |
348d480f | 11761 | || is_tracepoint (b)) |
b775012e LM |
11762 | { |
11763 | /* Clear the condition modification flag. */ | |
11764 | loc->condition_changed = condition_unchanged; | |
11765 | continue; | |
11766 | } | |
348d480f PA |
11767 | |
11768 | /* Permanent breakpoint should always be inserted. */ | |
11769 | if (b->enable_state == bp_permanent && ! loc->inserted) | |
11770 | internal_error (__FILE__, __LINE__, | |
11771 | _("allegedly permanent breakpoint is not " | |
11772 | "actually inserted")); | |
11773 | ||
11774 | if (b->type == bp_hardware_watchpoint) | |
11775 | loc_first_p = &wp_loc_first; | |
11776 | else if (b->type == bp_read_watchpoint) | |
11777 | loc_first_p = &rwp_loc_first; | |
11778 | else if (b->type == bp_access_watchpoint) | |
11779 | loc_first_p = &awp_loc_first; | |
11780 | else | |
11781 | loc_first_p = &bp_loc_first; | |
11782 | ||
11783 | if (*loc_first_p == NULL | |
11784 | || (overlay_debugging && loc->section != (*loc_first_p)->section) | |
11785 | || !breakpoint_locations_match (loc, *loc_first_p)) | |
11786 | { | |
11787 | *loc_first_p = loc; | |
11788 | loc->duplicate = 0; | |
b775012e LM |
11789 | |
11790 | if (is_breakpoint (loc->owner) && loc->condition_changed) | |
11791 | { | |
11792 | loc->needs_update = 1; | |
11793 | /* Clear the condition modification flag. */ | |
11794 | loc->condition_changed = condition_unchanged; | |
11795 | } | |
348d480f PA |
11796 | continue; |
11797 | } | |
11798 | ||
934709f0 PW |
11799 | |
11800 | /* This and the above ensure the invariant that the first location | |
11801 | is not duplicated, and is the inserted one. | |
11802 | All following are marked as duplicated, and are not inserted. */ | |
11803 | if (loc->inserted) | |
11804 | swap_insertion (loc, *loc_first_p); | |
348d480f PA |
11805 | loc->duplicate = 1; |
11806 | ||
b775012e LM |
11807 | /* Clear the condition modification flag. */ |
11808 | loc->condition_changed = condition_unchanged; | |
11809 | ||
348d480f PA |
11810 | if ((*loc_first_p)->owner->enable_state == bp_permanent && loc->inserted |
11811 | && b->enable_state != bp_permanent) | |
11812 | internal_error (__FILE__, __LINE__, | |
11813 | _("another breakpoint was inserted on top of " | |
11814 | "a permanent breakpoint")); | |
11815 | } | |
11816 | ||
b775012e | 11817 | if (breakpoints_always_inserted_mode () |
348d480f PA |
11818 | && (have_live_inferiors () |
11819 | || (gdbarch_has_global_breakpoints (target_gdbarch)))) | |
b775012e LM |
11820 | { |
11821 | if (should_insert) | |
11822 | insert_breakpoint_locations (); | |
11823 | else | |
11824 | { | |
11825 | /* Though should_insert is false, we may need to update conditions | |
11826 | on the target's side if it is evaluating such conditions. We | |
11827 | only update conditions for locations that are marked | |
11828 | "needs_update". */ | |
11829 | update_inserted_breakpoint_locations (); | |
11830 | } | |
11831 | } | |
348d480f | 11832 | |
1e4d1764 YQ |
11833 | if (should_insert) |
11834 | download_tracepoint_locations (); | |
11835 | ||
348d480f PA |
11836 | do_cleanups (cleanups); |
11837 | } | |
11838 | ||
11839 | void | |
11840 | breakpoint_retire_moribund (void) | |
11841 | { | |
11842 | struct bp_location *loc; | |
11843 | int ix; | |
11844 | ||
11845 | for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix) | |
11846 | if (--(loc->events_till_retirement) == 0) | |
11847 | { | |
11848 | decref_bp_location (&loc); | |
11849 | VEC_unordered_remove (bp_location_p, moribund_locations, ix); | |
11850 | --ix; | |
11851 | } | |
11852 | } | |
11853 | ||
11854 | static void | |
11855 | update_global_location_list_nothrow (int inserting) | |
11856 | { | |
bfd189b1 | 11857 | volatile struct gdb_exception e; |
348d480f PA |
11858 | |
11859 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
11860 | update_global_location_list (inserting); | |
11861 | } | |
11862 | ||
11863 | /* Clear BKP from a BPS. */ | |
11864 | ||
11865 | static void | |
11866 | bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt) | |
11867 | { | |
11868 | bpstat bs; | |
11869 | ||
11870 | for (bs = bps; bs; bs = bs->next) | |
11871 | if (bs->breakpoint_at == bpt) | |
11872 | { | |
11873 | bs->breakpoint_at = NULL; | |
11874 | bs->old_val = NULL; | |
11875 | /* bs->commands will be freed later. */ | |
11876 | } | |
11877 | } | |
11878 | ||
11879 | /* Callback for iterate_over_threads. */ | |
11880 | static int | |
11881 | bpstat_remove_breakpoint_callback (struct thread_info *th, void *data) | |
11882 | { | |
11883 | struct breakpoint *bpt = data; | |
11884 | ||
11885 | bpstat_remove_bp_location (th->control.stop_bpstat, bpt); | |
11886 | return 0; | |
11887 | } | |
11888 | ||
11889 | /* Helper for breakpoint and tracepoint breakpoint_ops->mention | |
11890 | callbacks. */ | |
11891 | ||
11892 | static void | |
11893 | say_where (struct breakpoint *b) | |
11894 | { | |
79a45e25 | 11895 | struct ui_out *uiout = current_uiout; |
348d480f PA |
11896 | struct value_print_options opts; |
11897 | ||
11898 | get_user_print_options (&opts); | |
11899 | ||
11900 | /* i18n: cagney/2005-02-11: Below needs to be merged into a | |
11901 | single string. */ | |
11902 | if (b->loc == NULL) | |
11903 | { | |
11904 | printf_filtered (_(" (%s) pending."), b->addr_string); | |
11905 | } | |
11906 | else | |
11907 | { | |
f8eba3c6 | 11908 | if (opts.addressprint || b->loc->source_file == NULL) |
348d480f PA |
11909 | { |
11910 | printf_filtered (" at "); | |
11911 | fputs_filtered (paddress (b->loc->gdbarch, b->loc->address), | |
11912 | gdb_stdout); | |
11913 | } | |
f8eba3c6 TT |
11914 | if (b->loc->source_file) |
11915 | { | |
11916 | /* If there is a single location, we can print the location | |
11917 | more nicely. */ | |
11918 | if (b->loc->next == NULL) | |
11919 | printf_filtered (": file %s, line %d.", | |
11920 | b->loc->source_file, b->loc->line_number); | |
11921 | else | |
11922 | /* This is not ideal, but each location may have a | |
11923 | different file name, and this at least reflects the | |
11924 | real situation somewhat. */ | |
11925 | printf_filtered (": %s.", b->addr_string); | |
11926 | } | |
348d480f PA |
11927 | |
11928 | if (b->loc->next) | |
11929 | { | |
11930 | struct bp_location *loc = b->loc; | |
11931 | int n = 0; | |
11932 | for (; loc; loc = loc->next) | |
11933 | ++n; | |
11934 | printf_filtered (" (%d locations)", n); | |
11935 | } | |
11936 | } | |
11937 | } | |
11938 | ||
348d480f PA |
11939 | /* Default bp_location_ops methods. */ |
11940 | ||
11941 | static void | |
11942 | bp_location_dtor (struct bp_location *self) | |
11943 | { | |
11944 | xfree (self->cond); | |
b775012e LM |
11945 | if (self->cond_bytecode) |
11946 | free_agent_expr (self->cond_bytecode); | |
348d480f | 11947 | xfree (self->function_name); |
f8eba3c6 | 11948 | xfree (self->source_file); |
348d480f PA |
11949 | } |
11950 | ||
11951 | static const struct bp_location_ops bp_location_ops = | |
11952 | { | |
11953 | bp_location_dtor | |
11954 | }; | |
11955 | ||
2060206e PA |
11956 | /* Default breakpoint_ops methods all breakpoint_ops ultimately |
11957 | inherit from. */ | |
348d480f | 11958 | |
2060206e PA |
11959 | static void |
11960 | base_breakpoint_dtor (struct breakpoint *self) | |
348d480f PA |
11961 | { |
11962 | decref_counted_command_line (&self->commands); | |
11963 | xfree (self->cond_string); | |
348d480f | 11964 | xfree (self->addr_string); |
f8eba3c6 | 11965 | xfree (self->filter); |
348d480f | 11966 | xfree (self->addr_string_range_end); |
348d480f PA |
11967 | } |
11968 | ||
2060206e PA |
11969 | static struct bp_location * |
11970 | base_breakpoint_allocate_location (struct breakpoint *self) | |
348d480f PA |
11971 | { |
11972 | struct bp_location *loc; | |
11973 | ||
11974 | loc = XNEW (struct bp_location); | |
11975 | init_bp_location (loc, &bp_location_ops, self); | |
11976 | return loc; | |
11977 | } | |
11978 | ||
2060206e PA |
11979 | static void |
11980 | base_breakpoint_re_set (struct breakpoint *b) | |
11981 | { | |
11982 | /* Nothing to re-set. */ | |
11983 | } | |
11984 | ||
11985 | #define internal_error_pure_virtual_called() \ | |
11986 | gdb_assert_not_reached ("pure virtual function called") | |
11987 | ||
11988 | static int | |
11989 | base_breakpoint_insert_location (struct bp_location *bl) | |
11990 | { | |
11991 | internal_error_pure_virtual_called (); | |
11992 | } | |
11993 | ||
11994 | static int | |
11995 | base_breakpoint_remove_location (struct bp_location *bl) | |
11996 | { | |
11997 | internal_error_pure_virtual_called (); | |
11998 | } | |
11999 | ||
12000 | static int | |
12001 | base_breakpoint_breakpoint_hit (const struct bp_location *bl, | |
12002 | struct address_space *aspace, | |
09ac7c10 TT |
12003 | CORE_ADDR bp_addr, |
12004 | const struct target_waitstatus *ws) | |
2060206e PA |
12005 | { |
12006 | internal_error_pure_virtual_called (); | |
12007 | } | |
12008 | ||
12009 | static void | |
12010 | base_breakpoint_check_status (bpstat bs) | |
12011 | { | |
12012 | /* Always stop. */ | |
12013 | } | |
12014 | ||
12015 | /* A "works_in_software_mode" breakpoint_ops method that just internal | |
12016 | errors. */ | |
12017 | ||
12018 | static int | |
12019 | base_breakpoint_works_in_software_mode (const struct breakpoint *b) | |
12020 | { | |
12021 | internal_error_pure_virtual_called (); | |
12022 | } | |
12023 | ||
12024 | /* A "resources_needed" breakpoint_ops method that just internal | |
12025 | errors. */ | |
12026 | ||
12027 | static int | |
12028 | base_breakpoint_resources_needed (const struct bp_location *bl) | |
12029 | { | |
12030 | internal_error_pure_virtual_called (); | |
12031 | } | |
12032 | ||
12033 | static enum print_stop_action | |
12034 | base_breakpoint_print_it (bpstat bs) | |
12035 | { | |
12036 | internal_error_pure_virtual_called (); | |
12037 | } | |
12038 | ||
12039 | static void | |
12040 | base_breakpoint_print_one_detail (const struct breakpoint *self, | |
12041 | struct ui_out *uiout) | |
12042 | { | |
12043 | /* nothing */ | |
12044 | } | |
12045 | ||
12046 | static void | |
12047 | base_breakpoint_print_mention (struct breakpoint *b) | |
12048 | { | |
12049 | internal_error_pure_virtual_called (); | |
12050 | } | |
12051 | ||
12052 | static void | |
12053 | base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp) | |
12054 | { | |
12055 | internal_error_pure_virtual_called (); | |
12056 | } | |
12057 | ||
983af33b SDJ |
12058 | static void |
12059 | base_breakpoint_create_sals_from_address (char **arg, | |
12060 | struct linespec_result *canonical, | |
12061 | enum bptype type_wanted, | |
12062 | char *addr_start, | |
12063 | char **copy_arg) | |
12064 | { | |
12065 | internal_error_pure_virtual_called (); | |
12066 | } | |
12067 | ||
12068 | static void | |
12069 | base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12070 | struct linespec_result *c, | |
12071 | struct linespec_sals *lsal, | |
12072 | char *cond_string, | |
12073 | enum bptype type_wanted, | |
12074 | enum bpdisp disposition, | |
12075 | int thread, | |
12076 | int task, int ignore_count, | |
12077 | const struct breakpoint_ops *o, | |
12078 | int from_tty, int enabled, | |
44f238bb | 12079 | int internal, unsigned flags) |
983af33b SDJ |
12080 | { |
12081 | internal_error_pure_virtual_called (); | |
12082 | } | |
12083 | ||
12084 | static void | |
12085 | base_breakpoint_decode_linespec (struct breakpoint *b, char **s, | |
12086 | struct symtabs_and_lines *sals) | |
12087 | { | |
12088 | internal_error_pure_virtual_called (); | |
12089 | } | |
12090 | ||
2060206e PA |
12091 | static struct breakpoint_ops base_breakpoint_ops = |
12092 | { | |
12093 | base_breakpoint_dtor, | |
12094 | base_breakpoint_allocate_location, | |
12095 | base_breakpoint_re_set, | |
12096 | base_breakpoint_insert_location, | |
12097 | base_breakpoint_remove_location, | |
12098 | base_breakpoint_breakpoint_hit, | |
12099 | base_breakpoint_check_status, | |
12100 | base_breakpoint_resources_needed, | |
12101 | base_breakpoint_works_in_software_mode, | |
12102 | base_breakpoint_print_it, | |
12103 | NULL, | |
12104 | base_breakpoint_print_one_detail, | |
12105 | base_breakpoint_print_mention, | |
983af33b SDJ |
12106 | base_breakpoint_print_recreate, |
12107 | base_breakpoint_create_sals_from_address, | |
12108 | base_breakpoint_create_breakpoints_sal, | |
12109 | base_breakpoint_decode_linespec, | |
2060206e PA |
12110 | }; |
12111 | ||
12112 | /* Default breakpoint_ops methods. */ | |
12113 | ||
12114 | static void | |
348d480f PA |
12115 | bkpt_re_set (struct breakpoint *b) |
12116 | { | |
06edf0c0 PA |
12117 | /* FIXME: is this still reachable? */ |
12118 | if (b->addr_string == NULL) | |
12119 | { | |
12120 | /* Anything without a string can't be re-set. */ | |
348d480f | 12121 | delete_breakpoint (b); |
06edf0c0 | 12122 | return; |
348d480f | 12123 | } |
06edf0c0 PA |
12124 | |
12125 | breakpoint_re_set_default (b); | |
348d480f PA |
12126 | } |
12127 | ||
2060206e | 12128 | static int |
348d480f PA |
12129 | bkpt_insert_location (struct bp_location *bl) |
12130 | { | |
12131 | if (bl->loc_type == bp_loc_hardware_breakpoint) | |
12132 | return target_insert_hw_breakpoint (bl->gdbarch, | |
12133 | &bl->target_info); | |
12134 | else | |
12135 | return target_insert_breakpoint (bl->gdbarch, | |
12136 | &bl->target_info); | |
12137 | } | |
12138 | ||
2060206e | 12139 | static int |
348d480f PA |
12140 | bkpt_remove_location (struct bp_location *bl) |
12141 | { | |
12142 | if (bl->loc_type == bp_loc_hardware_breakpoint) | |
12143 | return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info); | |
12144 | else | |
12145 | return target_remove_breakpoint (bl->gdbarch, &bl->target_info); | |
12146 | } | |
12147 | ||
2060206e | 12148 | static int |
348d480f | 12149 | bkpt_breakpoint_hit (const struct bp_location *bl, |
09ac7c10 TT |
12150 | struct address_space *aspace, CORE_ADDR bp_addr, |
12151 | const struct target_waitstatus *ws) | |
348d480f PA |
12152 | { |
12153 | struct breakpoint *b = bl->owner; | |
12154 | ||
09ac7c10 TT |
12155 | if (ws->kind != TARGET_WAITKIND_STOPPED |
12156 | || ws->value.sig != TARGET_SIGNAL_TRAP) | |
12157 | return 0; | |
12158 | ||
348d480f PA |
12159 | if (!breakpoint_address_match (bl->pspace->aspace, bl->address, |
12160 | aspace, bp_addr)) | |
12161 | return 0; | |
12162 | ||
12163 | if (overlay_debugging /* unmapped overlay section */ | |
12164 | && section_is_overlay (bl->section) | |
12165 | && !section_is_mapped (bl->section)) | |
12166 | return 0; | |
12167 | ||
12168 | return 1; | |
12169 | } | |
12170 | ||
2060206e | 12171 | static int |
348d480f PA |
12172 | bkpt_resources_needed (const struct bp_location *bl) |
12173 | { | |
12174 | gdb_assert (bl->owner->type == bp_hardware_breakpoint); | |
12175 | ||
12176 | return 1; | |
12177 | } | |
12178 | ||
2060206e | 12179 | static enum print_stop_action |
348d480f PA |
12180 | bkpt_print_it (bpstat bs) |
12181 | { | |
348d480f PA |
12182 | struct breakpoint *b; |
12183 | const struct bp_location *bl; | |
001c8c33 | 12184 | int bp_temp; |
79a45e25 | 12185 | struct ui_out *uiout = current_uiout; |
348d480f PA |
12186 | |
12187 | gdb_assert (bs->bp_location_at != NULL); | |
12188 | ||
12189 | bl = bs->bp_location_at; | |
12190 | b = bs->breakpoint_at; | |
12191 | ||
001c8c33 PA |
12192 | bp_temp = b->disposition == disp_del; |
12193 | if (bl->address != bl->requested_address) | |
12194 | breakpoint_adjustment_warning (bl->requested_address, | |
12195 | bl->address, | |
12196 | b->number, 1); | |
12197 | annotate_breakpoint (b->number); | |
12198 | if (bp_temp) | |
12199 | ui_out_text (uiout, "\nTemporary breakpoint "); | |
12200 | else | |
12201 | ui_out_text (uiout, "\nBreakpoint "); | |
12202 | if (ui_out_is_mi_like_p (uiout)) | |
348d480f | 12203 | { |
001c8c33 PA |
12204 | ui_out_field_string (uiout, "reason", |
12205 | async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT)); | |
12206 | ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); | |
06edf0c0 | 12207 | } |
001c8c33 PA |
12208 | ui_out_field_int (uiout, "bkptno", b->number); |
12209 | ui_out_text (uiout, ", "); | |
06edf0c0 | 12210 | |
001c8c33 | 12211 | return PRINT_SRC_AND_LOC; |
06edf0c0 PA |
12212 | } |
12213 | ||
2060206e | 12214 | static void |
06edf0c0 PA |
12215 | bkpt_print_mention (struct breakpoint *b) |
12216 | { | |
79a45e25 | 12217 | if (ui_out_is_mi_like_p (current_uiout)) |
06edf0c0 PA |
12218 | return; |
12219 | ||
12220 | switch (b->type) | |
12221 | { | |
12222 | case bp_breakpoint: | |
12223 | case bp_gnu_ifunc_resolver: | |
12224 | if (b->disposition == disp_del) | |
12225 | printf_filtered (_("Temporary breakpoint")); | |
12226 | else | |
12227 | printf_filtered (_("Breakpoint")); | |
12228 | printf_filtered (_(" %d"), b->number); | |
12229 | if (b->type == bp_gnu_ifunc_resolver) | |
12230 | printf_filtered (_(" at gnu-indirect-function resolver")); | |
12231 | break; | |
12232 | case bp_hardware_breakpoint: | |
12233 | printf_filtered (_("Hardware assisted breakpoint %d"), b->number); | |
12234 | break; | |
12235 | } | |
12236 | ||
12237 | say_where (b); | |
12238 | } | |
12239 | ||
2060206e | 12240 | static void |
06edf0c0 PA |
12241 | bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp) |
12242 | { | |
12243 | if (tp->type == bp_breakpoint && tp->disposition == disp_del) | |
12244 | fprintf_unfiltered (fp, "tbreak"); | |
12245 | else if (tp->type == bp_breakpoint) | |
12246 | fprintf_unfiltered (fp, "break"); | |
12247 | else if (tp->type == bp_hardware_breakpoint | |
12248 | && tp->disposition == disp_del) | |
12249 | fprintf_unfiltered (fp, "thbreak"); | |
12250 | else if (tp->type == bp_hardware_breakpoint) | |
12251 | fprintf_unfiltered (fp, "hbreak"); | |
12252 | else | |
12253 | internal_error (__FILE__, __LINE__, | |
12254 | _("unhandled breakpoint type %d"), (int) tp->type); | |
12255 | ||
2060206e | 12256 | fprintf_unfiltered (fp, " %s", tp->addr_string); |
dd11a36c | 12257 | print_recreate_thread (tp, fp); |
06edf0c0 PA |
12258 | } |
12259 | ||
983af33b SDJ |
12260 | static void |
12261 | bkpt_create_sals_from_address (char **arg, | |
12262 | struct linespec_result *canonical, | |
12263 | enum bptype type_wanted, | |
12264 | char *addr_start, char **copy_arg) | |
12265 | { | |
12266 | create_sals_from_address_default (arg, canonical, type_wanted, | |
12267 | addr_start, copy_arg); | |
12268 | } | |
12269 | ||
12270 | static void | |
12271 | bkpt_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12272 | struct linespec_result *canonical, | |
12273 | struct linespec_sals *lsal, | |
12274 | char *cond_string, | |
12275 | enum bptype type_wanted, | |
12276 | enum bpdisp disposition, | |
12277 | int thread, | |
12278 | int task, int ignore_count, | |
12279 | const struct breakpoint_ops *ops, | |
12280 | int from_tty, int enabled, | |
44f238bb | 12281 | int internal, unsigned flags) |
983af33b SDJ |
12282 | { |
12283 | create_breakpoints_sal_default (gdbarch, canonical, lsal, | |
12284 | cond_string, type_wanted, | |
12285 | disposition, thread, task, | |
12286 | ignore_count, ops, from_tty, | |
44f238bb | 12287 | enabled, internal, flags); |
983af33b SDJ |
12288 | } |
12289 | ||
12290 | static void | |
12291 | bkpt_decode_linespec (struct breakpoint *b, char **s, | |
12292 | struct symtabs_and_lines *sals) | |
12293 | { | |
12294 | decode_linespec_default (b, s, sals); | |
12295 | } | |
12296 | ||
06edf0c0 PA |
12297 | /* Virtual table for internal breakpoints. */ |
12298 | ||
12299 | static void | |
12300 | internal_bkpt_re_set (struct breakpoint *b) | |
12301 | { | |
12302 | switch (b->type) | |
12303 | { | |
12304 | /* Delete overlay event and longjmp master breakpoints; they | |
12305 | will be reset later by breakpoint_re_set. */ | |
12306 | case bp_overlay_event: | |
12307 | case bp_longjmp_master: | |
12308 | case bp_std_terminate_master: | |
12309 | case bp_exception_master: | |
12310 | delete_breakpoint (b); | |
12311 | break; | |
12312 | ||
12313 | /* This breakpoint is special, it's set up when the inferior | |
12314 | starts and we really don't want to touch it. */ | |
12315 | case bp_shlib_event: | |
12316 | ||
12317 | /* Like bp_shlib_event, this breakpoint type is special. Once | |
12318 | it is set up, we do not want to touch it. */ | |
12319 | case bp_thread_event: | |
12320 | break; | |
12321 | } | |
12322 | } | |
12323 | ||
12324 | static void | |
12325 | internal_bkpt_check_status (bpstat bs) | |
12326 | { | |
a9b3a50f PA |
12327 | if (bs->breakpoint_at->type == bp_shlib_event) |
12328 | { | |
12329 | /* If requested, stop when the dynamic linker notifies GDB of | |
12330 | events. This allows the user to get control and place | |
12331 | breakpoints in initializer routines for dynamically loaded | |
12332 | objects (among other things). */ | |
12333 | bs->stop = stop_on_solib_events; | |
12334 | bs->print = stop_on_solib_events; | |
12335 | } | |
12336 | else | |
12337 | bs->stop = 0; | |
06edf0c0 PA |
12338 | } |
12339 | ||
12340 | static enum print_stop_action | |
12341 | internal_bkpt_print_it (bpstat bs) | |
12342 | { | |
36dfb11c | 12343 | struct ui_out *uiout = current_uiout; |
06edf0c0 | 12344 | struct breakpoint *b; |
06edf0c0 | 12345 | |
06edf0c0 PA |
12346 | b = bs->breakpoint_at; |
12347 | ||
06edf0c0 PA |
12348 | switch (b->type) |
12349 | { | |
348d480f PA |
12350 | case bp_shlib_event: |
12351 | /* Did we stop because the user set the stop_on_solib_events | |
12352 | variable? (If so, we report this as a generic, "Stopped due | |
12353 | to shlib event" message.) */ | |
edcc5120 | 12354 | print_solib_event (0); |
348d480f PA |
12355 | break; |
12356 | ||
12357 | case bp_thread_event: | |
12358 | /* Not sure how we will get here. | |
12359 | GDB should not stop for these breakpoints. */ | |
12360 | printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
12361 | break; |
12362 | ||
12363 | case bp_overlay_event: | |
12364 | /* By analogy with the thread event, GDB should not stop for these. */ | |
12365 | printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
12366 | break; |
12367 | ||
12368 | case bp_longjmp_master: | |
12369 | /* These should never be enabled. */ | |
12370 | printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n")); | |
348d480f PA |
12371 | break; |
12372 | ||
12373 | case bp_std_terminate_master: | |
12374 | /* These should never be enabled. */ | |
12375 | printf_filtered (_("std::terminate Master Breakpoint: " | |
12376 | "gdb should not stop!\n")); | |
348d480f PA |
12377 | break; |
12378 | ||
12379 | case bp_exception_master: | |
12380 | /* These should never be enabled. */ | |
12381 | printf_filtered (_("Exception Master Breakpoint: " | |
12382 | "gdb should not stop!\n")); | |
06edf0c0 PA |
12383 | break; |
12384 | } | |
12385 | ||
001c8c33 | 12386 | return PRINT_NOTHING; |
06edf0c0 PA |
12387 | } |
12388 | ||
12389 | static void | |
12390 | internal_bkpt_print_mention (struct breakpoint *b) | |
12391 | { | |
12392 | /* Nothing to mention. These breakpoints are internal. */ | |
12393 | } | |
12394 | ||
06edf0c0 PA |
12395 | /* Virtual table for momentary breakpoints */ |
12396 | ||
12397 | static void | |
12398 | momentary_bkpt_re_set (struct breakpoint *b) | |
12399 | { | |
12400 | /* Keep temporary breakpoints, which can be encountered when we step | |
12401 | over a dlopen call and SOLIB_ADD is resetting the breakpoints. | |
12402 | Otherwise these should have been blown away via the cleanup chain | |
12403 | or by breakpoint_init_inferior when we rerun the executable. */ | |
12404 | } | |
12405 | ||
12406 | static void | |
12407 | momentary_bkpt_check_status (bpstat bs) | |
12408 | { | |
12409 | /* Nothing. The point of these breakpoints is causing a stop. */ | |
12410 | } | |
12411 | ||
12412 | static enum print_stop_action | |
12413 | momentary_bkpt_print_it (bpstat bs) | |
12414 | { | |
79a45e25 PA |
12415 | struct ui_out *uiout = current_uiout; |
12416 | ||
001c8c33 | 12417 | if (ui_out_is_mi_like_p (uiout)) |
06edf0c0 | 12418 | { |
001c8c33 | 12419 | struct breakpoint *b = bs->breakpoint_at; |
348d480f | 12420 | |
001c8c33 PA |
12421 | switch (b->type) |
12422 | { | |
12423 | case bp_finish: | |
12424 | ui_out_field_string | |
12425 | (uiout, "reason", | |
12426 | async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED)); | |
12427 | break; | |
348d480f | 12428 | |
001c8c33 PA |
12429 | case bp_until: |
12430 | ui_out_field_string | |
12431 | (uiout, "reason", | |
12432 | async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED)); | |
12433 | break; | |
12434 | } | |
348d480f PA |
12435 | } |
12436 | ||
001c8c33 | 12437 | return PRINT_UNKNOWN; |
348d480f PA |
12438 | } |
12439 | ||
06edf0c0 PA |
12440 | static void |
12441 | momentary_bkpt_print_mention (struct breakpoint *b) | |
348d480f | 12442 | { |
06edf0c0 | 12443 | /* Nothing to mention. These breakpoints are internal. */ |
348d480f PA |
12444 | } |
12445 | ||
348d480f | 12446 | /* The breakpoint_ops structure to be used in tracepoints. */ |
876fa593 | 12447 | |
348d480f PA |
12448 | static void |
12449 | tracepoint_re_set (struct breakpoint *b) | |
12450 | { | |
12451 | breakpoint_re_set_default (b); | |
12452 | } | |
876fa593 | 12453 | |
348d480f PA |
12454 | static int |
12455 | tracepoint_breakpoint_hit (const struct bp_location *bl, | |
09ac7c10 TT |
12456 | struct address_space *aspace, CORE_ADDR bp_addr, |
12457 | const struct target_waitstatus *ws) | |
348d480f PA |
12458 | { |
12459 | /* By definition, the inferior does not report stops at | |
12460 | tracepoints. */ | |
12461 | return 0; | |
74960c60 VP |
12462 | } |
12463 | ||
12464 | static void | |
348d480f PA |
12465 | tracepoint_print_one_detail (const struct breakpoint *self, |
12466 | struct ui_out *uiout) | |
74960c60 | 12467 | { |
d9b3f62e PA |
12468 | struct tracepoint *tp = (struct tracepoint *) self; |
12469 | if (tp->static_trace_marker_id) | |
348d480f PA |
12470 | { |
12471 | gdb_assert (self->type == bp_static_tracepoint); | |
cc59ec59 | 12472 | |
348d480f PA |
12473 | ui_out_text (uiout, "\tmarker id is "); |
12474 | ui_out_field_string (uiout, "static-tracepoint-marker-string-id", | |
d9b3f62e | 12475 | tp->static_trace_marker_id); |
348d480f PA |
12476 | ui_out_text (uiout, "\n"); |
12477 | } | |
0d381245 VP |
12478 | } |
12479 | ||
a474d7c2 | 12480 | static void |
348d480f | 12481 | tracepoint_print_mention (struct breakpoint *b) |
a474d7c2 | 12482 | { |
79a45e25 | 12483 | if (ui_out_is_mi_like_p (current_uiout)) |
348d480f | 12484 | return; |
cc59ec59 | 12485 | |
348d480f PA |
12486 | switch (b->type) |
12487 | { | |
12488 | case bp_tracepoint: | |
12489 | printf_filtered (_("Tracepoint")); | |
12490 | printf_filtered (_(" %d"), b->number); | |
12491 | break; | |
12492 | case bp_fast_tracepoint: | |
12493 | printf_filtered (_("Fast tracepoint")); | |
12494 | printf_filtered (_(" %d"), b->number); | |
12495 | break; | |
12496 | case bp_static_tracepoint: | |
12497 | printf_filtered (_("Static tracepoint")); | |
12498 | printf_filtered (_(" %d"), b->number); | |
12499 | break; | |
12500 | default: | |
12501 | internal_error (__FILE__, __LINE__, | |
12502 | _("unhandled tracepoint type %d"), (int) b->type); | |
12503 | } | |
12504 | ||
12505 | say_where (b); | |
a474d7c2 PA |
12506 | } |
12507 | ||
348d480f | 12508 | static void |
d9b3f62e | 12509 | tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp) |
a474d7c2 | 12510 | { |
d9b3f62e PA |
12511 | struct tracepoint *tp = (struct tracepoint *) self; |
12512 | ||
12513 | if (self->type == bp_fast_tracepoint) | |
348d480f | 12514 | fprintf_unfiltered (fp, "ftrace"); |
d9b3f62e | 12515 | if (self->type == bp_static_tracepoint) |
348d480f | 12516 | fprintf_unfiltered (fp, "strace"); |
d9b3f62e | 12517 | else if (self->type == bp_tracepoint) |
348d480f PA |
12518 | fprintf_unfiltered (fp, "trace"); |
12519 | else | |
12520 | internal_error (__FILE__, __LINE__, | |
d9b3f62e | 12521 | _("unhandled tracepoint type %d"), (int) self->type); |
cc59ec59 | 12522 | |
d9b3f62e PA |
12523 | fprintf_unfiltered (fp, " %s", self->addr_string); |
12524 | print_recreate_thread (self, fp); | |
12525 | ||
12526 | if (tp->pass_count) | |
12527 | fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count); | |
a474d7c2 PA |
12528 | } |
12529 | ||
983af33b SDJ |
12530 | static void |
12531 | tracepoint_create_sals_from_address (char **arg, | |
12532 | struct linespec_result *canonical, | |
12533 | enum bptype type_wanted, | |
12534 | char *addr_start, char **copy_arg) | |
12535 | { | |
12536 | create_sals_from_address_default (arg, canonical, type_wanted, | |
12537 | addr_start, copy_arg); | |
12538 | } | |
12539 | ||
12540 | static void | |
12541 | tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12542 | struct linespec_result *canonical, | |
12543 | struct linespec_sals *lsal, | |
12544 | char *cond_string, | |
12545 | enum bptype type_wanted, | |
12546 | enum bpdisp disposition, | |
12547 | int thread, | |
12548 | int task, int ignore_count, | |
12549 | const struct breakpoint_ops *ops, | |
12550 | int from_tty, int enabled, | |
44f238bb | 12551 | int internal, unsigned flags) |
983af33b SDJ |
12552 | { |
12553 | create_breakpoints_sal_default (gdbarch, canonical, lsal, | |
12554 | cond_string, type_wanted, | |
12555 | disposition, thread, task, | |
12556 | ignore_count, ops, from_tty, | |
44f238bb | 12557 | enabled, internal, flags); |
983af33b SDJ |
12558 | } |
12559 | ||
12560 | static void | |
12561 | tracepoint_decode_linespec (struct breakpoint *b, char **s, | |
12562 | struct symtabs_and_lines *sals) | |
12563 | { | |
12564 | decode_linespec_default (b, s, sals); | |
12565 | } | |
12566 | ||
2060206e | 12567 | struct breakpoint_ops tracepoint_breakpoint_ops; |
348d480f | 12568 | |
983af33b SDJ |
12569 | /* The breakpoint_ops structure to be used on static tracepoints with |
12570 | markers (`-m'). */ | |
12571 | ||
12572 | static void | |
12573 | strace_marker_create_sals_from_address (char **arg, | |
12574 | struct linespec_result *canonical, | |
12575 | enum bptype type_wanted, | |
12576 | char *addr_start, char **copy_arg) | |
12577 | { | |
12578 | struct linespec_sals lsal; | |
12579 | ||
12580 | lsal.sals = decode_static_tracepoint_spec (arg); | |
12581 | ||
12582 | *copy_arg = savestring (addr_start, *arg - addr_start); | |
12583 | ||
12584 | canonical->addr_string = xstrdup (*copy_arg); | |
12585 | lsal.canonical = xstrdup (*copy_arg); | |
12586 | VEC_safe_push (linespec_sals, canonical->sals, &lsal); | |
12587 | } | |
12588 | ||
12589 | static void | |
12590 | strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch, | |
12591 | struct linespec_result *canonical, | |
12592 | struct linespec_sals *lsal, | |
12593 | char *cond_string, | |
12594 | enum bptype type_wanted, | |
12595 | enum bpdisp disposition, | |
12596 | int thread, | |
12597 | int task, int ignore_count, | |
12598 | const struct breakpoint_ops *ops, | |
12599 | int from_tty, int enabled, | |
44f238bb | 12600 | int internal, unsigned flags) |
983af33b SDJ |
12601 | { |
12602 | int i; | |
12603 | ||
12604 | /* If the user is creating a static tracepoint by marker id | |
12605 | (strace -m MARKER_ID), then store the sals index, so that | |
12606 | breakpoint_re_set can try to match up which of the newly | |
12607 | found markers corresponds to this one, and, don't try to | |
12608 | expand multiple locations for each sal, given than SALS | |
12609 | already should contain all sals for MARKER_ID. */ | |
12610 | ||
12611 | for (i = 0; i < lsal->sals.nelts; ++i) | |
12612 | { | |
12613 | struct symtabs_and_lines expanded; | |
12614 | struct tracepoint *tp; | |
12615 | struct cleanup *old_chain; | |
12616 | char *addr_string; | |
12617 | ||
12618 | expanded.nelts = 1; | |
12619 | expanded.sals = &lsal->sals.sals[i]; | |
12620 | ||
12621 | addr_string = xstrdup (canonical->addr_string); | |
12622 | old_chain = make_cleanup (xfree, addr_string); | |
12623 | ||
12624 | tp = XCNEW (struct tracepoint); | |
12625 | init_breakpoint_sal (&tp->base, gdbarch, expanded, | |
12626 | addr_string, NULL, | |
12627 | cond_string, type_wanted, disposition, | |
12628 | thread, task, ignore_count, ops, | |
44f238bb | 12629 | from_tty, enabled, internal, flags, |
983af33b SDJ |
12630 | canonical->special_display); |
12631 | /* Given that its possible to have multiple markers with | |
12632 | the same string id, if the user is creating a static | |
12633 | tracepoint by marker id ("strace -m MARKER_ID"), then | |
12634 | store the sals index, so that breakpoint_re_set can | |
12635 | try to match up which of the newly found markers | |
12636 | corresponds to this one */ | |
12637 | tp->static_trace_marker_id_idx = i; | |
12638 | ||
12639 | install_breakpoint (internal, &tp->base, 0); | |
12640 | ||
12641 | discard_cleanups (old_chain); | |
12642 | } | |
12643 | } | |
12644 | ||
12645 | static void | |
12646 | strace_marker_decode_linespec (struct breakpoint *b, char **s, | |
12647 | struct symtabs_and_lines *sals) | |
12648 | { | |
12649 | struct tracepoint *tp = (struct tracepoint *) b; | |
12650 | ||
12651 | *sals = decode_static_tracepoint_spec (s); | |
12652 | if (sals->nelts > tp->static_trace_marker_id_idx) | |
12653 | { | |
12654 | sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx]; | |
12655 | sals->nelts = 1; | |
12656 | } | |
12657 | else | |
12658 | error (_("marker %s not found"), tp->static_trace_marker_id); | |
12659 | } | |
12660 | ||
12661 | static struct breakpoint_ops strace_marker_breakpoint_ops; | |
12662 | ||
12663 | static int | |
12664 | strace_marker_p (struct breakpoint *b) | |
12665 | { | |
12666 | return b->ops == &strace_marker_breakpoint_ops; | |
12667 | } | |
12668 | ||
53a5351d | 12669 | /* Delete a breakpoint and clean up all traces of it in the data |
f431efe5 | 12670 | structures. */ |
c906108c SS |
12671 | |
12672 | void | |
fba45db2 | 12673 | delete_breakpoint (struct breakpoint *bpt) |
c906108c | 12674 | { |
52f0bd74 | 12675 | struct breakpoint *b; |
c906108c | 12676 | |
8a3fe4f8 | 12677 | gdb_assert (bpt != NULL); |
c906108c | 12678 | |
4a64f543 MS |
12679 | /* Has this bp already been deleted? This can happen because |
12680 | multiple lists can hold pointers to bp's. bpstat lists are | |
12681 | especial culprits. | |
12682 | ||
12683 | One example of this happening is a watchpoint's scope bp. When | |
12684 | the scope bp triggers, we notice that the watchpoint is out of | |
12685 | scope, and delete it. We also delete its scope bp. But the | |
12686 | scope bp is marked "auto-deleting", and is already on a bpstat. | |
12687 | That bpstat is then checked for auto-deleting bp's, which are | |
12688 | deleted. | |
12689 | ||
12690 | A real solution to this problem might involve reference counts in | |
12691 | bp's, and/or giving them pointers back to their referencing | |
12692 | bpstat's, and teaching delete_breakpoint to only free a bp's | |
12693 | storage when no more references were extent. A cheaper bandaid | |
12694 | was chosen. */ | |
c906108c SS |
12695 | if (bpt->type == bp_none) |
12696 | return; | |
12697 | ||
4a64f543 MS |
12698 | /* At least avoid this stale reference until the reference counting |
12699 | of breakpoints gets resolved. */ | |
d0fb5eae | 12700 | if (bpt->related_breakpoint != bpt) |
e5a0a904 | 12701 | { |
d0fb5eae | 12702 | struct breakpoint *related; |
3a5c3e22 | 12703 | struct watchpoint *w; |
d0fb5eae JK |
12704 | |
12705 | if (bpt->type == bp_watchpoint_scope) | |
3a5c3e22 | 12706 | w = (struct watchpoint *) bpt->related_breakpoint; |
d0fb5eae | 12707 | else if (bpt->related_breakpoint->type == bp_watchpoint_scope) |
3a5c3e22 PA |
12708 | w = (struct watchpoint *) bpt; |
12709 | else | |
12710 | w = NULL; | |
12711 | if (w != NULL) | |
12712 | watchpoint_del_at_next_stop (w); | |
d0fb5eae JK |
12713 | |
12714 | /* Unlink bpt from the bpt->related_breakpoint ring. */ | |
12715 | for (related = bpt; related->related_breakpoint != bpt; | |
12716 | related = related->related_breakpoint); | |
12717 | related->related_breakpoint = bpt->related_breakpoint; | |
12718 | bpt->related_breakpoint = bpt; | |
e5a0a904 JK |
12719 | } |
12720 | ||
a9634178 TJB |
12721 | /* watch_command_1 creates a watchpoint but only sets its number if |
12722 | update_watchpoint succeeds in creating its bp_locations. If there's | |
12723 | a problem in that process, we'll be asked to delete the half-created | |
12724 | watchpoint. In that case, don't announce the deletion. */ | |
12725 | if (bpt->number) | |
12726 | observer_notify_breakpoint_deleted (bpt); | |
c906108c | 12727 | |
c906108c SS |
12728 | if (breakpoint_chain == bpt) |
12729 | breakpoint_chain = bpt->next; | |
12730 | ||
c906108c SS |
12731 | ALL_BREAKPOINTS (b) |
12732 | if (b->next == bpt) | |
c5aa993b JM |
12733 | { |
12734 | b->next = bpt->next; | |
12735 | break; | |
12736 | } | |
c906108c | 12737 | |
f431efe5 PA |
12738 | /* Be sure no bpstat's are pointing at the breakpoint after it's |
12739 | been freed. */ | |
12740 | /* FIXME, how can we find all bpstat's? We just check stop_bpstat | |
e5dd4106 | 12741 | in all threads for now. Note that we cannot just remove bpstats |
f431efe5 PA |
12742 | pointing at bpt from the stop_bpstat list entirely, as breakpoint |
12743 | commands are associated with the bpstat; if we remove it here, | |
12744 | then the later call to bpstat_do_actions (&stop_bpstat); in | |
12745 | event-top.c won't do anything, and temporary breakpoints with | |
12746 | commands won't work. */ | |
12747 | ||
12748 | iterate_over_threads (bpstat_remove_breakpoint_callback, bpt); | |
12749 | ||
4a64f543 MS |
12750 | /* Now that breakpoint is removed from breakpoint list, update the |
12751 | global location list. This will remove locations that used to | |
12752 | belong to this breakpoint. Do this before freeing the breakpoint | |
12753 | itself, since remove_breakpoint looks at location's owner. It | |
12754 | might be better design to have location completely | |
12755 | self-contained, but it's not the case now. */ | |
b60e7edf | 12756 | update_global_location_list (0); |
74960c60 | 12757 | |
348d480f | 12758 | bpt->ops->dtor (bpt); |
4a64f543 MS |
12759 | /* On the chance that someone will soon try again to delete this |
12760 | same bp, we mark it as deleted before freeing its storage. */ | |
c906108c | 12761 | bpt->type = bp_none; |
b8c9b27d | 12762 | xfree (bpt); |
c906108c SS |
12763 | } |
12764 | ||
4d6140d9 AC |
12765 | static void |
12766 | do_delete_breakpoint_cleanup (void *b) | |
12767 | { | |
12768 | delete_breakpoint (b); | |
12769 | } | |
12770 | ||
12771 | struct cleanup * | |
12772 | make_cleanup_delete_breakpoint (struct breakpoint *b) | |
12773 | { | |
12774 | return make_cleanup (do_delete_breakpoint_cleanup, b); | |
12775 | } | |
12776 | ||
51be5b68 PA |
12777 | /* Iterator function to call a user-provided callback function once |
12778 | for each of B and its related breakpoints. */ | |
12779 | ||
12780 | static void | |
12781 | iterate_over_related_breakpoints (struct breakpoint *b, | |
12782 | void (*function) (struct breakpoint *, | |
12783 | void *), | |
12784 | void *data) | |
12785 | { | |
12786 | struct breakpoint *related; | |
12787 | ||
12788 | related = b; | |
12789 | do | |
12790 | { | |
12791 | struct breakpoint *next; | |
12792 | ||
12793 | /* FUNCTION may delete RELATED. */ | |
12794 | next = related->related_breakpoint; | |
12795 | ||
12796 | if (next == related) | |
12797 | { | |
12798 | /* RELATED is the last ring entry. */ | |
12799 | function (related, data); | |
12800 | ||
12801 | /* FUNCTION may have deleted it, so we'd never reach back to | |
12802 | B. There's nothing left to do anyway, so just break | |
12803 | out. */ | |
12804 | break; | |
12805 | } | |
12806 | else | |
12807 | function (related, data); | |
12808 | ||
12809 | related = next; | |
12810 | } | |
12811 | while (related != b); | |
12812 | } | |
95a42b64 TT |
12813 | |
12814 | static void | |
12815 | do_delete_breakpoint (struct breakpoint *b, void *ignore) | |
12816 | { | |
12817 | delete_breakpoint (b); | |
12818 | } | |
12819 | ||
51be5b68 PA |
12820 | /* A callback for map_breakpoint_numbers that calls |
12821 | delete_breakpoint. */ | |
12822 | ||
12823 | static void | |
12824 | do_map_delete_breakpoint (struct breakpoint *b, void *ignore) | |
12825 | { | |
12826 | iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL); | |
12827 | } | |
12828 | ||
c906108c | 12829 | void |
fba45db2 | 12830 | delete_command (char *arg, int from_tty) |
c906108c | 12831 | { |
35df4500 | 12832 | struct breakpoint *b, *b_tmp; |
c906108c | 12833 | |
ea9365bb TT |
12834 | dont_repeat (); |
12835 | ||
c906108c SS |
12836 | if (arg == 0) |
12837 | { | |
12838 | int breaks_to_delete = 0; | |
12839 | ||
46c6471b PA |
12840 | /* Delete all breakpoints if no argument. Do not delete |
12841 | internal breakpoints, these have to be deleted with an | |
12842 | explicit breakpoint number argument. */ | |
c5aa993b | 12843 | ALL_BREAKPOINTS (b) |
46c6471b | 12844 | if (user_breakpoint_p (b)) |
973d738b DJ |
12845 | { |
12846 | breaks_to_delete = 1; | |
12847 | break; | |
12848 | } | |
c906108c SS |
12849 | |
12850 | /* Ask user only if there are some breakpoints to delete. */ | |
12851 | if (!from_tty | |
e2e0b3e5 | 12852 | || (breaks_to_delete && query (_("Delete all breakpoints? ")))) |
c906108c | 12853 | { |
35df4500 | 12854 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
46c6471b | 12855 | if (user_breakpoint_p (b)) |
c5aa993b | 12856 | delete_breakpoint (b); |
c906108c SS |
12857 | } |
12858 | } | |
12859 | else | |
51be5b68 | 12860 | map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL); |
c906108c SS |
12861 | } |
12862 | ||
0d381245 VP |
12863 | static int |
12864 | all_locations_are_pending (struct bp_location *loc) | |
fe3f5fa8 | 12865 | { |
0d381245 | 12866 | for (; loc; loc = loc->next) |
8645ff69 UW |
12867 | if (!loc->shlib_disabled |
12868 | && !loc->pspace->executing_startup) | |
0d381245 VP |
12869 | return 0; |
12870 | return 1; | |
fe3f5fa8 VP |
12871 | } |
12872 | ||
776592bf DE |
12873 | /* Subroutine of update_breakpoint_locations to simplify it. |
12874 | Return non-zero if multiple fns in list LOC have the same name. | |
12875 | Null names are ignored. */ | |
12876 | ||
12877 | static int | |
12878 | ambiguous_names_p (struct bp_location *loc) | |
12879 | { | |
12880 | struct bp_location *l; | |
12881 | htab_t htab = htab_create_alloc (13, htab_hash_string, | |
cc59ec59 MS |
12882 | (int (*) (const void *, |
12883 | const void *)) streq, | |
776592bf DE |
12884 | NULL, xcalloc, xfree); |
12885 | ||
12886 | for (l = loc; l != NULL; l = l->next) | |
12887 | { | |
12888 | const char **slot; | |
12889 | const char *name = l->function_name; | |
12890 | ||
12891 | /* Allow for some names to be NULL, ignore them. */ | |
12892 | if (name == NULL) | |
12893 | continue; | |
12894 | ||
12895 | slot = (const char **) htab_find_slot (htab, (const void *) name, | |
12896 | INSERT); | |
4a64f543 MS |
12897 | /* NOTE: We can assume slot != NULL here because xcalloc never |
12898 | returns NULL. */ | |
776592bf DE |
12899 | if (*slot != NULL) |
12900 | { | |
12901 | htab_delete (htab); | |
12902 | return 1; | |
12903 | } | |
12904 | *slot = name; | |
12905 | } | |
12906 | ||
12907 | htab_delete (htab); | |
12908 | return 0; | |
12909 | } | |
12910 | ||
0fb4aa4b PA |
12911 | /* When symbols change, it probably means the sources changed as well, |
12912 | and it might mean the static tracepoint markers are no longer at | |
12913 | the same address or line numbers they used to be at last we | |
12914 | checked. Losing your static tracepoints whenever you rebuild is | |
12915 | undesirable. This function tries to resync/rematch gdb static | |
12916 | tracepoints with the markers on the target, for static tracepoints | |
12917 | that have not been set by marker id. Static tracepoint that have | |
12918 | been set by marker id are reset by marker id in breakpoint_re_set. | |
12919 | The heuristic is: | |
12920 | ||
12921 | 1) For a tracepoint set at a specific address, look for a marker at | |
12922 | the old PC. If one is found there, assume to be the same marker. | |
12923 | If the name / string id of the marker found is different from the | |
12924 | previous known name, assume that means the user renamed the marker | |
12925 | in the sources, and output a warning. | |
12926 | ||
12927 | 2) For a tracepoint set at a given line number, look for a marker | |
12928 | at the new address of the old line number. If one is found there, | |
12929 | assume to be the same marker. If the name / string id of the | |
12930 | marker found is different from the previous known name, assume that | |
12931 | means the user renamed the marker in the sources, and output a | |
12932 | warning. | |
12933 | ||
12934 | 3) If a marker is no longer found at the same address or line, it | |
12935 | may mean the marker no longer exists. But it may also just mean | |
12936 | the code changed a bit. Maybe the user added a few lines of code | |
12937 | that made the marker move up or down (in line number terms). Ask | |
12938 | the target for info about the marker with the string id as we knew | |
12939 | it. If found, update line number and address in the matching | |
12940 | static tracepoint. This will get confused if there's more than one | |
12941 | marker with the same ID (possible in UST, although unadvised | |
12942 | precisely because it confuses tools). */ | |
12943 | ||
12944 | static struct symtab_and_line | |
12945 | update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal) | |
12946 | { | |
d9b3f62e | 12947 | struct tracepoint *tp = (struct tracepoint *) b; |
0fb4aa4b PA |
12948 | struct static_tracepoint_marker marker; |
12949 | CORE_ADDR pc; | |
12950 | int i; | |
12951 | ||
12952 | pc = sal.pc; | |
12953 | if (sal.line) | |
12954 | find_line_pc (sal.symtab, sal.line, &pc); | |
12955 | ||
12956 | if (target_static_tracepoint_marker_at (pc, &marker)) | |
12957 | { | |
d9b3f62e | 12958 | if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0) |
0fb4aa4b PA |
12959 | warning (_("static tracepoint %d changed probed marker from %s to %s"), |
12960 | b->number, | |
d9b3f62e | 12961 | tp->static_trace_marker_id, marker.str_id); |
0fb4aa4b | 12962 | |
d9b3f62e PA |
12963 | xfree (tp->static_trace_marker_id); |
12964 | tp->static_trace_marker_id = xstrdup (marker.str_id); | |
0fb4aa4b PA |
12965 | release_static_tracepoint_marker (&marker); |
12966 | ||
12967 | return sal; | |
12968 | } | |
12969 | ||
12970 | /* Old marker wasn't found on target at lineno. Try looking it up | |
12971 | by string ID. */ | |
12972 | if (!sal.explicit_pc | |
12973 | && sal.line != 0 | |
12974 | && sal.symtab != NULL | |
d9b3f62e | 12975 | && tp->static_trace_marker_id != NULL) |
0fb4aa4b PA |
12976 | { |
12977 | VEC(static_tracepoint_marker_p) *markers; | |
12978 | ||
12979 | markers | |
d9b3f62e | 12980 | = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id); |
0fb4aa4b PA |
12981 | |
12982 | if (!VEC_empty(static_tracepoint_marker_p, markers)) | |
12983 | { | |
80e1d417 | 12984 | struct symtab_and_line sal2; |
0fb4aa4b | 12985 | struct symbol *sym; |
80e1d417 | 12986 | struct static_tracepoint_marker *tpmarker; |
79a45e25 | 12987 | struct ui_out *uiout = current_uiout; |
0fb4aa4b | 12988 | |
80e1d417 | 12989 | tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0); |
0fb4aa4b | 12990 | |
d9b3f62e | 12991 | xfree (tp->static_trace_marker_id); |
80e1d417 | 12992 | tp->static_trace_marker_id = xstrdup (tpmarker->str_id); |
0fb4aa4b PA |
12993 | |
12994 | warning (_("marker for static tracepoint %d (%s) not " | |
12995 | "found at previous line number"), | |
d9b3f62e | 12996 | b->number, tp->static_trace_marker_id); |
0fb4aa4b | 12997 | |
80e1d417 | 12998 | init_sal (&sal2); |
0fb4aa4b | 12999 | |
80e1d417 | 13000 | sal2.pc = tpmarker->address; |
0fb4aa4b | 13001 | |
80e1d417 AS |
13002 | sal2 = find_pc_line (tpmarker->address, 0); |
13003 | sym = find_pc_sect_function (tpmarker->address, NULL); | |
0fb4aa4b PA |
13004 | ui_out_text (uiout, "Now in "); |
13005 | if (sym) | |
13006 | { | |
13007 | ui_out_field_string (uiout, "func", | |
13008 | SYMBOL_PRINT_NAME (sym)); | |
13009 | ui_out_text (uiout, " at "); | |
13010 | } | |
80e1d417 | 13011 | ui_out_field_string (uiout, "file", sal2.symtab->filename); |
0fb4aa4b PA |
13012 | ui_out_text (uiout, ":"); |
13013 | ||
13014 | if (ui_out_is_mi_like_p (uiout)) | |
13015 | { | |
80e1d417 | 13016 | char *fullname = symtab_to_fullname (sal2.symtab); |
0fb4aa4b PA |
13017 | |
13018 | if (fullname) | |
13019 | ui_out_field_string (uiout, "fullname", fullname); | |
13020 | } | |
13021 | ||
80e1d417 | 13022 | ui_out_field_int (uiout, "line", sal2.line); |
0fb4aa4b PA |
13023 | ui_out_text (uiout, "\n"); |
13024 | ||
80e1d417 | 13025 | b->loc->line_number = sal2.line; |
0fb4aa4b | 13026 | |
f8eba3c6 | 13027 | xfree (b->loc->source_file); |
0fb4aa4b | 13028 | if (sym) |
80e1d417 | 13029 | b->loc->source_file = xstrdup (sal2.symtab->filename); |
0fb4aa4b | 13030 | else |
f8eba3c6 | 13031 | b->loc->source_file = NULL; |
0fb4aa4b PA |
13032 | |
13033 | xfree (b->addr_string); | |
13034 | b->addr_string = xstrprintf ("%s:%d", | |
80e1d417 | 13035 | sal2.symtab->filename, |
f8eba3c6 | 13036 | b->loc->line_number); |
0fb4aa4b PA |
13037 | |
13038 | /* Might be nice to check if function changed, and warn if | |
13039 | so. */ | |
13040 | ||
80e1d417 | 13041 | release_static_tracepoint_marker (tpmarker); |
0fb4aa4b PA |
13042 | } |
13043 | } | |
13044 | return sal; | |
13045 | } | |
13046 | ||
8d3788bd VP |
13047 | /* Returns 1 iff locations A and B are sufficiently same that |
13048 | we don't need to report breakpoint as changed. */ | |
13049 | ||
13050 | static int | |
13051 | locations_are_equal (struct bp_location *a, struct bp_location *b) | |
13052 | { | |
13053 | while (a && b) | |
13054 | { | |
13055 | if (a->address != b->address) | |
13056 | return 0; | |
13057 | ||
13058 | if (a->shlib_disabled != b->shlib_disabled) | |
13059 | return 0; | |
13060 | ||
13061 | if (a->enabled != b->enabled) | |
13062 | return 0; | |
13063 | ||
13064 | a = a->next; | |
13065 | b = b->next; | |
13066 | } | |
13067 | ||
13068 | if ((a == NULL) != (b == NULL)) | |
13069 | return 0; | |
13070 | ||
13071 | return 1; | |
13072 | } | |
13073 | ||
f1310107 TJB |
13074 | /* Create new breakpoint locations for B (a hardware or software breakpoint) |
13075 | based on SALS and SALS_END. If SALS_END.NELTS is not zero, then B is | |
13076 | a ranged breakpoint. */ | |
13077 | ||
0e30163f | 13078 | void |
0d381245 | 13079 | update_breakpoint_locations (struct breakpoint *b, |
f1310107 TJB |
13080 | struct symtabs_and_lines sals, |
13081 | struct symtabs_and_lines sals_end) | |
fe3f5fa8 VP |
13082 | { |
13083 | int i; | |
0d381245 VP |
13084 | struct bp_location *existing_locations = b->loc; |
13085 | ||
f8eba3c6 TT |
13086 | if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1)) |
13087 | { | |
13088 | /* Ranged breakpoints have only one start location and one end | |
13089 | location. */ | |
13090 | b->enable_state = bp_disabled; | |
13091 | update_global_location_list (1); | |
13092 | printf_unfiltered (_("Could not reset ranged breakpoint %d: " | |
13093 | "multiple locations found\n"), | |
13094 | b->number); | |
13095 | return; | |
13096 | } | |
f1310107 | 13097 | |
4a64f543 MS |
13098 | /* If there's no new locations, and all existing locations are |
13099 | pending, don't do anything. This optimizes the common case where | |
13100 | all locations are in the same shared library, that was unloaded. | |
13101 | We'd like to retain the location, so that when the library is | |
13102 | loaded again, we don't loose the enabled/disabled status of the | |
13103 | individual locations. */ | |
0d381245 | 13104 | if (all_locations_are_pending (existing_locations) && sals.nelts == 0) |
fe3f5fa8 VP |
13105 | return; |
13106 | ||
fe3f5fa8 VP |
13107 | b->loc = NULL; |
13108 | ||
0d381245 | 13109 | for (i = 0; i < sals.nelts; ++i) |
fe3f5fa8 | 13110 | { |
f8eba3c6 TT |
13111 | struct bp_location *new_loc; |
13112 | ||
13113 | switch_to_program_space_and_thread (sals.sals[i].pspace); | |
13114 | ||
13115 | new_loc = add_location_to_breakpoint (b, &(sals.sals[i])); | |
fe3f5fa8 | 13116 | |
0d381245 VP |
13117 | /* Reparse conditions, they might contain references to the |
13118 | old symtab. */ | |
13119 | if (b->cond_string != NULL) | |
13120 | { | |
f1310107 | 13121 | char *s; |
bfd189b1 | 13122 | volatile struct gdb_exception e; |
fe3f5fa8 | 13123 | |
0d381245 VP |
13124 | s = b->cond_string; |
13125 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
13126 | { | |
13127 | new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), | |
13128 | 0); | |
13129 | } | |
13130 | if (e.reason < 0) | |
13131 | { | |
3e43a32a MS |
13132 | warning (_("failed to reevaluate condition " |
13133 | "for breakpoint %d: %s"), | |
0d381245 VP |
13134 | b->number, e.message); |
13135 | new_loc->enabled = 0; | |
13136 | } | |
13137 | } | |
fe3f5fa8 | 13138 | |
f1310107 TJB |
13139 | if (sals_end.nelts) |
13140 | { | |
13141 | CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]); | |
13142 | ||
13143 | new_loc->length = end - sals.sals[0].pc + 1; | |
13144 | } | |
0d381245 | 13145 | } |
fe3f5fa8 | 13146 | |
514f746b AR |
13147 | /* Update locations of permanent breakpoints. */ |
13148 | if (b->enable_state == bp_permanent) | |
13149 | make_breakpoint_permanent (b); | |
13150 | ||
4a64f543 MS |
13151 | /* If possible, carry over 'disable' status from existing |
13152 | breakpoints. */ | |
0d381245 VP |
13153 | { |
13154 | struct bp_location *e = existing_locations; | |
776592bf DE |
13155 | /* If there are multiple breakpoints with the same function name, |
13156 | e.g. for inline functions, comparing function names won't work. | |
13157 | Instead compare pc addresses; this is just a heuristic as things | |
13158 | may have moved, but in practice it gives the correct answer | |
13159 | often enough until a better solution is found. */ | |
13160 | int have_ambiguous_names = ambiguous_names_p (b->loc); | |
13161 | ||
0d381245 VP |
13162 | for (; e; e = e->next) |
13163 | { | |
13164 | if (!e->enabled && e->function_name) | |
13165 | { | |
13166 | struct bp_location *l = b->loc; | |
776592bf DE |
13167 | if (have_ambiguous_names) |
13168 | { | |
13169 | for (; l; l = l->next) | |
f1310107 | 13170 | if (breakpoint_locations_match (e, l)) |
776592bf DE |
13171 | { |
13172 | l->enabled = 0; | |
13173 | break; | |
13174 | } | |
13175 | } | |
13176 | else | |
13177 | { | |
13178 | for (; l; l = l->next) | |
13179 | if (l->function_name | |
13180 | && strcmp (e->function_name, l->function_name) == 0) | |
13181 | { | |
13182 | l->enabled = 0; | |
13183 | break; | |
13184 | } | |
13185 | } | |
0d381245 VP |
13186 | } |
13187 | } | |
13188 | } | |
fe3f5fa8 | 13189 | |
8d3788bd VP |
13190 | if (!locations_are_equal (existing_locations, b->loc)) |
13191 | observer_notify_breakpoint_modified (b); | |
13192 | ||
b60e7edf | 13193 | update_global_location_list (1); |
fe3f5fa8 VP |
13194 | } |
13195 | ||
ef23e705 TJB |
13196 | /* Find the SaL locations corresponding to the given ADDR_STRING. |
13197 | On return, FOUND will be 1 if any SaL was found, zero otherwise. */ | |
13198 | ||
13199 | static struct symtabs_and_lines | |
13200 | addr_string_to_sals (struct breakpoint *b, char *addr_string, int *found) | |
13201 | { | |
13202 | char *s; | |
02d20e4a | 13203 | struct symtabs_and_lines sals = {0}; |
f8eba3c6 | 13204 | volatile struct gdb_exception e; |
ef23e705 | 13205 | |
983af33b | 13206 | gdb_assert (b->ops != NULL); |
ef23e705 | 13207 | s = addr_string; |
ef23e705 TJB |
13208 | |
13209 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
13210 | { | |
983af33b | 13211 | b->ops->decode_linespec (b, &s, &sals); |
ef23e705 TJB |
13212 | } |
13213 | if (e.reason < 0) | |
13214 | { | |
13215 | int not_found_and_ok = 0; | |
13216 | /* For pending breakpoints, it's expected that parsing will | |
13217 | fail until the right shared library is loaded. User has | |
13218 | already told to create pending breakpoints and don't need | |
13219 | extra messages. If breakpoint is in bp_shlib_disabled | |
13220 | state, then user already saw the message about that | |
13221 | breakpoint being disabled, and don't want to see more | |
13222 | errors. */ | |
58438ac1 | 13223 | if (e.error == NOT_FOUND_ERROR |
ef23e705 TJB |
13224 | && (b->condition_not_parsed |
13225 | || (b->loc && b->loc->shlib_disabled) | |
f8eba3c6 | 13226 | || (b->loc && b->loc->pspace->executing_startup) |
ef23e705 TJB |
13227 | || b->enable_state == bp_disabled)) |
13228 | not_found_and_ok = 1; | |
13229 | ||
13230 | if (!not_found_and_ok) | |
13231 | { | |
13232 | /* We surely don't want to warn about the same breakpoint | |
13233 | 10 times. One solution, implemented here, is disable | |
13234 | the breakpoint on error. Another solution would be to | |
13235 | have separate 'warning emitted' flag. Since this | |
13236 | happens only when a binary has changed, I don't know | |
13237 | which approach is better. */ | |
13238 | b->enable_state = bp_disabled; | |
13239 | throw_exception (e); | |
13240 | } | |
13241 | } | |
13242 | ||
58438ac1 | 13243 | if (e.reason == 0 || e.error != NOT_FOUND_ERROR) |
ef23e705 | 13244 | { |
f8eba3c6 | 13245 | int i; |
ef23e705 | 13246 | |
f8eba3c6 TT |
13247 | for (i = 0; i < sals.nelts; ++i) |
13248 | resolve_sal_pc (&sals.sals[i]); | |
ef23e705 TJB |
13249 | if (b->condition_not_parsed && s && s[0]) |
13250 | { | |
13251 | char *cond_string = 0; | |
13252 | int thread = -1; | |
13253 | int task = 0; | |
13254 | ||
13255 | find_condition_and_thread (s, sals.sals[0].pc, | |
13256 | &cond_string, &thread, &task); | |
13257 | if (cond_string) | |
13258 | b->cond_string = cond_string; | |
13259 | b->thread = thread; | |
13260 | b->task = task; | |
13261 | b->condition_not_parsed = 0; | |
13262 | } | |
13263 | ||
983af33b | 13264 | if (b->type == bp_static_tracepoint && !strace_marker_p (b)) |
ef23e705 | 13265 | sals.sals[0] = update_static_tracepoint (b, sals.sals[0]); |
ef23e705 | 13266 | |
58438ac1 TT |
13267 | *found = 1; |
13268 | } | |
13269 | else | |
13270 | *found = 0; | |
ef23e705 TJB |
13271 | |
13272 | return sals; | |
13273 | } | |
13274 | ||
348d480f PA |
13275 | /* The default re_set method, for typical hardware or software |
13276 | breakpoints. Reevaluate the breakpoint and recreate its | |
13277 | locations. */ | |
13278 | ||
13279 | static void | |
28010a5d | 13280 | breakpoint_re_set_default (struct breakpoint *b) |
ef23e705 TJB |
13281 | { |
13282 | int found; | |
f1310107 | 13283 | struct symtabs_and_lines sals, sals_end; |
ef23e705 | 13284 | struct symtabs_and_lines expanded = {0}; |
f1310107 | 13285 | struct symtabs_and_lines expanded_end = {0}; |
ef23e705 TJB |
13286 | |
13287 | sals = addr_string_to_sals (b, b->addr_string, &found); | |
13288 | if (found) | |
13289 | { | |
13290 | make_cleanup (xfree, sals.sals); | |
f8eba3c6 | 13291 | expanded = sals; |
ef23e705 TJB |
13292 | } |
13293 | ||
f1310107 TJB |
13294 | if (b->addr_string_range_end) |
13295 | { | |
13296 | sals_end = addr_string_to_sals (b, b->addr_string_range_end, &found); | |
13297 | if (found) | |
13298 | { | |
13299 | make_cleanup (xfree, sals_end.sals); | |
f8eba3c6 | 13300 | expanded_end = sals_end; |
f1310107 TJB |
13301 | } |
13302 | } | |
13303 | ||
13304 | update_breakpoint_locations (b, expanded, expanded_end); | |
28010a5d PA |
13305 | } |
13306 | ||
983af33b SDJ |
13307 | /* Default method for creating SALs from an address string. It basically |
13308 | calls parse_breakpoint_sals. Return 1 for success, zero for failure. */ | |
13309 | ||
13310 | static void | |
13311 | create_sals_from_address_default (char **arg, | |
13312 | struct linespec_result *canonical, | |
13313 | enum bptype type_wanted, | |
13314 | char *addr_start, char **copy_arg) | |
13315 | { | |
13316 | parse_breakpoint_sals (arg, canonical); | |
13317 | } | |
13318 | ||
13319 | /* Call create_breakpoints_sal for the given arguments. This is the default | |
13320 | function for the `create_breakpoints_sal' method of | |
13321 | breakpoint_ops. */ | |
13322 | ||
13323 | static void | |
13324 | create_breakpoints_sal_default (struct gdbarch *gdbarch, | |
13325 | struct linespec_result *canonical, | |
13326 | struct linespec_sals *lsal, | |
13327 | char *cond_string, | |
13328 | enum bptype type_wanted, | |
13329 | enum bpdisp disposition, | |
13330 | int thread, | |
13331 | int task, int ignore_count, | |
13332 | const struct breakpoint_ops *ops, | |
13333 | int from_tty, int enabled, | |
44f238bb | 13334 | int internal, unsigned flags) |
983af33b SDJ |
13335 | { |
13336 | create_breakpoints_sal (gdbarch, canonical, cond_string, | |
13337 | type_wanted, disposition, | |
13338 | thread, task, ignore_count, ops, from_tty, | |
44f238bb | 13339 | enabled, internal, flags); |
983af33b SDJ |
13340 | } |
13341 | ||
13342 | /* Decode the line represented by S by calling decode_line_full. This is the | |
13343 | default function for the `decode_linespec' method of breakpoint_ops. */ | |
13344 | ||
13345 | static void | |
13346 | decode_linespec_default (struct breakpoint *b, char **s, | |
13347 | struct symtabs_and_lines *sals) | |
13348 | { | |
13349 | struct linespec_result canonical; | |
13350 | ||
13351 | init_linespec_result (&canonical); | |
13352 | decode_line_full (s, DECODE_LINE_FUNFIRSTLINE, | |
13353 | (struct symtab *) NULL, 0, | |
13354 | &canonical, multiple_symbols_all, | |
13355 | b->filter); | |
13356 | ||
13357 | /* We should get 0 or 1 resulting SALs. */ | |
13358 | gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2); | |
13359 | ||
13360 | if (VEC_length (linespec_sals, canonical.sals) > 0) | |
13361 | { | |
13362 | struct linespec_sals *lsal; | |
13363 | ||
13364 | lsal = VEC_index (linespec_sals, canonical.sals, 0); | |
13365 | *sals = lsal->sals; | |
13366 | /* Arrange it so the destructor does not free the | |
13367 | contents. */ | |
13368 | lsal->sals.sals = NULL; | |
13369 | } | |
13370 | ||
13371 | destroy_linespec_result (&canonical); | |
13372 | } | |
13373 | ||
28010a5d PA |
13374 | /* Prepare the global context for a re-set of breakpoint B. */ |
13375 | ||
13376 | static struct cleanup * | |
13377 | prepare_re_set_context (struct breakpoint *b) | |
13378 | { | |
13379 | struct cleanup *cleanups; | |
13380 | ||
13381 | input_radix = b->input_radix; | |
13382 | cleanups = save_current_space_and_thread (); | |
f8eba3c6 TT |
13383 | if (b->pspace != NULL) |
13384 | switch_to_program_space_and_thread (b->pspace); | |
28010a5d PA |
13385 | set_language (b->language); |
13386 | ||
13387 | return cleanups; | |
ef23e705 TJB |
13388 | } |
13389 | ||
c906108c SS |
13390 | /* Reset a breakpoint given it's struct breakpoint * BINT. |
13391 | The value we return ends up being the return value from catch_errors. | |
13392 | Unused in this case. */ | |
13393 | ||
13394 | static int | |
4efb68b1 | 13395 | breakpoint_re_set_one (void *bint) |
c906108c | 13396 | { |
4a64f543 | 13397 | /* Get past catch_errs. */ |
53a5351d | 13398 | struct breakpoint *b = (struct breakpoint *) bint; |
348d480f | 13399 | struct cleanup *cleanups; |
c906108c | 13400 | |
348d480f PA |
13401 | cleanups = prepare_re_set_context (b); |
13402 | b->ops->re_set (b); | |
13403 | do_cleanups (cleanups); | |
c906108c SS |
13404 | return 0; |
13405 | } | |
13406 | ||
69de3c6a | 13407 | /* Re-set all breakpoints after symbols have been re-loaded. */ |
c906108c | 13408 | void |
69de3c6a | 13409 | breakpoint_re_set (void) |
c906108c | 13410 | { |
35df4500 | 13411 | struct breakpoint *b, *b_tmp; |
c906108c SS |
13412 | enum language save_language; |
13413 | int save_input_radix; | |
6c95b8df | 13414 | struct cleanup *old_chain; |
c5aa993b | 13415 | |
c906108c SS |
13416 | save_language = current_language->la_language; |
13417 | save_input_radix = input_radix; | |
6c95b8df PA |
13418 | old_chain = save_current_program_space (); |
13419 | ||
35df4500 | 13420 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
c5aa993b | 13421 | { |
4a64f543 | 13422 | /* Format possible error msg. */ |
fe3f5fa8 | 13423 | char *message = xstrprintf ("Error in re-setting breakpoint %d: ", |
9ebf4acf AC |
13424 | b->number); |
13425 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
c5aa993b | 13426 | catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL); |
9ebf4acf | 13427 | do_cleanups (cleanups); |
c5aa993b | 13428 | } |
c906108c SS |
13429 | set_language (save_language); |
13430 | input_radix = save_input_radix; | |
e62c965a | 13431 | |
0756c555 | 13432 | jit_breakpoint_re_set (); |
4efc6507 | 13433 | |
6c95b8df PA |
13434 | do_cleanups (old_chain); |
13435 | ||
af02033e PP |
13436 | create_overlay_event_breakpoint (); |
13437 | create_longjmp_master_breakpoint (); | |
13438 | create_std_terminate_master_breakpoint (); | |
186c406b | 13439 | create_exception_master_breakpoint (); |
1bfeeb0f JL |
13440 | |
13441 | /* While we're at it, reset the skip list too. */ | |
13442 | skip_re_set (); | |
c906108c SS |
13443 | } |
13444 | \f | |
c906108c SS |
13445 | /* Reset the thread number of this breakpoint: |
13446 | ||
13447 | - If the breakpoint is for all threads, leave it as-is. | |
4a64f543 | 13448 | - Else, reset it to the current thread for inferior_ptid. */ |
c906108c | 13449 | void |
fba45db2 | 13450 | breakpoint_re_set_thread (struct breakpoint *b) |
c906108c SS |
13451 | { |
13452 | if (b->thread != -1) | |
13453 | { | |
39f77062 KB |
13454 | if (in_thread_list (inferior_ptid)) |
13455 | b->thread = pid_to_thread_id (inferior_ptid); | |
6c95b8df PA |
13456 | |
13457 | /* We're being called after following a fork. The new fork is | |
13458 | selected as current, and unless this was a vfork will have a | |
13459 | different program space from the original thread. Reset that | |
13460 | as well. */ | |
13461 | b->loc->pspace = current_program_space; | |
c906108c SS |
13462 | } |
13463 | } | |
13464 | ||
03ac34d5 MS |
13465 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
13466 | If from_tty is nonzero, it prints a message to that effect, | |
13467 | which ends with a period (no newline). */ | |
13468 | ||
c906108c | 13469 | void |
fba45db2 | 13470 | set_ignore_count (int bptnum, int count, int from_tty) |
c906108c | 13471 | { |
52f0bd74 | 13472 | struct breakpoint *b; |
c906108c SS |
13473 | |
13474 | if (count < 0) | |
13475 | count = 0; | |
13476 | ||
13477 | ALL_BREAKPOINTS (b) | |
13478 | if (b->number == bptnum) | |
c5aa993b | 13479 | { |
d77f58be SS |
13480 | if (is_tracepoint (b)) |
13481 | { | |
13482 | if (from_tty && count != 0) | |
13483 | printf_filtered (_("Ignore count ignored for tracepoint %d."), | |
13484 | bptnum); | |
13485 | return; | |
13486 | } | |
13487 | ||
c5aa993b | 13488 | b->ignore_count = count; |
221ea385 KS |
13489 | if (from_tty) |
13490 | { | |
13491 | if (count == 0) | |
3e43a32a MS |
13492 | printf_filtered (_("Will stop next time " |
13493 | "breakpoint %d is reached."), | |
221ea385 KS |
13494 | bptnum); |
13495 | else if (count == 1) | |
a3f17187 | 13496 | printf_filtered (_("Will ignore next crossing of breakpoint %d."), |
221ea385 KS |
13497 | bptnum); |
13498 | else | |
3e43a32a MS |
13499 | printf_filtered (_("Will ignore next %d " |
13500 | "crossings of breakpoint %d."), | |
221ea385 KS |
13501 | count, bptnum); |
13502 | } | |
c5aa993b | 13503 | breakpoints_changed (); |
8d3788bd | 13504 | observer_notify_breakpoint_modified (b); |
c5aa993b JM |
13505 | return; |
13506 | } | |
c906108c | 13507 | |
8a3fe4f8 | 13508 | error (_("No breakpoint number %d."), bptnum); |
c906108c SS |
13509 | } |
13510 | ||
c906108c SS |
13511 | /* Command to set ignore-count of breakpoint N to COUNT. */ |
13512 | ||
13513 | static void | |
fba45db2 | 13514 | ignore_command (char *args, int from_tty) |
c906108c SS |
13515 | { |
13516 | char *p = args; | |
52f0bd74 | 13517 | int num; |
c906108c SS |
13518 | |
13519 | if (p == 0) | |
e2e0b3e5 | 13520 | error_no_arg (_("a breakpoint number")); |
c5aa993b | 13521 | |
c906108c | 13522 | num = get_number (&p); |
5c44784c | 13523 | if (num == 0) |
8a3fe4f8 | 13524 | error (_("bad breakpoint number: '%s'"), args); |
c906108c | 13525 | if (*p == 0) |
8a3fe4f8 | 13526 | error (_("Second argument (specified ignore-count) is missing.")); |
c906108c SS |
13527 | |
13528 | set_ignore_count (num, | |
13529 | longest_to_int (value_as_long (parse_and_eval (p))), | |
13530 | from_tty); | |
221ea385 KS |
13531 | if (from_tty) |
13532 | printf_filtered ("\n"); | |
c906108c SS |
13533 | } |
13534 | \f | |
13535 | /* Call FUNCTION on each of the breakpoints | |
13536 | whose numbers are given in ARGS. */ | |
13537 | ||
13538 | static void | |
95a42b64 TT |
13539 | map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *, |
13540 | void *), | |
13541 | void *data) | |
c906108c | 13542 | { |
52f0bd74 AC |
13543 | int num; |
13544 | struct breakpoint *b, *tmp; | |
11cf8741 | 13545 | int match; |
197f0a60 | 13546 | struct get_number_or_range_state state; |
c906108c | 13547 | |
197f0a60 | 13548 | if (args == 0) |
e2e0b3e5 | 13549 | error_no_arg (_("one or more breakpoint numbers")); |
c906108c | 13550 | |
197f0a60 TT |
13551 | init_number_or_range (&state, args); |
13552 | ||
13553 | while (!state.finished) | |
c906108c | 13554 | { |
197f0a60 TT |
13555 | char *p = state.string; |
13556 | ||
11cf8741 | 13557 | match = 0; |
c5aa993b | 13558 | |
197f0a60 | 13559 | num = get_number_or_range (&state); |
5c44784c | 13560 | if (num == 0) |
c5aa993b | 13561 | { |
8a3fe4f8 | 13562 | warning (_("bad breakpoint number at or near '%s'"), p); |
5c44784c JM |
13563 | } |
13564 | else | |
13565 | { | |
13566 | ALL_BREAKPOINTS_SAFE (b, tmp) | |
13567 | if (b->number == num) | |
13568 | { | |
11cf8741 | 13569 | match = 1; |
cdac0397 | 13570 | function (b, data); |
11cf8741 | 13571 | break; |
5c44784c | 13572 | } |
11cf8741 | 13573 | if (match == 0) |
a3f17187 | 13574 | printf_unfiltered (_("No breakpoint number %d.\n"), num); |
c5aa993b | 13575 | } |
c906108c SS |
13576 | } |
13577 | } | |
13578 | ||
0d381245 VP |
13579 | static struct bp_location * |
13580 | find_location_by_number (char *number) | |
13581 | { | |
13582 | char *dot = strchr (number, '.'); | |
13583 | char *p1; | |
13584 | int bp_num; | |
13585 | int loc_num; | |
13586 | struct breakpoint *b; | |
13587 | struct bp_location *loc; | |
13588 | ||
13589 | *dot = '\0'; | |
13590 | ||
13591 | p1 = number; | |
197f0a60 | 13592 | bp_num = get_number (&p1); |
0d381245 VP |
13593 | if (bp_num == 0) |
13594 | error (_("Bad breakpoint number '%s'"), number); | |
13595 | ||
13596 | ALL_BREAKPOINTS (b) | |
13597 | if (b->number == bp_num) | |
13598 | { | |
13599 | break; | |
13600 | } | |
13601 | ||
13602 | if (!b || b->number != bp_num) | |
13603 | error (_("Bad breakpoint number '%s'"), number); | |
13604 | ||
13605 | p1 = dot+1; | |
197f0a60 | 13606 | loc_num = get_number (&p1); |
0d381245 VP |
13607 | if (loc_num == 0) |
13608 | error (_("Bad breakpoint location number '%s'"), number); | |
13609 | ||
13610 | --loc_num; | |
13611 | loc = b->loc; | |
13612 | for (;loc_num && loc; --loc_num, loc = loc->next) | |
13613 | ; | |
13614 | if (!loc) | |
13615 | error (_("Bad breakpoint location number '%s'"), dot+1); | |
13616 | ||
13617 | return loc; | |
13618 | } | |
13619 | ||
13620 | ||
1900040c MS |
13621 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
13622 | If from_tty is nonzero, it prints a message to that effect, | |
13623 | which ends with a period (no newline). */ | |
13624 | ||
c906108c | 13625 | void |
fba45db2 | 13626 | disable_breakpoint (struct breakpoint *bpt) |
c906108c SS |
13627 | { |
13628 | /* Never disable a watchpoint scope breakpoint; we want to | |
13629 | hit them when we leave scope so we can delete both the | |
13630 | watchpoint and its scope breakpoint at that time. */ | |
13631 | if (bpt->type == bp_watchpoint_scope) | |
13632 | return; | |
13633 | ||
c2c6d25f | 13634 | /* You can't disable permanent breakpoints. */ |
b5de0fa7 | 13635 | if (bpt->enable_state == bp_permanent) |
c2c6d25f JM |
13636 | return; |
13637 | ||
b5de0fa7 | 13638 | bpt->enable_state = bp_disabled; |
c906108c | 13639 | |
b775012e LM |
13640 | /* Mark breakpoint locations modified. */ |
13641 | mark_breakpoint_modified (bpt); | |
13642 | ||
d248b706 KY |
13643 | if (target_supports_enable_disable_tracepoint () |
13644 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
13645 | { | |
13646 | struct bp_location *location; | |
13647 | ||
13648 | for (location = bpt->loc; location; location = location->next) | |
13649 | target_disable_tracepoint (location); | |
13650 | } | |
13651 | ||
b60e7edf | 13652 | update_global_location_list (0); |
c906108c | 13653 | |
8d3788bd | 13654 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
13655 | } |
13656 | ||
51be5b68 PA |
13657 | /* A callback for iterate_over_related_breakpoints. */ |
13658 | ||
13659 | static void | |
13660 | do_disable_breakpoint (struct breakpoint *b, void *ignore) | |
13661 | { | |
13662 | disable_breakpoint (b); | |
13663 | } | |
13664 | ||
95a42b64 TT |
13665 | /* A callback for map_breakpoint_numbers that calls |
13666 | disable_breakpoint. */ | |
13667 | ||
13668 | static void | |
13669 | do_map_disable_breakpoint (struct breakpoint *b, void *ignore) | |
13670 | { | |
51be5b68 | 13671 | iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL); |
95a42b64 TT |
13672 | } |
13673 | ||
c906108c | 13674 | static void |
fba45db2 | 13675 | disable_command (char *args, int from_tty) |
c906108c | 13676 | { |
c906108c | 13677 | if (args == 0) |
46c6471b PA |
13678 | { |
13679 | struct breakpoint *bpt; | |
13680 | ||
13681 | ALL_BREAKPOINTS (bpt) | |
13682 | if (user_breakpoint_p (bpt)) | |
13683 | disable_breakpoint (bpt); | |
13684 | } | |
0d381245 VP |
13685 | else if (strchr (args, '.')) |
13686 | { | |
13687 | struct bp_location *loc = find_location_by_number (args); | |
13688 | if (loc) | |
d248b706 | 13689 | { |
b775012e LM |
13690 | if (loc->enabled) |
13691 | { | |
13692 | loc->enabled = 0; | |
13693 | mark_breakpoint_location_modified (loc); | |
13694 | } | |
d248b706 KY |
13695 | if (target_supports_enable_disable_tracepoint () |
13696 | && current_trace_status ()->running && loc->owner | |
13697 | && is_tracepoint (loc->owner)) | |
13698 | target_disable_tracepoint (loc); | |
13699 | } | |
b60e7edf | 13700 | update_global_location_list (0); |
0d381245 | 13701 | } |
c906108c | 13702 | else |
95a42b64 | 13703 | map_breakpoint_numbers (args, do_map_disable_breakpoint, NULL); |
c906108c SS |
13704 | } |
13705 | ||
13706 | static void | |
816338b5 SS |
13707 | enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition, |
13708 | int count) | |
c906108c | 13709 | { |
afe38095 | 13710 | int target_resources_ok; |
c906108c SS |
13711 | |
13712 | if (bpt->type == bp_hardware_breakpoint) | |
13713 | { | |
13714 | int i; | |
c5aa993b | 13715 | i = hw_breakpoint_used_count (); |
53a5351d | 13716 | target_resources_ok = |
d92524f1 | 13717 | target_can_use_hardware_watchpoint (bp_hardware_breakpoint, |
53a5351d | 13718 | i + 1, 0); |
c906108c | 13719 | if (target_resources_ok == 0) |
8a3fe4f8 | 13720 | error (_("No hardware breakpoint support in the target.")); |
c906108c | 13721 | else if (target_resources_ok < 0) |
8a3fe4f8 | 13722 | error (_("Hardware breakpoints used exceeds limit.")); |
c906108c SS |
13723 | } |
13724 | ||
cc60f2e3 | 13725 | if (is_watchpoint (bpt)) |
c906108c | 13726 | { |
d07205c2 JK |
13727 | /* Initialize it just to avoid a GCC false warning. */ |
13728 | enum enable_state orig_enable_state = 0; | |
bfd189b1 | 13729 | volatile struct gdb_exception e; |
dde02812 ES |
13730 | |
13731 | TRY_CATCH (e, RETURN_MASK_ALL) | |
c906108c | 13732 | { |
3a5c3e22 PA |
13733 | struct watchpoint *w = (struct watchpoint *) bpt; |
13734 | ||
1e718ff1 TJB |
13735 | orig_enable_state = bpt->enable_state; |
13736 | bpt->enable_state = bp_enabled; | |
3a5c3e22 | 13737 | update_watchpoint (w, 1 /* reparse */); |
c906108c | 13738 | } |
dde02812 | 13739 | if (e.reason < 0) |
c5aa993b | 13740 | { |
1e718ff1 | 13741 | bpt->enable_state = orig_enable_state; |
dde02812 ES |
13742 | exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "), |
13743 | bpt->number); | |
13744 | return; | |
c5aa993b | 13745 | } |
c906108c | 13746 | } |
0101ce28 | 13747 | |
b4c291bb KH |
13748 | if (bpt->enable_state != bp_permanent) |
13749 | bpt->enable_state = bp_enabled; | |
d248b706 | 13750 | |
b775012e LM |
13751 | bpt->enable_state = bp_enabled; |
13752 | ||
13753 | /* Mark breakpoint locations modified. */ | |
13754 | mark_breakpoint_modified (bpt); | |
13755 | ||
d248b706 KY |
13756 | if (target_supports_enable_disable_tracepoint () |
13757 | && current_trace_status ()->running && is_tracepoint (bpt)) | |
13758 | { | |
13759 | struct bp_location *location; | |
13760 | ||
13761 | for (location = bpt->loc; location; location = location->next) | |
13762 | target_enable_tracepoint (location); | |
13763 | } | |
13764 | ||
b4c291bb | 13765 | bpt->disposition = disposition; |
816338b5 | 13766 | bpt->enable_count = count; |
b60e7edf | 13767 | update_global_location_list (1); |
b4c291bb KH |
13768 | breakpoints_changed (); |
13769 | ||
8d3788bd | 13770 | observer_notify_breakpoint_modified (bpt); |
c906108c SS |
13771 | } |
13772 | ||
fe3f5fa8 | 13773 | |
c906108c | 13774 | void |
fba45db2 | 13775 | enable_breakpoint (struct breakpoint *bpt) |
c906108c | 13776 | { |
816338b5 | 13777 | enable_breakpoint_disp (bpt, bpt->disposition, 0); |
51be5b68 PA |
13778 | } |
13779 | ||
13780 | static void | |
13781 | do_enable_breakpoint (struct breakpoint *bpt, void *arg) | |
13782 | { | |
13783 | enable_breakpoint (bpt); | |
c906108c SS |
13784 | } |
13785 | ||
95a42b64 TT |
13786 | /* A callback for map_breakpoint_numbers that calls |
13787 | enable_breakpoint. */ | |
13788 | ||
13789 | static void | |
13790 | do_map_enable_breakpoint (struct breakpoint *b, void *ignore) | |
13791 | { | |
51be5b68 | 13792 | iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL); |
95a42b64 TT |
13793 | } |
13794 | ||
c906108c SS |
13795 | /* The enable command enables the specified breakpoints (or all defined |
13796 | breakpoints) so they once again become (or continue to be) effective | |
1272ad14 | 13797 | in stopping the inferior. */ |
c906108c | 13798 | |
c906108c | 13799 | static void |
fba45db2 | 13800 | enable_command (char *args, int from_tty) |
c906108c | 13801 | { |
c906108c | 13802 | if (args == 0) |
46c6471b PA |
13803 | { |
13804 | struct breakpoint *bpt; | |
13805 | ||
13806 | ALL_BREAKPOINTS (bpt) | |
13807 | if (user_breakpoint_p (bpt)) | |
13808 | enable_breakpoint (bpt); | |
13809 | } | |
0d381245 VP |
13810 | else if (strchr (args, '.')) |
13811 | { | |
13812 | struct bp_location *loc = find_location_by_number (args); | |
13813 | if (loc) | |
d248b706 | 13814 | { |
b775012e LM |
13815 | if (!loc->enabled) |
13816 | { | |
13817 | loc->enabled = 1; | |
13818 | mark_breakpoint_location_modified (loc); | |
13819 | } | |
d248b706 KY |
13820 | if (target_supports_enable_disable_tracepoint () |
13821 | && current_trace_status ()->running && loc->owner | |
13822 | && is_tracepoint (loc->owner)) | |
13823 | target_enable_tracepoint (loc); | |
13824 | } | |
b60e7edf | 13825 | update_global_location_list (1); |
0d381245 | 13826 | } |
c906108c | 13827 | else |
95a42b64 | 13828 | map_breakpoint_numbers (args, do_map_enable_breakpoint, NULL); |
c906108c SS |
13829 | } |
13830 | ||
816338b5 SS |
13831 | /* This struct packages up disposition data for application to multiple |
13832 | breakpoints. */ | |
13833 | ||
13834 | struct disp_data | |
13835 | { | |
13836 | enum bpdisp disp; | |
13837 | int count; | |
13838 | }; | |
13839 | ||
c906108c | 13840 | static void |
51be5b68 PA |
13841 | do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg) |
13842 | { | |
816338b5 | 13843 | struct disp_data disp_data = *(struct disp_data *) arg; |
51be5b68 | 13844 | |
816338b5 | 13845 | enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count); |
51be5b68 PA |
13846 | } |
13847 | ||
13848 | static void | |
13849 | do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore) | |
c906108c | 13850 | { |
816338b5 | 13851 | struct disp_data disp = { disp_disable, 1 }; |
51be5b68 PA |
13852 | |
13853 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
13854 | } |
13855 | ||
c906108c | 13856 | static void |
fba45db2 | 13857 | enable_once_command (char *args, int from_tty) |
c906108c | 13858 | { |
51be5b68 | 13859 | map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL); |
c906108c SS |
13860 | } |
13861 | ||
816338b5 SS |
13862 | static void |
13863 | do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr) | |
13864 | { | |
13865 | struct disp_data disp = { disp_disable, *(int *) countptr }; | |
13866 | ||
13867 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
13868 | } | |
13869 | ||
13870 | static void | |
13871 | enable_count_command (char *args, int from_tty) | |
13872 | { | |
13873 | int count = get_number (&args); | |
13874 | ||
13875 | map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count); | |
13876 | } | |
13877 | ||
c906108c | 13878 | static void |
51be5b68 | 13879 | do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore) |
c906108c | 13880 | { |
816338b5 | 13881 | struct disp_data disp = { disp_del, 1 }; |
51be5b68 PA |
13882 | |
13883 | iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp); | |
c906108c SS |
13884 | } |
13885 | ||
c906108c | 13886 | static void |
fba45db2 | 13887 | enable_delete_command (char *args, int from_tty) |
c906108c | 13888 | { |
51be5b68 | 13889 | map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL); |
c906108c SS |
13890 | } |
13891 | \f | |
fa8d40ab JJ |
13892 | static void |
13893 | set_breakpoint_cmd (char *args, int from_tty) | |
13894 | { | |
13895 | } | |
13896 | ||
13897 | static void | |
13898 | show_breakpoint_cmd (char *args, int from_tty) | |
13899 | { | |
13900 | } | |
13901 | ||
1f3b5d1b PP |
13902 | /* Invalidate last known value of any hardware watchpoint if |
13903 | the memory which that value represents has been written to by | |
13904 | GDB itself. */ | |
13905 | ||
13906 | static void | |
13907 | invalidate_bp_value_on_memory_change (CORE_ADDR addr, int len, | |
13908 | const bfd_byte *data) | |
13909 | { | |
13910 | struct breakpoint *bp; | |
13911 | ||
13912 | ALL_BREAKPOINTS (bp) | |
13913 | if (bp->enable_state == bp_enabled | |
3a5c3e22 | 13914 | && bp->type == bp_hardware_watchpoint) |
1f3b5d1b | 13915 | { |
3a5c3e22 | 13916 | struct watchpoint *wp = (struct watchpoint *) bp; |
1f3b5d1b | 13917 | |
3a5c3e22 PA |
13918 | if (wp->val_valid && wp->val) |
13919 | { | |
13920 | struct bp_location *loc; | |
13921 | ||
13922 | for (loc = bp->loc; loc != NULL; loc = loc->next) | |
13923 | if (loc->loc_type == bp_loc_hardware_watchpoint | |
13924 | && loc->address + loc->length > addr | |
13925 | && addr + len > loc->address) | |
13926 | { | |
13927 | value_free (wp->val); | |
13928 | wp->val = NULL; | |
13929 | wp->val_valid = 0; | |
13930 | } | |
13931 | } | |
1f3b5d1b PP |
13932 | } |
13933 | } | |
13934 | ||
1bfeeb0f JL |
13935 | /* Use the last displayed codepoint's values, or nothing |
13936 | if they aren't valid. */ | |
c906108c SS |
13937 | |
13938 | struct symtabs_and_lines | |
f8eba3c6 | 13939 | decode_line_spec_1 (char *string, int flags) |
c906108c SS |
13940 | { |
13941 | struct symtabs_and_lines sals; | |
cc59ec59 | 13942 | |
c906108c | 13943 | if (string == 0) |
8a3fe4f8 | 13944 | error (_("Empty line specification.")); |
1bfeeb0f | 13945 | if (last_displayed_sal_is_valid ()) |
f8eba3c6 | 13946 | sals = decode_line_1 (&string, flags, |
1bfeeb0f | 13947 | get_last_displayed_symtab (), |
f8eba3c6 | 13948 | get_last_displayed_line ()); |
c906108c | 13949 | else |
f8eba3c6 | 13950 | sals = decode_line_1 (&string, flags, (struct symtab *) NULL, 0); |
c906108c | 13951 | if (*string) |
8a3fe4f8 | 13952 | error (_("Junk at end of line specification: %s"), string); |
c906108c SS |
13953 | return sals; |
13954 | } | |
8181d85f DJ |
13955 | |
13956 | /* Create and insert a raw software breakpoint at PC. Return an | |
13957 | identifier, which should be used to remove the breakpoint later. | |
13958 | In general, places which call this should be using something on the | |
13959 | breakpoint chain instead; this function should be eliminated | |
13960 | someday. */ | |
13961 | ||
13962 | void * | |
6c95b8df PA |
13963 | deprecated_insert_raw_breakpoint (struct gdbarch *gdbarch, |
13964 | struct address_space *aspace, CORE_ADDR pc) | |
8181d85f DJ |
13965 | { |
13966 | struct bp_target_info *bp_tgt; | |
13967 | ||
6c95b8df | 13968 | bp_tgt = XZALLOC (struct bp_target_info); |
8181d85f | 13969 | |
6c95b8df | 13970 | bp_tgt->placed_address_space = aspace; |
8181d85f | 13971 | bp_tgt->placed_address = pc; |
6c95b8df | 13972 | |
a6d9a66e | 13973 | if (target_insert_breakpoint (gdbarch, bp_tgt) != 0) |
8181d85f DJ |
13974 | { |
13975 | /* Could not insert the breakpoint. */ | |
13976 | xfree (bp_tgt); | |
13977 | return NULL; | |
13978 | } | |
13979 | ||
13980 | return bp_tgt; | |
13981 | } | |
13982 | ||
4a64f543 MS |
13983 | /* Remove a breakpoint BP inserted by |
13984 | deprecated_insert_raw_breakpoint. */ | |
8181d85f DJ |
13985 | |
13986 | int | |
a6d9a66e | 13987 | deprecated_remove_raw_breakpoint (struct gdbarch *gdbarch, void *bp) |
8181d85f DJ |
13988 | { |
13989 | struct bp_target_info *bp_tgt = bp; | |
13990 | int ret; | |
13991 | ||
a6d9a66e | 13992 | ret = target_remove_breakpoint (gdbarch, bp_tgt); |
8181d85f DJ |
13993 | xfree (bp_tgt); |
13994 | ||
13995 | return ret; | |
13996 | } | |
13997 | ||
4a64f543 MS |
13998 | /* One (or perhaps two) breakpoints used for software single |
13999 | stepping. */ | |
8181d85f DJ |
14000 | |
14001 | static void *single_step_breakpoints[2]; | |
a6d9a66e | 14002 | static struct gdbarch *single_step_gdbarch[2]; |
8181d85f DJ |
14003 | |
14004 | /* Create and insert a breakpoint for software single step. */ | |
14005 | ||
14006 | void | |
6c95b8df | 14007 | insert_single_step_breakpoint (struct gdbarch *gdbarch, |
4a64f543 MS |
14008 | struct address_space *aspace, |
14009 | CORE_ADDR next_pc) | |
8181d85f DJ |
14010 | { |
14011 | void **bpt_p; | |
14012 | ||
14013 | if (single_step_breakpoints[0] == NULL) | |
a6d9a66e UW |
14014 | { |
14015 | bpt_p = &single_step_breakpoints[0]; | |
14016 | single_step_gdbarch[0] = gdbarch; | |
14017 | } | |
8181d85f DJ |
14018 | else |
14019 | { | |
14020 | gdb_assert (single_step_breakpoints[1] == NULL); | |
14021 | bpt_p = &single_step_breakpoints[1]; | |
a6d9a66e | 14022 | single_step_gdbarch[1] = gdbarch; |
8181d85f DJ |
14023 | } |
14024 | ||
4a64f543 MS |
14025 | /* NOTE drow/2006-04-11: A future improvement to this function would |
14026 | be to only create the breakpoints once, and actually put them on | |
14027 | the breakpoint chain. That would let us use set_raw_breakpoint. | |
14028 | We could adjust the addresses each time they were needed. Doing | |
14029 | this requires corresponding changes elsewhere where single step | |
14030 | breakpoints are handled, however. So, for now, we use this. */ | |
8181d85f | 14031 | |
6c95b8df | 14032 | *bpt_p = deprecated_insert_raw_breakpoint (gdbarch, aspace, next_pc); |
8181d85f | 14033 | if (*bpt_p == NULL) |
5af949e3 UW |
14034 | error (_("Could not insert single-step breakpoint at %s"), |
14035 | paddress (gdbarch, next_pc)); | |
8181d85f DJ |
14036 | } |
14037 | ||
f02253f1 HZ |
14038 | /* Check if the breakpoints used for software single stepping |
14039 | were inserted or not. */ | |
14040 | ||
14041 | int | |
14042 | single_step_breakpoints_inserted (void) | |
14043 | { | |
14044 | return (single_step_breakpoints[0] != NULL | |
14045 | || single_step_breakpoints[1] != NULL); | |
14046 | } | |
14047 | ||
8181d85f DJ |
14048 | /* Remove and delete any breakpoints used for software single step. */ |
14049 | ||
14050 | void | |
14051 | remove_single_step_breakpoints (void) | |
14052 | { | |
14053 | gdb_assert (single_step_breakpoints[0] != NULL); | |
14054 | ||
14055 | /* See insert_single_step_breakpoint for more about this deprecated | |
14056 | call. */ | |
a6d9a66e UW |
14057 | deprecated_remove_raw_breakpoint (single_step_gdbarch[0], |
14058 | single_step_breakpoints[0]); | |
14059 | single_step_gdbarch[0] = NULL; | |
8181d85f DJ |
14060 | single_step_breakpoints[0] = NULL; |
14061 | ||
14062 | if (single_step_breakpoints[1] != NULL) | |
14063 | { | |
a6d9a66e UW |
14064 | deprecated_remove_raw_breakpoint (single_step_gdbarch[1], |
14065 | single_step_breakpoints[1]); | |
14066 | single_step_gdbarch[1] = NULL; | |
8181d85f DJ |
14067 | single_step_breakpoints[1] = NULL; |
14068 | } | |
14069 | } | |
14070 | ||
d03285ec UW |
14071 | /* Delete software single step breakpoints without removing them from |
14072 | the inferior. This is intended to be used if the inferior's address | |
14073 | space where they were inserted is already gone, e.g. after exit or | |
14074 | exec. */ | |
14075 | ||
14076 | void | |
14077 | cancel_single_step_breakpoints (void) | |
14078 | { | |
14079 | int i; | |
14080 | ||
14081 | for (i = 0; i < 2; i++) | |
14082 | if (single_step_breakpoints[i]) | |
14083 | { | |
14084 | xfree (single_step_breakpoints[i]); | |
14085 | single_step_breakpoints[i] = NULL; | |
14086 | single_step_gdbarch[i] = NULL; | |
14087 | } | |
14088 | } | |
14089 | ||
14090 | /* Detach software single-step breakpoints from INFERIOR_PTID without | |
14091 | removing them. */ | |
14092 | ||
14093 | static void | |
14094 | detach_single_step_breakpoints (void) | |
14095 | { | |
14096 | int i; | |
14097 | ||
14098 | for (i = 0; i < 2; i++) | |
14099 | if (single_step_breakpoints[i]) | |
14100 | target_remove_breakpoint (single_step_gdbarch[i], | |
14101 | single_step_breakpoints[i]); | |
14102 | } | |
14103 | ||
4a64f543 MS |
14104 | /* Check whether a software single-step breakpoint is inserted at |
14105 | PC. */ | |
1aafd4da UW |
14106 | |
14107 | static int | |
cc59ec59 MS |
14108 | single_step_breakpoint_inserted_here_p (struct address_space *aspace, |
14109 | CORE_ADDR pc) | |
1aafd4da UW |
14110 | { |
14111 | int i; | |
14112 | ||
14113 | for (i = 0; i < 2; i++) | |
14114 | { | |
14115 | struct bp_target_info *bp_tgt = single_step_breakpoints[i]; | |
6c95b8df PA |
14116 | if (bp_tgt |
14117 | && breakpoint_address_match (bp_tgt->placed_address_space, | |
14118 | bp_tgt->placed_address, | |
14119 | aspace, pc)) | |
1aafd4da UW |
14120 | return 1; |
14121 | } | |
14122 | ||
14123 | return 0; | |
14124 | } | |
14125 | ||
a96d9b2e SDJ |
14126 | /* Returns 0 if 'bp' is NOT a syscall catchpoint, |
14127 | non-zero otherwise. */ | |
14128 | static int | |
14129 | is_syscall_catchpoint_enabled (struct breakpoint *bp) | |
14130 | { | |
14131 | if (syscall_catchpoint_p (bp) | |
14132 | && bp->enable_state != bp_disabled | |
14133 | && bp->enable_state != bp_call_disabled) | |
14134 | return 1; | |
14135 | else | |
14136 | return 0; | |
14137 | } | |
14138 | ||
14139 | int | |
14140 | catch_syscall_enabled (void) | |
14141 | { | |
fa3064dd YQ |
14142 | struct catch_syscall_inferior_data *inf_data |
14143 | = get_catch_syscall_inferior_data (current_inferior ()); | |
a96d9b2e | 14144 | |
fa3064dd | 14145 | return inf_data->total_syscalls_count != 0; |
a96d9b2e SDJ |
14146 | } |
14147 | ||
14148 | int | |
14149 | catching_syscall_number (int syscall_number) | |
14150 | { | |
14151 | struct breakpoint *bp; | |
14152 | ||
14153 | ALL_BREAKPOINTS (bp) | |
14154 | if (is_syscall_catchpoint_enabled (bp)) | |
14155 | { | |
be5c67c1 PA |
14156 | struct syscall_catchpoint *c = (struct syscall_catchpoint *) bp; |
14157 | ||
14158 | if (c->syscalls_to_be_caught) | |
a96d9b2e SDJ |
14159 | { |
14160 | int i, iter; | |
14161 | for (i = 0; | |
be5c67c1 | 14162 | VEC_iterate (int, c->syscalls_to_be_caught, i, iter); |
a96d9b2e SDJ |
14163 | i++) |
14164 | if (syscall_number == iter) | |
14165 | return 1; | |
14166 | } | |
14167 | else | |
14168 | return 1; | |
14169 | } | |
14170 | ||
14171 | return 0; | |
14172 | } | |
14173 | ||
14174 | /* Complete syscall names. Used by "catch syscall". */ | |
14175 | static char ** | |
14176 | catch_syscall_completer (struct cmd_list_element *cmd, | |
14177 | char *text, char *word) | |
14178 | { | |
14179 | const char **list = get_syscall_names (); | |
c38eea1a MS |
14180 | char **retlist |
14181 | = (list == NULL) ? NULL : complete_on_enum (list, text, word); | |
cc59ec59 | 14182 | |
c38eea1a MS |
14183 | xfree (list); |
14184 | return retlist; | |
a96d9b2e SDJ |
14185 | } |
14186 | ||
1042e4c0 SS |
14187 | /* Tracepoint-specific operations. */ |
14188 | ||
14189 | /* Set tracepoint count to NUM. */ | |
14190 | static void | |
14191 | set_tracepoint_count (int num) | |
14192 | { | |
14193 | tracepoint_count = num; | |
4fa62494 | 14194 | set_internalvar_integer (lookup_internalvar ("tpnum"), num); |
1042e4c0 SS |
14195 | } |
14196 | ||
70221824 | 14197 | static void |
1042e4c0 SS |
14198 | trace_command (char *arg, int from_tty) |
14199 | { | |
8cdf0e15 VP |
14200 | if (create_breakpoint (get_current_arch (), |
14201 | arg, | |
14202 | NULL, 0, 1 /* parse arg */, | |
0fb4aa4b PA |
14203 | 0 /* tempflag */, |
14204 | bp_tracepoint /* type_wanted */, | |
8cdf0e15 VP |
14205 | 0 /* Ignore count */, |
14206 | pending_break_support, | |
348d480f | 14207 | &tracepoint_breakpoint_ops, |
8cdf0e15 | 14208 | from_tty, |
84f4c1fe | 14209 | 1 /* enabled */, |
44f238bb | 14210 | 0 /* internal */, 0)) |
fd9b8c24 | 14211 | set_tracepoint_count (breakpoint_count); |
1042e4c0 SS |
14212 | } |
14213 | ||
70221824 | 14214 | static void |
7a697b8d SS |
14215 | ftrace_command (char *arg, int from_tty) |
14216 | { | |
8cdf0e15 VP |
14217 | if (create_breakpoint (get_current_arch (), |
14218 | arg, | |
14219 | NULL, 0, 1 /* parse arg */, | |
0fb4aa4b PA |
14220 | 0 /* tempflag */, |
14221 | bp_fast_tracepoint /* type_wanted */, | |
14222 | 0 /* Ignore count */, | |
14223 | pending_break_support, | |
348d480f | 14224 | &tracepoint_breakpoint_ops, |
0fb4aa4b | 14225 | from_tty, |
84f4c1fe | 14226 | 1 /* enabled */, |
44f238bb | 14227 | 0 /* internal */, 0)) |
0fb4aa4b PA |
14228 | set_tracepoint_count (breakpoint_count); |
14229 | } | |
14230 | ||
14231 | /* strace command implementation. Creates a static tracepoint. */ | |
14232 | ||
70221824 | 14233 | static void |
0fb4aa4b PA |
14234 | strace_command (char *arg, int from_tty) |
14235 | { | |
983af33b SDJ |
14236 | struct breakpoint_ops *ops; |
14237 | ||
14238 | /* Decide if we are dealing with a static tracepoint marker (`-m'), | |
14239 | or with a normal static tracepoint. */ | |
14240 | if (arg && strncmp (arg, "-m", 2) == 0 && isspace (arg[2])) | |
14241 | ops = &strace_marker_breakpoint_ops; | |
14242 | else | |
14243 | ops = &tracepoint_breakpoint_ops; | |
14244 | ||
0fb4aa4b PA |
14245 | if (create_breakpoint (get_current_arch (), |
14246 | arg, | |
14247 | NULL, 0, 1 /* parse arg */, | |
14248 | 0 /* tempflag */, | |
14249 | bp_static_tracepoint /* type_wanted */, | |
8cdf0e15 VP |
14250 | 0 /* Ignore count */, |
14251 | pending_break_support, | |
983af33b | 14252 | ops, |
8cdf0e15 | 14253 | from_tty, |
84f4c1fe | 14254 | 1 /* enabled */, |
44f238bb | 14255 | 0 /* internal */, 0)) |
fd9b8c24 | 14256 | set_tracepoint_count (breakpoint_count); |
7a697b8d SS |
14257 | } |
14258 | ||
409873ef SS |
14259 | /* Set up a fake reader function that gets command lines from a linked |
14260 | list that was acquired during tracepoint uploading. */ | |
14261 | ||
14262 | static struct uploaded_tp *this_utp; | |
3149d8c1 | 14263 | static int next_cmd; |
409873ef SS |
14264 | |
14265 | static char * | |
14266 | read_uploaded_action (void) | |
14267 | { | |
14268 | char *rslt; | |
14269 | ||
3149d8c1 | 14270 | VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt); |
409873ef | 14271 | |
3149d8c1 | 14272 | next_cmd++; |
409873ef SS |
14273 | |
14274 | return rslt; | |
14275 | } | |
14276 | ||
00bf0b85 SS |
14277 | /* Given information about a tracepoint as recorded on a target (which |
14278 | can be either a live system or a trace file), attempt to create an | |
14279 | equivalent GDB tracepoint. This is not a reliable process, since | |
14280 | the target does not necessarily have all the information used when | |
14281 | the tracepoint was originally defined. */ | |
14282 | ||
d9b3f62e | 14283 | struct tracepoint * |
00bf0b85 | 14284 | create_tracepoint_from_upload (struct uploaded_tp *utp) |
d5551862 | 14285 | { |
409873ef | 14286 | char *addr_str, small_buf[100]; |
d9b3f62e | 14287 | struct tracepoint *tp; |
fd9b8c24 | 14288 | |
409873ef SS |
14289 | if (utp->at_string) |
14290 | addr_str = utp->at_string; | |
14291 | else | |
14292 | { | |
14293 | /* In the absence of a source location, fall back to raw | |
14294 | address. Since there is no way to confirm that the address | |
14295 | means the same thing as when the trace was started, warn the | |
14296 | user. */ | |
3e43a32a MS |
14297 | warning (_("Uploaded tracepoint %d has no " |
14298 | "source location, using raw address"), | |
409873ef SS |
14299 | utp->number); |
14300 | sprintf (small_buf, "*%s", hex_string (utp->addr)); | |
14301 | addr_str = small_buf; | |
14302 | } | |
14303 | ||
14304 | /* There's not much we can do with a sequence of bytecodes. */ | |
14305 | if (utp->cond && !utp->cond_string) | |
3e43a32a MS |
14306 | warning (_("Uploaded tracepoint %d condition " |
14307 | "has no source form, ignoring it"), | |
409873ef | 14308 | utp->number); |
d5551862 | 14309 | |
8cdf0e15 | 14310 | if (!create_breakpoint (get_current_arch (), |
409873ef SS |
14311 | addr_str, |
14312 | utp->cond_string, -1, 0 /* parse cond/thread */, | |
8cdf0e15 | 14313 | 0 /* tempflag */, |
0fb4aa4b | 14314 | utp->type /* type_wanted */, |
8cdf0e15 VP |
14315 | 0 /* Ignore count */, |
14316 | pending_break_support, | |
348d480f | 14317 | &tracepoint_breakpoint_ops, |
8cdf0e15 | 14318 | 0 /* from_tty */, |
84f4c1fe | 14319 | utp->enabled /* enabled */, |
44f238bb PA |
14320 | 0 /* internal */, |
14321 | CREATE_BREAKPOINT_FLAGS_INSERTED)) | |
fd9b8c24 PA |
14322 | return NULL; |
14323 | ||
00bf0b85 SS |
14324 | set_tracepoint_count (breakpoint_count); |
14325 | ||
409873ef | 14326 | /* Get the tracepoint we just created. */ |
fd9b8c24 PA |
14327 | tp = get_tracepoint (tracepoint_count); |
14328 | gdb_assert (tp != NULL); | |
d5551862 | 14329 | |
00bf0b85 SS |
14330 | if (utp->pass > 0) |
14331 | { | |
d9b3f62e | 14332 | sprintf (small_buf, "%d %d", utp->pass, tp->base.number); |
00bf0b85 | 14333 | |
409873ef | 14334 | trace_pass_command (small_buf, 0); |
00bf0b85 SS |
14335 | } |
14336 | ||
409873ef SS |
14337 | /* If we have uploaded versions of the original commands, set up a |
14338 | special-purpose "reader" function and call the usual command line | |
14339 | reader, then pass the result to the breakpoint command-setting | |
14340 | function. */ | |
3149d8c1 | 14341 | if (!VEC_empty (char_ptr, utp->cmd_strings)) |
00bf0b85 | 14342 | { |
409873ef | 14343 | struct command_line *cmd_list; |
00bf0b85 | 14344 | |
409873ef | 14345 | this_utp = utp; |
3149d8c1 | 14346 | next_cmd = 0; |
d5551862 | 14347 | |
409873ef SS |
14348 | cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL); |
14349 | ||
d9b3f62e | 14350 | breakpoint_set_commands (&tp->base, cmd_list); |
00bf0b85 | 14351 | } |
3149d8c1 SS |
14352 | else if (!VEC_empty (char_ptr, utp->actions) |
14353 | || !VEC_empty (char_ptr, utp->step_actions)) | |
3e43a32a MS |
14354 | warning (_("Uploaded tracepoint %d actions " |
14355 | "have no source form, ignoring them"), | |
409873ef | 14356 | utp->number); |
00bf0b85 | 14357 | |
f196051f SS |
14358 | /* Copy any status information that might be available. */ |
14359 | tp->base.hit_count = utp->hit_count; | |
14360 | tp->traceframe_usage = utp->traceframe_usage; | |
14361 | ||
00bf0b85 | 14362 | return tp; |
d9b3f62e | 14363 | } |
00bf0b85 | 14364 | |
1042e4c0 SS |
14365 | /* Print information on tracepoint number TPNUM_EXP, or all if |
14366 | omitted. */ | |
14367 | ||
14368 | static void | |
e5a67952 | 14369 | tracepoints_info (char *args, int from_tty) |
1042e4c0 | 14370 | { |
79a45e25 | 14371 | struct ui_out *uiout = current_uiout; |
e5a67952 | 14372 | int num_printed; |
1042e4c0 | 14373 | |
e5a67952 | 14374 | num_printed = breakpoint_1 (args, 0, is_tracepoint); |
d77f58be SS |
14375 | |
14376 | if (num_printed == 0) | |
1042e4c0 | 14377 | { |
e5a67952 | 14378 | if (args == NULL || *args == '\0') |
d77f58be SS |
14379 | ui_out_message (uiout, 0, "No tracepoints.\n"); |
14380 | else | |
e5a67952 | 14381 | ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args); |
1042e4c0 | 14382 | } |
ad443146 SS |
14383 | |
14384 | default_collect_info (); | |
1042e4c0 SS |
14385 | } |
14386 | ||
4a64f543 | 14387 | /* The 'enable trace' command enables tracepoints. |
1042e4c0 SS |
14388 | Not supported by all targets. */ |
14389 | static void | |
14390 | enable_trace_command (char *args, int from_tty) | |
14391 | { | |
14392 | enable_command (args, from_tty); | |
14393 | } | |
14394 | ||
4a64f543 | 14395 | /* The 'disable trace' command disables tracepoints. |
1042e4c0 SS |
14396 | Not supported by all targets. */ |
14397 | static void | |
14398 | disable_trace_command (char *args, int from_tty) | |
14399 | { | |
14400 | disable_command (args, from_tty); | |
14401 | } | |
14402 | ||
4a64f543 | 14403 | /* Remove a tracepoint (or all if no argument). */ |
1042e4c0 SS |
14404 | static void |
14405 | delete_trace_command (char *arg, int from_tty) | |
14406 | { | |
35df4500 | 14407 | struct breakpoint *b, *b_tmp; |
1042e4c0 SS |
14408 | |
14409 | dont_repeat (); | |
14410 | ||
14411 | if (arg == 0) | |
14412 | { | |
14413 | int breaks_to_delete = 0; | |
14414 | ||
14415 | /* Delete all breakpoints if no argument. | |
14416 | Do not delete internal or call-dummy breakpoints, these | |
4a64f543 MS |
14417 | have to be deleted with an explicit breakpoint number |
14418 | argument. */ | |
1042e4c0 | 14419 | ALL_TRACEPOINTS (b) |
46c6471b | 14420 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 SS |
14421 | { |
14422 | breaks_to_delete = 1; | |
14423 | break; | |
14424 | } | |
1042e4c0 SS |
14425 | |
14426 | /* Ask user only if there are some breakpoints to delete. */ | |
14427 | if (!from_tty | |
14428 | || (breaks_to_delete && query (_("Delete all tracepoints? ")))) | |
14429 | { | |
35df4500 | 14430 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
46c6471b | 14431 | if (is_tracepoint (b) && user_breakpoint_p (b)) |
1042e4c0 | 14432 | delete_breakpoint (b); |
1042e4c0 SS |
14433 | } |
14434 | } | |
14435 | else | |
51be5b68 | 14436 | map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL); |
1042e4c0 SS |
14437 | } |
14438 | ||
197f0a60 TT |
14439 | /* Helper function for trace_pass_command. */ |
14440 | ||
14441 | static void | |
d9b3f62e | 14442 | trace_pass_set_count (struct tracepoint *tp, int count, int from_tty) |
197f0a60 | 14443 | { |
d9b3f62e PA |
14444 | tp->pass_count = count; |
14445 | observer_notify_tracepoint_modified (tp->base.number); | |
197f0a60 TT |
14446 | if (from_tty) |
14447 | printf_filtered (_("Setting tracepoint %d's passcount to %d\n"), | |
d9b3f62e | 14448 | tp->base.number, count); |
197f0a60 TT |
14449 | } |
14450 | ||
1042e4c0 SS |
14451 | /* Set passcount for tracepoint. |
14452 | ||
14453 | First command argument is passcount, second is tracepoint number. | |
14454 | If tracepoint number omitted, apply to most recently defined. | |
14455 | Also accepts special argument "all". */ | |
14456 | ||
14457 | static void | |
14458 | trace_pass_command (char *args, int from_tty) | |
14459 | { | |
d9b3f62e | 14460 | struct tracepoint *t1; |
1042e4c0 | 14461 | unsigned int count; |
1042e4c0 SS |
14462 | |
14463 | if (args == 0 || *args == 0) | |
3e43a32a MS |
14464 | error (_("passcount command requires an " |
14465 | "argument (count + optional TP num)")); | |
1042e4c0 | 14466 | |
4a64f543 | 14467 | count = strtoul (args, &args, 10); /* Count comes first, then TP num. */ |
1042e4c0 SS |
14468 | |
14469 | while (*args && isspace ((int) *args)) | |
14470 | args++; | |
14471 | ||
14472 | if (*args && strncasecmp (args, "all", 3) == 0) | |
14473 | { | |
d9b3f62e PA |
14474 | struct breakpoint *b; |
14475 | ||
1042e4c0 | 14476 | args += 3; /* Skip special argument "all". */ |
1042e4c0 SS |
14477 | if (*args) |
14478 | error (_("Junk at end of arguments.")); | |
1042e4c0 | 14479 | |
d9b3f62e | 14480 | ALL_TRACEPOINTS (b) |
197f0a60 | 14481 | { |
d9b3f62e | 14482 | t1 = (struct tracepoint *) b; |
197f0a60 TT |
14483 | trace_pass_set_count (t1, count, from_tty); |
14484 | } | |
14485 | } | |
14486 | else if (*args == '\0') | |
1042e4c0 | 14487 | { |
197f0a60 | 14488 | t1 = get_tracepoint_by_number (&args, NULL, 1); |
1042e4c0 | 14489 | if (t1) |
197f0a60 TT |
14490 | trace_pass_set_count (t1, count, from_tty); |
14491 | } | |
14492 | else | |
14493 | { | |
14494 | struct get_number_or_range_state state; | |
14495 | ||
14496 | init_number_or_range (&state, args); | |
14497 | while (!state.finished) | |
1042e4c0 | 14498 | { |
197f0a60 TT |
14499 | t1 = get_tracepoint_by_number (&args, &state, 1); |
14500 | if (t1) | |
14501 | trace_pass_set_count (t1, count, from_tty); | |
1042e4c0 SS |
14502 | } |
14503 | } | |
1042e4c0 SS |
14504 | } |
14505 | ||
d9b3f62e | 14506 | struct tracepoint * |
1042e4c0 SS |
14507 | get_tracepoint (int num) |
14508 | { | |
14509 | struct breakpoint *t; | |
14510 | ||
14511 | ALL_TRACEPOINTS (t) | |
14512 | if (t->number == num) | |
d9b3f62e | 14513 | return (struct tracepoint *) t; |
1042e4c0 SS |
14514 | |
14515 | return NULL; | |
14516 | } | |
14517 | ||
d5551862 SS |
14518 | /* Find the tracepoint with the given target-side number (which may be |
14519 | different from the tracepoint number after disconnecting and | |
14520 | reconnecting). */ | |
14521 | ||
d9b3f62e | 14522 | struct tracepoint * |
d5551862 SS |
14523 | get_tracepoint_by_number_on_target (int num) |
14524 | { | |
d9b3f62e | 14525 | struct breakpoint *b; |
d5551862 | 14526 | |
d9b3f62e PA |
14527 | ALL_TRACEPOINTS (b) |
14528 | { | |
14529 | struct tracepoint *t = (struct tracepoint *) b; | |
14530 | ||
14531 | if (t->number_on_target == num) | |
14532 | return t; | |
14533 | } | |
d5551862 SS |
14534 | |
14535 | return NULL; | |
14536 | } | |
14537 | ||
1042e4c0 | 14538 | /* Utility: parse a tracepoint number and look it up in the list. |
197f0a60 TT |
14539 | If STATE is not NULL, use, get_number_or_range_state and ignore ARG. |
14540 | If OPTIONAL_P is true, then if the argument is missing, the most | |
1042e4c0 | 14541 | recent tracepoint (tracepoint_count) is returned. */ |
d9b3f62e | 14542 | struct tracepoint * |
197f0a60 TT |
14543 | get_tracepoint_by_number (char **arg, |
14544 | struct get_number_or_range_state *state, | |
14545 | int optional_p) | |
1042e4c0 SS |
14546 | { |
14547 | extern int tracepoint_count; | |
14548 | struct breakpoint *t; | |
14549 | int tpnum; | |
14550 | char *instring = arg == NULL ? NULL : *arg; | |
14551 | ||
197f0a60 TT |
14552 | if (state) |
14553 | { | |
14554 | gdb_assert (!state->finished); | |
14555 | tpnum = get_number_or_range (state); | |
14556 | } | |
14557 | else if (arg == NULL || *arg == NULL || ! **arg) | |
1042e4c0 SS |
14558 | { |
14559 | if (optional_p) | |
14560 | tpnum = tracepoint_count; | |
14561 | else | |
14562 | error_no_arg (_("tracepoint number")); | |
14563 | } | |
14564 | else | |
197f0a60 | 14565 | tpnum = get_number (arg); |
1042e4c0 SS |
14566 | |
14567 | if (tpnum <= 0) | |
14568 | { | |
14569 | if (instring && *instring) | |
14570 | printf_filtered (_("bad tracepoint number at or near '%s'\n"), | |
14571 | instring); | |
14572 | else | |
3e43a32a MS |
14573 | printf_filtered (_("Tracepoint argument missing " |
14574 | "and no previous tracepoint\n")); | |
1042e4c0 SS |
14575 | return NULL; |
14576 | } | |
14577 | ||
14578 | ALL_TRACEPOINTS (t) | |
14579 | if (t->number == tpnum) | |
14580 | { | |
d9b3f62e | 14581 | return (struct tracepoint *) t; |
1042e4c0 SS |
14582 | } |
14583 | ||
1042e4c0 SS |
14584 | printf_unfiltered ("No tracepoint number %d.\n", tpnum); |
14585 | return NULL; | |
14586 | } | |
14587 | ||
d9b3f62e PA |
14588 | void |
14589 | print_recreate_thread (struct breakpoint *b, struct ui_file *fp) | |
14590 | { | |
14591 | if (b->thread != -1) | |
14592 | fprintf_unfiltered (fp, " thread %d", b->thread); | |
14593 | ||
14594 | if (b->task != 0) | |
14595 | fprintf_unfiltered (fp, " task %d", b->task); | |
14596 | ||
14597 | fprintf_unfiltered (fp, "\n"); | |
14598 | } | |
14599 | ||
6149aea9 PA |
14600 | /* Save information on user settable breakpoints (watchpoints, etc) to |
14601 | a new script file named FILENAME. If FILTER is non-NULL, call it | |
14602 | on each breakpoint and only include the ones for which it returns | |
14603 | non-zero. */ | |
14604 | ||
1042e4c0 | 14605 | static void |
6149aea9 PA |
14606 | save_breakpoints (char *filename, int from_tty, |
14607 | int (*filter) (const struct breakpoint *)) | |
1042e4c0 SS |
14608 | { |
14609 | struct breakpoint *tp; | |
6149aea9 | 14610 | int any = 0; |
a7bdde9e | 14611 | char *pathname; |
1042e4c0 | 14612 | struct cleanup *cleanup; |
a7bdde9e | 14613 | struct ui_file *fp; |
6149aea9 | 14614 | int extra_trace_bits = 0; |
1042e4c0 | 14615 | |
6149aea9 PA |
14616 | if (filename == 0 || *filename == 0) |
14617 | error (_("Argument required (file name in which to save)")); | |
1042e4c0 SS |
14618 | |
14619 | /* See if we have anything to save. */ | |
6149aea9 | 14620 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 14621 | { |
6149aea9 | 14622 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 14623 | if (!user_breakpoint_p (tp)) |
6149aea9 PA |
14624 | continue; |
14625 | ||
14626 | /* If we have a filter, only save the breakpoints it accepts. */ | |
14627 | if (filter && !filter (tp)) | |
14628 | continue; | |
14629 | ||
14630 | any = 1; | |
14631 | ||
14632 | if (is_tracepoint (tp)) | |
14633 | { | |
14634 | extra_trace_bits = 1; | |
14635 | ||
14636 | /* We can stop searching. */ | |
14637 | break; | |
14638 | } | |
1042e4c0 | 14639 | } |
6149aea9 PA |
14640 | |
14641 | if (!any) | |
1042e4c0 | 14642 | { |
6149aea9 | 14643 | warning (_("Nothing to save.")); |
1042e4c0 SS |
14644 | return; |
14645 | } | |
14646 | ||
6149aea9 | 14647 | pathname = tilde_expand (filename); |
1042e4c0 | 14648 | cleanup = make_cleanup (xfree, pathname); |
a7bdde9e | 14649 | fp = gdb_fopen (pathname, "w"); |
059fb39f | 14650 | if (!fp) |
6149aea9 PA |
14651 | error (_("Unable to open file '%s' for saving (%s)"), |
14652 | filename, safe_strerror (errno)); | |
a7bdde9e | 14653 | make_cleanup_ui_file_delete (fp); |
8bf6485c | 14654 | |
6149aea9 PA |
14655 | if (extra_trace_bits) |
14656 | save_trace_state_variables (fp); | |
8bf6485c | 14657 | |
6149aea9 | 14658 | ALL_BREAKPOINTS (tp) |
1042e4c0 | 14659 | { |
6149aea9 | 14660 | /* Skip internal and momentary breakpoints. */ |
09d682a4 | 14661 | if (!user_breakpoint_p (tp)) |
6149aea9 | 14662 | continue; |
8bf6485c | 14663 | |
6149aea9 PA |
14664 | /* If we have a filter, only save the breakpoints it accepts. */ |
14665 | if (filter && !filter (tp)) | |
14666 | continue; | |
14667 | ||
348d480f | 14668 | tp->ops->print_recreate (tp, fp); |
1042e4c0 | 14669 | |
6149aea9 PA |
14670 | /* Note, we can't rely on tp->number for anything, as we can't |
14671 | assume the recreated breakpoint numbers will match. Use $bpnum | |
14672 | instead. */ | |
14673 | ||
14674 | if (tp->cond_string) | |
14675 | fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string); | |
14676 | ||
14677 | if (tp->ignore_count) | |
14678 | fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count); | |
14679 | ||
a7bdde9e | 14680 | if (tp->commands) |
1042e4c0 | 14681 | { |
a7bdde9e VP |
14682 | volatile struct gdb_exception ex; |
14683 | ||
6149aea9 | 14684 | fprintf_unfiltered (fp, " commands\n"); |
a7bdde9e | 14685 | |
79a45e25 | 14686 | ui_out_redirect (current_uiout, fp); |
14dba4b4 | 14687 | TRY_CATCH (ex, RETURN_MASK_ALL) |
1042e4c0 | 14688 | { |
79a45e25 | 14689 | print_command_lines (current_uiout, tp->commands->commands, 2); |
a7bdde9e | 14690 | } |
79a45e25 | 14691 | ui_out_redirect (current_uiout, NULL); |
1042e4c0 | 14692 | |
a7bdde9e VP |
14693 | if (ex.reason < 0) |
14694 | throw_exception (ex); | |
1042e4c0 | 14695 | |
a7bdde9e | 14696 | fprintf_unfiltered (fp, " end\n"); |
1042e4c0 | 14697 | } |
6149aea9 PA |
14698 | |
14699 | if (tp->enable_state == bp_disabled) | |
14700 | fprintf_unfiltered (fp, "disable\n"); | |
14701 | ||
14702 | /* If this is a multi-location breakpoint, check if the locations | |
14703 | should be individually disabled. Watchpoint locations are | |
14704 | special, and not user visible. */ | |
14705 | if (!is_watchpoint (tp) && tp->loc && tp->loc->next) | |
14706 | { | |
14707 | struct bp_location *loc; | |
14708 | int n = 1; | |
14709 | ||
14710 | for (loc = tp->loc; loc != NULL; loc = loc->next, n++) | |
14711 | if (!loc->enabled) | |
14712 | fprintf_unfiltered (fp, "disable $bpnum.%d\n", n); | |
14713 | } | |
1042e4c0 | 14714 | } |
8bf6485c | 14715 | |
6149aea9 | 14716 | if (extra_trace_bits && *default_collect) |
8bf6485c SS |
14717 | fprintf_unfiltered (fp, "set default-collect %s\n", default_collect); |
14718 | ||
1042e4c0 SS |
14719 | do_cleanups (cleanup); |
14720 | if (from_tty) | |
6149aea9 PA |
14721 | printf_filtered (_("Saved to file '%s'.\n"), filename); |
14722 | } | |
14723 | ||
14724 | /* The `save breakpoints' command. */ | |
14725 | ||
14726 | static void | |
14727 | save_breakpoints_command (char *args, int from_tty) | |
14728 | { | |
14729 | save_breakpoints (args, from_tty, NULL); | |
14730 | } | |
14731 | ||
14732 | /* The `save tracepoints' command. */ | |
14733 | ||
14734 | static void | |
14735 | save_tracepoints_command (char *args, int from_tty) | |
14736 | { | |
14737 | save_breakpoints (args, from_tty, is_tracepoint); | |
1042e4c0 SS |
14738 | } |
14739 | ||
14740 | /* Create a vector of all tracepoints. */ | |
14741 | ||
14742 | VEC(breakpoint_p) * | |
eeae04df | 14743 | all_tracepoints (void) |
1042e4c0 SS |
14744 | { |
14745 | VEC(breakpoint_p) *tp_vec = 0; | |
14746 | struct breakpoint *tp; | |
14747 | ||
14748 | ALL_TRACEPOINTS (tp) | |
14749 | { | |
14750 | VEC_safe_push (breakpoint_p, tp_vec, tp); | |
14751 | } | |
14752 | ||
14753 | return tp_vec; | |
14754 | } | |
14755 | ||
c906108c | 14756 | \f |
4a64f543 MS |
14757 | /* This help string is used for the break, hbreak, tbreak and thbreak |
14758 | commands. It is defined as a macro to prevent duplication. | |
14759 | COMMAND should be a string constant containing the name of the | |
14760 | command. */ | |
31e2b00f AS |
14761 | #define BREAK_ARGS_HELP(command) \ |
14762 | command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\ | |
14763 | LOCATION may be a line number, function name, or \"*\" and an address.\n\ | |
14764 | If a line number is specified, break at start of code for that line.\n\ | |
14765 | If a function is specified, break at start of code for that function.\n\ | |
14766 | If an address is specified, break at that exact address.\n\ | |
dc10affe PA |
14767 | With no LOCATION, uses current execution address of the selected\n\ |
14768 | stack frame. This is useful for breaking on return to a stack frame.\n\ | |
31e2b00f AS |
14769 | \n\ |
14770 | THREADNUM is the number from \"info threads\".\n\ | |
14771 | CONDITION is a boolean expression.\n\ | |
14772 | \n\ | |
d41c0fc8 PA |
14773 | Multiple breakpoints at one place are permitted, and useful if their\n\ |
14774 | conditions are different.\n\ | |
31e2b00f AS |
14775 | \n\ |
14776 | Do \"help breakpoints\" for info on other commands dealing with breakpoints." | |
14777 | ||
44feb3ce TT |
14778 | /* List of subcommands for "catch". */ |
14779 | static struct cmd_list_element *catch_cmdlist; | |
14780 | ||
14781 | /* List of subcommands for "tcatch". */ | |
14782 | static struct cmd_list_element *tcatch_cmdlist; | |
14783 | ||
9ac4176b | 14784 | void |
44feb3ce TT |
14785 | add_catch_command (char *name, char *docstring, |
14786 | void (*sfunc) (char *args, int from_tty, | |
14787 | struct cmd_list_element *command), | |
a96d9b2e SDJ |
14788 | char **(*completer) (struct cmd_list_element *cmd, |
14789 | char *text, char *word), | |
44feb3ce TT |
14790 | void *user_data_catch, |
14791 | void *user_data_tcatch) | |
14792 | { | |
14793 | struct cmd_list_element *command; | |
14794 | ||
14795 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
14796 | &catch_cmdlist); | |
14797 | set_cmd_sfunc (command, sfunc); | |
14798 | set_cmd_context (command, user_data_catch); | |
a96d9b2e | 14799 | set_cmd_completer (command, completer); |
44feb3ce TT |
14800 | |
14801 | command = add_cmd (name, class_breakpoint, NULL, docstring, | |
14802 | &tcatch_cmdlist); | |
14803 | set_cmd_sfunc (command, sfunc); | |
14804 | set_cmd_context (command, user_data_tcatch); | |
a96d9b2e | 14805 | set_cmd_completer (command, completer); |
44feb3ce TT |
14806 | } |
14807 | ||
6c95b8df | 14808 | static void |
a79b8f6e | 14809 | clear_syscall_counts (struct inferior *inf) |
6c95b8df | 14810 | { |
fa3064dd YQ |
14811 | struct catch_syscall_inferior_data *inf_data |
14812 | = get_catch_syscall_inferior_data (inf); | |
14813 | ||
14814 | inf_data->total_syscalls_count = 0; | |
14815 | inf_data->any_syscall_count = 0; | |
14816 | VEC_free (int, inf_data->syscalls_counts); | |
6c95b8df PA |
14817 | } |
14818 | ||
6149aea9 PA |
14819 | static void |
14820 | save_command (char *arg, int from_tty) | |
14821 | { | |
3e43a32a MS |
14822 | printf_unfiltered (_("\"save\" must be followed by " |
14823 | "the name of a save subcommand.\n")); | |
6149aea9 PA |
14824 | help_list (save_cmdlist, "save ", -1, gdb_stdout); |
14825 | } | |
14826 | ||
84f4c1fe PM |
14827 | struct breakpoint * |
14828 | iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *), | |
14829 | void *data) | |
14830 | { | |
35df4500 | 14831 | struct breakpoint *b, *b_tmp; |
84f4c1fe | 14832 | |
35df4500 | 14833 | ALL_BREAKPOINTS_SAFE (b, b_tmp) |
84f4c1fe PM |
14834 | { |
14835 | if ((*callback) (b, data)) | |
14836 | return b; | |
14837 | } | |
14838 | ||
14839 | return NULL; | |
14840 | } | |
14841 | ||
0574c78f GB |
14842 | /* Zero if any of the breakpoint's locations could be a location where |
14843 | functions have been inlined, nonzero otherwise. */ | |
14844 | ||
14845 | static int | |
14846 | is_non_inline_function (struct breakpoint *b) | |
14847 | { | |
14848 | /* The shared library event breakpoint is set on the address of a | |
14849 | non-inline function. */ | |
14850 | if (b->type == bp_shlib_event) | |
14851 | return 1; | |
14852 | ||
14853 | return 0; | |
14854 | } | |
14855 | ||
14856 | /* Nonzero if the specified PC cannot be a location where functions | |
14857 | have been inlined. */ | |
14858 | ||
14859 | int | |
09ac7c10 TT |
14860 | pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc, |
14861 | const struct target_waitstatus *ws) | |
0574c78f GB |
14862 | { |
14863 | struct breakpoint *b; | |
14864 | struct bp_location *bl; | |
14865 | ||
14866 | ALL_BREAKPOINTS (b) | |
14867 | { | |
14868 | if (!is_non_inline_function (b)) | |
14869 | continue; | |
14870 | ||
14871 | for (bl = b->loc; bl != NULL; bl = bl->next) | |
14872 | { | |
14873 | if (!bl->shlib_disabled | |
09ac7c10 | 14874 | && bpstat_check_location (bl, aspace, pc, ws)) |
0574c78f GB |
14875 | return 1; |
14876 | } | |
14877 | } | |
14878 | ||
14879 | return 0; | |
14880 | } | |
14881 | ||
2060206e PA |
14882 | void |
14883 | initialize_breakpoint_ops (void) | |
14884 | { | |
14885 | static int initialized = 0; | |
14886 | ||
14887 | struct breakpoint_ops *ops; | |
14888 | ||
14889 | if (initialized) | |
14890 | return; | |
14891 | initialized = 1; | |
14892 | ||
14893 | /* The breakpoint_ops structure to be inherit by all kinds of | |
14894 | breakpoints (real breakpoints, i.e., user "break" breakpoints, | |
14895 | internal and momentary breakpoints, etc.). */ | |
14896 | ops = &bkpt_base_breakpoint_ops; | |
14897 | *ops = base_breakpoint_ops; | |
14898 | ops->re_set = bkpt_re_set; | |
14899 | ops->insert_location = bkpt_insert_location; | |
14900 | ops->remove_location = bkpt_remove_location; | |
14901 | ops->breakpoint_hit = bkpt_breakpoint_hit; | |
983af33b SDJ |
14902 | ops->create_sals_from_address = bkpt_create_sals_from_address; |
14903 | ops->create_breakpoints_sal = bkpt_create_breakpoints_sal; | |
14904 | ops->decode_linespec = bkpt_decode_linespec; | |
2060206e PA |
14905 | |
14906 | /* The breakpoint_ops structure to be used in regular breakpoints. */ | |
14907 | ops = &bkpt_breakpoint_ops; | |
14908 | *ops = bkpt_base_breakpoint_ops; | |
14909 | ops->re_set = bkpt_re_set; | |
14910 | ops->resources_needed = bkpt_resources_needed; | |
14911 | ops->print_it = bkpt_print_it; | |
14912 | ops->print_mention = bkpt_print_mention; | |
14913 | ops->print_recreate = bkpt_print_recreate; | |
14914 | ||
14915 | /* Ranged breakpoints. */ | |
14916 | ops = &ranged_breakpoint_ops; | |
14917 | *ops = bkpt_breakpoint_ops; | |
14918 | ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint; | |
14919 | ops->resources_needed = resources_needed_ranged_breakpoint; | |
14920 | ops->print_it = print_it_ranged_breakpoint; | |
14921 | ops->print_one = print_one_ranged_breakpoint; | |
14922 | ops->print_one_detail = print_one_detail_ranged_breakpoint; | |
14923 | ops->print_mention = print_mention_ranged_breakpoint; | |
14924 | ops->print_recreate = print_recreate_ranged_breakpoint; | |
14925 | ||
14926 | /* Internal breakpoints. */ | |
14927 | ops = &internal_breakpoint_ops; | |
14928 | *ops = bkpt_base_breakpoint_ops; | |
14929 | ops->re_set = internal_bkpt_re_set; | |
14930 | ops->check_status = internal_bkpt_check_status; | |
14931 | ops->print_it = internal_bkpt_print_it; | |
14932 | ops->print_mention = internal_bkpt_print_mention; | |
14933 | ||
14934 | /* Momentary breakpoints. */ | |
14935 | ops = &momentary_breakpoint_ops; | |
14936 | *ops = bkpt_base_breakpoint_ops; | |
14937 | ops->re_set = momentary_bkpt_re_set; | |
14938 | ops->check_status = momentary_bkpt_check_status; | |
14939 | ops->print_it = momentary_bkpt_print_it; | |
14940 | ops->print_mention = momentary_bkpt_print_mention; | |
14941 | ||
14942 | /* GNU v3 exception catchpoints. */ | |
14943 | ops = &gnu_v3_exception_catchpoint_ops; | |
14944 | *ops = bkpt_breakpoint_ops; | |
14945 | ops->print_it = print_it_exception_catchpoint; | |
14946 | ops->print_one = print_one_exception_catchpoint; | |
14947 | ops->print_mention = print_mention_exception_catchpoint; | |
14948 | ops->print_recreate = print_recreate_exception_catchpoint; | |
14949 | ||
14950 | /* Watchpoints. */ | |
14951 | ops = &watchpoint_breakpoint_ops; | |
14952 | *ops = base_breakpoint_ops; | |
3a5c3e22 | 14953 | ops->dtor = dtor_watchpoint; |
2060206e PA |
14954 | ops->re_set = re_set_watchpoint; |
14955 | ops->insert_location = insert_watchpoint; | |
14956 | ops->remove_location = remove_watchpoint; | |
14957 | ops->breakpoint_hit = breakpoint_hit_watchpoint; | |
14958 | ops->check_status = check_status_watchpoint; | |
14959 | ops->resources_needed = resources_needed_watchpoint; | |
14960 | ops->works_in_software_mode = works_in_software_mode_watchpoint; | |
14961 | ops->print_it = print_it_watchpoint; | |
14962 | ops->print_mention = print_mention_watchpoint; | |
14963 | ops->print_recreate = print_recreate_watchpoint; | |
14964 | ||
14965 | /* Masked watchpoints. */ | |
14966 | ops = &masked_watchpoint_breakpoint_ops; | |
14967 | *ops = watchpoint_breakpoint_ops; | |
14968 | ops->insert_location = insert_masked_watchpoint; | |
14969 | ops->remove_location = remove_masked_watchpoint; | |
14970 | ops->resources_needed = resources_needed_masked_watchpoint; | |
14971 | ops->works_in_software_mode = works_in_software_mode_masked_watchpoint; | |
14972 | ops->print_it = print_it_masked_watchpoint; | |
14973 | ops->print_one_detail = print_one_detail_masked_watchpoint; | |
14974 | ops->print_mention = print_mention_masked_watchpoint; | |
14975 | ops->print_recreate = print_recreate_masked_watchpoint; | |
14976 | ||
14977 | /* Tracepoints. */ | |
14978 | ops = &tracepoint_breakpoint_ops; | |
14979 | *ops = base_breakpoint_ops; | |
14980 | ops->re_set = tracepoint_re_set; | |
14981 | ops->breakpoint_hit = tracepoint_breakpoint_hit; | |
14982 | ops->print_one_detail = tracepoint_print_one_detail; | |
14983 | ops->print_mention = tracepoint_print_mention; | |
14984 | ops->print_recreate = tracepoint_print_recreate; | |
983af33b SDJ |
14985 | ops->create_sals_from_address = tracepoint_create_sals_from_address; |
14986 | ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal; | |
14987 | ops->decode_linespec = tracepoint_decode_linespec; | |
14988 | ||
14989 | /* Static tracepoints with marker (`-m'). */ | |
14990 | ops = &strace_marker_breakpoint_ops; | |
14991 | *ops = tracepoint_breakpoint_ops; | |
14992 | ops->create_sals_from_address = strace_marker_create_sals_from_address; | |
14993 | ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal; | |
14994 | ops->decode_linespec = strace_marker_decode_linespec; | |
2060206e PA |
14995 | |
14996 | /* Fork catchpoints. */ | |
14997 | ops = &catch_fork_breakpoint_ops; | |
14998 | *ops = base_breakpoint_ops; | |
14999 | ops->insert_location = insert_catch_fork; | |
15000 | ops->remove_location = remove_catch_fork; | |
15001 | ops->breakpoint_hit = breakpoint_hit_catch_fork; | |
15002 | ops->print_it = print_it_catch_fork; | |
15003 | ops->print_one = print_one_catch_fork; | |
15004 | ops->print_mention = print_mention_catch_fork; | |
15005 | ops->print_recreate = print_recreate_catch_fork; | |
15006 | ||
15007 | /* Vfork catchpoints. */ | |
15008 | ops = &catch_vfork_breakpoint_ops; | |
15009 | *ops = base_breakpoint_ops; | |
15010 | ops->insert_location = insert_catch_vfork; | |
15011 | ops->remove_location = remove_catch_vfork; | |
15012 | ops->breakpoint_hit = breakpoint_hit_catch_vfork; | |
15013 | ops->print_it = print_it_catch_vfork; | |
15014 | ops->print_one = print_one_catch_vfork; | |
15015 | ops->print_mention = print_mention_catch_vfork; | |
15016 | ops->print_recreate = print_recreate_catch_vfork; | |
15017 | ||
15018 | /* Exec catchpoints. */ | |
15019 | ops = &catch_exec_breakpoint_ops; | |
15020 | *ops = base_breakpoint_ops; | |
15021 | ops->dtor = dtor_catch_exec; | |
15022 | ops->insert_location = insert_catch_exec; | |
15023 | ops->remove_location = remove_catch_exec; | |
15024 | ops->breakpoint_hit = breakpoint_hit_catch_exec; | |
15025 | ops->print_it = print_it_catch_exec; | |
15026 | ops->print_one = print_one_catch_exec; | |
15027 | ops->print_mention = print_mention_catch_exec; | |
15028 | ops->print_recreate = print_recreate_catch_exec; | |
15029 | ||
15030 | /* Syscall catchpoints. */ | |
15031 | ops = &catch_syscall_breakpoint_ops; | |
15032 | *ops = base_breakpoint_ops; | |
15033 | ops->dtor = dtor_catch_syscall; | |
15034 | ops->insert_location = insert_catch_syscall; | |
15035 | ops->remove_location = remove_catch_syscall; | |
15036 | ops->breakpoint_hit = breakpoint_hit_catch_syscall; | |
15037 | ops->print_it = print_it_catch_syscall; | |
15038 | ops->print_one = print_one_catch_syscall; | |
15039 | ops->print_mention = print_mention_catch_syscall; | |
15040 | ops->print_recreate = print_recreate_catch_syscall; | |
edcc5120 TT |
15041 | |
15042 | /* Solib-related catchpoints. */ | |
15043 | ops = &catch_solib_breakpoint_ops; | |
15044 | *ops = base_breakpoint_ops; | |
15045 | ops->dtor = dtor_catch_solib; | |
15046 | ops->insert_location = insert_catch_solib; | |
15047 | ops->remove_location = remove_catch_solib; | |
15048 | ops->breakpoint_hit = breakpoint_hit_catch_solib; | |
15049 | ops->check_status = check_status_catch_solib; | |
15050 | ops->print_it = print_it_catch_solib; | |
15051 | ops->print_one = print_one_catch_solib; | |
15052 | ops->print_mention = print_mention_catch_solib; | |
15053 | ops->print_recreate = print_recreate_catch_solib; | |
2060206e PA |
15054 | } |
15055 | ||
c906108c | 15056 | void |
fba45db2 | 15057 | _initialize_breakpoint (void) |
c906108c SS |
15058 | { |
15059 | struct cmd_list_element *c; | |
15060 | ||
2060206e PA |
15061 | initialize_breakpoint_ops (); |
15062 | ||
84acb35a | 15063 | observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib); |
6c95b8df | 15064 | observer_attach_inferior_exit (clear_syscall_counts); |
1f3b5d1b | 15065 | observer_attach_memory_changed (invalidate_bp_value_on_memory_change); |
84acb35a | 15066 | |
17450429 PP |
15067 | breakpoint_objfile_key = register_objfile_data (); |
15068 | ||
fa3064dd YQ |
15069 | catch_syscall_inferior_data |
15070 | = register_inferior_data_with_cleanup (catch_syscall_inferior_data_cleanup); | |
15071 | ||
c906108c SS |
15072 | breakpoint_chain = 0; |
15073 | /* Don't bother to call set_breakpoint_count. $bpnum isn't useful | |
15074 | before a breakpoint is set. */ | |
15075 | breakpoint_count = 0; | |
15076 | ||
1042e4c0 SS |
15077 | tracepoint_count = 0; |
15078 | ||
1bedd215 AC |
15079 | add_com ("ignore", class_breakpoint, ignore_command, _("\ |
15080 | Set ignore-count of breakpoint number N to COUNT.\n\ | |
15081 | Usage is `ignore N COUNT'.")); | |
c906108c | 15082 | if (xdb_commands) |
c5aa993b | 15083 | add_com_alias ("bc", "ignore", class_breakpoint, 1); |
c906108c | 15084 | |
1bedd215 AC |
15085 | add_com ("commands", class_breakpoint, commands_command, _("\ |
15086 | Set commands to be executed when a breakpoint is hit.\n\ | |
c906108c SS |
15087 | Give breakpoint number as argument after \"commands\".\n\ |
15088 | With no argument, the targeted breakpoint is the last one set.\n\ | |
15089 | The commands themselves follow starting on the next line.\n\ | |
15090 | Type a line containing \"end\" to indicate the end of them.\n\ | |
15091 | Give \"silent\" as the first line to make the breakpoint silent;\n\ | |
1bedd215 | 15092 | then no output is printed when it is hit, except what the commands print.")); |
c906108c | 15093 | |
1bedd215 AC |
15094 | add_com ("condition", class_breakpoint, condition_command, _("\ |
15095 | Specify breakpoint number N to break only if COND is true.\n\ | |
c906108c | 15096 | Usage is `condition N COND', where N is an integer and COND is an\n\ |
1bedd215 | 15097 | expression to be evaluated whenever breakpoint N is reached.")); |
c906108c | 15098 | |
1bedd215 | 15099 | c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\ |
31e2b00f | 15100 | Set a temporary breakpoint.\n\ |
c906108c SS |
15101 | Like \"break\" except the breakpoint is only temporary,\n\ |
15102 | so it will be deleted when hit. Equivalent to \"break\" followed\n\ | |
31e2b00f AS |
15103 | by using \"enable delete\" on the breakpoint number.\n\ |
15104 | \n" | |
15105 | BREAK_ARGS_HELP ("tbreak"))); | |
5ba2abeb | 15106 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 15107 | |
1bedd215 | 15108 | c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\ |
a3be7890 | 15109 | Set a hardware assisted breakpoint.\n\ |
c906108c | 15110 | Like \"break\" except the breakpoint requires hardware support,\n\ |
31e2b00f AS |
15111 | some target hardware may not have this support.\n\ |
15112 | \n" | |
15113 | BREAK_ARGS_HELP ("hbreak"))); | |
5ba2abeb | 15114 | set_cmd_completer (c, location_completer); |
c906108c | 15115 | |
1bedd215 | 15116 | c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\ |
31e2b00f | 15117 | Set a temporary hardware assisted breakpoint.\n\ |
c906108c | 15118 | Like \"hbreak\" except the breakpoint is only temporary,\n\ |
31e2b00f AS |
15119 | so it will be deleted when hit.\n\ |
15120 | \n" | |
15121 | BREAK_ARGS_HELP ("thbreak"))); | |
5ba2abeb | 15122 | set_cmd_completer (c, location_completer); |
c906108c | 15123 | |
1bedd215 AC |
15124 | add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\ |
15125 | Enable some breakpoints.\n\ | |
c906108c SS |
15126 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15127 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
15128 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15129 | With a subcommand you can enable temporarily."), |
c906108c SS |
15130 | &enablelist, "enable ", 1, &cmdlist); |
15131 | if (xdb_commands) | |
1bedd215 AC |
15132 | add_com ("ab", class_breakpoint, enable_command, _("\ |
15133 | Enable some breakpoints.\n\ | |
c906108c SS |
15134 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15135 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
15136 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15137 | With a subcommand you can enable temporarily.")); |
c906108c SS |
15138 | |
15139 | add_com_alias ("en", "enable", class_breakpoint, 1); | |
15140 | ||
84951ab5 | 15141 | add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\ |
1bedd215 | 15142 | Enable some breakpoints.\n\ |
c906108c SS |
15143 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
15144 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 15145 | May be abbreviated to simply \"enable\".\n"), |
c5aa993b | 15146 | &enablebreaklist, "enable breakpoints ", 1, &enablelist); |
c906108c | 15147 | |
1a966eab AC |
15148 | add_cmd ("once", no_class, enable_once_command, _("\ |
15149 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
15150 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
c906108c SS |
15151 | &enablebreaklist); |
15152 | ||
1a966eab AC |
15153 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
15154 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
15155 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
15156 | &enablebreaklist); |
15157 | ||
816338b5 SS |
15158 | add_cmd ("count", no_class, enable_count_command, _("\ |
15159 | Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\ | |
15160 | If a breakpoint is hit while enabled in this fashion,\n\ | |
15161 | the count is decremented; when it reaches zero, the breakpoint is disabled."), | |
15162 | &enablebreaklist); | |
15163 | ||
1a966eab AC |
15164 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
15165 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
15166 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
15167 | &enablelist); |
15168 | ||
1a966eab AC |
15169 | add_cmd ("once", no_class, enable_once_command, _("\ |
15170 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
15171 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
816338b5 SS |
15172 | &enablelist); |
15173 | ||
15174 | add_cmd ("count", no_class, enable_count_command, _("\ | |
15175 | Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\ | |
15176 | If a breakpoint is hit while enabled in this fashion,\n\ | |
15177 | the count is decremented; when it reaches zero, the breakpoint is disabled."), | |
c906108c SS |
15178 | &enablelist); |
15179 | ||
1bedd215 AC |
15180 | add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\ |
15181 | Disable some breakpoints.\n\ | |
c906108c SS |
15182 | Arguments are breakpoint numbers with spaces in between.\n\ |
15183 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 15184 | A disabled breakpoint is not forgotten, but has no effect until re-enabled."), |
c906108c SS |
15185 | &disablelist, "disable ", 1, &cmdlist); |
15186 | add_com_alias ("dis", "disable", class_breakpoint, 1); | |
15187 | add_com_alias ("disa", "disable", class_breakpoint, 1); | |
15188 | if (xdb_commands) | |
1bedd215 AC |
15189 | add_com ("sb", class_breakpoint, disable_command, _("\ |
15190 | Disable some breakpoints.\n\ | |
c906108c SS |
15191 | Arguments are breakpoint numbers with spaces in between.\n\ |
15192 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 15193 | A disabled breakpoint is not forgotten, but has no effect until re-enabled.")); |
c906108c | 15194 | |
1a966eab AC |
15195 | add_cmd ("breakpoints", class_alias, disable_command, _("\ |
15196 | Disable some breakpoints.\n\ | |
c906108c SS |
15197 | Arguments are breakpoint numbers with spaces in between.\n\ |
15198 | To disable all breakpoints, give no argument.\n\ | |
64b9b334 | 15199 | A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\ |
1a966eab | 15200 | This command may be abbreviated \"disable\"."), |
c906108c SS |
15201 | &disablelist); |
15202 | ||
1bedd215 AC |
15203 | add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\ |
15204 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
15205 | Arguments are breakpoint numbers with spaces in between.\n\ |
15206 | To delete all breakpoints, give no argument.\n\ | |
15207 | \n\ | |
15208 | Also a prefix command for deletion of other GDB objects.\n\ | |
1bedd215 | 15209 | The \"unset\" command is also an alias for \"delete\"."), |
c906108c SS |
15210 | &deletelist, "delete ", 1, &cmdlist); |
15211 | add_com_alias ("d", "delete", class_breakpoint, 1); | |
7f198e01 | 15212 | add_com_alias ("del", "delete", class_breakpoint, 1); |
c906108c | 15213 | if (xdb_commands) |
1bedd215 AC |
15214 | add_com ("db", class_breakpoint, delete_command, _("\ |
15215 | Delete some breakpoints.\n\ | |
c906108c | 15216 | Arguments are breakpoint numbers with spaces in between.\n\ |
1bedd215 | 15217 | To delete all breakpoints, give no argument.\n")); |
c906108c | 15218 | |
1a966eab AC |
15219 | add_cmd ("breakpoints", class_alias, delete_command, _("\ |
15220 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
15221 | Arguments are breakpoint numbers with spaces in between.\n\ |
15222 | To delete all breakpoints, give no argument.\n\ | |
1a966eab | 15223 | This command may be abbreviated \"delete\"."), |
c906108c SS |
15224 | &deletelist); |
15225 | ||
1bedd215 AC |
15226 | add_com ("clear", class_breakpoint, clear_command, _("\ |
15227 | Clear breakpoint at specified line or function.\n\ | |
c906108c SS |
15228 | Argument may be line number, function name, or \"*\" and an address.\n\ |
15229 | If line number is specified, all breakpoints in that line are cleared.\n\ | |
15230 | If function is specified, breakpoints at beginning of function are cleared.\n\ | |
1bedd215 AC |
15231 | If an address is specified, breakpoints at that address are cleared.\n\ |
15232 | \n\ | |
15233 | With no argument, clears all breakpoints in the line that the selected frame\n\ | |
c906108c SS |
15234 | is executing in.\n\ |
15235 | \n\ | |
1bedd215 | 15236 | See also the \"delete\" command which clears breakpoints by number.")); |
a6cc4789 | 15237 | add_com_alias ("cl", "clear", class_breakpoint, 1); |
c906108c | 15238 | |
1bedd215 | 15239 | c = add_com ("break", class_breakpoint, break_command, _("\ |
31e2b00f AS |
15240 | Set breakpoint at specified line or function.\n" |
15241 | BREAK_ARGS_HELP ("break"))); | |
5ba2abeb | 15242 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 15243 | |
c906108c SS |
15244 | add_com_alias ("b", "break", class_run, 1); |
15245 | add_com_alias ("br", "break", class_run, 1); | |
15246 | add_com_alias ("bre", "break", class_run, 1); | |
15247 | add_com_alias ("brea", "break", class_run, 1); | |
15248 | ||
7681d515 PM |
15249 | if (xdb_commands) |
15250 | add_com_alias ("ba", "break", class_breakpoint, 1); | |
c906108c SS |
15251 | |
15252 | if (dbx_commands) | |
15253 | { | |
1bedd215 AC |
15254 | add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\ |
15255 | Break in function/address or break at a line in the current file."), | |
c5aa993b JM |
15256 | &stoplist, "stop ", 1, &cmdlist); |
15257 | add_cmd ("in", class_breakpoint, stopin_command, | |
1a966eab | 15258 | _("Break in function or address."), &stoplist); |
c5aa993b | 15259 | add_cmd ("at", class_breakpoint, stopat_command, |
1a966eab | 15260 | _("Break at a line in the current file."), &stoplist); |
1bedd215 AC |
15261 | add_com ("status", class_info, breakpoints_info, _("\ |
15262 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
15263 | The \"Type\" column indicates one of:\n\ |
15264 | \tbreakpoint - normal breakpoint\n\ | |
15265 | \twatchpoint - watchpoint\n\ | |
15266 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
15267 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
15268 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
15269 | address and file/line number respectively.\n\ |
15270 | \n\ | |
15271 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
15272 | are set to the address of the last breakpoint listed unless the command\n\ |
15273 | is prefixed with \"server \".\n\n\ | |
c906108c | 15274 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 15275 | breakpoint set.")); |
c906108c SS |
15276 | } |
15277 | ||
1bedd215 | 15278 | add_info ("breakpoints", breakpoints_info, _("\ |
e5a67952 | 15279 | Status of specified breakpoints (all user-settable breakpoints if no argument).\n\ |
c906108c SS |
15280 | The \"Type\" column indicates one of:\n\ |
15281 | \tbreakpoint - normal breakpoint\n\ | |
15282 | \twatchpoint - watchpoint\n\ | |
15283 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
15284 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
15285 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
15286 | address and file/line number respectively.\n\ |
15287 | \n\ | |
15288 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
15289 | are set to the address of the last breakpoint listed unless the command\n\ |
15290 | is prefixed with \"server \".\n\n\ | |
c906108c | 15291 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 15292 | breakpoint set.")); |
c906108c | 15293 | |
6b04bdb7 MS |
15294 | add_info_alias ("b", "breakpoints", 1); |
15295 | ||
c906108c | 15296 | if (xdb_commands) |
1bedd215 AC |
15297 | add_com ("lb", class_breakpoint, breakpoints_info, _("\ |
15298 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
15299 | The \"Type\" column indicates one of:\n\ |
15300 | \tbreakpoint - normal breakpoint\n\ | |
15301 | \twatchpoint - watchpoint\n\ | |
15302 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
15303 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
15304 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
15305 | address and file/line number respectively.\n\ |
15306 | \n\ | |
15307 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
15308 | are set to the address of the last breakpoint listed unless the command\n\ |
15309 | is prefixed with \"server \".\n\n\ | |
c906108c | 15310 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1bedd215 | 15311 | breakpoint set.")); |
c906108c | 15312 | |
1a966eab AC |
15313 | add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\ |
15314 | Status of all breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
15315 | The \"Type\" column indicates one of:\n\ |
15316 | \tbreakpoint - normal breakpoint\n\ | |
15317 | \twatchpoint - watchpoint\n\ | |
15318 | \tlongjmp - internal breakpoint used to step through longjmp()\n\ | |
15319 | \tlongjmp resume - internal breakpoint at the target of longjmp()\n\ | |
15320 | \tuntil - internal breakpoint used by the \"until\" command\n\ | |
1a966eab AC |
15321 | \tfinish - internal breakpoint used by the \"finish\" command\n\ |
15322 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
c906108c SS |
15323 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ |
15324 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1a966eab AC |
15325 | address and file/line number respectively.\n\ |
15326 | \n\ | |
15327 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
d1aa2f50 NR |
15328 | are set to the address of the last breakpoint listed unless the command\n\ |
15329 | is prefixed with \"server \".\n\n\ | |
c906108c | 15330 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1a966eab | 15331 | breakpoint set."), |
c906108c SS |
15332 | &maintenanceinfolist); |
15333 | ||
44feb3ce TT |
15334 | add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\ |
15335 | Set catchpoints to catch events."), | |
15336 | &catch_cmdlist, "catch ", | |
15337 | 0/*allow-unknown*/, &cmdlist); | |
15338 | ||
15339 | add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\ | |
15340 | Set temporary catchpoints to catch events."), | |
15341 | &tcatch_cmdlist, "tcatch ", | |
15342 | 0/*allow-unknown*/, &cmdlist); | |
15343 | ||
15344 | /* Add catch and tcatch sub-commands. */ | |
15345 | add_catch_command ("catch", _("\ | |
88e7d25d | 15346 | Catch an exception, when caught."), |
44feb3ce | 15347 | catch_catch_command, |
a96d9b2e | 15348 | NULL, |
44feb3ce TT |
15349 | CATCH_PERMANENT, |
15350 | CATCH_TEMPORARY); | |
15351 | add_catch_command ("throw", _("\ | |
88e7d25d | 15352 | Catch an exception, when thrown."), |
44feb3ce | 15353 | catch_throw_command, |
a96d9b2e | 15354 | NULL, |
44feb3ce TT |
15355 | CATCH_PERMANENT, |
15356 | CATCH_TEMPORARY); | |
15357 | add_catch_command ("fork", _("Catch calls to fork."), | |
15358 | catch_fork_command_1, | |
a96d9b2e | 15359 | NULL, |
44feb3ce TT |
15360 | (void *) (uintptr_t) catch_fork_permanent, |
15361 | (void *) (uintptr_t) catch_fork_temporary); | |
15362 | add_catch_command ("vfork", _("Catch calls to vfork."), | |
15363 | catch_fork_command_1, | |
a96d9b2e | 15364 | NULL, |
44feb3ce TT |
15365 | (void *) (uintptr_t) catch_vfork_permanent, |
15366 | (void *) (uintptr_t) catch_vfork_temporary); | |
15367 | add_catch_command ("exec", _("Catch calls to exec."), | |
15368 | catch_exec_command_1, | |
a96d9b2e SDJ |
15369 | NULL, |
15370 | CATCH_PERMANENT, | |
15371 | CATCH_TEMPORARY); | |
edcc5120 TT |
15372 | add_catch_command ("load", _("Catch loads of shared libraries.\n\ |
15373 | Usage: catch load [REGEX]\n\ | |
15374 | If REGEX is given, only stop for libraries matching the regular expression."), | |
15375 | catch_load_command_1, | |
15376 | NULL, | |
15377 | CATCH_PERMANENT, | |
15378 | CATCH_TEMPORARY); | |
15379 | add_catch_command ("unload", _("Catch unloads of shared libraries.\n\ | |
15380 | Usage: catch unload [REGEX]\n\ | |
15381 | If REGEX is given, only stop for libraries matching the regular expression."), | |
15382 | catch_unload_command_1, | |
15383 | NULL, | |
15384 | CATCH_PERMANENT, | |
15385 | CATCH_TEMPORARY); | |
a96d9b2e SDJ |
15386 | add_catch_command ("syscall", _("\ |
15387 | Catch system calls by their names and/or numbers.\n\ | |
15388 | Arguments say which system calls to catch. If no arguments\n\ | |
15389 | are given, every system call will be caught.\n\ | |
15390 | Arguments, if given, should be one or more system call names\n\ | |
15391 | (if your system supports that), or system call numbers."), | |
15392 | catch_syscall_command_1, | |
15393 | catch_syscall_completer, | |
44feb3ce TT |
15394 | CATCH_PERMANENT, |
15395 | CATCH_TEMPORARY); | |
c5aa993b | 15396 | |
1bedd215 AC |
15397 | c = add_com ("watch", class_breakpoint, watch_command, _("\ |
15398 | Set a watchpoint for an expression.\n\ | |
06a64a0b | 15399 | Usage: watch [-l|-location] EXPRESSION\n\ |
c906108c | 15400 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
15401 | an expression changes.\n\ |
15402 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
15403 | the memory to which it refers.")); | |
65d12d83 | 15404 | set_cmd_completer (c, expression_completer); |
c906108c | 15405 | |
1bedd215 AC |
15406 | c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\ |
15407 | Set a read watchpoint for an expression.\n\ | |
06a64a0b | 15408 | Usage: rwatch [-l|-location] EXPRESSION\n\ |
c906108c | 15409 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
15410 | an expression is read.\n\ |
15411 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
15412 | the memory to which it refers.")); | |
65d12d83 | 15413 | set_cmd_completer (c, expression_completer); |
c906108c | 15414 | |
1bedd215 AC |
15415 | c = add_com ("awatch", class_breakpoint, awatch_command, _("\ |
15416 | Set a watchpoint for an expression.\n\ | |
06a64a0b | 15417 | Usage: awatch [-l|-location] EXPRESSION\n\ |
c906108c | 15418 | A watchpoint stops execution of your program whenever the value of\n\ |
06a64a0b TT |
15419 | an expression is either read or written.\n\ |
15420 | If -l or -location is given, this evaluates EXPRESSION and watches\n\ | |
15421 | the memory to which it refers.")); | |
65d12d83 | 15422 | set_cmd_completer (c, expression_completer); |
c906108c | 15423 | |
d77f58be | 15424 | add_info ("watchpoints", watchpoints_info, _("\ |
e5a67952 | 15425 | Status of specified watchpoints (all watchpoints if no argument).")); |
c906108c | 15426 | |
920d2a44 AC |
15427 | /* XXX: cagney/2005-02-23: This should be a boolean, and should |
15428 | respond to changes - contrary to the description. */ | |
85c07804 AC |
15429 | add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support, |
15430 | &can_use_hw_watchpoints, _("\ | |
15431 | Set debugger's willingness to use watchpoint hardware."), _("\ | |
15432 | Show debugger's willingness to use watchpoint hardware."), _("\ | |
c906108c SS |
15433 | If zero, gdb will not use hardware for new watchpoints, even if\n\ |
15434 | such is available. (However, any hardware watchpoints that were\n\ | |
15435 | created before setting this to nonzero, will continue to use watchpoint\n\ | |
85c07804 AC |
15436 | hardware.)"), |
15437 | NULL, | |
920d2a44 | 15438 | show_can_use_hw_watchpoints, |
85c07804 | 15439 | &setlist, &showlist); |
c906108c SS |
15440 | |
15441 | can_use_hw_watchpoints = 1; | |
fa8d40ab | 15442 | |
1042e4c0 SS |
15443 | /* Tracepoint manipulation commands. */ |
15444 | ||
15445 | c = add_com ("trace", class_breakpoint, trace_command, _("\ | |
15446 | Set a tracepoint at specified line or function.\n\ | |
15447 | \n" | |
15448 | BREAK_ARGS_HELP ("trace") "\n\ | |
15449 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
15450 | set_cmd_completer (c, location_completer); | |
15451 | ||
15452 | add_com_alias ("tp", "trace", class_alias, 0); | |
15453 | add_com_alias ("tr", "trace", class_alias, 1); | |
15454 | add_com_alias ("tra", "trace", class_alias, 1); | |
15455 | add_com_alias ("trac", "trace", class_alias, 1); | |
15456 | ||
7a697b8d SS |
15457 | c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\ |
15458 | Set a fast tracepoint at specified line or function.\n\ | |
15459 | \n" | |
15460 | BREAK_ARGS_HELP ("ftrace") "\n\ | |
15461 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
15462 | set_cmd_completer (c, location_completer); | |
15463 | ||
0fb4aa4b PA |
15464 | c = add_com ("strace", class_breakpoint, strace_command, _("\ |
15465 | Set a static tracepoint at specified line, function or marker.\n\ | |
15466 | \n\ | |
15467 | strace [LOCATION] [if CONDITION]\n\ | |
15468 | LOCATION may be a line number, function name, \"*\" and an address,\n\ | |
15469 | or -m MARKER_ID.\n\ | |
15470 | If a line number is specified, probe the marker at start of code\n\ | |
15471 | for that line. If a function is specified, probe the marker at start\n\ | |
15472 | of code for that function. If an address is specified, probe the marker\n\ | |
15473 | at that exact address. If a marker id is specified, probe the marker\n\ | |
15474 | with that name. With no LOCATION, uses current execution address of\n\ | |
15475 | the selected stack frame.\n\ | |
15476 | Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\ | |
15477 | This collects arbitrary user data passed in the probe point call to the\n\ | |
15478 | tracing library. You can inspect it when analyzing the trace buffer,\n\ | |
15479 | by printing the $_sdata variable like any other convenience variable.\n\ | |
15480 | \n\ | |
15481 | CONDITION is a boolean expression.\n\ | |
15482 | \n\ | |
d41c0fc8 PA |
15483 | Multiple tracepoints at one place are permitted, and useful if their\n\ |
15484 | conditions are different.\n\ | |
0fb4aa4b PA |
15485 | \n\ |
15486 | Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\ | |
15487 | Do \"help tracepoints\" for info on other tracepoint commands.")); | |
15488 | set_cmd_completer (c, location_completer); | |
15489 | ||
1042e4c0 | 15490 | add_info ("tracepoints", tracepoints_info, _("\ |
e5a67952 | 15491 | Status of specified tracepoints (all tracepoints if no argument).\n\ |
1042e4c0 SS |
15492 | Convenience variable \"$tpnum\" contains the number of the\n\ |
15493 | last tracepoint set.")); | |
15494 | ||
15495 | add_info_alias ("tp", "tracepoints", 1); | |
15496 | ||
15497 | add_cmd ("tracepoints", class_trace, delete_trace_command, _("\ | |
15498 | Delete specified tracepoints.\n\ | |
15499 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
15500 | No argument means delete all tracepoints."), | |
15501 | &deletelist); | |
15502 | ||
15503 | c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\ | |
15504 | Disable specified tracepoints.\n\ | |
15505 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
15506 | No argument means disable all tracepoints."), | |
15507 | &disablelist); | |
15508 | deprecate_cmd (c, "disable"); | |
15509 | ||
15510 | c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\ | |
15511 | Enable specified tracepoints.\n\ | |
15512 | Arguments are tracepoint numbers, separated by spaces.\n\ | |
15513 | No argument means enable all tracepoints."), | |
15514 | &enablelist); | |
15515 | deprecate_cmd (c, "enable"); | |
15516 | ||
15517 | add_com ("passcount", class_trace, trace_pass_command, _("\ | |
15518 | Set the passcount for a tracepoint.\n\ | |
15519 | The trace will end when the tracepoint has been passed 'count' times.\n\ | |
15520 | Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\ | |
15521 | if TPNUM is omitted, passcount refers to the last tracepoint defined.")); | |
15522 | ||
6149aea9 PA |
15523 | add_prefix_cmd ("save", class_breakpoint, save_command, |
15524 | _("Save breakpoint definitions as a script."), | |
15525 | &save_cmdlist, "save ", | |
15526 | 0/*allow-unknown*/, &cmdlist); | |
15527 | ||
15528 | c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\ | |
15529 | Save current breakpoint definitions as a script.\n\ | |
cce7e648 | 15530 | This includes all types of breakpoints (breakpoints, watchpoints,\n\ |
6149aea9 PA |
15531 | catchpoints, tracepoints). Use the 'source' command in another debug\n\ |
15532 | session to restore them."), | |
15533 | &save_cmdlist); | |
15534 | set_cmd_completer (c, filename_completer); | |
15535 | ||
15536 | c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\ | |
1042e4c0 | 15537 | Save current tracepoint definitions as a script.\n\ |
6149aea9 PA |
15538 | Use the 'source' command in another debug session to restore them."), |
15539 | &save_cmdlist); | |
1042e4c0 SS |
15540 | set_cmd_completer (c, filename_completer); |
15541 | ||
6149aea9 PA |
15542 | c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0); |
15543 | deprecate_cmd (c, "save tracepoints"); | |
15544 | ||
1bedd215 | 15545 | add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\ |
fa8d40ab JJ |
15546 | Breakpoint specific settings\n\ |
15547 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 15548 | pending breakpoint behavior"), |
fa8d40ab JJ |
15549 | &breakpoint_set_cmdlist, "set breakpoint ", |
15550 | 0/*allow-unknown*/, &setlist); | |
1bedd215 | 15551 | add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\ |
fa8d40ab JJ |
15552 | Breakpoint specific settings\n\ |
15553 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 15554 | pending breakpoint behavior"), |
fa8d40ab JJ |
15555 | &breakpoint_show_cmdlist, "show breakpoint ", |
15556 | 0/*allow-unknown*/, &showlist); | |
15557 | ||
7915a72c AC |
15558 | add_setshow_auto_boolean_cmd ("pending", no_class, |
15559 | &pending_break_support, _("\ | |
15560 | Set debugger's behavior regarding pending breakpoints."), _("\ | |
15561 | Show debugger's behavior regarding pending breakpoints."), _("\ | |
6e1d7d6c AC |
15562 | If on, an unrecognized breakpoint location will cause gdb to create a\n\ |
15563 | pending breakpoint. If off, an unrecognized breakpoint location results in\n\ | |
15564 | an error. If auto, an unrecognized breakpoint location results in a\n\ | |
7915a72c | 15565 | user-query to see if a pending breakpoint should be created."), |
2c5b56ce | 15566 | NULL, |
920d2a44 | 15567 | show_pending_break_support, |
6e1d7d6c AC |
15568 | &breakpoint_set_cmdlist, |
15569 | &breakpoint_show_cmdlist); | |
fa8d40ab JJ |
15570 | |
15571 | pending_break_support = AUTO_BOOLEAN_AUTO; | |
765dc015 VP |
15572 | |
15573 | add_setshow_boolean_cmd ("auto-hw", no_class, | |
15574 | &automatic_hardware_breakpoints, _("\ | |
15575 | Set automatic usage of hardware breakpoints."), _("\ | |
15576 | Show automatic usage of hardware breakpoints."), _("\ | |
15577 | If set, the debugger will automatically use hardware breakpoints for\n\ | |
15578 | breakpoints set with \"break\" but falling in read-only memory. If not set,\n\ | |
15579 | a warning will be emitted for such breakpoints."), | |
15580 | NULL, | |
15581 | show_automatic_hardware_breakpoints, | |
15582 | &breakpoint_set_cmdlist, | |
15583 | &breakpoint_show_cmdlist); | |
74960c60 | 15584 | |
33e5cbd6 PA |
15585 | add_setshow_enum_cmd ("always-inserted", class_support, |
15586 | always_inserted_enums, &always_inserted_mode, _("\ | |
74960c60 VP |
15587 | Set mode for inserting breakpoints."), _("\ |
15588 | Show mode for inserting breakpoints."), _("\ | |
33e5cbd6 PA |
15589 | When this mode is off, breakpoints are inserted in inferior when it is\n\ |
15590 | resumed, and removed when execution stops. When this mode is on,\n\ | |
15591 | breakpoints are inserted immediately and removed only when the user\n\ | |
15592 | deletes the breakpoint. When this mode is auto (which is the default),\n\ | |
15593 | the behaviour depends on the non-stop setting (see help set non-stop).\n\ | |
15594 | In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\ | |
15595 | behaves as if always-inserted mode is on; if gdb is controlling the\n\ | |
15596 | inferior in all-stop mode, gdb behaves as if always-inserted mode is off."), | |
74960c60 VP |
15597 | NULL, |
15598 | &show_always_inserted_mode, | |
15599 | &breakpoint_set_cmdlist, | |
15600 | &breakpoint_show_cmdlist); | |
f1310107 | 15601 | |
b775012e LM |
15602 | add_setshow_enum_cmd ("condition-evaluation", class_breakpoint, |
15603 | condition_evaluation_enums, | |
15604 | &condition_evaluation_mode_1, _("\ | |
15605 | Set mode of breakpoint condition evaluation."), _("\ | |
15606 | Show mode of breakpoint condition evaluation."), _("\ | |
d1cda5d9 | 15607 | When this is set to \"host\", breakpoint conditions will be\n\ |
b775012e LM |
15608 | evaluated on the host's side by GDB. When it is set to \"target\",\n\ |
15609 | breakpoint conditions will be downloaded to the target (if the target\n\ | |
15610 | supports such feature) and conditions will be evaluated on the target's side.\n\ | |
15611 | If this is set to \"auto\" (default), this will be automatically set to\n\ | |
15612 | \"target\" if it supports condition evaluation, otherwise it will\n\ | |
15613 | be set to \"gdb\""), | |
15614 | &set_condition_evaluation_mode, | |
15615 | &show_condition_evaluation_mode, | |
15616 | &breakpoint_set_cmdlist, | |
15617 | &breakpoint_show_cmdlist); | |
15618 | ||
f1310107 TJB |
15619 | add_com ("break-range", class_breakpoint, break_range_command, _("\ |
15620 | Set a breakpoint for an address range.\n\ | |
15621 | break-range START-LOCATION, END-LOCATION\n\ | |
15622 | where START-LOCATION and END-LOCATION can be one of the following:\n\ | |
15623 | LINENUM, for that line in the current file,\n\ | |
15624 | FILE:LINENUM, for that line in that file,\n\ | |
15625 | +OFFSET, for that number of lines after the current line\n\ | |
15626 | or the start of the range\n\ | |
15627 | FUNCTION, for the first line in that function,\n\ | |
15628 | FILE:FUNCTION, to distinguish among like-named static functions.\n\ | |
15629 | *ADDRESS, for the instruction at that address.\n\ | |
15630 | \n\ | |
15631 | The breakpoint will stop execution of the inferior whenever it executes\n\ | |
15632 | an instruction at any address within the [START-LOCATION, END-LOCATION]\n\ | |
15633 | range (including START-LOCATION and END-LOCATION).")); | |
15634 | ||
765dc015 | 15635 | automatic_hardware_breakpoints = 1; |
f3b1572e PA |
15636 | |
15637 | observer_attach_about_to_proceed (breakpoint_about_to_proceed); | |
c906108c | 15638 | } |