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