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