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