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