]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Everything about breakpoints, for GDB. |
8926118c AC |
2 | |
3 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, | |
05ff989b | 4 | 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 |
e74f0f02 | 5 | Free Software Foundation, Inc. |
c906108c | 6 | |
c5aa993b | 7 | This file is part of GDB. |
c906108c | 8 | |
c5aa993b JM |
9 | This program is free software; you can redistribute it and/or modify |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 2 of the License, or | |
12 | (at your option) any later version. | |
c906108c | 13 | |
c5aa993b JM |
14 | This program is distributed in the hope that it will be useful, |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
c906108c | 18 | |
c5aa993b JM |
19 | You should have received a copy of the GNU General Public License |
20 | along with this program; if not, write to the Free Software | |
21 | Foundation, Inc., 59 Temple Place - Suite 330, | |
22 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
23 | |
24 | #include "defs.h" | |
25 | #include <ctype.h> | |
26 | #include "symtab.h" | |
27 | #include "frame.h" | |
28 | #include "breakpoint.h" | |
29 | #include "gdbtypes.h" | |
30 | #include "expression.h" | |
31 | #include "gdbcore.h" | |
32 | #include "gdbcmd.h" | |
33 | #include "value.h" | |
34 | #include "command.h" | |
35 | #include "inferior.h" | |
36 | #include "gdbthread.h" | |
37 | #include "target.h" | |
38 | #include "language.h" | |
39 | #include "gdb_string.h" | |
40 | #include "demangle.h" | |
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" |
84acb35a JJ |
52 | #include "solist.h" |
53 | #include "observer.h" | |
60250e8b | 54 | #include "exceptions.h" |
c906108c | 55 | |
104c1213 JM |
56 | #include "gdb-events.h" |
57 | ||
c906108c SS |
58 | /* Prototypes for local functions. */ |
59 | ||
c2c6d25f JM |
60 | static void until_break_command_continuation (struct continuation_arg *arg); |
61 | ||
a14ed312 | 62 | static void catch_command_1 (char *, int, int); |
c906108c | 63 | |
a14ed312 | 64 | static void enable_delete_command (char *, int); |
c906108c | 65 | |
a14ed312 | 66 | static void enable_delete_breakpoint (struct breakpoint *); |
c906108c | 67 | |
a14ed312 | 68 | static void enable_once_command (char *, int); |
c906108c | 69 | |
a14ed312 | 70 | static void enable_once_breakpoint (struct breakpoint *); |
c906108c | 71 | |
a14ed312 | 72 | static void disable_command (char *, int); |
c906108c | 73 | |
a14ed312 | 74 | static void enable_command (char *, int); |
c906108c | 75 | |
a14ed312 | 76 | static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *)); |
c906108c | 77 | |
a14ed312 | 78 | static void ignore_command (char *, int); |
c906108c | 79 | |
4efb68b1 | 80 | static int breakpoint_re_set_one (void *); |
c906108c | 81 | |
a14ed312 | 82 | static void clear_command (char *, int); |
c906108c | 83 | |
a14ed312 | 84 | static void catch_command (char *, int); |
c906108c | 85 | |
a14ed312 | 86 | static void watch_command (char *, int); |
c906108c | 87 | |
a14ed312 | 88 | static int can_use_hardware_watchpoint (struct value *); |
c906108c | 89 | |
0101ce28 | 90 | static int break_command_1 (char *, int, int, struct breakpoint *); |
c906108c | 91 | |
a14ed312 | 92 | static void mention (struct breakpoint *); |
c906108c | 93 | |
4d28f7a8 | 94 | struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype); |
c906108c | 95 | |
9f60f21b | 96 | static void check_duplicates (struct breakpoint *); |
c906108c | 97 | |
76897487 KB |
98 | static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int); |
99 | ||
88f7da05 KB |
100 | static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr, |
101 | enum bptype bptype); | |
76897487 | 102 | |
a14ed312 | 103 | static void describe_other_breakpoints (CORE_ADDR, asection *); |
c906108c | 104 | |
a14ed312 | 105 | static void breakpoints_info (char *, int); |
c906108c | 106 | |
a14ed312 | 107 | static void breakpoint_1 (int, int); |
c906108c | 108 | |
a14ed312 | 109 | static bpstat bpstat_alloc (struct breakpoint *, bpstat); |
c906108c | 110 | |
4efb68b1 | 111 | static int breakpoint_cond_eval (void *); |
c906108c | 112 | |
4efb68b1 | 113 | static void cleanup_executing_breakpoints (void *); |
c906108c | 114 | |
a14ed312 | 115 | static void commands_command (char *, int); |
c906108c | 116 | |
a14ed312 | 117 | static void condition_command (char *, int); |
c906108c | 118 | |
a14ed312 | 119 | static int get_number_trailer (char **, int); |
c906108c | 120 | |
a14ed312 | 121 | void set_breakpoint_count (int); |
c906108c | 122 | |
c5aa993b JM |
123 | typedef enum |
124 | { | |
125 | mark_inserted, | |
126 | mark_uninserted | |
127 | } | |
128 | insertion_state_t; | |
c906108c | 129 | |
0bde7532 | 130 | static int remove_breakpoint (struct bp_location *, insertion_state_t); |
c906108c | 131 | |
a14ed312 | 132 | static enum print_stop_action print_it_typical (bpstat); |
e514a9d6 JM |
133 | |
134 | static enum print_stop_action print_bp_stop_message (bpstat bs); | |
c906108c | 135 | |
c5aa993b JM |
136 | typedef struct |
137 | { | |
138 | enum exception_event_kind kind; | |
b5de0fa7 | 139 | int enable_p; |
c5aa993b JM |
140 | } |
141 | args_for_catchpoint_enable; | |
c906108c | 142 | |
4efb68b1 | 143 | static int watchpoint_check (void *); |
c906108c | 144 | |
4efb68b1 | 145 | static int cover_target_enable_exception_callback (void *); |
c906108c | 146 | |
a14ed312 | 147 | static void maintenance_info_breakpoints (char *, int); |
c906108c | 148 | |
a14ed312 | 149 | static void create_longjmp_breakpoint (char *); |
c906108c | 150 | |
1900040c MS |
151 | static void create_overlay_event_breakpoint (char *); |
152 | ||
a14ed312 | 153 | static int hw_breakpoint_used_count (void); |
c906108c | 154 | |
a14ed312 | 155 | static int hw_watchpoint_used_count (enum bptype, int *); |
c906108c | 156 | |
a14ed312 | 157 | static void hbreak_command (char *, int); |
c906108c | 158 | |
a14ed312 | 159 | static void thbreak_command (char *, int); |
c906108c | 160 | |
a14ed312 | 161 | static void watch_command_1 (char *, int, int); |
c906108c | 162 | |
a14ed312 | 163 | static void rwatch_command (char *, int); |
c906108c | 164 | |
a14ed312 | 165 | static void awatch_command (char *, int); |
c906108c | 166 | |
a14ed312 | 167 | static void do_enable_breakpoint (struct breakpoint *, enum bpdisp); |
c906108c | 168 | |
a14ed312 KB |
169 | static void solib_load_unload_1 (char *hookname, |
170 | int tempflag, | |
171 | char *dll_pathname, | |
172 | char *cond_string, enum bptype bp_kind); | |
7a292a7a | 173 | |
a14ed312 KB |
174 | static void create_fork_vfork_event_catchpoint (int tempflag, |
175 | char *cond_string, | |
176 | enum bptype bp_kind); | |
7a292a7a | 177 | |
a14ed312 | 178 | static void stop_command (char *arg, int from_tty); |
7a292a7a | 179 | |
a14ed312 | 180 | static void stopin_command (char *arg, int from_tty); |
7a292a7a | 181 | |
a14ed312 | 182 | static void stopat_command (char *arg, int from_tty); |
7a292a7a | 183 | |
a14ed312 | 184 | static char *ep_find_event_name_end (char *arg); |
7a292a7a | 185 | |
a14ed312 | 186 | static char *ep_parse_optional_if_clause (char **arg); |
7a292a7a | 187 | |
a14ed312 | 188 | static char *ep_parse_optional_filename (char **arg); |
7a292a7a | 189 | |
d85310f7 MS |
190 | static void create_exception_catchpoint (int tempflag, char *cond_string, |
191 | enum exception_event_kind ex_event, | |
192 | struct symtab_and_line *sal); | |
7a292a7a | 193 | |
d85310f7 MS |
194 | static void catch_exception_command_1 (enum exception_event_kind ex_event, |
195 | char *arg, int tempflag, int from_tty); | |
7a292a7a | 196 | |
a14ed312 | 197 | static void tcatch_command (char *arg, int from_tty); |
7a292a7a | 198 | |
a14ed312 | 199 | static void ep_skip_leading_whitespace (char **s); |
7a292a7a | 200 | |
c906108c SS |
201 | /* Prototypes for exported functions. */ |
202 | ||
c906108c SS |
203 | /* If FALSE, gdb will not use hardware support for watchpoints, even |
204 | if such is available. */ | |
205 | static int can_use_hw_watchpoints; | |
206 | ||
920d2a44 AC |
207 | static void |
208 | show_can_use_hw_watchpoints (struct ui_file *file, int from_tty, | |
209 | struct cmd_list_element *c, | |
210 | const char *value) | |
211 | { | |
212 | fprintf_filtered (file, _("\ | |
213 | Debugger's willingness to use watchpoint hardware is %s.\n"), | |
214 | value); | |
215 | } | |
216 | ||
fa8d40ab JJ |
217 | /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints. |
218 | If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints | |
219 | for unrecognized breakpoint locations. | |
220 | If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */ | |
221 | static enum auto_boolean pending_break_support; | |
920d2a44 AC |
222 | static void |
223 | show_pending_break_support (struct ui_file *file, int from_tty, | |
224 | struct cmd_list_element *c, | |
225 | const char *value) | |
226 | { | |
227 | fprintf_filtered (file, _("\ | |
228 | Debugger's behavior regarding pending breakpoints is %s.\n"), | |
229 | value); | |
230 | } | |
fa8d40ab | 231 | |
a14ed312 | 232 | void _initialize_breakpoint (void); |
c906108c | 233 | |
c5aa993b | 234 | extern int addressprint; /* Print machine addresses? */ |
c906108c | 235 | |
c906108c SS |
236 | /* Are we executing breakpoint commands? */ |
237 | static int executing_breakpoint_commands; | |
238 | ||
c02f5703 MS |
239 | /* Are overlay event breakpoints enabled? */ |
240 | static int overlay_events_enabled; | |
241 | ||
c906108c SS |
242 | /* Walk the following statement or block through all breakpoints. |
243 | ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current | |
244 | breakpoint. */ | |
245 | ||
5c44784c | 246 | #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next) |
c906108c | 247 | |
5c44784c JM |
248 | #define ALL_BREAKPOINTS_SAFE(B,TMP) \ |
249 | for (B = breakpoint_chain; \ | |
250 | B ? (TMP=B->next, 1): 0; \ | |
251 | B = TMP) | |
c906108c | 252 | |
7cc221ef DJ |
253 | /* Similar iterators for the low-level breakpoints. */ |
254 | ||
255 | #define ALL_BP_LOCATIONS(B) for (B = bp_location_chain; B; B = B->next) | |
256 | ||
257 | #define ALL_BP_LOCATIONS_SAFE(B,TMP) \ | |
258 | for (B = bp_location_chain; \ | |
259 | B ? (TMP=B->next, 1): 0; \ | |
260 | B = TMP) | |
261 | ||
c906108c SS |
262 | /* True if breakpoint hit counts should be displayed in breakpoint info. */ |
263 | ||
264 | int show_breakpoint_hit_counts = 1; | |
265 | ||
7cc221ef | 266 | /* Chains of all breakpoints defined. */ |
c906108c SS |
267 | |
268 | struct breakpoint *breakpoint_chain; | |
269 | ||
7cc221ef DJ |
270 | struct bp_location *bp_location_chain; |
271 | ||
c906108c SS |
272 | /* Number of last breakpoint made. */ |
273 | ||
274 | int breakpoint_count; | |
275 | ||
c5aa993b JM |
276 | /* Pointer to current exception event record */ |
277 | static struct exception_event_record *current_exception_event; | |
c906108c | 278 | |
f83f82bc AC |
279 | /* Indicator of whether exception catchpoints should be nuked between |
280 | runs of a program. */ | |
281 | int deprecated_exception_catchpoints_are_fragile = 0; | |
c5aa993b | 282 | |
c906108c | 283 | /* Indicator of when exception catchpoints set-up should be |
f83f82bc AC |
284 | reinitialized -- e.g. when program is re-run. */ |
285 | int deprecated_exception_support_initialized = 0; | |
c906108c SS |
286 | |
287 | /* This function returns a pointer to the string representation of the | |
288 | pathname of the dynamically-linked library that has just been | |
289 | loaded. | |
290 | ||
291 | This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE, | |
292 | or undefined results are guaranteed. | |
293 | ||
294 | This string's contents are only valid immediately after the | |
295 | inferior has stopped in the dynamic linker hook, and becomes | |
296 | invalid as soon as the inferior is continued. Clients should make | |
297 | a copy of this string if they wish to continue the inferior and | |
298 | then access the string. */ | |
299 | ||
300 | #ifndef SOLIB_LOADED_LIBRARY_PATHNAME | |
301 | #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) "" | |
302 | #endif | |
303 | ||
304 | /* This function returns a pointer to the string representation of the | |
305 | pathname of the dynamically-linked library that has just been | |
306 | unloaded. | |
307 | ||
308 | This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is | |
309 | TRUE, or undefined results are guaranteed. | |
310 | ||
311 | This string's contents are only valid immediately after the | |
312 | inferior has stopped in the dynamic linker hook, and becomes | |
313 | invalid as soon as the inferior is continued. Clients should make | |
314 | a copy of this string if they wish to continue the inferior and | |
315 | then access the string. */ | |
316 | ||
317 | #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME | |
318 | #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) "" | |
319 | #endif | |
320 | ||
321 | /* This function is called by the "catch load" command. It allows the | |
322 | debugger to be notified by the dynamic linker when a specified | |
323 | library file (or any library file, if filename is NULL) is loaded. */ | |
324 | ||
325 | #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK | |
326 | #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \ | |
8a3fe4f8 | 327 | error (_("catch of library loads not yet implemented on this platform")) |
c906108c SS |
328 | #endif |
329 | ||
330 | /* This function is called by the "catch unload" command. It allows | |
331 | the debugger to be notified by the dynamic linker when a specified | |
332 | library file (or any library file, if filename is NULL) is | |
333 | unloaded. */ | |
334 | ||
335 | #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK | |
1272ad14 | 336 | #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \ |
8a3fe4f8 | 337 | error (_("catch of library unloads not yet implemented on this platform")) |
c906108c SS |
338 | #endif |
339 | ||
468d015d JJ |
340 | /* Return whether a breakpoint is an active enabled breakpoint. */ |
341 | static int | |
342 | breakpoint_enabled (struct breakpoint *b) | |
343 | { | |
0101ce28 | 344 | return (b->enable_state == bp_enabled && !b->pending); |
468d015d JJ |
345 | } |
346 | ||
c906108c SS |
347 | /* Set breakpoint count to NUM. */ |
348 | ||
349 | void | |
fba45db2 | 350 | set_breakpoint_count (int num) |
c906108c SS |
351 | { |
352 | breakpoint_count = num; | |
353 | set_internalvar (lookup_internalvar ("bpnum"), | |
354 | value_from_longest (builtin_type_int, (LONGEST) num)); | |
355 | } | |
356 | ||
357 | /* Used in run_command to zero the hit count when a new run starts. */ | |
358 | ||
359 | void | |
fba45db2 | 360 | clear_breakpoint_hit_counts (void) |
c906108c SS |
361 | { |
362 | struct breakpoint *b; | |
363 | ||
364 | ALL_BREAKPOINTS (b) | |
365 | b->hit_count = 0; | |
366 | } | |
367 | ||
368 | /* Default address, symtab and line to put a breakpoint at | |
369 | for "break" command with no arg. | |
370 | if default_breakpoint_valid is zero, the other three are | |
371 | not valid, and "break" with no arg is an error. | |
372 | ||
373 | This set by print_stack_frame, which calls set_default_breakpoint. */ | |
374 | ||
375 | int default_breakpoint_valid; | |
376 | CORE_ADDR default_breakpoint_address; | |
377 | struct symtab *default_breakpoint_symtab; | |
378 | int default_breakpoint_line; | |
379 | \f | |
380 | /* *PP is a string denoting a breakpoint. Get the number of the breakpoint. | |
381 | Advance *PP after the string and any trailing whitespace. | |
382 | ||
383 | Currently the string can either be a number or "$" followed by the name | |
384 | of a convenience variable. Making it an expression wouldn't work well | |
5c44784c JM |
385 | for map_breakpoint_numbers (e.g. "4 + 5 + 6"). |
386 | ||
387 | TRAILER is a character which can be found after the number; most | |
388 | commonly this is `-'. If you don't want a trailer, use \0. */ | |
c906108c | 389 | static int |
fba45db2 | 390 | get_number_trailer (char **pp, int trailer) |
c906108c | 391 | { |
5c44784c | 392 | int retval = 0; /* default */ |
c906108c SS |
393 | char *p = *pp; |
394 | ||
395 | if (p == NULL) | |
396 | /* Empty line means refer to the last breakpoint. */ | |
397 | return breakpoint_count; | |
398 | else if (*p == '$') | |
399 | { | |
400 | /* Make a copy of the name, so we can null-terminate it | |
c5aa993b | 401 | to pass to lookup_internalvar(). */ |
c906108c SS |
402 | char *varname; |
403 | char *start = ++p; | |
278cd55f | 404 | struct value *val; |
c906108c SS |
405 | |
406 | while (isalnum (*p) || *p == '_') | |
407 | p++; | |
408 | varname = (char *) alloca (p - start + 1); | |
409 | strncpy (varname, start, p - start); | |
410 | varname[p - start] = '\0'; | |
411 | val = value_of_internalvar (lookup_internalvar (varname)); | |
df407dfe | 412 | if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT) |
5c44784c JM |
413 | retval = (int) value_as_long (val); |
414 | else | |
415 | { | |
a3f17187 | 416 | printf_filtered (_("Convenience variable must have integer value.\n")); |
5c44784c JM |
417 | retval = 0; |
418 | } | |
c906108c SS |
419 | } |
420 | else | |
421 | { | |
422 | if (*p == '-') | |
423 | ++p; | |
424 | while (*p >= '0' && *p <= '9') | |
425 | ++p; | |
426 | if (p == *pp) | |
427 | /* There is no number here. (e.g. "cond a == b"). */ | |
5c44784c JM |
428 | { |
429 | /* Skip non-numeric token */ | |
430 | while (*p && !isspace((int) *p)) | |
431 | ++p; | |
432 | /* Return zero, which caller must interpret as error. */ | |
433 | retval = 0; | |
434 | } | |
435 | else | |
436 | retval = atoi (*pp); | |
437 | } | |
438 | if (!(isspace (*p) || *p == '\0' || *p == trailer)) | |
439 | { | |
440 | /* Trailing junk: return 0 and let caller print error msg. */ | |
441 | while (!(isspace (*p) || *p == '\0' || *p == trailer)) | |
442 | ++p; | |
443 | retval = 0; | |
c906108c | 444 | } |
c906108c SS |
445 | while (isspace (*p)) |
446 | p++; | |
447 | *pp = p; | |
448 | return retval; | |
449 | } | |
5c44784c | 450 | |
11cf8741 | 451 | |
5c44784c JM |
452 | /* Like get_number_trailer, but don't allow a trailer. */ |
453 | int | |
fba45db2 | 454 | get_number (char **pp) |
5c44784c JM |
455 | { |
456 | return get_number_trailer (pp, '\0'); | |
457 | } | |
458 | ||
459 | /* Parse a number or a range. | |
460 | * A number will be of the form handled by get_number. | |
461 | * A range will be of the form <number1> - <number2>, and | |
462 | * will represent all the integers between number1 and number2, | |
463 | * inclusive. | |
464 | * | |
465 | * While processing a range, this fuction is called iteratively; | |
466 | * At each call it will return the next value in the range. | |
467 | * | |
468 | * At the beginning of parsing a range, the char pointer PP will | |
469 | * be advanced past <number1> and left pointing at the '-' token. | |
470 | * Subsequent calls will not advance the pointer until the range | |
471 | * is completed. The call that completes the range will advance | |
472 | * pointer PP past <number2>. | |
473 | */ | |
474 | ||
475 | int | |
fba45db2 | 476 | get_number_or_range (char **pp) |
5c44784c JM |
477 | { |
478 | static int last_retval, end_value; | |
479 | static char *end_ptr; | |
480 | static int in_range = 0; | |
481 | ||
482 | if (**pp != '-') | |
483 | { | |
484 | /* Default case: pp is pointing either to a solo number, | |
485 | or to the first number of a range. */ | |
486 | last_retval = get_number_trailer (pp, '-'); | |
487 | if (**pp == '-') | |
488 | { | |
489 | char **temp; | |
490 | ||
491 | /* This is the start of a range (<number1> - <number2>). | |
492 | Skip the '-', parse and remember the second number, | |
493 | and also remember the end of the final token. */ | |
494 | ||
495 | temp = &end_ptr; | |
496 | end_ptr = *pp + 1; | |
497 | while (isspace ((int) *end_ptr)) | |
498 | end_ptr++; /* skip white space */ | |
499 | end_value = get_number (temp); | |
500 | if (end_value < last_retval) | |
501 | { | |
8a3fe4f8 | 502 | error (_("inverted range")); |
5c44784c JM |
503 | } |
504 | else if (end_value == last_retval) | |
505 | { | |
506 | /* degenerate range (number1 == number2). Advance the | |
507 | token pointer so that the range will be treated as a | |
508 | single number. */ | |
509 | *pp = end_ptr; | |
510 | } | |
511 | else | |
512 | in_range = 1; | |
513 | } | |
514 | } | |
515 | else if (! in_range) | |
8a3fe4f8 | 516 | error (_("negative value")); |
5c44784c JM |
517 | else |
518 | { | |
519 | /* pp points to the '-' that betokens a range. All | |
520 | number-parsing has already been done. Return the next | |
521 | integer value (one greater than the saved previous value). | |
522 | Do not advance the token pointer 'pp' until the end of range | |
523 | is reached. */ | |
524 | ||
525 | if (++last_retval == end_value) | |
526 | { | |
527 | /* End of range reached; advance token pointer. */ | |
528 | *pp = end_ptr; | |
529 | in_range = 0; | |
530 | } | |
531 | } | |
532 | return last_retval; | |
533 | } | |
534 | ||
535 | ||
c906108c SS |
536 | \f |
537 | /* condition N EXP -- set break condition of breakpoint N to EXP. */ | |
538 | ||
539 | static void | |
fba45db2 | 540 | condition_command (char *arg, int from_tty) |
c906108c | 541 | { |
52f0bd74 | 542 | struct breakpoint *b; |
c906108c | 543 | char *p; |
52f0bd74 | 544 | int bnum; |
c906108c SS |
545 | |
546 | if (arg == 0) | |
e2e0b3e5 | 547 | error_no_arg (_("breakpoint number")); |
c906108c SS |
548 | |
549 | p = arg; | |
550 | bnum = get_number (&p); | |
5c44784c | 551 | if (bnum == 0) |
8a3fe4f8 | 552 | error (_("Bad breakpoint argument: '%s'"), arg); |
c906108c SS |
553 | |
554 | ALL_BREAKPOINTS (b) | |
555 | if (b->number == bnum) | |
c5aa993b JM |
556 | { |
557 | if (b->cond) | |
558 | { | |
b8c9b27d | 559 | xfree (b->cond); |
c5aa993b JM |
560 | b->cond = 0; |
561 | } | |
562 | if (b->cond_string != NULL) | |
b8c9b27d | 563 | xfree (b->cond_string); |
c906108c | 564 | |
c5aa993b JM |
565 | if (*p == 0) |
566 | { | |
567 | b->cond = 0; | |
568 | b->cond_string = NULL; | |
569 | if (from_tty) | |
a3f17187 | 570 | printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum); |
c5aa993b JM |
571 | } |
572 | else | |
573 | { | |
574 | arg = p; | |
575 | /* I don't know if it matters whether this is the string the user | |
576 | typed in or the decompiled expression. */ | |
577 | b->cond_string = savestring (arg, strlen (arg)); | |
0101ce28 JJ |
578 | if (!b->pending) |
579 | { | |
580 | b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0); | |
581 | if (*arg) | |
8a3fe4f8 | 582 | error (_("Junk at end of expression")); |
0101ce28 | 583 | } |
c5aa993b JM |
584 | } |
585 | breakpoints_changed (); | |
221ea385 | 586 | breakpoint_modify_event (b->number); |
c5aa993b JM |
587 | return; |
588 | } | |
c906108c | 589 | |
8a3fe4f8 | 590 | error (_("No breakpoint number %d."), bnum); |
c906108c SS |
591 | } |
592 | ||
c906108c | 593 | static void |
fba45db2 | 594 | commands_command (char *arg, int from_tty) |
c906108c | 595 | { |
52f0bd74 | 596 | struct breakpoint *b; |
c906108c | 597 | char *p; |
52f0bd74 | 598 | int bnum; |
c906108c SS |
599 | struct command_line *l; |
600 | ||
601 | /* If we allowed this, we would have problems with when to | |
602 | free the storage, if we change the commands currently | |
603 | being read from. */ | |
604 | ||
605 | if (executing_breakpoint_commands) | |
8a3fe4f8 | 606 | error (_("Can't use the \"commands\" command among a breakpoint's commands.")); |
c906108c SS |
607 | |
608 | p = arg; | |
609 | bnum = get_number (&p); | |
5c44784c | 610 | |
c906108c | 611 | if (p && *p) |
8a3fe4f8 | 612 | error (_("Unexpected extra arguments following breakpoint number.")); |
c5aa993b | 613 | |
c906108c SS |
614 | ALL_BREAKPOINTS (b) |
615 | if (b->number == bnum) | |
9ebf4acf AC |
616 | { |
617 | char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.", | |
618 | bnum); | |
619 | struct cleanup *cleanups = make_cleanup (xfree, tmpbuf); | |
620 | l = read_command_lines (tmpbuf, from_tty); | |
621 | do_cleanups (cleanups); | |
622 | free_command_lines (&b->commands); | |
623 | b->commands = l; | |
624 | breakpoints_changed (); | |
625 | breakpoint_modify_event (b->number); | |
626 | return; | |
c5aa993b | 627 | } |
8a3fe4f8 | 628 | error (_("No breakpoint number %d."), bnum); |
c906108c SS |
629 | } |
630 | \f | |
631 | /* Like target_read_memory() but if breakpoints are inserted, return | |
632 | the shadow contents instead of the breakpoints themselves. | |
633 | ||
634 | Read "memory data" from whatever target or inferior we have. | |
635 | Returns zero if successful, errno value if not. EIO is used | |
636 | for address out of bounds. If breakpoints are inserted, returns | |
637 | shadow contents, not the breakpoints themselves. From breakpoint.c. */ | |
638 | ||
639 | int | |
1f602b35 | 640 | deprecated_read_memory_nobpt (CORE_ADDR memaddr, char *myaddr, unsigned len) |
c906108c SS |
641 | { |
642 | int status; | |
ffce0d52 | 643 | struct bp_location *b; |
c906108c SS |
644 | CORE_ADDR bp_addr = 0; |
645 | int bp_size = 0; | |
646 | ||
647 | if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL) | |
648 | /* No breakpoints on this machine. */ | |
649 | return target_read_memory (memaddr, myaddr, len); | |
c5aa993b | 650 | |
ffce0d52 | 651 | ALL_BP_LOCATIONS (b) |
c5aa993b | 652 | { |
ffce0d52 | 653 | if (b->owner->type == bp_none) |
8a3fe4f8 | 654 | warning (_("reading through apparently deleted breakpoint #%d?"), |
ffce0d52 DJ |
655 | b->owner->number); |
656 | ||
657 | if (b->loc_type != bp_loc_software_breakpoint) | |
c5aa993b | 658 | continue; |
ffce0d52 | 659 | if (!b->inserted) |
c5aa993b JM |
660 | continue; |
661 | /* Addresses and length of the part of the breakpoint that | |
662 | we need to copy. */ | |
663 | /* XXXX The m68k, sh and h8300 have different local and remote | |
664 | breakpoint values. BREAKPOINT_FROM_PC still manages to | |
665 | correctly determine the breakpoints memory address and size | |
666 | for these targets. */ | |
ffce0d52 | 667 | bp_addr = b->address; |
c5aa993b JM |
668 | bp_size = 0; |
669 | if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL) | |
670 | continue; | |
671 | if (bp_size == 0) | |
672 | /* bp isn't valid */ | |
673 | continue; | |
674 | if (bp_addr + bp_size <= memaddr) | |
675 | /* The breakpoint is entirely before the chunk of memory we | |
676 | are reading. */ | |
677 | continue; | |
678 | if (bp_addr >= memaddr + len) | |
679 | /* The breakpoint is entirely after the chunk of memory we are | |
680 | reading. */ | |
681 | continue; | |
682 | /* Copy the breakpoint from the shadow contents, and recurse for | |
683 | the things before and after. */ | |
c906108c | 684 | { |
c5aa993b JM |
685 | /* Offset within shadow_contents. */ |
686 | int bptoffset = 0; | |
c906108c | 687 | |
c5aa993b JM |
688 | if (bp_addr < memaddr) |
689 | { | |
690 | /* Only copy the second part of the breakpoint. */ | |
691 | bp_size -= memaddr - bp_addr; | |
692 | bptoffset = memaddr - bp_addr; | |
693 | bp_addr = memaddr; | |
694 | } | |
695 | ||
696 | if (bp_addr + bp_size > memaddr + len) | |
697 | { | |
698 | /* Only copy the first part of the breakpoint. */ | |
699 | bp_size -= (bp_addr + bp_size) - (memaddr + len); | |
700 | } | |
701 | ||
702 | memcpy (myaddr + bp_addr - memaddr, | |
ffce0d52 | 703 | b->shadow_contents + bptoffset, bp_size); |
c5aa993b JM |
704 | |
705 | if (bp_addr > memaddr) | |
706 | { | |
707 | /* Copy the section of memory before the breakpoint. */ | |
1f602b35 | 708 | status = deprecated_read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr); |
c5aa993b JM |
709 | if (status != 0) |
710 | return status; | |
711 | } | |
712 | ||
713 | if (bp_addr + bp_size < memaddr + len) | |
714 | { | |
715 | /* Copy the section of memory after the breakpoint. */ | |
1f602b35 | 716 | status = deprecated_read_memory_nobpt (bp_addr + bp_size, |
d85310f7 MS |
717 | myaddr + bp_addr + bp_size - memaddr, |
718 | memaddr + len - (bp_addr + bp_size)); | |
c5aa993b JM |
719 | if (status != 0) |
720 | return status; | |
721 | } | |
722 | return 0; | |
c906108c | 723 | } |
c5aa993b | 724 | } |
c906108c SS |
725 | /* Nothing overlaps. Just call read_memory_noerr. */ |
726 | return target_read_memory (memaddr, myaddr, len); | |
727 | } | |
c906108c | 728 | \f |
c5aa993b | 729 | |
687595f9 | 730 | /* A wrapper function for inserting catchpoints. */ |
9cbc821d | 731 | static void |
687595f9 DJ |
732 | insert_catchpoint (struct ui_out *uo, void *args) |
733 | { | |
734 | struct breakpoint *b = (struct breakpoint *) args; | |
735 | int val = -1; | |
736 | ||
737 | switch (b->type) | |
738 | { | |
739 | case bp_catch_fork: | |
fa113d1a | 740 | target_insert_fork_catchpoint (PIDGET (inferior_ptid)); |
687595f9 DJ |
741 | break; |
742 | case bp_catch_vfork: | |
fa113d1a | 743 | target_insert_vfork_catchpoint (PIDGET (inferior_ptid)); |
687595f9 DJ |
744 | break; |
745 | case bp_catch_exec: | |
fa113d1a | 746 | target_insert_exec_catchpoint (PIDGET (inferior_ptid)); |
687595f9 DJ |
747 | break; |
748 | default: | |
e2e0b3e5 | 749 | internal_error (__FILE__, __LINE__, _("unknown breakpoint type")); |
687595f9 DJ |
750 | break; |
751 | } | |
687595f9 DJ |
752 | } |
753 | ||
7270d8f2 OF |
754 | /* Helper routine: free the value chain for a breakpoint (watchpoint). */ |
755 | ||
756 | static void free_valchain (struct bp_location *b) | |
757 | { | |
758 | struct value *v; | |
759 | struct value *n; | |
760 | ||
761 | /* Free the saved value chain. We will construct a new one | |
762 | the next time the watchpoint is inserted. */ | |
763 | for (v = b->owner->val_chain; v; v = n) | |
764 | { | |
17cf0ecd | 765 | n = value_next (v); |
7270d8f2 OF |
766 | value_free (v); |
767 | } | |
768 | b->owner->val_chain = NULL; | |
769 | } | |
770 | ||
879bfdc2 DJ |
771 | /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint. |
772 | Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS, | |
773 | PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems. | |
774 | ||
775 | NOTE drow/2003-09-09: This routine could be broken down to an object-style | |
776 | method for each breakpoint or catchpoint type. */ | |
26bb91f3 | 777 | static int |
879bfdc2 | 778 | insert_bp_location (struct bp_location *bpt, |
26bb91f3 DJ |
779 | struct ui_file *tmp_error_stream, |
780 | int *disabled_breaks, int *process_warning, | |
781 | int *hw_breakpoint_error) | |
879bfdc2 DJ |
782 | { |
783 | int val = 0; | |
784 | ||
785 | /* Permanent breakpoints cannot be inserted or removed. Disabled | |
786 | breakpoints should not be inserted. */ | |
468d015d | 787 | if (!breakpoint_enabled (bpt->owner)) |
879bfdc2 DJ |
788 | return 0; |
789 | ||
790 | if (bpt->inserted || bpt->duplicate) | |
791 | return 0; | |
792 | ||
793 | if (bpt->loc_type == bp_loc_software_breakpoint | |
794 | || bpt->loc_type == bp_loc_hardware_breakpoint) | |
795 | { | |
796 | /* First check to see if we have to handle an overlay. */ | |
797 | if (overlay_debugging == ovly_off | |
798 | || bpt->section == NULL | |
799 | || !(section_is_overlay (bpt->section))) | |
800 | { | |
801 | /* No overlay handling: just set the breakpoint. */ | |
802 | ||
803 | if (bpt->loc_type == bp_loc_hardware_breakpoint) | |
804 | val = target_insert_hw_breakpoint (bpt->address, | |
805 | bpt->shadow_contents); | |
806 | else | |
807 | val = target_insert_breakpoint (bpt->address, | |
808 | bpt->shadow_contents); | |
809 | } | |
810 | else | |
811 | { | |
812 | /* This breakpoint is in an overlay section. | |
813 | Shall we set a breakpoint at the LMA? */ | |
814 | if (!overlay_events_enabled) | |
815 | { | |
816 | /* Yes -- overlay event support is not active, | |
817 | so we must try to set a breakpoint at the LMA. | |
818 | This will not work for a hardware breakpoint. */ | |
819 | if (bpt->loc_type == bp_loc_hardware_breakpoint) | |
8a3fe4f8 | 820 | warning (_("hardware breakpoint %d not supported in overlay!"), |
879bfdc2 DJ |
821 | bpt->owner->number); |
822 | else | |
823 | { | |
824 | CORE_ADDR addr = overlay_unmapped_address (bpt->address, | |
825 | bpt->section); | |
826 | /* Set a software (trap) breakpoint at the LMA. */ | |
827 | val = target_insert_breakpoint (addr, bpt->shadow_contents); | |
828 | if (val != 0) | |
829 | fprintf_unfiltered (tmp_error_stream, | |
830 | "Overlay breakpoint %d failed: in ROM?", | |
831 | bpt->owner->number); | |
832 | } | |
833 | } | |
834 | /* Shall we set a breakpoint at the VMA? */ | |
835 | if (section_is_mapped (bpt->section)) | |
836 | { | |
837 | /* Yes. This overlay section is mapped into memory. */ | |
838 | if (bpt->loc_type == bp_loc_hardware_breakpoint) | |
839 | val = target_insert_hw_breakpoint (bpt->address, | |
840 | bpt->shadow_contents); | |
841 | else | |
842 | val = target_insert_breakpoint (bpt->address, | |
843 | bpt->shadow_contents); | |
844 | } | |
845 | else | |
846 | { | |
847 | /* No. This breakpoint will not be inserted. | |
848 | No error, but do not mark the bp as 'inserted'. */ | |
849 | return 0; | |
850 | } | |
851 | } | |
852 | ||
853 | if (val) | |
854 | { | |
855 | /* Can't set the breakpoint. */ | |
856 | #if defined (DISABLE_UNSETTABLE_BREAK) | |
857 | if (DISABLE_UNSETTABLE_BREAK (bpt->address)) | |
858 | { | |
859 | /* See also: disable_breakpoints_in_shlibs. */ | |
860 | val = 0; | |
861 | bpt->owner->enable_state = bp_shlib_disabled; | |
862 | if (!*disabled_breaks) | |
863 | { | |
864 | fprintf_unfiltered (tmp_error_stream, | |
865 | "Cannot insert breakpoint %d.\n", | |
866 | bpt->owner->number); | |
867 | fprintf_unfiltered (tmp_error_stream, | |
868 | "Temporarily disabling shared library breakpoints:\n"); | |
869 | } | |
870 | *disabled_breaks = 1; | |
871 | fprintf_unfiltered (tmp_error_stream, | |
872 | "breakpoint #%d\n", bpt->owner->number); | |
873 | } | |
874 | else | |
875 | #endif | |
876 | { | |
877 | #ifdef ONE_PROCESS_WRITETEXT | |
878 | *process_warning = 1; | |
879 | #endif | |
880 | if (bpt->loc_type == bp_loc_hardware_breakpoint) | |
881 | { | |
882 | *hw_breakpoint_error = 1; | |
883 | fprintf_unfiltered (tmp_error_stream, | |
884 | "Cannot insert hardware breakpoint %d.\n", | |
885 | bpt->owner->number); | |
886 | } | |
887 | else | |
888 | { | |
889 | fprintf_unfiltered (tmp_error_stream, | |
890 | "Cannot insert breakpoint %d.\n", | |
891 | bpt->owner->number); | |
892 | fprintf_filtered (tmp_error_stream, | |
893 | "Error accessing memory address "); | |
66bf4b3a | 894 | deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream); |
879bfdc2 DJ |
895 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
896 | safe_strerror (val)); | |
897 | } | |
898 | ||
899 | } | |
900 | } | |
901 | else | |
902 | bpt->inserted = 1; | |
903 | ||
904 | return val; | |
905 | } | |
906 | ||
907 | else if (bpt->loc_type == bp_loc_hardware_watchpoint | |
908 | /* NOTE drow/2003-09-08: This state only exists for removing | |
909 | watchpoints. It's not clear that it's necessary... */ | |
910 | && bpt->owner->disposition != disp_del_at_next_stop) | |
911 | { | |
912 | /* FIXME drow/2003-09-08: This code sets multiple hardware watchpoints | |
913 | based on the expression. Ideally this should happen at a higher level, | |
914 | and there should be one bp_location for each computed address we | |
915 | must watch. As soon as a many-to-one mapping is available I'll | |
916 | convert this. */ | |
917 | ||
7789d0fa | 918 | int within_current_scope; |
879bfdc2 DJ |
919 | struct value *mark = value_mark (); |
920 | struct value *v; | |
7789d0fa | 921 | struct frame_id saved_frame_id; |
879bfdc2 | 922 | |
7789d0fa | 923 | /* Save the current frame's ID so we can restore it after |
879bfdc2 DJ |
924 | evaluating the watchpoint expression on its own frame. */ |
925 | /* FIXME drow/2003-09-09: It would be nice if evaluate_expression | |
926 | took a frame parameter, so that we didn't have to change the | |
927 | selected frame. */ | |
7789d0fa | 928 | saved_frame_id = get_frame_id (deprecated_selected_frame); |
879bfdc2 DJ |
929 | |
930 | /* Determine if the watchpoint is within scope. */ | |
931 | if (bpt->owner->exp_valid_block == NULL) | |
932 | within_current_scope = 1; | |
933 | else | |
934 | { | |
935 | struct frame_info *fi; | |
936 | fi = frame_find_by_id (bpt->owner->watchpoint_frame); | |
937 | within_current_scope = (fi != NULL); | |
938 | if (within_current_scope) | |
939 | select_frame (fi); | |
940 | } | |
941 | ||
942 | if (within_current_scope) | |
943 | { | |
7270d8f2 OF |
944 | free_valchain (bpt); |
945 | ||
879bfdc2 DJ |
946 | /* Evaluate the expression and cut the chain of values |
947 | produced off from the value chain. | |
948 | ||
949 | Make sure the value returned isn't lazy; we use | |
950 | laziness to determine what memory GDB actually needed | |
951 | in order to compute the value of the expression. */ | |
952 | v = evaluate_expression (bpt->owner->exp); | |
0fd88904 | 953 | value_contents (v); |
879bfdc2 DJ |
954 | value_release_to_mark (mark); |
955 | ||
956 | bpt->owner->val_chain = v; | |
957 | bpt->inserted = 1; | |
958 | ||
959 | /* Look at each value on the value chain. */ | |
17cf0ecd | 960 | for (; v; v = value_next (v)) |
879bfdc2 DJ |
961 | { |
962 | /* If it's a memory location, and GDB actually needed | |
963 | its contents to evaluate the expression, then we | |
964 | must watch it. */ | |
965 | if (VALUE_LVAL (v) == lval_memory | |
d69fe07e | 966 | && ! value_lazy (v)) |
879bfdc2 | 967 | { |
df407dfe | 968 | struct type *vtype = check_typedef (value_type (v)); |
879bfdc2 DJ |
969 | |
970 | /* We only watch structs and arrays if user asked | |
971 | for it explicitly, never if they just happen to | |
972 | appear in the middle of some value chain. */ | |
973 | if (v == bpt->owner->val_chain | |
974 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT | |
975 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
976 | { | |
977 | CORE_ADDR addr; | |
978 | int len, type; | |
979 | ||
df407dfe AC |
980 | addr = VALUE_ADDRESS (v) + value_offset (v); |
981 | len = TYPE_LENGTH (value_type (v)); | |
879bfdc2 DJ |
982 | type = hw_write; |
983 | if (bpt->owner->type == bp_read_watchpoint) | |
984 | type = hw_read; | |
985 | else if (bpt->owner->type == bp_access_watchpoint) | |
986 | type = hw_access; | |
987 | ||
988 | val = target_insert_watchpoint (addr, len, type); | |
989 | if (val == -1) | |
990 | { | |
991 | /* Don't exit the loop, try to insert | |
992 | every value on the value chain. That's | |
993 | because we will be removing all the | |
994 | watches below, and removing a | |
995 | watchpoint we didn't insert could have | |
996 | adverse effects. */ | |
997 | bpt->inserted = 0; | |
998 | } | |
999 | val = 0; | |
1000 | } | |
1001 | } | |
1002 | } | |
1003 | /* Failure to insert a watchpoint on any memory value in the | |
1004 | value chain brings us here. */ | |
1005 | if (!bpt->inserted) | |
1006 | { | |
0bde7532 | 1007 | remove_breakpoint (bpt, mark_uninserted); |
879bfdc2 DJ |
1008 | *hw_breakpoint_error = 1; |
1009 | fprintf_unfiltered (tmp_error_stream, | |
1010 | "Could not insert hardware watchpoint %d.\n", | |
1011 | bpt->owner->number); | |
1012 | val = -1; | |
1013 | } | |
1014 | } | |
1015 | else | |
1016 | { | |
a3f17187 AC |
1017 | printf_filtered (_("\ |
1018 | Hardware watchpoint %d deleted because the program has left the block \n\ | |
1019 | in which its expression is valid.\n"), | |
1020 | bpt->owner->number); | |
879bfdc2 DJ |
1021 | if (bpt->owner->related_breakpoint) |
1022 | bpt->owner->related_breakpoint->disposition = disp_del_at_next_stop; | |
1023 | bpt->owner->disposition = disp_del_at_next_stop; | |
1024 | } | |
1025 | ||
7789d0fa AC |
1026 | /* Restore the selected frame. */ |
1027 | select_frame (frame_find_by_id (saved_frame_id)); | |
879bfdc2 DJ |
1028 | |
1029 | return val; | |
1030 | } | |
1031 | ||
1032 | else if (ep_is_exception_catchpoint (bpt->owner)) | |
1033 | { | |
1034 | /* FIXME drow/2003-09-09: This code sets both a catchpoint and a | |
1035 | breakpoint. Once again, it would be better if this was represented | |
1036 | as two bp_locations. */ | |
1037 | ||
1038 | /* If we get here, we must have a callback mechanism for exception | |
1039 | events -- with g++ style embedded label support, we insert | |
1040 | ordinary breakpoints and not catchpoints. */ | |
1041 | val = target_insert_breakpoint (bpt->address, bpt->shadow_contents); | |
1042 | if (val) | |
1043 | { | |
1044 | /* Couldn't set breakpoint for some reason */ | |
1045 | fprintf_unfiltered (tmp_error_stream, | |
1046 | "Cannot insert catchpoint %d; disabling it.\n", | |
1047 | bpt->owner->number); | |
1048 | fprintf_filtered (tmp_error_stream, | |
1049 | "Error accessing memory address "); | |
66bf4b3a | 1050 | deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream); |
879bfdc2 DJ |
1051 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
1052 | safe_strerror (val)); | |
1053 | bpt->owner->enable_state = bp_disabled; | |
1054 | } | |
1055 | else | |
1056 | { | |
1057 | /* Bp set, now make sure callbacks are enabled */ | |
1058 | /* Format possible error msg */ | |
1059 | char *message = xstrprintf ("Error inserting catchpoint %d:\n", | |
1060 | bpt->owner->number); | |
1061 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
1062 | int val; | |
1063 | args_for_catchpoint_enable args; | |
1064 | args.kind = bpt->owner->type == bp_catch_catch ? | |
1065 | EX_EVENT_CATCH : EX_EVENT_THROW; | |
1066 | args.enable_p = 1; | |
1067 | val = catch_errors (cover_target_enable_exception_callback, | |
1068 | &args, message, RETURN_MASK_ALL); | |
1069 | do_cleanups (cleanups); | |
1070 | if (val != 0 && val != -1) | |
1071 | bpt->inserted = 1; | |
1072 | ||
1073 | /* Check if something went wrong; val == 0 can be ignored */ | |
1074 | if (val == -1) | |
1075 | { | |
1076 | /* something went wrong */ | |
1077 | fprintf_unfiltered (tmp_error_stream, | |
1078 | "Cannot insert catchpoint %d; disabling it.\n", | |
1079 | bpt->owner->number); | |
1080 | bpt->owner->enable_state = bp_disabled; | |
1081 | } | |
1082 | } | |
1083 | ||
1084 | return val; | |
1085 | } | |
1086 | ||
1087 | else if (bpt->owner->type == bp_catch_fork | |
1088 | || bpt->owner->type == bp_catch_vfork | |
1089 | || bpt->owner->type == bp_catch_exec) | |
1090 | { | |
9cbc821d AC |
1091 | struct exception e = catch_exception (uiout, insert_catchpoint, |
1092 | bpt->owner, RETURN_MASK_ERROR); | |
1093 | exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ", | |
1094 | bpt->owner->number); | |
1095 | if (e.reason < 0) | |
879bfdc2 DJ |
1096 | bpt->owner->enable_state = bp_disabled; |
1097 | else | |
1098 | bpt->inserted = 1; | |
1640b821 DJ |
1099 | |
1100 | /* We've already printed an error message if there was a problem | |
1101 | inserting this catchpoint, and we've disabled the catchpoint, | |
1102 | so just return success. */ | |
1103 | return 0; | |
879bfdc2 DJ |
1104 | } |
1105 | ||
1106 | return 0; | |
1107 | } | |
1108 | ||
c906108c SS |
1109 | /* insert_breakpoints is used when starting or continuing the program. |
1110 | remove_breakpoints is used when the program stops. | |
1111 | Both return zero if successful, | |
1112 | or an `errno' value if could not write the inferior. */ | |
1113 | ||
1114 | int | |
fba45db2 | 1115 | insert_breakpoints (void) |
c906108c | 1116 | { |
879bfdc2 | 1117 | struct bp_location *b, *temp; |
53a5351d | 1118 | int return_val = 0; /* return success code. */ |
c906108c SS |
1119 | int val = 0; |
1120 | int disabled_breaks = 0; | |
81d0cc19 GS |
1121 | int hw_breakpoint_error = 0; |
1122 | int process_warning = 0; | |
c906108c | 1123 | |
81d0cc19 GS |
1124 | struct ui_file *tmp_error_stream = mem_fileopen (); |
1125 | make_cleanup_ui_file_delete (tmp_error_stream); | |
1126 | ||
1127 | /* Explicitly mark the warning -- this will only be printed if | |
1128 | there was an error. */ | |
1129 | fprintf_unfiltered (tmp_error_stream, "Warning:\n"); | |
c906108c | 1130 | |
879bfdc2 DJ |
1131 | ALL_BP_LOCATIONS_SAFE (b, temp) |
1132 | { | |
1133 | /* Permanent breakpoints cannot be inserted or removed. Disabled | |
1134 | breakpoints should not be inserted. */ | |
468d015d | 1135 | if (!breakpoint_enabled (b->owner)) |
879bfdc2 DJ |
1136 | continue; |
1137 | ||
1138 | /* FIXME drow/2003-10-07: This code should be pushed elsewhere when | |
1139 | hardware watchpoints are split into multiple loc breakpoints. */ | |
1140 | if ((b->loc_type == bp_loc_hardware_watchpoint | |
1141 | || b->owner->type == bp_watchpoint) && !b->owner->val) | |
1142 | { | |
1143 | struct value *val; | |
1144 | val = evaluate_expression (b->owner->exp); | |
1145 | release_value (val); | |
d69fe07e | 1146 | if (value_lazy (val)) |
879bfdc2 DJ |
1147 | value_fetch_lazy (val); |
1148 | b->owner->val = val; | |
1149 | } | |
a881cf8e | 1150 | |
879bfdc2 DJ |
1151 | val = insert_bp_location (b, tmp_error_stream, |
1152 | &disabled_breaks, &process_warning, | |
1153 | &hw_breakpoint_error); | |
1154 | if (val) | |
1155 | return_val = val; | |
1156 | } | |
c906108c | 1157 | |
879bfdc2 | 1158 | if (return_val) |
81d0cc19 GS |
1159 | { |
1160 | /* If a hardware breakpoint or watchpoint was inserted, add a | |
1161 | message about possibly exhausted resources. */ | |
879bfdc2 | 1162 | if (hw_breakpoint_error) |
81d0cc19 | 1163 | { |
c6510018 MS |
1164 | fprintf_unfiltered (tmp_error_stream, |
1165 | "Could not insert hardware breakpoints:\n\ | |
1166 | You may have requested too many hardware breakpoints/watchpoints.\n"); | |
81d0cc19 | 1167 | } |
c6510018 | 1168 | #ifdef ONE_PROCESS_WRITETEXT |
81d0cc19 | 1169 | if (process_warning) |
c6510018 MS |
1170 | fprintf_unfiltered (tmp_error_stream, |
1171 | "The same program may be running in another process."); | |
1172 | #endif | |
81d0cc19 GS |
1173 | target_terminal_ours_for_output (); |
1174 | error_stream (tmp_error_stream); | |
1175 | } | |
53a5351d | 1176 | return return_val; |
c906108c SS |
1177 | } |
1178 | ||
c906108c | 1179 | int |
fba45db2 | 1180 | remove_breakpoints (void) |
c906108c | 1181 | { |
0bde7532 | 1182 | struct bp_location *b; |
c906108c SS |
1183 | int val; |
1184 | ||
0bde7532 | 1185 | ALL_BP_LOCATIONS (b) |
c5aa993b | 1186 | { |
0bde7532 | 1187 | if (b->inserted) |
c5aa993b JM |
1188 | { |
1189 | val = remove_breakpoint (b, mark_uninserted); | |
1190 | if (val != 0) | |
1191 | return val; | |
1192 | } | |
1193 | } | |
c906108c SS |
1194 | return 0; |
1195 | } | |
1196 | ||
692590c1 | 1197 | int |
80ce1ecb | 1198 | remove_hw_watchpoints (void) |
692590c1 | 1199 | { |
0bde7532 | 1200 | struct bp_location *b; |
692590c1 MS |
1201 | int val; |
1202 | ||
0bde7532 | 1203 | ALL_BP_LOCATIONS (b) |
692590c1 | 1204 | { |
0bde7532 | 1205 | if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint) |
692590c1 MS |
1206 | { |
1207 | val = remove_breakpoint (b, mark_uninserted); | |
1208 | if (val != 0) | |
1209 | return val; | |
1210 | } | |
1211 | } | |
1212 | return 0; | |
1213 | } | |
1214 | ||
c906108c | 1215 | int |
fba45db2 | 1216 | reattach_breakpoints (int pid) |
c906108c | 1217 | { |
0bde7532 | 1218 | struct bp_location *b; |
c906108c | 1219 | int val; |
ce696e05 | 1220 | struct cleanup *old_chain = save_inferior_ptid (); |
c906108c | 1221 | |
ce696e05 KB |
1222 | /* Set inferior_ptid; remove_breakpoint uses this global. */ |
1223 | inferior_ptid = pid_to_ptid (pid); | |
0bde7532 | 1224 | ALL_BP_LOCATIONS (b) |
c5aa993b | 1225 | { |
0bde7532 | 1226 | if (b->inserted) |
c5aa993b JM |
1227 | { |
1228 | remove_breakpoint (b, mark_inserted); | |
0bde7532 DJ |
1229 | if (b->loc_type == bp_loc_hardware_breakpoint) |
1230 | val = target_insert_hw_breakpoint (b->address, b->shadow_contents); | |
c5aa993b | 1231 | else |
0bde7532 DJ |
1232 | val = target_insert_breakpoint (b->address, b->shadow_contents); |
1233 | /* FIXME drow/2003-10-07: This doesn't handle any other kinds of | |
1234 | breakpoints. It's wrong for watchpoints, for example. */ | |
c5aa993b JM |
1235 | if (val != 0) |
1236 | { | |
ce696e05 | 1237 | do_cleanups (old_chain); |
c5aa993b JM |
1238 | return val; |
1239 | } | |
1240 | } | |
1241 | } | |
ce696e05 | 1242 | do_cleanups (old_chain); |
c906108c SS |
1243 | return 0; |
1244 | } | |
1245 | ||
1246 | void | |
fba45db2 | 1247 | update_breakpoints_after_exec (void) |
c906108c | 1248 | { |
c5aa993b JM |
1249 | struct breakpoint *b; |
1250 | struct breakpoint *temp; | |
c906108c SS |
1251 | |
1252 | /* Doing this first prevents the badness of having delete_breakpoint() | |
1253 | write a breakpoint's current "shadow contents" to lift the bp. That | |
1254 | shadow is NOT valid after an exec()! */ | |
1255 | mark_breakpoints_out (); | |
1256 | ||
1257 | ALL_BREAKPOINTS_SAFE (b, temp) | |
c5aa993b JM |
1258 | { |
1259 | /* Solib breakpoints must be explicitly reset after an exec(). */ | |
1260 | if (b->type == bp_shlib_event) | |
1261 | { | |
1262 | delete_breakpoint (b); | |
1263 | continue; | |
1264 | } | |
c906108c | 1265 | |
1900040c MS |
1266 | /* Thread event breakpoints must be set anew after an exec(), |
1267 | as must overlay event breakpoints. */ | |
1268 | if (b->type == bp_thread_event || b->type == bp_overlay_event) | |
c4093a6a JM |
1269 | { |
1270 | delete_breakpoint (b); | |
1271 | continue; | |
1272 | } | |
1273 | ||
c5aa993b JM |
1274 | /* Step-resume breakpoints are meaningless after an exec(). */ |
1275 | if (b->type == bp_step_resume) | |
1276 | { | |
1277 | delete_breakpoint (b); | |
1278 | continue; | |
1279 | } | |
1280 | ||
1281 | /* Ditto the sigtramp handler breakpoints. */ | |
1282 | if (b->type == bp_through_sigtramp) | |
1283 | { | |
1284 | delete_breakpoint (b); | |
1285 | continue; | |
1286 | } | |
1287 | ||
1288 | /* Ditto the exception-handling catchpoints. */ | |
1289 | if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw)) | |
1290 | { | |
1291 | delete_breakpoint (b); | |
1292 | continue; | |
1293 | } | |
1294 | ||
1295 | /* Don't delete an exec catchpoint, because else the inferior | |
1296 | won't stop when it ought! | |
1297 | ||
1298 | Similarly, we probably ought to keep vfork catchpoints, 'cause | |
53a5351d JM |
1299 | on this target, we may not be able to stop when the vfork is |
1300 | seen, but only when the subsequent exec is seen. (And because | |
1301 | deleting fork catchpoints here but not vfork catchpoints will | |
1302 | seem mysterious to users, keep those too.) | |
c5aa993b JM |
1303 | |
1304 | ??rehrauer: Let's hope that merely clearing out this catchpoint's | |
1305 | target address field, if any, is sufficient to have it be reset | |
644a1fe1 JB |
1306 | automagically. Certainly on HP-UX that's true. |
1307 | ||
1308 | Jim Blandy <[email protected]>: Actually, zero is a perfectly | |
41989fcd AC |
1309 | valid code address on some platforms (like the mn10300 |
1310 | simulators). We shouldn't assign any special interpretation to | |
1311 | a breakpoint with a zero address. And in fact, GDB doesn't --- | |
1312 | I can't see what that comment above is talking about. As far | |
1313 | as I can tell, setting the address of a | |
644a1fe1 JB |
1314 | bp_catch_exec/bp_catch_vfork/bp_catch_fork breakpoint to zero |
1315 | is meaningless, since those are implemented with HP-UX kernel | |
1316 | hackery, not by storing breakpoint instructions somewhere. */ | |
c5aa993b JM |
1317 | if ((b->type == bp_catch_exec) || |
1318 | (b->type == bp_catch_vfork) || | |
1319 | (b->type == bp_catch_fork)) | |
1320 | { | |
5cab636d | 1321 | b->loc->address = (CORE_ADDR) NULL; |
c5aa993b JM |
1322 | continue; |
1323 | } | |
1324 | ||
1325 | /* bp_finish is a special case. The only way we ought to be able | |
1326 | to see one of these when an exec() has happened, is if the user | |
1327 | caught a vfork, and then said "finish". Ordinarily a finish just | |
1328 | carries them to the call-site of the current callee, by setting | |
1329 | a temporary bp there and resuming. But in this case, the finish | |
1330 | will carry them entirely through the vfork & exec. | |
1331 | ||
1332 | We don't want to allow a bp_finish to remain inserted now. But | |
1333 | we can't safely delete it, 'cause finish_command has a handle to | |
1334 | the bp on a bpstat, and will later want to delete it. There's a | |
1335 | chance (and I've seen it happen) that if we delete the bp_finish | |
1336 | here, that its storage will get reused by the time finish_command | |
1337 | gets 'round to deleting the "use to be a bp_finish" breakpoint. | |
1338 | We really must allow finish_command to delete a bp_finish. | |
1339 | ||
53a5351d JM |
1340 | In the absense of a general solution for the "how do we know |
1341 | it's safe to delete something others may have handles to?" | |
1342 | problem, what we'll do here is just uninsert the bp_finish, and | |
1343 | let finish_command delete it. | |
1344 | ||
1345 | (We know the bp_finish is "doomed" in the sense that it's | |
1346 | momentary, and will be deleted as soon as finish_command sees | |
1347 | the inferior stopped. So it doesn't matter that the bp's | |
1348 | address is probably bogus in the new a.out, unlike e.g., the | |
1349 | solib breakpoints.) */ | |
c5aa993b | 1350 | |
c5aa993b JM |
1351 | if (b->type == bp_finish) |
1352 | { | |
1353 | continue; | |
1354 | } | |
1355 | ||
1356 | /* Without a symbolic address, we have little hope of the | |
1357 | pre-exec() address meaning the same thing in the post-exec() | |
1358 | a.out. */ | |
1359 | if (b->addr_string == NULL) | |
1360 | { | |
1361 | delete_breakpoint (b); | |
1362 | continue; | |
1363 | } | |
1364 | ||
1365 | /* If this breakpoint has survived the above battery of checks, then | |
1366 | it must have a symbolic address. Be sure that it gets reevaluated | |
644a1fe1 JB |
1367 | to a target address, rather than reusing the old evaluation. |
1368 | ||
1369 | Jim Blandy <[email protected]>: As explained above in the comment | |
1370 | for bp_catch_exec and friends, I'm pretty sure this is entirely | |
1371 | unnecessary. A call to breakpoint_re_set_one always recomputes | |
1372 | the breakpoint's address from scratch, or deletes it if it can't. | |
1373 | So I think this assignment could be deleted without effect. */ | |
5cab636d | 1374 | b->loc->address = (CORE_ADDR) NULL; |
c5aa993b | 1375 | } |
1900040c MS |
1376 | /* FIXME what about longjmp breakpoints? Re-create them here? */ |
1377 | create_overlay_event_breakpoint ("_ovly_debug_event"); | |
c906108c SS |
1378 | } |
1379 | ||
1380 | int | |
fba45db2 | 1381 | detach_breakpoints (int pid) |
c906108c | 1382 | { |
0bde7532 | 1383 | struct bp_location *b; |
c906108c | 1384 | int val; |
ce696e05 | 1385 | struct cleanup *old_chain = save_inferior_ptid (); |
c5aa993b | 1386 | |
39f77062 | 1387 | if (pid == PIDGET (inferior_ptid)) |
8a3fe4f8 | 1388 | error (_("Cannot detach breakpoints of inferior_ptid")); |
c5aa993b | 1389 | |
ce696e05 KB |
1390 | /* Set inferior_ptid; remove_breakpoint uses this global. */ |
1391 | inferior_ptid = pid_to_ptid (pid); | |
0bde7532 | 1392 | ALL_BP_LOCATIONS (b) |
c5aa993b | 1393 | { |
0bde7532 | 1394 | if (b->inserted) |
c5aa993b JM |
1395 | { |
1396 | val = remove_breakpoint (b, mark_inserted); | |
1397 | if (val != 0) | |
1398 | { | |
ce696e05 | 1399 | do_cleanups (old_chain); |
c5aa993b JM |
1400 | return val; |
1401 | } | |
1402 | } | |
1403 | } | |
ce696e05 | 1404 | do_cleanups (old_chain); |
c906108c SS |
1405 | return 0; |
1406 | } | |
1407 | ||
1408 | static int | |
0bde7532 | 1409 | remove_breakpoint (struct bp_location *b, insertion_state_t is) |
c906108c SS |
1410 | { |
1411 | int val; | |
c5aa993b | 1412 | |
0bde7532 | 1413 | if (b->owner->enable_state == bp_permanent) |
c2c6d25f JM |
1414 | /* Permanent breakpoints cannot be inserted or removed. */ |
1415 | return 0; | |
1416 | ||
0bde7532 | 1417 | if (b->owner->type == bp_none) |
8a3fe4f8 | 1418 | warning (_("attempted to remove apparently deleted breakpoint #%d?"), |
0bde7532 DJ |
1419 | b->owner->number); |
1420 | ||
1421 | if (b->loc_type == bp_loc_software_breakpoint | |
1422 | || b->loc_type == bp_loc_hardware_breakpoint) | |
c906108c | 1423 | { |
c02f5703 MS |
1424 | /* "Normal" instruction breakpoint: either the standard |
1425 | trap-instruction bp (bp_breakpoint), or a | |
1426 | bp_hardware_breakpoint. */ | |
1427 | ||
1428 | /* First check to see if we have to handle an overlay. */ | |
1429 | if (overlay_debugging == ovly_off | |
0bde7532 DJ |
1430 | || b->section == NULL |
1431 | || !(section_is_overlay (b->section))) | |
c02f5703 MS |
1432 | { |
1433 | /* No overlay handling: just remove the breakpoint. */ | |
1434 | ||
0bde7532 DJ |
1435 | if (b->loc_type == bp_loc_hardware_breakpoint) |
1436 | val = target_remove_hw_breakpoint (b->address, | |
1437 | b->shadow_contents); | |
c02f5703 | 1438 | else |
0bde7532 | 1439 | val = target_remove_breakpoint (b->address, b->shadow_contents); |
c02f5703 | 1440 | } |
c906108c SS |
1441 | else |
1442 | { | |
c02f5703 MS |
1443 | /* This breakpoint is in an overlay section. |
1444 | Did we set a breakpoint at the LMA? */ | |
1445 | if (!overlay_events_enabled) | |
1446 | { | |
1447 | /* Yes -- overlay event support is not active, so we | |
1448 | should have set a breakpoint at the LMA. Remove it. | |
1449 | */ | |
0bde7532 DJ |
1450 | CORE_ADDR addr = overlay_unmapped_address (b->address, |
1451 | b->section); | |
c02f5703 MS |
1452 | /* Ignore any failures: if the LMA is in ROM, we will |
1453 | have already warned when we failed to insert it. */ | |
0bde7532 DJ |
1454 | if (b->loc_type == bp_loc_hardware_breakpoint) |
1455 | target_remove_hw_breakpoint (addr, b->shadow_contents); | |
c02f5703 | 1456 | else |
0bde7532 | 1457 | target_remove_breakpoint (addr, b->shadow_contents); |
c02f5703 MS |
1458 | } |
1459 | /* Did we set a breakpoint at the VMA? | |
1460 | If so, we will have marked the breakpoint 'inserted'. */ | |
0bde7532 | 1461 | if (b->inserted) |
c906108c | 1462 | { |
c02f5703 MS |
1463 | /* Yes -- remove it. Previously we did not bother to |
1464 | remove the breakpoint if the section had been | |
1465 | unmapped, but let's not rely on that being safe. We | |
1466 | don't know what the overlay manager might do. */ | |
0bde7532 DJ |
1467 | if (b->loc_type == bp_loc_hardware_breakpoint) |
1468 | val = target_remove_hw_breakpoint (b->address, | |
1469 | b->shadow_contents); | |
c02f5703 | 1470 | else |
0bde7532 DJ |
1471 | val = target_remove_breakpoint (b->address, |
1472 | b->shadow_contents); | |
c906108c | 1473 | } |
c02f5703 MS |
1474 | else |
1475 | { | |
1476 | /* No -- not inserted, so no need to remove. No error. */ | |
1477 | val = 0; | |
1478 | } | |
c906108c SS |
1479 | } |
1480 | if (val) | |
1481 | return val; | |
0bde7532 | 1482 | b->inserted = (is == mark_inserted); |
c906108c | 1483 | } |
0bde7532 | 1484 | else if (b->loc_type == bp_loc_hardware_watchpoint |
468d015d | 1485 | && breakpoint_enabled (b->owner) |
0bde7532 | 1486 | && !b->duplicate) |
c906108c | 1487 | { |
278cd55f AC |
1488 | struct value *v; |
1489 | struct value *n; | |
c5aa993b | 1490 | |
0bde7532 | 1491 | b->inserted = (is == mark_inserted); |
c906108c | 1492 | /* Walk down the saved value chain. */ |
17cf0ecd | 1493 | for (v = b->owner->val_chain; v; v = value_next (v)) |
c906108c SS |
1494 | { |
1495 | /* For each memory reference remove the watchpoint | |
1496 | at that address. */ | |
5c44784c | 1497 | if (VALUE_LVAL (v) == lval_memory |
d69fe07e | 1498 | && ! value_lazy (v)) |
c906108c | 1499 | { |
df407dfe | 1500 | struct type *vtype = check_typedef (value_type (v)); |
2e70b7b9 | 1501 | |
0bde7532 | 1502 | if (v == b->owner->val_chain |
2e70b7b9 MS |
1503 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT |
1504 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
1505 | { | |
1506 | CORE_ADDR addr; | |
1507 | int len, type; | |
1508 | ||
df407dfe AC |
1509 | addr = VALUE_ADDRESS (v) + value_offset (v); |
1510 | len = TYPE_LENGTH (value_type (v)); | |
2e70b7b9 | 1511 | type = hw_write; |
0bde7532 | 1512 | if (b->owner->type == bp_read_watchpoint) |
2e70b7b9 | 1513 | type = hw_read; |
0bde7532 | 1514 | else if (b->owner->type == bp_access_watchpoint) |
2e70b7b9 MS |
1515 | type = hw_access; |
1516 | ||
1517 | val = target_remove_watchpoint (addr, len, type); | |
1518 | if (val == -1) | |
0bde7532 | 1519 | b->inserted = 1; |
2e70b7b9 MS |
1520 | val = 0; |
1521 | } | |
c906108c SS |
1522 | } |
1523 | } | |
1524 | /* Failure to remove any of the hardware watchpoints comes here. */ | |
0bde7532 | 1525 | if ((is == mark_uninserted) && (b->inserted)) |
8a3fe4f8 | 1526 | warning (_("Could not remove hardware watchpoint %d."), |
0bde7532 | 1527 | b->owner->number); |
c906108c | 1528 | } |
0bde7532 DJ |
1529 | else if ((b->owner->type == bp_catch_fork || |
1530 | b->owner->type == bp_catch_vfork || | |
1531 | b->owner->type == bp_catch_exec) | |
468d015d | 1532 | && breakpoint_enabled (b->owner) |
0bde7532 | 1533 | && !b->duplicate) |
c906108c SS |
1534 | { |
1535 | val = -1; | |
0bde7532 | 1536 | switch (b->owner->type) |
c5aa993b JM |
1537 | { |
1538 | case bp_catch_fork: | |
39f77062 | 1539 | val = target_remove_fork_catchpoint (PIDGET (inferior_ptid)); |
c5aa993b JM |
1540 | break; |
1541 | case bp_catch_vfork: | |
39f77062 | 1542 | val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid)); |
c5aa993b JM |
1543 | break; |
1544 | case bp_catch_exec: | |
39f77062 | 1545 | val = target_remove_exec_catchpoint (PIDGET (inferior_ptid)); |
c5aa993b | 1546 | break; |
ac9a91a7 | 1547 | default: |
8a3fe4f8 | 1548 | warning (_("Internal error, %s line %d."), __FILE__, __LINE__); |
ac9a91a7 | 1549 | break; |
c5aa993b | 1550 | } |
c906108c SS |
1551 | if (val) |
1552 | return val; | |
0bde7532 | 1553 | b->inserted = (is == mark_inserted); |
c906108c | 1554 | } |
0bde7532 DJ |
1555 | else if ((b->owner->type == bp_catch_catch || |
1556 | b->owner->type == bp_catch_throw) | |
468d015d | 1557 | && breakpoint_enabled (b->owner) |
0bde7532 | 1558 | && !b->duplicate) |
c906108c SS |
1559 | { |
1560 | ||
0bde7532 | 1561 | val = target_remove_breakpoint (b->address, b->shadow_contents); |
c906108c | 1562 | if (val) |
c5aa993b | 1563 | return val; |
0bde7532 | 1564 | b->inserted = (is == mark_inserted); |
c906108c | 1565 | } |
0bde7532 DJ |
1566 | else if (ep_is_exception_catchpoint (b->owner) |
1567 | && b->inserted /* sometimes previous insert doesn't happen */ | |
468d015d | 1568 | && breakpoint_enabled (b->owner) |
0bde7532 | 1569 | && !b->duplicate) |
c906108c SS |
1570 | { |
1571 | ||
0bde7532 | 1572 | val = target_remove_breakpoint (b->address, b->shadow_contents); |
c906108c | 1573 | if (val) |
c5aa993b JM |
1574 | return val; |
1575 | ||
0bde7532 | 1576 | b->inserted = (is == mark_inserted); |
c906108c SS |
1577 | } |
1578 | ||
1579 | return 0; | |
1580 | } | |
1581 | ||
1582 | /* Clear the "inserted" flag in all breakpoints. */ | |
1583 | ||
1584 | void | |
fba45db2 | 1585 | mark_breakpoints_out (void) |
c906108c | 1586 | { |
075f6582 | 1587 | struct bp_location *bpt; |
c906108c | 1588 | |
075f6582 DJ |
1589 | ALL_BP_LOCATIONS (bpt) |
1590 | bpt->inserted = 0; | |
c906108c SS |
1591 | } |
1592 | ||
53a5351d JM |
1593 | /* Clear the "inserted" flag in all breakpoints and delete any |
1594 | breakpoints which should go away between runs of the program. | |
c906108c SS |
1595 | |
1596 | Plus other such housekeeping that has to be done for breakpoints | |
1597 | between runs. | |
1598 | ||
53a5351d JM |
1599 | Note: this function gets called at the end of a run (by |
1600 | generic_mourn_inferior) and when a run begins (by | |
1601 | init_wait_for_inferior). */ | |
c906108c SS |
1602 | |
1603 | ||
1604 | ||
1605 | void | |
fba45db2 | 1606 | breakpoint_init_inferior (enum inf_context context) |
c906108c | 1607 | { |
52f0bd74 | 1608 | struct breakpoint *b, *temp; |
075f6582 | 1609 | struct bp_location *bpt; |
c906108c SS |
1610 | static int warning_needed = 0; |
1611 | ||
075f6582 DJ |
1612 | ALL_BP_LOCATIONS (bpt) |
1613 | bpt->inserted = 0; | |
1614 | ||
c906108c | 1615 | ALL_BREAKPOINTS_SAFE (b, temp) |
c5aa993b | 1616 | { |
c5aa993b JM |
1617 | switch (b->type) |
1618 | { | |
1619 | case bp_call_dummy: | |
1620 | case bp_watchpoint_scope: | |
c906108c | 1621 | |
c5aa993b JM |
1622 | /* If the call dummy breakpoint is at the entry point it will |
1623 | cause problems when the inferior is rerun, so we better | |
1624 | get rid of it. | |
c906108c | 1625 | |
c5aa993b JM |
1626 | Also get rid of scope breakpoints. */ |
1627 | delete_breakpoint (b); | |
1628 | break; | |
c906108c | 1629 | |
c5aa993b JM |
1630 | case bp_watchpoint: |
1631 | case bp_hardware_watchpoint: | |
1632 | case bp_read_watchpoint: | |
1633 | case bp_access_watchpoint: | |
c906108c | 1634 | |
c5aa993b JM |
1635 | /* Likewise for watchpoints on local expressions. */ |
1636 | if (b->exp_valid_block != NULL) | |
1637 | delete_breakpoint (b); | |
c860120c PM |
1638 | if (context == inf_starting) |
1639 | { | |
1640 | /* Reset val field to force reread of starting value | |
1641 | in insert_breakpoints. */ | |
1642 | if (b->val) | |
1643 | value_free (b->val); | |
1644 | b->val = NULL; | |
1645 | } | |
c5aa993b JM |
1646 | break; |
1647 | default: | |
1648 | /* Likewise for exception catchpoints in dynamic-linked | |
1649 | executables where required */ | |
f83f82bc AC |
1650 | if (ep_is_exception_catchpoint (b) |
1651 | && deprecated_exception_catchpoints_are_fragile) | |
c5aa993b JM |
1652 | { |
1653 | warning_needed = 1; | |
c906108c | 1654 | delete_breakpoint (b); |
c5aa993b JM |
1655 | } |
1656 | break; | |
1657 | } | |
1658 | } | |
c906108c | 1659 | |
f83f82bc AC |
1660 | if (deprecated_exception_catchpoints_are_fragile) |
1661 | deprecated_exception_support_initialized = 0; | |
c906108c | 1662 | |
c5aa993b | 1663 | /* Don't issue the warning unless it's really needed... */ |
c906108c SS |
1664 | if (warning_needed && (context != inf_exited)) |
1665 | { | |
8a3fe4f8 AC |
1666 | warning (_("Exception catchpoints from last run were deleted.\n" |
1667 | "You must reinsert them explicitly.")); | |
c906108c | 1668 | warning_needed = 0; |
c5aa993b | 1669 | } |
c906108c SS |
1670 | } |
1671 | ||
c2c6d25f JM |
1672 | /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint |
1673 | exists at PC. It returns ordinary_breakpoint_here if it's an | |
1674 | ordinary breakpoint, or permanent_breakpoint_here if it's a | |
1675 | permanent breakpoint. | |
1676 | - When continuing from a location with an ordinary breakpoint, we | |
1677 | actually single step once before calling insert_breakpoints. | |
1678 | - When continuing from a localion with a permanent breakpoint, we | |
1679 | need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by | |
1680 | the target, to advance the PC past the breakpoint. */ | |
c906108c | 1681 | |
c2c6d25f | 1682 | enum breakpoint_here |
fba45db2 | 1683 | breakpoint_here_p (CORE_ADDR pc) |
c906108c | 1684 | { |
075f6582 | 1685 | struct bp_location *bpt; |
c2c6d25f | 1686 | int any_breakpoint_here = 0; |
c906108c | 1687 | |
075f6582 DJ |
1688 | ALL_BP_LOCATIONS (bpt) |
1689 | { | |
1690 | if (bpt->loc_type != bp_loc_software_breakpoint | |
1691 | && bpt->loc_type != bp_loc_hardware_breakpoint) | |
1692 | continue; | |
1693 | ||
468d015d | 1694 | if ((breakpoint_enabled (bpt->owner) |
075f6582 DJ |
1695 | || bpt->owner->enable_state == bp_permanent) |
1696 | && bpt->address == pc) /* bp is enabled and matches pc */ | |
1697 | { | |
1698 | if (overlay_debugging | |
1699 | && section_is_overlay (bpt->section) | |
1700 | && !section_is_mapped (bpt->section)) | |
1701 | continue; /* unmapped overlay -- can't be a match */ | |
1702 | else if (bpt->owner->enable_state == bp_permanent) | |
1703 | return permanent_breakpoint_here; | |
1704 | else | |
1705 | any_breakpoint_here = 1; | |
1706 | } | |
1707 | } | |
c906108c | 1708 | |
c2c6d25f | 1709 | return any_breakpoint_here ? ordinary_breakpoint_here : 0; |
c906108c SS |
1710 | } |
1711 | ||
c2c6d25f | 1712 | |
53a5351d JM |
1713 | /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(), |
1714 | but it only returns true if there is actually a breakpoint inserted | |
1715 | at PC. */ | |
c906108c SS |
1716 | |
1717 | int | |
fba45db2 | 1718 | breakpoint_inserted_here_p (CORE_ADDR pc) |
c906108c | 1719 | { |
075f6582 | 1720 | struct bp_location *bpt; |
c906108c | 1721 | |
075f6582 | 1722 | ALL_BP_LOCATIONS (bpt) |
c5aa993b | 1723 | { |
075f6582 DJ |
1724 | if (bpt->loc_type != bp_loc_software_breakpoint |
1725 | && bpt->loc_type != bp_loc_hardware_breakpoint) | |
1726 | continue; | |
1727 | ||
1728 | if (bpt->inserted | |
1729 | && bpt->address == pc) /* bp is inserted and matches pc */ | |
1730 | { | |
1731 | if (overlay_debugging | |
1732 | && section_is_overlay (bpt->section) | |
1733 | && !section_is_mapped (bpt->section)) | |
1734 | continue; /* unmapped overlay -- can't be a match */ | |
1735 | else | |
1736 | return 1; | |
1737 | } | |
c5aa993b | 1738 | } |
c906108c SS |
1739 | |
1740 | return 0; | |
1741 | } | |
1742 | ||
4fa8626c DJ |
1743 | /* This function returns non-zero iff there is a software breakpoint |
1744 | inserted at PC. */ | |
1745 | ||
1746 | int | |
1747 | software_breakpoint_inserted_here_p (CORE_ADDR pc) | |
1748 | { | |
1749 | struct bp_location *bpt; | |
1750 | int any_breakpoint_here = 0; | |
1751 | ||
1752 | ALL_BP_LOCATIONS (bpt) | |
1753 | { | |
1754 | if (bpt->loc_type != bp_loc_software_breakpoint) | |
1755 | continue; | |
1756 | ||
1757 | if ((breakpoint_enabled (bpt->owner) | |
1758 | || bpt->owner->enable_state == bp_permanent) | |
1759 | && bpt->inserted | |
1760 | && bpt->address == pc) /* bp is enabled and matches pc */ | |
1761 | { | |
1762 | if (overlay_debugging | |
1763 | && section_is_overlay (bpt->section) | |
1764 | && !section_is_mapped (bpt->section)) | |
1765 | continue; /* unmapped overlay -- can't be a match */ | |
1766 | else | |
1767 | return 1; | |
1768 | } | |
1769 | } | |
1770 | ||
1771 | return 0; | |
1772 | } | |
1773 | ||
075f6582 DJ |
1774 | /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at |
1775 | PC is valid for process/thread PTID. */ | |
c906108c SS |
1776 | |
1777 | int | |
39f77062 | 1778 | breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid) |
c906108c | 1779 | { |
075f6582 | 1780 | struct bp_location *bpt; |
c906108c SS |
1781 | int thread; |
1782 | ||
39f77062 | 1783 | thread = pid_to_thread_id (ptid); |
c906108c | 1784 | |
075f6582 | 1785 | ALL_BP_LOCATIONS (bpt) |
c5aa993b | 1786 | { |
075f6582 DJ |
1787 | if (bpt->loc_type != bp_loc_software_breakpoint |
1788 | && bpt->loc_type != bp_loc_hardware_breakpoint) | |
1789 | continue; | |
1790 | ||
468d015d | 1791 | if ((breakpoint_enabled (bpt->owner) |
075f6582 DJ |
1792 | || bpt->owner->enable_state == bp_permanent) |
1793 | && bpt->address == pc | |
1794 | && (bpt->owner->thread == -1 || bpt->owner->thread == thread)) | |
1795 | { | |
1796 | if (overlay_debugging | |
1797 | && section_is_overlay (bpt->section) | |
1798 | && !section_is_mapped (bpt->section)) | |
1799 | continue; /* unmapped overlay -- can't be a match */ | |
1800 | else | |
1801 | return 1; | |
1802 | } | |
c5aa993b | 1803 | } |
c906108c SS |
1804 | |
1805 | return 0; | |
1806 | } | |
c906108c | 1807 | \f |
c5aa993b | 1808 | |
c906108c SS |
1809 | /* bpstat stuff. External routines' interfaces are documented |
1810 | in breakpoint.h. */ | |
1811 | ||
1812 | int | |
fba45db2 | 1813 | ep_is_catchpoint (struct breakpoint *ep) |
c906108c SS |
1814 | { |
1815 | return | |
1816 | (ep->type == bp_catch_load) | |
1817 | || (ep->type == bp_catch_unload) | |
1818 | || (ep->type == bp_catch_fork) | |
1819 | || (ep->type == bp_catch_vfork) | |
1820 | || (ep->type == bp_catch_exec) | |
1821 | || (ep->type == bp_catch_catch) | |
d85310f7 | 1822 | || (ep->type == bp_catch_throw); |
c906108c | 1823 | |
c5aa993b | 1824 | /* ??rehrauer: Add more kinds here, as are implemented... */ |
c906108c | 1825 | } |
c5aa993b | 1826 | |
c906108c | 1827 | int |
fba45db2 | 1828 | ep_is_shlib_catchpoint (struct breakpoint *ep) |
c906108c SS |
1829 | { |
1830 | return | |
1831 | (ep->type == bp_catch_load) | |
d85310f7 | 1832 | || (ep->type == bp_catch_unload); |
c906108c SS |
1833 | } |
1834 | ||
1835 | int | |
fba45db2 | 1836 | ep_is_exception_catchpoint (struct breakpoint *ep) |
c906108c SS |
1837 | { |
1838 | return | |
1839 | (ep->type == bp_catch_catch) | |
d85310f7 | 1840 | || (ep->type == bp_catch_throw); |
c906108c SS |
1841 | } |
1842 | ||
1843 | /* Clear a bpstat so that it says we are not at any breakpoint. | |
1844 | Also free any storage that is part of a bpstat. */ | |
1845 | ||
1846 | void | |
fba45db2 | 1847 | bpstat_clear (bpstat *bsp) |
c906108c SS |
1848 | { |
1849 | bpstat p; | |
1850 | bpstat q; | |
1851 | ||
1852 | if (bsp == 0) | |
1853 | return; | |
1854 | p = *bsp; | |
1855 | while (p != NULL) | |
1856 | { | |
1857 | q = p->next; | |
1858 | if (p->old_val != NULL) | |
1859 | value_free (p->old_val); | |
c2b8ed2c | 1860 | free_command_lines (&p->commands); |
b8c9b27d | 1861 | xfree (p); |
c906108c SS |
1862 | p = q; |
1863 | } | |
1864 | *bsp = NULL; | |
1865 | } | |
1866 | ||
1867 | /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that | |
1868 | is part of the bpstat is copied as well. */ | |
1869 | ||
1870 | bpstat | |
fba45db2 | 1871 | bpstat_copy (bpstat bs) |
c906108c SS |
1872 | { |
1873 | bpstat p = NULL; | |
1874 | bpstat tmp; | |
1875 | bpstat retval = NULL; | |
1876 | ||
1877 | if (bs == NULL) | |
1878 | return bs; | |
1879 | ||
1880 | for (; bs != NULL; bs = bs->next) | |
1881 | { | |
1882 | tmp = (bpstat) xmalloc (sizeof (*tmp)); | |
1883 | memcpy (tmp, bs, sizeof (*tmp)); | |
31cc81e9 DJ |
1884 | if (bs->commands != NULL) |
1885 | tmp->commands = copy_command_lines (bs->commands); | |
1886 | if (bs->old_val != NULL) | |
1887 | tmp->old_val = value_copy (bs->old_val); | |
1888 | ||
c906108c SS |
1889 | if (p == NULL) |
1890 | /* This is the first thing in the chain. */ | |
1891 | retval = tmp; | |
1892 | else | |
1893 | p->next = tmp; | |
1894 | p = tmp; | |
1895 | } | |
1896 | p->next = NULL; | |
1897 | return retval; | |
1898 | } | |
1899 | ||
1900 | /* Find the bpstat associated with this breakpoint */ | |
1901 | ||
1902 | bpstat | |
fba45db2 | 1903 | bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint) |
c906108c | 1904 | { |
c5aa993b JM |
1905 | if (bsp == NULL) |
1906 | return NULL; | |
c906108c | 1907 | |
c5aa993b JM |
1908 | for (; bsp != NULL; bsp = bsp->next) |
1909 | { | |
1910 | if (bsp->breakpoint_at == breakpoint) | |
1911 | return bsp; | |
1912 | } | |
c906108c SS |
1913 | return NULL; |
1914 | } | |
1915 | ||
1916 | /* Find a step_resume breakpoint associated with this bpstat. | |
1917 | (If there are multiple step_resume bp's on the list, this function | |
1918 | will arbitrarily pick one.) | |
1919 | ||
1920 | It is an error to use this function if BPSTAT doesn't contain a | |
1921 | step_resume breakpoint. | |
1922 | ||
1923 | See wait_for_inferior's use of this function. */ | |
1924 | struct breakpoint * | |
fba45db2 | 1925 | bpstat_find_step_resume_breakpoint (bpstat bsp) |
c906108c | 1926 | { |
8601f500 MS |
1927 | int current_thread; |
1928 | ||
8a3fe4f8 | 1929 | gdb_assert (bsp != NULL); |
c906108c | 1930 | |
8601f500 MS |
1931 | current_thread = pid_to_thread_id (inferior_ptid); |
1932 | ||
c906108c SS |
1933 | for (; bsp != NULL; bsp = bsp->next) |
1934 | { | |
1935 | if ((bsp->breakpoint_at != NULL) && | |
8601f500 MS |
1936 | (bsp->breakpoint_at->type == bp_step_resume) && |
1937 | (bsp->breakpoint_at->thread == current_thread || | |
1938 | bsp->breakpoint_at->thread == -1)) | |
c5aa993b | 1939 | return bsp->breakpoint_at; |
c906108c SS |
1940 | } |
1941 | ||
8a3fe4f8 | 1942 | internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found.")); |
c906108c SS |
1943 | } |
1944 | ||
1945 | ||
1946 | /* Return the breakpoint number of the first breakpoint we are stopped | |
1947 | at. *BSP upon return is a bpstat which points to the remaining | |
1948 | breakpoints stopped at (but which is not guaranteed to be good for | |
1949 | anything but further calls to bpstat_num). | |
1950 | Return 0 if passed a bpstat which does not indicate any breakpoints. */ | |
1951 | ||
1952 | int | |
fba45db2 | 1953 | bpstat_num (bpstat *bsp) |
c906108c SS |
1954 | { |
1955 | struct breakpoint *b; | |
1956 | ||
1957 | if ((*bsp) == NULL) | |
1958 | return 0; /* No more breakpoint values */ | |
1959 | else | |
1960 | { | |
1961 | b = (*bsp)->breakpoint_at; | |
1962 | *bsp = (*bsp)->next; | |
1963 | if (b == NULL) | |
1964 | return -1; /* breakpoint that's been deleted since */ | |
1965 | else | |
c5aa993b | 1966 | return b->number; /* We have its number */ |
c906108c SS |
1967 | } |
1968 | } | |
1969 | ||
1970 | /* Modify BS so that the actions will not be performed. */ | |
1971 | ||
1972 | void | |
fba45db2 | 1973 | bpstat_clear_actions (bpstat bs) |
c906108c SS |
1974 | { |
1975 | for (; bs != NULL; bs = bs->next) | |
1976 | { | |
c2b8ed2c | 1977 | free_command_lines (&bs->commands); |
c906108c SS |
1978 | if (bs->old_val != NULL) |
1979 | { | |
1980 | value_free (bs->old_val); | |
1981 | bs->old_val = NULL; | |
1982 | } | |
1983 | } | |
1984 | } | |
1985 | ||
1986 | /* Stub for cleaning up our state if we error-out of a breakpoint command */ | |
c906108c | 1987 | static void |
4efb68b1 | 1988 | cleanup_executing_breakpoints (void *ignore) |
c906108c SS |
1989 | { |
1990 | executing_breakpoint_commands = 0; | |
1991 | } | |
1992 | ||
1993 | /* Execute all the commands associated with all the breakpoints at this | |
1994 | location. Any of these commands could cause the process to proceed | |
1995 | beyond this point, etc. We look out for such changes by checking | |
1996 | the global "breakpoint_proceeded" after each command. */ | |
1997 | ||
1998 | void | |
fba45db2 | 1999 | bpstat_do_actions (bpstat *bsp) |
c906108c SS |
2000 | { |
2001 | bpstat bs; | |
2002 | struct cleanup *old_chain; | |
c906108c SS |
2003 | |
2004 | /* Avoid endless recursion if a `source' command is contained | |
2005 | in bs->commands. */ | |
2006 | if (executing_breakpoint_commands) | |
2007 | return; | |
2008 | ||
2009 | executing_breakpoint_commands = 1; | |
2010 | old_chain = make_cleanup (cleanup_executing_breakpoints, 0); | |
2011 | ||
2012 | top: | |
2013 | /* Note that (as of this writing), our callers all appear to | |
2014 | be passing us the address of global stop_bpstat. And, if | |
2015 | our calls to execute_control_command cause the inferior to | |
2016 | proceed, that global (and hence, *bsp) will change. | |
2017 | ||
2018 | We must be careful to not touch *bsp unless the inferior | |
2019 | has not proceeded. */ | |
2020 | ||
2021 | /* This pointer will iterate over the list of bpstat's. */ | |
2022 | bs = *bsp; | |
2023 | ||
2024 | breakpoint_proceeded = 0; | |
2025 | for (; bs != NULL; bs = bs->next) | |
2026 | { | |
6c50ab1c JB |
2027 | struct command_line *cmd; |
2028 | struct cleanup *this_cmd_tree_chain; | |
2029 | ||
2030 | /* Take ownership of the BSP's command tree, if it has one. | |
2031 | ||
2032 | The command tree could legitimately contain commands like | |
2033 | 'step' and 'next', which call clear_proceed_status, which | |
2034 | frees stop_bpstat's command tree. To make sure this doesn't | |
2035 | free the tree we're executing out from under us, we need to | |
2036 | take ownership of the tree ourselves. Since a given bpstat's | |
2037 | commands are only executed once, we don't need to copy it; we | |
2038 | can clear the pointer in the bpstat, and make sure we free | |
2039 | the tree when we're done. */ | |
c906108c | 2040 | cmd = bs->commands; |
6c50ab1c JB |
2041 | bs->commands = 0; |
2042 | this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd); | |
2043 | ||
c906108c SS |
2044 | while (cmd != NULL) |
2045 | { | |
2046 | execute_control_command (cmd); | |
2047 | ||
2048 | if (breakpoint_proceeded) | |
2049 | break; | |
2050 | else | |
2051 | cmd = cmd->next; | |
2052 | } | |
6c50ab1c JB |
2053 | |
2054 | /* We can free this command tree now. */ | |
2055 | do_cleanups (this_cmd_tree_chain); | |
2056 | ||
c906108c SS |
2057 | if (breakpoint_proceeded) |
2058 | /* The inferior is proceeded by the command; bomb out now. | |
2059 | The bpstat chain has been blown away by wait_for_inferior. | |
2060 | But since execution has stopped again, there is a new bpstat | |
2061 | to look at, so start over. */ | |
2062 | goto top; | |
c906108c | 2063 | } |
c2b8ed2c | 2064 | do_cleanups (old_chain); |
c906108c SS |
2065 | } |
2066 | ||
e514a9d6 | 2067 | /* This is the normal print function for a bpstat. In the future, |
c906108c | 2068 | much of this logic could (should?) be moved to bpstat_stop_status, |
e514a9d6 JM |
2069 | by having it set different print_it values. |
2070 | ||
2071 | Current scheme: When we stop, bpstat_print() is called. It loops | |
2072 | through the bpstat list of things causing this stop, calling the | |
2073 | print_bp_stop_message function on each one. The behavior of the | |
2074 | print_bp_stop_message function depends on the print_it field of | |
2075 | bpstat. If such field so indicates, call this function here. | |
2076 | ||
2077 | Return values from this routine (ultimately used by bpstat_print() | |
2078 | and normal_stop() to decide what to do): | |
2079 | PRINT_NOTHING: Means we already printed all we needed to print, | |
2080 | don't print anything else. | |
2081 | PRINT_SRC_ONLY: Means we printed something, and we do *not* desire | |
2082 | that something to be followed by a location. | |
2083 | PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire | |
2084 | that something to be followed by a location. | |
2085 | PRINT_UNKNOWN: Means we printed nothing or we need to do some more | |
2086 | analysis. */ | |
c906108c | 2087 | |
917317f4 | 2088 | static enum print_stop_action |
fba45db2 | 2089 | print_it_typical (bpstat bs) |
c906108c | 2090 | { |
3b31d625 | 2091 | struct cleanup *old_chain, *ui_out_chain; |
8b93c638 JM |
2092 | struct ui_stream *stb; |
2093 | stb = ui_out_stream_new (uiout); | |
b02eeafb | 2094 | old_chain = make_cleanup_ui_out_stream_delete (stb); |
c906108c SS |
2095 | /* bs->breakpoint_at can be NULL if it was a momentary breakpoint |
2096 | which has since been deleted. */ | |
e514a9d6 | 2097 | if (bs->breakpoint_at == NULL) |
917317f4 | 2098 | return PRINT_UNKNOWN; |
c906108c | 2099 | |
e514a9d6 | 2100 | switch (bs->breakpoint_at->type) |
c906108c | 2101 | { |
e514a9d6 JM |
2102 | case bp_breakpoint: |
2103 | case bp_hardware_breakpoint: | |
5cab636d DJ |
2104 | if (bs->breakpoint_at->loc->address != bs->breakpoint_at->loc->requested_address) |
2105 | breakpoint_adjustment_warning (bs->breakpoint_at->loc->requested_address, | |
2106 | bs->breakpoint_at->loc->address, | |
76897487 | 2107 | bs->breakpoint_at->number, 1); |
8b93c638 JM |
2108 | annotate_breakpoint (bs->breakpoint_at->number); |
2109 | ui_out_text (uiout, "\nBreakpoint "); | |
9dc5e2a9 | 2110 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2111 | ui_out_field_string (uiout, "reason", "breakpoint-hit"); |
8b93c638 JM |
2112 | ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number); |
2113 | ui_out_text (uiout, ", "); | |
2114 | return PRINT_SRC_AND_LOC; | |
e514a9d6 JM |
2115 | break; |
2116 | ||
2117 | case bp_shlib_event: | |
917317f4 JM |
2118 | /* Did we stop because the user set the stop_on_solib_events |
2119 | variable? (If so, we report this as a generic, "Stopped due | |
2120 | to shlib event" message.) */ | |
a3f17187 | 2121 | printf_filtered (_("Stopped due to shared library event\n")); |
e514a9d6 JM |
2122 | return PRINT_NOTHING; |
2123 | break; | |
2124 | ||
c4093a6a JM |
2125 | case bp_thread_event: |
2126 | /* Not sure how we will get here. | |
2127 | GDB should not stop for these breakpoints. */ | |
a3f17187 | 2128 | printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n")); |
c4093a6a JM |
2129 | return PRINT_NOTHING; |
2130 | break; | |
2131 | ||
1900040c MS |
2132 | case bp_overlay_event: |
2133 | /* By analogy with the thread event, GDB should not stop for these. */ | |
a3f17187 | 2134 | printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n")); |
1900040c MS |
2135 | return PRINT_NOTHING; |
2136 | break; | |
2137 | ||
e514a9d6 | 2138 | case bp_catch_load: |
c906108c | 2139 | annotate_catchpoint (bs->breakpoint_at->number); |
a3f17187 AC |
2140 | printf_filtered (_("\nCatchpoint %d (loaded %s), "), |
2141 | bs->breakpoint_at->number, | |
2142 | bs->breakpoint_at->triggered_dll_pathname); | |
e514a9d6 JM |
2143 | return PRINT_SRC_AND_LOC; |
2144 | break; | |
2145 | ||
2146 | case bp_catch_unload: | |
2147 | annotate_catchpoint (bs->breakpoint_at->number); | |
a3f17187 AC |
2148 | printf_filtered (_("\nCatchpoint %d (unloaded %s), "), |
2149 | bs->breakpoint_at->number, | |
2150 | bs->breakpoint_at->triggered_dll_pathname); | |
e514a9d6 JM |
2151 | return PRINT_SRC_AND_LOC; |
2152 | break; | |
2153 | ||
2154 | case bp_catch_fork: | |
2155 | annotate_catchpoint (bs->breakpoint_at->number); | |
a3f17187 AC |
2156 | printf_filtered (_("\nCatchpoint %d (forked process %d), "), |
2157 | bs->breakpoint_at->number, | |
53a5351d | 2158 | bs->breakpoint_at->forked_inferior_pid); |
917317f4 | 2159 | return PRINT_SRC_AND_LOC; |
e514a9d6 JM |
2160 | break; |
2161 | ||
2162 | case bp_catch_vfork: | |
2163 | annotate_catchpoint (bs->breakpoint_at->number); | |
a3f17187 AC |
2164 | printf_filtered (_("\nCatchpoint %d (vforked process %d), "), |
2165 | bs->breakpoint_at->number, | |
e514a9d6 JM |
2166 | bs->breakpoint_at->forked_inferior_pid); |
2167 | return PRINT_SRC_AND_LOC; | |
2168 | break; | |
2169 | ||
2170 | case bp_catch_exec: | |
c906108c | 2171 | annotate_catchpoint (bs->breakpoint_at->number); |
a3f17187 | 2172 | printf_filtered (_("\nCatchpoint %d (exec'd %s), "), |
c5aa993b JM |
2173 | bs->breakpoint_at->number, |
2174 | bs->breakpoint_at->exec_pathname); | |
917317f4 | 2175 | return PRINT_SRC_AND_LOC; |
e514a9d6 JM |
2176 | break; |
2177 | ||
2178 | case bp_catch_catch: | |
53a5351d JM |
2179 | if (current_exception_event && |
2180 | (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH)) | |
c5aa993b JM |
2181 | { |
2182 | annotate_catchpoint (bs->breakpoint_at->number); | |
a3f17187 | 2183 | printf_filtered (_("\nCatchpoint %d (exception caught), "), |
53a5351d | 2184 | bs->breakpoint_at->number); |
c5aa993b | 2185 | if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE) |
a3f17187 | 2186 | printf_filtered (_("throw location %s:%d, "), |
c5aa993b JM |
2187 | CURRENT_EXCEPTION_THROW_FILE, |
2188 | CURRENT_EXCEPTION_THROW_LINE); | |
2189 | else | |
a3f17187 | 2190 | printf_filtered (_("throw location unknown, ")); |
c5aa993b | 2191 | |
c5aa993b | 2192 | if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE) |
a3f17187 | 2193 | printf_filtered (_("catch location %s:%d\n"), |
c5aa993b JM |
2194 | CURRENT_EXCEPTION_CATCH_FILE, |
2195 | CURRENT_EXCEPTION_CATCH_LINE); | |
2196 | else | |
a3f17187 | 2197 | printf_filtered (_("catch location unknown\n")); |
c5aa993b | 2198 | |
e514a9d6 JM |
2199 | /* don't bother to print location frame info */ |
2200 | return PRINT_SRC_ONLY; | |
c5aa993b | 2201 | } |
c906108c | 2202 | else |
c5aa993b | 2203 | { |
e514a9d6 JM |
2204 | /* really throw, some other bpstat will handle it */ |
2205 | return PRINT_UNKNOWN; | |
c5aa993b | 2206 | } |
e514a9d6 JM |
2207 | break; |
2208 | ||
2209 | case bp_catch_throw: | |
53a5351d JM |
2210 | if (current_exception_event && |
2211 | (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW)) | |
c5aa993b JM |
2212 | { |
2213 | annotate_catchpoint (bs->breakpoint_at->number); | |
a3f17187 | 2214 | printf_filtered (_("\nCatchpoint %d (exception thrown), "), |
53a5351d | 2215 | bs->breakpoint_at->number); |
c5aa993b | 2216 | if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE) |
a3f17187 | 2217 | printf_filtered (_("throw location %s:%d, "), |
c5aa993b JM |
2218 | CURRENT_EXCEPTION_THROW_FILE, |
2219 | CURRENT_EXCEPTION_THROW_LINE); | |
2220 | else | |
a3f17187 | 2221 | printf_filtered (_("throw location unknown, ")); |
c5aa993b | 2222 | |
c5aa993b | 2223 | if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE) |
a3f17187 | 2224 | printf_filtered (_("catch location %s:%d\n"), |
c5aa993b JM |
2225 | CURRENT_EXCEPTION_CATCH_FILE, |
2226 | CURRENT_EXCEPTION_CATCH_LINE); | |
2227 | else | |
a3f17187 | 2228 | printf_filtered (_("catch location unknown\n")); |
c5aa993b | 2229 | |
e514a9d6 JM |
2230 | /* don't bother to print location frame info */ |
2231 | return PRINT_SRC_ONLY; | |
c5aa993b | 2232 | } |
c906108c | 2233 | else |
c5aa993b | 2234 | { |
e514a9d6 JM |
2235 | /* really catch, some other bpstat will handle it */ |
2236 | return PRINT_UNKNOWN; | |
c5aa993b | 2237 | } |
e514a9d6 | 2238 | break; |
c906108c | 2239 | |
e514a9d6 JM |
2240 | case bp_watchpoint: |
2241 | case bp_hardware_watchpoint: | |
2242 | if (bs->old_val != NULL) | |
2243 | { | |
2244 | annotate_watchpoint (bs->breakpoint_at->number); | |
9dc5e2a9 | 2245 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2246 | ui_out_field_string (uiout, "reason", "watchpoint-trigger"); |
8b93c638 | 2247 | mention (bs->breakpoint_at); |
3b31d625 | 2248 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value"); |
8b93c638 JM |
2249 | ui_out_text (uiout, "\nOld value = "); |
2250 | value_print (bs->old_val, stb->stream, 0, Val_pretty_default); | |
2251 | ui_out_field_stream (uiout, "old", stb); | |
2252 | ui_out_text (uiout, "\nNew value = "); | |
2253 | value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default); | |
2254 | ui_out_field_stream (uiout, "new", stb); | |
3b31d625 | 2255 | do_cleanups (ui_out_chain); |
8b93c638 | 2256 | ui_out_text (uiout, "\n"); |
e514a9d6 JM |
2257 | value_free (bs->old_val); |
2258 | bs->old_val = NULL; | |
2259 | } | |
2260 | /* More than one watchpoint may have been triggered. */ | |
2261 | return PRINT_UNKNOWN; | |
2262 | break; | |
2263 | ||
2264 | case bp_read_watchpoint: | |
9dc5e2a9 | 2265 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2266 | ui_out_field_string (uiout, "reason", "read-watchpoint-trigger"); |
8b93c638 | 2267 | mention (bs->breakpoint_at); |
3b31d625 | 2268 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value"); |
8b93c638 JM |
2269 | ui_out_text (uiout, "\nValue = "); |
2270 | value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default); | |
2271 | ui_out_field_stream (uiout, "value", stb); | |
3b31d625 | 2272 | do_cleanups (ui_out_chain); |
8b93c638 | 2273 | ui_out_text (uiout, "\n"); |
917317f4 | 2274 | return PRINT_UNKNOWN; |
e514a9d6 JM |
2275 | break; |
2276 | ||
2277 | case bp_access_watchpoint: | |
8b93c638 JM |
2278 | if (bs->old_val != NULL) |
2279 | { | |
2280 | annotate_watchpoint (bs->breakpoint_at->number); | |
9dc5e2a9 | 2281 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2282 | ui_out_field_string (uiout, "reason", "access-watchpoint-trigger"); |
8b93c638 | 2283 | mention (bs->breakpoint_at); |
3b31d625 | 2284 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value"); |
8b93c638 JM |
2285 | ui_out_text (uiout, "\nOld value = "); |
2286 | value_print (bs->old_val, stb->stream, 0, Val_pretty_default); | |
2287 | ui_out_field_stream (uiout, "old", stb); | |
2288 | value_free (bs->old_val); | |
2289 | bs->old_val = NULL; | |
2290 | ui_out_text (uiout, "\nNew value = "); | |
2291 | } | |
2292 | else | |
2293 | { | |
2294 | mention (bs->breakpoint_at); | |
9dc5e2a9 | 2295 | if (ui_out_is_mi_like_p (uiout)) |
c97fe386 | 2296 | ui_out_field_string (uiout, "reason", "access-watchpoint-trigger"); |
3b31d625 | 2297 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value"); |
8b93c638 JM |
2298 | ui_out_text (uiout, "\nValue = "); |
2299 | } | |
2300 | value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default); | |
2301 | ui_out_field_stream (uiout, "new", stb); | |
3b31d625 | 2302 | do_cleanups (ui_out_chain); |
8b93c638 | 2303 | ui_out_text (uiout, "\n"); |
917317f4 | 2304 | return PRINT_UNKNOWN; |
e514a9d6 | 2305 | break; |
4ce44c66 | 2306 | |
e514a9d6 JM |
2307 | /* Fall through, we don't deal with these types of breakpoints |
2308 | here. */ | |
2309 | ||
11cf8741 | 2310 | case bp_finish: |
9dc5e2a9 | 2311 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2312 | ui_out_field_string (uiout, "reason", "function-finished"); |
8b93c638 JM |
2313 | return PRINT_UNKNOWN; |
2314 | break; | |
2315 | ||
e514a9d6 | 2316 | case bp_until: |
9dc5e2a9 | 2317 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2318 | ui_out_field_string (uiout, "reason", "location-reached"); |
8b93c638 JM |
2319 | return PRINT_UNKNOWN; |
2320 | break; | |
2321 | ||
c2d11a7d | 2322 | case bp_none: |
e514a9d6 JM |
2323 | case bp_longjmp: |
2324 | case bp_longjmp_resume: | |
2325 | case bp_step_resume: | |
2326 | case bp_through_sigtramp: | |
2327 | case bp_watchpoint_scope: | |
2328 | case bp_call_dummy: | |
2329 | default: | |
2330 | return PRINT_UNKNOWN; | |
2331 | } | |
2332 | } | |
2333 | ||
2334 | /* Generic routine for printing messages indicating why we | |
2335 | stopped. The behavior of this function depends on the value | |
2336 | 'print_it' in the bpstat structure. Under some circumstances we | |
2337 | may decide not to print anything here and delegate the task to | |
2338 | normal_stop(). */ | |
2339 | ||
2340 | static enum print_stop_action | |
2341 | print_bp_stop_message (bpstat bs) | |
2342 | { | |
2343 | switch (bs->print_it) | |
2344 | { | |
2345 | case print_it_noop: | |
2346 | /* Nothing should be printed for this bpstat entry. */ | |
2347 | return PRINT_UNKNOWN; | |
2348 | break; | |
2349 | ||
2350 | case print_it_done: | |
2351 | /* We still want to print the frame, but we already printed the | |
2352 | relevant messages. */ | |
2353 | return PRINT_SRC_AND_LOC; | |
2354 | break; | |
2355 | ||
2356 | case print_it_normal: | |
3086aeae DJ |
2357 | /* Normal case. Call the breakpoint's print_it method, or |
2358 | print_it_typical. */ | |
2359 | if (bs->breakpoint_at != NULL && bs->breakpoint_at->ops != NULL | |
2360 | && bs->breakpoint_at->ops->print_it != NULL) | |
2361 | return bs->breakpoint_at->ops->print_it (bs->breakpoint_at); | |
2362 | else | |
2363 | return print_it_typical (bs); | |
e514a9d6 | 2364 | break; |
3086aeae | 2365 | |
e514a9d6 | 2366 | default: |
8e65ff28 | 2367 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 2368 | _("print_bp_stop_message: unrecognized enum value")); |
e514a9d6 | 2369 | break; |
c906108c | 2370 | } |
c906108c SS |
2371 | } |
2372 | ||
e514a9d6 JM |
2373 | /* Print a message indicating what happened. This is called from |
2374 | normal_stop(). The input to this routine is the head of the bpstat | |
2375 | list - a list of the eventpoints that caused this stop. This | |
2376 | routine calls the generic print routine for printing a message | |
2377 | about reasons for stopping. This will print (for example) the | |
2378 | "Breakpoint n," part of the output. The return value of this | |
2379 | routine is one of: | |
c906108c | 2380 | |
917317f4 JM |
2381 | PRINT_UNKNOWN: Means we printed nothing |
2382 | PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent | |
c5aa993b JM |
2383 | code to print the location. An example is |
2384 | "Breakpoint 1, " which should be followed by | |
2385 | the location. | |
917317f4 | 2386 | PRINT_SRC_ONLY: Means we printed something, but there is no need |
c5aa993b JM |
2387 | to also print the location part of the message. |
2388 | An example is the catch/throw messages, which | |
917317f4 JM |
2389 | don't require a location appended to the end. |
2390 | PRINT_NOTHING: We have done some printing and we don't need any | |
2391 | further info to be printed.*/ | |
c906108c | 2392 | |
917317f4 | 2393 | enum print_stop_action |
fba45db2 | 2394 | bpstat_print (bpstat bs) |
c906108c SS |
2395 | { |
2396 | int val; | |
c5aa993b | 2397 | |
c906108c | 2398 | /* Maybe another breakpoint in the chain caused us to stop. |
53a5351d JM |
2399 | (Currently all watchpoints go on the bpstat whether hit or not. |
2400 | That probably could (should) be changed, provided care is taken | |
c906108c | 2401 | with respect to bpstat_explains_signal). */ |
e514a9d6 JM |
2402 | for (; bs; bs = bs->next) |
2403 | { | |
2404 | val = print_bp_stop_message (bs); | |
2405 | if (val == PRINT_SRC_ONLY | |
2406 | || val == PRINT_SRC_AND_LOC | |
2407 | || val == PRINT_NOTHING) | |
2408 | return val; | |
2409 | } | |
c906108c | 2410 | |
e514a9d6 JM |
2411 | /* We reached the end of the chain, or we got a null BS to start |
2412 | with and nothing was printed. */ | |
917317f4 | 2413 | return PRINT_UNKNOWN; |
c906108c SS |
2414 | } |
2415 | ||
2416 | /* Evaluate the expression EXP and return 1 if value is zero. | |
2417 | This is used inside a catch_errors to evaluate the breakpoint condition. | |
2418 | The argument is a "struct expression *" that has been cast to char * to | |
2419 | make it pass through catch_errors. */ | |
2420 | ||
2421 | static int | |
4efb68b1 | 2422 | breakpoint_cond_eval (void *exp) |
c906108c | 2423 | { |
278cd55f | 2424 | struct value *mark = value_mark (); |
c5aa993b | 2425 | int i = !value_true (evaluate_expression ((struct expression *) exp)); |
c906108c SS |
2426 | value_free_to_mark (mark); |
2427 | return i; | |
2428 | } | |
2429 | ||
2430 | /* Allocate a new bpstat and chain it to the current one. */ | |
2431 | ||
2432 | static bpstat | |
831662b3 | 2433 | bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ ) |
c906108c SS |
2434 | { |
2435 | bpstat bs; | |
2436 | ||
2437 | bs = (bpstat) xmalloc (sizeof (*bs)); | |
2438 | cbs->next = bs; | |
2439 | bs->breakpoint_at = b; | |
2440 | /* If the condition is false, etc., don't do the commands. */ | |
2441 | bs->commands = NULL; | |
2442 | bs->old_val = NULL; | |
2443 | bs->print_it = print_it_normal; | |
2444 | return bs; | |
2445 | } | |
2446 | \f | |
2447 | /* Possible return values for watchpoint_check (this can't be an enum | |
2448 | because of check_errors). */ | |
2449 | /* The watchpoint has been deleted. */ | |
2450 | #define WP_DELETED 1 | |
2451 | /* The value has changed. */ | |
2452 | #define WP_VALUE_CHANGED 2 | |
2453 | /* The value has not changed. */ | |
2454 | #define WP_VALUE_NOT_CHANGED 3 | |
2455 | ||
2456 | #define BP_TEMPFLAG 1 | |
2457 | #define BP_HARDWAREFLAG 2 | |
2458 | ||
2459 | /* Check watchpoint condition. */ | |
2460 | ||
2461 | static int | |
4efb68b1 | 2462 | watchpoint_check (void *p) |
c906108c SS |
2463 | { |
2464 | bpstat bs = (bpstat) p; | |
2465 | struct breakpoint *b; | |
2466 | struct frame_info *fr; | |
2467 | int within_current_scope; | |
2468 | ||
2469 | b = bs->breakpoint_at; | |
2470 | ||
2471 | if (b->exp_valid_block == NULL) | |
2472 | within_current_scope = 1; | |
2473 | else | |
2474 | { | |
2475 | /* There is no current frame at this moment. If we're going to have | |
c5aa993b JM |
2476 | any chance of handling watchpoints on local variables, we'll need |
2477 | the frame chain (so we can determine if we're in scope). */ | |
2478 | reinit_frame_cache (); | |
101dcfbe | 2479 | fr = frame_find_by_id (b->watchpoint_frame); |
c906108c | 2480 | within_current_scope = (fr != NULL); |
c12260ac CV |
2481 | /* in_function_epilogue_p() returns a non-zero value if we're still |
2482 | in the function but the stack frame has already been invalidated. | |
2483 | Since we can't rely on the values of local variables after the | |
2484 | stack has been destroyed, we are treating the watchpoint in that | |
a957e642 CV |
2485 | state as `not changed' without further checking. |
2486 | ||
2487 | vinschen/2003-09-04: The former implementation left out the case | |
2488 | that the watchpoint frame couldn't be found by frame_find_by_id() | |
2489 | because the current PC is currently in an epilogue. Calling | |
2490 | gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */ | |
a6fbcf2f | 2491 | if ((!within_current_scope || fr == get_current_frame ()) |
c12260ac CV |
2492 | && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ())) |
2493 | return WP_VALUE_NOT_CHANGED; | |
a6fbcf2f | 2494 | if (fr && within_current_scope) |
c906108c SS |
2495 | /* If we end up stopping, the current frame will get selected |
2496 | in normal_stop. So this call to select_frame won't affect | |
2497 | the user. */ | |
0f7d239c | 2498 | select_frame (fr); |
c906108c | 2499 | } |
c5aa993b | 2500 | |
c906108c SS |
2501 | if (within_current_scope) |
2502 | { | |
2503 | /* We use value_{,free_to_}mark because it could be a | |
2504 | *long* time before we return to the command level and | |
c5aa993b JM |
2505 | call free_all_values. We can't call free_all_values because |
2506 | we might be in the middle of evaluating a function call. */ | |
c906108c | 2507 | |
278cd55f AC |
2508 | struct value *mark = value_mark (); |
2509 | struct value *new_val = evaluate_expression (bs->breakpoint_at->exp); | |
c906108c SS |
2510 | if (!value_equal (b->val, new_val)) |
2511 | { | |
2512 | release_value (new_val); | |
2513 | value_free_to_mark (mark); | |
2514 | bs->old_val = b->val; | |
2515 | b->val = new_val; | |
2516 | /* We will stop here */ | |
2517 | return WP_VALUE_CHANGED; | |
2518 | } | |
2519 | else | |
2520 | { | |
2521 | /* Nothing changed, don't do anything. */ | |
2522 | value_free_to_mark (mark); | |
2523 | /* We won't stop here */ | |
2524 | return WP_VALUE_NOT_CHANGED; | |
2525 | } | |
2526 | } | |
2527 | else | |
2528 | { | |
2529 | /* This seems like the only logical thing to do because | |
c5aa993b JM |
2530 | if we temporarily ignored the watchpoint, then when |
2531 | we reenter the block in which it is valid it contains | |
2532 | garbage (in the case of a function, it may have two | |
2533 | garbage values, one before and one after the prologue). | |
2534 | So we can't even detect the first assignment to it and | |
2535 | watch after that (since the garbage may or may not equal | |
2536 | the first value assigned). */ | |
4ce44c66 JM |
2537 | /* We print all the stop information in print_it_typical(), but |
2538 | in this case, by the time we call print_it_typical() this bp | |
2539 | will be deleted already. So we have no choice but print the | |
2540 | information here. */ | |
9dc5e2a9 | 2541 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 2542 | ui_out_field_string (uiout, "reason", "watchpoint-scope"); |
8b93c638 JM |
2543 | ui_out_text (uiout, "\nWatchpoint "); |
2544 | ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number); | |
2545 | ui_out_text (uiout, " deleted because the program has left the block in\n\ | |
2546 | which its expression is valid.\n"); | |
4ce44c66 | 2547 | |
c906108c | 2548 | if (b->related_breakpoint) |
b5de0fa7 EZ |
2549 | b->related_breakpoint->disposition = disp_del_at_next_stop; |
2550 | b->disposition = disp_del_at_next_stop; | |
c906108c SS |
2551 | |
2552 | return WP_DELETED; | |
2553 | } | |
2554 | } | |
2555 | ||
9709f61c | 2556 | /* Get a bpstat associated with having just stopped at address |
46587c42 JJ |
2557 | BP_ADDR in thread PTID. STOPPED_BY_WATCHPOINT is 1 if the |
2558 | target thinks we stopped due to a hardware watchpoint, 0 if we | |
2559 | know we did not trigger a hardware watchpoint, and -1 if we do not know. */ | |
c906108c SS |
2560 | |
2561 | /* Determine whether we stopped at a breakpoint, etc, or whether we | |
2562 | don't understand this stop. Result is a chain of bpstat's such that: | |
2563 | ||
c5aa993b | 2564 | if we don't understand the stop, the result is a null pointer. |
c906108c | 2565 | |
c5aa993b | 2566 | if we understand why we stopped, the result is not null. |
c906108c | 2567 | |
c5aa993b JM |
2568 | Each element of the chain refers to a particular breakpoint or |
2569 | watchpoint at which we have stopped. (We may have stopped for | |
2570 | several reasons concurrently.) | |
c906108c | 2571 | |
c5aa993b JM |
2572 | Each element of the chain has valid next, breakpoint_at, |
2573 | commands, FIXME??? fields. */ | |
c906108c SS |
2574 | |
2575 | bpstat | |
00d4360e | 2576 | bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid, int stopped_by_watchpoint) |
c906108c | 2577 | { |
52f0bd74 | 2578 | struct breakpoint *b, *temp; |
c906108c SS |
2579 | /* True if we've hit a breakpoint (as opposed to a watchpoint). */ |
2580 | int real_breakpoint = 0; | |
2581 | /* Root of the chain of bpstat's */ | |
2582 | struct bpstats root_bs[1]; | |
2583 | /* Pointer to the last thing in the chain currently. */ | |
2584 | bpstat bs = root_bs; | |
fa5281d0 | 2585 | int thread_id = pid_to_thread_id (ptid); |
c906108c | 2586 | |
c906108c | 2587 | ALL_BREAKPOINTS_SAFE (b, temp) |
c5aa993b | 2588 | { |
468d015d | 2589 | if (!breakpoint_enabled (b) && b->enable_state != bp_permanent) |
c5aa993b JM |
2590 | continue; |
2591 | ||
2592 | if (b->type != bp_watchpoint | |
46587c42 JJ |
2593 | && b->type != bp_hardware_watchpoint |
2594 | && b->type != bp_read_watchpoint | |
2595 | && b->type != bp_access_watchpoint | |
c5aa993b JM |
2596 | && b->type != bp_hardware_breakpoint |
2597 | && b->type != bp_catch_fork | |
2598 | && b->type != bp_catch_vfork | |
2599 | && b->type != bp_catch_exec | |
2600 | && b->type != bp_catch_catch | |
2601 | && b->type != bp_catch_throw) /* a non-watchpoint bp */ | |
9f04af04 | 2602 | { |
5cab636d | 2603 | if (b->loc->address != bp_addr) /* address doesn't match */ |
9f04af04 MS |
2604 | continue; |
2605 | if (overlay_debugging /* unmapped overlay section */ | |
cf3a9e5b DJ |
2606 | && section_is_overlay (b->loc->section) |
2607 | && !section_is_mapped (b->loc->section)) | |
9f04af04 MS |
2608 | continue; |
2609 | } | |
c906108c | 2610 | |
46587c42 JJ |
2611 | /* Continuable hardware watchpoints are treated as non-existent if the |
2612 | reason we stopped wasn't a hardware watchpoint (we didn't stop on | |
2613 | some data address). Otherwise gdb won't stop on a break instruction | |
2614 | in the code (not from a breakpoint) when a hardware watchpoint has | |
2615 | been defined. */ | |
2616 | ||
2617 | if ((b->type == bp_hardware_watchpoint | |
2618 | || b->type == bp_read_watchpoint | |
2619 | || b->type == bp_access_watchpoint) | |
2620 | && !stopped_by_watchpoint) | |
2621 | continue; | |
2622 | ||
c02f5703 MS |
2623 | if (b->type == bp_hardware_breakpoint) |
2624 | { | |
9709f61c | 2625 | if (b->loc->address != bp_addr) |
c02f5703 MS |
2626 | continue; |
2627 | if (overlay_debugging /* unmapped overlay section */ | |
cf3a9e5b DJ |
2628 | && section_is_overlay (b->loc->section) |
2629 | && !section_is_mapped (b->loc->section)) | |
c02f5703 MS |
2630 | continue; |
2631 | } | |
c5aa993b | 2632 | |
c5aa993b JM |
2633 | /* Is this a catchpoint of a load or unload? If so, did we |
2634 | get a load or unload of the specified library? If not, | |
2635 | ignore it. */ | |
2636 | if ((b->type == bp_catch_load) | |
c906108c | 2637 | #if defined(SOLIB_HAVE_LOAD_EVENT) |
39f77062 | 2638 | && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid)) |
c5aa993b | 2639 | || ((b->dll_pathname != NULL) |
53a5351d | 2640 | && (strcmp (b->dll_pathname, |
39f77062 KB |
2641 | SOLIB_LOADED_LIBRARY_PATHNAME ( |
2642 | PIDGET (inferior_ptid))) | |
53a5351d | 2643 | != 0))) |
c906108c | 2644 | #endif |
c5aa993b JM |
2645 | ) |
2646 | continue; | |
2647 | ||
2648 | if ((b->type == bp_catch_unload) | |
c906108c | 2649 | #if defined(SOLIB_HAVE_UNLOAD_EVENT) |
39f77062 | 2650 | && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid)) |
c5aa993b | 2651 | || ((b->dll_pathname != NULL) |
53a5351d | 2652 | && (strcmp (b->dll_pathname, |
39f77062 KB |
2653 | SOLIB_UNLOADED_LIBRARY_PATHNAME ( |
2654 | PIDGET (inferior_ptid))) | |
53a5351d | 2655 | != 0))) |
c906108c | 2656 | #endif |
c5aa993b JM |
2657 | ) |
2658 | continue; | |
c906108c | 2659 | |
c5aa993b | 2660 | if ((b->type == bp_catch_fork) |
47932f85 DJ |
2661 | && !inferior_has_forked (PIDGET (inferior_ptid), |
2662 | &b->forked_inferior_pid)) | |
c5aa993b | 2663 | continue; |
c906108c | 2664 | |
c5aa993b | 2665 | if ((b->type == bp_catch_vfork) |
47932f85 DJ |
2666 | && !inferior_has_vforked (PIDGET (inferior_ptid), |
2667 | &b->forked_inferior_pid)) | |
c5aa993b | 2668 | continue; |
c906108c | 2669 | |
c5aa993b | 2670 | if ((b->type == bp_catch_exec) |
47932f85 | 2671 | && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname)) |
c5aa993b | 2672 | continue; |
c906108c | 2673 | |
c5aa993b JM |
2674 | if (ep_is_exception_catchpoint (b) && |
2675 | !(current_exception_event = target_get_current_exception_event ())) | |
2676 | continue; | |
c906108c | 2677 | |
c5aa993b JM |
2678 | /* Come here if it's a watchpoint, or if the break address matches */ |
2679 | ||
2680 | bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */ | |
2681 | ||
2682 | /* Watchpoints may change this, if not found to have triggered. */ | |
2683 | bs->stop = 1; | |
2684 | bs->print = 1; | |
2685 | ||
53a5351d JM |
2686 | if (b->type == bp_watchpoint || |
2687 | b->type == bp_hardware_watchpoint) | |
c5aa993b | 2688 | { |
9ebf4acf AC |
2689 | char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n", |
2690 | b->number); | |
2691 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
2692 | int e = catch_errors (watchpoint_check, bs, message, | |
2693 | RETURN_MASK_ALL); | |
2694 | do_cleanups (cleanups); | |
2695 | switch (e) | |
c5aa993b JM |
2696 | { |
2697 | case WP_DELETED: | |
2698 | /* We've already printed what needs to be printed. */ | |
4ce44c66 JM |
2699 | /* Actually this is superfluous, because by the time we |
2700 | call print_it_typical() the wp will be already deleted, | |
2701 | and the function will return immediately. */ | |
c5aa993b JM |
2702 | bs->print_it = print_it_done; |
2703 | /* Stop. */ | |
2704 | break; | |
2705 | case WP_VALUE_CHANGED: | |
2706 | /* Stop. */ | |
2707 | ++(b->hit_count); | |
2708 | break; | |
2709 | case WP_VALUE_NOT_CHANGED: | |
2710 | /* Don't stop. */ | |
2711 | bs->print_it = print_it_noop; | |
2712 | bs->stop = 0; | |
c5aa993b JM |
2713 | continue; |
2714 | default: | |
2715 | /* Can't happen. */ | |
2716 | /* FALLTHROUGH */ | |
2717 | case 0: | |
2718 | /* Error from catch_errors. */ | |
a3f17187 | 2719 | printf_filtered (_("Watchpoint %d deleted.\n"), b->number); |
c5aa993b | 2720 | if (b->related_breakpoint) |
b5de0fa7 EZ |
2721 | b->related_breakpoint->disposition = disp_del_at_next_stop; |
2722 | b->disposition = disp_del_at_next_stop; | |
c5aa993b JM |
2723 | /* We've already printed what needs to be printed. */ |
2724 | bs->print_it = print_it_done; | |
2725 | ||
2726 | /* Stop. */ | |
2727 | break; | |
2728 | } | |
2729 | } | |
53a5351d JM |
2730 | else if (b->type == bp_read_watchpoint || |
2731 | b->type == bp_access_watchpoint) | |
c5aa993b JM |
2732 | { |
2733 | CORE_ADDR addr; | |
278cd55f | 2734 | struct value *v; |
c5aa993b JM |
2735 | int found = 0; |
2736 | ||
4aa7a7f5 | 2737 | if (!target_stopped_data_address (¤t_target, &addr)) |
c5aa993b | 2738 | continue; |
17cf0ecd | 2739 | for (v = b->val_chain; v; v = value_next (v)) |
c5aa993b | 2740 | { |
5c44784c | 2741 | if (VALUE_LVAL (v) == lval_memory |
d69fe07e | 2742 | && ! value_lazy (v)) |
c5aa993b | 2743 | { |
df407dfe | 2744 | struct type *vtype = check_typedef (value_type (v)); |
2e70b7b9 MS |
2745 | |
2746 | if (v == b->val_chain | |
2747 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT | |
2748 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
2749 | { | |
2750 | CORE_ADDR vaddr; | |
2751 | ||
df407dfe | 2752 | vaddr = VALUE_ADDRESS (v) + value_offset (v); |
2e70b7b9 MS |
2753 | /* Exact match not required. Within range is |
2754 | sufficient. */ | |
2755 | if (addr >= vaddr && | |
df407dfe | 2756 | addr < vaddr + TYPE_LENGTH (value_type (v))) |
2e70b7b9 MS |
2757 | found = 1; |
2758 | } | |
c5aa993b JM |
2759 | } |
2760 | } | |
2761 | if (found) | |
9ebf4acf AC |
2762 | { |
2763 | char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n", | |
2764 | b->number); | |
2765 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
2766 | int e = catch_errors (watchpoint_check, bs, message, | |
2767 | RETURN_MASK_ALL); | |
2768 | do_cleanups (cleanups); | |
2769 | switch (e) | |
2770 | { | |
2771 | case WP_DELETED: | |
2772 | /* We've already printed what needs to be printed. */ | |
2773 | bs->print_it = print_it_done; | |
2774 | /* Stop. */ | |
2775 | break; | |
2776 | case WP_VALUE_CHANGED: | |
2777 | if (b->type == bp_read_watchpoint) | |
2778 | { | |
2779 | /* Don't stop: read watchpoints shouldn't fire if | |
2780 | the value has changed. This is for targets | |
2781 | which cannot set read-only watchpoints. */ | |
2782 | bs->print_it = print_it_noop; | |
2783 | bs->stop = 0; | |
2784 | continue; | |
2785 | } | |
2786 | ++(b->hit_count); | |
2787 | break; | |
2788 | case WP_VALUE_NOT_CHANGED: | |
2789 | /* Stop. */ | |
2790 | ++(b->hit_count); | |
2791 | break; | |
2792 | default: | |
2793 | /* Can't happen. */ | |
2794 | case 0: | |
2795 | /* Error from catch_errors. */ | |
a3f17187 | 2796 | printf_filtered (_("Watchpoint %d deleted.\n"), b->number); |
9ebf4acf AC |
2797 | if (b->related_breakpoint) |
2798 | b->related_breakpoint->disposition = disp_del_at_next_stop; | |
2799 | b->disposition = disp_del_at_next_stop; | |
2800 | /* We've already printed what needs to be printed. */ | |
2801 | bs->print_it = print_it_done; | |
2802 | break; | |
2803 | } | |
2804 | } | |
53a5351d JM |
2805 | else /* found == 0 */ |
2806 | { | |
2807 | /* This is a case where some watchpoint(s) triggered, | |
2808 | but not at the address of this watchpoint (FOUND | |
2809 | was left zero). So don't print anything for this | |
2810 | watchpoint. */ | |
2811 | bs->print_it = print_it_noop; | |
2812 | bs->stop = 0; | |
2813 | continue; | |
2814 | } | |
c5aa993b JM |
2815 | } |
2816 | else | |
2817 | { | |
2818 | /* By definition, an encountered breakpoint is a triggered | |
2819 | breakpoint. */ | |
2820 | ++(b->hit_count); | |
c906108c | 2821 | |
c5aa993b JM |
2822 | real_breakpoint = 1; |
2823 | } | |
2824 | ||
818dd999 AC |
2825 | if (frame_id_p (b->frame_id) |
2826 | && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ()))) | |
c5aa993b JM |
2827 | bs->stop = 0; |
2828 | else | |
2829 | { | |
2830 | int value_is_zero = 0; | |
2831 | ||
2832 | if (b->cond) | |
2833 | { | |
2834 | /* Need to select the frame, with all that implies | |
2835 | so that the conditions will have the right context. */ | |
0f7d239c | 2836 | select_frame (get_current_frame ()); |
c5aa993b JM |
2837 | value_is_zero |
2838 | = catch_errors (breakpoint_cond_eval, (b->cond), | |
2839 | "Error in testing breakpoint condition:\n", | |
2840 | RETURN_MASK_ALL); | |
2841 | /* FIXME-someday, should give breakpoint # */ | |
2842 | free_all_values (); | |
2843 | } | |
2844 | if (b->cond && value_is_zero) | |
2845 | { | |
2846 | bs->stop = 0; | |
2847 | /* Don't consider this a hit. */ | |
2848 | --(b->hit_count); | |
2849 | } | |
fa5281d0 DJ |
2850 | else if (b->thread != -1 && b->thread != thread_id) |
2851 | { | |
2852 | bs->stop = 0; | |
2853 | /* Don't consider this a hit. */ | |
2854 | --(b->hit_count); | |
2855 | } | |
c5aa993b JM |
2856 | else if (b->ignore_count > 0) |
2857 | { | |
2858 | b->ignore_count--; | |
5c44784c | 2859 | annotate_ignore_count_change (); |
c5aa993b JM |
2860 | bs->stop = 0; |
2861 | } | |
2862 | else | |
2863 | { | |
2864 | /* We will stop here */ | |
b5de0fa7 EZ |
2865 | if (b->disposition == disp_disable) |
2866 | b->enable_state = bp_disabled; | |
c5aa993b JM |
2867 | if (b->silent) |
2868 | bs->print = 0; | |
552f4abf | 2869 | bs->commands = b->commands; |
c5aa993b | 2870 | if (bs->commands && |
6314a349 AC |
2871 | (strcmp ("silent", bs->commands->line) == 0 |
2872 | || (xdb_commands && strcmp ("Q", bs->commands->line) == 0))) | |
c5aa993b JM |
2873 | { |
2874 | bs->commands = bs->commands->next; | |
c906108c | 2875 | bs->print = 0; |
c5aa993b | 2876 | } |
552f4abf | 2877 | bs->commands = copy_command_lines (bs->commands); |
c5aa993b JM |
2878 | } |
2879 | } | |
2880 | /* Print nothing for this entry if we dont stop or if we dont print. */ | |
2881 | if (bs->stop == 0 || bs->print == 0) | |
2882 | bs->print_it = print_it_noop; | |
2883 | } | |
c906108c SS |
2884 | |
2885 | bs->next = NULL; /* Terminate the chain */ | |
2886 | bs = root_bs->next; /* Re-grab the head of the chain */ | |
2887 | ||
c906108c SS |
2888 | /* The value of a hardware watchpoint hasn't changed, but the |
2889 | intermediate memory locations we are watching may have. */ | |
c5aa993b | 2890 | if (bs && !bs->stop && |
c906108c SS |
2891 | (bs->breakpoint_at->type == bp_hardware_watchpoint || |
2892 | bs->breakpoint_at->type == bp_read_watchpoint || | |
2893 | bs->breakpoint_at->type == bp_access_watchpoint)) | |
2894 | { | |
2895 | remove_breakpoints (); | |
2896 | insert_breakpoints (); | |
2897 | } | |
2898 | return bs; | |
2899 | } | |
2900 | \f | |
2901 | /* Tell what to do about this bpstat. */ | |
2902 | struct bpstat_what | |
fba45db2 | 2903 | bpstat_what (bpstat bs) |
c906108c SS |
2904 | { |
2905 | /* Classify each bpstat as one of the following. */ | |
c5aa993b JM |
2906 | enum class |
2907 | { | |
2908 | /* This bpstat element has no effect on the main_action. */ | |
2909 | no_effect = 0, | |
2910 | ||
2911 | /* There was a watchpoint, stop but don't print. */ | |
2912 | wp_silent, | |
c906108c | 2913 | |
c5aa993b JM |
2914 | /* There was a watchpoint, stop and print. */ |
2915 | wp_noisy, | |
c906108c | 2916 | |
c5aa993b JM |
2917 | /* There was a breakpoint but we're not stopping. */ |
2918 | bp_nostop, | |
c906108c | 2919 | |
c5aa993b JM |
2920 | /* There was a breakpoint, stop but don't print. */ |
2921 | bp_silent, | |
c906108c | 2922 | |
c5aa993b JM |
2923 | /* There was a breakpoint, stop and print. */ |
2924 | bp_noisy, | |
c906108c | 2925 | |
c5aa993b JM |
2926 | /* We hit the longjmp breakpoint. */ |
2927 | long_jump, | |
c906108c | 2928 | |
c5aa993b JM |
2929 | /* We hit the longjmp_resume breakpoint. */ |
2930 | long_resume, | |
c906108c | 2931 | |
c5aa993b JM |
2932 | /* We hit the step_resume breakpoint. */ |
2933 | step_resume, | |
c906108c | 2934 | |
c5aa993b JM |
2935 | /* We hit the through_sigtramp breakpoint. */ |
2936 | through_sig, | |
c906108c | 2937 | |
c5aa993b JM |
2938 | /* We hit the shared library event breakpoint. */ |
2939 | shlib_event, | |
c906108c | 2940 | |
c5aa993b JM |
2941 | /* We caught a shared library event. */ |
2942 | catch_shlib_event, | |
c906108c | 2943 | |
c5aa993b JM |
2944 | /* This is just used to count how many enums there are. */ |
2945 | class_last | |
c906108c SS |
2946 | }; |
2947 | ||
2948 | /* Here is the table which drives this routine. So that we can | |
2949 | format it pretty, we define some abbreviations for the | |
2950 | enum bpstat_what codes. */ | |
2951 | #define kc BPSTAT_WHAT_KEEP_CHECKING | |
2952 | #define ss BPSTAT_WHAT_STOP_SILENT | |
2953 | #define sn BPSTAT_WHAT_STOP_NOISY | |
2954 | #define sgl BPSTAT_WHAT_SINGLE | |
2955 | #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME | |
2956 | #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME | |
2957 | #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE | |
2958 | #define sr BPSTAT_WHAT_STEP_RESUME | |
2959 | #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP | |
2960 | #define shl BPSTAT_WHAT_CHECK_SHLIBS | |
2961 | #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK | |
2962 | ||
2963 | /* "Can't happen." Might want to print an error message. | |
2964 | abort() is not out of the question, but chances are GDB is just | |
2965 | a bit confused, not unusable. */ | |
2966 | #define err BPSTAT_WHAT_STOP_NOISY | |
2967 | ||
2968 | /* Given an old action and a class, come up with a new action. */ | |
2969 | /* One interesting property of this table is that wp_silent is the same | |
2970 | as bp_silent and wp_noisy is the same as bp_noisy. That is because | |
2971 | after stopping, the check for whether to step over a breakpoint | |
2972 | (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without | |
53a5351d JM |
2973 | reference to how we stopped. We retain separate wp_silent and |
2974 | bp_silent codes in case we want to change that someday. | |
43ff13b4 JM |
2975 | |
2976 | Another possibly interesting property of this table is that | |
2977 | there's a partial ordering, priority-like, of the actions. Once | |
2978 | you've decided that some action is appropriate, you'll never go | |
2979 | back and decide something of a lower priority is better. The | |
2980 | ordering is: | |
2981 | ||
7e73cedf | 2982 | kc < clr sgl shl shlr slr sn sr ss ts |
c5aa993b JM |
2983 | sgl < clrs shl shlr slr sn sr ss ts |
2984 | slr < err shl shlr sn sr ss ts | |
2985 | clr < clrs err shl shlr sn sr ss ts | |
2986 | clrs < err shl shlr sn sr ss ts | |
2987 | ss < shl shlr sn sr ts | |
2988 | sn < shl shlr sr ts | |
2989 | sr < shl shlr ts | |
2990 | shl < shlr | |
2991 | ts < | |
2992 | shlr < | |
2993 | ||
43ff13b4 JM |
2994 | What I think this means is that we don't need a damned table |
2995 | here. If you just put the rows and columns in the right order, | |
2996 | it'd look awfully regular. We could simply walk the bpstat list | |
2997 | and choose the highest priority action we find, with a little | |
2998 | logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/ | |
2999 | CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says | |
3000 | is messy anyway). */ | |
c906108c SS |
3001 | |
3002 | /* step_resume entries: a step resume breakpoint overrides another | |
3003 | breakpoint of signal handling (see comment in wait_for_inferior | |
fcf70625 | 3004 | at where we set the step_resume breakpoint). */ |
c906108c SS |
3005 | /* We handle the through_sigtramp_breakpoint the same way; having both |
3006 | one of those and a step_resume_breakpoint is probably very rare (?). */ | |
3007 | ||
3008 | static const enum bpstat_what_main_action | |
c5aa993b JM |
3009 | table[(int) class_last][(int) BPSTAT_WHAT_LAST] = |
3010 | { | |
3011 | /* old action */ | |
3012 | /* kc ss sn sgl slr clr clrs sr ts shl shlr | |
3013 | */ | |
3014 | /*no_effect */ | |
3015 | {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr}, | |
3016 | /*wp_silent */ | |
3017 | {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr}, | |
3018 | /*wp_noisy */ | |
3019 | {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr}, | |
3020 | /*bp_nostop */ | |
3021 | {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr}, | |
3022 | /*bp_silent */ | |
3023 | {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr}, | |
3024 | /*bp_noisy */ | |
3025 | {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr}, | |
3026 | /*long_jump */ | |
a48bb0b3 | 3027 | {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr}, |
c5aa993b JM |
3028 | /*long_resume */ |
3029 | {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr}, | |
3030 | /*step_resume */ | |
3031 | {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr}, | |
3032 | /*through_sig */ | |
3033 | {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr}, | |
3034 | /*shlib */ | |
3035 | {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr}, | |
3036 | /*catch_shlib */ | |
3037 | {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr} | |
3038 | }; | |
c906108c SS |
3039 | |
3040 | #undef kc | |
3041 | #undef ss | |
3042 | #undef sn | |
3043 | #undef sgl | |
3044 | #undef slr | |
3045 | #undef clr | |
3046 | #undef clrs | |
3047 | #undef err | |
3048 | #undef sr | |
3049 | #undef ts | |
3050 | #undef shl | |
3051 | #undef shlr | |
3052 | enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING; | |
3053 | struct bpstat_what retval; | |
3054 | ||
3055 | retval.call_dummy = 0; | |
3056 | for (; bs != NULL; bs = bs->next) | |
3057 | { | |
3058 | enum class bs_class = no_effect; | |
3059 | if (bs->breakpoint_at == NULL) | |
3060 | /* I suspect this can happen if it was a momentary breakpoint | |
3061 | which has since been deleted. */ | |
3062 | continue; | |
3063 | switch (bs->breakpoint_at->type) | |
3064 | { | |
3065 | case bp_none: | |
3066 | continue; | |
3067 | ||
3068 | case bp_breakpoint: | |
3069 | case bp_hardware_breakpoint: | |
3070 | case bp_until: | |
3071 | case bp_finish: | |
3072 | if (bs->stop) | |
3073 | { | |
3074 | if (bs->print) | |
3075 | bs_class = bp_noisy; | |
3076 | else | |
3077 | bs_class = bp_silent; | |
3078 | } | |
3079 | else | |
3080 | bs_class = bp_nostop; | |
3081 | break; | |
3082 | case bp_watchpoint: | |
3083 | case bp_hardware_watchpoint: | |
3084 | case bp_read_watchpoint: | |
3085 | case bp_access_watchpoint: | |
3086 | if (bs->stop) | |
3087 | { | |
3088 | if (bs->print) | |
3089 | bs_class = wp_noisy; | |
3090 | else | |
3091 | bs_class = wp_silent; | |
3092 | } | |
3093 | else | |
53a5351d JM |
3094 | /* There was a watchpoint, but we're not stopping. |
3095 | This requires no further action. */ | |
c906108c SS |
3096 | bs_class = no_effect; |
3097 | break; | |
3098 | case bp_longjmp: | |
3099 | bs_class = long_jump; | |
3100 | break; | |
3101 | case bp_longjmp_resume: | |
3102 | bs_class = long_resume; | |
3103 | break; | |
3104 | case bp_step_resume: | |
3105 | if (bs->stop) | |
3106 | { | |
3107 | bs_class = step_resume; | |
3108 | } | |
3109 | else | |
3110 | /* It is for the wrong frame. */ | |
3111 | bs_class = bp_nostop; | |
3112 | break; | |
3113 | case bp_through_sigtramp: | |
3114 | bs_class = through_sig; | |
3115 | break; | |
3116 | case bp_watchpoint_scope: | |
3117 | bs_class = bp_nostop; | |
3118 | break; | |
c5aa993b JM |
3119 | case bp_shlib_event: |
3120 | bs_class = shlib_event; | |
3121 | break; | |
c4093a6a | 3122 | case bp_thread_event: |
1900040c | 3123 | case bp_overlay_event: |
c4093a6a JM |
3124 | bs_class = bp_nostop; |
3125 | break; | |
c5aa993b JM |
3126 | case bp_catch_load: |
3127 | case bp_catch_unload: | |
3128 | /* Only if this catchpoint triggered should we cause the | |
3129 | step-out-of-dld behaviour. Otherwise, we ignore this | |
3130 | catchpoint. */ | |
3131 | if (bs->stop) | |
3132 | bs_class = catch_shlib_event; | |
3133 | else | |
3134 | bs_class = no_effect; | |
3135 | break; | |
3136 | case bp_catch_fork: | |
3137 | case bp_catch_vfork: | |
3138 | case bp_catch_exec: | |
3139 | if (bs->stop) | |
3140 | { | |
3141 | if (bs->print) | |
3142 | bs_class = bp_noisy; | |
3143 | else | |
3144 | bs_class = bp_silent; | |
3145 | } | |
3146 | else | |
53a5351d JM |
3147 | /* There was a catchpoint, but we're not stopping. |
3148 | This requires no further action. */ | |
c5aa993b JM |
3149 | bs_class = no_effect; |
3150 | break; | |
3151 | case bp_catch_catch: | |
3152 | if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH) | |
3153 | bs_class = bp_nostop; | |
3154 | else if (bs->stop) | |
3155 | bs_class = bs->print ? bp_noisy : bp_silent; | |
3156 | break; | |
3157 | case bp_catch_throw: | |
3158 | if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW) | |
3159 | bs_class = bp_nostop; | |
3160 | else if (bs->stop) | |
3161 | bs_class = bs->print ? bp_noisy : bp_silent; | |
c906108c | 3162 | break; |
c906108c | 3163 | case bp_call_dummy: |
53a5351d JM |
3164 | /* Make sure the action is stop (silent or noisy), |
3165 | so infrun.c pops the dummy frame. */ | |
c906108c SS |
3166 | bs_class = bp_silent; |
3167 | retval.call_dummy = 1; | |
3168 | break; | |
3169 | } | |
c5aa993b | 3170 | current_action = table[(int) bs_class][(int) current_action]; |
c906108c SS |
3171 | } |
3172 | retval.main_action = current_action; | |
3173 | return retval; | |
3174 | } | |
3175 | ||
3176 | /* Nonzero if we should step constantly (e.g. watchpoints on machines | |
3177 | without hardware support). This isn't related to a specific bpstat, | |
3178 | just to things like whether watchpoints are set. */ | |
3179 | ||
c5aa993b | 3180 | int |
fba45db2 | 3181 | bpstat_should_step (void) |
c906108c SS |
3182 | { |
3183 | struct breakpoint *b; | |
3184 | ALL_BREAKPOINTS (b) | |
468d015d | 3185 | if (breakpoint_enabled (b) && b->type == bp_watchpoint) |
3172dc30 | 3186 | return 1; |
c906108c SS |
3187 | return 0; |
3188 | } | |
3189 | ||
3190 | /* Nonzero if there are enabled hardware watchpoints. */ | |
3191 | int | |
fba45db2 | 3192 | bpstat_have_active_hw_watchpoints (void) |
c906108c | 3193 | { |
075f6582 DJ |
3194 | struct bp_location *bpt; |
3195 | ALL_BP_LOCATIONS (bpt) | |
468d015d | 3196 | if (breakpoint_enabled (bpt->owner) |
075f6582 DJ |
3197 | && bpt->inserted |
3198 | && bpt->loc_type == bp_loc_hardware_watchpoint) | |
3172dc30 | 3199 | return 1; |
c906108c SS |
3200 | return 0; |
3201 | } | |
c906108c | 3202 | \f |
c5aa993b | 3203 | |
c906108c SS |
3204 | /* Given a bpstat that records zero or more triggered eventpoints, this |
3205 | function returns another bpstat which contains only the catchpoints | |
3206 | on that first list, if any. */ | |
3207 | void | |
fba45db2 | 3208 | bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list) |
c5aa993b JM |
3209 | { |
3210 | struct bpstats root_bs[1]; | |
3211 | bpstat bs = root_bs; | |
3212 | struct breakpoint *ep; | |
3213 | char *dll_pathname; | |
3214 | ||
c906108c SS |
3215 | bpstat_clear (cp_list); |
3216 | root_bs->next = NULL; | |
c5aa993b JM |
3217 | |
3218 | for (; ep_list != NULL; ep_list = ep_list->next) | |
c906108c SS |
3219 | { |
3220 | /* Is this eventpoint a catchpoint? If not, ignore it. */ | |
3221 | ep = ep_list->breakpoint_at; | |
3222 | if (ep == NULL) | |
c5aa993b JM |
3223 | break; |
3224 | if ((ep->type != bp_catch_load) && | |
3225 | (ep->type != bp_catch_unload) && | |
3226 | (ep->type != bp_catch_catch) && | |
53a5351d JM |
3227 | (ep->type != bp_catch_throw)) |
3228 | /* pai: (temp) ADD fork/vfork here!! */ | |
c5aa993b JM |
3229 | continue; |
3230 | ||
c906108c SS |
3231 | /* Yes; add it to the list. */ |
3232 | bs = bpstat_alloc (ep, bs); | |
3233 | *bs = *ep_list; | |
3234 | bs->next = NULL; | |
3235 | bs = root_bs->next; | |
c5aa993b | 3236 | |
c906108c SS |
3237 | #if defined(SOLIB_ADD) |
3238 | /* Also, for each triggered catchpoint, tag it with the name of | |
3239 | the library that caused this trigger. (We copy the name now, | |
3240 | because it's only guaranteed to be available NOW, when the | |
3241 | catchpoint triggers. Clients who may wish to know the name | |
3242 | later must get it from the catchpoint itself.) */ | |
3243 | if (ep->triggered_dll_pathname != NULL) | |
b8c9b27d | 3244 | xfree (ep->triggered_dll_pathname); |
c906108c | 3245 | if (ep->type == bp_catch_load) |
39f77062 KB |
3246 | dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME ( |
3247 | PIDGET (inferior_ptid)); | |
c906108c | 3248 | else |
39f77062 KB |
3249 | dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME ( |
3250 | PIDGET (inferior_ptid)); | |
c906108c SS |
3251 | #else |
3252 | dll_pathname = NULL; | |
3253 | #endif | |
3254 | if (dll_pathname) | |
3255 | { | |
53a5351d JM |
3256 | ep->triggered_dll_pathname = (char *) |
3257 | xmalloc (strlen (dll_pathname) + 1); | |
c906108c SS |
3258 | strcpy (ep->triggered_dll_pathname, dll_pathname); |
3259 | } | |
3260 | else | |
3261 | ep->triggered_dll_pathname = NULL; | |
3262 | } | |
c5aa993b | 3263 | |
c906108c SS |
3264 | *cp_list = bs; |
3265 | } | |
3266 | ||
c4093a6a | 3267 | /* Print B to gdb_stdout. */ |
c906108c | 3268 | static void |
c4093a6a JM |
3269 | print_one_breakpoint (struct breakpoint *b, |
3270 | CORE_ADDR *last_addr) | |
c906108c | 3271 | { |
52f0bd74 AC |
3272 | struct command_line *l; |
3273 | struct symbol *sym; | |
c4093a6a JM |
3274 | struct ep_type_description |
3275 | { | |
3276 | enum bptype type; | |
3277 | char *description; | |
3278 | }; | |
3279 | static struct ep_type_description bptypes[] = | |
c906108c | 3280 | { |
c5aa993b JM |
3281 | {bp_none, "?deleted?"}, |
3282 | {bp_breakpoint, "breakpoint"}, | |
c906108c | 3283 | {bp_hardware_breakpoint, "hw breakpoint"}, |
c5aa993b JM |
3284 | {bp_until, "until"}, |
3285 | {bp_finish, "finish"}, | |
3286 | {bp_watchpoint, "watchpoint"}, | |
c906108c | 3287 | {bp_hardware_watchpoint, "hw watchpoint"}, |
c5aa993b JM |
3288 | {bp_read_watchpoint, "read watchpoint"}, |
3289 | {bp_access_watchpoint, "acc watchpoint"}, | |
3290 | {bp_longjmp, "longjmp"}, | |
3291 | {bp_longjmp_resume, "longjmp resume"}, | |
3292 | {bp_step_resume, "step resume"}, | |
3293 | {bp_through_sigtramp, "sigtramp"}, | |
3294 | {bp_watchpoint_scope, "watchpoint scope"}, | |
3295 | {bp_call_dummy, "call dummy"}, | |
3296 | {bp_shlib_event, "shlib events"}, | |
c4093a6a | 3297 | {bp_thread_event, "thread events"}, |
1900040c | 3298 | {bp_overlay_event, "overlay events"}, |
c5aa993b JM |
3299 | {bp_catch_load, "catch load"}, |
3300 | {bp_catch_unload, "catch unload"}, | |
3301 | {bp_catch_fork, "catch fork"}, | |
3302 | {bp_catch_vfork, "catch vfork"}, | |
3303 | {bp_catch_exec, "catch exec"}, | |
3304 | {bp_catch_catch, "catch catch"}, | |
3305 | {bp_catch_throw, "catch throw"} | |
3306 | }; | |
c4093a6a | 3307 | |
c5aa993b JM |
3308 | static char *bpdisps[] = |
3309 | {"del", "dstp", "dis", "keep"}; | |
c2c6d25f | 3310 | static char bpenables[] = "nynny"; |
c906108c | 3311 | char wrap_indent[80]; |
8b93c638 JM |
3312 | struct ui_stream *stb = ui_out_stream_new (uiout); |
3313 | struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb); | |
3b31d625 | 3314 | struct cleanup *bkpt_chain; |
c906108c | 3315 | |
c4093a6a | 3316 | annotate_record (); |
3b31d625 | 3317 | bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt"); |
c4093a6a JM |
3318 | |
3319 | /* 1 */ | |
3320 | annotate_field (0); | |
8b93c638 | 3321 | ui_out_field_int (uiout, "number", b->number); |
c4093a6a JM |
3322 | |
3323 | /* 2 */ | |
3324 | annotate_field (1); | |
3325 | if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0]))) | |
3326 | || ((int) b->type != bptypes[(int) b->type].type)) | |
8e65ff28 | 3327 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 3328 | _("bptypes table does not describe type #%d."), |
c4093a6a | 3329 | (int) b->type); |
8b93c638 | 3330 | ui_out_field_string (uiout, "type", bptypes[(int) b->type].description); |
c4093a6a JM |
3331 | |
3332 | /* 3 */ | |
3333 | annotate_field (2); | |
8b93c638 | 3334 | ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]); |
c4093a6a JM |
3335 | |
3336 | /* 4 */ | |
3337 | annotate_field (3); | |
b5de0fa7 | 3338 | ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]); |
8b93c638 | 3339 | ui_out_spaces (uiout, 2); |
c4093a6a JM |
3340 | |
3341 | /* 5 and 6 */ | |
3342 | strcpy (wrap_indent, " "); | |
3343 | if (addressprint) | |
75ac9d7b MS |
3344 | { |
3345 | if (TARGET_ADDR_BIT <= 32) | |
3346 | strcat (wrap_indent, " "); | |
3347 | else | |
3348 | strcat (wrap_indent, " "); | |
3349 | } | |
c906108c | 3350 | |
3086aeae DJ |
3351 | if (b->ops != NULL && b->ops->print_one != NULL) |
3352 | b->ops->print_one (b, last_addr); | |
3353 | else | |
3354 | switch (b->type) | |
3355 | { | |
3356 | case bp_none: | |
3357 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 | 3358 | _("print_one_breakpoint: bp_none encountered\n")); |
3086aeae | 3359 | break; |
c906108c | 3360 | |
3086aeae DJ |
3361 | case bp_watchpoint: |
3362 | case bp_hardware_watchpoint: | |
3363 | case bp_read_watchpoint: | |
3364 | case bp_access_watchpoint: | |
3365 | /* Field 4, the address, is omitted (which makes the columns | |
3366 | not line up too nicely with the headers, but the effect | |
3367 | is relatively readable). */ | |
3368 | if (addressprint) | |
3369 | ui_out_field_skip (uiout, "addr"); | |
3370 | annotate_field (5); | |
3371 | print_expression (b->exp, stb->stream); | |
3372 | ui_out_field_stream (uiout, "what", stb); | |
3373 | break; | |
3374 | ||
3375 | case bp_catch_load: | |
3376 | case bp_catch_unload: | |
3377 | /* Field 4, the address, is omitted (which makes the columns | |
3378 | not line up too nicely with the headers, but the effect | |
3379 | is relatively readable). */ | |
3380 | if (addressprint) | |
3381 | ui_out_field_skip (uiout, "addr"); | |
3382 | annotate_field (5); | |
3383 | if (b->dll_pathname == NULL) | |
3384 | { | |
3385 | ui_out_field_string (uiout, "what", "<any library>"); | |
3386 | ui_out_spaces (uiout, 1); | |
3387 | } | |
3388 | else | |
3389 | { | |
3390 | ui_out_text (uiout, "library \""); | |
3391 | ui_out_field_string (uiout, "what", b->dll_pathname); | |
3392 | ui_out_text (uiout, "\" "); | |
3393 | } | |
3394 | break; | |
3395 | ||
3396 | case bp_catch_fork: | |
3397 | case bp_catch_vfork: | |
3398 | /* Field 4, the address, is omitted (which makes the columns | |
3399 | not line up too nicely with the headers, but the effect | |
3400 | is relatively readable). */ | |
3401 | if (addressprint) | |
3402 | ui_out_field_skip (uiout, "addr"); | |
3403 | annotate_field (5); | |
3404 | if (b->forked_inferior_pid != 0) | |
3405 | { | |
3406 | ui_out_text (uiout, "process "); | |
3407 | ui_out_field_int (uiout, "what", b->forked_inferior_pid); | |
3408 | ui_out_spaces (uiout, 1); | |
3409 | } | |
3410 | ||
3411 | case bp_catch_exec: | |
3412 | /* Field 4, the address, is omitted (which makes the columns | |
3413 | not line up too nicely with the headers, but the effect | |
3414 | is relatively readable). */ | |
3415 | if (addressprint) | |
3416 | ui_out_field_skip (uiout, "addr"); | |
3417 | annotate_field (5); | |
3418 | if (b->exec_pathname != NULL) | |
3419 | { | |
3420 | ui_out_text (uiout, "program \""); | |
3421 | ui_out_field_string (uiout, "what", b->exec_pathname); | |
3422 | ui_out_text (uiout, "\" "); | |
3423 | } | |
3424 | break; | |
3425 | ||
3426 | case bp_catch_catch: | |
3427 | /* Field 4, the address, is omitted (which makes the columns | |
3428 | not line up too nicely with the headers, but the effect | |
3429 | is relatively readable). */ | |
3430 | if (addressprint) | |
3431 | ui_out_field_skip (uiout, "addr"); | |
3432 | annotate_field (5); | |
3433 | ui_out_field_string (uiout, "what", "exception catch"); | |
3434 | ui_out_spaces (uiout, 1); | |
3435 | break; | |
3436 | ||
3437 | case bp_catch_throw: | |
3438 | /* Field 4, the address, is omitted (which makes the columns | |
3439 | not line up too nicely with the headers, but the effect | |
3440 | is relatively readable). */ | |
3441 | if (addressprint) | |
3442 | ui_out_field_skip (uiout, "addr"); | |
3443 | annotate_field (5); | |
3444 | ui_out_field_string (uiout, "what", "exception throw"); | |
3445 | ui_out_spaces (uiout, 1); | |
3446 | break; | |
3447 | ||
3448 | case bp_breakpoint: | |
3449 | case bp_hardware_breakpoint: | |
3450 | case bp_until: | |
3451 | case bp_finish: | |
3452 | case bp_longjmp: | |
3453 | case bp_longjmp_resume: | |
3454 | case bp_step_resume: | |
3455 | case bp_through_sigtramp: | |
3456 | case bp_watchpoint_scope: | |
3457 | case bp_call_dummy: | |
3458 | case bp_shlib_event: | |
3459 | case bp_thread_event: | |
3460 | case bp_overlay_event: | |
3461 | if (addressprint) | |
3462 | { | |
3463 | annotate_field (4); | |
0101ce28 | 3464 | if (b->pending) |
d5479188 | 3465 | ui_out_field_string (uiout, "addr", "<PENDING>"); |
0101ce28 JJ |
3466 | else |
3467 | ui_out_field_core_addr (uiout, "addr", b->loc->address); | |
3086aeae DJ |
3468 | } |
3469 | annotate_field (5); | |
5cab636d | 3470 | *last_addr = b->loc->address; |
3086aeae DJ |
3471 | if (b->source_file) |
3472 | { | |
cf3a9e5b | 3473 | sym = find_pc_sect_function (b->loc->address, b->loc->section); |
3086aeae DJ |
3474 | if (sym) |
3475 | { | |
3476 | ui_out_text (uiout, "in "); | |
3477 | ui_out_field_string (uiout, "func", | |
3478 | SYMBOL_PRINT_NAME (sym)); | |
3479 | ui_out_wrap_hint (uiout, wrap_indent); | |
3480 | ui_out_text (uiout, " at "); | |
3481 | } | |
3482 | ui_out_field_string (uiout, "file", b->source_file); | |
3483 | ui_out_text (uiout, ":"); | |
3484 | ui_out_field_int (uiout, "line", b->line_number); | |
3485 | } | |
0101ce28 JJ |
3486 | else if (b->pending) |
3487 | { | |
3488 | ui_out_field_string (uiout, "pending", b->addr_string); | |
3489 | } | |
3086aeae DJ |
3490 | else |
3491 | { | |
5cab636d | 3492 | print_address_symbolic (b->loc->address, stb->stream, demangle, ""); |
3086aeae DJ |
3493 | ui_out_field_stream (uiout, "at", stb); |
3494 | } | |
3495 | break; | |
3496 | } | |
c906108c | 3497 | |
c4093a6a JM |
3498 | if (b->thread != -1) |
3499 | { | |
8b93c638 JM |
3500 | /* FIXME: This seems to be redundant and lost here; see the |
3501 | "stop only in" line a little further down. */ | |
3502 | ui_out_text (uiout, " thread "); | |
3503 | ui_out_field_int (uiout, "thread", b->thread); | |
c4093a6a JM |
3504 | } |
3505 | ||
8b93c638 | 3506 | ui_out_text (uiout, "\n"); |
c4093a6a | 3507 | |
818dd999 | 3508 | if (frame_id_p (b->frame_id)) |
c4093a6a JM |
3509 | { |
3510 | annotate_field (6); | |
8b93c638 | 3511 | ui_out_text (uiout, "\tstop only in stack frame at "); |
818dd999 AC |
3512 | /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside |
3513 | the frame ID. */ | |
d0a55772 | 3514 | ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr); |
8b93c638 | 3515 | ui_out_text (uiout, "\n"); |
c4093a6a JM |
3516 | } |
3517 | ||
3518 | if (b->cond) | |
3519 | { | |
3520 | annotate_field (7); | |
8b93c638 JM |
3521 | ui_out_text (uiout, "\tstop only if "); |
3522 | print_expression (b->cond, stb->stream); | |
3523 | ui_out_field_stream (uiout, "cond", stb); | |
3524 | ui_out_text (uiout, "\n"); | |
c4093a6a | 3525 | } |
0101ce28 JJ |
3526 | |
3527 | if (b->pending && b->cond_string) | |
3528 | { | |
3529 | annotate_field (7); | |
3530 | ui_out_text (uiout, "\tstop only if "); | |
3531 | ui_out_field_string (uiout, "cond", b->cond_string); | |
3532 | ui_out_text (uiout, "\n"); | |
3533 | } | |
3534 | ||
c4093a6a JM |
3535 | if (b->thread != -1) |
3536 | { | |
3537 | /* FIXME should make an annotation for this */ | |
8b93c638 JM |
3538 | ui_out_text (uiout, "\tstop only in thread "); |
3539 | ui_out_field_int (uiout, "thread", b->thread); | |
3540 | ui_out_text (uiout, "\n"); | |
c4093a6a JM |
3541 | } |
3542 | ||
3543 | if (show_breakpoint_hit_counts && b->hit_count) | |
3544 | { | |
3545 | /* FIXME should make an annotation for this */ | |
8b93c638 JM |
3546 | if (ep_is_catchpoint (b)) |
3547 | ui_out_text (uiout, "\tcatchpoint"); | |
3548 | else | |
3549 | ui_out_text (uiout, "\tbreakpoint"); | |
3550 | ui_out_text (uiout, " already hit "); | |
3551 | ui_out_field_int (uiout, "times", b->hit_count); | |
3552 | if (b->hit_count == 1) | |
3553 | ui_out_text (uiout, " time\n"); | |
3554 | else | |
3555 | ui_out_text (uiout, " times\n"); | |
c4093a6a JM |
3556 | } |
3557 | ||
fb40c209 AC |
3558 | /* Output the count also if it is zero, but only if this is |
3559 | mi. FIXME: Should have a better test for this. */ | |
9dc5e2a9 | 3560 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 AC |
3561 | if (show_breakpoint_hit_counts && b->hit_count == 0) |
3562 | ui_out_field_int (uiout, "times", b->hit_count); | |
8b93c638 | 3563 | |
c4093a6a JM |
3564 | if (b->ignore_count) |
3565 | { | |
3566 | annotate_field (8); | |
8b93c638 JM |
3567 | ui_out_text (uiout, "\tignore next "); |
3568 | ui_out_field_int (uiout, "ignore", b->ignore_count); | |
3569 | ui_out_text (uiout, " hits\n"); | |
c4093a6a JM |
3570 | } |
3571 | ||
3572 | if ((l = b->commands)) | |
3573 | { | |
3b31d625 EZ |
3574 | struct cleanup *script_chain; |
3575 | ||
c4093a6a | 3576 | annotate_field (9); |
3b31d625 | 3577 | script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script"); |
8b93c638 | 3578 | print_command_lines (uiout, l, 4); |
3b31d625 | 3579 | do_cleanups (script_chain); |
c4093a6a | 3580 | } |
3b31d625 | 3581 | do_cleanups (bkpt_chain); |
8b93c638 | 3582 | do_cleanups (old_chain); |
c4093a6a | 3583 | } |
c5aa993b | 3584 | |
c4093a6a JM |
3585 | struct captured_breakpoint_query_args |
3586 | { | |
3587 | int bnum; | |
3588 | }; | |
c5aa993b | 3589 | |
c4093a6a | 3590 | static int |
2b65245e | 3591 | do_captured_breakpoint_query (struct ui_out *uiout, void *data) |
c4093a6a JM |
3592 | { |
3593 | struct captured_breakpoint_query_args *args = data; | |
52f0bd74 | 3594 | struct breakpoint *b; |
c4093a6a JM |
3595 | CORE_ADDR dummy_addr = 0; |
3596 | ALL_BREAKPOINTS (b) | |
3597 | { | |
3598 | if (args->bnum == b->number) | |
c5aa993b | 3599 | { |
c4093a6a JM |
3600 | print_one_breakpoint (b, &dummy_addr); |
3601 | return GDB_RC_OK; | |
c5aa993b | 3602 | } |
c4093a6a JM |
3603 | } |
3604 | return GDB_RC_NONE; | |
3605 | } | |
c5aa993b | 3606 | |
c4093a6a | 3607 | enum gdb_rc |
ce43223b | 3608 | gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message) |
c4093a6a JM |
3609 | { |
3610 | struct captured_breakpoint_query_args args; | |
3611 | args.bnum = bnum; | |
3612 | /* For the moment we don't trust print_one_breakpoint() to not throw | |
3613 | an error. */ | |
ce43223b | 3614 | return catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, |
1c3c7ee7 | 3615 | error_message, RETURN_MASK_ALL); |
c4093a6a | 3616 | } |
c5aa993b | 3617 | |
7f3b0473 AC |
3618 | /* Return non-zero if B is user settable (breakpoints, watchpoints, |
3619 | catchpoints, et.al.). */ | |
3620 | ||
3621 | static int | |
3622 | user_settable_breakpoint (const struct breakpoint *b) | |
3623 | { | |
3624 | return (b->type == bp_breakpoint | |
3625 | || b->type == bp_catch_load | |
3626 | || b->type == bp_catch_unload | |
3627 | || b->type == bp_catch_fork | |
3628 | || b->type == bp_catch_vfork | |
3629 | || b->type == bp_catch_exec | |
3630 | || b->type == bp_catch_catch | |
3631 | || b->type == bp_catch_throw | |
3632 | || b->type == bp_hardware_breakpoint | |
3633 | || b->type == bp_watchpoint | |
3634 | || b->type == bp_read_watchpoint | |
3635 | || b->type == bp_access_watchpoint | |
3636 | || b->type == bp_hardware_watchpoint); | |
3637 | } | |
3638 | ||
3639 | /* Print information on user settable breakpoint (watchpoint, etc) | |
3640 | number BNUM. If BNUM is -1 print all user settable breakpoints. | |
3641 | If ALLFLAG is non-zero, include non- user settable breakpoints. */ | |
c906108c | 3642 | |
c4093a6a | 3643 | static void |
fba45db2 | 3644 | breakpoint_1 (int bnum, int allflag) |
c4093a6a | 3645 | { |
52f0bd74 | 3646 | struct breakpoint *b; |
c4093a6a | 3647 | CORE_ADDR last_addr = (CORE_ADDR) -1; |
7f3b0473 | 3648 | int nr_printable_breakpoints; |
3b31d625 | 3649 | struct cleanup *bkpttbl_chain; |
c4093a6a | 3650 | |
7f3b0473 AC |
3651 | /* Compute the number of rows in the table. */ |
3652 | nr_printable_breakpoints = 0; | |
3653 | ALL_BREAKPOINTS (b) | |
3654 | if (bnum == -1 | |
3655 | || bnum == b->number) | |
3656 | { | |
3657 | if (allflag || user_settable_breakpoint (b)) | |
3658 | nr_printable_breakpoints++; | |
3659 | } | |
3660 | ||
8b93c638 | 3661 | if (addressprint) |
3b31d625 EZ |
3662 | bkpttbl_chain |
3663 | = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints, | |
3664 | "BreakpointTable"); | |
8b93c638 | 3665 | else |
3b31d625 EZ |
3666 | bkpttbl_chain |
3667 | = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints, | |
3668 | "BreakpointTable"); | |
8b93c638 | 3669 | |
7f3b0473 | 3670 | if (nr_printable_breakpoints > 0) |
d7faa9e7 AC |
3671 | annotate_breakpoints_headers (); |
3672 | if (nr_printable_breakpoints > 0) | |
3673 | annotate_field (0); | |
3674 | ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */ | |
3675 | if (nr_printable_breakpoints > 0) | |
3676 | annotate_field (1); | |
3677 | ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */ | |
3678 | if (nr_printable_breakpoints > 0) | |
3679 | annotate_field (2); | |
3680 | ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */ | |
3681 | if (nr_printable_breakpoints > 0) | |
3682 | annotate_field (3); | |
3683 | ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */ | |
3684 | if (addressprint) | |
7f3b0473 | 3685 | { |
d7faa9e7 AC |
3686 | if (nr_printable_breakpoints > 0) |
3687 | annotate_field (4); | |
7f3b0473 | 3688 | if (TARGET_ADDR_BIT <= 32) |
b25959ec | 3689 | ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */ |
7f3b0473 | 3690 | else |
b25959ec | 3691 | ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */ |
7f3b0473 | 3692 | } |
d7faa9e7 AC |
3693 | if (nr_printable_breakpoints > 0) |
3694 | annotate_field (5); | |
3695 | ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */ | |
3696 | ui_out_table_body (uiout); | |
3697 | if (nr_printable_breakpoints > 0) | |
3698 | annotate_breakpoints_table (); | |
7f3b0473 | 3699 | |
c4093a6a JM |
3700 | ALL_BREAKPOINTS (b) |
3701 | if (bnum == -1 | |
3702 | || bnum == b->number) | |
3703 | { | |
3704 | /* We only print out user settable breakpoints unless the | |
3705 | allflag is set. */ | |
7f3b0473 AC |
3706 | if (allflag || user_settable_breakpoint (b)) |
3707 | print_one_breakpoint (b, &last_addr); | |
c4093a6a JM |
3708 | } |
3709 | ||
3b31d625 | 3710 | do_cleanups (bkpttbl_chain); |
698384cd | 3711 | |
7f3b0473 | 3712 | if (nr_printable_breakpoints == 0) |
c906108c | 3713 | { |
8b93c638 JM |
3714 | if (bnum == -1) |
3715 | ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n"); | |
3716 | else | |
3717 | ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n", | |
3718 | bnum); | |
c906108c SS |
3719 | } |
3720 | else | |
c4093a6a JM |
3721 | { |
3722 | /* Compare against (CORE_ADDR)-1 in case some compiler decides | |
3723 | that a comparison of an unsigned with -1 is always false. */ | |
3724 | if (last_addr != (CORE_ADDR) -1) | |
3725 | set_next_address (last_addr); | |
3726 | } | |
c906108c | 3727 | |
c4093a6a JM |
3728 | /* FIXME? Should this be moved up so that it is only called when |
3729 | there have been breakpoints? */ | |
c906108c SS |
3730 | annotate_breakpoints_table_end (); |
3731 | } | |
3732 | ||
c906108c | 3733 | static void |
fba45db2 | 3734 | breakpoints_info (char *bnum_exp, int from_tty) |
c906108c SS |
3735 | { |
3736 | int bnum = -1; | |
3737 | ||
3738 | if (bnum_exp) | |
bb518678 | 3739 | bnum = parse_and_eval_long (bnum_exp); |
c906108c SS |
3740 | |
3741 | breakpoint_1 (bnum, 0); | |
3742 | } | |
3743 | ||
7a292a7a | 3744 | static void |
fba45db2 | 3745 | maintenance_info_breakpoints (char *bnum_exp, int from_tty) |
c906108c SS |
3746 | { |
3747 | int bnum = -1; | |
3748 | ||
3749 | if (bnum_exp) | |
bb518678 | 3750 | bnum = parse_and_eval_long (bnum_exp); |
c906108c SS |
3751 | |
3752 | breakpoint_1 (bnum, 1); | |
3753 | } | |
3754 | ||
c906108c SS |
3755 | /* Print a message describing any breakpoints set at PC. */ |
3756 | ||
3757 | static void | |
fba45db2 | 3758 | describe_other_breakpoints (CORE_ADDR pc, asection *section) |
c906108c | 3759 | { |
52f0bd74 AC |
3760 | int others = 0; |
3761 | struct breakpoint *b; | |
c906108c SS |
3762 | |
3763 | ALL_BREAKPOINTS (b) | |
5cab636d | 3764 | if (b->loc->address == pc) /* address match / overlay match */ |
0101ce28 | 3765 | if (!b->pending && (!overlay_debugging || b->loc->section == section)) |
9f04af04 | 3766 | others++; |
c906108c SS |
3767 | if (others > 0) |
3768 | { | |
a3f17187 AC |
3769 | if (others == 1) |
3770 | printf_filtered (_("Note: breakpoint ")); | |
3771 | else /* if (others == ???) */ | |
3772 | printf_filtered (_("Note: breakpoints ")); | |
c906108c | 3773 | ALL_BREAKPOINTS (b) |
5cab636d | 3774 | if (b->loc->address == pc) /* address match / overlay match */ |
0101ce28 | 3775 | if (!b->pending && (!overlay_debugging || b->loc->section == section)) |
9f04af04 MS |
3776 | { |
3777 | others--; | |
3778 | printf_filtered ("%d%s%s ", | |
3779 | b->number, | |
3780 | ((b->enable_state == bp_disabled || | |
3781 | b->enable_state == bp_shlib_disabled || | |
3782 | b->enable_state == bp_call_disabled) | |
3783 | ? " (disabled)" | |
3784 | : b->enable_state == bp_permanent | |
3785 | ? " (permanent)" | |
3786 | : ""), | |
3787 | (others > 1) ? "," | |
3788 | : ((others == 1) ? " and" : "")); | |
3789 | } | |
a3f17187 | 3790 | printf_filtered (_("also set at pc ")); |
66bf4b3a | 3791 | deprecated_print_address_numeric (pc, 1, gdb_stdout); |
c906108c SS |
3792 | printf_filtered (".\n"); |
3793 | } | |
3794 | } | |
3795 | \f | |
3796 | /* Set the default place to put a breakpoint | |
3797 | for the `break' command with no arguments. */ | |
3798 | ||
3799 | void | |
fba45db2 KB |
3800 | set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab, |
3801 | int line) | |
c906108c SS |
3802 | { |
3803 | default_breakpoint_valid = valid; | |
3804 | default_breakpoint_address = addr; | |
3805 | default_breakpoint_symtab = symtab; | |
3806 | default_breakpoint_line = line; | |
3807 | } | |
3808 | ||
e4f237da KB |
3809 | /* Return true iff it is meaningful to use the address member of |
3810 | BPT. For some breakpoint types, the address member is irrelevant | |
3811 | and it makes no sense to attempt to compare it to other addresses | |
3812 | (or use it for any other purpose either). | |
3813 | ||
3814 | More specifically, each of the following breakpoint types will always | |
3815 | have a zero valued address and we don't want check_duplicates() to mark | |
3816 | breakpoints of any of these types to be a duplicate of an actual | |
3817 | breakpoint at address zero: | |
3818 | ||
3819 | bp_watchpoint | |
3820 | bp_hardware_watchpoint | |
3821 | bp_read_watchpoint | |
3822 | bp_access_watchpoint | |
3823 | bp_catch_exec | |
3824 | bp_longjmp_resume | |
3825 | bp_catch_fork | |
3826 | bp_catch_vork */ | |
3827 | ||
3828 | static int | |
3829 | breakpoint_address_is_meaningful (struct breakpoint *bpt) | |
3830 | { | |
3831 | enum bptype type = bpt->type; | |
3832 | ||
3833 | return (type != bp_watchpoint | |
3834 | && type != bp_hardware_watchpoint | |
3835 | && type != bp_read_watchpoint | |
3836 | && type != bp_access_watchpoint | |
3837 | && type != bp_catch_exec | |
3838 | && type != bp_longjmp_resume | |
3839 | && type != bp_catch_fork | |
3840 | && type != bp_catch_vfork); | |
3841 | } | |
3842 | ||
9f60f21b | 3843 | /* Rescan breakpoints at the same address and section as BPT, |
c906108c | 3844 | marking the first one as "first" and any others as "duplicates". |
c2c6d25f | 3845 | This is so that the bpt instruction is only inserted once. |
9f60f21b JB |
3846 | If we have a permanent breakpoint at the same place as BPT, make |
3847 | that one the official one, and the rest as duplicates. */ | |
c906108c SS |
3848 | |
3849 | static void | |
9f60f21b | 3850 | check_duplicates (struct breakpoint *bpt) |
c906108c | 3851 | { |
075f6582 | 3852 | struct bp_location *b; |
52f0bd74 | 3853 | int count = 0; |
075f6582 | 3854 | struct bp_location *perm_bp = 0; |
5cab636d | 3855 | CORE_ADDR address = bpt->loc->address; |
cf3a9e5b | 3856 | asection *section = bpt->loc->section; |
c906108c | 3857 | |
e4f237da | 3858 | if (! breakpoint_address_is_meaningful (bpt)) |
c906108c SS |
3859 | return; |
3860 | ||
075f6582 DJ |
3861 | ALL_BP_LOCATIONS (b) |
3862 | if (b->owner->enable_state != bp_disabled | |
3863 | && b->owner->enable_state != bp_shlib_disabled | |
0101ce28 | 3864 | && !b->owner->pending |
075f6582 DJ |
3865 | && b->owner->enable_state != bp_call_disabled |
3866 | && b->address == address /* address / overlay match */ | |
3867 | && (!overlay_debugging || b->section == section) | |
3868 | && breakpoint_address_is_meaningful (b->owner)) | |
c5aa993b | 3869 | { |
c2c6d25f | 3870 | /* Have we found a permanent breakpoint? */ |
075f6582 | 3871 | if (b->owner->enable_state == bp_permanent) |
c2c6d25f JM |
3872 | { |
3873 | perm_bp = b; | |
3874 | break; | |
3875 | } | |
3876 | ||
c5aa993b | 3877 | count++; |
075f6582 | 3878 | b->duplicate = count > 1; |
c5aa993b | 3879 | } |
c2c6d25f JM |
3880 | |
3881 | /* If we found a permanent breakpoint at this address, go over the | |
3882 | list again and declare all the other breakpoints there to be the | |
3883 | duplicates. */ | |
3884 | if (perm_bp) | |
3885 | { | |
075f6582 | 3886 | perm_bp->duplicate = 0; |
c2c6d25f JM |
3887 | |
3888 | /* Permanent breakpoint should always be inserted. */ | |
075f6582 | 3889 | if (! perm_bp->inserted) |
8e65ff28 | 3890 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 AC |
3891 | _("allegedly permanent breakpoint is not " |
3892 | "actually inserted")); | |
c2c6d25f | 3893 | |
075f6582 | 3894 | ALL_BP_LOCATIONS (b) |
c2c6d25f JM |
3895 | if (b != perm_bp) |
3896 | { | |
075f6582 DJ |
3897 | if (b->owner->enable_state != bp_disabled |
3898 | && b->owner->enable_state != bp_shlib_disabled | |
0101ce28 | 3899 | && !b->owner->pending |
075f6582 DJ |
3900 | && b->owner->enable_state != bp_call_disabled |
3901 | && b->address == address /* address / overlay match */ | |
3902 | && (!overlay_debugging || b->section == section) | |
3903 | && breakpoint_address_is_meaningful (b->owner)) | |
3904 | { | |
3905 | if (b->inserted) | |
3906 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 AC |
3907 | _("another breakpoint was inserted on top of " |
3908 | "a permanent breakpoint")); | |
075f6582 DJ |
3909 | |
3910 | b->duplicate = 1; | |
3911 | } | |
c2c6d25f JM |
3912 | } |
3913 | } | |
c906108c SS |
3914 | } |
3915 | ||
76897487 KB |
3916 | static void |
3917 | breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr, | |
3918 | int bnum, int have_bnum) | |
3919 | { | |
3920 | char astr1[40]; | |
3921 | char astr2[40]; | |
3922 | ||
bb599908 PH |
3923 | strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8)); |
3924 | strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8)); | |
76897487 | 3925 | if (have_bnum) |
8a3fe4f8 | 3926 | warning (_("Breakpoint %d address previously adjusted from %s to %s."), |
76897487 KB |
3927 | bnum, astr1, astr2); |
3928 | else | |
8a3fe4f8 | 3929 | warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2); |
76897487 KB |
3930 | } |
3931 | ||
3932 | /* Adjust a breakpoint's address to account for architectural constraints | |
3933 | on breakpoint placement. Return the adjusted address. Note: Very | |
3934 | few targets require this kind of adjustment. For most targets, | |
3935 | this function is simply the identity function. */ | |
3936 | ||
3937 | static CORE_ADDR | |
88f7da05 | 3938 | adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype) |
76897487 KB |
3939 | { |
3940 | if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch)) | |
3941 | { | |
3942 | /* Very few targets need any kind of breakpoint adjustment. */ | |
3943 | return bpaddr; | |
3944 | } | |
88f7da05 KB |
3945 | else if (bptype == bp_watchpoint |
3946 | || bptype == bp_hardware_watchpoint | |
3947 | || bptype == bp_read_watchpoint | |
3948 | || bptype == bp_access_watchpoint | |
3949 | || bptype == bp_catch_fork | |
3950 | || bptype == bp_catch_vfork | |
3951 | || bptype == bp_catch_exec) | |
3952 | { | |
3953 | /* Watchpoints and the various bp_catch_* eventpoints should not | |
3954 | have their addresses modified. */ | |
3955 | return bpaddr; | |
3956 | } | |
76897487 KB |
3957 | else |
3958 | { | |
3959 | CORE_ADDR adjusted_bpaddr; | |
3960 | ||
3961 | /* Some targets have architectural constraints on the placement | |
3962 | of breakpoint instructions. Obtain the adjusted address. */ | |
3963 | adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch, | |
3964 | bpaddr); | |
3965 | ||
3966 | /* An adjusted breakpoint address can significantly alter | |
3967 | a user's expectations. Print a warning if an adjustment | |
3968 | is required. */ | |
3969 | if (adjusted_bpaddr != bpaddr) | |
3970 | breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0); | |
3971 | ||
3972 | return adjusted_bpaddr; | |
3973 | } | |
3974 | } | |
3975 | ||
7cc221ef DJ |
3976 | /* Allocate a struct bp_location. */ |
3977 | ||
26bb91f3 | 3978 | static struct bp_location * |
e049a4b5 | 3979 | allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type) |
7cc221ef DJ |
3980 | { |
3981 | struct bp_location *loc, *loc_p; | |
3982 | ||
3983 | loc = xmalloc (sizeof (struct bp_location)); | |
3984 | memset (loc, 0, sizeof (*loc)); | |
3985 | ||
e049a4b5 DJ |
3986 | loc->owner = bpt; |
3987 | ||
3988 | switch (bp_type) | |
3989 | { | |
3990 | case bp_breakpoint: | |
3991 | case bp_until: | |
3992 | case bp_finish: | |
3993 | case bp_longjmp: | |
3994 | case bp_longjmp_resume: | |
3995 | case bp_step_resume: | |
3996 | case bp_through_sigtramp: | |
3997 | case bp_watchpoint_scope: | |
3998 | case bp_call_dummy: | |
3999 | case bp_shlib_event: | |
4000 | case bp_thread_event: | |
4001 | case bp_overlay_event: | |
4002 | case bp_catch_load: | |
4003 | case bp_catch_unload: | |
4004 | loc->loc_type = bp_loc_software_breakpoint; | |
4005 | break; | |
4006 | case bp_hardware_breakpoint: | |
4007 | loc->loc_type = bp_loc_hardware_breakpoint; | |
4008 | break; | |
4009 | case bp_hardware_watchpoint: | |
4010 | case bp_read_watchpoint: | |
4011 | case bp_access_watchpoint: | |
4012 | loc->loc_type = bp_loc_hardware_watchpoint; | |
4013 | break; | |
4014 | case bp_watchpoint: | |
4015 | case bp_catch_fork: | |
4016 | case bp_catch_vfork: | |
4017 | case bp_catch_exec: | |
4018 | case bp_catch_catch: | |
4019 | case bp_catch_throw: | |
4020 | loc->loc_type = bp_loc_other; | |
4021 | break; | |
4022 | default: | |
e2e0b3e5 | 4023 | internal_error (__FILE__, __LINE__, _("unknown breakpoint type")); |
e049a4b5 DJ |
4024 | } |
4025 | ||
7cc221ef DJ |
4026 | /* Add this breakpoint to the end of the chain. */ |
4027 | ||
4028 | loc_p = bp_location_chain; | |
4029 | if (loc_p == 0) | |
4030 | bp_location_chain = loc; | |
4031 | else | |
4032 | { | |
4033 | while (loc_p->next) | |
4034 | loc_p = loc_p->next; | |
4035 | loc_p->next = loc; | |
4036 | } | |
4037 | ||
4038 | return loc; | |
4039 | } | |
4040 | ||
4d28f7a8 KB |
4041 | /* set_raw_breakpoint() is a low level routine for allocating and |
4042 | partially initializing a breakpoint of type BPTYPE. The newly | |
4043 | created breakpoint's address, section, source file name, and line | |
4044 | number are provided by SAL. The newly created and partially | |
4045 | initialized breakpoint is added to the breakpoint chain and | |
4046 | is also returned as the value of this function. | |
c906108c | 4047 | |
4d28f7a8 KB |
4048 | It is expected that the caller will complete the initialization of |
4049 | the newly created breakpoint struct as well as output any status | |
4050 | information regarding the creation of a new breakpoint. In | |
4051 | particular, set_raw_breakpoint() does NOT set the breakpoint | |
4052 | number! Care should be taken to not allow an error() to occur | |
4053 | prior to completing the initialization of the breakpoint. If this | |
4054 | should happen, a bogus breakpoint will be left on the chain. */ | |
c906108c SS |
4055 | |
4056 | struct breakpoint * | |
4d28f7a8 | 4057 | set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype) |
c906108c | 4058 | { |
52f0bd74 | 4059 | struct breakpoint *b, *b1; |
c906108c SS |
4060 | |
4061 | b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint)); | |
4062 | memset (b, 0, sizeof (*b)); | |
e049a4b5 | 4063 | b->loc = allocate_bp_location (b, bptype); |
5cab636d | 4064 | b->loc->requested_address = sal.pc; |
88f7da05 KB |
4065 | b->loc->address = adjust_breakpoint_address (b->loc->requested_address, |
4066 | bptype); | |
c906108c SS |
4067 | if (sal.symtab == NULL) |
4068 | b->source_file = NULL; | |
4069 | else | |
4070 | b->source_file = savestring (sal.symtab->filename, | |
4071 | strlen (sal.symtab->filename)); | |
cf3a9e5b | 4072 | b->loc->section = sal.section; |
4d28f7a8 | 4073 | b->type = bptype; |
c906108c SS |
4074 | b->language = current_language->la_language; |
4075 | b->input_radix = input_radix; | |
4076 | b->thread = -1; | |
4077 | b->line_number = sal.line; | |
b5de0fa7 | 4078 | b->enable_state = bp_enabled; |
c906108c SS |
4079 | b->next = 0; |
4080 | b->silent = 0; | |
4081 | b->ignore_count = 0; | |
4082 | b->commands = NULL; | |
818dd999 | 4083 | b->frame_id = null_frame_id; |
c906108c SS |
4084 | b->dll_pathname = NULL; |
4085 | b->triggered_dll_pathname = NULL; | |
4086 | b->forked_inferior_pid = 0; | |
4087 | b->exec_pathname = NULL; | |
3086aeae | 4088 | b->ops = NULL; |
0101ce28 | 4089 | b->pending = 0; |
c906108c SS |
4090 | |
4091 | /* Add this breakpoint to the end of the chain | |
4092 | so that a list of breakpoints will come out in order | |
4093 | of increasing numbers. */ | |
4094 | ||
4095 | b1 = breakpoint_chain; | |
4096 | if (b1 == 0) | |
4097 | breakpoint_chain = b; | |
4098 | else | |
4099 | { | |
4100 | while (b1->next) | |
4101 | b1 = b1->next; | |
4102 | b1->next = b; | |
4103 | } | |
4104 | ||
9f60f21b | 4105 | check_duplicates (b); |
c906108c SS |
4106 | breakpoints_changed (); |
4107 | ||
4108 | return b; | |
4109 | } | |
4110 | ||
c2c6d25f JM |
4111 | |
4112 | /* Note that the breakpoint object B describes a permanent breakpoint | |
4113 | instruction, hard-wired into the inferior's code. */ | |
4114 | void | |
4115 | make_breakpoint_permanent (struct breakpoint *b) | |
4116 | { | |
b5de0fa7 | 4117 | b->enable_state = bp_permanent; |
c2c6d25f JM |
4118 | |
4119 | /* By definition, permanent breakpoints are already present in the code. */ | |
5cab636d | 4120 | b->loc->inserted = 1; |
c2c6d25f JM |
4121 | } |
4122 | ||
1900040c MS |
4123 | static struct breakpoint * |
4124 | create_internal_breakpoint (CORE_ADDR address, enum bptype type) | |
4125 | { | |
4126 | static int internal_breakpoint_number = -1; | |
4127 | struct symtab_and_line sal; | |
4128 | struct breakpoint *b; | |
4129 | ||
fe39c653 | 4130 | init_sal (&sal); /* initialize to zeroes */ |
1900040c MS |
4131 | |
4132 | sal.pc = address; | |
4133 | sal.section = find_pc_overlay (sal.pc); | |
4134 | ||
4135 | b = set_raw_breakpoint (sal, type); | |
4136 | b->number = internal_breakpoint_number--; | |
4137 | b->disposition = disp_donttouch; | |
4138 | ||
4139 | return b; | |
4140 | } | |
4141 | ||
c906108c SS |
4142 | |
4143 | static void | |
fba45db2 | 4144 | create_longjmp_breakpoint (char *func_name) |
c906108c | 4145 | { |
c906108c | 4146 | struct breakpoint *b; |
1900040c | 4147 | struct minimal_symbol *m; |
c906108c | 4148 | |
1900040c MS |
4149 | if (func_name == NULL) |
4150 | b = create_internal_breakpoint (0, bp_longjmp_resume); | |
4151 | else | |
c906108c | 4152 | { |
5520a790 | 4153 | if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL) |
c906108c | 4154 | return; |
1900040c MS |
4155 | |
4156 | b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp); | |
c906108c | 4157 | } |
c906108c | 4158 | |
b5de0fa7 | 4159 | b->enable_state = bp_disabled; |
c906108c SS |
4160 | b->silent = 1; |
4161 | if (func_name) | |
4fcf66da | 4162 | b->addr_string = xstrdup (func_name); |
c906108c SS |
4163 | } |
4164 | ||
53a5351d JM |
4165 | /* Call this routine when stepping and nexting to enable a breakpoint |
4166 | if we do a longjmp(). When we hit that breakpoint, call | |
c906108c SS |
4167 | set_longjmp_resume_breakpoint() to figure out where we are going. */ |
4168 | ||
4169 | void | |
fba45db2 | 4170 | enable_longjmp_breakpoint (void) |
c906108c | 4171 | { |
52f0bd74 | 4172 | struct breakpoint *b; |
c906108c SS |
4173 | |
4174 | ALL_BREAKPOINTS (b) | |
4175 | if (b->type == bp_longjmp) | |
c5aa993b | 4176 | { |
b5de0fa7 | 4177 | b->enable_state = bp_enabled; |
9f60f21b | 4178 | check_duplicates (b); |
c5aa993b | 4179 | } |
c906108c SS |
4180 | } |
4181 | ||
4182 | void | |
fba45db2 | 4183 | disable_longjmp_breakpoint (void) |
c906108c | 4184 | { |
52f0bd74 | 4185 | struct breakpoint *b; |
c906108c SS |
4186 | |
4187 | ALL_BREAKPOINTS (b) | |
c5aa993b | 4188 | if (b->type == bp_longjmp |
c906108c | 4189 | || b->type == bp_longjmp_resume) |
c5aa993b | 4190 | { |
b5de0fa7 | 4191 | b->enable_state = bp_disabled; |
9f60f21b | 4192 | check_duplicates (b); |
c5aa993b | 4193 | } |
c906108c SS |
4194 | } |
4195 | ||
1900040c MS |
4196 | static void |
4197 | create_overlay_event_breakpoint (char *func_name) | |
4198 | { | |
4199 | struct breakpoint *b; | |
4200 | struct minimal_symbol *m; | |
4201 | ||
5520a790 | 4202 | if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL) |
1900040c MS |
4203 | return; |
4204 | ||
4205 | b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), | |
4206 | bp_overlay_event); | |
4207 | b->addr_string = xstrdup (func_name); | |
4208 | ||
4209 | if (overlay_debugging == ovly_auto) | |
c02f5703 MS |
4210 | { |
4211 | b->enable_state = bp_enabled; | |
4212 | overlay_events_enabled = 1; | |
4213 | } | |
1900040c | 4214 | else |
c02f5703 MS |
4215 | { |
4216 | b->enable_state = bp_disabled; | |
4217 | overlay_events_enabled = 0; | |
4218 | } | |
1900040c MS |
4219 | } |
4220 | ||
4221 | void | |
4222 | enable_overlay_breakpoints (void) | |
4223 | { | |
52f0bd74 | 4224 | struct breakpoint *b; |
1900040c MS |
4225 | |
4226 | ALL_BREAKPOINTS (b) | |
4227 | if (b->type == bp_overlay_event) | |
4228 | { | |
4229 | b->enable_state = bp_enabled; | |
4230 | check_duplicates (b); | |
c02f5703 | 4231 | overlay_events_enabled = 1; |
1900040c MS |
4232 | } |
4233 | } | |
4234 | ||
4235 | void | |
4236 | disable_overlay_breakpoints (void) | |
4237 | { | |
52f0bd74 | 4238 | struct breakpoint *b; |
1900040c MS |
4239 | |
4240 | ALL_BREAKPOINTS (b) | |
4241 | if (b->type == bp_overlay_event) | |
4242 | { | |
4243 | b->enable_state = bp_disabled; | |
4244 | check_duplicates (b); | |
c02f5703 | 4245 | overlay_events_enabled = 0; |
1900040c MS |
4246 | } |
4247 | } | |
4248 | ||
c4093a6a | 4249 | struct breakpoint * |
fba45db2 | 4250 | create_thread_event_breakpoint (CORE_ADDR address) |
c4093a6a JM |
4251 | { |
4252 | struct breakpoint *b; | |
c4093a6a | 4253 | |
1900040c | 4254 | b = create_internal_breakpoint (address, bp_thread_event); |
c4093a6a | 4255 | |
b5de0fa7 | 4256 | b->enable_state = bp_enabled; |
c4093a6a | 4257 | /* addr_string has to be used or breakpoint_re_set will delete me. */ |
b435e160 | 4258 | b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address)); |
c4093a6a JM |
4259 | |
4260 | return b; | |
4261 | } | |
4262 | ||
4263 | void | |
4264 | remove_thread_event_breakpoints (void) | |
4265 | { | |
4266 | struct breakpoint *b, *temp; | |
4267 | ||
4268 | ALL_BREAKPOINTS_SAFE (b, temp) | |
4269 | if (b->type == bp_thread_event) | |
4270 | delete_breakpoint (b); | |
4271 | } | |
4272 | ||
0101ce28 JJ |
4273 | struct captured_parse_breakpoint_args |
4274 | { | |
4275 | char **arg_p; | |
4276 | struct symtabs_and_lines *sals_p; | |
4277 | char ***addr_string_p; | |
4278 | int *not_found_ptr; | |
4279 | }; | |
4280 | ||
4281 | struct lang_and_radix | |
4282 | { | |
4283 | enum language lang; | |
4284 | int radix; | |
4285 | }; | |
4286 | ||
4287 | /* Cleanup helper routine to restore the current language and | |
4288 | input radix. */ | |
4289 | static void | |
4290 | do_restore_lang_radix_cleanup (void *old) | |
4291 | { | |
4292 | struct lang_and_radix *p = old; | |
4293 | set_language (p->lang); | |
4294 | input_radix = p->radix; | |
4295 | } | |
4296 | ||
4297 | /* Try and resolve a pending breakpoint. */ | |
4298 | static int | |
4299 | resolve_pending_breakpoint (struct breakpoint *b) | |
4300 | { | |
4301 | /* Try and reparse the breakpoint in case the shared library | |
4302 | is now loaded. */ | |
4303 | struct symtabs_and_lines sals; | |
4304 | struct symtab_and_line pending_sal; | |
4305 | char **cond_string = (char **) NULL; | |
4306 | char *copy_arg = b->addr_string; | |
4307 | char **addr_string; | |
4308 | char *errmsg; | |
4309 | int rc; | |
4310 | int not_found = 0; | |
4311 | struct ui_file *old_gdb_stderr; | |
4312 | struct lang_and_radix old_lr; | |
4313 | struct cleanup *old_chain; | |
4314 | ||
4315 | /* Set language, input-radix, then reissue breakpoint command. | |
4316 | Ensure the language and input-radix are restored afterwards. */ | |
4317 | old_lr.lang = current_language->la_language; | |
4318 | old_lr.radix = input_radix; | |
4319 | old_chain = make_cleanup (do_restore_lang_radix_cleanup, &old_lr); | |
4320 | ||
4321 | set_language (b->language); | |
4322 | input_radix = b->input_radix; | |
4323 | rc = break_command_1 (b->addr_string, b->flag, b->from_tty, b); | |
4324 | ||
4325 | if (rc == GDB_RC_OK) | |
4326 | /* Pending breakpoint has been resolved. */ | |
a3f17187 | 4327 | printf_filtered (_("Pending breakpoint \"%s\" resolved\n"), b->addr_string); |
0101ce28 JJ |
4328 | |
4329 | do_cleanups (old_chain); | |
4330 | return rc; | |
4331 | } | |
4332 | ||
cae688ec JJ |
4333 | #ifdef SOLIB_ADD |
4334 | void | |
4335 | remove_solib_event_breakpoints (void) | |
4336 | { | |
4337 | struct breakpoint *b, *temp; | |
4338 | ||
4339 | ALL_BREAKPOINTS_SAFE (b, temp) | |
4340 | if (b->type == bp_shlib_event) | |
4341 | delete_breakpoint (b); | |
4342 | } | |
4343 | ||
4344 | struct breakpoint * | |
4345 | create_solib_event_breakpoint (CORE_ADDR address) | |
4346 | { | |
4347 | struct breakpoint *b; | |
4348 | ||
4349 | b = create_internal_breakpoint (address, bp_shlib_event); | |
4350 | return b; | |
4351 | } | |
4352 | ||
4353 | /* Disable any breakpoints that are on code in shared libraries. Only | |
4354 | apply to enabled breakpoints, disabled ones can just stay disabled. */ | |
4355 | ||
4356 | void | |
4357 | disable_breakpoints_in_shlibs (int silent) | |
4358 | { | |
4359 | struct breakpoint *b; | |
4360 | int disabled_shlib_breaks = 0; | |
4361 | ||
4362 | /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */ | |
4363 | ALL_BREAKPOINTS (b) | |
4364 | { | |
4365 | #if defined (PC_SOLIB) | |
4366 | if (((b->type == bp_breakpoint) || | |
4367 | (b->type == bp_hardware_breakpoint)) && | |
4368 | breakpoint_enabled (b) && | |
4369 | !b->loc->duplicate && | |
4370 | PC_SOLIB (b->loc->address)) | |
4371 | { | |
4372 | b->enable_state = bp_shlib_disabled; | |
4373 | if (!silent) | |
4374 | { | |
4375 | if (!disabled_shlib_breaks) | |
4376 | { | |
4377 | target_terminal_ours_for_output (); | |
8a3fe4f8 | 4378 | warning (_("Temporarily disabling shared library breakpoints:")); |
cae688ec JJ |
4379 | } |
4380 | disabled_shlib_breaks = 1; | |
8a3fe4f8 | 4381 | warning (_("breakpoint #%d "), b->number); |
cae688ec JJ |
4382 | } |
4383 | } | |
4384 | #endif | |
4385 | } | |
4386 | } | |
4387 | ||
84acb35a JJ |
4388 | /* Disable any breakpoints that are in in an unloaded shared library. Only |
4389 | apply to enabled breakpoints, disabled ones can just stay disabled. */ | |
4390 | ||
4391 | void | |
4392 | disable_breakpoints_in_unloaded_shlib (struct so_list *solib) | |
4393 | { | |
4394 | struct breakpoint *b; | |
4395 | int disabled_shlib_breaks = 0; | |
4396 | ||
4397 | #if defined (PC_SOLIB) | |
4398 | /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */ | |
4399 | ALL_BREAKPOINTS (b) | |
4400 | { | |
4401 | if ((b->loc->loc_type == bp_loc_hardware_breakpoint | |
4402 | || b->loc->loc_type == bp_loc_software_breakpoint) | |
4403 | && breakpoint_enabled (b) | |
4404 | && !b->loc->duplicate) | |
4405 | { | |
4406 | char *so_name = PC_SOLIB (b->loc->address); | |
4407 | if (so_name | |
4408 | && !strcmp (so_name, solib->so_name)) | |
4409 | { | |
4410 | b->enable_state = bp_shlib_disabled; | |
4411 | /* At this point, we cannot rely on remove_breakpoint | |
4412 | succeeding so we must mark the breakpoint as not inserted | |
4413 | to prevent future errors occurring in remove_breakpoints. */ | |
4414 | b->loc->inserted = 0; | |
4415 | if (!disabled_shlib_breaks) | |
4416 | { | |
4417 | target_terminal_ours_for_output (); | |
8a3fe4f8 | 4418 | warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""), |
84acb35a JJ |
4419 | so_name); |
4420 | } | |
4421 | disabled_shlib_breaks = 1; | |
4422 | } | |
4423 | } | |
4424 | } | |
4425 | #endif | |
4426 | } | |
4427 | ||
c906108c SS |
4428 | /* Try to reenable any breakpoints in shared libraries. */ |
4429 | void | |
fba45db2 | 4430 | re_enable_breakpoints_in_shlibs (void) |
c906108c | 4431 | { |
0101ce28 | 4432 | struct breakpoint *b, *tmp; |
c906108c | 4433 | |
0101ce28 JJ |
4434 | ALL_BREAKPOINTS_SAFE (b, tmp) |
4435 | { | |
b5de0fa7 | 4436 | if (b->enable_state == bp_shlib_disabled) |
0101ce28 JJ |
4437 | { |
4438 | char buf[1], *lib; | |
4439 | ||
4440 | /* Do not reenable the breakpoint if the shared library | |
4441 | is still not mapped in. */ | |
4442 | lib = PC_SOLIB (b->loc->address); | |
4443 | if (lib != NULL && target_read_memory (b->loc->address, buf, 1) == 0) | |
4444 | b->enable_state = bp_enabled; | |
4445 | } | |
4446 | else if (b->pending && (b->enable_state == bp_enabled)) | |
4447 | { | |
4448 | if (resolve_pending_breakpoint (b) == GDB_RC_OK) | |
4449 | delete_breakpoint (b); | |
4450 | } | |
4451 | } | |
c906108c SS |
4452 | } |
4453 | ||
4454 | #endif | |
4455 | ||
4456 | static void | |
fba45db2 KB |
4457 | solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname, |
4458 | char *cond_string, enum bptype bp_kind) | |
c906108c | 4459 | { |
c5aa993b | 4460 | struct breakpoint *b; |
c906108c | 4461 | struct symtabs_and_lines sals; |
c5aa993b JM |
4462 | struct cleanup *old_chain; |
4463 | struct cleanup *canonical_strings_chain = NULL; | |
c5aa993b JM |
4464 | char *addr_start = hookname; |
4465 | char *addr_end = NULL; | |
4466 | char **canonical = (char **) NULL; | |
4467 | int thread = -1; /* All threads. */ | |
4468 | ||
1272ad14 MS |
4469 | /* Set a breakpoint on the specified hook. */ |
4470 | sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, | |
4471 | 0, &canonical, NULL); | |
c906108c | 4472 | addr_end = hookname; |
c5aa993b | 4473 | |
c906108c SS |
4474 | if (sals.nelts == 0) |
4475 | { | |
8a3fe4f8 AC |
4476 | warning (_("Unable to set a breakpoint on dynamic linker callback.\n" |
4477 | "Suggest linking with /opt/langtools/lib/end.o.\n" | |
4478 | "GDB will be unable to track shl_load/shl_unload calls.")); | |
c906108c SS |
4479 | return; |
4480 | } | |
4481 | if (sals.nelts != 1) | |
4482 | { | |
8a3fe4f8 AC |
4483 | warning (_("Unable to set unique breakpoint on dynamic linker callback.\n" |
4484 | "GDB will be unable to track shl_load/shl_unload calls.")); | |
c906108c SS |
4485 | return; |
4486 | } | |
4487 | ||
53a5351d JM |
4488 | /* Make sure that all storage allocated in decode_line_1 gets freed |
4489 | in case the following errors out. */ | |
b8c9b27d | 4490 | old_chain = make_cleanup (xfree, sals.sals); |
c5aa993b | 4491 | if (canonical != (char **) NULL) |
c906108c | 4492 | { |
b8c9b27d | 4493 | make_cleanup (xfree, canonical); |
c906108c SS |
4494 | canonical_strings_chain = make_cleanup (null_cleanup, 0); |
4495 | if (canonical[0] != NULL) | |
b8c9b27d | 4496 | make_cleanup (xfree, canonical[0]); |
c906108c | 4497 | } |
c5aa993b | 4498 | |
c906108c | 4499 | resolve_sal_pc (&sals.sals[0]); |
c5aa993b | 4500 | |
c906108c | 4501 | /* Remove the canonical strings from the cleanup, they are needed below. */ |
c5aa993b | 4502 | if (canonical != (char **) NULL) |
c906108c | 4503 | discard_cleanups (canonical_strings_chain); |
c5aa993b | 4504 | |
4d28f7a8 | 4505 | b = set_raw_breakpoint (sals.sals[0], bp_kind); |
c906108c SS |
4506 | set_breakpoint_count (breakpoint_count + 1); |
4507 | b->number = breakpoint_count; | |
4508 | b->cond = NULL; | |
53a5351d JM |
4509 | b->cond_string = (cond_string == NULL) ? |
4510 | NULL : savestring (cond_string, strlen (cond_string)); | |
c906108c | 4511 | b->thread = thread; |
c5aa993b JM |
4512 | |
4513 | if (canonical != (char **) NULL && canonical[0] != NULL) | |
c906108c SS |
4514 | b->addr_string = canonical[0]; |
4515 | else if (addr_start) | |
4516 | b->addr_string = savestring (addr_start, addr_end - addr_start); | |
c5aa993b | 4517 | |
b5de0fa7 EZ |
4518 | b->enable_state = bp_enabled; |
4519 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
c5aa993b | 4520 | |
c906108c SS |
4521 | if (dll_pathname == NULL) |
4522 | b->dll_pathname = NULL; | |
4523 | else | |
4524 | { | |
4525 | b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1); | |
4526 | strcpy (b->dll_pathname, dll_pathname); | |
4527 | } | |
c5aa993b | 4528 | |
c906108c SS |
4529 | mention (b); |
4530 | do_cleanups (old_chain); | |
4531 | } | |
4532 | ||
4533 | void | |
fba45db2 KB |
4534 | create_solib_load_event_breakpoint (char *hookname, int tempflag, |
4535 | char *dll_pathname, char *cond_string) | |
c906108c | 4536 | { |
53a5351d JM |
4537 | solib_load_unload_1 (hookname, tempflag, dll_pathname, |
4538 | cond_string, bp_catch_load); | |
c906108c SS |
4539 | } |
4540 | ||
4541 | void | |
fba45db2 KB |
4542 | create_solib_unload_event_breakpoint (char *hookname, int tempflag, |
4543 | char *dll_pathname, char *cond_string) | |
c906108c | 4544 | { |
1272ad14 | 4545 | solib_load_unload_1 (hookname, tempflag, dll_pathname, |
53a5351d | 4546 | cond_string, bp_catch_unload); |
c906108c SS |
4547 | } |
4548 | ||
4549 | static void | |
fba45db2 KB |
4550 | create_fork_vfork_event_catchpoint (int tempflag, char *cond_string, |
4551 | enum bptype bp_kind) | |
c906108c | 4552 | { |
c5aa993b JM |
4553 | struct symtab_and_line sal; |
4554 | struct breakpoint *b; | |
4555 | int thread = -1; /* All threads. */ | |
4556 | ||
fe39c653 | 4557 | init_sal (&sal); |
c906108c SS |
4558 | sal.pc = 0; |
4559 | sal.symtab = NULL; | |
4560 | sal.line = 0; | |
c5aa993b | 4561 | |
4d28f7a8 | 4562 | b = set_raw_breakpoint (sal, bp_kind); |
c906108c SS |
4563 | set_breakpoint_count (breakpoint_count + 1); |
4564 | b->number = breakpoint_count; | |
4565 | b->cond = NULL; | |
53a5351d JM |
4566 | b->cond_string = (cond_string == NULL) ? |
4567 | NULL : savestring (cond_string, strlen (cond_string)); | |
c906108c SS |
4568 | b->thread = thread; |
4569 | b->addr_string = NULL; | |
b5de0fa7 EZ |
4570 | b->enable_state = bp_enabled; |
4571 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
c906108c | 4572 | b->forked_inferior_pid = 0; |
c5aa993b | 4573 | |
c906108c SS |
4574 | mention (b); |
4575 | } | |
4576 | ||
4577 | void | |
fba45db2 | 4578 | create_fork_event_catchpoint (int tempflag, char *cond_string) |
c906108c SS |
4579 | { |
4580 | create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork); | |
4581 | } | |
c5aa993b | 4582 | |
c906108c | 4583 | void |
fba45db2 | 4584 | create_vfork_event_catchpoint (int tempflag, char *cond_string) |
c906108c SS |
4585 | { |
4586 | create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork); | |
4587 | } | |
4588 | ||
4589 | void | |
fba45db2 | 4590 | create_exec_event_catchpoint (int tempflag, char *cond_string) |
c906108c | 4591 | { |
c5aa993b JM |
4592 | struct symtab_and_line sal; |
4593 | struct breakpoint *b; | |
4594 | int thread = -1; /* All threads. */ | |
c906108c | 4595 | |
fe39c653 | 4596 | init_sal (&sal); |
c906108c SS |
4597 | sal.pc = 0; |
4598 | sal.symtab = NULL; | |
4599 | sal.line = 0; | |
4600 | ||
4d28f7a8 | 4601 | b = set_raw_breakpoint (sal, bp_catch_exec); |
c906108c SS |
4602 | set_breakpoint_count (breakpoint_count + 1); |
4603 | b->number = breakpoint_count; | |
4604 | b->cond = NULL; | |
53a5351d JM |
4605 | b->cond_string = (cond_string == NULL) ? |
4606 | NULL : savestring (cond_string, strlen (cond_string)); | |
c906108c SS |
4607 | b->thread = thread; |
4608 | b->addr_string = NULL; | |
b5de0fa7 EZ |
4609 | b->enable_state = bp_enabled; |
4610 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
c906108c | 4611 | |
c906108c SS |
4612 | mention (b); |
4613 | } | |
4614 | ||
4615 | static int | |
fba45db2 | 4616 | hw_breakpoint_used_count (void) |
c906108c | 4617 | { |
52f0bd74 | 4618 | struct breakpoint *b; |
c906108c SS |
4619 | int i = 0; |
4620 | ||
4621 | ALL_BREAKPOINTS (b) | |
c5aa993b | 4622 | { |
b5de0fa7 | 4623 | if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled) |
c5aa993b JM |
4624 | i++; |
4625 | } | |
c906108c SS |
4626 | |
4627 | return i; | |
4628 | } | |
4629 | ||
4630 | static int | |
fba45db2 | 4631 | hw_watchpoint_used_count (enum bptype type, int *other_type_used) |
c906108c | 4632 | { |
52f0bd74 | 4633 | struct breakpoint *b; |
c906108c SS |
4634 | int i = 0; |
4635 | ||
4636 | *other_type_used = 0; | |
4637 | ALL_BREAKPOINTS (b) | |
c5aa993b | 4638 | { |
468d015d | 4639 | if (breakpoint_enabled (b)) |
c5aa993b JM |
4640 | { |
4641 | if (b->type == type) | |
4642 | i++; | |
4643 | else if ((b->type == bp_hardware_watchpoint || | |
4644 | b->type == bp_read_watchpoint || | |
468d015d | 4645 | b->type == bp_access_watchpoint)) |
c5aa993b JM |
4646 | *other_type_used = 1; |
4647 | } | |
4648 | } | |
c906108c SS |
4649 | return i; |
4650 | } | |
4651 | ||
53a5351d JM |
4652 | /* Call this after hitting the longjmp() breakpoint. Use this to set |
4653 | a new breakpoint at the target of the jmp_buf. | |
c906108c | 4654 | |
53a5351d JM |
4655 | FIXME - This ought to be done by setting a temporary breakpoint |
4656 | that gets deleted automatically... */ | |
c906108c SS |
4657 | |
4658 | void | |
818dd999 | 4659 | set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id) |
c906108c | 4660 | { |
52f0bd74 | 4661 | struct breakpoint *b; |
c906108c SS |
4662 | |
4663 | ALL_BREAKPOINTS (b) | |
4664 | if (b->type == bp_longjmp_resume) | |
c5aa993b | 4665 | { |
5cab636d | 4666 | b->loc->requested_address = pc; |
88f7da05 KB |
4667 | b->loc->address = adjust_breakpoint_address (b->loc->requested_address, |
4668 | b->type); | |
b5de0fa7 | 4669 | b->enable_state = bp_enabled; |
818dd999 | 4670 | b->frame_id = frame_id; |
9f60f21b | 4671 | check_duplicates (b); |
c5aa993b JM |
4672 | return; |
4673 | } | |
c906108c SS |
4674 | } |
4675 | ||
4676 | void | |
fba45db2 | 4677 | disable_watchpoints_before_interactive_call_start (void) |
c906108c | 4678 | { |
c5aa993b | 4679 | struct breakpoint *b; |
c906108c SS |
4680 | |
4681 | ALL_BREAKPOINTS (b) | |
c5aa993b JM |
4682 | { |
4683 | if (((b->type == bp_watchpoint) | |
4684 | || (b->type == bp_hardware_watchpoint) | |
4685 | || (b->type == bp_read_watchpoint) | |
4686 | || (b->type == bp_access_watchpoint) | |
4687 | || ep_is_exception_catchpoint (b)) | |
468d015d | 4688 | && breakpoint_enabled (b)) |
c5aa993b | 4689 | { |
b5de0fa7 | 4690 | b->enable_state = bp_call_disabled; |
9f60f21b | 4691 | check_duplicates (b); |
c5aa993b JM |
4692 | } |
4693 | } | |
c906108c SS |
4694 | } |
4695 | ||
4696 | void | |
fba45db2 | 4697 | enable_watchpoints_after_interactive_call_stop (void) |
c906108c | 4698 | { |
c5aa993b | 4699 | struct breakpoint *b; |
c906108c SS |
4700 | |
4701 | ALL_BREAKPOINTS (b) | |
c5aa993b JM |
4702 | { |
4703 | if (((b->type == bp_watchpoint) | |
4704 | || (b->type == bp_hardware_watchpoint) | |
4705 | || (b->type == bp_read_watchpoint) | |
4706 | || (b->type == bp_access_watchpoint) | |
4707 | || ep_is_exception_catchpoint (b)) | |
b5de0fa7 | 4708 | && (b->enable_state == bp_call_disabled)) |
c5aa993b | 4709 | { |
b5de0fa7 | 4710 | b->enable_state = bp_enabled; |
9f60f21b | 4711 | check_duplicates (b); |
c5aa993b JM |
4712 | } |
4713 | } | |
c906108c SS |
4714 | } |
4715 | ||
4716 | ||
4717 | /* Set a breakpoint that will evaporate an end of command | |
4718 | at address specified by SAL. | |
4719 | Restrict it to frame FRAME if FRAME is nonzero. */ | |
4720 | ||
4721 | struct breakpoint * | |
818dd999 | 4722 | set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id, |
fba45db2 | 4723 | enum bptype type) |
c906108c | 4724 | { |
52f0bd74 | 4725 | struct breakpoint *b; |
4d28f7a8 | 4726 | b = set_raw_breakpoint (sal, type); |
b5de0fa7 EZ |
4727 | b->enable_state = bp_enabled; |
4728 | b->disposition = disp_donttouch; | |
818dd999 | 4729 | b->frame_id = frame_id; |
c906108c SS |
4730 | |
4731 | /* If we're debugging a multi-threaded program, then we | |
4732 | want momentary breakpoints to be active in only a | |
4733 | single thread of control. */ | |
39f77062 KB |
4734 | if (in_thread_list (inferior_ptid)) |
4735 | b->thread = pid_to_thread_id (inferior_ptid); | |
c906108c SS |
4736 | |
4737 | return b; | |
4738 | } | |
c906108c | 4739 | \f |
c5aa993b | 4740 | |
c906108c SS |
4741 | /* Tell the user we have just set a breakpoint B. */ |
4742 | ||
4743 | static void | |
fba45db2 | 4744 | mention (struct breakpoint *b) |
c906108c SS |
4745 | { |
4746 | int say_where = 0; | |
3b31d625 | 4747 | struct cleanup *old_chain, *ui_out_chain; |
8b93c638 JM |
4748 | struct ui_stream *stb; |
4749 | ||
4750 | stb = ui_out_stream_new (uiout); | |
b02eeafb | 4751 | old_chain = make_cleanup_ui_out_stream_delete (stb); |
c906108c | 4752 | |
9a4105ab AC |
4753 | /* FIXME: This is misplaced; mention() is called by things (like |
4754 | hitting a watchpoint) other than breakpoint creation. It should | |
4755 | be possible to clean this up and at the same time replace the | |
4756 | random calls to breakpoint_changed with this hook, as has already | |
4757 | been done for deprecated_delete_breakpoint_hook and so on. */ | |
4758 | if (deprecated_create_breakpoint_hook) | |
4759 | deprecated_create_breakpoint_hook (b); | |
104c1213 | 4760 | breakpoint_create_event (b->number); |
c906108c | 4761 | |
3086aeae DJ |
4762 | if (b->ops != NULL && b->ops->print_mention != NULL) |
4763 | b->ops->print_mention (b); | |
4764 | else | |
4765 | switch (b->type) | |
4766 | { | |
4767 | case bp_none: | |
a3f17187 | 4768 | printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number); |
3086aeae DJ |
4769 | break; |
4770 | case bp_watchpoint: | |
4771 | ui_out_text (uiout, "Watchpoint "); | |
4772 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
4773 | ui_out_field_int (uiout, "number", b->number); | |
4774 | ui_out_text (uiout, ": "); | |
4775 | print_expression (b->exp, stb->stream); | |
4776 | ui_out_field_stream (uiout, "exp", stb); | |
4777 | do_cleanups (ui_out_chain); | |
4778 | break; | |
4779 | case bp_hardware_watchpoint: | |
4780 | ui_out_text (uiout, "Hardware watchpoint "); | |
4781 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt"); | |
4782 | ui_out_field_int (uiout, "number", b->number); | |
4783 | ui_out_text (uiout, ": "); | |
4784 | print_expression (b->exp, stb->stream); | |
4785 | ui_out_field_stream (uiout, "exp", stb); | |
4786 | do_cleanups (ui_out_chain); | |
4787 | break; | |
4788 | case bp_read_watchpoint: | |
4789 | ui_out_text (uiout, "Hardware read watchpoint "); | |
4790 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt"); | |
4791 | ui_out_field_int (uiout, "number", b->number); | |
4792 | ui_out_text (uiout, ": "); | |
4793 | print_expression (b->exp, stb->stream); | |
4794 | ui_out_field_stream (uiout, "exp", stb); | |
4795 | do_cleanups (ui_out_chain); | |
4796 | break; | |
4797 | case bp_access_watchpoint: | |
4798 | ui_out_text (uiout, "Hardware access (read/write) watchpoint "); | |
4799 | ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt"); | |
4800 | ui_out_field_int (uiout, "number", b->number); | |
4801 | ui_out_text (uiout, ": "); | |
4802 | print_expression (b->exp, stb->stream); | |
4803 | ui_out_field_stream (uiout, "exp", stb); | |
4804 | do_cleanups (ui_out_chain); | |
4805 | break; | |
4806 | case bp_breakpoint: | |
4807 | if (ui_out_is_mi_like_p (uiout)) | |
4808 | { | |
4809 | say_where = 0; | |
4810 | break; | |
4811 | } | |
a3f17187 | 4812 | printf_filtered (_("Breakpoint %d"), b->number); |
3086aeae DJ |
4813 | say_where = 1; |
4814 | break; | |
4815 | case bp_hardware_breakpoint: | |
4816 | if (ui_out_is_mi_like_p (uiout)) | |
4817 | { | |
4818 | say_where = 0; | |
4819 | break; | |
4820 | } | |
a3f17187 | 4821 | printf_filtered (_("Hardware assisted breakpoint %d"), b->number); |
3086aeae DJ |
4822 | say_where = 1; |
4823 | break; | |
4824 | case bp_catch_load: | |
4825 | case bp_catch_unload: | |
a3f17187 | 4826 | printf_filtered (_("Catchpoint %d (%s %s)"), |
3086aeae DJ |
4827 | b->number, |
4828 | (b->type == bp_catch_load) ? "load" : "unload", | |
4829 | (b->dll_pathname != NULL) ? | |
4830 | b->dll_pathname : "<any library>"); | |
4831 | break; | |
4832 | case bp_catch_fork: | |
4833 | case bp_catch_vfork: | |
a3f17187 | 4834 | printf_filtered (_("Catchpoint %d (%s)"), |
3086aeae DJ |
4835 | b->number, |
4836 | (b->type == bp_catch_fork) ? "fork" : "vfork"); | |
4837 | break; | |
4838 | case bp_catch_exec: | |
a3f17187 | 4839 | printf_filtered (_("Catchpoint %d (exec)"), |
3086aeae DJ |
4840 | b->number); |
4841 | break; | |
4842 | case bp_catch_catch: | |
4843 | case bp_catch_throw: | |
a3f17187 | 4844 | printf_filtered (_("Catchpoint %d (%s)"), |
3086aeae DJ |
4845 | b->number, |
4846 | (b->type == bp_catch_catch) ? "catch" : "throw"); | |
4847 | break; | |
4848 | ||
4849 | case bp_until: | |
4850 | case bp_finish: | |
4851 | case bp_longjmp: | |
4852 | case bp_longjmp_resume: | |
4853 | case bp_step_resume: | |
4854 | case bp_through_sigtramp: | |
4855 | case bp_call_dummy: | |
4856 | case bp_watchpoint_scope: | |
4857 | case bp_shlib_event: | |
4858 | case bp_thread_event: | |
4859 | case bp_overlay_event: | |
4860 | break; | |
4861 | } | |
c906108c | 4862 | |
c906108c SS |
4863 | if (say_where) |
4864 | { | |
a3f17187 AC |
4865 | /* i18n: cagney/2005-02-11: Below needs to be merged into a |
4866 | single string. */ | |
0101ce28 | 4867 | if (b->pending) |
c906108c | 4868 | { |
a3f17187 | 4869 | printf_filtered (_(" (%s) pending."), b->addr_string); |
0101ce28 JJ |
4870 | } |
4871 | else | |
4872 | { | |
4873 | if (addressprint || b->source_file == NULL) | |
4874 | { | |
4875 | printf_filtered (" at "); | |
66bf4b3a | 4876 | deprecated_print_address_numeric (b->loc->address, 1, gdb_stdout); |
0101ce28 JJ |
4877 | } |
4878 | if (b->source_file) | |
4879 | printf_filtered (": file %s, line %d.", | |
4880 | b->source_file, b->line_number); | |
c906108c | 4881 | } |
c906108c | 4882 | } |
8b93c638 | 4883 | do_cleanups (old_chain); |
9dc5e2a9 | 4884 | if (ui_out_is_mi_like_p (uiout)) |
fb40c209 | 4885 | return; |
c906108c SS |
4886 | printf_filtered ("\n"); |
4887 | } | |
c906108c | 4888 | \f |
c5aa993b | 4889 | |
c3f6f71d JM |
4890 | /* Add SALS.nelts breakpoints to the breakpoint table. For each |
4891 | SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i], | |
4892 | COND[i] and COND_STRING[i] values. | |
4893 | ||
0101ce28 JJ |
4894 | The parameter PENDING_BP points to a pending breakpoint that is |
4895 | the basis of the breakpoints currently being created. The pending | |
4896 | breakpoint may contain a separate condition string or commands | |
4897 | that were added after the initial pending breakpoint was created. | |
4898 | ||
c3f6f71d JM |
4899 | NOTE: If the function succeeds, the caller is expected to cleanup |
4900 | the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the | |
4901 | array contents). If the function fails (error() is called), the | |
4902 | caller is expected to cleanups both the ADDR_STRING, COND_STRING, | |
4903 | COND and SALS arrays and each of those arrays contents. */ | |
c906108c SS |
4904 | |
4905 | static void | |
c3f6f71d JM |
4906 | create_breakpoints (struct symtabs_and_lines sals, char **addr_string, |
4907 | struct expression **cond, char **cond_string, | |
4908 | enum bptype type, enum bpdisp disposition, | |
0101ce28 JJ |
4909 | int thread, int ignore_count, int from_tty, |
4910 | struct breakpoint *pending_bp) | |
c906108c | 4911 | { |
c3f6f71d JM |
4912 | if (type == bp_hardware_breakpoint) |
4913 | { | |
4914 | int i = hw_breakpoint_used_count (); | |
4915 | int target_resources_ok = | |
4916 | TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint, | |
4917 | i + sals.nelts, 0); | |
4918 | if (target_resources_ok == 0) | |
8a3fe4f8 | 4919 | error (_("No hardware breakpoint support in the target.")); |
c3f6f71d | 4920 | else if (target_resources_ok < 0) |
8a3fe4f8 | 4921 | error (_("Hardware breakpoints used exceeds limit.")); |
c3f6f71d | 4922 | } |
c906108c | 4923 | |
c3f6f71d JM |
4924 | /* Now set all the breakpoints. */ |
4925 | { | |
4926 | int i; | |
4927 | for (i = 0; i < sals.nelts; i++) | |
4928 | { | |
4929 | struct breakpoint *b; | |
4930 | struct symtab_and_line sal = sals.sals[i]; | |
c906108c | 4931 | |
c3f6f71d JM |
4932 | if (from_tty) |
4933 | describe_other_breakpoints (sal.pc, sal.section); | |
4934 | ||
4d28f7a8 | 4935 | b = set_raw_breakpoint (sal, type); |
c3f6f71d JM |
4936 | set_breakpoint_count (breakpoint_count + 1); |
4937 | b->number = breakpoint_count; | |
c3f6f71d JM |
4938 | b->cond = cond[i]; |
4939 | b->thread = thread; | |
d8ef46f5 DJ |
4940 | if (addr_string[i]) |
4941 | b->addr_string = addr_string[i]; | |
4942 | else | |
4943 | /* addr_string has to be used or breakpoint_re_set will delete | |
4944 | me. */ | |
b435e160 | 4945 | b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address)); |
c3f6f71d JM |
4946 | b->cond_string = cond_string[i]; |
4947 | b->ignore_count = ignore_count; | |
b5de0fa7 | 4948 | b->enable_state = bp_enabled; |
c3f6f71d | 4949 | b->disposition = disposition; |
0101ce28 JJ |
4950 | /* If resolving a pending breakpoint, a check must be made to see if |
4951 | the user has specified a new condition or commands for the | |
4952 | breakpoint. A new condition will override any condition that was | |
4953 | initially specified with the initial breakpoint command. */ | |
4954 | if (pending_bp) | |
4955 | { | |
4956 | char *arg; | |
4957 | if (pending_bp->cond_string) | |
4958 | { | |
4959 | arg = pending_bp->cond_string; | |
4960 | b->cond_string = savestring (arg, strlen (arg)); | |
4961 | b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0); | |
4962 | if (*arg) | |
8a3fe4f8 | 4963 | error (_("Junk at end of pending breakpoint condition expression")); |
0101ce28 JJ |
4964 | } |
4965 | /* If there are commands associated with the breakpoint, they should | |
4966 | be copied too. */ | |
4967 | if (pending_bp->commands) | |
4968 | b->commands = copy_command_lines (pending_bp->commands); | |
0a5e7efe JI |
4969 | |
4970 | /* We have to copy over the ignore_count and thread as well. */ | |
4971 | b->ignore_count = pending_bp->ignore_count; | |
4972 | b->thread = pending_bp->thread; | |
0101ce28 | 4973 | } |
c3f6f71d JM |
4974 | mention (b); |
4975 | } | |
4976 | } | |
4977 | } | |
c906108c | 4978 | |
c3f6f71d JM |
4979 | /* Parse ARG which is assumed to be a SAL specification possibly |
4980 | followed by conditionals. On return, SALS contains an array of SAL | |
4981 | addresses found. ADDR_STRING contains a vector of (canonical) | |
4982 | address strings. ARG points to the end of the SAL. */ | |
c906108c | 4983 | |
b9362cc7 | 4984 | static void |
c3f6f71d JM |
4985 | parse_breakpoint_sals (char **address, |
4986 | struct symtabs_and_lines *sals, | |
0101ce28 JJ |
4987 | char ***addr_string, |
4988 | int *not_found_ptr) | |
c3f6f71d JM |
4989 | { |
4990 | char *addr_start = *address; | |
4991 | *addr_string = NULL; | |
4992 | /* If no arg given, or if first arg is 'if ', use the default | |
4993 | breakpoint. */ | |
4994 | if ((*address) == NULL | |
4995 | || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2]))) | |
c906108c SS |
4996 | { |
4997 | if (default_breakpoint_valid) | |
4998 | { | |
c3f6f71d | 4999 | struct symtab_and_line sal; |
fe39c653 | 5000 | init_sal (&sal); /* initialize to zeroes */ |
c3f6f71d | 5001 | sals->sals = (struct symtab_and_line *) |
c906108c SS |
5002 | xmalloc (sizeof (struct symtab_and_line)); |
5003 | sal.pc = default_breakpoint_address; | |
5004 | sal.line = default_breakpoint_line; | |
5005 | sal.symtab = default_breakpoint_symtab; | |
c5aa993b | 5006 | sal.section = find_pc_overlay (sal.pc); |
c3f6f71d JM |
5007 | sals->sals[0] = sal; |
5008 | sals->nelts = 1; | |
c906108c SS |
5009 | } |
5010 | else | |
8a3fe4f8 | 5011 | error (_("No default breakpoint address now.")); |
c906108c SS |
5012 | } |
5013 | else | |
5014 | { | |
c906108c | 5015 | /* Force almost all breakpoints to be in terms of the |
c5aa993b JM |
5016 | current_source_symtab (which is decode_line_1's default). This |
5017 | should produce the results we want almost all of the time while | |
1aeae86e AF |
5018 | leaving default_breakpoint_* alone. |
5019 | ObjC: However, don't match an Objective-C method name which | |
5020 | may have a '+' or '-' succeeded by a '[' */ | |
0378c332 | 5021 | |
c214a6fd | 5022 | struct symtab_and_line cursal = get_current_source_symtab_and_line (); |
0378c332 | 5023 | |
c906108c | 5024 | if (default_breakpoint_valid |
0378c332 | 5025 | && (!cursal.symtab |
1aeae86e AF |
5026 | || ((strchr ("+-", (*address)[0]) != NULL) |
5027 | && ((*address)[1] != '[')))) | |
c3f6f71d | 5028 | *sals = decode_line_1 (address, 1, default_breakpoint_symtab, |
0101ce28 JJ |
5029 | default_breakpoint_line, addr_string, |
5030 | not_found_ptr); | |
c906108c | 5031 | else |
0101ce28 JJ |
5032 | *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0, |
5033 | addr_string, not_found_ptr); | |
c906108c | 5034 | } |
c3f6f71d JM |
5035 | /* For any SAL that didn't have a canonical string, fill one in. */ |
5036 | if (sals->nelts > 0 && *addr_string == NULL) | |
5037 | *addr_string = xcalloc (sals->nelts, sizeof (char **)); | |
5038 | if (addr_start != (*address)) | |
c906108c | 5039 | { |
c3f6f71d JM |
5040 | int i; |
5041 | for (i = 0; i < sals->nelts; i++) | |
c906108c | 5042 | { |
c3f6f71d JM |
5043 | /* Add the string if not present. */ |
5044 | if ((*addr_string)[i] == NULL) | |
5045 | (*addr_string)[i] = savestring (addr_start, (*address) - addr_start); | |
c906108c SS |
5046 | } |
5047 | } | |
c3f6f71d | 5048 | } |
c906108c | 5049 | |
c906108c | 5050 | |
c3f6f71d JM |
5051 | /* Convert each SAL into a real PC. Verify that the PC can be |
5052 | inserted as a breakpoint. If it can't throw an error. */ | |
c906108c | 5053 | |
b9362cc7 | 5054 | static void |
c3f6f71d JM |
5055 | breakpoint_sals_to_pc (struct symtabs_and_lines *sals, |
5056 | char *address) | |
5057 | { | |
5058 | int i; | |
5059 | for (i = 0; i < sals->nelts; i++) | |
5060 | { | |
5061 | resolve_sal_pc (&sals->sals[i]); | |
c906108c SS |
5062 | |
5063 | /* It's possible for the PC to be nonzero, but still an illegal | |
5064 | value on some targets. | |
5065 | ||
5066 | For example, on HP-UX if you start gdb, and before running the | |
5067 | inferior you try to set a breakpoint on a shared library function | |
5068 | "foo" where the inferior doesn't call "foo" directly but does | |
5069 | pass its address to another function call, then we do find a | |
5070 | minimal symbol for the "foo", but it's address is invalid. | |
5071 | (Appears to be an index into a table that the loader sets up | |
5072 | when the inferior is run.) | |
5073 | ||
5074 | Give the target a chance to bless sals.sals[i].pc before we | |
5075 | try to make a breakpoint for it. */ | |
45b75230 AC |
5076 | #ifdef DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE |
5077 | if (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc)) | |
c5aa993b | 5078 | { |
c3f6f71d | 5079 | if (address == NULL) |
8a3fe4f8 | 5080 | error (_("Cannot break without a running program.")); |
c3f6f71d | 5081 | else |
8a3fe4f8 | 5082 | error (_("Cannot break on %s without a running program."), |
c3f6f71d | 5083 | address); |
c5aa993b | 5084 | } |
45b75230 | 5085 | #endif |
c3f6f71d JM |
5086 | } |
5087 | } | |
5088 | ||
05ff989b | 5089 | static void |
0101ce28 JJ |
5090 | do_captured_parse_breakpoint (struct ui_out *ui, void *data) |
5091 | { | |
5092 | struct captured_parse_breakpoint_args *args = data; | |
5093 | ||
5094 | parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p, | |
5095 | args->not_found_ptr); | |
0101ce28 JJ |
5096 | } |
5097 | ||
c3f6f71d JM |
5098 | /* Set a breakpoint according to ARG (function, linenum or *address) |
5099 | flag: first bit : 0 non-temporary, 1 temporary. | |
0101ce28 | 5100 | second bit : 0 normal breakpoint, 1 hardware breakpoint. |
c5aa993b | 5101 | |
0101ce28 JJ |
5102 | PENDING_BP is non-NULL when this function is being called to resolve |
5103 | a pending breakpoint. */ | |
5104 | ||
5105 | static int | |
5106 | break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp) | |
c3f6f71d | 5107 | { |
05ff989b | 5108 | struct exception e; |
c3f6f71d JM |
5109 | int tempflag, hardwareflag; |
5110 | struct symtabs_and_lines sals; | |
52f0bd74 | 5111 | struct expression **cond = 0; |
0101ce28 | 5112 | struct symtab_and_line pending_sal; |
c3f6f71d | 5113 | char **cond_string = (char **) NULL; |
0101ce28 JJ |
5114 | char *copy_arg; |
5115 | char *err_msg; | |
c3f6f71d JM |
5116 | char *addr_start = arg; |
5117 | char **addr_string; | |
5118 | struct cleanup *old_chain; | |
5119 | struct cleanup *breakpoint_chain = NULL; | |
0101ce28 | 5120 | struct captured_parse_breakpoint_args parse_args; |
05ff989b | 5121 | int i; |
0101ce28 | 5122 | int pending = 0; |
c3f6f71d JM |
5123 | int thread = -1; |
5124 | int ignore_count = 0; | |
0101ce28 | 5125 | int not_found = 0; |
c3f6f71d JM |
5126 | |
5127 | hardwareflag = flag & BP_HARDWAREFLAG; | |
5128 | tempflag = flag & BP_TEMPFLAG; | |
c906108c | 5129 | |
c3f6f71d JM |
5130 | sals.sals = NULL; |
5131 | sals.nelts = 0; | |
5132 | addr_string = NULL; | |
c3f6f71d | 5133 | |
0101ce28 JJ |
5134 | parse_args.arg_p = &arg; |
5135 | parse_args.sals_p = &sals; | |
5136 | parse_args.addr_string_p = &addr_string; | |
5137 | parse_args.not_found_ptr = ¬_found; | |
5138 | ||
05ff989b AC |
5139 | e = catch_exception (uiout, do_captured_parse_breakpoint, |
5140 | &parse_args, RETURN_MASK_ALL); | |
0101ce28 JJ |
5141 | |
5142 | /* If caller is interested in rc value from parse, set value. */ | |
05ff989b | 5143 | switch (e.reason) |
0101ce28 | 5144 | { |
05ff989b | 5145 | case RETURN_QUIT: |
9cbc821d | 5146 | exception_print (gdb_stderr, e); |
05ff989b AC |
5147 | return e.reason; |
5148 | case RETURN_ERROR: | |
5149 | switch (e.error) | |
0101ce28 | 5150 | { |
05ff989b AC |
5151 | case NOT_FOUND_ERROR: |
5152 | /* If called to resolve pending breakpoint, just return | |
5153 | error code. */ | |
0101ce28 | 5154 | if (pending_bp) |
05ff989b | 5155 | return e.reason; |
0101ce28 | 5156 | |
9cbc821d | 5157 | exception_print (gdb_stderr, e); |
fa8d40ab | 5158 | |
05ff989b AC |
5159 | /* If pending breakpoint support is turned off, throw |
5160 | error. */ | |
fa8d40ab JJ |
5161 | |
5162 | if (pending_break_support == AUTO_BOOLEAN_FALSE) | |
315a522e | 5163 | deprecated_throw_reason (RETURN_ERROR); |
fa8d40ab | 5164 | |
05ff989b AC |
5165 | /* If pending breakpoint support is auto query and the user |
5166 | selects no, then simply return the error code. */ | |
fa8d40ab JJ |
5167 | if (pending_break_support == AUTO_BOOLEAN_AUTO && |
5168 | !nquery ("Make breakpoint pending on future shared library load? ")) | |
05ff989b | 5169 | return e.reason; |
fa8d40ab | 5170 | |
05ff989b AC |
5171 | /* At this point, either the user was queried about setting |
5172 | a pending breakpoint and selected yes, or pending | |
5173 | breakpoint behavior is on and thus a pending breakpoint | |
5174 | is defaulted on behalf of the user. */ | |
0101ce28 JJ |
5175 | copy_arg = xstrdup (addr_start); |
5176 | addr_string = ©_arg; | |
5177 | sals.nelts = 1; | |
5178 | sals.sals = &pending_sal; | |
5179 | pending_sal.pc = 0; | |
5180 | pending = 1; | |
05ff989b AC |
5181 | break; |
5182 | default: | |
9cbc821d | 5183 | exception_print (gdb_stderr, e); |
05ff989b | 5184 | return e.reason; |
0101ce28 | 5185 | } |
05ff989b AC |
5186 | default: |
5187 | if (!sals.nelts) | |
5188 | return GDB_RC_FAIL; | |
0101ce28 | 5189 | } |
c3f6f71d JM |
5190 | |
5191 | /* Create a chain of things that always need to be cleaned up. */ | |
5192 | old_chain = make_cleanup (null_cleanup, 0); | |
5193 | ||
0101ce28 JJ |
5194 | if (!pending) |
5195 | { | |
5196 | /* Make sure that all storage allocated to SALS gets freed. */ | |
5197 | make_cleanup (xfree, sals.sals); | |
5198 | ||
5199 | /* Cleanup the addr_string array but not its contents. */ | |
5200 | make_cleanup (xfree, addr_string); | |
5201 | } | |
c3f6f71d JM |
5202 | |
5203 | /* Allocate space for all the cond expressions. */ | |
5204 | cond = xcalloc (sals.nelts, sizeof (struct expression *)); | |
b8c9b27d | 5205 | make_cleanup (xfree, cond); |
c3f6f71d JM |
5206 | |
5207 | /* Allocate space for all the cond strings. */ | |
5208 | cond_string = xcalloc (sals.nelts, sizeof (char **)); | |
b8c9b27d | 5209 | make_cleanup (xfree, cond_string); |
c3f6f71d JM |
5210 | |
5211 | /* ----------------------------- SNIP ----------------------------- | |
5212 | Anything added to the cleanup chain beyond this point is assumed | |
5213 | to be part of a breakpoint. If the breakpoint create succeeds | |
5214 | then the memory is not reclaimed. */ | |
5215 | breakpoint_chain = make_cleanup (null_cleanup, 0); | |
5216 | ||
5217 | /* Mark the contents of the addr_string for cleanup. These go on | |
5218 | the breakpoint_chain and only occure if the breakpoint create | |
5219 | fails. */ | |
5220 | for (i = 0; i < sals.nelts; i++) | |
5221 | { | |
5222 | if (addr_string[i] != NULL) | |
b8c9b27d | 5223 | make_cleanup (xfree, addr_string[i]); |
c3f6f71d JM |
5224 | } |
5225 | ||
5226 | /* Resolve all line numbers to PC's and verify that the addresses | |
5227 | are ok for the target. */ | |
0101ce28 JJ |
5228 | if (!pending) |
5229 | breakpoint_sals_to_pc (&sals, addr_start); | |
c3f6f71d JM |
5230 | |
5231 | /* Verify that condition can be parsed, before setting any | |
5232 | breakpoints. Allocate a separate condition expression for each | |
5233 | breakpoint. */ | |
5234 | thread = -1; /* No specific thread yet */ | |
0101ce28 | 5235 | if (!pending) |
c3f6f71d | 5236 | { |
0101ce28 | 5237 | for (i = 0; i < sals.nelts; i++) |
c906108c | 5238 | { |
0101ce28 JJ |
5239 | char *tok = arg; |
5240 | while (tok && *tok) | |
c906108c | 5241 | { |
0101ce28 JJ |
5242 | char *end_tok; |
5243 | int toklen; | |
5244 | char *cond_start = NULL; | |
5245 | char *cond_end = NULL; | |
5246 | while (*tok == ' ' || *tok == '\t') | |
5247 | tok++; | |
5248 | ||
5249 | end_tok = tok; | |
5250 | ||
5251 | while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000') | |
5252 | end_tok++; | |
5253 | ||
5254 | toklen = end_tok - tok; | |
5255 | ||
5256 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) | |
5257 | { | |
5258 | tok = cond_start = end_tok + 1; | |
5259 | cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), | |
5260 | 0); | |
5261 | make_cleanup (xfree, cond[i]); | |
5262 | cond_end = tok; | |
5263 | cond_string[i] = savestring (cond_start, | |
5264 | cond_end - cond_start); | |
5265 | make_cleanup (xfree, cond_string[i]); | |
5266 | } | |
5267 | else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0) | |
5268 | { | |
5269 | char *tmptok; | |
5270 | ||
5271 | tok = end_tok + 1; | |
5272 | tmptok = tok; | |
5273 | thread = strtol (tok, &tok, 0); | |
5274 | if (tok == tmptok) | |
8a3fe4f8 | 5275 | error (_("Junk after thread keyword.")); |
0101ce28 | 5276 | if (!valid_thread_id (thread)) |
8a3fe4f8 | 5277 | error (_("Unknown thread %d."), thread); |
0101ce28 JJ |
5278 | } |
5279 | else | |
8a3fe4f8 | 5280 | error (_("Junk at end of arguments.")); |
c906108c | 5281 | } |
c906108c | 5282 | } |
0101ce28 JJ |
5283 | create_breakpoints (sals, addr_string, cond, cond_string, |
5284 | hardwareflag ? bp_hardware_breakpoint | |
5285 | : bp_breakpoint, | |
5286 | tempflag ? disp_del : disp_donttouch, | |
5287 | thread, ignore_count, from_tty, | |
5288 | pending_bp); | |
c906108c | 5289 | } |
0101ce28 JJ |
5290 | else |
5291 | { | |
5292 | struct symtab_and_line sal; | |
5293 | struct breakpoint *b; | |
5294 | ||
5295 | sal.symtab = NULL; | |
5296 | sal.pc = 0; | |
5297 | ||
5298 | make_cleanup (xfree, copy_arg); | |
5299 | ||
5300 | b = set_raw_breakpoint (sal, hardwareflag ? bp_hardware_breakpoint | |
5301 | : bp_breakpoint); | |
5302 | set_breakpoint_count (breakpoint_count + 1); | |
5303 | b->number = breakpoint_count; | |
5304 | b->cond = *cond; | |
5305 | b->thread = thread; | |
5306 | b->addr_string = *addr_string; | |
5307 | b->cond_string = *cond_string; | |
5308 | b->ignore_count = ignore_count; | |
5309 | b->pending = 1; | |
5310 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
5311 | b->from_tty = from_tty; | |
5312 | b->flag = flag; | |
5313 | mention (b); | |
5314 | } | |
5315 | ||
c3f6f71d | 5316 | if (sals.nelts > 1) |
8a3fe4f8 AC |
5317 | warning (_("Multiple breakpoints were set.\n" |
5318 | "Use the \"delete\" command to delete unwanted breakpoints.")); | |
c3f6f71d JM |
5319 | /* That's it. Discard the cleanups for data inserted into the |
5320 | breakpoint. */ | |
5321 | discard_cleanups (breakpoint_chain); | |
5322 | /* But cleanup everything else. */ | |
5323 | do_cleanups (old_chain); | |
0101ce28 JJ |
5324 | |
5325 | return GDB_RC_OK; | |
c3f6f71d | 5326 | } |
c906108c | 5327 | |
c3f6f71d JM |
5328 | /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function, |
5329 | linenum or *address) with COND and IGNORE_COUNT. */ | |
c906108c | 5330 | |
c3f6f71d JM |
5331 | struct captured_breakpoint_args |
5332 | { | |
5333 | char *address; | |
5334 | char *condition; | |
5335 | int hardwareflag; | |
5336 | int tempflag; | |
5337 | int thread; | |
5338 | int ignore_count; | |
5339 | }; | |
5340 | ||
5341 | static int | |
ce43223b | 5342 | do_captured_breakpoint (struct ui_out *uiout, void *data) |
c3f6f71d JM |
5343 | { |
5344 | struct captured_breakpoint_args *args = data; | |
5345 | struct symtabs_and_lines sals; | |
52f0bd74 | 5346 | struct expression **cond; |
c3f6f71d JM |
5347 | struct cleanup *old_chain; |
5348 | struct cleanup *breakpoint_chain = NULL; | |
5349 | int i; | |
5350 | char **addr_string; | |
5351 | char **cond_string; | |
5352 | ||
5353 | char *address_end; | |
5354 | ||
5355 | /* Parse the source and lines spec. Delay check that the expression | |
5356 | didn't contain trailing garbage until after cleanups are in | |
5357 | place. */ | |
5358 | sals.sals = NULL; | |
5359 | sals.nelts = 0; | |
5360 | address_end = args->address; | |
5361 | addr_string = NULL; | |
0101ce28 | 5362 | parse_breakpoint_sals (&address_end, &sals, &addr_string, 0); |
c3f6f71d JM |
5363 | |
5364 | if (!sals.nelts) | |
5365 | return GDB_RC_NONE; | |
5366 | ||
5367 | /* Create a chain of things at always need to be cleaned up. */ | |
5368 | old_chain = make_cleanup (null_cleanup, 0); | |
5369 | ||
5370 | /* Always have a addr_string array, even if it is empty. */ | |
b8c9b27d | 5371 | make_cleanup (xfree, addr_string); |
c3f6f71d JM |
5372 | |
5373 | /* Make sure that all storage allocated to SALS gets freed. */ | |
b8c9b27d | 5374 | make_cleanup (xfree, sals.sals); |
c3f6f71d JM |
5375 | |
5376 | /* Allocate space for all the cond expressions. */ | |
5377 | cond = xcalloc (sals.nelts, sizeof (struct expression *)); | |
b8c9b27d | 5378 | make_cleanup (xfree, cond); |
c3f6f71d JM |
5379 | |
5380 | /* Allocate space for all the cond strings. */ | |
5381 | cond_string = xcalloc (sals.nelts, sizeof (char **)); | |
b8c9b27d | 5382 | make_cleanup (xfree, cond_string); |
c3f6f71d JM |
5383 | |
5384 | /* ----------------------------- SNIP ----------------------------- | |
5385 | Anything added to the cleanup chain beyond this point is assumed | |
5386 | to be part of a breakpoint. If the breakpoint create goes | |
5387 | through then that memory is not cleaned up. */ | |
5388 | breakpoint_chain = make_cleanup (null_cleanup, 0); | |
5389 | ||
5390 | /* Mark the contents of the addr_string for cleanup. These go on | |
5391 | the breakpoint_chain and only occure if the breakpoint create | |
5392 | fails. */ | |
c906108c SS |
5393 | for (i = 0; i < sals.nelts; i++) |
5394 | { | |
c3f6f71d | 5395 | if (addr_string[i] != NULL) |
b8c9b27d | 5396 | make_cleanup (xfree, addr_string[i]); |
c906108c SS |
5397 | } |
5398 | ||
c3f6f71d JM |
5399 | /* Wait until now before checking for garbage at the end of the |
5400 | address. That way cleanups can take care of freeing any | |
5401 | memory. */ | |
5402 | if (*address_end != '\0') | |
8a3fe4f8 | 5403 | error (_("Garbage %s following breakpoint address"), address_end); |
c3f6f71d JM |
5404 | |
5405 | /* Resolve all line numbers to PC's. */ | |
5406 | breakpoint_sals_to_pc (&sals, args->address); | |
5407 | ||
5408 | /* Verify that conditions can be parsed, before setting any | |
5409 | breakpoints. */ | |
5410 | for (i = 0; i < sals.nelts; i++) | |
c906108c | 5411 | { |
c3f6f71d JM |
5412 | if (args->condition != NULL) |
5413 | { | |
5414 | char *tok = args->condition; | |
5415 | cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0); | |
5416 | if (*tok != '\0') | |
8a3fe4f8 | 5417 | error (_("Garbage %s follows condition"), tok); |
b8c9b27d | 5418 | make_cleanup (xfree, cond[i]); |
c3f6f71d JM |
5419 | cond_string[i] = xstrdup (args->condition); |
5420 | } | |
c906108c | 5421 | } |
c3f6f71d JM |
5422 | |
5423 | create_breakpoints (sals, addr_string, cond, cond_string, | |
5424 | args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint, | |
b5de0fa7 | 5425 | args->tempflag ? disp_del : disp_donttouch, |
0101ce28 JJ |
5426 | args->thread, args->ignore_count, 0/*from-tty*/, |
5427 | NULL/*pending_bp*/); | |
c3f6f71d JM |
5428 | |
5429 | /* That's it. Discard the cleanups for data inserted into the | |
5430 | breakpoint. */ | |
5431 | discard_cleanups (breakpoint_chain); | |
5432 | /* But cleanup everything else. */ | |
c906108c | 5433 | do_cleanups (old_chain); |
c3f6f71d | 5434 | return GDB_RC_OK; |
c906108c SS |
5435 | } |
5436 | ||
c3f6f71d JM |
5437 | enum gdb_rc |
5438 | gdb_breakpoint (char *address, char *condition, | |
5439 | int hardwareflag, int tempflag, | |
ce43223b AC |
5440 | int thread, int ignore_count, |
5441 | char **error_message) | |
c3f6f71d JM |
5442 | { |
5443 | struct captured_breakpoint_args args; | |
5444 | args.address = address; | |
5445 | args.condition = condition; | |
5446 | args.hardwareflag = hardwareflag; | |
5447 | args.tempflag = tempflag; | |
5448 | args.thread = thread; | |
5449 | args.ignore_count = ignore_count; | |
ce43223b | 5450 | return catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args, |
1c3c7ee7 | 5451 | error_message, RETURN_MASK_ALL); |
c3f6f71d JM |
5452 | } |
5453 | ||
5454 | ||
c906108c SS |
5455 | /* Helper function for break_command_1 and disassemble_command. */ |
5456 | ||
5457 | void | |
fba45db2 | 5458 | resolve_sal_pc (struct symtab_and_line *sal) |
c906108c SS |
5459 | { |
5460 | CORE_ADDR pc; | |
5461 | ||
5462 | if (sal->pc == 0 && sal->symtab != NULL) | |
5463 | { | |
5464 | if (!find_line_pc (sal->symtab, sal->line, &pc)) | |
8a3fe4f8 | 5465 | error (_("No line %d in file \"%s\"."), |
c906108c SS |
5466 | sal->line, sal->symtab->filename); |
5467 | sal->pc = pc; | |
5468 | } | |
5469 | ||
5470 | if (sal->section == 0 && sal->symtab != NULL) | |
5471 | { | |
5472 | struct blockvector *bv; | |
c5aa993b JM |
5473 | struct block *b; |
5474 | struct symbol *sym; | |
5475 | int index; | |
c906108c | 5476 | |
c5aa993b | 5477 | bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab); |
c906108c SS |
5478 | if (bv != NULL) |
5479 | { | |
c5aa993b | 5480 | b = BLOCKVECTOR_BLOCK (bv, index); |
c906108c SS |
5481 | sym = block_function (b); |
5482 | if (sym != NULL) | |
5483 | { | |
5484 | fixup_symbol_section (sym, sal->symtab->objfile); | |
5485 | sal->section = SYMBOL_BFD_SECTION (sym); | |
5486 | } | |
5487 | else | |
5488 | { | |
5489 | /* It really is worthwhile to have the section, so we'll just | |
c5aa993b JM |
5490 | have to look harder. This case can be executed if we have |
5491 | line numbers but no functions (as can happen in assembly | |
5492 | source). */ | |
c906108c | 5493 | |
c5aa993b | 5494 | struct minimal_symbol *msym; |
c906108c SS |
5495 | |
5496 | msym = lookup_minimal_symbol_by_pc (sal->pc); | |
5497 | if (msym) | |
5498 | sal->section = SYMBOL_BFD_SECTION (msym); | |
5499 | } | |
5500 | } | |
5501 | } | |
5502 | } | |
5503 | ||
5504 | void | |
fba45db2 | 5505 | break_command (char *arg, int from_tty) |
c906108c | 5506 | { |
0101ce28 | 5507 | break_command_1 (arg, 0, from_tty, NULL); |
c906108c SS |
5508 | } |
5509 | ||
c906108c | 5510 | void |
fba45db2 | 5511 | tbreak_command (char *arg, int from_tty) |
c906108c | 5512 | { |
0101ce28 | 5513 | break_command_1 (arg, BP_TEMPFLAG, from_tty, NULL); |
c906108c SS |
5514 | } |
5515 | ||
c906108c | 5516 | static void |
fba45db2 | 5517 | hbreak_command (char *arg, int from_tty) |
c906108c | 5518 | { |
0101ce28 | 5519 | break_command_1 (arg, BP_HARDWAREFLAG, from_tty, NULL); |
c906108c SS |
5520 | } |
5521 | ||
5522 | static void | |
fba45db2 | 5523 | thbreak_command (char *arg, int from_tty) |
c906108c | 5524 | { |
0101ce28 | 5525 | break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty, NULL); |
c906108c SS |
5526 | } |
5527 | ||
5528 | static void | |
fba45db2 | 5529 | stop_command (char *arg, int from_tty) |
c906108c | 5530 | { |
a3f17187 | 5531 | printf_filtered (_("Specify the type of breakpoint to set.\n\ |
c906108c | 5532 | Usage: stop in <function | address>\n\ |
a3f17187 | 5533 | stop at <line>\n")); |
c906108c SS |
5534 | } |
5535 | ||
5536 | static void | |
fba45db2 | 5537 | stopin_command (char *arg, int from_tty) |
c906108c SS |
5538 | { |
5539 | int badInput = 0; | |
5540 | ||
c5aa993b | 5541 | if (arg == (char *) NULL) |
c906108c SS |
5542 | badInput = 1; |
5543 | else if (*arg != '*') | |
5544 | { | |
5545 | char *argptr = arg; | |
5546 | int hasColon = 0; | |
5547 | ||
53a5351d JM |
5548 | /* look for a ':'. If this is a line number specification, then |
5549 | say it is bad, otherwise, it should be an address or | |
5550 | function/method name */ | |
c906108c | 5551 | while (*argptr && !hasColon) |
c5aa993b JM |
5552 | { |
5553 | hasColon = (*argptr == ':'); | |
5554 | argptr++; | |
5555 | } | |
c906108c SS |
5556 | |
5557 | if (hasColon) | |
c5aa993b | 5558 | badInput = (*argptr != ':'); /* Not a class::method */ |
c906108c | 5559 | else |
c5aa993b | 5560 | badInput = isdigit (*arg); /* a simple line number */ |
c906108c SS |
5561 | } |
5562 | ||
5563 | if (badInput) | |
a3f17187 | 5564 | printf_filtered (_("Usage: stop in <function | address>\n")); |
c906108c | 5565 | else |
0101ce28 | 5566 | break_command_1 (arg, 0, from_tty, NULL); |
c906108c SS |
5567 | } |
5568 | ||
5569 | static void | |
fba45db2 | 5570 | stopat_command (char *arg, int from_tty) |
c906108c SS |
5571 | { |
5572 | int badInput = 0; | |
5573 | ||
c5aa993b | 5574 | if (arg == (char *) NULL || *arg == '*') /* no line number */ |
c906108c SS |
5575 | badInput = 1; |
5576 | else | |
5577 | { | |
5578 | char *argptr = arg; | |
5579 | int hasColon = 0; | |
5580 | ||
5581 | /* look for a ':'. If there is a '::' then get out, otherwise | |
c5aa993b | 5582 | it is probably a line number. */ |
c906108c | 5583 | while (*argptr && !hasColon) |
c5aa993b JM |
5584 | { |
5585 | hasColon = (*argptr == ':'); | |
5586 | argptr++; | |
5587 | } | |
c906108c SS |
5588 | |
5589 | if (hasColon) | |
c5aa993b | 5590 | badInput = (*argptr == ':'); /* we have class::method */ |
c906108c | 5591 | else |
c5aa993b | 5592 | badInput = !isdigit (*arg); /* not a line number */ |
c906108c SS |
5593 | } |
5594 | ||
5595 | if (badInput) | |
a3f17187 | 5596 | printf_filtered (_("Usage: stop at <line>\n")); |
c906108c | 5597 | else |
0101ce28 | 5598 | break_command_1 (arg, 0, from_tty, NULL); |
c906108c SS |
5599 | } |
5600 | ||
53a5351d JM |
5601 | /* accessflag: hw_write: watch write, |
5602 | hw_read: watch read, | |
5603 | hw_access: watch access (read or write) */ | |
c906108c | 5604 | static void |
fba45db2 | 5605 | watch_command_1 (char *arg, int accessflag, int from_tty) |
c906108c SS |
5606 | { |
5607 | struct breakpoint *b; | |
5608 | struct symtab_and_line sal; | |
5609 | struct expression *exp; | |
5610 | struct block *exp_valid_block; | |
5611 | struct value *val, *mark; | |
5612 | struct frame_info *frame; | |
5613 | struct frame_info *prev_frame = NULL; | |
5614 | char *exp_start = NULL; | |
5615 | char *exp_end = NULL; | |
5616 | char *tok, *end_tok; | |
5617 | int toklen; | |
5618 | char *cond_start = NULL; | |
5619 | char *cond_end = NULL; | |
5620 | struct expression *cond = NULL; | |
5621 | int i, other_type_used, target_resources_ok = 0; | |
5622 | enum bptype bp_type; | |
5623 | int mem_cnt = 0; | |
5624 | ||
fe39c653 | 5625 | init_sal (&sal); /* initialize to zeroes */ |
c5aa993b | 5626 | |
c906108c SS |
5627 | /* Parse arguments. */ |
5628 | innermost_block = NULL; | |
5629 | exp_start = arg; | |
5630 | exp = parse_exp_1 (&arg, 0, 0); | |
5631 | exp_end = arg; | |
5632 | exp_valid_block = innermost_block; | |
5633 | mark = value_mark (); | |
5634 | val = evaluate_expression (exp); | |
5635 | release_value (val); | |
d69fe07e | 5636 | if (value_lazy (val)) |
c906108c SS |
5637 | value_fetch_lazy (val); |
5638 | ||
5639 | tok = arg; | |
5640 | while (*tok == ' ' || *tok == '\t') | |
5641 | tok++; | |
5642 | end_tok = tok; | |
5643 | ||
5644 | while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000') | |
5645 | end_tok++; | |
5646 | ||
5647 | toklen = end_tok - tok; | |
5648 | if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) | |
5649 | { | |
5650 | tok = cond_start = end_tok + 1; | |
5651 | cond = parse_exp_1 (&tok, 0, 0); | |
5652 | cond_end = tok; | |
5653 | } | |
5654 | if (*tok) | |
8a3fe4f8 | 5655 | error (_("Junk at end of command.")); |
c906108c | 5656 | |
53a5351d | 5657 | if (accessflag == hw_read) |
c5aa993b | 5658 | bp_type = bp_read_watchpoint; |
53a5351d | 5659 | else if (accessflag == hw_access) |
c5aa993b JM |
5660 | bp_type = bp_access_watchpoint; |
5661 | else | |
5662 | bp_type = bp_hardware_watchpoint; | |
c906108c SS |
5663 | |
5664 | mem_cnt = can_use_hardware_watchpoint (val); | |
5665 | if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint) | |
8a3fe4f8 | 5666 | error (_("Expression cannot be implemented with read/access watchpoint.")); |
c5aa993b JM |
5667 | if (mem_cnt != 0) |
5668 | { | |
5669 | i = hw_watchpoint_used_count (bp_type, &other_type_used); | |
53a5351d JM |
5670 | target_resources_ok = |
5671 | TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt, | |
5672 | other_type_used); | |
c5aa993b | 5673 | if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint) |
8a3fe4f8 | 5674 | error (_("Target does not support this type of hardware watchpoint.")); |
53a5351d | 5675 | |
c5aa993b | 5676 | if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint) |
8a3fe4f8 | 5677 | error (_("Target can only support one kind of HW watchpoint at a time.")); |
c5aa993b | 5678 | } |
c906108c SS |
5679 | |
5680 | #if defined(HPUXHPPA) | |
c5aa993b | 5681 | /* On HP-UX if you set a h/w |
c906108c SS |
5682 | watchpoint before the "run" command, the inferior dies with a e.g., |
5683 | SIGILL once you start it. I initially believed this was due to a | |
5684 | bad interaction between page protection traps and the initial | |
5685 | startup sequence by the dynamic linker. | |
5686 | ||
5687 | However, I tried avoiding that by having HP-UX's implementation of | |
39f77062 | 5688 | TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid |
c906108c SS |
5689 | yet, which forced slow watches before a "run" or "attach", and it |
5690 | still fails somewhere in the startup code. | |
5691 | ||
5692 | Until I figure out what's happening, I'm disallowing watches altogether | |
5693 | before the "run" or "attach" command. We'll tell the user they must | |
5694 | set watches after getting the program started. */ | |
c5aa993b | 5695 | if (!target_has_execution) |
c906108c | 5696 | { |
8a3fe4f8 | 5697 | warning (_("can't do that without a running program; try \"break main\"), \"run\" first"); |
c906108c SS |
5698 | return; |
5699 | } | |
5700 | #endif /* HPUXHPPA */ | |
c5aa993b | 5701 | |
4d28f7a8 KB |
5702 | /* Change the type of breakpoint to an ordinary watchpoint if a hardware |
5703 | watchpoint could not be set. */ | |
5704 | if (!mem_cnt || target_resources_ok <= 0) | |
5705 | bp_type = bp_watchpoint; | |
5706 | ||
c906108c | 5707 | /* Now set up the breakpoint. */ |
4d28f7a8 | 5708 | b = set_raw_breakpoint (sal, bp_type); |
c906108c SS |
5709 | set_breakpoint_count (breakpoint_count + 1); |
5710 | b->number = breakpoint_count; | |
b5de0fa7 | 5711 | b->disposition = disp_donttouch; |
c906108c SS |
5712 | b->exp = exp; |
5713 | b->exp_valid_block = exp_valid_block; | |
5714 | b->exp_string = savestring (exp_start, exp_end - exp_start); | |
5715 | b->val = val; | |
5716 | b->cond = cond; | |
5717 | if (cond_start) | |
5718 | b->cond_string = savestring (cond_start, cond_end - cond_start); | |
5719 | else | |
5720 | b->cond_string = 0; | |
c5aa993b | 5721 | |
c906108c SS |
5722 | frame = block_innermost_frame (exp_valid_block); |
5723 | if (frame) | |
5724 | { | |
5725 | prev_frame = get_prev_frame (frame); | |
7a424e99 | 5726 | b->watchpoint_frame = get_frame_id (frame); |
c906108c SS |
5727 | } |
5728 | else | |
101dcfbe AC |
5729 | { |
5730 | memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame)); | |
5731 | } | |
c906108c | 5732 | |
c906108c SS |
5733 | /* If the expression is "local", then set up a "watchpoint scope" |
5734 | breakpoint at the point where we've left the scope of the watchpoint | |
5735 | expression. */ | |
5736 | if (innermost_block) | |
5737 | { | |
5738 | if (prev_frame) | |
5739 | { | |
5740 | struct breakpoint *scope_breakpoint; | |
e86ae29f KS |
5741 | scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame), |
5742 | bp_watchpoint_scope); | |
c906108c | 5743 | |
b5de0fa7 | 5744 | scope_breakpoint->enable_state = bp_enabled; |
c906108c SS |
5745 | |
5746 | /* Automatically delete the breakpoint when it hits. */ | |
b5de0fa7 | 5747 | scope_breakpoint->disposition = disp_del; |
c906108c SS |
5748 | |
5749 | /* Only break in the proper frame (help with recursion). */ | |
818dd999 | 5750 | scope_breakpoint->frame_id = get_frame_id (prev_frame); |
c906108c SS |
5751 | |
5752 | /* Set the address at which we will stop. */ | |
5cab636d DJ |
5753 | scope_breakpoint->loc->requested_address |
5754 | = get_frame_pc (prev_frame); | |
5755 | scope_breakpoint->loc->address | |
88f7da05 KB |
5756 | = adjust_breakpoint_address (scope_breakpoint->loc->requested_address, |
5757 | scope_breakpoint->type); | |
c906108c SS |
5758 | |
5759 | /* The scope breakpoint is related to the watchpoint. We | |
5760 | will need to act on them together. */ | |
5761 | b->related_breakpoint = scope_breakpoint; | |
5762 | } | |
5763 | } | |
5764 | value_free_to_mark (mark); | |
5765 | mention (b); | |
5766 | } | |
5767 | ||
5768 | /* Return count of locations need to be watched and can be handled | |
5769 | in hardware. If the watchpoint can not be handled | |
5770 | in hardware return zero. */ | |
5771 | ||
53a5351d JM |
5772 | #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT) |
5773 | #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \ | |
6ab3a9c9 | 5774 | (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN)) |
c906108c SS |
5775 | #endif |
5776 | ||
5777 | static int | |
fba45db2 | 5778 | can_use_hardware_watchpoint (struct value *v) |
c906108c SS |
5779 | { |
5780 | int found_memory_cnt = 0; | |
2e70b7b9 | 5781 | struct value *head = v; |
c906108c SS |
5782 | |
5783 | /* Did the user specifically forbid us to use hardware watchpoints? */ | |
c5aa993b | 5784 | if (!can_use_hw_watchpoints) |
c906108c | 5785 | return 0; |
c5aa993b | 5786 | |
5c44784c JM |
5787 | /* Make sure that the value of the expression depends only upon |
5788 | memory contents, and values computed from them within GDB. If we | |
5789 | find any register references or function calls, we can't use a | |
5790 | hardware watchpoint. | |
5791 | ||
5792 | The idea here is that evaluating an expression generates a series | |
5793 | of values, one holding the value of every subexpression. (The | |
5794 | expression a*b+c has five subexpressions: a, b, a*b, c, and | |
5795 | a*b+c.) GDB's values hold almost enough information to establish | |
5796 | the criteria given above --- they identify memory lvalues, | |
5797 | register lvalues, computed values, etcetera. So we can evaluate | |
5798 | the expression, and then scan the chain of values that leaves | |
5799 | behind to decide whether we can detect any possible change to the | |
5800 | expression's final value using only hardware watchpoints. | |
5801 | ||
5802 | However, I don't think that the values returned by inferior | |
5803 | function calls are special in any way. So this function may not | |
5804 | notice that an expression involving an inferior function call | |
5805 | can't be watched with hardware watchpoints. FIXME. */ | |
17cf0ecd | 5806 | for (; v; v = value_next (v)) |
c906108c | 5807 | { |
5c44784c | 5808 | if (VALUE_LVAL (v) == lval_memory) |
c906108c | 5809 | { |
d69fe07e | 5810 | if (value_lazy (v)) |
5c44784c JM |
5811 | /* A lazy memory lvalue is one that GDB never needed to fetch; |
5812 | we either just used its address (e.g., `a' in `a.b') or | |
5813 | we never needed it at all (e.g., `a' in `a,b'). */ | |
5814 | ; | |
53a5351d | 5815 | else |
5c44784c JM |
5816 | { |
5817 | /* Ahh, memory we actually used! Check if we can cover | |
5818 | it with hardware watchpoints. */ | |
df407dfe | 5819 | struct type *vtype = check_typedef (value_type (v)); |
2e70b7b9 MS |
5820 | |
5821 | /* We only watch structs and arrays if user asked for it | |
5822 | explicitly, never if they just happen to appear in a | |
5823 | middle of some value chain. */ | |
5824 | if (v == head | |
5825 | || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT | |
5826 | && TYPE_CODE (vtype) != TYPE_CODE_ARRAY)) | |
5827 | { | |
df407dfe AC |
5828 | CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v); |
5829 | int len = TYPE_LENGTH (value_type (v)); | |
2e70b7b9 MS |
5830 | |
5831 | if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len)) | |
5832 | return 0; | |
5833 | else | |
5834 | found_memory_cnt++; | |
5835 | } | |
5c44784c | 5836 | } |
c5aa993b | 5837 | } |
5086187c AC |
5838 | else if (VALUE_LVAL (v) != not_lval |
5839 | && deprecated_value_modifiable (v) == 0) | |
53a5351d | 5840 | return 0; /* ??? What does this represent? */ |
5086187c | 5841 | else if (VALUE_LVAL (v) == lval_register) |
53a5351d | 5842 | return 0; /* cannot watch a register with a HW watchpoint */ |
c906108c SS |
5843 | } |
5844 | ||
5845 | /* The expression itself looks suitable for using a hardware | |
5846 | watchpoint, but give the target machine a chance to reject it. */ | |
5847 | return found_memory_cnt; | |
5848 | } | |
5849 | ||
8b93c638 | 5850 | void |
fba45db2 | 5851 | watch_command_wrapper (char *arg, int from_tty) |
8b93c638 JM |
5852 | { |
5853 | watch_command (arg, from_tty); | |
5854 | } | |
8926118c | 5855 | |
c5aa993b | 5856 | static void |
fba45db2 | 5857 | watch_command (char *arg, int from_tty) |
c906108c | 5858 | { |
53a5351d | 5859 | watch_command_1 (arg, hw_write, from_tty); |
c906108c SS |
5860 | } |
5861 | ||
8b93c638 | 5862 | void |
fba45db2 | 5863 | rwatch_command_wrapper (char *arg, int from_tty) |
8b93c638 JM |
5864 | { |
5865 | rwatch_command (arg, from_tty); | |
5866 | } | |
8926118c | 5867 | |
c5aa993b | 5868 | static void |
fba45db2 | 5869 | rwatch_command (char *arg, int from_tty) |
c906108c | 5870 | { |
53a5351d | 5871 | watch_command_1 (arg, hw_read, from_tty); |
c906108c SS |
5872 | } |
5873 | ||
8b93c638 | 5874 | void |
fba45db2 | 5875 | awatch_command_wrapper (char *arg, int from_tty) |
8b93c638 JM |
5876 | { |
5877 | awatch_command (arg, from_tty); | |
5878 | } | |
8926118c | 5879 | |
c5aa993b | 5880 | static void |
fba45db2 | 5881 | awatch_command (char *arg, int from_tty) |
c906108c | 5882 | { |
53a5351d | 5883 | watch_command_1 (arg, hw_access, from_tty); |
c906108c | 5884 | } |
c906108c | 5885 | \f |
c5aa993b | 5886 | |
43ff13b4 | 5887 | /* Helper routines for the until_command routine in infcmd.c. Here |
c906108c SS |
5888 | because it uses the mechanisms of breakpoints. */ |
5889 | ||
43ff13b4 JM |
5890 | /* This function is called by fetch_inferior_event via the |
5891 | cmd_continuation pointer, to complete the until command. It takes | |
5892 | care of cleaning up the temporary breakpoints set up by the until | |
5893 | command. */ | |
c2c6d25f JM |
5894 | static void |
5895 | until_break_command_continuation (struct continuation_arg *arg) | |
43ff13b4 | 5896 | { |
0d06e24b JM |
5897 | struct cleanup *cleanups; |
5898 | ||
57e687d9 | 5899 | cleanups = (struct cleanup *) arg->data.pointer; |
0d06e24b | 5900 | do_exec_cleanups (cleanups); |
43ff13b4 JM |
5901 | } |
5902 | ||
c906108c | 5903 | void |
ae66c1fc | 5904 | until_break_command (char *arg, int from_tty, int anywhere) |
c906108c SS |
5905 | { |
5906 | struct symtabs_and_lines sals; | |
5907 | struct symtab_and_line sal; | |
6e7f8b9c | 5908 | struct frame_info *prev_frame = get_prev_frame (deprecated_selected_frame); |
c906108c SS |
5909 | struct breakpoint *breakpoint; |
5910 | struct cleanup *old_chain; | |
0d06e24b JM |
5911 | struct continuation_arg *arg1; |
5912 | ||
c906108c SS |
5913 | |
5914 | clear_proceed_status (); | |
5915 | ||
5916 | /* Set a breakpoint where the user wants it and at return from | |
5917 | this function */ | |
c5aa993b | 5918 | |
c906108c SS |
5919 | if (default_breakpoint_valid) |
5920 | sals = decode_line_1 (&arg, 1, default_breakpoint_symtab, | |
68219205 | 5921 | default_breakpoint_line, (char ***) NULL, NULL); |
c906108c | 5922 | else |
53a5351d | 5923 | sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, |
68219205 | 5924 | 0, (char ***) NULL, NULL); |
c5aa993b | 5925 | |
c906108c | 5926 | if (sals.nelts != 1) |
8a3fe4f8 | 5927 | error (_("Couldn't get information on specified line.")); |
c5aa993b | 5928 | |
c906108c | 5929 | sal = sals.sals[0]; |
b8c9b27d | 5930 | xfree (sals.sals); /* malloc'd, so freed */ |
c5aa993b | 5931 | |
c906108c | 5932 | if (*arg) |
8a3fe4f8 | 5933 | error (_("Junk at end of arguments.")); |
c5aa993b | 5934 | |
c906108c | 5935 | resolve_sal_pc (&sal); |
c5aa993b | 5936 | |
ae66c1fc EZ |
5937 | if (anywhere) |
5938 | /* If the user told us to continue until a specified location, | |
5939 | we don't specify a frame at which we need to stop. */ | |
5940 | breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until); | |
5941 | else | |
5942 | /* Otherwise, specify the current frame, because we want to stop only | |
5943 | at the very same frame. */ | |
5944 | breakpoint = set_momentary_breakpoint (sal, | |
5945 | get_frame_id (deprecated_selected_frame), | |
5946 | bp_until); | |
c5aa993b | 5947 | |
362646f5 | 5948 | if (!target_can_async_p ()) |
4d6140d9 | 5949 | old_chain = make_cleanup_delete_breakpoint (breakpoint); |
43ff13b4 | 5950 | else |
4d6140d9 | 5951 | old_chain = make_exec_cleanup_delete_breakpoint (breakpoint); |
43ff13b4 JM |
5952 | |
5953 | /* If we are running asynchronously, and the target supports async | |
5954 | execution, we are not waiting for the target to stop, in the call | |
5955 | tp proceed, below. This means that we cannot delete the | |
5956 | brekpoints until the target has actually stopped. The only place | |
5957 | where we get a chance to do that is in fetch_inferior_event, so | |
5958 | we must set things up for that. */ | |
5959 | ||
362646f5 | 5960 | if (target_can_async_p ()) |
43ff13b4 | 5961 | { |
0d06e24b JM |
5962 | /* In this case the arg for the continuation is just the point |
5963 | in the exec_cleanups chain from where to start doing | |
5964 | cleanups, because all the continuation does is the cleanups in | |
5965 | the exec_cleanup_chain. */ | |
5966 | arg1 = | |
5967 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
57e687d9 MS |
5968 | arg1->next = NULL; |
5969 | arg1->data.pointer = old_chain; | |
0d06e24b JM |
5970 | |
5971 | add_continuation (until_break_command_continuation, arg1); | |
43ff13b4 | 5972 | } |
c906108c | 5973 | |
ae66c1fc EZ |
5974 | /* Keep within the current frame, or in frames called by the current |
5975 | one. */ | |
c906108c SS |
5976 | if (prev_frame) |
5977 | { | |
30f7db39 AC |
5978 | sal = find_pc_line (get_frame_pc (prev_frame), 0); |
5979 | sal.pc = get_frame_pc (prev_frame); | |
818dd999 AC |
5980 | breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame), |
5981 | bp_until); | |
362646f5 | 5982 | if (!target_can_async_p ()) |
4d6140d9 | 5983 | make_cleanup_delete_breakpoint (breakpoint); |
43ff13b4 | 5984 | else |
4d6140d9 | 5985 | make_exec_cleanup_delete_breakpoint (breakpoint); |
c906108c | 5986 | } |
c5aa993b | 5987 | |
c906108c | 5988 | proceed (-1, TARGET_SIGNAL_DEFAULT, 0); |
43ff13b4 JM |
5989 | /* Do the cleanups now, anly if we are not running asynchronously, |
5990 | of if we are, but the target is still synchronous. */ | |
362646f5 | 5991 | if (!target_can_async_p ()) |
c5aa993b | 5992 | do_cleanups (old_chain); |
c906108c | 5993 | } |
ae66c1fc | 5994 | |
c906108c | 5995 | static void |
fba45db2 | 5996 | ep_skip_leading_whitespace (char **s) |
c906108c | 5997 | { |
c5aa993b JM |
5998 | if ((s == NULL) || (*s == NULL)) |
5999 | return; | |
6000 | while (isspace (**s)) | |
6001 | *s += 1; | |
c906108c | 6002 | } |
c5aa993b | 6003 | |
c906108c SS |
6004 | /* This function examines a string, and attempts to find a token |
6005 | that might be an event name in the leading characters. If a | |
6006 | possible match is found, a pointer to the last character of | |
6007 | the token is returned. Else, NULL is returned. */ | |
53a5351d | 6008 | |
c906108c | 6009 | static char * |
fba45db2 | 6010 | ep_find_event_name_end (char *arg) |
c906108c | 6011 | { |
c5aa993b JM |
6012 | char *s = arg; |
6013 | char *event_name_end = NULL; | |
6014 | ||
c906108c SS |
6015 | /* If we could depend upon the presense of strrpbrk, we'd use that... */ |
6016 | if (arg == NULL) | |
6017 | return NULL; | |
c5aa993b | 6018 | |
c906108c | 6019 | /* We break out of the loop when we find a token delimiter. |
c5aa993b JM |
6020 | Basically, we're looking for alphanumerics and underscores; |
6021 | anything else delimites the token. */ | |
c906108c SS |
6022 | while (*s != '\0') |
6023 | { | |
c5aa993b JM |
6024 | if (!isalnum (*s) && (*s != '_')) |
6025 | break; | |
c906108c SS |
6026 | event_name_end = s; |
6027 | s++; | |
6028 | } | |
c5aa993b | 6029 | |
c906108c SS |
6030 | return event_name_end; |
6031 | } | |
6032 | ||
c5aa993b | 6033 | |
c906108c SS |
6034 | /* This function attempts to parse an optional "if <cond>" clause |
6035 | from the arg string. If one is not found, it returns NULL. | |
c5aa993b | 6036 | |
c906108c SS |
6037 | Else, it returns a pointer to the condition string. (It does not |
6038 | attempt to evaluate the string against a particular block.) And, | |
6039 | it updates arg to point to the first character following the parsed | |
6040 | if clause in the arg string. */ | |
53a5351d | 6041 | |
c906108c | 6042 | static char * |
fba45db2 | 6043 | ep_parse_optional_if_clause (char **arg) |
c906108c | 6044 | { |
c5aa993b JM |
6045 | char *cond_string; |
6046 | ||
6047 | if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2])) | |
c906108c | 6048 | return NULL; |
c5aa993b | 6049 | |
c906108c SS |
6050 | /* Skip the "if" keyword. */ |
6051 | (*arg) += 2; | |
c5aa993b | 6052 | |
c906108c SS |
6053 | /* Skip any extra leading whitespace, and record the start of the |
6054 | condition string. */ | |
6055 | ep_skip_leading_whitespace (arg); | |
6056 | cond_string = *arg; | |
c5aa993b | 6057 | |
c906108c SS |
6058 | /* Assume that the condition occupies the remainder of the arg string. */ |
6059 | (*arg) += strlen (cond_string); | |
c5aa993b | 6060 | |
c906108c SS |
6061 | return cond_string; |
6062 | } | |
c5aa993b | 6063 | |
c906108c SS |
6064 | /* This function attempts to parse an optional filename from the arg |
6065 | string. If one is not found, it returns NULL. | |
c5aa993b | 6066 | |
c906108c SS |
6067 | Else, it returns a pointer to the parsed filename. (This function |
6068 | makes no attempt to verify that a file of that name exists, or is | |
6069 | accessible.) And, it updates arg to point to the first character | |
6070 | following the parsed filename in the arg string. | |
c5aa993b | 6071 | |
c906108c SS |
6072 | Note that clients needing to preserve the returned filename for |
6073 | future access should copy it to their own buffers. */ | |
6074 | static char * | |
fba45db2 | 6075 | ep_parse_optional_filename (char **arg) |
c906108c | 6076 | { |
c5aa993b JM |
6077 | static char filename[1024]; |
6078 | char *arg_p = *arg; | |
6079 | int i; | |
6080 | char c; | |
6081 | ||
c906108c SS |
6082 | if ((*arg_p == '\0') || isspace (*arg_p)) |
6083 | return NULL; | |
c5aa993b JM |
6084 | |
6085 | for (i = 0;; i++) | |
c906108c SS |
6086 | { |
6087 | c = *arg_p; | |
6088 | if (isspace (c)) | |
c5aa993b | 6089 | c = '\0'; |
c906108c SS |
6090 | filename[i] = c; |
6091 | if (c == '\0') | |
c5aa993b | 6092 | break; |
c906108c SS |
6093 | arg_p++; |
6094 | } | |
6095 | *arg = arg_p; | |
c5aa993b | 6096 | |
c906108c SS |
6097 | return filename; |
6098 | } | |
c5aa993b | 6099 | |
c906108c SS |
6100 | /* Commands to deal with catching events, such as signals, exceptions, |
6101 | process start/exit, etc. */ | |
c5aa993b JM |
6102 | |
6103 | typedef enum | |
6104 | { | |
6105 | catch_fork, catch_vfork | |
6106 | } | |
6107 | catch_fork_kind; | |
6108 | ||
c906108c | 6109 | static void |
fba45db2 KB |
6110 | catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag, |
6111 | int from_tty) | |
c906108c | 6112 | { |
c5aa993b JM |
6113 | char *cond_string = NULL; |
6114 | ||
c906108c | 6115 | ep_skip_leading_whitespace (&arg); |
c5aa993b | 6116 | |
c906108c | 6117 | /* The allowed syntax is: |
c5aa993b JM |
6118 | catch [v]fork |
6119 | catch [v]fork if <cond> | |
6120 | ||
c906108c SS |
6121 | First, check if there's an if clause. */ |
6122 | cond_string = ep_parse_optional_if_clause (&arg); | |
c5aa993b | 6123 | |
c906108c | 6124 | if ((*arg != '\0') && !isspace (*arg)) |
8a3fe4f8 | 6125 | error (_("Junk at end of arguments.")); |
c5aa993b | 6126 | |
c906108c SS |
6127 | /* If this target supports it, create a fork or vfork catchpoint |
6128 | and enable reporting of such events. */ | |
c5aa993b JM |
6129 | switch (fork_kind) |
6130 | { | |
6131 | case catch_fork: | |
c906108c SS |
6132 | create_fork_event_catchpoint (tempflag, cond_string); |
6133 | break; | |
c5aa993b | 6134 | case catch_vfork: |
c906108c SS |
6135 | create_vfork_event_catchpoint (tempflag, cond_string); |
6136 | break; | |
c5aa993b | 6137 | default: |
8a3fe4f8 | 6138 | error (_("unsupported or unknown fork kind; cannot catch it")); |
c906108c | 6139 | break; |
c5aa993b | 6140 | } |
c906108c SS |
6141 | } |
6142 | ||
6143 | static void | |
fba45db2 | 6144 | catch_exec_command_1 (char *arg, int tempflag, int from_tty) |
c906108c | 6145 | { |
c5aa993b | 6146 | char *cond_string = NULL; |
c906108c SS |
6147 | |
6148 | ep_skip_leading_whitespace (&arg); | |
6149 | ||
6150 | /* The allowed syntax is: | |
c5aa993b JM |
6151 | catch exec |
6152 | catch exec if <cond> | |
c906108c SS |
6153 | |
6154 | First, check if there's an if clause. */ | |
6155 | cond_string = ep_parse_optional_if_clause (&arg); | |
6156 | ||
6157 | if ((*arg != '\0') && !isspace (*arg)) | |
8a3fe4f8 | 6158 | error (_("Junk at end of arguments.")); |
c906108c SS |
6159 | |
6160 | /* If this target supports it, create an exec catchpoint | |
6161 | and enable reporting of such events. */ | |
6162 | create_exec_event_catchpoint (tempflag, cond_string); | |
6163 | } | |
c5aa993b | 6164 | |
c906108c | 6165 | static void |
fba45db2 | 6166 | catch_load_command_1 (char *arg, int tempflag, int from_tty) |
c906108c | 6167 | { |
c5aa993b JM |
6168 | char *dll_pathname = NULL; |
6169 | char *cond_string = NULL; | |
6170 | ||
c906108c | 6171 | ep_skip_leading_whitespace (&arg); |
c5aa993b | 6172 | |
c906108c | 6173 | /* The allowed syntax is: |
c5aa993b JM |
6174 | catch load |
6175 | catch load if <cond> | |
6176 | catch load <filename> | |
6177 | catch load <filename> if <cond> | |
6178 | ||
c906108c SS |
6179 | The user is not allowed to specify the <filename> after an |
6180 | if clause. | |
c5aa993b | 6181 | |
c906108c | 6182 | We'll ignore the pathological case of a file named "if". |
c5aa993b | 6183 | |
c906108c SS |
6184 | First, check if there's an if clause. If so, then there |
6185 | cannot be a filename. */ | |
6186 | cond_string = ep_parse_optional_if_clause (&arg); | |
c5aa993b | 6187 | |
c906108c SS |
6188 | /* If there was an if clause, then there cannot be a filename. |
6189 | Else, there might be a filename and an if clause. */ | |
6190 | if (cond_string == NULL) | |
6191 | { | |
6192 | dll_pathname = ep_parse_optional_filename (&arg); | |
6193 | ep_skip_leading_whitespace (&arg); | |
6194 | cond_string = ep_parse_optional_if_clause (&arg); | |
6195 | } | |
c5aa993b | 6196 | |
c906108c | 6197 | if ((*arg != '\0') && !isspace (*arg)) |
8a3fe4f8 | 6198 | error (_("Junk at end of arguments.")); |
c5aa993b | 6199 | |
c906108c SS |
6200 | /* Create a load breakpoint that only triggers when a load of |
6201 | the specified dll (or any dll, if no pathname was specified) | |
6202 | occurs. */ | |
39f77062 | 6203 | SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag, |
53a5351d | 6204 | dll_pathname, cond_string); |
c906108c | 6205 | } |
c5aa993b | 6206 | |
c906108c | 6207 | static void |
fba45db2 | 6208 | catch_unload_command_1 (char *arg, int tempflag, int from_tty) |
c906108c | 6209 | { |
c5aa993b JM |
6210 | char *dll_pathname = NULL; |
6211 | char *cond_string = NULL; | |
6212 | ||
c906108c | 6213 | ep_skip_leading_whitespace (&arg); |
c5aa993b | 6214 | |
c906108c | 6215 | /* The allowed syntax is: |
c5aa993b JM |
6216 | catch unload |
6217 | catch unload if <cond> | |
6218 | catch unload <filename> | |
6219 | catch unload <filename> if <cond> | |
6220 | ||
c906108c SS |
6221 | The user is not allowed to specify the <filename> after an |
6222 | if clause. | |
c5aa993b | 6223 | |
c906108c | 6224 | We'll ignore the pathological case of a file named "if". |
c5aa993b | 6225 | |
c906108c SS |
6226 | First, check if there's an if clause. If so, then there |
6227 | cannot be a filename. */ | |
6228 | cond_string = ep_parse_optional_if_clause (&arg); | |
c5aa993b | 6229 | |
c906108c SS |
6230 | /* If there was an if clause, then there cannot be a filename. |
6231 | Else, there might be a filename and an if clause. */ | |
6232 | if (cond_string == NULL) | |
6233 | { | |
6234 | dll_pathname = ep_parse_optional_filename (&arg); | |
6235 | ep_skip_leading_whitespace (&arg); | |
6236 | cond_string = ep_parse_optional_if_clause (&arg); | |
6237 | } | |
c5aa993b | 6238 | |
c906108c | 6239 | if ((*arg != '\0') && !isspace (*arg)) |
8a3fe4f8 | 6240 | error (_("Junk at end of arguments.")); |
c5aa993b | 6241 | |
c906108c SS |
6242 | /* Create an unload breakpoint that only triggers when an unload of |
6243 | the specified dll (or any dll, if no pathname was specified) | |
6244 | occurs. */ | |
39f77062 | 6245 | SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag, |
53a5351d | 6246 | dll_pathname, cond_string); |
c906108c | 6247 | } |
c906108c SS |
6248 | |
6249 | /* Commands to deal with catching exceptions. */ | |
6250 | ||
6251 | /* Set a breakpoint at the specified callback routine for an | |
c5aa993b | 6252 | exception event callback */ |
c906108c SS |
6253 | |
6254 | static void | |
fba45db2 KB |
6255 | create_exception_catchpoint (int tempflag, char *cond_string, |
6256 | enum exception_event_kind ex_event, | |
6257 | struct symtab_and_line *sal) | |
c906108c | 6258 | { |
c5aa993b | 6259 | struct breakpoint *b; |
c5aa993b | 6260 | int thread = -1; /* All threads. */ |
4d28f7a8 | 6261 | enum bptype bptype; |
c906108c | 6262 | |
c5aa993b | 6263 | if (!sal) /* no exception support? */ |
c906108c SS |
6264 | return; |
6265 | ||
c906108c SS |
6266 | switch (ex_event) |
6267 | { | |
c5aa993b | 6268 | case EX_EVENT_THROW: |
4d28f7a8 | 6269 | bptype = bp_catch_throw; |
c5aa993b JM |
6270 | break; |
6271 | case EX_EVENT_CATCH: | |
4d28f7a8 | 6272 | bptype = bp_catch_catch; |
c5aa993b JM |
6273 | break; |
6274 | default: /* error condition */ | |
8a3fe4f8 | 6275 | error (_("Internal error -- invalid catchpoint kind")); |
c906108c | 6276 | } |
4d28f7a8 KB |
6277 | |
6278 | b = set_raw_breakpoint (*sal, bptype); | |
6279 | set_breakpoint_count (breakpoint_count + 1); | |
6280 | b->number = breakpoint_count; | |
6281 | b->cond = NULL; | |
6282 | b->cond_string = (cond_string == NULL) ? | |
6283 | NULL : savestring (cond_string, strlen (cond_string)); | |
6284 | b->thread = thread; | |
6285 | b->addr_string = NULL; | |
b5de0fa7 EZ |
6286 | b->enable_state = bp_enabled; |
6287 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
c906108c SS |
6288 | mention (b); |
6289 | } | |
6290 | ||
3086aeae DJ |
6291 | static enum print_stop_action |
6292 | print_exception_catchpoint (struct breakpoint *b) | |
6293 | { | |
6294 | annotate_catchpoint (b->number); | |
6295 | ||
6296 | if (strstr (b->addr_string, "throw") != NULL) | |
a3f17187 | 6297 | printf_filtered (_("\nCatchpoint %d (exception thrown)\n"), |
3086aeae DJ |
6298 | b->number); |
6299 | else | |
a3f17187 | 6300 | printf_filtered (_("\nCatchpoint %d (exception caught)\n"), |
3086aeae DJ |
6301 | b->number); |
6302 | ||
6303 | return PRINT_SRC_AND_LOC; | |
6304 | } | |
6305 | ||
6306 | static void | |
6307 | print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr) | |
6308 | { | |
6309 | if (addressprint) | |
6310 | { | |
6311 | annotate_field (4); | |
5cab636d | 6312 | ui_out_field_core_addr (uiout, "addr", b->loc->address); |
3086aeae DJ |
6313 | } |
6314 | annotate_field (5); | |
5cab636d | 6315 | *last_addr = b->loc->address; |
3086aeae DJ |
6316 | if (strstr (b->addr_string, "throw") != NULL) |
6317 | ui_out_field_string (uiout, "what", "exception throw"); | |
6318 | else | |
6319 | ui_out_field_string (uiout, "what", "exception catch"); | |
6320 | } | |
6321 | ||
6322 | static void | |
6323 | print_mention_exception_catchpoint (struct breakpoint *b) | |
6324 | { | |
6325 | if (strstr (b->addr_string, "throw") != NULL) | |
a3f17187 | 6326 | printf_filtered (_("Catchpoint %d (throw)"), b->number); |
3086aeae | 6327 | else |
a3f17187 | 6328 | printf_filtered (_("Catchpoint %d (catch)"), b->number); |
3086aeae DJ |
6329 | } |
6330 | ||
6331 | static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = { | |
6332 | print_exception_catchpoint, | |
6333 | print_one_exception_catchpoint, | |
6334 | print_mention_exception_catchpoint | |
6335 | }; | |
6336 | ||
6337 | static int | |
6338 | handle_gnu_v3_exceptions (int tempflag, char *cond_string, | |
6339 | enum exception_event_kind ex_event, int from_tty) | |
6340 | { | |
6341 | char *trigger_func_name, *nameptr; | |
6342 | struct symtabs_and_lines sals; | |
6343 | struct breakpoint *b; | |
6344 | ||
6345 | if (ex_event == EX_EVENT_CATCH) | |
6346 | trigger_func_name = xstrdup ("__cxa_begin_catch"); | |
6347 | else | |
6348 | trigger_func_name = xstrdup ("__cxa_throw"); | |
6349 | ||
6350 | nameptr = trigger_func_name; | |
68219205 | 6351 | sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL); |
3086aeae DJ |
6352 | if (sals.nelts == 0) |
6353 | { | |
b59661bd | 6354 | xfree (trigger_func_name); |
3086aeae DJ |
6355 | return 0; |
6356 | } | |
6357 | ||
6358 | b = set_raw_breakpoint (sals.sals[0], bp_breakpoint); | |
6359 | set_breakpoint_count (breakpoint_count + 1); | |
6360 | b->number = breakpoint_count; | |
6361 | b->cond = NULL; | |
6362 | b->cond_string = (cond_string == NULL) ? | |
6363 | NULL : savestring (cond_string, strlen (cond_string)); | |
6364 | b->thread = -1; | |
6365 | b->addr_string = trigger_func_name; | |
6366 | b->enable_state = bp_enabled; | |
6367 | b->disposition = tempflag ? disp_del : disp_donttouch; | |
6368 | b->ops = &gnu_v3_exception_catchpoint_ops; | |
6369 | ||
b59661bd | 6370 | xfree (sals.sals); |
3086aeae DJ |
6371 | mention (b); |
6372 | return 1; | |
6373 | } | |
6374 | ||
c5aa993b | 6375 | /* Deal with "catch catch" and "catch throw" commands */ |
c906108c SS |
6376 | |
6377 | static void | |
fba45db2 KB |
6378 | catch_exception_command_1 (enum exception_event_kind ex_event, char *arg, |
6379 | int tempflag, int from_tty) | |
c906108c | 6380 | { |
c5aa993b JM |
6381 | char *cond_string = NULL; |
6382 | struct symtab_and_line *sal = NULL; | |
6383 | ||
c906108c | 6384 | ep_skip_leading_whitespace (&arg); |
c5aa993b | 6385 | |
c906108c SS |
6386 | cond_string = ep_parse_optional_if_clause (&arg); |
6387 | ||
6388 | if ((*arg != '\0') && !isspace (*arg)) | |
8a3fe4f8 | 6389 | error (_("Junk at end of arguments.")); |
c906108c SS |
6390 | |
6391 | if ((ex_event != EX_EVENT_THROW) && | |
6392 | (ex_event != EX_EVENT_CATCH)) | |
8a3fe4f8 | 6393 | error (_("Unsupported or unknown exception event; cannot catch it")); |
c906108c | 6394 | |
3086aeae DJ |
6395 | if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty)) |
6396 | return; | |
6397 | ||
c906108c SS |
6398 | /* See if we can find a callback routine */ |
6399 | sal = target_enable_exception_callback (ex_event, 1); | |
6400 | ||
c5aa993b | 6401 | if (sal) |
c906108c SS |
6402 | { |
6403 | /* We have callbacks from the runtime system for exceptions. | |
c5aa993b | 6404 | Set a breakpoint on the sal found, if no errors */ |
c906108c | 6405 | if (sal != (struct symtab_and_line *) -1) |
c5aa993b | 6406 | create_exception_catchpoint (tempflag, cond_string, ex_event, sal); |
c906108c | 6407 | else |
53a5351d | 6408 | return; /* something went wrong with setting up callbacks */ |
c906108c | 6409 | } |
c5aa993b | 6410 | |
8a3fe4f8 | 6411 | warning (_("Unsupported with this platform/compiler combination.")); |
c906108c SS |
6412 | } |
6413 | ||
6414 | /* Cover routine to allow wrapping target_enable_exception_catchpoints | |
6415 | inside a catch_errors */ | |
6416 | ||
6417 | static int | |
4efb68b1 | 6418 | cover_target_enable_exception_callback (void *arg) |
c906108c SS |
6419 | { |
6420 | args_for_catchpoint_enable *args = arg; | |
6421 | struct symtab_and_line *sal; | |
b5de0fa7 | 6422 | sal = target_enable_exception_callback (args->kind, args->enable_p); |
c906108c SS |
6423 | if (sal == NULL) |
6424 | return 0; | |
6425 | else if (sal == (struct symtab_and_line *) -1) | |
6426 | return -1; | |
6427 | else | |
c5aa993b | 6428 | return 1; /*is valid */ |
c906108c SS |
6429 | } |
6430 | ||
c906108c | 6431 | static void |
fba45db2 | 6432 | catch_command_1 (char *arg, int tempflag, int from_tty) |
c906108c | 6433 | { |
c5aa993b | 6434 | |
c906108c SS |
6435 | /* The first argument may be an event name, such as "start" or "load". |
6436 | If so, then handle it as such. If it doesn't match an event name, | |
6437 | then attempt to interpret it as an exception name. (This latter is | |
6438 | the v4.16-and-earlier GDB meaning of the "catch" command.) | |
c5aa993b | 6439 | |
c906108c | 6440 | First, try to find the bounds of what might be an event name. */ |
c5aa993b JM |
6441 | char *arg1_start = arg; |
6442 | char *arg1_end; | |
6443 | int arg1_length; | |
6444 | ||
c906108c SS |
6445 | if (arg1_start == NULL) |
6446 | { | |
c5aa993b | 6447 | /* Old behaviour was to use pre-v-4.16 syntax */ |
c906108c SS |
6448 | /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */ |
6449 | /* return; */ | |
c5aa993b | 6450 | /* Now, this is not allowed */ |
8a3fe4f8 | 6451 | error (_("Catch requires an event name.")); |
c906108c SS |
6452 | |
6453 | } | |
6454 | arg1_end = ep_find_event_name_end (arg1_start); | |
6455 | if (arg1_end == NULL) | |
8a3fe4f8 | 6456 | error (_("catch requires an event")); |
c906108c | 6457 | arg1_length = arg1_end + 1 - arg1_start; |
c5aa993b | 6458 | |
c906108c SS |
6459 | /* Try to match what we found against known event names. */ |
6460 | if (strncmp (arg1_start, "signal", arg1_length) == 0) | |
6461 | { | |
8a3fe4f8 | 6462 | error (_("Catch of signal not yet implemented")); |
c906108c SS |
6463 | } |
6464 | else if (strncmp (arg1_start, "catch", arg1_length) == 0) | |
6465 | { | |
53a5351d JM |
6466 | catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1, |
6467 | tempflag, from_tty); | |
c906108c SS |
6468 | } |
6469 | else if (strncmp (arg1_start, "throw", arg1_length) == 0) | |
6470 | { | |
53a5351d JM |
6471 | catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1, |
6472 | tempflag, from_tty); | |
c906108c SS |
6473 | } |
6474 | else if (strncmp (arg1_start, "thread_start", arg1_length) == 0) | |
6475 | { | |
8a3fe4f8 | 6476 | error (_("Catch of thread_start not yet implemented")); |
c906108c SS |
6477 | } |
6478 | else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0) | |
6479 | { | |
8a3fe4f8 | 6480 | error (_("Catch of thread_exit not yet implemented")); |
c906108c SS |
6481 | } |
6482 | else if (strncmp (arg1_start, "thread_join", arg1_length) == 0) | |
6483 | { | |
8a3fe4f8 | 6484 | error (_("Catch of thread_join not yet implemented")); |
c906108c SS |
6485 | } |
6486 | else if (strncmp (arg1_start, "start", arg1_length) == 0) | |
6487 | { | |
8a3fe4f8 | 6488 | error (_("Catch of start not yet implemented")); |
c906108c SS |
6489 | } |
6490 | else if (strncmp (arg1_start, "exit", arg1_length) == 0) | |
6491 | { | |
8a3fe4f8 | 6492 | error (_("Catch of exit not yet implemented")); |
c906108c SS |
6493 | } |
6494 | else if (strncmp (arg1_start, "fork", arg1_length) == 0) | |
6495 | { | |
c5aa993b | 6496 | catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty); |
c906108c SS |
6497 | } |
6498 | else if (strncmp (arg1_start, "vfork", arg1_length) == 0) | |
6499 | { | |
c5aa993b | 6500 | catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty); |
c906108c SS |
6501 | } |
6502 | else if (strncmp (arg1_start, "exec", arg1_length) == 0) | |
6503 | { | |
c5aa993b | 6504 | catch_exec_command_1 (arg1_end + 1, tempflag, from_tty); |
c906108c SS |
6505 | } |
6506 | else if (strncmp (arg1_start, "load", arg1_length) == 0) | |
6507 | { | |
c5aa993b | 6508 | catch_load_command_1 (arg1_end + 1, tempflag, from_tty); |
c906108c SS |
6509 | } |
6510 | else if (strncmp (arg1_start, "unload", arg1_length) == 0) | |
6511 | { | |
c5aa993b | 6512 | catch_unload_command_1 (arg1_end + 1, tempflag, from_tty); |
c906108c SS |
6513 | } |
6514 | else if (strncmp (arg1_start, "stop", arg1_length) == 0) | |
6515 | { | |
8a3fe4f8 | 6516 | error (_("Catch of stop not yet implemented")); |
c906108c | 6517 | } |
c5aa993b | 6518 | |
c906108c SS |
6519 | /* This doesn't appear to be an event name */ |
6520 | ||
6521 | else | |
6522 | { | |
6523 | /* Pre-v.4.16 behaviour was to treat the argument | |
c5aa993b | 6524 | as the name of an exception */ |
c906108c | 6525 | /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */ |
c5aa993b | 6526 | /* Now this is not allowed */ |
8a3fe4f8 | 6527 | error (_("Unknown event kind specified for catch")); |
c906108c SS |
6528 | |
6529 | } | |
6530 | } | |
6531 | ||
6532 | /* Used by the gui, could be made a worker for other things. */ | |
6533 | ||
6534 | struct breakpoint * | |
fba45db2 | 6535 | set_breakpoint_sal (struct symtab_and_line sal) |
c906108c SS |
6536 | { |
6537 | struct breakpoint *b; | |
4d28f7a8 | 6538 | b = set_raw_breakpoint (sal, bp_breakpoint); |
c906108c SS |
6539 | set_breakpoint_count (breakpoint_count + 1); |
6540 | b->number = breakpoint_count; | |
c906108c SS |
6541 | b->cond = 0; |
6542 | b->thread = -1; | |
6543 | return b; | |
6544 | } | |
6545 | ||
c906108c | 6546 | static void |
fba45db2 | 6547 | catch_command (char *arg, int from_tty) |
c906108c SS |
6548 | { |
6549 | catch_command_1 (arg, 0, from_tty); | |
6550 | } | |
6551 | \f | |
6552 | ||
6553 | static void | |
fba45db2 | 6554 | tcatch_command (char *arg, int from_tty) |
c906108c SS |
6555 | { |
6556 | catch_command_1 (arg, 1, from_tty); | |
6557 | } | |
6558 | ||
80f8a6eb | 6559 | /* Delete breakpoints by address or line. */ |
c906108c SS |
6560 | |
6561 | static void | |
fba45db2 | 6562 | clear_command (char *arg, int from_tty) |
c906108c | 6563 | { |
80f8a6eb | 6564 | struct breakpoint *b, *tmp, *prev, *found; |
c906108c SS |
6565 | int default_match; |
6566 | struct symtabs_and_lines sals; | |
6567 | struct symtab_and_line sal; | |
c906108c SS |
6568 | int i; |
6569 | ||
6570 | if (arg) | |
6571 | { | |
6572 | sals = decode_line_spec (arg, 1); | |
6573 | default_match = 0; | |
6574 | } | |
6575 | else | |
6576 | { | |
c5aa993b | 6577 | sals.sals = (struct symtab_and_line *) |
c906108c | 6578 | xmalloc (sizeof (struct symtab_and_line)); |
80f8a6eb | 6579 | make_cleanup (xfree, sals.sals); |
fe39c653 | 6580 | init_sal (&sal); /* initialize to zeroes */ |
c906108c SS |
6581 | sal.line = default_breakpoint_line; |
6582 | sal.symtab = default_breakpoint_symtab; | |
6583 | sal.pc = default_breakpoint_address; | |
6584 | if (sal.symtab == 0) | |
8a3fe4f8 | 6585 | error (_("No source file specified.")); |
c906108c SS |
6586 | |
6587 | sals.sals[0] = sal; | |
6588 | sals.nelts = 1; | |
6589 | ||
6590 | default_match = 1; | |
6591 | } | |
6592 | ||
6593 | /* For each line spec given, delete bps which correspond | |
80f8a6eb MS |
6594 | to it. Do it in two passes, solely to preserve the current |
6595 | behavior that from_tty is forced true if we delete more than | |
6596 | one breakpoint. */ | |
c906108c | 6597 | |
80f8a6eb | 6598 | found = NULL; |
c906108c SS |
6599 | for (i = 0; i < sals.nelts; i++) |
6600 | { | |
6601 | /* If exact pc given, clear bpts at that pc. | |
c5aa993b JM |
6602 | If line given (pc == 0), clear all bpts on specified line. |
6603 | If defaulting, clear all bpts on default line | |
c906108c | 6604 | or at default pc. |
c5aa993b JM |
6605 | |
6606 | defaulting sal.pc != 0 tests to do | |
6607 | ||
6608 | 0 1 pc | |
6609 | 1 1 pc _and_ line | |
6610 | 0 0 line | |
6611 | 1 0 <can't happen> */ | |
c906108c SS |
6612 | |
6613 | sal = sals.sals[i]; | |
80f8a6eb | 6614 | prev = NULL; |
c906108c | 6615 | |
80f8a6eb MS |
6616 | /* Find all matching breakpoints, remove them from the |
6617 | breakpoint chain, and add them to the 'found' chain. */ | |
6618 | ALL_BREAKPOINTS_SAFE (b, tmp) | |
c5aa993b | 6619 | { |
80f8a6eb MS |
6620 | /* Are we going to delete b? */ |
6621 | if (b->type != bp_none | |
6622 | && b->type != bp_watchpoint | |
6623 | && b->type != bp_hardware_watchpoint | |
6624 | && b->type != bp_read_watchpoint | |
6625 | && b->type != bp_access_watchpoint | |
6626 | /* Not if b is a watchpoint of any sort... */ | |
5cab636d | 6627 | && (((sal.pc && (b->loc->address == sal.pc)) |
cf3a9e5b DJ |
6628 | && (!section_is_overlay (b->loc->section) |
6629 | || b->loc->section == sal.section)) | |
80f8a6eb MS |
6630 | /* Yes, if sal.pc matches b (modulo overlays). */ |
6631 | || ((default_match || (0 == sal.pc)) | |
6632 | && b->source_file != NULL | |
6633 | && sal.symtab != NULL | |
6314a349 | 6634 | && strcmp (b->source_file, sal.symtab->filename) == 0 |
80f8a6eb MS |
6635 | && b->line_number == sal.line))) |
6636 | /* Yes, if sal source file and line matches b. */ | |
6637 | { | |
6638 | /* Remove it from breakpoint_chain... */ | |
6639 | if (b == breakpoint_chain) | |
6640 | { | |
6641 | /* b is at the head of the list */ | |
6642 | breakpoint_chain = b->next; | |
6643 | } | |
6644 | else | |
6645 | { | |
6646 | prev->next = b->next; | |
6647 | } | |
6648 | /* And add it to 'found' chain. */ | |
6649 | b->next = found; | |
6650 | found = b; | |
6651 | } | |
c906108c | 6652 | else |
80f8a6eb MS |
6653 | { |
6654 | /* Keep b, and keep a pointer to it. */ | |
6655 | prev = b; | |
6656 | } | |
c906108c | 6657 | } |
80f8a6eb MS |
6658 | } |
6659 | /* Now go thru the 'found' chain and delete them. */ | |
6660 | if (found == 0) | |
6661 | { | |
6662 | if (arg) | |
8a3fe4f8 | 6663 | error (_("No breakpoint at %s."), arg); |
80f8a6eb | 6664 | else |
8a3fe4f8 | 6665 | error (_("No breakpoint at this line.")); |
80f8a6eb | 6666 | } |
c906108c | 6667 | |
80f8a6eb MS |
6668 | if (found->next) |
6669 | from_tty = 1; /* Always report if deleted more than one */ | |
6670 | if (from_tty) | |
a3f17187 AC |
6671 | { |
6672 | if (!found->next) | |
6673 | printf_unfiltered (_("Deleted breakpoint ")); | |
6674 | else | |
6675 | printf_unfiltered (_("Deleted breakpoints ")); | |
6676 | } | |
80f8a6eb MS |
6677 | breakpoints_changed (); |
6678 | while (found) | |
6679 | { | |
c5aa993b | 6680 | if (from_tty) |
80f8a6eb MS |
6681 | printf_unfiltered ("%d ", found->number); |
6682 | tmp = found->next; | |
6683 | delete_breakpoint (found); | |
6684 | found = tmp; | |
c906108c | 6685 | } |
80f8a6eb MS |
6686 | if (from_tty) |
6687 | putchar_unfiltered ('\n'); | |
c906108c SS |
6688 | } |
6689 | \f | |
6690 | /* Delete breakpoint in BS if they are `delete' breakpoints and | |
6691 | all breakpoints that are marked for deletion, whether hit or not. | |
6692 | This is called after any breakpoint is hit, or after errors. */ | |
6693 | ||
6694 | void | |
fba45db2 | 6695 | breakpoint_auto_delete (bpstat bs) |
c906108c SS |
6696 | { |
6697 | struct breakpoint *b, *temp; | |
6698 | ||
6699 | for (; bs; bs = bs->next) | |
b5de0fa7 | 6700 | if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del |
c906108c SS |
6701 | && bs->stop) |
6702 | delete_breakpoint (bs->breakpoint_at); | |
6703 | ||
6704 | ALL_BREAKPOINTS_SAFE (b, temp) | |
c5aa993b | 6705 | { |
b5de0fa7 | 6706 | if (b->disposition == disp_del_at_next_stop) |
c5aa993b JM |
6707 | delete_breakpoint (b); |
6708 | } | |
c906108c SS |
6709 | } |
6710 | ||
53a5351d JM |
6711 | /* Delete a breakpoint and clean up all traces of it in the data |
6712 | structures. */ | |
c906108c SS |
6713 | |
6714 | void | |
fba45db2 | 6715 | delete_breakpoint (struct breakpoint *bpt) |
c906108c | 6716 | { |
52f0bd74 AC |
6717 | struct breakpoint *b; |
6718 | bpstat bs; | |
7cc221ef | 6719 | struct bp_location *loc; |
c906108c | 6720 | |
8a3fe4f8 | 6721 | gdb_assert (bpt != NULL); |
c906108c SS |
6722 | |
6723 | /* Has this bp already been deleted? This can happen because multiple | |
6724 | lists can hold pointers to bp's. bpstat lists are especial culprits. | |
6725 | ||
6726 | One example of this happening is a watchpoint's scope bp. When the | |
6727 | scope bp triggers, we notice that the watchpoint is out of scope, and | |
6728 | delete it. We also delete its scope bp. But the scope bp is marked | |
6729 | "auto-deleting", and is already on a bpstat. That bpstat is then | |
6730 | checked for auto-deleting bp's, which are deleted. | |
6731 | ||
6732 | A real solution to this problem might involve reference counts in bp's, | |
6733 | and/or giving them pointers back to their referencing bpstat's, and | |
6734 | teaching delete_breakpoint to only free a bp's storage when no more | |
1272ad14 | 6735 | references were extent. A cheaper bandaid was chosen. */ |
c906108c SS |
6736 | if (bpt->type == bp_none) |
6737 | return; | |
6738 | ||
9a4105ab AC |
6739 | if (deprecated_delete_breakpoint_hook) |
6740 | deprecated_delete_breakpoint_hook (bpt); | |
104c1213 | 6741 | breakpoint_delete_event (bpt->number); |
c906108c | 6742 | |
5cab636d | 6743 | if (bpt->loc->inserted) |
0bde7532 | 6744 | remove_breakpoint (bpt->loc, mark_inserted); |
c5aa993b | 6745 | |
7270d8f2 OF |
6746 | free_valchain (bpt->loc); |
6747 | ||
c906108c SS |
6748 | if (breakpoint_chain == bpt) |
6749 | breakpoint_chain = bpt->next; | |
6750 | ||
7cc221ef DJ |
6751 | if (bp_location_chain == bpt->loc) |
6752 | bp_location_chain = bpt->loc->next; | |
6753 | ||
c906108c SS |
6754 | /* If we have callback-style exception catchpoints, don't go through |
6755 | the adjustments to the C++ runtime library etc. if the inferior | |
6756 | isn't actually running. target_enable_exception_callback for a | |
6757 | null target ops vector gives an undesirable error message, so we | |
6758 | check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's | |
1272ad14 | 6759 | exceptions are supported in this way, it's OK for now. FIXME */ |
c906108c SS |
6760 | if (ep_is_exception_catchpoint (bpt) && target_has_execution) |
6761 | { | |
53a5351d | 6762 | /* Format possible error msg */ |
9ebf4acf AC |
6763 | char *message = xstrprintf ("Error in deleting catchpoint %d:\n", |
6764 | bpt->number); | |
6765 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
6766 | args_for_catchpoint_enable args; | |
53a5351d JM |
6767 | args.kind = bpt->type == bp_catch_catch ? |
6768 | EX_EVENT_CATCH : EX_EVENT_THROW; | |
b5de0fa7 | 6769 | args.enable_p = 0; |
c906108c SS |
6770 | catch_errors (cover_target_enable_exception_callback, &args, |
6771 | message, RETURN_MASK_ALL); | |
9ebf4acf | 6772 | do_cleanups (cleanups); |
c906108c SS |
6773 | } |
6774 | ||
6775 | ||
6776 | ALL_BREAKPOINTS (b) | |
6777 | if (b->next == bpt) | |
c5aa993b JM |
6778 | { |
6779 | b->next = bpt->next; | |
6780 | break; | |
6781 | } | |
c906108c | 6782 | |
7cc221ef DJ |
6783 | ALL_BP_LOCATIONS (loc) |
6784 | if (loc->next == bpt->loc) | |
6785 | { | |
6786 | loc->next = bpt->loc->next; | |
6787 | break; | |
6788 | } | |
6789 | ||
9f60f21b | 6790 | check_duplicates (bpt); |
c906108c SS |
6791 | /* If this breakpoint was inserted, and there is another breakpoint |
6792 | at the same address, we need to insert the other breakpoint. */ | |
5cab636d | 6793 | if (bpt->loc->inserted |
c906108c SS |
6794 | && bpt->type != bp_hardware_watchpoint |
6795 | && bpt->type != bp_read_watchpoint | |
6796 | && bpt->type != bp_access_watchpoint | |
6797 | && bpt->type != bp_catch_fork | |
6798 | && bpt->type != bp_catch_vfork | |
6799 | && bpt->type != bp_catch_exec) | |
6800 | { | |
6801 | ALL_BREAKPOINTS (b) | |
5cab636d | 6802 | if (b->loc->address == bpt->loc->address |
cf3a9e5b | 6803 | && b->loc->section == bpt->loc->section |
5cab636d | 6804 | && !b->loc->duplicate |
b5de0fa7 EZ |
6805 | && b->enable_state != bp_disabled |
6806 | && b->enable_state != bp_shlib_disabled | |
0101ce28 | 6807 | && !b->pending |
b5de0fa7 | 6808 | && b->enable_state != bp_call_disabled) |
c5aa993b JM |
6809 | { |
6810 | int val; | |
53a5351d | 6811 | |
c2c6d25f JM |
6812 | /* We should never reach this point if there is a permanent |
6813 | breakpoint at the same address as the one being deleted. | |
6814 | If there is a permanent breakpoint somewhere, it should | |
6815 | always be the only one inserted. */ | |
b5de0fa7 | 6816 | if (b->enable_state == bp_permanent) |
8e65ff28 | 6817 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 AC |
6818 | _("another breakpoint was inserted on top of " |
6819 | "a permanent breakpoint")); | |
c2c6d25f | 6820 | |
53a5351d | 6821 | if (b->type == bp_hardware_breakpoint) |
5cab636d | 6822 | val = target_insert_hw_breakpoint (b->loc->address, b->loc->shadow_contents); |
53a5351d | 6823 | else |
5cab636d | 6824 | val = target_insert_breakpoint (b->loc->address, b->loc->shadow_contents); |
53a5351d | 6825 | |
81d0cc19 | 6826 | /* If there was an error in the insert, print a message, then stop execution. */ |
c5aa993b JM |
6827 | if (val != 0) |
6828 | { | |
81d0cc19 GS |
6829 | struct ui_file *tmp_error_stream = mem_fileopen (); |
6830 | make_cleanup_ui_file_delete (tmp_error_stream); | |
6831 | ||
6832 | ||
6833 | if (b->type == bp_hardware_breakpoint) | |
6834 | { | |
6835 | fprintf_unfiltered (tmp_error_stream, | |
6836 | "Cannot insert hardware breakpoint %d.\n" | |
6837 | "You may have requested too many hardware breakpoints.\n", | |
6838 | b->number); | |
6839 | } | |
6840 | else | |
6841 | { | |
6842 | fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number); | |
6843 | fprintf_filtered (tmp_error_stream, "Error accessing memory address "); | |
66bf4b3a | 6844 | deprecated_print_address_numeric (b->loc->address, 1, tmp_error_stream); |
81d0cc19 GS |
6845 | fprintf_filtered (tmp_error_stream, ": %s.\n", |
6846 | safe_strerror (val)); | |
6847 | } | |
6848 | ||
6849 | fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process."); | |
c5aa993b | 6850 | target_terminal_ours_for_output (); |
81d0cc19 | 6851 | error_stream(tmp_error_stream); |
c5aa993b JM |
6852 | } |
6853 | else | |
5cab636d | 6854 | b->loc->inserted = 1; |
c5aa993b | 6855 | } |
c906108c SS |
6856 | } |
6857 | ||
6858 | free_command_lines (&bpt->commands); | |
6859 | if (bpt->cond) | |
b8c9b27d | 6860 | xfree (bpt->cond); |
c906108c | 6861 | if (bpt->cond_string != NULL) |
b8c9b27d | 6862 | xfree (bpt->cond_string); |
c906108c | 6863 | if (bpt->addr_string != NULL) |
b8c9b27d | 6864 | xfree (bpt->addr_string); |
c906108c | 6865 | if (bpt->exp != NULL) |
b8c9b27d | 6866 | xfree (bpt->exp); |
c906108c | 6867 | if (bpt->exp_string != NULL) |
b8c9b27d | 6868 | xfree (bpt->exp_string); |
c906108c SS |
6869 | if (bpt->val != NULL) |
6870 | value_free (bpt->val); | |
6871 | if (bpt->source_file != NULL) | |
b8c9b27d | 6872 | xfree (bpt->source_file); |
c906108c | 6873 | if (bpt->dll_pathname != NULL) |
b8c9b27d | 6874 | xfree (bpt->dll_pathname); |
c906108c | 6875 | if (bpt->triggered_dll_pathname != NULL) |
b8c9b27d | 6876 | xfree (bpt->triggered_dll_pathname); |
c906108c | 6877 | if (bpt->exec_pathname != NULL) |
b8c9b27d | 6878 | xfree (bpt->exec_pathname); |
c906108c SS |
6879 | |
6880 | /* Be sure no bpstat's are pointing at it after it's been freed. */ | |
6881 | /* FIXME, how can we find all bpstat's? | |
6882 | We just check stop_bpstat for now. */ | |
6883 | for (bs = stop_bpstat; bs; bs = bs->next) | |
6884 | if (bs->breakpoint_at == bpt) | |
6885 | { | |
6886 | bs->breakpoint_at = NULL; | |
c906108c | 6887 | bs->old_val = NULL; |
c2b8ed2c | 6888 | /* bs->commands will be freed later. */ |
c906108c SS |
6889 | } |
6890 | /* On the chance that someone will soon try again to delete this same | |
6891 | bp, we mark it as deleted before freeing its storage. */ | |
6892 | bpt->type = bp_none; | |
6893 | ||
5cab636d | 6894 | xfree (bpt->loc); |
b8c9b27d | 6895 | xfree (bpt); |
c906108c SS |
6896 | } |
6897 | ||
4d6140d9 AC |
6898 | static void |
6899 | do_delete_breakpoint_cleanup (void *b) | |
6900 | { | |
6901 | delete_breakpoint (b); | |
6902 | } | |
6903 | ||
6904 | struct cleanup * | |
6905 | make_cleanup_delete_breakpoint (struct breakpoint *b) | |
6906 | { | |
6907 | return make_cleanup (do_delete_breakpoint_cleanup, b); | |
6908 | } | |
6909 | ||
6910 | struct cleanup * | |
6911 | make_exec_cleanup_delete_breakpoint (struct breakpoint *b) | |
6912 | { | |
6913 | return make_exec_cleanup (do_delete_breakpoint_cleanup, b); | |
6914 | } | |
6915 | ||
c906108c | 6916 | void |
fba45db2 | 6917 | delete_command (char *arg, int from_tty) |
c906108c SS |
6918 | { |
6919 | struct breakpoint *b, *temp; | |
6920 | ||
ea9365bb TT |
6921 | dont_repeat (); |
6922 | ||
c906108c SS |
6923 | if (arg == 0) |
6924 | { | |
6925 | int breaks_to_delete = 0; | |
6926 | ||
6927 | /* Delete all breakpoints if no argument. | |
c5aa993b JM |
6928 | Do not delete internal or call-dummy breakpoints, these |
6929 | have to be deleted with an explicit breakpoint number argument. */ | |
6930 | ALL_BREAKPOINTS (b) | |
6931 | { | |
6932 | if (b->type != bp_call_dummy && | |
6933 | b->type != bp_shlib_event && | |
c4093a6a | 6934 | b->type != bp_thread_event && |
1900040c | 6935 | b->type != bp_overlay_event && |
c5aa993b JM |
6936 | b->number >= 0) |
6937 | breaks_to_delete = 1; | |
6938 | } | |
c906108c SS |
6939 | |
6940 | /* Ask user only if there are some breakpoints to delete. */ | |
6941 | if (!from_tty | |
e2e0b3e5 | 6942 | || (breaks_to_delete && query (_("Delete all breakpoints? ")))) |
c906108c | 6943 | { |
c5aa993b JM |
6944 | ALL_BREAKPOINTS_SAFE (b, temp) |
6945 | { | |
6946 | if (b->type != bp_call_dummy && | |
6947 | b->type != bp_shlib_event && | |
c4093a6a | 6948 | b->type != bp_thread_event && |
1900040c | 6949 | b->type != bp_overlay_event && |
c5aa993b JM |
6950 | b->number >= 0) |
6951 | delete_breakpoint (b); | |
6952 | } | |
c906108c SS |
6953 | } |
6954 | } | |
6955 | else | |
6956 | map_breakpoint_numbers (arg, delete_breakpoint); | |
6957 | } | |
6958 | ||
6959 | /* Reset a breakpoint given it's struct breakpoint * BINT. | |
6960 | The value we return ends up being the return value from catch_errors. | |
6961 | Unused in this case. */ | |
6962 | ||
6963 | static int | |
4efb68b1 | 6964 | breakpoint_re_set_one (void *bint) |
c906108c | 6965 | { |
53a5351d JM |
6966 | /* get past catch_errs */ |
6967 | struct breakpoint *b = (struct breakpoint *) bint; | |
c906108c SS |
6968 | struct value *mark; |
6969 | int i; | |
84acb35a JJ |
6970 | int not_found; |
6971 | int *not_found_ptr = NULL; | |
c906108c SS |
6972 | struct symtabs_and_lines sals; |
6973 | char *s; | |
b5de0fa7 | 6974 | enum enable_state save_enable; |
c906108c SS |
6975 | |
6976 | switch (b->type) | |
6977 | { | |
6978 | case bp_none: | |
8a3fe4f8 | 6979 | warning (_("attempted to reset apparently deleted breakpoint #%d?"), |
53a5351d | 6980 | b->number); |
c906108c SS |
6981 | return 0; |
6982 | case bp_breakpoint: | |
6983 | case bp_hardware_breakpoint: | |
6984 | case bp_catch_load: | |
6985 | case bp_catch_unload: | |
6986 | if (b->addr_string == NULL) | |
6987 | { | |
6988 | /* Anything without a string can't be re-set. */ | |
6989 | delete_breakpoint (b); | |
6990 | return 0; | |
6991 | } | |
b18c45ed AC |
6992 | /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote: |
6993 | ||
6994 | ``And a hack it is, although Apple's Darwin version of GDB | |
6995 | contains an almost identical hack to implement a "future | |
6996 | break" command. It seems to work in many real world cases, | |
6997 | but it is easy to come up with a test case where the patch | |
6998 | doesn't help at all.'' | |
6999 | ||
7000 | ``It seems that the way GDB implements breakpoints - in - | |
7001 | shared - libraries was designed for a.out shared library | |
7002 | systems (SunOS 4) where shared libraries were loaded at a | |
7003 | fixed address in memory. Since ELF shared libraries can (and | |
7004 | will) be loaded at any address in memory, things break. | |
7005 | Fixing this is not trivial. Therefore, I'm not sure whether | |
7006 | we should add this hack to the branch only. I cannot | |
7007 | guarantee that things will be fixed on the trunk in the near | |
7008 | future.'' | |
7009 | ||
7010 | In case we have a problem, disable this breakpoint. We'll | |
7011 | restore its status if we succeed. Don't disable a | |
7012 | shlib_disabled breakpoint though. There's a fair chance we | |
7013 | can't re-set it if the shared library it's in hasn't been | |
7014 | loaded yet. */ | |
0101ce28 JJ |
7015 | |
7016 | if (b->pending) | |
7017 | break; | |
7018 | ||
b5de0fa7 | 7019 | save_enable = b->enable_state; |
b18c45ed AC |
7020 | if (b->enable_state != bp_shlib_disabled) |
7021 | b->enable_state = bp_disabled; | |
84acb35a JJ |
7022 | else |
7023 | /* If resetting a shlib-disabled breakpoint, we don't want to | |
7024 | see an error message if it is not found since we will expect | |
7025 | this to occur until the shared library is finally reloaded. | |
7026 | We accomplish this by giving decode_line_1 a pointer to use | |
7027 | for silent notification that the symbol is not found. */ | |
7028 | not_found_ptr = ¬_found; | |
c906108c SS |
7029 | |
7030 | set_language (b->language); | |
7031 | input_radix = b->input_radix; | |
7032 | s = b->addr_string; | |
84acb35a JJ |
7033 | sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL, |
7034 | not_found_ptr); | |
c906108c SS |
7035 | for (i = 0; i < sals.nelts; i++) |
7036 | { | |
7037 | resolve_sal_pc (&sals.sals[i]); | |
7038 | ||
7039 | /* Reparse conditions, they might contain references to the | |
7040 | old symtab. */ | |
7041 | if (b->cond_string != NULL) | |
7042 | { | |
7043 | s = b->cond_string; | |
7044 | if (b->cond) | |
fad0733a DJ |
7045 | { |
7046 | xfree (b->cond); | |
7047 | /* Avoid re-freeing b->exp if an error during the call | |
7048 | to parse_exp_1. */ | |
7049 | b->cond = NULL; | |
7050 | } | |
c906108c SS |
7051 | b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0); |
7052 | } | |
7053 | ||
c5aa993b | 7054 | /* We need to re-set the breakpoint if the address changes... */ |
5cab636d | 7055 | if (b->loc->address != sals.sals[i].pc |
c5aa993b JM |
7056 | /* ...or new and old breakpoints both have source files, and |
7057 | the source file name or the line number changes... */ | |
c906108c SS |
7058 | || (b->source_file != NULL |
7059 | && sals.sals[i].symtab != NULL | |
6314a349 | 7060 | && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0 |
c906108c | 7061 | || b->line_number != sals.sals[i].line) |
c906108c | 7062 | ) |
c5aa993b JM |
7063 | /* ...or we switch between having a source file and not having |
7064 | one. */ | |
7065 | || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL)) | |
7066 | ) | |
c906108c SS |
7067 | { |
7068 | if (b->source_file != NULL) | |
b8c9b27d | 7069 | xfree (b->source_file); |
c906108c SS |
7070 | if (sals.sals[i].symtab == NULL) |
7071 | b->source_file = NULL; | |
7072 | else | |
7073 | b->source_file = | |
7074 | savestring (sals.sals[i].symtab->filename, | |
7075 | strlen (sals.sals[i].symtab->filename)); | |
7076 | b->line_number = sals.sals[i].line; | |
5cab636d DJ |
7077 | b->loc->requested_address = sals.sals[i].pc; |
7078 | b->loc->address | |
88f7da05 KB |
7079 | = adjust_breakpoint_address (b->loc->requested_address, |
7080 | b->type); | |
c906108c | 7081 | |
c5aa993b | 7082 | /* Used to check for duplicates here, but that can |
261c4ca2 | 7083 | cause trouble, as it doesn't check for disabled |
c5aa993b | 7084 | breakpoints. */ |
c906108c SS |
7085 | |
7086 | mention (b); | |
7087 | ||
7088 | /* Might be better to do this just once per breakpoint_re_set, | |
c5aa993b | 7089 | rather than once for every breakpoint. */ |
c906108c SS |
7090 | breakpoints_changed (); |
7091 | } | |
cf3a9e5b | 7092 | b->loc->section = sals.sals[i].section; |
b5de0fa7 | 7093 | b->enable_state = save_enable; /* Restore it, this worked. */ |
c906108c SS |
7094 | |
7095 | ||
c5aa993b | 7096 | /* Now that this is re-enabled, check_duplicates |
c906108c | 7097 | can be used. */ |
9f60f21b | 7098 | check_duplicates (b); |
c906108c SS |
7099 | |
7100 | } | |
b8c9b27d | 7101 | xfree (sals.sals); |
c906108c SS |
7102 | break; |
7103 | ||
7104 | case bp_watchpoint: | |
7105 | case bp_hardware_watchpoint: | |
7106 | case bp_read_watchpoint: | |
7107 | case bp_access_watchpoint: | |
7108 | innermost_block = NULL; | |
53a5351d JM |
7109 | /* The issue arises of what context to evaluate this in. The |
7110 | same one as when it was set, but what does that mean when | |
7111 | symbols have been re-read? We could save the filename and | |
7112 | functionname, but if the context is more local than that, the | |
7113 | best we could do would be something like how many levels deep | |
7114 | and which index at that particular level, but that's going to | |
7115 | be less stable than filenames or function names. */ | |
7116 | ||
c906108c SS |
7117 | /* So for now, just use a global context. */ |
7118 | if (b->exp) | |
a355c7de AC |
7119 | { |
7120 | xfree (b->exp); | |
7121 | /* Avoid re-freeing b->exp if an error during the call to | |
7122 | parse_expression. */ | |
7123 | b->exp = NULL; | |
7124 | } | |
c906108c SS |
7125 | b->exp = parse_expression (b->exp_string); |
7126 | b->exp_valid_block = innermost_block; | |
7127 | mark = value_mark (); | |
7128 | if (b->val) | |
a355c7de AC |
7129 | { |
7130 | value_free (b->val); | |
7131 | /* Avoid re-freeing b->val if an error during the call to | |
7132 | evaluate_expression. */ | |
7133 | b->val = NULL; | |
7134 | } | |
c906108c SS |
7135 | b->val = evaluate_expression (b->exp); |
7136 | release_value (b->val); | |
d69fe07e | 7137 | if (value_lazy (b->val) && breakpoint_enabled (b)) |
c906108c SS |
7138 | value_fetch_lazy (b->val); |
7139 | ||
7140 | if (b->cond_string != NULL) | |
7141 | { | |
7142 | s = b->cond_string; | |
7143 | if (b->cond) | |
a355c7de AC |
7144 | { |
7145 | xfree (b->cond); | |
7146 | /* Avoid re-freeing b->exp if an error during the call | |
7147 | to parse_exp_1. */ | |
7148 | b->cond = NULL; | |
7149 | } | |
c5aa993b | 7150 | b->cond = parse_exp_1 (&s, (struct block *) 0, 0); |
c906108c | 7151 | } |
468d015d | 7152 | if (breakpoint_enabled (b)) |
c906108c SS |
7153 | mention (b); |
7154 | value_free_to_mark (mark); | |
7155 | break; | |
c5aa993b JM |
7156 | case bp_catch_catch: |
7157 | case bp_catch_throw: | |
c906108c | 7158 | break; |
c5aa993b JM |
7159 | /* We needn't really do anything to reset these, since the mask |
7160 | that requests them is unaffected by e.g., new libraries being | |
7161 | loaded. */ | |
c906108c SS |
7162 | case bp_catch_fork: |
7163 | case bp_catch_vfork: | |
7164 | case bp_catch_exec: | |
7165 | break; | |
c5aa993b | 7166 | |
c906108c | 7167 | default: |
a3f17187 | 7168 | printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type); |
c906108c | 7169 | /* fall through */ |
1900040c MS |
7170 | /* Delete longjmp and overlay event breakpoints; they will be |
7171 | reset later by breakpoint_re_set. */ | |
c906108c SS |
7172 | case bp_longjmp: |
7173 | case bp_longjmp_resume: | |
1900040c | 7174 | case bp_overlay_event: |
c906108c SS |
7175 | delete_breakpoint (b); |
7176 | break; | |
7177 | ||
c5aa993b JM |
7178 | /* This breakpoint is special, it's set up when the inferior |
7179 | starts and we really don't want to touch it. */ | |
c906108c SS |
7180 | case bp_shlib_event: |
7181 | ||
c4093a6a JM |
7182 | /* Like bp_shlib_event, this breakpoint type is special. |
7183 | Once it is set up, we do not want to touch it. */ | |
7184 | case bp_thread_event: | |
7185 | ||
c5aa993b JM |
7186 | /* Keep temporary breakpoints, which can be encountered when we step |
7187 | over a dlopen call and SOLIB_ADD is resetting the breakpoints. | |
7188 | Otherwise these should have been blown away via the cleanup chain | |
7189 | or by breakpoint_init_inferior when we rerun the executable. */ | |
c906108c SS |
7190 | case bp_until: |
7191 | case bp_finish: | |
7192 | case bp_watchpoint_scope: | |
7193 | case bp_call_dummy: | |
7194 | case bp_step_resume: | |
7195 | break; | |
7196 | } | |
7197 | ||
7198 | return 0; | |
7199 | } | |
7200 | ||
7201 | /* Re-set all breakpoints after symbols have been re-loaded. */ | |
7202 | void | |
fba45db2 | 7203 | breakpoint_re_set (void) |
c906108c SS |
7204 | { |
7205 | struct breakpoint *b, *temp; | |
7206 | enum language save_language; | |
7207 | int save_input_radix; | |
c5aa993b | 7208 | |
c906108c SS |
7209 | save_language = current_language->la_language; |
7210 | save_input_radix = input_radix; | |
7211 | ALL_BREAKPOINTS_SAFE (b, temp) | |
c5aa993b | 7212 | { |
53a5351d | 7213 | /* Format possible error msg */ |
9ebf4acf AC |
7214 | char *message = xstrprintf ("Error in re-setting breakpoint %d:\n", |
7215 | b->number); | |
7216 | struct cleanup *cleanups = make_cleanup (xfree, message); | |
c5aa993b | 7217 | catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL); |
9ebf4acf | 7218 | do_cleanups (cleanups); |
c5aa993b | 7219 | } |
c906108c SS |
7220 | set_language (save_language); |
7221 | input_radix = save_input_radix; | |
7222 | ||
9df628e0 RE |
7223 | if (GET_LONGJMP_TARGET_P ()) |
7224 | { | |
7225 | create_longjmp_breakpoint ("longjmp"); | |
7226 | create_longjmp_breakpoint ("_longjmp"); | |
7227 | create_longjmp_breakpoint ("siglongjmp"); | |
7228 | create_longjmp_breakpoint ("_siglongjmp"); | |
7229 | create_longjmp_breakpoint (NULL); | |
7230 | } | |
1900040c MS |
7231 | |
7232 | create_overlay_event_breakpoint ("_ovly_debug_event"); | |
c906108c SS |
7233 | } |
7234 | \f | |
c906108c SS |
7235 | /* Reset the thread number of this breakpoint: |
7236 | ||
7237 | - If the breakpoint is for all threads, leave it as-is. | |
39f77062 | 7238 | - Else, reset it to the current thread for inferior_ptid. */ |
c906108c | 7239 | void |
fba45db2 | 7240 | breakpoint_re_set_thread (struct breakpoint *b) |
c906108c SS |
7241 | { |
7242 | if (b->thread != -1) | |
7243 | { | |
39f77062 KB |
7244 | if (in_thread_list (inferior_ptid)) |
7245 | b->thread = pid_to_thread_id (inferior_ptid); | |
c906108c SS |
7246 | } |
7247 | } | |
7248 | ||
03ac34d5 MS |
7249 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
7250 | If from_tty is nonzero, it prints a message to that effect, | |
7251 | which ends with a period (no newline). */ | |
7252 | ||
c906108c | 7253 | void |
fba45db2 | 7254 | set_ignore_count (int bptnum, int count, int from_tty) |
c906108c | 7255 | { |
52f0bd74 | 7256 | struct breakpoint *b; |
c906108c SS |
7257 | |
7258 | if (count < 0) | |
7259 | count = 0; | |
7260 | ||
7261 | ALL_BREAKPOINTS (b) | |
7262 | if (b->number == bptnum) | |
c5aa993b JM |
7263 | { |
7264 | b->ignore_count = count; | |
221ea385 KS |
7265 | if (from_tty) |
7266 | { | |
7267 | if (count == 0) | |
a3f17187 | 7268 | printf_filtered (_("Will stop next time breakpoint %d is reached."), |
221ea385 KS |
7269 | bptnum); |
7270 | else if (count == 1) | |
a3f17187 | 7271 | printf_filtered (_("Will ignore next crossing of breakpoint %d."), |
221ea385 KS |
7272 | bptnum); |
7273 | else | |
a3f17187 | 7274 | printf_filtered (_("Will ignore next %d crossings of breakpoint %d."), |
221ea385 KS |
7275 | count, bptnum); |
7276 | } | |
c5aa993b | 7277 | breakpoints_changed (); |
221ea385 | 7278 | breakpoint_modify_event (b->number); |
c5aa993b JM |
7279 | return; |
7280 | } | |
c906108c | 7281 | |
8a3fe4f8 | 7282 | error (_("No breakpoint number %d."), bptnum); |
c906108c SS |
7283 | } |
7284 | ||
7285 | /* Clear the ignore counts of all breakpoints. */ | |
7286 | void | |
fba45db2 | 7287 | breakpoint_clear_ignore_counts (void) |
c906108c SS |
7288 | { |
7289 | struct breakpoint *b; | |
7290 | ||
7291 | ALL_BREAKPOINTS (b) | |
7292 | b->ignore_count = 0; | |
7293 | } | |
7294 | ||
7295 | /* Command to set ignore-count of breakpoint N to COUNT. */ | |
7296 | ||
7297 | static void | |
fba45db2 | 7298 | ignore_command (char *args, int from_tty) |
c906108c SS |
7299 | { |
7300 | char *p = args; | |
52f0bd74 | 7301 | int num; |
c906108c SS |
7302 | |
7303 | if (p == 0) | |
e2e0b3e5 | 7304 | error_no_arg (_("a breakpoint number")); |
c5aa993b | 7305 | |
c906108c | 7306 | num = get_number (&p); |
5c44784c | 7307 | if (num == 0) |
8a3fe4f8 | 7308 | error (_("bad breakpoint number: '%s'"), args); |
c906108c | 7309 | if (*p == 0) |
8a3fe4f8 | 7310 | error (_("Second argument (specified ignore-count) is missing.")); |
c906108c SS |
7311 | |
7312 | set_ignore_count (num, | |
7313 | longest_to_int (value_as_long (parse_and_eval (p))), | |
7314 | from_tty); | |
221ea385 KS |
7315 | if (from_tty) |
7316 | printf_filtered ("\n"); | |
c906108c SS |
7317 | } |
7318 | \f | |
7319 | /* Call FUNCTION on each of the breakpoints | |
7320 | whose numbers are given in ARGS. */ | |
7321 | ||
7322 | static void | |
831662b3 | 7323 | map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *)) |
c906108c | 7324 | { |
52f0bd74 | 7325 | char *p = args; |
c906108c | 7326 | char *p1; |
52f0bd74 AC |
7327 | int num; |
7328 | struct breakpoint *b, *tmp; | |
11cf8741 | 7329 | int match; |
c906108c SS |
7330 | |
7331 | if (p == 0) | |
e2e0b3e5 | 7332 | error_no_arg (_("one or more breakpoint numbers")); |
c906108c SS |
7333 | |
7334 | while (*p) | |
7335 | { | |
11cf8741 | 7336 | match = 0; |
c906108c | 7337 | p1 = p; |
c5aa993b | 7338 | |
5c44784c JM |
7339 | num = get_number_or_range (&p1); |
7340 | if (num == 0) | |
c5aa993b | 7341 | { |
8a3fe4f8 | 7342 | warning (_("bad breakpoint number at or near '%s'"), p); |
5c44784c JM |
7343 | } |
7344 | else | |
7345 | { | |
7346 | ALL_BREAKPOINTS_SAFE (b, tmp) | |
7347 | if (b->number == num) | |
7348 | { | |
7349 | struct breakpoint *related_breakpoint = b->related_breakpoint; | |
11cf8741 | 7350 | match = 1; |
5c44784c JM |
7351 | function (b); |
7352 | if (related_breakpoint) | |
7353 | function (related_breakpoint); | |
11cf8741 | 7354 | break; |
5c44784c | 7355 | } |
11cf8741 | 7356 | if (match == 0) |
a3f17187 | 7357 | printf_unfiltered (_("No breakpoint number %d.\n"), num); |
c5aa993b | 7358 | } |
c906108c SS |
7359 | p = p1; |
7360 | } | |
7361 | } | |
7362 | ||
1900040c MS |
7363 | /* Set ignore-count of breakpoint number BPTNUM to COUNT. |
7364 | If from_tty is nonzero, it prints a message to that effect, | |
7365 | which ends with a period (no newline). */ | |
7366 | ||
c906108c | 7367 | void |
fba45db2 | 7368 | disable_breakpoint (struct breakpoint *bpt) |
c906108c SS |
7369 | { |
7370 | /* Never disable a watchpoint scope breakpoint; we want to | |
7371 | hit them when we leave scope so we can delete both the | |
7372 | watchpoint and its scope breakpoint at that time. */ | |
7373 | if (bpt->type == bp_watchpoint_scope) | |
7374 | return; | |
7375 | ||
c2c6d25f | 7376 | /* You can't disable permanent breakpoints. */ |
b5de0fa7 | 7377 | if (bpt->enable_state == bp_permanent) |
c2c6d25f JM |
7378 | return; |
7379 | ||
b5de0fa7 | 7380 | bpt->enable_state = bp_disabled; |
c906108c | 7381 | |
9f60f21b | 7382 | check_duplicates (bpt); |
c906108c | 7383 | |
9a4105ab AC |
7384 | if (deprecated_modify_breakpoint_hook) |
7385 | deprecated_modify_breakpoint_hook (bpt); | |
104c1213 | 7386 | breakpoint_modify_event (bpt->number); |
c906108c SS |
7387 | } |
7388 | ||
c906108c | 7389 | static void |
fba45db2 | 7390 | disable_command (char *args, int from_tty) |
c906108c | 7391 | { |
52f0bd74 | 7392 | struct breakpoint *bpt; |
c906108c SS |
7393 | if (args == 0) |
7394 | ALL_BREAKPOINTS (bpt) | |
7395 | switch (bpt->type) | |
c5aa993b JM |
7396 | { |
7397 | case bp_none: | |
8a3fe4f8 | 7398 | warning (_("attempted to disable apparently deleted breakpoint #%d?"), |
53a5351d | 7399 | bpt->number); |
c5aa993b JM |
7400 | continue; |
7401 | case bp_breakpoint: | |
7402 | case bp_catch_load: | |
7403 | case bp_catch_unload: | |
7404 | case bp_catch_fork: | |
7405 | case bp_catch_vfork: | |
7406 | case bp_catch_exec: | |
7407 | case bp_catch_catch: | |
7408 | case bp_catch_throw: | |
7409 | case bp_hardware_breakpoint: | |
7410 | case bp_watchpoint: | |
7411 | case bp_hardware_watchpoint: | |
7412 | case bp_read_watchpoint: | |
7413 | case bp_access_watchpoint: | |
7414 | disable_breakpoint (bpt); | |
7415 | default: | |
7416 | continue; | |
7417 | } | |
c906108c SS |
7418 | else |
7419 | map_breakpoint_numbers (args, disable_breakpoint); | |
7420 | } | |
7421 | ||
7422 | static void | |
fba45db2 | 7423 | do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition) |
c906108c | 7424 | { |
c906108c SS |
7425 | int target_resources_ok, other_type_used; |
7426 | struct value *mark; | |
7427 | ||
7428 | if (bpt->type == bp_hardware_breakpoint) | |
7429 | { | |
7430 | int i; | |
c5aa993b | 7431 | i = hw_breakpoint_used_count (); |
53a5351d JM |
7432 | target_resources_ok = |
7433 | TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint, | |
7434 | i + 1, 0); | |
c906108c | 7435 | if (target_resources_ok == 0) |
8a3fe4f8 | 7436 | error (_("No hardware breakpoint support in the target.")); |
c906108c | 7437 | else if (target_resources_ok < 0) |
8a3fe4f8 | 7438 | error (_("Hardware breakpoints used exceeds limit.")); |
c906108c SS |
7439 | } |
7440 | ||
0101ce28 | 7441 | if (bpt->pending) |
c906108c | 7442 | { |
0101ce28 | 7443 | if (bpt->enable_state != bp_enabled) |
c906108c | 7444 | { |
0101ce28 JJ |
7445 | /* When enabling a pending breakpoint, we need to check if the breakpoint |
7446 | is resolvable since shared libraries could have been loaded | |
7447 | after the breakpoint was disabled. */ | |
7448 | breakpoints_changed (); | |
7449 | if (resolve_pending_breakpoint (bpt) == GDB_RC_OK) | |
c906108c | 7450 | { |
0101ce28 | 7451 | delete_breakpoint (bpt); |
c906108c SS |
7452 | return; |
7453 | } | |
0101ce28 JJ |
7454 | bpt->enable_state = bp_enabled; |
7455 | bpt->disposition = disposition; | |
c906108c | 7456 | } |
0101ce28 JJ |
7457 | } |
7458 | else /* Not a pending breakpoint. */ | |
7459 | { | |
7460 | if (bpt->enable_state != bp_permanent) | |
7461 | bpt->enable_state = bp_enabled; | |
7462 | bpt->disposition = disposition; | |
7463 | check_duplicates (bpt); | |
7464 | breakpoints_changed (); | |
7465 | ||
7466 | if (bpt->type == bp_watchpoint || | |
7467 | bpt->type == bp_hardware_watchpoint || | |
7468 | bpt->type == bp_read_watchpoint || | |
c5aa993b JM |
7469 | bpt->type == bp_access_watchpoint) |
7470 | { | |
7789d0fa AC |
7471 | struct frame_id saved_frame_id; |
7472 | ||
b04f3ab4 | 7473 | saved_frame_id = get_frame_id (get_selected_frame (NULL)); |
0101ce28 JJ |
7474 | if (bpt->exp_valid_block != NULL) |
7475 | { | |
7476 | struct frame_info *fr = | |
7477 | fr = frame_find_by_id (bpt->watchpoint_frame); | |
7478 | if (fr == NULL) | |
7479 | { | |
a3f17187 | 7480 | printf_filtered (_("\ |
0101ce28 | 7481 | Cannot enable watchpoint %d because the block in which its expression\n\ |
a3f17187 | 7482 | is valid is not currently in scope.\n"), bpt->number); |
0101ce28 JJ |
7483 | bpt->enable_state = bp_disabled; |
7484 | return; | |
7485 | } | |
0101ce28 JJ |
7486 | select_frame (fr); |
7487 | } | |
7488 | ||
7489 | value_free (bpt->val); | |
7490 | mark = value_mark (); | |
7491 | bpt->val = evaluate_expression (bpt->exp); | |
7492 | release_value (bpt->val); | |
d69fe07e | 7493 | if (value_lazy (bpt->val)) |
0101ce28 JJ |
7494 | value_fetch_lazy (bpt->val); |
7495 | ||
7496 | if (bpt->type == bp_hardware_watchpoint || | |
7497 | bpt->type == bp_read_watchpoint || | |
7498 | bpt->type == bp_access_watchpoint) | |
c5aa993b | 7499 | { |
0101ce28 JJ |
7500 | int i = hw_watchpoint_used_count (bpt->type, &other_type_used); |
7501 | int mem_cnt = can_use_hardware_watchpoint (bpt->val); | |
7502 | ||
7503 | /* Hack around 'unused var' error for some targets here */ | |
7504 | (void) mem_cnt, i; | |
7505 | target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT ( | |
7506 | bpt->type, i + mem_cnt, other_type_used); | |
7507 | /* we can consider of type is bp_hardware_watchpoint, convert to | |
7508 | bp_watchpoint in the following condition */ | |
7509 | if (target_resources_ok < 0) | |
7510 | { | |
a3f17187 | 7511 | printf_filtered (_("\ |
c906108c | 7512 | Cannot enable watchpoint %d because target watch resources\n\ |
a3f17187 | 7513 | have been allocated for other watchpoints.\n"), bpt->number); |
0101ce28 JJ |
7514 | bpt->enable_state = bp_disabled; |
7515 | value_free_to_mark (mark); | |
7516 | return; | |
7517 | } | |
c5aa993b | 7518 | } |
0101ce28 | 7519 | |
7789d0fa | 7520 | select_frame (frame_find_by_id (saved_frame_id)); |
0101ce28 | 7521 | value_free_to_mark (mark); |
c5aa993b | 7522 | } |
c906108c | 7523 | } |
0101ce28 | 7524 | |
9a4105ab AC |
7525 | if (deprecated_modify_breakpoint_hook) |
7526 | deprecated_modify_breakpoint_hook (bpt); | |
104c1213 | 7527 | breakpoint_modify_event (bpt->number); |
c906108c SS |
7528 | } |
7529 | ||
7530 | void | |
fba45db2 | 7531 | enable_breakpoint (struct breakpoint *bpt) |
c906108c SS |
7532 | { |
7533 | do_enable_breakpoint (bpt, bpt->disposition); | |
7534 | } | |
7535 | ||
7536 | /* The enable command enables the specified breakpoints (or all defined | |
7537 | breakpoints) so they once again become (or continue to be) effective | |
1272ad14 | 7538 | in stopping the inferior. */ |
c906108c | 7539 | |
c906108c | 7540 | static void |
fba45db2 | 7541 | enable_command (char *args, int from_tty) |
c906108c | 7542 | { |
52f0bd74 | 7543 | struct breakpoint *bpt; |
c906108c SS |
7544 | if (args == 0) |
7545 | ALL_BREAKPOINTS (bpt) | |
7546 | switch (bpt->type) | |
c5aa993b JM |
7547 | { |
7548 | case bp_none: | |
8a3fe4f8 | 7549 | warning (_("attempted to enable apparently deleted breakpoint #%d?"), |
53a5351d | 7550 | bpt->number); |
c5aa993b JM |
7551 | continue; |
7552 | case bp_breakpoint: | |
7553 | case bp_catch_load: | |
7554 | case bp_catch_unload: | |
7555 | case bp_catch_fork: | |
7556 | case bp_catch_vfork: | |
7557 | case bp_catch_exec: | |
7558 | case bp_catch_catch: | |
7559 | case bp_catch_throw: | |
7560 | case bp_hardware_breakpoint: | |
7561 | case bp_watchpoint: | |
7562 | case bp_hardware_watchpoint: | |
7563 | case bp_read_watchpoint: | |
7564 | case bp_access_watchpoint: | |
7565 | enable_breakpoint (bpt); | |
7566 | default: | |
7567 | continue; | |
7568 | } | |
c906108c SS |
7569 | else |
7570 | map_breakpoint_numbers (args, enable_breakpoint); | |
7571 | } | |
7572 | ||
7573 | static void | |
fba45db2 | 7574 | enable_once_breakpoint (struct breakpoint *bpt) |
c906108c | 7575 | { |
b5de0fa7 | 7576 | do_enable_breakpoint (bpt, disp_disable); |
c906108c SS |
7577 | } |
7578 | ||
c906108c | 7579 | static void |
fba45db2 | 7580 | enable_once_command (char *args, int from_tty) |
c906108c SS |
7581 | { |
7582 | map_breakpoint_numbers (args, enable_once_breakpoint); | |
7583 | } | |
7584 | ||
7585 | static void | |
fba45db2 | 7586 | enable_delete_breakpoint (struct breakpoint *bpt) |
c906108c | 7587 | { |
b5de0fa7 | 7588 | do_enable_breakpoint (bpt, disp_del); |
c906108c SS |
7589 | } |
7590 | ||
c906108c | 7591 | static void |
fba45db2 | 7592 | enable_delete_command (char *args, int from_tty) |
c906108c SS |
7593 | { |
7594 | map_breakpoint_numbers (args, enable_delete_breakpoint); | |
7595 | } | |
7596 | \f | |
fa8d40ab JJ |
7597 | static void |
7598 | set_breakpoint_cmd (char *args, int from_tty) | |
7599 | { | |
7600 | } | |
7601 | ||
7602 | static void | |
7603 | show_breakpoint_cmd (char *args, int from_tty) | |
7604 | { | |
7605 | } | |
7606 | ||
c906108c SS |
7607 | /* Use default_breakpoint_'s, or nothing if they aren't valid. */ |
7608 | ||
7609 | struct symtabs_and_lines | |
fba45db2 | 7610 | decode_line_spec_1 (char *string, int funfirstline) |
c906108c SS |
7611 | { |
7612 | struct symtabs_and_lines sals; | |
7613 | if (string == 0) | |
8a3fe4f8 | 7614 | error (_("Empty line specification.")); |
c906108c SS |
7615 | if (default_breakpoint_valid) |
7616 | sals = decode_line_1 (&string, funfirstline, | |
53a5351d JM |
7617 | default_breakpoint_symtab, |
7618 | default_breakpoint_line, | |
68219205 | 7619 | (char ***) NULL, NULL); |
c906108c SS |
7620 | else |
7621 | sals = decode_line_1 (&string, funfirstline, | |
68219205 | 7622 | (struct symtab *) NULL, 0, (char ***) NULL, NULL); |
c906108c | 7623 | if (*string) |
8a3fe4f8 | 7624 | error (_("Junk at end of line specification: %s"), string); |
c906108c SS |
7625 | return sals; |
7626 | } | |
7627 | \f | |
7628 | void | |
fba45db2 | 7629 | _initialize_breakpoint (void) |
c906108c | 7630 | { |
fa8d40ab JJ |
7631 | static struct cmd_list_element *breakpoint_set_cmdlist; |
7632 | static struct cmd_list_element *breakpoint_show_cmdlist; | |
c906108c SS |
7633 | struct cmd_list_element *c; |
7634 | ||
84acb35a JJ |
7635 | #ifdef SOLIB_ADD |
7636 | observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib); | |
7637 | #endif | |
7638 | ||
c906108c SS |
7639 | breakpoint_chain = 0; |
7640 | /* Don't bother to call set_breakpoint_count. $bpnum isn't useful | |
7641 | before a breakpoint is set. */ | |
7642 | breakpoint_count = 0; | |
7643 | ||
1bedd215 AC |
7644 | add_com ("ignore", class_breakpoint, ignore_command, _("\ |
7645 | Set ignore-count of breakpoint number N to COUNT.\n\ | |
7646 | Usage is `ignore N COUNT'.")); | |
c906108c | 7647 | if (xdb_commands) |
c5aa993b | 7648 | add_com_alias ("bc", "ignore", class_breakpoint, 1); |
c906108c | 7649 | |
1bedd215 AC |
7650 | add_com ("commands", class_breakpoint, commands_command, _("\ |
7651 | Set commands to be executed when a breakpoint is hit.\n\ | |
c906108c SS |
7652 | Give breakpoint number as argument after \"commands\".\n\ |
7653 | With no argument, the targeted breakpoint is the last one set.\n\ | |
7654 | The commands themselves follow starting on the next line.\n\ | |
7655 | Type a line containing \"end\" to indicate the end of them.\n\ | |
7656 | Give \"silent\" as the first line to make the breakpoint silent;\n\ | |
1bedd215 | 7657 | then no output is printed when it is hit, except what the commands print.")); |
c906108c | 7658 | |
1bedd215 AC |
7659 | add_com ("condition", class_breakpoint, condition_command, _("\ |
7660 | Specify breakpoint number N to break only if COND is true.\n\ | |
c906108c | 7661 | Usage is `condition N COND', where N is an integer and COND is an\n\ |
1bedd215 | 7662 | expression to be evaluated whenever breakpoint N is reached.")); |
c906108c | 7663 | |
1bedd215 AC |
7664 | c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\ |
7665 | Set a temporary breakpoint. Args like \"break\" command.\n\ | |
c906108c SS |
7666 | Like \"break\" except the breakpoint is only temporary,\n\ |
7667 | so it will be deleted when hit. Equivalent to \"break\" followed\n\ | |
1bedd215 | 7668 | by using \"enable delete\" on the breakpoint number.")); |
5ba2abeb | 7669 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 7670 | |
1bedd215 AC |
7671 | c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\ |
7672 | Set a hardware assisted breakpoint. Args like \"break\" command.\n\ | |
c906108c | 7673 | Like \"break\" except the breakpoint requires hardware support,\n\ |
1bedd215 | 7674 | some target hardware may not have this support.")); |
5ba2abeb | 7675 | set_cmd_completer (c, location_completer); |
c906108c | 7676 | |
1bedd215 AC |
7677 | c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\ |
7678 | Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\ | |
c906108c | 7679 | Like \"hbreak\" except the breakpoint is only temporary,\n\ |
1bedd215 | 7680 | so it will be deleted when hit.")); |
5ba2abeb | 7681 | set_cmd_completer (c, location_completer); |
c906108c | 7682 | |
1bedd215 AC |
7683 | add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\ |
7684 | Enable some breakpoints.\n\ | |
c906108c SS |
7685 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
7686 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
7687 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 7688 | With a subcommand you can enable temporarily."), |
c906108c SS |
7689 | &enablelist, "enable ", 1, &cmdlist); |
7690 | if (xdb_commands) | |
1bedd215 AC |
7691 | add_com ("ab", class_breakpoint, enable_command, _("\ |
7692 | Enable some breakpoints.\n\ | |
c906108c SS |
7693 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
7694 | With no subcommand, breakpoints are enabled until you command otherwise.\n\ | |
7695 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 7696 | With a subcommand you can enable temporarily.")); |
c906108c SS |
7697 | |
7698 | add_com_alias ("en", "enable", class_breakpoint, 1); | |
7699 | ||
1bedd215 AC |
7700 | add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\ |
7701 | Enable some breakpoints.\n\ | |
c906108c SS |
7702 | Give breakpoint numbers (separated by spaces) as arguments.\n\ |
7703 | This is used to cancel the effect of the \"disable\" command.\n\ | |
1bedd215 | 7704 | May be abbreviated to simply \"enable\".\n"), |
c5aa993b | 7705 | &enablebreaklist, "enable breakpoints ", 1, &enablelist); |
c906108c | 7706 | |
1a966eab AC |
7707 | add_cmd ("once", no_class, enable_once_command, _("\ |
7708 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
7709 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
c906108c SS |
7710 | &enablebreaklist); |
7711 | ||
1a966eab AC |
7712 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
7713 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
7714 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
7715 | &enablebreaklist); |
7716 | ||
1a966eab AC |
7717 | add_cmd ("delete", no_class, enable_delete_command, _("\ |
7718 | Enable breakpoints and delete when hit. Give breakpoint numbers.\n\ | |
7719 | If a breakpoint is hit while enabled in this fashion, it is deleted."), | |
c906108c SS |
7720 | &enablelist); |
7721 | ||
1a966eab AC |
7722 | add_cmd ("once", no_class, enable_once_command, _("\ |
7723 | Enable breakpoints for one hit. Give breakpoint numbers.\n\ | |
7724 | If a breakpoint is hit while enabled in this fashion, it becomes disabled."), | |
c906108c SS |
7725 | &enablelist); |
7726 | ||
1bedd215 AC |
7727 | add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\ |
7728 | Disable some breakpoints.\n\ | |
c906108c SS |
7729 | Arguments are breakpoint numbers with spaces in between.\n\ |
7730 | To disable all breakpoints, give no argument.\n\ | |
1bedd215 | 7731 | A disabled breakpoint is not forgotten, but has no effect until reenabled."), |
c906108c SS |
7732 | &disablelist, "disable ", 1, &cmdlist); |
7733 | add_com_alias ("dis", "disable", class_breakpoint, 1); | |
7734 | add_com_alias ("disa", "disable", class_breakpoint, 1); | |
7735 | if (xdb_commands) | |
1bedd215 AC |
7736 | add_com ("sb", class_breakpoint, disable_command, _("\ |
7737 | Disable some breakpoints.\n\ | |
c906108c SS |
7738 | Arguments are breakpoint numbers with spaces in between.\n\ |
7739 | To disable all breakpoints, give no argument.\n\ | |
1bedd215 | 7740 | A disabled breakpoint is not forgotten, but has no effect until reenabled.")); |
c906108c | 7741 | |
1a966eab AC |
7742 | add_cmd ("breakpoints", class_alias, disable_command, _("\ |
7743 | Disable some breakpoints.\n\ | |
c906108c SS |
7744 | Arguments are breakpoint numbers with spaces in between.\n\ |
7745 | To disable all breakpoints, give no argument.\n\ | |
7746 | A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\ | |
1a966eab | 7747 | This command may be abbreviated \"disable\"."), |
c906108c SS |
7748 | &disablelist); |
7749 | ||
1bedd215 AC |
7750 | add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\ |
7751 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
7752 | Arguments are breakpoint numbers with spaces in between.\n\ |
7753 | To delete all breakpoints, give no argument.\n\ | |
7754 | \n\ | |
7755 | Also a prefix command for deletion of other GDB objects.\n\ | |
1bedd215 | 7756 | The \"unset\" command is also an alias for \"delete\"."), |
c906108c SS |
7757 | &deletelist, "delete ", 1, &cmdlist); |
7758 | add_com_alias ("d", "delete", class_breakpoint, 1); | |
7759 | if (xdb_commands) | |
1bedd215 AC |
7760 | add_com ("db", class_breakpoint, delete_command, _("\ |
7761 | Delete some breakpoints.\n\ | |
c906108c | 7762 | Arguments are breakpoint numbers with spaces in between.\n\ |
1bedd215 | 7763 | To delete all breakpoints, give no argument.\n")); |
c906108c | 7764 | |
1a966eab AC |
7765 | add_cmd ("breakpoints", class_alias, delete_command, _("\ |
7766 | Delete some breakpoints or auto-display expressions.\n\ | |
c906108c SS |
7767 | Arguments are breakpoint numbers with spaces in between.\n\ |
7768 | To delete all breakpoints, give no argument.\n\ | |
1a966eab | 7769 | This command may be abbreviated \"delete\"."), |
c906108c SS |
7770 | &deletelist); |
7771 | ||
1bedd215 AC |
7772 | add_com ("clear", class_breakpoint, clear_command, _("\ |
7773 | Clear breakpoint at specified line or function.\n\ | |
c906108c SS |
7774 | Argument may be line number, function name, or \"*\" and an address.\n\ |
7775 | If line number is specified, all breakpoints in that line are cleared.\n\ | |
7776 | If function is specified, breakpoints at beginning of function are cleared.\n\ | |
1bedd215 AC |
7777 | If an address is specified, breakpoints at that address are cleared.\n\ |
7778 | \n\ | |
7779 | With no argument, clears all breakpoints in the line that the selected frame\n\ | |
c906108c SS |
7780 | is executing in.\n\ |
7781 | \n\ | |
1bedd215 | 7782 | See also the \"delete\" command which clears breakpoints by number.")); |
c906108c | 7783 | |
1bedd215 AC |
7784 | c = add_com ("break", class_breakpoint, break_command, _("\ |
7785 | Set breakpoint at specified line or function.\n\ | |
c906108c SS |
7786 | Argument may be line number, function name, or \"*\" and an address.\n\ |
7787 | If line number is specified, break at start of code for that line.\n\ | |
7788 | If function is specified, break at start of code for that function.\n\ | |
1bedd215 AC |
7789 | If an address is specified, break at that exact address.\n\ |
7790 | With no arg, uses current execution address of selected stack frame.\n\ | |
c906108c SS |
7791 | This is useful for breaking on return to a stack frame.\n\ |
7792 | \n\ | |
7793 | Multiple breakpoints at one place are permitted, and useful if conditional.\n\ | |
7794 | \n\ | |
1bedd215 | 7795 | Do \"help breakpoints\" for info on other commands dealing with breakpoints.")); |
5ba2abeb | 7796 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 7797 | |
c906108c SS |
7798 | add_com_alias ("b", "break", class_run, 1); |
7799 | add_com_alias ("br", "break", class_run, 1); | |
7800 | add_com_alias ("bre", "break", class_run, 1); | |
7801 | add_com_alias ("brea", "break", class_run, 1); | |
7802 | ||
502fd408 | 7803 | if (xdb_commands) |
c906108c SS |
7804 | { |
7805 | add_com_alias ("ba", "break", class_breakpoint, 1); | |
7806 | add_com_alias ("bu", "ubreak", class_breakpoint, 1); | |
c906108c SS |
7807 | } |
7808 | ||
7809 | if (dbx_commands) | |
7810 | { | |
1bedd215 AC |
7811 | add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\ |
7812 | Break in function/address or break at a line in the current file."), | |
c5aa993b JM |
7813 | &stoplist, "stop ", 1, &cmdlist); |
7814 | add_cmd ("in", class_breakpoint, stopin_command, | |
1a966eab | 7815 | _("Break in function or address."), &stoplist); |
c5aa993b | 7816 | add_cmd ("at", class_breakpoint, stopat_command, |
1a966eab | 7817 | _("Break at a line in the current file."), &stoplist); |
1bedd215 AC |
7818 | add_com ("status", class_info, breakpoints_info, _("\ |
7819 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
7820 | The \"Type\" column indicates one of:\n\ |
7821 | \tbreakpoint - normal breakpoint\n\ | |
7822 | \twatchpoint - watchpoint\n\ | |
7823 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
7824 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
7825 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
7826 | address and file/line number respectively.\n\ |
7827 | \n\ | |
7828 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
c906108c SS |
7829 | are set to the address of the last breakpoint listed.\n\n\ |
7830 | Convenience variable \"$bpnum\" contains the number of the last\n\ | |
1bedd215 | 7831 | breakpoint set.")); |
c906108c SS |
7832 | } |
7833 | ||
1bedd215 AC |
7834 | add_info ("breakpoints", breakpoints_info, _("\ |
7835 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
7836 | The \"Type\" column indicates one of:\n\ |
7837 | \tbreakpoint - normal breakpoint\n\ | |
7838 | \twatchpoint - watchpoint\n\ | |
7839 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
7840 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
7841 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
7842 | address and file/line number respectively.\n\ |
7843 | \n\ | |
7844 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
c906108c SS |
7845 | are set to the address of the last breakpoint listed.\n\n\ |
7846 | Convenience variable \"$bpnum\" contains the number of the last\n\ | |
1bedd215 | 7847 | breakpoint set.")); |
c906108c SS |
7848 | |
7849 | if (xdb_commands) | |
1bedd215 AC |
7850 | add_com ("lb", class_breakpoint, breakpoints_info, _("\ |
7851 | Status of user-settable breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
7852 | The \"Type\" column indicates one of:\n\ |
7853 | \tbreakpoint - normal breakpoint\n\ | |
7854 | \twatchpoint - watchpoint\n\ | |
7855 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
7856 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ | |
7857 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1bedd215 AC |
7858 | address and file/line number respectively.\n\ |
7859 | \n\ | |
7860 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
c906108c SS |
7861 | are set to the address of the last breakpoint listed.\n\n\ |
7862 | Convenience variable \"$bpnum\" contains the number of the last\n\ | |
1bedd215 | 7863 | breakpoint set.")); |
c906108c | 7864 | |
1a966eab AC |
7865 | add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\ |
7866 | Status of all breakpoints, or breakpoint number NUMBER.\n\ | |
c906108c SS |
7867 | The \"Type\" column indicates one of:\n\ |
7868 | \tbreakpoint - normal breakpoint\n\ | |
7869 | \twatchpoint - watchpoint\n\ | |
7870 | \tlongjmp - internal breakpoint used to step through longjmp()\n\ | |
7871 | \tlongjmp resume - internal breakpoint at the target of longjmp()\n\ | |
7872 | \tuntil - internal breakpoint used by the \"until\" command\n\ | |
1a966eab AC |
7873 | \tfinish - internal breakpoint used by the \"finish\" command\n\ |
7874 | The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\ | |
c906108c SS |
7875 | the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\ |
7876 | breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\ | |
1a966eab AC |
7877 | address and file/line number respectively.\n\ |
7878 | \n\ | |
7879 | Convenience variable \"$_\" and default examine address for \"x\"\n\ | |
7880 | are set to the address of the last breakpoint listed.\n\ | |
7881 | \n\ | |
c906108c | 7882 | Convenience variable \"$bpnum\" contains the number of the last\n\ |
1a966eab | 7883 | breakpoint set."), |
c906108c SS |
7884 | &maintenanceinfolist); |
7885 | ||
1bedd215 AC |
7886 | add_com ("catch", class_breakpoint, catch_command, _("\ |
7887 | Set catchpoints to catch events.\n\ | |
c906108c SS |
7888 | Raised signals may be caught:\n\ |
7889 | \tcatch signal - all signals\n\ | |
7890 | \tcatch signal <signame> - a particular signal\n\ | |
7891 | Raised exceptions may be caught:\n\ | |
7892 | \tcatch throw - all exceptions, when thrown\n\ | |
7893 | \tcatch throw <exceptname> - a particular exception, when thrown\n\ | |
7894 | \tcatch catch - all exceptions, when caught\n\ | |
7895 | \tcatch catch <exceptname> - a particular exception, when caught\n\ | |
7896 | Thread or process events may be caught:\n\ | |
7897 | \tcatch thread_start - any threads, just after creation\n\ | |
7898 | \tcatch thread_exit - any threads, just before expiration\n\ | |
7899 | \tcatch thread_join - any threads, just after joins\n\ | |
7900 | Process events may be caught:\n\ | |
7901 | \tcatch start - any processes, just after creation\n\ | |
7902 | \tcatch exit - any processes, just before expiration\n\ | |
7903 | \tcatch fork - calls to fork()\n\ | |
7904 | \tcatch vfork - calls to vfork()\n\ | |
7905 | \tcatch exec - calls to exec()\n\ | |
7906 | Dynamically-linked library events may be caught:\n\ | |
7907 | \tcatch load - loads of any library\n\ | |
7908 | \tcatch load <libname> - loads of a particular library\n\ | |
7909 | \tcatch unload - unloads of any library\n\ | |
7910 | \tcatch unload <libname> - unloads of a particular library\n\ | |
7911 | The act of your program's execution stopping may also be caught:\n\ | |
7912 | \tcatch stop\n\n\ | |
7913 | C++ exceptions may be caught:\n\ | |
7914 | \tcatch throw - all exceptions, when thrown\n\ | |
7915 | \tcatch catch - all exceptions, when caught\n\ | |
7916 | \n\ | |
7917 | Do \"help set follow-fork-mode\" for info on debugging your program\n\ | |
7918 | after a fork or vfork is caught.\n\n\ | |
1bedd215 | 7919 | Do \"help breakpoints\" for info on other commands dealing with breakpoints.")); |
c5aa993b | 7920 | |
1bedd215 AC |
7921 | add_com ("tcatch", class_breakpoint, tcatch_command, _("\ |
7922 | Set temporary catchpoints to catch events.\n\ | |
c906108c SS |
7923 | Args like \"catch\" command.\n\ |
7924 | Like \"catch\" except the catchpoint is only temporary,\n\ | |
7925 | so it will be deleted when hit. Equivalent to \"catch\" followed\n\ | |
1bedd215 | 7926 | by using \"enable delete\" on the catchpoint number.")); |
c5aa993b | 7927 | |
1bedd215 AC |
7928 | c = add_com ("watch", class_breakpoint, watch_command, _("\ |
7929 | Set a watchpoint for an expression.\n\ | |
c906108c | 7930 | A watchpoint stops execution of your program whenever the value of\n\ |
1bedd215 | 7931 | an expression changes.")); |
5ba2abeb | 7932 | set_cmd_completer (c, location_completer); |
c906108c | 7933 | |
1bedd215 AC |
7934 | c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\ |
7935 | Set a read watchpoint for an expression.\n\ | |
c906108c | 7936 | A watchpoint stops execution of your program whenever the value of\n\ |
1bedd215 | 7937 | an expression is read.")); |
5ba2abeb | 7938 | set_cmd_completer (c, location_completer); |
c906108c | 7939 | |
1bedd215 AC |
7940 | c = add_com ("awatch", class_breakpoint, awatch_command, _("\ |
7941 | Set a watchpoint for an expression.\n\ | |
c906108c | 7942 | A watchpoint stops execution of your program whenever the value of\n\ |
1bedd215 | 7943 | an expression is either read or written.")); |
5ba2abeb | 7944 | set_cmd_completer (c, location_completer); |
c906108c SS |
7945 | |
7946 | add_info ("watchpoints", breakpoints_info, | |
1bedd215 | 7947 | _("Synonym for ``info breakpoints''.")); |
c906108c SS |
7948 | |
7949 | ||
920d2a44 AC |
7950 | /* XXX: cagney/2005-02-23: This should be a boolean, and should |
7951 | respond to changes - contrary to the description. */ | |
85c07804 AC |
7952 | add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support, |
7953 | &can_use_hw_watchpoints, _("\ | |
7954 | Set debugger's willingness to use watchpoint hardware."), _("\ | |
7955 | Show debugger's willingness to use watchpoint hardware."), _("\ | |
c906108c SS |
7956 | If zero, gdb will not use hardware for new watchpoints, even if\n\ |
7957 | such is available. (However, any hardware watchpoints that were\n\ | |
7958 | created before setting this to nonzero, will continue to use watchpoint\n\ | |
85c07804 AC |
7959 | hardware.)"), |
7960 | NULL, | |
920d2a44 | 7961 | show_can_use_hw_watchpoints, |
85c07804 | 7962 | &setlist, &showlist); |
c906108c SS |
7963 | |
7964 | can_use_hw_watchpoints = 1; | |
fa8d40ab | 7965 | |
1bedd215 | 7966 | add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\ |
fa8d40ab JJ |
7967 | Breakpoint specific settings\n\ |
7968 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 7969 | pending breakpoint behavior"), |
fa8d40ab JJ |
7970 | &breakpoint_set_cmdlist, "set breakpoint ", |
7971 | 0/*allow-unknown*/, &setlist); | |
1bedd215 | 7972 | add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\ |
fa8d40ab JJ |
7973 | Breakpoint specific settings\n\ |
7974 | Configure various breakpoint-specific variables such as\n\ | |
1bedd215 | 7975 | pending breakpoint behavior"), |
fa8d40ab JJ |
7976 | &breakpoint_show_cmdlist, "show breakpoint ", |
7977 | 0/*allow-unknown*/, &showlist); | |
7978 | ||
7915a72c AC |
7979 | add_setshow_auto_boolean_cmd ("pending", no_class, |
7980 | &pending_break_support, _("\ | |
7981 | Set debugger's behavior regarding pending breakpoints."), _("\ | |
7982 | Show debugger's behavior regarding pending breakpoints."), _("\ | |
6e1d7d6c AC |
7983 | If on, an unrecognized breakpoint location will cause gdb to create a\n\ |
7984 | pending breakpoint. If off, an unrecognized breakpoint location results in\n\ | |
7985 | an error. If auto, an unrecognized breakpoint location results in a\n\ | |
7915a72c | 7986 | user-query to see if a pending breakpoint should be created."), |
2c5b56ce | 7987 | NULL, |
920d2a44 | 7988 | show_pending_break_support, |
6e1d7d6c AC |
7989 | &breakpoint_set_cmdlist, |
7990 | &breakpoint_show_cmdlist); | |
fa8d40ab JJ |
7991 | |
7992 | pending_break_support = AUTO_BOOLEAN_AUTO; | |
c906108c | 7993 | } |