]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/breakpoint.c
* breakpoint.h: Update copyright years.
[thirdparty/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
4fa8626c
DJ
1720/* This function returns non-zero iff there is a software breakpoint
1721 inserted at PC. */
1722
1723int
1724software_breakpoint_inserted_here_p (CORE_ADDR pc)
1725{
1726 struct bp_location *bpt;
1727 int any_breakpoint_here = 0;
1728
1729 ALL_BP_LOCATIONS (bpt)
1730 {
1731 if (bpt->loc_type != bp_loc_software_breakpoint)
1732 continue;
1733
1734 if ((breakpoint_enabled (bpt->owner)
1735 || bpt->owner->enable_state == bp_permanent)
1736 && bpt->inserted
1737 && bpt->address == pc) /* bp is enabled and matches pc */
1738 {
1739 if (overlay_debugging
1740 && section_is_overlay (bpt->section)
1741 && !section_is_mapped (bpt->section))
1742 continue; /* unmapped overlay -- can't be a match */
1743 else
1744 return 1;
1745 }
1746 }
1747
1748 return 0;
1749}
1750
53a5351d 1751/* Return nonzero if FRAME is a dummy frame. We can't use
ae45cd16 1752 DEPRECATED_PC_IN_CALL_DUMMY because figuring out the saved SP would
ac2adee5 1753 take too much time, at least using frame_register() on the 68k.
ae45cd16 1754 This means that for this function to work right a port must use the
53a5351d 1755 bp_call_dummy breakpoint. */
c906108c
SS
1756
1757int
bf1e52be 1758deprecated_frame_in_dummy (struct frame_info *frame)
c906108c 1759{
c906108c
SS
1760 struct breakpoint *b;
1761
0225421b 1762 /* This function is used by two files: get_frame_type(), after first
07555a72
AC
1763 checking that !DEPRECATED_USE_GENERIC_DUMMY_FRAMES; and
1764 sparc-tdep.c, which doesn't yet use generic dummy frames anyway. */
1765 gdb_assert (!DEPRECATED_USE_GENERIC_DUMMY_FRAMES);
c5aa993b 1766
c906108c 1767 ALL_BREAKPOINTS (b)
c5aa993b
JM
1768 {
1769 if (b->type == bp_call_dummy
818dd999 1770 && frame_id_eq (b->frame_id, get_frame_id (frame))
c5aa993b
JM
1771 /* We need to check the PC as well as the frame on the sparc,
1772 for signals.exp in the testsuite. */
bdd78e62 1773 && (get_frame_pc (frame)
5cab636d 1774 >= (b->loc->address
b1e29e33 1775 - DEPRECATED_SIZEOF_CALL_DUMMY_WORDS / sizeof (LONGEST) * DEPRECATED_REGISTER_SIZE))
5cab636d 1776 && get_frame_pc (frame) <= b->loc->address)
c5aa993b
JM
1777 return 1;
1778 }
c906108c
SS
1779 return 0;
1780}
1781
075f6582
DJ
1782/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
1783 PC is valid for process/thread PTID. */
c906108c
SS
1784
1785int
39f77062 1786breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
c906108c 1787{
075f6582 1788 struct bp_location *bpt;
c906108c
SS
1789 int thread;
1790
39f77062 1791 thread = pid_to_thread_id (ptid);
c906108c 1792
075f6582 1793 ALL_BP_LOCATIONS (bpt)
c5aa993b 1794 {
075f6582
DJ
1795 if (bpt->loc_type != bp_loc_software_breakpoint
1796 && bpt->loc_type != bp_loc_hardware_breakpoint)
1797 continue;
1798
468d015d 1799 if ((breakpoint_enabled (bpt->owner)
075f6582
DJ
1800 || bpt->owner->enable_state == bp_permanent)
1801 && bpt->address == pc
1802 && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
1803 {
1804 if (overlay_debugging
1805 && section_is_overlay (bpt->section)
1806 && !section_is_mapped (bpt->section))
1807 continue; /* unmapped overlay -- can't be a match */
1808 else
1809 return 1;
1810 }
c5aa993b 1811 }
c906108c
SS
1812
1813 return 0;
1814}
c906108c 1815\f
c5aa993b 1816
c906108c
SS
1817/* bpstat stuff. External routines' interfaces are documented
1818 in breakpoint.h. */
1819
1820int
fba45db2 1821ep_is_catchpoint (struct breakpoint *ep)
c906108c
SS
1822{
1823 return
1824 (ep->type == bp_catch_load)
1825 || (ep->type == bp_catch_unload)
1826 || (ep->type == bp_catch_fork)
1827 || (ep->type == bp_catch_vfork)
1828 || (ep->type == bp_catch_exec)
1829 || (ep->type == bp_catch_catch)
d85310f7 1830 || (ep->type == bp_catch_throw);
c906108c 1831
c5aa993b 1832 /* ??rehrauer: Add more kinds here, as are implemented... */
c906108c 1833}
c5aa993b 1834
c906108c 1835int
fba45db2 1836ep_is_shlib_catchpoint (struct breakpoint *ep)
c906108c
SS
1837{
1838 return
1839 (ep->type == bp_catch_load)
d85310f7 1840 || (ep->type == bp_catch_unload);
c906108c
SS
1841}
1842
1843int
fba45db2 1844ep_is_exception_catchpoint (struct breakpoint *ep)
c906108c
SS
1845{
1846 return
1847 (ep->type == bp_catch_catch)
d85310f7 1848 || (ep->type == bp_catch_throw);
c906108c
SS
1849}
1850
1851/* Clear a bpstat so that it says we are not at any breakpoint.
1852 Also free any storage that is part of a bpstat. */
1853
1854void
fba45db2 1855bpstat_clear (bpstat *bsp)
c906108c
SS
1856{
1857 bpstat p;
1858 bpstat q;
1859
1860 if (bsp == 0)
1861 return;
1862 p = *bsp;
1863 while (p != NULL)
1864 {
1865 q = p->next;
1866 if (p->old_val != NULL)
1867 value_free (p->old_val);
c2b8ed2c 1868 free_command_lines (&p->commands);
b8c9b27d 1869 xfree (p);
c906108c
SS
1870 p = q;
1871 }
1872 *bsp = NULL;
1873}
1874
1875/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1876 is part of the bpstat is copied as well. */
1877
1878bpstat
fba45db2 1879bpstat_copy (bpstat bs)
c906108c
SS
1880{
1881 bpstat p = NULL;
1882 bpstat tmp;
1883 bpstat retval = NULL;
1884
1885 if (bs == NULL)
1886 return bs;
1887
1888 for (; bs != NULL; bs = bs->next)
1889 {
1890 tmp = (bpstat) xmalloc (sizeof (*tmp));
1891 memcpy (tmp, bs, sizeof (*tmp));
31cc81e9
DJ
1892 if (bs->commands != NULL)
1893 tmp->commands = copy_command_lines (bs->commands);
1894 if (bs->old_val != NULL)
1895 tmp->old_val = value_copy (bs->old_val);
1896
c906108c
SS
1897 if (p == NULL)
1898 /* This is the first thing in the chain. */
1899 retval = tmp;
1900 else
1901 p->next = tmp;
1902 p = tmp;
1903 }
1904 p->next = NULL;
1905 return retval;
1906}
1907
1908/* Find the bpstat associated with this breakpoint */
1909
1910bpstat
fba45db2 1911bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 1912{
c5aa993b
JM
1913 if (bsp == NULL)
1914 return NULL;
c906108c 1915
c5aa993b
JM
1916 for (; bsp != NULL; bsp = bsp->next)
1917 {
1918 if (bsp->breakpoint_at == breakpoint)
1919 return bsp;
1920 }
c906108c
SS
1921 return NULL;
1922}
1923
1924/* Find a step_resume breakpoint associated with this bpstat.
1925 (If there are multiple step_resume bp's on the list, this function
1926 will arbitrarily pick one.)
1927
1928 It is an error to use this function if BPSTAT doesn't contain a
1929 step_resume breakpoint.
1930
1931 See wait_for_inferior's use of this function. */
1932struct breakpoint *
fba45db2 1933bpstat_find_step_resume_breakpoint (bpstat bsp)
c906108c 1934{
8601f500
MS
1935 int current_thread;
1936
c906108c
SS
1937 if (bsp == NULL)
1938 error ("Internal error (bpstat_find_step_resume_breakpoint)");
1939
8601f500
MS
1940 current_thread = pid_to_thread_id (inferior_ptid);
1941
c906108c
SS
1942 for (; bsp != NULL; bsp = bsp->next)
1943 {
1944 if ((bsp->breakpoint_at != NULL) &&
8601f500
MS
1945 (bsp->breakpoint_at->type == bp_step_resume) &&
1946 (bsp->breakpoint_at->thread == current_thread ||
1947 bsp->breakpoint_at->thread == -1))
c5aa993b 1948 return bsp->breakpoint_at;
c906108c
SS
1949 }
1950
1951 error ("Internal error (no step_resume breakpoint found)");
1952}
1953
1954
1955/* Return the breakpoint number of the first breakpoint we are stopped
1956 at. *BSP upon return is a bpstat which points to the remaining
1957 breakpoints stopped at (but which is not guaranteed to be good for
1958 anything but further calls to bpstat_num).
1959 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1960
1961int
fba45db2 1962bpstat_num (bpstat *bsp)
c906108c
SS
1963{
1964 struct breakpoint *b;
1965
1966 if ((*bsp) == NULL)
1967 return 0; /* No more breakpoint values */
1968 else
1969 {
1970 b = (*bsp)->breakpoint_at;
1971 *bsp = (*bsp)->next;
1972 if (b == NULL)
1973 return -1; /* breakpoint that's been deleted since */
1974 else
c5aa993b 1975 return b->number; /* We have its number */
c906108c
SS
1976 }
1977}
1978
1979/* Modify BS so that the actions will not be performed. */
1980
1981void
fba45db2 1982bpstat_clear_actions (bpstat bs)
c906108c
SS
1983{
1984 for (; bs != NULL; bs = bs->next)
1985 {
c2b8ed2c 1986 free_command_lines (&bs->commands);
c906108c
SS
1987 if (bs->old_val != NULL)
1988 {
1989 value_free (bs->old_val);
1990 bs->old_val = NULL;
1991 }
1992 }
1993}
1994
1995/* Stub for cleaning up our state if we error-out of a breakpoint command */
c906108c 1996static void
4efb68b1 1997cleanup_executing_breakpoints (void *ignore)
c906108c
SS
1998{
1999 executing_breakpoint_commands = 0;
2000}
2001
2002/* Execute all the commands associated with all the breakpoints at this
2003 location. Any of these commands could cause the process to proceed
2004 beyond this point, etc. We look out for such changes by checking
2005 the global "breakpoint_proceeded" after each command. */
2006
2007void
fba45db2 2008bpstat_do_actions (bpstat *bsp)
c906108c
SS
2009{
2010 bpstat bs;
2011 struct cleanup *old_chain;
c906108c
SS
2012
2013 /* Avoid endless recursion if a `source' command is contained
2014 in bs->commands. */
2015 if (executing_breakpoint_commands)
2016 return;
2017
2018 executing_breakpoint_commands = 1;
2019 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
2020
2021top:
2022 /* Note that (as of this writing), our callers all appear to
2023 be passing us the address of global stop_bpstat. And, if
2024 our calls to execute_control_command cause the inferior to
2025 proceed, that global (and hence, *bsp) will change.
2026
2027 We must be careful to not touch *bsp unless the inferior
2028 has not proceeded. */
2029
2030 /* This pointer will iterate over the list of bpstat's. */
2031 bs = *bsp;
2032
2033 breakpoint_proceeded = 0;
2034 for (; bs != NULL; bs = bs->next)
2035 {
6c50ab1c
JB
2036 struct command_line *cmd;
2037 struct cleanup *this_cmd_tree_chain;
2038
2039 /* Take ownership of the BSP's command tree, if it has one.
2040
2041 The command tree could legitimately contain commands like
2042 'step' and 'next', which call clear_proceed_status, which
2043 frees stop_bpstat's command tree. To make sure this doesn't
2044 free the tree we're executing out from under us, we need to
2045 take ownership of the tree ourselves. Since a given bpstat's
2046 commands are only executed once, we don't need to copy it; we
2047 can clear the pointer in the bpstat, and make sure we free
2048 the tree when we're done. */
c906108c 2049 cmd = bs->commands;
6c50ab1c
JB
2050 bs->commands = 0;
2051 this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
2052
c906108c
SS
2053 while (cmd != NULL)
2054 {
2055 execute_control_command (cmd);
2056
2057 if (breakpoint_proceeded)
2058 break;
2059 else
2060 cmd = cmd->next;
2061 }
6c50ab1c
JB
2062
2063 /* We can free this command tree now. */
2064 do_cleanups (this_cmd_tree_chain);
2065
c906108c
SS
2066 if (breakpoint_proceeded)
2067 /* The inferior is proceeded by the command; bomb out now.
2068 The bpstat chain has been blown away by wait_for_inferior.
2069 But since execution has stopped again, there is a new bpstat
2070 to look at, so start over. */
2071 goto top;
c906108c 2072 }
c2b8ed2c 2073 do_cleanups (old_chain);
c906108c
SS
2074}
2075
e514a9d6 2076/* This is the normal print function for a bpstat. In the future,
c906108c 2077 much of this logic could (should?) be moved to bpstat_stop_status,
e514a9d6
JM
2078 by having it set different print_it values.
2079
2080 Current scheme: When we stop, bpstat_print() is called. It loops
2081 through the bpstat list of things causing this stop, calling the
2082 print_bp_stop_message function on each one. The behavior of the
2083 print_bp_stop_message function depends on the print_it field of
2084 bpstat. If such field so indicates, call this function here.
2085
2086 Return values from this routine (ultimately used by bpstat_print()
2087 and normal_stop() to decide what to do):
2088 PRINT_NOTHING: Means we already printed all we needed to print,
2089 don't print anything else.
2090 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
2091 that something to be followed by a location.
2092 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
2093 that something to be followed by a location.
2094 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
2095 analysis. */
c906108c 2096
917317f4 2097static enum print_stop_action
fba45db2 2098print_it_typical (bpstat bs)
c906108c 2099{
3b31d625 2100 struct cleanup *old_chain, *ui_out_chain;
8b93c638
JM
2101 struct ui_stream *stb;
2102 stb = ui_out_stream_new (uiout);
b02eeafb 2103 old_chain = make_cleanup_ui_out_stream_delete (stb);
c906108c
SS
2104 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
2105 which has since been deleted. */
e514a9d6 2106 if (bs->breakpoint_at == NULL)
917317f4 2107 return PRINT_UNKNOWN;
c906108c 2108
e514a9d6 2109 switch (bs->breakpoint_at->type)
c906108c 2110 {
e514a9d6
JM
2111 case bp_breakpoint:
2112 case bp_hardware_breakpoint:
5cab636d
DJ
2113 if (bs->breakpoint_at->loc->address != bs->breakpoint_at->loc->requested_address)
2114 breakpoint_adjustment_warning (bs->breakpoint_at->loc->requested_address,
2115 bs->breakpoint_at->loc->address,
76897487 2116 bs->breakpoint_at->number, 1);
8b93c638
JM
2117 annotate_breakpoint (bs->breakpoint_at->number);
2118 ui_out_text (uiout, "\nBreakpoint ");
9dc5e2a9 2119 if (ui_out_is_mi_like_p (uiout))
fb40c209 2120 ui_out_field_string (uiout, "reason", "breakpoint-hit");
8b93c638
JM
2121 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
2122 ui_out_text (uiout, ", ");
2123 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2124 break;
2125
2126 case bp_shlib_event:
917317f4
JM
2127 /* Did we stop because the user set the stop_on_solib_events
2128 variable? (If so, we report this as a generic, "Stopped due
2129 to shlib event" message.) */
e514a9d6
JM
2130 printf_filtered ("Stopped due to shared library event\n");
2131 return PRINT_NOTHING;
2132 break;
2133
c4093a6a
JM
2134 case bp_thread_event:
2135 /* Not sure how we will get here.
2136 GDB should not stop for these breakpoints. */
2137 printf_filtered ("Thread Event Breakpoint: gdb should not stop!\n");
2138 return PRINT_NOTHING;
2139 break;
2140
1900040c
MS
2141 case bp_overlay_event:
2142 /* By analogy with the thread event, GDB should not stop for these. */
2143 printf_filtered ("Overlay Event Breakpoint: gdb should not stop!\n");
2144 return PRINT_NOTHING;
2145 break;
2146
e514a9d6 2147 case bp_catch_load:
c906108c
SS
2148 annotate_catchpoint (bs->breakpoint_at->number);
2149 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
e514a9d6
JM
2150 printf_filtered ("loaded");
2151 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
2152 return PRINT_SRC_AND_LOC;
2153 break;
2154
2155 case bp_catch_unload:
2156 annotate_catchpoint (bs->breakpoint_at->number);
2157 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2158 printf_filtered ("unloaded");
2159 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
2160 return PRINT_SRC_AND_LOC;
2161 break;
2162
2163 case bp_catch_fork:
2164 annotate_catchpoint (bs->breakpoint_at->number);
2165 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2166 printf_filtered ("forked");
53a5351d
JM
2167 printf_filtered (" process %d), ",
2168 bs->breakpoint_at->forked_inferior_pid);
917317f4 2169 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2170 break;
2171
2172 case bp_catch_vfork:
2173 annotate_catchpoint (bs->breakpoint_at->number);
2174 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2175 printf_filtered ("vforked");
2176 printf_filtered (" process %d), ",
2177 bs->breakpoint_at->forked_inferior_pid);
2178 return PRINT_SRC_AND_LOC;
2179 break;
2180
2181 case bp_catch_exec:
c906108c
SS
2182 annotate_catchpoint (bs->breakpoint_at->number);
2183 printf_filtered ("\nCatchpoint %d (exec'd %s), ",
c5aa993b
JM
2184 bs->breakpoint_at->number,
2185 bs->breakpoint_at->exec_pathname);
917317f4 2186 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2187 break;
2188
2189 case bp_catch_catch:
53a5351d
JM
2190 if (current_exception_event &&
2191 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
c5aa993b
JM
2192 {
2193 annotate_catchpoint (bs->breakpoint_at->number);
53a5351d
JM
2194 printf_filtered ("\nCatchpoint %d (exception caught), ",
2195 bs->breakpoint_at->number);
c5aa993b
JM
2196 printf_filtered ("throw location ");
2197 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2198 printf_filtered ("%s:%d",
2199 CURRENT_EXCEPTION_THROW_FILE,
2200 CURRENT_EXCEPTION_THROW_LINE);
2201 else
2202 printf_filtered ("unknown");
2203
2204 printf_filtered (", catch location ");
2205 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2206 printf_filtered ("%s:%d",
2207 CURRENT_EXCEPTION_CATCH_FILE,
2208 CURRENT_EXCEPTION_CATCH_LINE);
2209 else
2210 printf_filtered ("unknown");
2211
2212 printf_filtered ("\n");
e514a9d6
JM
2213 /* don't bother to print location frame info */
2214 return PRINT_SRC_ONLY;
c5aa993b 2215 }
c906108c 2216 else
c5aa993b 2217 {
e514a9d6
JM
2218 /* really throw, some other bpstat will handle it */
2219 return PRINT_UNKNOWN;
c5aa993b 2220 }
e514a9d6
JM
2221 break;
2222
2223 case bp_catch_throw:
53a5351d
JM
2224 if (current_exception_event &&
2225 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
c5aa993b
JM
2226 {
2227 annotate_catchpoint (bs->breakpoint_at->number);
53a5351d
JM
2228 printf_filtered ("\nCatchpoint %d (exception thrown), ",
2229 bs->breakpoint_at->number);
c5aa993b
JM
2230 printf_filtered ("throw location ");
2231 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2232 printf_filtered ("%s:%d",
2233 CURRENT_EXCEPTION_THROW_FILE,
2234 CURRENT_EXCEPTION_THROW_LINE);
2235 else
2236 printf_filtered ("unknown");
2237
2238 printf_filtered (", catch location ");
2239 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2240 printf_filtered ("%s:%d",
2241 CURRENT_EXCEPTION_CATCH_FILE,
2242 CURRENT_EXCEPTION_CATCH_LINE);
2243 else
2244 printf_filtered ("unknown");
2245
2246 printf_filtered ("\n");
e514a9d6
JM
2247 /* don't bother to print location frame info */
2248 return PRINT_SRC_ONLY;
c5aa993b 2249 }
c906108c 2250 else
c5aa993b 2251 {
e514a9d6
JM
2252 /* really catch, some other bpstat will handle it */
2253 return PRINT_UNKNOWN;
c5aa993b 2254 }
e514a9d6 2255 break;
c906108c 2256
e514a9d6
JM
2257 case bp_watchpoint:
2258 case bp_hardware_watchpoint:
2259 if (bs->old_val != NULL)
2260 {
2261 annotate_watchpoint (bs->breakpoint_at->number);
9dc5e2a9 2262 if (ui_out_is_mi_like_p (uiout))
fb40c209 2263 ui_out_field_string (uiout, "reason", "watchpoint-trigger");
8b93c638 2264 mention (bs->breakpoint_at);
3b31d625 2265 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
2266 ui_out_text (uiout, "\nOld value = ");
2267 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2268 ui_out_field_stream (uiout, "old", stb);
2269 ui_out_text (uiout, "\nNew value = ");
2270 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2271 ui_out_field_stream (uiout, "new", stb);
3b31d625 2272 do_cleanups (ui_out_chain);
8b93c638 2273 ui_out_text (uiout, "\n");
e514a9d6
JM
2274 value_free (bs->old_val);
2275 bs->old_val = NULL;
2276 }
2277 /* More than one watchpoint may have been triggered. */
2278 return PRINT_UNKNOWN;
2279 break;
2280
2281 case bp_read_watchpoint:
9dc5e2a9 2282 if (ui_out_is_mi_like_p (uiout))
fb40c209 2283 ui_out_field_string (uiout, "reason", "read-watchpoint-trigger");
8b93c638 2284 mention (bs->breakpoint_at);
3b31d625 2285 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
2286 ui_out_text (uiout, "\nValue = ");
2287 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2288 ui_out_field_stream (uiout, "value", stb);
3b31d625 2289 do_cleanups (ui_out_chain);
8b93c638 2290 ui_out_text (uiout, "\n");
917317f4 2291 return PRINT_UNKNOWN;
e514a9d6
JM
2292 break;
2293
2294 case bp_access_watchpoint:
8b93c638
JM
2295 if (bs->old_val != NULL)
2296 {
2297 annotate_watchpoint (bs->breakpoint_at->number);
9dc5e2a9 2298 if (ui_out_is_mi_like_p (uiout))
fb40c209 2299 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
8b93c638 2300 mention (bs->breakpoint_at);
3b31d625 2301 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
2302 ui_out_text (uiout, "\nOld value = ");
2303 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2304 ui_out_field_stream (uiout, "old", stb);
2305 value_free (bs->old_val);
2306 bs->old_val = NULL;
2307 ui_out_text (uiout, "\nNew value = ");
2308 }
2309 else
2310 {
2311 mention (bs->breakpoint_at);
9dc5e2a9 2312 if (ui_out_is_mi_like_p (uiout))
c97fe386 2313 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
3b31d625 2314 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
2315 ui_out_text (uiout, "\nValue = ");
2316 }
2317 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2318 ui_out_field_stream (uiout, "new", stb);
3b31d625 2319 do_cleanups (ui_out_chain);
8b93c638 2320 ui_out_text (uiout, "\n");
917317f4 2321 return PRINT_UNKNOWN;
e514a9d6 2322 break;
4ce44c66 2323
e514a9d6
JM
2324 /* Fall through, we don't deal with these types of breakpoints
2325 here. */
2326
11cf8741 2327 case bp_finish:
9dc5e2a9 2328 if (ui_out_is_mi_like_p (uiout))
fb40c209 2329 ui_out_field_string (uiout, "reason", "function-finished");
8b93c638
JM
2330 return PRINT_UNKNOWN;
2331 break;
2332
e514a9d6 2333 case bp_until:
9dc5e2a9 2334 if (ui_out_is_mi_like_p (uiout))
fb40c209 2335 ui_out_field_string (uiout, "reason", "location-reached");
8b93c638
JM
2336 return PRINT_UNKNOWN;
2337 break;
2338
c2d11a7d 2339 case bp_none:
e514a9d6
JM
2340 case bp_longjmp:
2341 case bp_longjmp_resume:
2342 case bp_step_resume:
2343 case bp_through_sigtramp:
2344 case bp_watchpoint_scope:
2345 case bp_call_dummy:
2346 default:
2347 return PRINT_UNKNOWN;
2348 }
2349}
2350
2351/* Generic routine for printing messages indicating why we
2352 stopped. The behavior of this function depends on the value
2353 'print_it' in the bpstat structure. Under some circumstances we
2354 may decide not to print anything here and delegate the task to
2355 normal_stop(). */
2356
2357static enum print_stop_action
2358print_bp_stop_message (bpstat bs)
2359{
2360 switch (bs->print_it)
2361 {
2362 case print_it_noop:
2363 /* Nothing should be printed for this bpstat entry. */
2364 return PRINT_UNKNOWN;
2365 break;
2366
2367 case print_it_done:
2368 /* We still want to print the frame, but we already printed the
2369 relevant messages. */
2370 return PRINT_SRC_AND_LOC;
2371 break;
2372
2373 case print_it_normal:
3086aeae
DJ
2374 /* Normal case. Call the breakpoint's print_it method, or
2375 print_it_typical. */
2376 if (bs->breakpoint_at != NULL && bs->breakpoint_at->ops != NULL
2377 && bs->breakpoint_at->ops->print_it != NULL)
2378 return bs->breakpoint_at->ops->print_it (bs->breakpoint_at);
2379 else
2380 return print_it_typical (bs);
e514a9d6 2381 break;
3086aeae 2382
e514a9d6 2383 default:
8e65ff28
AC
2384 internal_error (__FILE__, __LINE__,
2385 "print_bp_stop_message: unrecognized enum value");
e514a9d6 2386 break;
c906108c 2387 }
c906108c
SS
2388}
2389
e514a9d6
JM
2390/* Print a message indicating what happened. This is called from
2391 normal_stop(). The input to this routine is the head of the bpstat
2392 list - a list of the eventpoints that caused this stop. This
2393 routine calls the generic print routine for printing a message
2394 about reasons for stopping. This will print (for example) the
2395 "Breakpoint n," part of the output. The return value of this
2396 routine is one of:
c906108c 2397
917317f4
JM
2398 PRINT_UNKNOWN: Means we printed nothing
2399 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
c5aa993b
JM
2400 code to print the location. An example is
2401 "Breakpoint 1, " which should be followed by
2402 the location.
917317f4 2403 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
2404 to also print the location part of the message.
2405 An example is the catch/throw messages, which
917317f4
JM
2406 don't require a location appended to the end.
2407 PRINT_NOTHING: We have done some printing and we don't need any
2408 further info to be printed.*/
c906108c 2409
917317f4 2410enum print_stop_action
fba45db2 2411bpstat_print (bpstat bs)
c906108c
SS
2412{
2413 int val;
c5aa993b 2414
c906108c 2415 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
2416 (Currently all watchpoints go on the bpstat whether hit or not.
2417 That probably could (should) be changed, provided care is taken
c906108c 2418 with respect to bpstat_explains_signal). */
e514a9d6
JM
2419 for (; bs; bs = bs->next)
2420 {
2421 val = print_bp_stop_message (bs);
2422 if (val == PRINT_SRC_ONLY
2423 || val == PRINT_SRC_AND_LOC
2424 || val == PRINT_NOTHING)
2425 return val;
2426 }
c906108c 2427
e514a9d6
JM
2428 /* We reached the end of the chain, or we got a null BS to start
2429 with and nothing was printed. */
917317f4 2430 return PRINT_UNKNOWN;
c906108c
SS
2431}
2432
2433/* Evaluate the expression EXP and return 1 if value is zero.
2434 This is used inside a catch_errors to evaluate the breakpoint condition.
2435 The argument is a "struct expression *" that has been cast to char * to
2436 make it pass through catch_errors. */
2437
2438static int
4efb68b1 2439breakpoint_cond_eval (void *exp)
c906108c 2440{
278cd55f 2441 struct value *mark = value_mark ();
c5aa993b 2442 int i = !value_true (evaluate_expression ((struct expression *) exp));
c906108c
SS
2443 value_free_to_mark (mark);
2444 return i;
2445}
2446
2447/* Allocate a new bpstat and chain it to the current one. */
2448
2449static bpstat
831662b3 2450bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
c906108c
SS
2451{
2452 bpstat bs;
2453
2454 bs = (bpstat) xmalloc (sizeof (*bs));
2455 cbs->next = bs;
2456 bs->breakpoint_at = b;
2457 /* If the condition is false, etc., don't do the commands. */
2458 bs->commands = NULL;
2459 bs->old_val = NULL;
2460 bs->print_it = print_it_normal;
2461 return bs;
2462}
2463\f
2464/* Possible return values for watchpoint_check (this can't be an enum
2465 because of check_errors). */
2466/* The watchpoint has been deleted. */
2467#define WP_DELETED 1
2468/* The value has changed. */
2469#define WP_VALUE_CHANGED 2
2470/* The value has not changed. */
2471#define WP_VALUE_NOT_CHANGED 3
2472
2473#define BP_TEMPFLAG 1
2474#define BP_HARDWAREFLAG 2
2475
2476/* Check watchpoint condition. */
2477
2478static int
4efb68b1 2479watchpoint_check (void *p)
c906108c
SS
2480{
2481 bpstat bs = (bpstat) p;
2482 struct breakpoint *b;
2483 struct frame_info *fr;
2484 int within_current_scope;
2485
2486 b = bs->breakpoint_at;
2487
2488 if (b->exp_valid_block == NULL)
2489 within_current_scope = 1;
2490 else
2491 {
2492 /* There is no current frame at this moment. If we're going to have
c5aa993b
JM
2493 any chance of handling watchpoints on local variables, we'll need
2494 the frame chain (so we can determine if we're in scope). */
2495 reinit_frame_cache ();
101dcfbe 2496 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 2497 within_current_scope = (fr != NULL);
c12260ac
CV
2498 /* in_function_epilogue_p() returns a non-zero value if we're still
2499 in the function but the stack frame has already been invalidated.
2500 Since we can't rely on the values of local variables after the
2501 stack has been destroyed, we are treating the watchpoint in that
a957e642
CV
2502 state as `not changed' without further checking.
2503
2504 vinschen/2003-09-04: The former implementation left out the case
2505 that the watchpoint frame couldn't be found by frame_find_by_id()
2506 because the current PC is currently in an epilogue. Calling
2507 gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
a6fbcf2f 2508 if ((!within_current_scope || fr == get_current_frame ())
c12260ac
CV
2509 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2510 return WP_VALUE_NOT_CHANGED;
a6fbcf2f 2511 if (fr && within_current_scope)
c906108c
SS
2512 /* If we end up stopping, the current frame will get selected
2513 in normal_stop. So this call to select_frame won't affect
2514 the user. */
0f7d239c 2515 select_frame (fr);
c906108c 2516 }
c5aa993b 2517
c906108c
SS
2518 if (within_current_scope)
2519 {
2520 /* We use value_{,free_to_}mark because it could be a
2521 *long* time before we return to the command level and
c5aa993b
JM
2522 call free_all_values. We can't call free_all_values because
2523 we might be in the middle of evaluating a function call. */
c906108c 2524
278cd55f
AC
2525 struct value *mark = value_mark ();
2526 struct value *new_val = evaluate_expression (bs->breakpoint_at->exp);
c906108c
SS
2527 if (!value_equal (b->val, new_val))
2528 {
2529 release_value (new_val);
2530 value_free_to_mark (mark);
2531 bs->old_val = b->val;
2532 b->val = new_val;
2533 /* We will stop here */
2534 return WP_VALUE_CHANGED;
2535 }
2536 else
2537 {
2538 /* Nothing changed, don't do anything. */
2539 value_free_to_mark (mark);
2540 /* We won't stop here */
2541 return WP_VALUE_NOT_CHANGED;
2542 }
2543 }
2544 else
2545 {
2546 /* This seems like the only logical thing to do because
c5aa993b
JM
2547 if we temporarily ignored the watchpoint, then when
2548 we reenter the block in which it is valid it contains
2549 garbage (in the case of a function, it may have two
2550 garbage values, one before and one after the prologue).
2551 So we can't even detect the first assignment to it and
2552 watch after that (since the garbage may or may not equal
2553 the first value assigned). */
4ce44c66
JM
2554 /* We print all the stop information in print_it_typical(), but
2555 in this case, by the time we call print_it_typical() this bp
2556 will be deleted already. So we have no choice but print the
2557 information here. */
9dc5e2a9 2558 if (ui_out_is_mi_like_p (uiout))
fb40c209 2559 ui_out_field_string (uiout, "reason", "watchpoint-scope");
8b93c638
JM
2560 ui_out_text (uiout, "\nWatchpoint ");
2561 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2562 ui_out_text (uiout, " deleted because the program has left the block in\n\
2563which its expression is valid.\n");
4ce44c66 2564
c906108c 2565 if (b->related_breakpoint)
b5de0fa7
EZ
2566 b->related_breakpoint->disposition = disp_del_at_next_stop;
2567 b->disposition = disp_del_at_next_stop;
c906108c
SS
2568
2569 return WP_DELETED;
2570 }
2571}
2572
c906108c
SS
2573/* Get a bpstat associated with having just stopped at address *PC
2574 and frame address CORE_ADDRESS. Update *PC to point at the
6e31adb3 2575 breakpoint (if we hit a breakpoint). NOT_A_SW_BREAKPOINT is nonzero
c906108c
SS
2576 if this is known to not be a real breakpoint (it could still be a
2577 watchpoint, though). */
2578
2579/* Determine whether we stopped at a breakpoint, etc, or whether we
2580 don't understand this stop. Result is a chain of bpstat's such that:
2581
c5aa993b 2582 if we don't understand the stop, the result is a null pointer.
c906108c 2583
c5aa993b 2584 if we understand why we stopped, the result is not null.
c906108c 2585
c5aa993b
JM
2586 Each element of the chain refers to a particular breakpoint or
2587 watchpoint at which we have stopped. (We may have stopped for
2588 several reasons concurrently.)
c906108c 2589
c5aa993b
JM
2590 Each element of the chain has valid next, breakpoint_at,
2591 commands, FIXME??? fields. */
c906108c
SS
2592
2593bpstat
6e31adb3 2594bpstat_stop_status (CORE_ADDR *pc, int not_a_sw_breakpoint)
c906108c 2595{
52f0bd74 2596 struct breakpoint *b, *temp;
c906108c
SS
2597 CORE_ADDR bp_addr;
2598 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2599 int real_breakpoint = 0;
2600 /* Root of the chain of bpstat's */
2601 struct bpstats root_bs[1];
2602 /* Pointer to the last thing in the chain currently. */
2603 bpstat bs = root_bs;
c906108c 2604
4fa8626c 2605 bp_addr = *pc;
c906108c
SS
2606
2607 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 2608 {
468d015d 2609 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
c5aa993b
JM
2610 continue;
2611
2612 if (b->type != bp_watchpoint
2613 && b->type != bp_hardware_watchpoint
2614 && b->type != bp_read_watchpoint
2615 && b->type != bp_access_watchpoint
2616 && b->type != bp_hardware_breakpoint
2617 && b->type != bp_catch_fork
2618 && b->type != bp_catch_vfork
2619 && b->type != bp_catch_exec
2620 && b->type != bp_catch_catch
2621 && b->type != bp_catch_throw) /* a non-watchpoint bp */
9f04af04 2622 {
5cab636d 2623 if (b->loc->address != bp_addr) /* address doesn't match */
9f04af04
MS
2624 continue;
2625 if (overlay_debugging /* unmapped overlay section */
cf3a9e5b
DJ
2626 && section_is_overlay (b->loc->section)
2627 && !section_is_mapped (b->loc->section))
9f04af04
MS
2628 continue;
2629 }
c906108c 2630
c02f5703
MS
2631 if (b->type == bp_hardware_breakpoint)
2632 {
e74f0f02 2633 if (b->loc->address != *pc)
c02f5703
MS
2634 continue;
2635 if (overlay_debugging /* unmapped overlay section */
cf3a9e5b
DJ
2636 && section_is_overlay (b->loc->section)
2637 && !section_is_mapped (b->loc->section))
c02f5703
MS
2638 continue;
2639 }
c5aa993b 2640
c5aa993b
JM
2641 /* Is this a catchpoint of a load or unload? If so, did we
2642 get a load or unload of the specified library? If not,
2643 ignore it. */
2644 if ((b->type == bp_catch_load)
c906108c 2645#if defined(SOLIB_HAVE_LOAD_EVENT)
39f77062 2646 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
c5aa993b 2647 || ((b->dll_pathname != NULL)
53a5351d 2648 && (strcmp (b->dll_pathname,
39f77062
KB
2649 SOLIB_LOADED_LIBRARY_PATHNAME (
2650 PIDGET (inferior_ptid)))
53a5351d 2651 != 0)))
c906108c 2652#endif
c5aa993b
JM
2653 )
2654 continue;
2655
2656 if ((b->type == bp_catch_unload)
c906108c 2657#if defined(SOLIB_HAVE_UNLOAD_EVENT)
39f77062 2658 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
c5aa993b 2659 || ((b->dll_pathname != NULL)
53a5351d 2660 && (strcmp (b->dll_pathname,
39f77062
KB
2661 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2662 PIDGET (inferior_ptid)))
53a5351d 2663 != 0)))
c906108c 2664#endif
c5aa993b
JM
2665 )
2666 continue;
c906108c 2667
c5aa993b 2668 if ((b->type == bp_catch_fork)
47932f85
DJ
2669 && !inferior_has_forked (PIDGET (inferior_ptid),
2670 &b->forked_inferior_pid))
c5aa993b 2671 continue;
c906108c 2672
c5aa993b 2673 if ((b->type == bp_catch_vfork)
47932f85
DJ
2674 && !inferior_has_vforked (PIDGET (inferior_ptid),
2675 &b->forked_inferior_pid))
c5aa993b 2676 continue;
c906108c 2677
c5aa993b 2678 if ((b->type == bp_catch_exec)
47932f85 2679 && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
c5aa993b 2680 continue;
c906108c 2681
c5aa993b
JM
2682 if (ep_is_exception_catchpoint (b) &&
2683 !(current_exception_event = target_get_current_exception_event ()))
2684 continue;
c906108c 2685
c5aa993b
JM
2686 /* Come here if it's a watchpoint, or if the break address matches */
2687
2688 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2689
2690 /* Watchpoints may change this, if not found to have triggered. */
2691 bs->stop = 1;
2692 bs->print = 1;
2693
53a5351d
JM
2694 if (b->type == bp_watchpoint ||
2695 b->type == bp_hardware_watchpoint)
c5aa993b 2696 {
9ebf4acf
AC
2697 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2698 b->number);
2699 struct cleanup *cleanups = make_cleanup (xfree, message);
2700 int e = catch_errors (watchpoint_check, bs, message,
2701 RETURN_MASK_ALL);
2702 do_cleanups (cleanups);
2703 switch (e)
c5aa993b
JM
2704 {
2705 case WP_DELETED:
2706 /* We've already printed what needs to be printed. */
4ce44c66
JM
2707 /* Actually this is superfluous, because by the time we
2708 call print_it_typical() the wp will be already deleted,
2709 and the function will return immediately. */
c5aa993b
JM
2710 bs->print_it = print_it_done;
2711 /* Stop. */
2712 break;
2713 case WP_VALUE_CHANGED:
2714 /* Stop. */
2715 ++(b->hit_count);
2716 break;
2717 case WP_VALUE_NOT_CHANGED:
2718 /* Don't stop. */
2719 bs->print_it = print_it_noop;
2720 bs->stop = 0;
c5aa993b
JM
2721 continue;
2722 default:
2723 /* Can't happen. */
2724 /* FALLTHROUGH */
2725 case 0:
2726 /* Error from catch_errors. */
2727 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2728 if (b->related_breakpoint)
b5de0fa7
EZ
2729 b->related_breakpoint->disposition = disp_del_at_next_stop;
2730 b->disposition = disp_del_at_next_stop;
c5aa993b
JM
2731 /* We've already printed what needs to be printed. */
2732 bs->print_it = print_it_done;
2733
2734 /* Stop. */
2735 break;
2736 }
2737 }
53a5351d
JM
2738 else if (b->type == bp_read_watchpoint ||
2739 b->type == bp_access_watchpoint)
c5aa993b
JM
2740 {
2741 CORE_ADDR addr;
278cd55f 2742 struct value *v;
c5aa993b
JM
2743 int found = 0;
2744
2745 addr = target_stopped_data_address ();
2746 if (addr == 0)
2747 continue;
2748 for (v = b->val_chain; v; v = v->next)
2749 {
5c44784c
JM
2750 if (VALUE_LVAL (v) == lval_memory
2751 && ! VALUE_LAZY (v))
c5aa993b 2752 {
2e70b7b9
MS
2753 struct type *vtype = check_typedef (VALUE_TYPE (v));
2754
2755 if (v == b->val_chain
2756 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2757 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2758 {
2759 CORE_ADDR vaddr;
2760
2761 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2762 /* Exact match not required. Within range is
2763 sufficient. */
2764 if (addr >= vaddr &&
2765 addr < vaddr + TYPE_LENGTH (VALUE_TYPE (v)))
2766 found = 1;
2767 }
c5aa993b
JM
2768 }
2769 }
2770 if (found)
9ebf4acf
AC
2771 {
2772 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2773 b->number);
2774 struct cleanup *cleanups = make_cleanup (xfree, message);
2775 int e = catch_errors (watchpoint_check, bs, message,
2776 RETURN_MASK_ALL);
2777 do_cleanups (cleanups);
2778 switch (e)
2779 {
2780 case WP_DELETED:
2781 /* We've already printed what needs to be printed. */
2782 bs->print_it = print_it_done;
2783 /* Stop. */
2784 break;
2785 case WP_VALUE_CHANGED:
2786 if (b->type == bp_read_watchpoint)
2787 {
2788 /* Don't stop: read watchpoints shouldn't fire if
2789 the value has changed. This is for targets
2790 which cannot set read-only watchpoints. */
2791 bs->print_it = print_it_noop;
2792 bs->stop = 0;
2793 continue;
2794 }
2795 ++(b->hit_count);
2796 break;
2797 case WP_VALUE_NOT_CHANGED:
2798 /* Stop. */
2799 ++(b->hit_count);
2800 break;
2801 default:
2802 /* Can't happen. */
2803 case 0:
2804 /* Error from catch_errors. */
2805 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2806 if (b->related_breakpoint)
2807 b->related_breakpoint->disposition = disp_del_at_next_stop;
2808 b->disposition = disp_del_at_next_stop;
2809 /* We've already printed what needs to be printed. */
2810 bs->print_it = print_it_done;
2811 break;
2812 }
2813 }
53a5351d
JM
2814 else /* found == 0 */
2815 {
2816 /* This is a case where some watchpoint(s) triggered,
2817 but not at the address of this watchpoint (FOUND
2818 was left zero). So don't print anything for this
2819 watchpoint. */
2820 bs->print_it = print_it_noop;
2821 bs->stop = 0;
2822 continue;
2823 }
c5aa993b
JM
2824 }
2825 else
2826 {
2827 /* By definition, an encountered breakpoint is a triggered
2828 breakpoint. */
2829 ++(b->hit_count);
c906108c 2830
c5aa993b
JM
2831 real_breakpoint = 1;
2832 }
2833
818dd999
AC
2834 if (frame_id_p (b->frame_id)
2835 && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
c5aa993b
JM
2836 bs->stop = 0;
2837 else
2838 {
2839 int value_is_zero = 0;
2840
2841 if (b->cond)
2842 {
2843 /* Need to select the frame, with all that implies
2844 so that the conditions will have the right context. */
0f7d239c 2845 select_frame (get_current_frame ());
c5aa993b
JM
2846 value_is_zero
2847 = catch_errors (breakpoint_cond_eval, (b->cond),
2848 "Error in testing breakpoint condition:\n",
2849 RETURN_MASK_ALL);
2850 /* FIXME-someday, should give breakpoint # */
2851 free_all_values ();
2852 }
2853 if (b->cond && value_is_zero)
2854 {
2855 bs->stop = 0;
2856 /* Don't consider this a hit. */
2857 --(b->hit_count);
2858 }
2859 else if (b->ignore_count > 0)
2860 {
2861 b->ignore_count--;
5c44784c 2862 annotate_ignore_count_change ();
c5aa993b
JM
2863 bs->stop = 0;
2864 }
2865 else
2866 {
2867 /* We will stop here */
b5de0fa7
EZ
2868 if (b->disposition == disp_disable)
2869 b->enable_state = bp_disabled;
c5aa993b
JM
2870 if (b->silent)
2871 bs->print = 0;
552f4abf 2872 bs->commands = b->commands;
c5aa993b 2873 if (bs->commands &&
6314a349
AC
2874 (strcmp ("silent", bs->commands->line) == 0
2875 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
c5aa993b
JM
2876 {
2877 bs->commands = bs->commands->next;
c906108c 2878 bs->print = 0;
c5aa993b 2879 }
552f4abf 2880 bs->commands = copy_command_lines (bs->commands);
c5aa993b
JM
2881 }
2882 }
2883 /* Print nothing for this entry if we dont stop or if we dont print. */
2884 if (bs->stop == 0 || bs->print == 0)
2885 bs->print_it = print_it_noop;
2886 }
c906108c
SS
2887
2888 bs->next = NULL; /* Terminate the chain */
2889 bs = root_bs->next; /* Re-grab the head of the chain */
2890
c906108c
SS
2891 /* The value of a hardware watchpoint hasn't changed, but the
2892 intermediate memory locations we are watching may have. */
c5aa993b 2893 if (bs && !bs->stop &&
c906108c
SS
2894 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2895 bs->breakpoint_at->type == bp_read_watchpoint ||
2896 bs->breakpoint_at->type == bp_access_watchpoint))
2897 {
2898 remove_breakpoints ();
2899 insert_breakpoints ();
2900 }
2901 return bs;
2902}
2903\f
2904/* Tell what to do about this bpstat. */
2905struct bpstat_what
fba45db2 2906bpstat_what (bpstat bs)
c906108c
SS
2907{
2908 /* Classify each bpstat as one of the following. */
c5aa993b
JM
2909 enum class
2910 {
2911 /* This bpstat element has no effect on the main_action. */
2912 no_effect = 0,
2913
2914 /* There was a watchpoint, stop but don't print. */
2915 wp_silent,
c906108c 2916
c5aa993b
JM
2917 /* There was a watchpoint, stop and print. */
2918 wp_noisy,
c906108c 2919
c5aa993b
JM
2920 /* There was a breakpoint but we're not stopping. */
2921 bp_nostop,
c906108c 2922
c5aa993b
JM
2923 /* There was a breakpoint, stop but don't print. */
2924 bp_silent,
c906108c 2925
c5aa993b
JM
2926 /* There was a breakpoint, stop and print. */
2927 bp_noisy,
c906108c 2928
c5aa993b
JM
2929 /* We hit the longjmp breakpoint. */
2930 long_jump,
c906108c 2931
c5aa993b
JM
2932 /* We hit the longjmp_resume breakpoint. */
2933 long_resume,
c906108c 2934
c5aa993b
JM
2935 /* We hit the step_resume breakpoint. */
2936 step_resume,
c906108c 2937
c5aa993b
JM
2938 /* We hit the through_sigtramp breakpoint. */
2939 through_sig,
c906108c 2940
c5aa993b
JM
2941 /* We hit the shared library event breakpoint. */
2942 shlib_event,
c906108c 2943
c5aa993b
JM
2944 /* We caught a shared library event. */
2945 catch_shlib_event,
c906108c 2946
c5aa993b
JM
2947 /* This is just used to count how many enums there are. */
2948 class_last
c906108c
SS
2949 };
2950
2951 /* Here is the table which drives this routine. So that we can
2952 format it pretty, we define some abbreviations for the
2953 enum bpstat_what codes. */
2954#define kc BPSTAT_WHAT_KEEP_CHECKING
2955#define ss BPSTAT_WHAT_STOP_SILENT
2956#define sn BPSTAT_WHAT_STOP_NOISY
2957#define sgl BPSTAT_WHAT_SINGLE
2958#define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2959#define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2960#define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2961#define sr BPSTAT_WHAT_STEP_RESUME
2962#define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2963#define shl BPSTAT_WHAT_CHECK_SHLIBS
2964#define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2965
2966/* "Can't happen." Might want to print an error message.
2967 abort() is not out of the question, but chances are GDB is just
2968 a bit confused, not unusable. */
2969#define err BPSTAT_WHAT_STOP_NOISY
2970
2971 /* Given an old action and a class, come up with a new action. */
2972 /* One interesting property of this table is that wp_silent is the same
2973 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2974 after stopping, the check for whether to step over a breakpoint
2975 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
53a5351d
JM
2976 reference to how we stopped. We retain separate wp_silent and
2977 bp_silent codes in case we want to change that someday.
43ff13b4
JM
2978
2979 Another possibly interesting property of this table is that
2980 there's a partial ordering, priority-like, of the actions. Once
2981 you've decided that some action is appropriate, you'll never go
2982 back and decide something of a lower priority is better. The
2983 ordering is:
2984
7e73cedf 2985 kc < clr sgl shl shlr slr sn sr ss ts
c5aa993b
JM
2986 sgl < clrs shl shlr slr sn sr ss ts
2987 slr < err shl shlr sn sr ss ts
2988 clr < clrs err shl shlr sn sr ss ts
2989 clrs < err shl shlr sn sr ss ts
2990 ss < shl shlr sn sr ts
2991 sn < shl shlr sr ts
2992 sr < shl shlr ts
2993 shl < shlr
2994 ts <
2995 shlr <
2996
43ff13b4
JM
2997 What I think this means is that we don't need a damned table
2998 here. If you just put the rows and columns in the right order,
2999 it'd look awfully regular. We could simply walk the bpstat list
3000 and choose the highest priority action we find, with a little
3001 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
3002 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
3003 is messy anyway). */
c906108c
SS
3004
3005 /* step_resume entries: a step resume breakpoint overrides another
3006 breakpoint of signal handling (see comment in wait_for_inferior
d7bd68ca 3007 at first PC_IN_SIGTRAMP where we set the step_resume breakpoint). */
c906108c
SS
3008 /* We handle the through_sigtramp_breakpoint the same way; having both
3009 one of those and a step_resume_breakpoint is probably very rare (?). */
3010
3011 static const enum bpstat_what_main_action
c5aa993b
JM
3012 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
3013 {
3014 /* old action */
3015 /* kc ss sn sgl slr clr clrs sr ts shl shlr
3016 */
3017/*no_effect */
3018 {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
3019/*wp_silent */
3020 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3021/*wp_noisy */
3022 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3023/*bp_nostop */
3024 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
3025/*bp_silent */
3026 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3027/*bp_noisy */
3028 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3029/*long_jump */
a48bb0b3 3030 {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr},
c5aa993b
JM
3031/*long_resume */
3032 {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
3033/*step_resume */
3034 {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
3035/*through_sig */
3036 {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
3037/*shlib */
3038 {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
3039/*catch_shlib */
3040 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
3041 };
c906108c
SS
3042
3043#undef kc
3044#undef ss
3045#undef sn
3046#undef sgl
3047#undef slr
3048#undef clr
3049#undef clrs
3050#undef err
3051#undef sr
3052#undef ts
3053#undef shl
3054#undef shlr
3055 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
3056 struct bpstat_what retval;
3057
3058 retval.call_dummy = 0;
3059 for (; bs != NULL; bs = bs->next)
3060 {
3061 enum class bs_class = no_effect;
3062 if (bs->breakpoint_at == NULL)
3063 /* I suspect this can happen if it was a momentary breakpoint
3064 which has since been deleted. */
3065 continue;
3066 switch (bs->breakpoint_at->type)
3067 {
3068 case bp_none:
3069 continue;
3070
3071 case bp_breakpoint:
3072 case bp_hardware_breakpoint:
3073 case bp_until:
3074 case bp_finish:
3075 if (bs->stop)
3076 {
3077 if (bs->print)
3078 bs_class = bp_noisy;
3079 else
3080 bs_class = bp_silent;
3081 }
3082 else
3083 bs_class = bp_nostop;
3084 break;
3085 case bp_watchpoint:
3086 case bp_hardware_watchpoint:
3087 case bp_read_watchpoint:
3088 case bp_access_watchpoint:
3089 if (bs->stop)
3090 {
3091 if (bs->print)
3092 bs_class = wp_noisy;
3093 else
3094 bs_class = wp_silent;
3095 }
3096 else
53a5351d
JM
3097 /* There was a watchpoint, but we're not stopping.
3098 This requires no further action. */
c906108c
SS
3099 bs_class = no_effect;
3100 break;
3101 case bp_longjmp:
3102 bs_class = long_jump;
3103 break;
3104 case bp_longjmp_resume:
3105 bs_class = long_resume;
3106 break;
3107 case bp_step_resume:
3108 if (bs->stop)
3109 {
3110 bs_class = step_resume;
3111 }
3112 else
3113 /* It is for the wrong frame. */
3114 bs_class = bp_nostop;
3115 break;
3116 case bp_through_sigtramp:
3117 bs_class = through_sig;
3118 break;
3119 case bp_watchpoint_scope:
3120 bs_class = bp_nostop;
3121 break;
c5aa993b
JM
3122 case bp_shlib_event:
3123 bs_class = shlib_event;
3124 break;
c4093a6a 3125 case bp_thread_event:
1900040c 3126 case bp_overlay_event:
c4093a6a
JM
3127 bs_class = bp_nostop;
3128 break;
c5aa993b
JM
3129 case bp_catch_load:
3130 case bp_catch_unload:
3131 /* Only if this catchpoint triggered should we cause the
3132 step-out-of-dld behaviour. Otherwise, we ignore this
3133 catchpoint. */
3134 if (bs->stop)
3135 bs_class = catch_shlib_event;
3136 else
3137 bs_class = no_effect;
3138 break;
3139 case bp_catch_fork:
3140 case bp_catch_vfork:
3141 case bp_catch_exec:
3142 if (bs->stop)
3143 {
3144 if (bs->print)
3145 bs_class = bp_noisy;
3146 else
3147 bs_class = bp_silent;
3148 }
3149 else
53a5351d
JM
3150 /* There was a catchpoint, but we're not stopping.
3151 This requires no further action. */
c5aa993b
JM
3152 bs_class = no_effect;
3153 break;
3154 case bp_catch_catch:
3155 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
3156 bs_class = bp_nostop;
3157 else if (bs->stop)
3158 bs_class = bs->print ? bp_noisy : bp_silent;
3159 break;
3160 case bp_catch_throw:
3161 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
3162 bs_class = bp_nostop;
3163 else if (bs->stop)
3164 bs_class = bs->print ? bp_noisy : bp_silent;
c906108c 3165 break;
c906108c 3166 case bp_call_dummy:
53a5351d
JM
3167 /* Make sure the action is stop (silent or noisy),
3168 so infrun.c pops the dummy frame. */
c906108c
SS
3169 bs_class = bp_silent;
3170 retval.call_dummy = 1;
3171 break;
3172 }
c5aa993b 3173 current_action = table[(int) bs_class][(int) current_action];
c906108c
SS
3174 }
3175 retval.main_action = current_action;
3176 return retval;
3177}
3178
3179/* Nonzero if we should step constantly (e.g. watchpoints on machines
3180 without hardware support). This isn't related to a specific bpstat,
3181 just to things like whether watchpoints are set. */
3182
c5aa993b 3183int
fba45db2 3184bpstat_should_step (void)
c906108c
SS
3185{
3186 struct breakpoint *b;
3187 ALL_BREAKPOINTS (b)
468d015d 3188 if (breakpoint_enabled (b) && b->type == bp_watchpoint)
3172dc30 3189 return 1;
c906108c
SS
3190 return 0;
3191}
3192
3193/* Nonzero if there are enabled hardware watchpoints. */
3194int
fba45db2 3195bpstat_have_active_hw_watchpoints (void)
c906108c 3196{
075f6582
DJ
3197 struct bp_location *bpt;
3198 ALL_BP_LOCATIONS (bpt)
468d015d 3199 if (breakpoint_enabled (bpt->owner)
075f6582
DJ
3200 && bpt->inserted
3201 && bpt->loc_type == bp_loc_hardware_watchpoint)
3172dc30 3202 return 1;
c906108c
SS
3203 return 0;
3204}
c906108c 3205\f
c5aa993b 3206
c906108c
SS
3207/* Given a bpstat that records zero or more triggered eventpoints, this
3208 function returns another bpstat which contains only the catchpoints
3209 on that first list, if any. */
3210void
fba45db2 3211bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
c5aa993b
JM
3212{
3213 struct bpstats root_bs[1];
3214 bpstat bs = root_bs;
3215 struct breakpoint *ep;
3216 char *dll_pathname;
3217
c906108c
SS
3218 bpstat_clear (cp_list);
3219 root_bs->next = NULL;
c5aa993b
JM
3220
3221 for (; ep_list != NULL; ep_list = ep_list->next)
c906108c
SS
3222 {
3223 /* Is this eventpoint a catchpoint? If not, ignore it. */
3224 ep = ep_list->breakpoint_at;
3225 if (ep == NULL)
c5aa993b
JM
3226 break;
3227 if ((ep->type != bp_catch_load) &&
3228 (ep->type != bp_catch_unload) &&
3229 (ep->type != bp_catch_catch) &&
53a5351d
JM
3230 (ep->type != bp_catch_throw))
3231 /* pai: (temp) ADD fork/vfork here!! */
c5aa993b
JM
3232 continue;
3233
c906108c
SS
3234 /* Yes; add it to the list. */
3235 bs = bpstat_alloc (ep, bs);
3236 *bs = *ep_list;
3237 bs->next = NULL;
3238 bs = root_bs->next;
c5aa993b 3239
c906108c
SS
3240#if defined(SOLIB_ADD)
3241 /* Also, for each triggered catchpoint, tag it with the name of
3242 the library that caused this trigger. (We copy the name now,
3243 because it's only guaranteed to be available NOW, when the
3244 catchpoint triggers. Clients who may wish to know the name
3245 later must get it from the catchpoint itself.) */
3246 if (ep->triggered_dll_pathname != NULL)
b8c9b27d 3247 xfree (ep->triggered_dll_pathname);
c906108c 3248 if (ep->type == bp_catch_load)
39f77062
KB
3249 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3250 PIDGET (inferior_ptid));
c906108c 3251 else
39f77062
KB
3252 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3253 PIDGET (inferior_ptid));
c906108c
SS
3254#else
3255 dll_pathname = NULL;
3256#endif
3257 if (dll_pathname)
3258 {
53a5351d
JM
3259 ep->triggered_dll_pathname = (char *)
3260 xmalloc (strlen (dll_pathname) + 1);
c906108c
SS
3261 strcpy (ep->triggered_dll_pathname, dll_pathname);
3262 }
3263 else
3264 ep->triggered_dll_pathname = NULL;
3265 }
c5aa993b 3266
c906108c
SS
3267 *cp_list = bs;
3268}
3269
c4093a6a 3270/* Print B to gdb_stdout. */
c906108c 3271static void
c4093a6a
JM
3272print_one_breakpoint (struct breakpoint *b,
3273 CORE_ADDR *last_addr)
c906108c 3274{
52f0bd74
AC
3275 struct command_line *l;
3276 struct symbol *sym;
c4093a6a
JM
3277 struct ep_type_description
3278 {
3279 enum bptype type;
3280 char *description;
3281 };
3282 static struct ep_type_description bptypes[] =
c906108c 3283 {
c5aa993b
JM
3284 {bp_none, "?deleted?"},
3285 {bp_breakpoint, "breakpoint"},
c906108c 3286 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
3287 {bp_until, "until"},
3288 {bp_finish, "finish"},
3289 {bp_watchpoint, "watchpoint"},
c906108c 3290 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
3291 {bp_read_watchpoint, "read watchpoint"},
3292 {bp_access_watchpoint, "acc watchpoint"},
3293 {bp_longjmp, "longjmp"},
3294 {bp_longjmp_resume, "longjmp resume"},
3295 {bp_step_resume, "step resume"},
3296 {bp_through_sigtramp, "sigtramp"},
3297 {bp_watchpoint_scope, "watchpoint scope"},
3298 {bp_call_dummy, "call dummy"},
3299 {bp_shlib_event, "shlib events"},
c4093a6a 3300 {bp_thread_event, "thread events"},
1900040c 3301 {bp_overlay_event, "overlay events"},
c5aa993b
JM
3302 {bp_catch_load, "catch load"},
3303 {bp_catch_unload, "catch unload"},
3304 {bp_catch_fork, "catch fork"},
3305 {bp_catch_vfork, "catch vfork"},
3306 {bp_catch_exec, "catch exec"},
3307 {bp_catch_catch, "catch catch"},
3308 {bp_catch_throw, "catch throw"}
3309 };
c4093a6a 3310
c5aa993b
JM
3311 static char *bpdisps[] =
3312 {"del", "dstp", "dis", "keep"};
c2c6d25f 3313 static char bpenables[] = "nynny";
c906108c 3314 char wrap_indent[80];
8b93c638
JM
3315 struct ui_stream *stb = ui_out_stream_new (uiout);
3316 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3b31d625 3317 struct cleanup *bkpt_chain;
c906108c 3318
c4093a6a 3319 annotate_record ();
3b31d625 3320 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
c4093a6a
JM
3321
3322 /* 1 */
3323 annotate_field (0);
8b93c638 3324 ui_out_field_int (uiout, "number", b->number);
c4093a6a
JM
3325
3326 /* 2 */
3327 annotate_field (1);
3328 if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3329 || ((int) b->type != bptypes[(int) b->type].type))
8e65ff28
AC
3330 internal_error (__FILE__, __LINE__,
3331 "bptypes table does not describe type #%d.",
c4093a6a 3332 (int) b->type);
8b93c638 3333 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
c4093a6a
JM
3334
3335 /* 3 */
3336 annotate_field (2);
8b93c638 3337 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
c4093a6a
JM
3338
3339 /* 4 */
3340 annotate_field (3);
b5de0fa7 3341 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
8b93c638 3342 ui_out_spaces (uiout, 2);
c4093a6a
JM
3343
3344 /* 5 and 6 */
3345 strcpy (wrap_indent, " ");
3346 if (addressprint)
75ac9d7b
MS
3347 {
3348 if (TARGET_ADDR_BIT <= 32)
3349 strcat (wrap_indent, " ");
3350 else
3351 strcat (wrap_indent, " ");
3352 }
c906108c 3353
3086aeae
DJ
3354 if (b->ops != NULL && b->ops->print_one != NULL)
3355 b->ops->print_one (b, last_addr);
3356 else
3357 switch (b->type)
3358 {
3359 case bp_none:
3360 internal_error (__FILE__, __LINE__,
3361 "print_one_breakpoint: bp_none encountered\n");
3362 break;
c906108c 3363
3086aeae
DJ
3364 case bp_watchpoint:
3365 case bp_hardware_watchpoint:
3366 case bp_read_watchpoint:
3367 case bp_access_watchpoint:
3368 /* Field 4, the address, is omitted (which makes the columns
3369 not line up too nicely with the headers, but the effect
3370 is relatively readable). */
3371 if (addressprint)
3372 ui_out_field_skip (uiout, "addr");
3373 annotate_field (5);
3374 print_expression (b->exp, stb->stream);
3375 ui_out_field_stream (uiout, "what", stb);
3376 break;
3377
3378 case bp_catch_load:
3379 case bp_catch_unload:
3380 /* Field 4, the address, is omitted (which makes the columns
3381 not line up too nicely with the headers, but the effect
3382 is relatively readable). */
3383 if (addressprint)
3384 ui_out_field_skip (uiout, "addr");
3385 annotate_field (5);
3386 if (b->dll_pathname == NULL)
3387 {
3388 ui_out_field_string (uiout, "what", "<any library>");
3389 ui_out_spaces (uiout, 1);
3390 }
3391 else
3392 {
3393 ui_out_text (uiout, "library \"");
3394 ui_out_field_string (uiout, "what", b->dll_pathname);
3395 ui_out_text (uiout, "\" ");
3396 }
3397 break;
3398
3399 case bp_catch_fork:
3400 case bp_catch_vfork:
3401 /* Field 4, the address, is omitted (which makes the columns
3402 not line up too nicely with the headers, but the effect
3403 is relatively readable). */
3404 if (addressprint)
3405 ui_out_field_skip (uiout, "addr");
3406 annotate_field (5);
3407 if (b->forked_inferior_pid != 0)
3408 {
3409 ui_out_text (uiout, "process ");
3410 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3411 ui_out_spaces (uiout, 1);
3412 }
3413
3414 case bp_catch_exec:
3415 /* Field 4, the address, is omitted (which makes the columns
3416 not line up too nicely with the headers, but the effect
3417 is relatively readable). */
3418 if (addressprint)
3419 ui_out_field_skip (uiout, "addr");
3420 annotate_field (5);
3421 if (b->exec_pathname != NULL)
3422 {
3423 ui_out_text (uiout, "program \"");
3424 ui_out_field_string (uiout, "what", b->exec_pathname);
3425 ui_out_text (uiout, "\" ");
3426 }
3427 break;
3428
3429 case bp_catch_catch:
3430 /* Field 4, the address, is omitted (which makes the columns
3431 not line up too nicely with the headers, but the effect
3432 is relatively readable). */
3433 if (addressprint)
3434 ui_out_field_skip (uiout, "addr");
3435 annotate_field (5);
3436 ui_out_field_string (uiout, "what", "exception catch");
3437 ui_out_spaces (uiout, 1);
3438 break;
3439
3440 case bp_catch_throw:
3441 /* Field 4, the address, is omitted (which makes the columns
3442 not line up too nicely with the headers, but the effect
3443 is relatively readable). */
3444 if (addressprint)
3445 ui_out_field_skip (uiout, "addr");
3446 annotate_field (5);
3447 ui_out_field_string (uiout, "what", "exception throw");
3448 ui_out_spaces (uiout, 1);
3449 break;
3450
3451 case bp_breakpoint:
3452 case bp_hardware_breakpoint:
3453 case bp_until:
3454 case bp_finish:
3455 case bp_longjmp:
3456 case bp_longjmp_resume:
3457 case bp_step_resume:
3458 case bp_through_sigtramp:
3459 case bp_watchpoint_scope:
3460 case bp_call_dummy:
3461 case bp_shlib_event:
3462 case bp_thread_event:
3463 case bp_overlay_event:
3464 if (addressprint)
3465 {
3466 annotate_field (4);
5cab636d 3467 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3086aeae
DJ
3468 }
3469 annotate_field (5);
5cab636d 3470 *last_addr = b->loc->address;
3086aeae
DJ
3471 if (b->source_file)
3472 {
cf3a9e5b 3473 sym = find_pc_sect_function (b->loc->address, b->loc->section);
3086aeae
DJ
3474 if (sym)
3475 {
3476 ui_out_text (uiout, "in ");
3477 ui_out_field_string (uiout, "func",
3478 SYMBOL_PRINT_NAME (sym));
3479 ui_out_wrap_hint (uiout, wrap_indent);
3480 ui_out_text (uiout, " at ");
3481 }
3482 ui_out_field_string (uiout, "file", b->source_file);
3483 ui_out_text (uiout, ":");
3484 ui_out_field_int (uiout, "line", b->line_number);
3485 }
3486 else
3487 {
5cab636d 3488 print_address_symbolic (b->loc->address, stb->stream, demangle, "");
3086aeae
DJ
3489 ui_out_field_stream (uiout, "at", stb);
3490 }
3491 break;
3492 }
c906108c 3493
c4093a6a
JM
3494 if (b->thread != -1)
3495 {
8b93c638
JM
3496 /* FIXME: This seems to be redundant and lost here; see the
3497 "stop only in" line a little further down. */
3498 ui_out_text (uiout, " thread ");
3499 ui_out_field_int (uiout, "thread", b->thread);
c4093a6a
JM
3500 }
3501
8b93c638 3502 ui_out_text (uiout, "\n");
c4093a6a 3503
818dd999 3504 if (frame_id_p (b->frame_id))
c4093a6a
JM
3505 {
3506 annotate_field (6);
8b93c638 3507 ui_out_text (uiout, "\tstop only in stack frame at ");
818dd999
AC
3508 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
3509 the frame ID. */
d0a55772 3510 ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
8b93c638 3511 ui_out_text (uiout, "\n");
c4093a6a
JM
3512 }
3513
3514 if (b->cond)
3515 {
3516 annotate_field (7);
8b93c638
JM
3517 ui_out_text (uiout, "\tstop only if ");
3518 print_expression (b->cond, stb->stream);
3519 ui_out_field_stream (uiout, "cond", stb);
3520 ui_out_text (uiout, "\n");
c4093a6a
JM
3521 }
3522
3523 if (b->thread != -1)
3524 {
3525 /* FIXME should make an annotation for this */
8b93c638
JM
3526 ui_out_text (uiout, "\tstop only in thread ");
3527 ui_out_field_int (uiout, "thread", b->thread);
3528 ui_out_text (uiout, "\n");
c4093a6a
JM
3529 }
3530
3531 if (show_breakpoint_hit_counts && b->hit_count)
3532 {
3533 /* FIXME should make an annotation for this */
8b93c638
JM
3534 if (ep_is_catchpoint (b))
3535 ui_out_text (uiout, "\tcatchpoint");
3536 else
3537 ui_out_text (uiout, "\tbreakpoint");
3538 ui_out_text (uiout, " already hit ");
3539 ui_out_field_int (uiout, "times", b->hit_count);
3540 if (b->hit_count == 1)
3541 ui_out_text (uiout, " time\n");
3542 else
3543 ui_out_text (uiout, " times\n");
c4093a6a
JM
3544 }
3545
fb40c209
AC
3546 /* Output the count also if it is zero, but only if this is
3547 mi. FIXME: Should have a better test for this. */
9dc5e2a9 3548 if (ui_out_is_mi_like_p (uiout))
fb40c209
AC
3549 if (show_breakpoint_hit_counts && b->hit_count == 0)
3550 ui_out_field_int (uiout, "times", b->hit_count);
8b93c638 3551
c4093a6a
JM
3552 if (b->ignore_count)
3553 {
3554 annotate_field (8);
8b93c638
JM
3555 ui_out_text (uiout, "\tignore next ");
3556 ui_out_field_int (uiout, "ignore", b->ignore_count);
3557 ui_out_text (uiout, " hits\n");
c4093a6a
JM
3558 }
3559
3560 if ((l = b->commands))
3561 {
3b31d625
EZ
3562 struct cleanup *script_chain;
3563
c4093a6a 3564 annotate_field (9);
3b31d625 3565 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 3566 print_command_lines (uiout, l, 4);
3b31d625 3567 do_cleanups (script_chain);
c4093a6a 3568 }
3b31d625 3569 do_cleanups (bkpt_chain);
8b93c638 3570 do_cleanups (old_chain);
c4093a6a 3571}
c5aa993b 3572
c4093a6a
JM
3573struct captured_breakpoint_query_args
3574 {
3575 int bnum;
3576 };
c5aa993b 3577
c4093a6a 3578static int
2b65245e 3579do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
3580{
3581 struct captured_breakpoint_query_args *args = data;
52f0bd74 3582 struct breakpoint *b;
c4093a6a
JM
3583 CORE_ADDR dummy_addr = 0;
3584 ALL_BREAKPOINTS (b)
3585 {
3586 if (args->bnum == b->number)
c5aa993b 3587 {
c4093a6a
JM
3588 print_one_breakpoint (b, &dummy_addr);
3589 return GDB_RC_OK;
c5aa993b 3590 }
c4093a6a
JM
3591 }
3592 return GDB_RC_NONE;
3593}
c5aa993b 3594
c4093a6a 3595enum gdb_rc
2b65245e 3596gdb_breakpoint_query (struct ui_out *uiout, int bnum)
c4093a6a
JM
3597{
3598 struct captured_breakpoint_query_args args;
3599 args.bnum = bnum;
3600 /* For the moment we don't trust print_one_breakpoint() to not throw
3601 an error. */
2b65245e
AC
3602 return catch_exceptions (uiout, do_captured_breakpoint_query, &args,
3603 NULL, RETURN_MASK_ALL);
c4093a6a 3604}
c5aa993b 3605
7f3b0473
AC
3606/* Return non-zero if B is user settable (breakpoints, watchpoints,
3607 catchpoints, et.al.). */
3608
3609static int
3610user_settable_breakpoint (const struct breakpoint *b)
3611{
3612 return (b->type == bp_breakpoint
3613 || b->type == bp_catch_load
3614 || b->type == bp_catch_unload
3615 || b->type == bp_catch_fork
3616 || b->type == bp_catch_vfork
3617 || b->type == bp_catch_exec
3618 || b->type == bp_catch_catch
3619 || b->type == bp_catch_throw
3620 || b->type == bp_hardware_breakpoint
3621 || b->type == bp_watchpoint
3622 || b->type == bp_read_watchpoint
3623 || b->type == bp_access_watchpoint
3624 || b->type == bp_hardware_watchpoint);
3625}
3626
3627/* Print information on user settable breakpoint (watchpoint, etc)
3628 number BNUM. If BNUM is -1 print all user settable breakpoints.
3629 If ALLFLAG is non-zero, include non- user settable breakpoints. */
c906108c 3630
c4093a6a 3631static void
fba45db2 3632breakpoint_1 (int bnum, int allflag)
c4093a6a 3633{
52f0bd74 3634 struct breakpoint *b;
c4093a6a 3635 CORE_ADDR last_addr = (CORE_ADDR) -1;
7f3b0473 3636 int nr_printable_breakpoints;
3b31d625 3637 struct cleanup *bkpttbl_chain;
c4093a6a 3638
7f3b0473
AC
3639 /* Compute the number of rows in the table. */
3640 nr_printable_breakpoints = 0;
3641 ALL_BREAKPOINTS (b)
3642 if (bnum == -1
3643 || bnum == b->number)
3644 {
3645 if (allflag || user_settable_breakpoint (b))
3646 nr_printable_breakpoints++;
3647 }
3648
8b93c638 3649 if (addressprint)
3b31d625
EZ
3650 bkpttbl_chain
3651 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
3652 "BreakpointTable");
8b93c638 3653 else
3b31d625
EZ
3654 bkpttbl_chain
3655 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
3656 "BreakpointTable");
8b93c638 3657
7f3b0473 3658 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
3659 annotate_breakpoints_headers ();
3660 if (nr_printable_breakpoints > 0)
3661 annotate_field (0);
3662 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3663 if (nr_printable_breakpoints > 0)
3664 annotate_field (1);
3665 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3666 if (nr_printable_breakpoints > 0)
3667 annotate_field (2);
3668 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3669 if (nr_printable_breakpoints > 0)
3670 annotate_field (3);
3671 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3672 if (addressprint)
7f3b0473 3673 {
d7faa9e7
AC
3674 if (nr_printable_breakpoints > 0)
3675 annotate_field (4);
7f3b0473 3676 if (TARGET_ADDR_BIT <= 32)
b25959ec 3677 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
7f3b0473 3678 else
b25959ec 3679 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
7f3b0473 3680 }
d7faa9e7
AC
3681 if (nr_printable_breakpoints > 0)
3682 annotate_field (5);
3683 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3684 ui_out_table_body (uiout);
3685 if (nr_printable_breakpoints > 0)
3686 annotate_breakpoints_table ();
7f3b0473 3687
c4093a6a
JM
3688 ALL_BREAKPOINTS (b)
3689 if (bnum == -1
3690 || bnum == b->number)
3691 {
3692 /* We only print out user settable breakpoints unless the
3693 allflag is set. */
7f3b0473
AC
3694 if (allflag || user_settable_breakpoint (b))
3695 print_one_breakpoint (b, &last_addr);
c4093a6a
JM
3696 }
3697
3b31d625 3698 do_cleanups (bkpttbl_chain);
698384cd 3699
7f3b0473 3700 if (nr_printable_breakpoints == 0)
c906108c 3701 {
8b93c638
JM
3702 if (bnum == -1)
3703 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3704 else
3705 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3706 bnum);
c906108c
SS
3707 }
3708 else
c4093a6a
JM
3709 {
3710 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3711 that a comparison of an unsigned with -1 is always false. */
3712 if (last_addr != (CORE_ADDR) -1)
3713 set_next_address (last_addr);
3714 }
c906108c 3715
c4093a6a
JM
3716 /* FIXME? Should this be moved up so that it is only called when
3717 there have been breakpoints? */
c906108c
SS
3718 annotate_breakpoints_table_end ();
3719}
3720
c906108c 3721static void
fba45db2 3722breakpoints_info (char *bnum_exp, int from_tty)
c906108c
SS
3723{
3724 int bnum = -1;
3725
3726 if (bnum_exp)
bb518678 3727 bnum = parse_and_eval_long (bnum_exp);
c906108c
SS
3728
3729 breakpoint_1 (bnum, 0);
3730}
3731
7a292a7a 3732static void
fba45db2 3733maintenance_info_breakpoints (char *bnum_exp, int from_tty)
c906108c
SS
3734{
3735 int bnum = -1;
3736
3737 if (bnum_exp)
bb518678 3738 bnum = parse_and_eval_long (bnum_exp);
c906108c
SS
3739
3740 breakpoint_1 (bnum, 1);
3741}
3742
c906108c
SS
3743/* Print a message describing any breakpoints set at PC. */
3744
3745static void
fba45db2 3746describe_other_breakpoints (CORE_ADDR pc, asection *section)
c906108c 3747{
52f0bd74
AC
3748 int others = 0;
3749 struct breakpoint *b;
c906108c
SS
3750
3751 ALL_BREAKPOINTS (b)
5cab636d 3752 if (b->loc->address == pc) /* address match / overlay match */
cf3a9e5b 3753 if (!overlay_debugging || b->loc->section == section)
9f04af04 3754 others++;
c906108c
SS
3755 if (others > 0)
3756 {
3757 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3758 ALL_BREAKPOINTS (b)
5cab636d 3759 if (b->loc->address == pc) /* address match / overlay match */
cf3a9e5b 3760 if (!overlay_debugging || b->loc->section == section)
9f04af04
MS
3761 {
3762 others--;
3763 printf_filtered ("%d%s%s ",
3764 b->number,
3765 ((b->enable_state == bp_disabled ||
3766 b->enable_state == bp_shlib_disabled ||
3767 b->enable_state == bp_call_disabled)
3768 ? " (disabled)"
3769 : b->enable_state == bp_permanent
3770 ? " (permanent)"
3771 : ""),
3772 (others > 1) ? ","
3773 : ((others == 1) ? " and" : ""));
3774 }
c906108c
SS
3775 printf_filtered ("also set at pc ");
3776 print_address_numeric (pc, 1, gdb_stdout);
3777 printf_filtered (".\n");
3778 }
3779}
3780\f
3781/* Set the default place to put a breakpoint
3782 for the `break' command with no arguments. */
3783
3784void
fba45db2
KB
3785set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3786 int line)
c906108c
SS
3787{
3788 default_breakpoint_valid = valid;
3789 default_breakpoint_address = addr;
3790 default_breakpoint_symtab = symtab;
3791 default_breakpoint_line = line;
3792}
3793
e4f237da
KB
3794/* Return true iff it is meaningful to use the address member of
3795 BPT. For some breakpoint types, the address member is irrelevant
3796 and it makes no sense to attempt to compare it to other addresses
3797 (or use it for any other purpose either).
3798
3799 More specifically, each of the following breakpoint types will always
3800 have a zero valued address and we don't want check_duplicates() to mark
3801 breakpoints of any of these types to be a duplicate of an actual
3802 breakpoint at address zero:
3803
3804 bp_watchpoint
3805 bp_hardware_watchpoint
3806 bp_read_watchpoint
3807 bp_access_watchpoint
3808 bp_catch_exec
3809 bp_longjmp_resume
3810 bp_catch_fork
3811 bp_catch_vork */
3812
3813static int
3814breakpoint_address_is_meaningful (struct breakpoint *bpt)
3815{
3816 enum bptype type = bpt->type;
3817
3818 return (type != bp_watchpoint
3819 && type != bp_hardware_watchpoint
3820 && type != bp_read_watchpoint
3821 && type != bp_access_watchpoint
3822 && type != bp_catch_exec
3823 && type != bp_longjmp_resume
3824 && type != bp_catch_fork
3825 && type != bp_catch_vfork);
3826}
3827
9f60f21b 3828/* Rescan breakpoints at the same address and section as BPT,
c906108c 3829 marking the first one as "first" and any others as "duplicates".
c2c6d25f 3830 This is so that the bpt instruction is only inserted once.
9f60f21b
JB
3831 If we have a permanent breakpoint at the same place as BPT, make
3832 that one the official one, and the rest as duplicates. */
c906108c
SS
3833
3834static void
9f60f21b 3835check_duplicates (struct breakpoint *bpt)
c906108c 3836{
075f6582 3837 struct bp_location *b;
52f0bd74 3838 int count = 0;
075f6582 3839 struct bp_location *perm_bp = 0;
5cab636d 3840 CORE_ADDR address = bpt->loc->address;
cf3a9e5b 3841 asection *section = bpt->loc->section;
c906108c 3842
e4f237da 3843 if (! breakpoint_address_is_meaningful (bpt))
c906108c
SS
3844 return;
3845
075f6582
DJ
3846 ALL_BP_LOCATIONS (b)
3847 if (b->owner->enable_state != bp_disabled
3848 && b->owner->enable_state != bp_shlib_disabled
3849 && b->owner->enable_state != bp_call_disabled
3850 && b->address == address /* address / overlay match */
3851 && (!overlay_debugging || b->section == section)
3852 && breakpoint_address_is_meaningful (b->owner))
c5aa993b 3853 {
c2c6d25f 3854 /* Have we found a permanent breakpoint? */
075f6582 3855 if (b->owner->enable_state == bp_permanent)
c2c6d25f
JM
3856 {
3857 perm_bp = b;
3858 break;
3859 }
3860
c5aa993b 3861 count++;
075f6582 3862 b->duplicate = count > 1;
c5aa993b 3863 }
c2c6d25f
JM
3864
3865 /* If we found a permanent breakpoint at this address, go over the
3866 list again and declare all the other breakpoints there to be the
3867 duplicates. */
3868 if (perm_bp)
3869 {
075f6582 3870 perm_bp->duplicate = 0;
c2c6d25f
JM
3871
3872 /* Permanent breakpoint should always be inserted. */
075f6582 3873 if (! perm_bp->inserted)
8e65ff28
AC
3874 internal_error (__FILE__, __LINE__,
3875 "allegedly permanent breakpoint is not "
c2c6d25f
JM
3876 "actually inserted");
3877
075f6582 3878 ALL_BP_LOCATIONS (b)
c2c6d25f
JM
3879 if (b != perm_bp)
3880 {
075f6582
DJ
3881 if (b->owner->enable_state != bp_disabled
3882 && b->owner->enable_state != bp_shlib_disabled
3883 && b->owner->enable_state != bp_call_disabled
3884 && b->address == address /* address / overlay match */
3885 && (!overlay_debugging || b->section == section)
3886 && breakpoint_address_is_meaningful (b->owner))
3887 {
3888 if (b->inserted)
3889 internal_error (__FILE__, __LINE__,
3890 "another breakpoint was inserted on top of "
3891 "a permanent breakpoint");
3892
3893 b->duplicate = 1;
3894 }
c2c6d25f
JM
3895 }
3896 }
c906108c
SS
3897}
3898
76897487
KB
3899static void
3900breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
3901 int bnum, int have_bnum)
3902{
3903 char astr1[40];
3904 char astr2[40];
3905
3906 strcpy (astr1, local_hex_string_custom ((unsigned long) from_addr, "08l"));
3907 strcpy (astr2, local_hex_string_custom ((unsigned long) to_addr, "08l"));
3908 if (have_bnum)
3909 warning ("Breakpoint %d address previously adjusted from %s to %s.",
3910 bnum, astr1, astr2);
3911 else
3912 warning ("Breakpoint address adjusted from %s to %s.", astr1, astr2);
3913}
3914
3915/* Adjust a breakpoint's address to account for architectural constraints
3916 on breakpoint placement. Return the adjusted address. Note: Very
3917 few targets require this kind of adjustment. For most targets,
3918 this function is simply the identity function. */
3919
3920static CORE_ADDR
3921adjust_breakpoint_address (CORE_ADDR bpaddr)
3922{
3923 if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
3924 {
3925 /* Very few targets need any kind of breakpoint adjustment. */
3926 return bpaddr;
3927 }
3928 else
3929 {
3930 CORE_ADDR adjusted_bpaddr;
3931
3932 /* Some targets have architectural constraints on the placement
3933 of breakpoint instructions. Obtain the adjusted address. */
3934 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
3935 bpaddr);
3936
3937 /* An adjusted breakpoint address can significantly alter
3938 a user's expectations. Print a warning if an adjustment
3939 is required. */
3940 if (adjusted_bpaddr != bpaddr)
3941 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
3942
3943 return adjusted_bpaddr;
3944 }
3945}
3946
7cc221ef
DJ
3947/* Allocate a struct bp_location. */
3948
26bb91f3 3949static struct bp_location *
e049a4b5 3950allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
7cc221ef
DJ
3951{
3952 struct bp_location *loc, *loc_p;
3953
3954 loc = xmalloc (sizeof (struct bp_location));
3955 memset (loc, 0, sizeof (*loc));
3956
e049a4b5
DJ
3957 loc->owner = bpt;
3958
3959 switch (bp_type)
3960 {
3961 case bp_breakpoint:
3962 case bp_until:
3963 case bp_finish:
3964 case bp_longjmp:
3965 case bp_longjmp_resume:
3966 case bp_step_resume:
3967 case bp_through_sigtramp:
3968 case bp_watchpoint_scope:
3969 case bp_call_dummy:
3970 case bp_shlib_event:
3971 case bp_thread_event:
3972 case bp_overlay_event:
3973 case bp_catch_load:
3974 case bp_catch_unload:
3975 loc->loc_type = bp_loc_software_breakpoint;
3976 break;
3977 case bp_hardware_breakpoint:
3978 loc->loc_type = bp_loc_hardware_breakpoint;
3979 break;
3980 case bp_hardware_watchpoint:
3981 case bp_read_watchpoint:
3982 case bp_access_watchpoint:
3983 loc->loc_type = bp_loc_hardware_watchpoint;
3984 break;
3985 case bp_watchpoint:
3986 case bp_catch_fork:
3987 case bp_catch_vfork:
3988 case bp_catch_exec:
3989 case bp_catch_catch:
3990 case bp_catch_throw:
3991 loc->loc_type = bp_loc_other;
3992 break;
3993 default:
3994 internal_error (__FILE__, __LINE__, "unknown breakpoint type");
3995 }
3996
7cc221ef
DJ
3997 /* Add this breakpoint to the end of the chain. */
3998
3999 loc_p = bp_location_chain;
4000 if (loc_p == 0)
4001 bp_location_chain = loc;
4002 else
4003 {
4004 while (loc_p->next)
4005 loc_p = loc_p->next;
4006 loc_p->next = loc;
4007 }
4008
4009 return loc;
4010}
4011
4d28f7a8
KB
4012/* set_raw_breakpoint() is a low level routine for allocating and
4013 partially initializing a breakpoint of type BPTYPE. The newly
4014 created breakpoint's address, section, source file name, and line
4015 number are provided by SAL. The newly created and partially
4016 initialized breakpoint is added to the breakpoint chain and
4017 is also returned as the value of this function.
c906108c 4018
4d28f7a8
KB
4019 It is expected that the caller will complete the initialization of
4020 the newly created breakpoint struct as well as output any status
4021 information regarding the creation of a new breakpoint. In
4022 particular, set_raw_breakpoint() does NOT set the breakpoint
4023 number! Care should be taken to not allow an error() to occur
4024 prior to completing the initialization of the breakpoint. If this
4025 should happen, a bogus breakpoint will be left on the chain. */
c906108c
SS
4026
4027struct breakpoint *
4d28f7a8 4028set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
c906108c 4029{
52f0bd74 4030 struct breakpoint *b, *b1;
c906108c
SS
4031
4032 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
4033 memset (b, 0, sizeof (*b));
e049a4b5 4034 b->loc = allocate_bp_location (b, bptype);
5cab636d
DJ
4035 b->loc->requested_address = sal.pc;
4036 b->loc->address = adjust_breakpoint_address (b->loc->requested_address);
c906108c
SS
4037 if (sal.symtab == NULL)
4038 b->source_file = NULL;
4039 else
4040 b->source_file = savestring (sal.symtab->filename,
4041 strlen (sal.symtab->filename));
cf3a9e5b 4042 b->loc->section = sal.section;
4d28f7a8 4043 b->type = bptype;
c906108c
SS
4044 b->language = current_language->la_language;
4045 b->input_radix = input_radix;
4046 b->thread = -1;
4047 b->line_number = sal.line;
b5de0fa7 4048 b->enable_state = bp_enabled;
c906108c
SS
4049 b->next = 0;
4050 b->silent = 0;
4051 b->ignore_count = 0;
4052 b->commands = NULL;
818dd999 4053 b->frame_id = null_frame_id;
c906108c
SS
4054 b->dll_pathname = NULL;
4055 b->triggered_dll_pathname = NULL;
4056 b->forked_inferior_pid = 0;
4057 b->exec_pathname = NULL;
3086aeae 4058 b->ops = NULL;
c906108c
SS
4059
4060 /* Add this breakpoint to the end of the chain
4061 so that a list of breakpoints will come out in order
4062 of increasing numbers. */
4063
4064 b1 = breakpoint_chain;
4065 if (b1 == 0)
4066 breakpoint_chain = b;
4067 else
4068 {
4069 while (b1->next)
4070 b1 = b1->next;
4071 b1->next = b;
4072 }
4073
9f60f21b 4074 check_duplicates (b);
c906108c
SS
4075 breakpoints_changed ();
4076
4077 return b;
4078}
4079
c2c6d25f
JM
4080
4081/* Note that the breakpoint object B describes a permanent breakpoint
4082 instruction, hard-wired into the inferior's code. */
4083void
4084make_breakpoint_permanent (struct breakpoint *b)
4085{
b5de0fa7 4086 b->enable_state = bp_permanent;
c2c6d25f
JM
4087
4088 /* By definition, permanent breakpoints are already present in the code. */
5cab636d 4089 b->loc->inserted = 1;
c2c6d25f
JM
4090}
4091
1900040c
MS
4092static struct breakpoint *
4093create_internal_breakpoint (CORE_ADDR address, enum bptype type)
4094{
4095 static int internal_breakpoint_number = -1;
4096 struct symtab_and_line sal;
4097 struct breakpoint *b;
4098
fe39c653 4099 init_sal (&sal); /* initialize to zeroes */
1900040c
MS
4100
4101 sal.pc = address;
4102 sal.section = find_pc_overlay (sal.pc);
4103
4104 b = set_raw_breakpoint (sal, type);
4105 b->number = internal_breakpoint_number--;
4106 b->disposition = disp_donttouch;
4107
4108 return b;
4109}
4110
c906108c
SS
4111
4112static void
fba45db2 4113create_longjmp_breakpoint (char *func_name)
c906108c 4114{
c906108c 4115 struct breakpoint *b;
1900040c 4116 struct minimal_symbol *m;
c906108c 4117
1900040c
MS
4118 if (func_name == NULL)
4119 b = create_internal_breakpoint (0, bp_longjmp_resume);
4120 else
c906108c 4121 {
5520a790 4122 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
c906108c 4123 return;
1900040c
MS
4124
4125 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
c906108c 4126 }
c906108c 4127
b5de0fa7 4128 b->enable_state = bp_disabled;
c906108c
SS
4129 b->silent = 1;
4130 if (func_name)
4fcf66da 4131 b->addr_string = xstrdup (func_name);
c906108c
SS
4132}
4133
53a5351d
JM
4134/* Call this routine when stepping and nexting to enable a breakpoint
4135 if we do a longjmp(). When we hit that breakpoint, call
c906108c
SS
4136 set_longjmp_resume_breakpoint() to figure out where we are going. */
4137
4138void
fba45db2 4139enable_longjmp_breakpoint (void)
c906108c 4140{
52f0bd74 4141 struct breakpoint *b;
c906108c
SS
4142
4143 ALL_BREAKPOINTS (b)
4144 if (b->type == bp_longjmp)
c5aa993b 4145 {
b5de0fa7 4146 b->enable_state = bp_enabled;
9f60f21b 4147 check_duplicates (b);
c5aa993b 4148 }
c906108c
SS
4149}
4150
4151void
fba45db2 4152disable_longjmp_breakpoint (void)
c906108c 4153{
52f0bd74 4154 struct breakpoint *b;
c906108c
SS
4155
4156 ALL_BREAKPOINTS (b)
c5aa993b 4157 if (b->type == bp_longjmp
c906108c 4158 || b->type == bp_longjmp_resume)
c5aa993b 4159 {
b5de0fa7 4160 b->enable_state = bp_disabled;
9f60f21b 4161 check_duplicates (b);
c5aa993b 4162 }
c906108c
SS
4163}
4164
1900040c
MS
4165static void
4166create_overlay_event_breakpoint (char *func_name)
4167{
4168 struct breakpoint *b;
4169 struct minimal_symbol *m;
4170
5520a790 4171 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
1900040c
MS
4172 return;
4173
4174 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
4175 bp_overlay_event);
4176 b->addr_string = xstrdup (func_name);
4177
4178 if (overlay_debugging == ovly_auto)
c02f5703
MS
4179 {
4180 b->enable_state = bp_enabled;
4181 overlay_events_enabled = 1;
4182 }
1900040c 4183 else
c02f5703
MS
4184 {
4185 b->enable_state = bp_disabled;
4186 overlay_events_enabled = 0;
4187 }
1900040c
MS
4188}
4189
4190void
4191enable_overlay_breakpoints (void)
4192{
52f0bd74 4193 struct breakpoint *b;
1900040c
MS
4194
4195 ALL_BREAKPOINTS (b)
4196 if (b->type == bp_overlay_event)
4197 {
4198 b->enable_state = bp_enabled;
4199 check_duplicates (b);
c02f5703 4200 overlay_events_enabled = 1;
1900040c
MS
4201 }
4202}
4203
4204void
4205disable_overlay_breakpoints (void)
4206{
52f0bd74 4207 struct breakpoint *b;
1900040c
MS
4208
4209 ALL_BREAKPOINTS (b)
4210 if (b->type == bp_overlay_event)
4211 {
4212 b->enable_state = bp_disabled;
4213 check_duplicates (b);
c02f5703 4214 overlay_events_enabled = 0;
1900040c
MS
4215 }
4216}
4217
c4093a6a 4218struct breakpoint *
fba45db2 4219create_thread_event_breakpoint (CORE_ADDR address)
c4093a6a
JM
4220{
4221 struct breakpoint *b;
c4093a6a 4222
1900040c 4223 b = create_internal_breakpoint (address, bp_thread_event);
c4093a6a 4224
b5de0fa7 4225 b->enable_state = bp_enabled;
c4093a6a 4226 /* addr_string has to be used or breakpoint_re_set will delete me. */
5cab636d 4227 xasprintf (&b->addr_string, "*0x%s", paddr (b->loc->address));
c4093a6a
JM
4228
4229 return b;
4230}
4231
4232void
4233remove_thread_event_breakpoints (void)
4234{
4235 struct breakpoint *b, *temp;
4236
4237 ALL_BREAKPOINTS_SAFE (b, temp)
4238 if (b->type == bp_thread_event)
4239 delete_breakpoint (b);
4240}
4241
c906108c
SS
4242#ifdef SOLIB_ADD
4243void
fba45db2 4244remove_solib_event_breakpoints (void)
c906108c 4245{
52f0bd74 4246 struct breakpoint *b, *temp;
c906108c
SS
4247
4248 ALL_BREAKPOINTS_SAFE (b, temp)
4249 if (b->type == bp_shlib_event)
3172dc30 4250 delete_breakpoint (b);
c906108c
SS
4251}
4252
c2c6d25f 4253struct breakpoint *
fba45db2 4254create_solib_event_breakpoint (CORE_ADDR address)
c906108c
SS
4255{
4256 struct breakpoint *b;
c2c6d25f 4257
1900040c 4258 b = create_internal_breakpoint (address, bp_shlib_event);
c2c6d25f 4259 return b;
c906108c
SS
4260}
4261
104c1213
JM
4262/* Disable any breakpoints that are on code in shared libraries. Only
4263 apply to enabled breakpoints, disabled ones can just stay disabled. */
4264
c906108c 4265void
fba45db2 4266disable_breakpoints_in_shlibs (int silent)
c906108c 4267{
c5aa993b
JM
4268 struct breakpoint *b;
4269 int disabled_shlib_breaks = 0;
c906108c
SS
4270
4271 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4272 ALL_BREAKPOINTS (b)
c5aa993b 4273 {
c906108c 4274#if defined (PC_SOLIB)
c5aa993b
JM
4275 if (((b->type == bp_breakpoint) ||
4276 (b->type == bp_hardware_breakpoint)) &&
468d015d 4277 breakpoint_enabled (b) &&
5cab636d
DJ
4278 !b->loc->duplicate &&
4279 PC_SOLIB (b->loc->address))
c5aa993b 4280 {
b5de0fa7 4281 b->enable_state = bp_shlib_disabled;
c5aa993b
JM
4282 if (!silent)
4283 {
4284 if (!disabled_shlib_breaks)
4285 {
4286 target_terminal_ours_for_output ();
53a5351d 4287 warning ("Temporarily disabling shared library breakpoints:");
c5aa993b
JM
4288 }
4289 disabled_shlib_breaks = 1;
53a5351d 4290 warning ("breakpoint #%d ", b->number);
c5aa993b
JM
4291 }
4292 }
c906108c 4293#endif
c5aa993b 4294 }
c906108c
SS
4295}
4296
4297/* Try to reenable any breakpoints in shared libraries. */
4298void
fba45db2 4299re_enable_breakpoints_in_shlibs (void)
c906108c
SS
4300{
4301 struct breakpoint *b;
4302
4303 ALL_BREAKPOINTS (b)
b5de0fa7 4304 if (b->enable_state == bp_shlib_disabled)
c5aa993b 4305 {
d29caefc 4306 char buf[1], *lib;
c906108c 4307
c5aa993b
JM
4308 /* Do not reenable the breakpoint if the shared library
4309 is still not mapped in. */
d29caefc
DJ
4310 lib = PC_SOLIB (b->loc->address);
4311 if (lib != NULL && target_read_memory (b->loc->address, buf, 1) == 0)
b5de0fa7 4312 b->enable_state = bp_enabled;
c5aa993b 4313 }
c906108c
SS
4314}
4315
4316#endif
4317
4318static void
fba45db2
KB
4319solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4320 char *cond_string, enum bptype bp_kind)
c906108c 4321{
c5aa993b 4322 struct breakpoint *b;
c906108c 4323 struct symtabs_and_lines sals;
c5aa993b
JM
4324 struct cleanup *old_chain;
4325 struct cleanup *canonical_strings_chain = NULL;
c5aa993b
JM
4326 char *addr_start = hookname;
4327 char *addr_end = NULL;
4328 char **canonical = (char **) NULL;
4329 int thread = -1; /* All threads. */
4330
c906108c 4331 /* Set a breakpoint on the specified hook. */
68219205 4332 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical, NULL);
c906108c 4333 addr_end = hookname;
c5aa993b 4334
c906108c
SS
4335 if (sals.nelts == 0)
4336 {
4337 warning ("Unable to set a breakpoint on dynamic linker callback.");
4338 warning ("Suggest linking with /opt/langtools/lib/end.o.");
4339 warning ("GDB will be unable to track shl_load/shl_unload calls");
4340 return;
4341 }
4342 if (sals.nelts != 1)
4343 {
53a5351d 4344 warning ("Unable to set unique breakpoint on dynamic linker callback.");
c906108c
SS
4345 warning ("GDB will be unable to track shl_load/shl_unload calls");
4346 return;
4347 }
4348
53a5351d
JM
4349 /* Make sure that all storage allocated in decode_line_1 gets freed
4350 in case the following errors out. */
b8c9b27d 4351 old_chain = make_cleanup (xfree, sals.sals);
c5aa993b 4352 if (canonical != (char **) NULL)
c906108c 4353 {
b8c9b27d 4354 make_cleanup (xfree, canonical);
c906108c
SS
4355 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4356 if (canonical[0] != NULL)
b8c9b27d 4357 make_cleanup (xfree, canonical[0]);
c906108c 4358 }
c5aa993b 4359
c906108c 4360 resolve_sal_pc (&sals.sals[0]);
c5aa993b 4361
c906108c 4362 /* Remove the canonical strings from the cleanup, they are needed below. */
c5aa993b 4363 if (canonical != (char **) NULL)
c906108c 4364 discard_cleanups (canonical_strings_chain);
c5aa993b 4365
4d28f7a8 4366 b = set_raw_breakpoint (sals.sals[0], bp_kind);
c906108c
SS
4367 set_breakpoint_count (breakpoint_count + 1);
4368 b->number = breakpoint_count;
4369 b->cond = NULL;
53a5351d
JM
4370 b->cond_string = (cond_string == NULL) ?
4371 NULL : savestring (cond_string, strlen (cond_string));
c906108c 4372 b->thread = thread;
c5aa993b
JM
4373
4374 if (canonical != (char **) NULL && canonical[0] != NULL)
c906108c
SS
4375 b->addr_string = canonical[0];
4376 else if (addr_start)
4377 b->addr_string = savestring (addr_start, addr_end - addr_start);
c5aa993b 4378
b5de0fa7
EZ
4379 b->enable_state = bp_enabled;
4380 b->disposition = tempflag ? disp_del : disp_donttouch;
c5aa993b 4381
c906108c
SS
4382 if (dll_pathname == NULL)
4383 b->dll_pathname = NULL;
4384 else
4385 {
4386 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4387 strcpy (b->dll_pathname, dll_pathname);
4388 }
c5aa993b 4389
c906108c
SS
4390 mention (b);
4391 do_cleanups (old_chain);
4392}
4393
4394void
fba45db2
KB
4395create_solib_load_event_breakpoint (char *hookname, int tempflag,
4396 char *dll_pathname, char *cond_string)
c906108c 4397{
53a5351d
JM
4398 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4399 cond_string, bp_catch_load);
c906108c
SS
4400}
4401
4402void
fba45db2
KB
4403create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4404 char *dll_pathname, char *cond_string)
c906108c 4405{
53a5351d
JM
4406 solib_load_unload_1 (hookname,tempflag, dll_pathname,
4407 cond_string, bp_catch_unload);
c906108c
SS
4408}
4409
4410static void
fba45db2
KB
4411create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4412 enum bptype bp_kind)
c906108c 4413{
c5aa993b
JM
4414 struct symtab_and_line sal;
4415 struct breakpoint *b;
4416 int thread = -1; /* All threads. */
4417
fe39c653 4418 init_sal (&sal);
c906108c
SS
4419 sal.pc = 0;
4420 sal.symtab = NULL;
4421 sal.line = 0;
c5aa993b 4422
4d28f7a8 4423 b = set_raw_breakpoint (sal, bp_kind);
c906108c
SS
4424 set_breakpoint_count (breakpoint_count + 1);
4425 b->number = breakpoint_count;
4426 b->cond = NULL;
53a5351d
JM
4427 b->cond_string = (cond_string == NULL) ?
4428 NULL : savestring (cond_string, strlen (cond_string));
c906108c
SS
4429 b->thread = thread;
4430 b->addr_string = NULL;
b5de0fa7
EZ
4431 b->enable_state = bp_enabled;
4432 b->disposition = tempflag ? disp_del : disp_donttouch;
c906108c 4433 b->forked_inferior_pid = 0;
c5aa993b 4434
c906108c
SS
4435 mention (b);
4436}
4437
4438void
fba45db2 4439create_fork_event_catchpoint (int tempflag, char *cond_string)
c906108c
SS
4440{
4441 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4442}
c5aa993b 4443
c906108c 4444void
fba45db2 4445create_vfork_event_catchpoint (int tempflag, char *cond_string)
c906108c
SS
4446{
4447 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4448}
4449
4450void
fba45db2 4451create_exec_event_catchpoint (int tempflag, char *cond_string)
c906108c 4452{
c5aa993b
JM
4453 struct symtab_and_line sal;
4454 struct breakpoint *b;
4455 int thread = -1; /* All threads. */
c906108c 4456
fe39c653 4457 init_sal (&sal);
c906108c
SS
4458 sal.pc = 0;
4459 sal.symtab = NULL;
4460 sal.line = 0;
4461
4d28f7a8 4462 b = set_raw_breakpoint (sal, bp_catch_exec);
c906108c
SS
4463 set_breakpoint_count (breakpoint_count + 1);
4464 b->number = breakpoint_count;
4465 b->cond = NULL;
53a5351d
JM
4466 b->cond_string = (cond_string == NULL) ?
4467 NULL : savestring (cond_string, strlen (cond_string));
c906108c
SS
4468 b->thread = thread;
4469 b->addr_string = NULL;
b5de0fa7
EZ
4470 b->enable_state = bp_enabled;
4471 b->disposition = tempflag ? disp_del : disp_donttouch;
c906108c 4472
c906108c
SS
4473 mention (b);
4474}
4475
4476static int
fba45db2 4477hw_breakpoint_used_count (void)
c906108c 4478{
52f0bd74 4479 struct breakpoint *b;
c906108c
SS
4480 int i = 0;
4481
4482 ALL_BREAKPOINTS (b)
c5aa993b 4483 {
b5de0fa7 4484 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
c5aa993b
JM
4485 i++;
4486 }
c906108c
SS
4487
4488 return i;
4489}
4490
4491static int
fba45db2 4492hw_watchpoint_used_count (enum bptype type, int *other_type_used)
c906108c 4493{
52f0bd74 4494 struct breakpoint *b;
c906108c
SS
4495 int i = 0;
4496
4497 *other_type_used = 0;
4498 ALL_BREAKPOINTS (b)
c5aa993b 4499 {
468d015d 4500 if (breakpoint_enabled (b))
c5aa993b
JM
4501 {
4502 if (b->type == type)
4503 i++;
4504 else if ((b->type == bp_hardware_watchpoint ||
4505 b->type == bp_read_watchpoint ||
468d015d 4506 b->type == bp_access_watchpoint))
c5aa993b
JM
4507 *other_type_used = 1;
4508 }
4509 }
c906108c
SS
4510 return i;
4511}
4512
53a5351d
JM
4513/* Call this after hitting the longjmp() breakpoint. Use this to set
4514 a new breakpoint at the target of the jmp_buf.
c906108c 4515
53a5351d
JM
4516 FIXME - This ought to be done by setting a temporary breakpoint
4517 that gets deleted automatically... */
c906108c
SS
4518
4519void
818dd999 4520set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
c906108c 4521{
52f0bd74 4522 struct breakpoint *b;
c906108c
SS
4523
4524 ALL_BREAKPOINTS (b)
4525 if (b->type == bp_longjmp_resume)
c5aa993b 4526 {
5cab636d
DJ
4527 b->loc->requested_address = pc;
4528 b->loc->address = adjust_breakpoint_address (b->loc->requested_address);
b5de0fa7 4529 b->enable_state = bp_enabled;
818dd999 4530 b->frame_id = frame_id;
9f60f21b 4531 check_duplicates (b);
c5aa993b
JM
4532 return;
4533 }
c906108c
SS
4534}
4535
4536void
fba45db2 4537disable_watchpoints_before_interactive_call_start (void)
c906108c 4538{
c5aa993b 4539 struct breakpoint *b;
c906108c
SS
4540
4541 ALL_BREAKPOINTS (b)
c5aa993b
JM
4542 {
4543 if (((b->type == bp_watchpoint)
4544 || (b->type == bp_hardware_watchpoint)
4545 || (b->type == bp_read_watchpoint)
4546 || (b->type == bp_access_watchpoint)
4547 || ep_is_exception_catchpoint (b))
468d015d 4548 && breakpoint_enabled (b))
c5aa993b 4549 {
b5de0fa7 4550 b->enable_state = bp_call_disabled;
9f60f21b 4551 check_duplicates (b);
c5aa993b
JM
4552 }
4553 }
c906108c
SS
4554}
4555
4556void
fba45db2 4557enable_watchpoints_after_interactive_call_stop (void)
c906108c 4558{
c5aa993b 4559 struct breakpoint *b;
c906108c
SS
4560
4561 ALL_BREAKPOINTS (b)
c5aa993b
JM
4562 {
4563 if (((b->type == bp_watchpoint)
4564 || (b->type == bp_hardware_watchpoint)
4565 || (b->type == bp_read_watchpoint)
4566 || (b->type == bp_access_watchpoint)
4567 || ep_is_exception_catchpoint (b))
b5de0fa7 4568 && (b->enable_state == bp_call_disabled))
c5aa993b 4569 {
b5de0fa7 4570 b->enable_state = bp_enabled;
9f60f21b 4571 check_duplicates (b);
c5aa993b
JM
4572 }
4573 }
c906108c
SS
4574}
4575
4576
4577/* Set a breakpoint that will evaporate an end of command
4578 at address specified by SAL.
4579 Restrict it to frame FRAME if FRAME is nonzero. */
4580
4581struct breakpoint *
818dd999 4582set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
fba45db2 4583 enum bptype type)
c906108c 4584{
52f0bd74 4585 struct breakpoint *b;
4d28f7a8 4586 b = set_raw_breakpoint (sal, type);
b5de0fa7
EZ
4587 b->enable_state = bp_enabled;
4588 b->disposition = disp_donttouch;
818dd999 4589 b->frame_id = frame_id;
c906108c
SS
4590
4591 /* If we're debugging a multi-threaded program, then we
4592 want momentary breakpoints to be active in only a
4593 single thread of control. */
39f77062
KB
4594 if (in_thread_list (inferior_ptid))
4595 b->thread = pid_to_thread_id (inferior_ptid);
c906108c
SS
4596
4597 return b;
4598}
c906108c 4599\f
c5aa993b 4600
c906108c
SS
4601/* Tell the user we have just set a breakpoint B. */
4602
4603static void
fba45db2 4604mention (struct breakpoint *b)
c906108c
SS
4605{
4606 int say_where = 0;
3b31d625 4607 struct cleanup *old_chain, *ui_out_chain;
8b93c638
JM
4608 struct ui_stream *stb;
4609
4610 stb = ui_out_stream_new (uiout);
b02eeafb 4611 old_chain = make_cleanup_ui_out_stream_delete (stb);
c906108c
SS
4612
4613 /* FIXME: This is misplaced; mention() is called by things (like hitting a
4614 watchpoint) other than breakpoint creation. It should be possible to
4615 clean this up and at the same time replace the random calls to
4616 breakpoint_changed with this hook, as has already been done for
4617 delete_breakpoint_hook and so on. */
4618 if (create_breakpoint_hook)
4619 create_breakpoint_hook (b);
104c1213 4620 breakpoint_create_event (b->number);
c906108c 4621
3086aeae
DJ
4622 if (b->ops != NULL && b->ops->print_mention != NULL)
4623 b->ops->print_mention (b);
4624 else
4625 switch (b->type)
4626 {
4627 case bp_none:
4628 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4629 break;
4630 case bp_watchpoint:
4631 ui_out_text (uiout, "Watchpoint ");
4632 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4633 ui_out_field_int (uiout, "number", b->number);
4634 ui_out_text (uiout, ": ");
4635 print_expression (b->exp, stb->stream);
4636 ui_out_field_stream (uiout, "exp", stb);
4637 do_cleanups (ui_out_chain);
4638 break;
4639 case bp_hardware_watchpoint:
4640 ui_out_text (uiout, "Hardware watchpoint ");
4641 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4642 ui_out_field_int (uiout, "number", b->number);
4643 ui_out_text (uiout, ": ");
4644 print_expression (b->exp, stb->stream);
4645 ui_out_field_stream (uiout, "exp", stb);
4646 do_cleanups (ui_out_chain);
4647 break;
4648 case bp_read_watchpoint:
4649 ui_out_text (uiout, "Hardware read watchpoint ");
4650 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4651 ui_out_field_int (uiout, "number", b->number);
4652 ui_out_text (uiout, ": ");
4653 print_expression (b->exp, stb->stream);
4654 ui_out_field_stream (uiout, "exp", stb);
4655 do_cleanups (ui_out_chain);
4656 break;
4657 case bp_access_watchpoint:
4658 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4659 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4660 ui_out_field_int (uiout, "number", b->number);
4661 ui_out_text (uiout, ": ");
4662 print_expression (b->exp, stb->stream);
4663 ui_out_field_stream (uiout, "exp", stb);
4664 do_cleanups (ui_out_chain);
4665 break;
4666 case bp_breakpoint:
4667 if (ui_out_is_mi_like_p (uiout))
4668 {
4669 say_where = 0;
4670 break;
4671 }
4672 printf_filtered ("Breakpoint %d", b->number);
4673 say_where = 1;
4674 break;
4675 case bp_hardware_breakpoint:
4676 if (ui_out_is_mi_like_p (uiout))
4677 {
4678 say_where = 0;
4679 break;
4680 }
4681 printf_filtered ("Hardware assisted breakpoint %d", b->number);
4682 say_where = 1;
4683 break;
4684 case bp_catch_load:
4685 case bp_catch_unload:
4686 printf_filtered ("Catchpoint %d (%s %s)",
4687 b->number,
4688 (b->type == bp_catch_load) ? "load" : "unload",
4689 (b->dll_pathname != NULL) ?
4690 b->dll_pathname : "<any library>");
4691 break;
4692 case bp_catch_fork:
4693 case bp_catch_vfork:
4694 printf_filtered ("Catchpoint %d (%s)",
4695 b->number,
4696 (b->type == bp_catch_fork) ? "fork" : "vfork");
4697 break;
4698 case bp_catch_exec:
4699 printf_filtered ("Catchpoint %d (exec)",
4700 b->number);
4701 break;
4702 case bp_catch_catch:
4703 case bp_catch_throw:
4704 printf_filtered ("Catchpoint %d (%s)",
4705 b->number,
4706 (b->type == bp_catch_catch) ? "catch" : "throw");
4707 break;
4708
4709 case bp_until:
4710 case bp_finish:
4711 case bp_longjmp:
4712 case bp_longjmp_resume:
4713 case bp_step_resume:
4714 case bp_through_sigtramp:
4715 case bp_call_dummy:
4716 case bp_watchpoint_scope:
4717 case bp_shlib_event:
4718 case bp_thread_event:
4719 case bp_overlay_event:
4720 break;
4721 }
c906108c 4722
c906108c
SS
4723 if (say_where)
4724 {
4725 if (addressprint || b->source_file == NULL)
4726 {
4727 printf_filtered (" at ");
5cab636d 4728 print_address_numeric (b->loc->address, 1, gdb_stdout);
c906108c
SS
4729 }
4730 if (b->source_file)
4731 printf_filtered (": file %s, line %d.",
4732 b->source_file, b->line_number);
c906108c 4733 }
8b93c638 4734 do_cleanups (old_chain);
9dc5e2a9 4735 if (ui_out_is_mi_like_p (uiout))
fb40c209 4736 return;
c906108c
SS
4737 printf_filtered ("\n");
4738}
c906108c 4739\f
c5aa993b 4740
c3f6f71d
JM
4741/* Add SALS.nelts breakpoints to the breakpoint table. For each
4742 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4743 COND[i] and COND_STRING[i] values.
4744
4745 NOTE: If the function succeeds, the caller is expected to cleanup
4746 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4747 array contents). If the function fails (error() is called), the
4748 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4749 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
4750
4751static void
c3f6f71d
JM
4752create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4753 struct expression **cond, char **cond_string,
4754 enum bptype type, enum bpdisp disposition,
4755 int thread, int ignore_count, int from_tty)
c906108c 4756{
c3f6f71d
JM
4757 if (type == bp_hardware_breakpoint)
4758 {
4759 int i = hw_breakpoint_used_count ();
4760 int target_resources_ok =
4761 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4762 i + sals.nelts, 0);
4763 if (target_resources_ok == 0)
4764 error ("No hardware breakpoint support in the target.");
4765 else if (target_resources_ok < 0)
4766 error ("Hardware breakpoints used exceeds limit.");
4767 }
c906108c 4768
c3f6f71d
JM
4769 /* Now set all the breakpoints. */
4770 {
4771 int i;
4772 for (i = 0; i < sals.nelts; i++)
4773 {
4774 struct breakpoint *b;
4775 struct symtab_and_line sal = sals.sals[i];
c906108c 4776
c3f6f71d
JM
4777 if (from_tty)
4778 describe_other_breakpoints (sal.pc, sal.section);
4779
4d28f7a8 4780 b = set_raw_breakpoint (sal, type);
c3f6f71d
JM
4781 set_breakpoint_count (breakpoint_count + 1);
4782 b->number = breakpoint_count;
c3f6f71d
JM
4783 b->cond = cond[i];
4784 b->thread = thread;
d8ef46f5
DJ
4785 if (addr_string[i])
4786 b->addr_string = addr_string[i];
4787 else
4788 /* addr_string has to be used or breakpoint_re_set will delete
4789 me. */
5cab636d 4790 xasprintf (&b->addr_string, "*0x%s", paddr (b->loc->address));
c3f6f71d
JM
4791 b->cond_string = cond_string[i];
4792 b->ignore_count = ignore_count;
b5de0fa7 4793 b->enable_state = bp_enabled;
c3f6f71d
JM
4794 b->disposition = disposition;
4795 mention (b);
4796 }
4797 }
4798}
c906108c 4799
c3f6f71d
JM
4800/* Parse ARG which is assumed to be a SAL specification possibly
4801 followed by conditionals. On return, SALS contains an array of SAL
4802 addresses found. ADDR_STRING contains a vector of (canonical)
4803 address strings. ARG points to the end of the SAL. */
c906108c 4804
b9362cc7 4805static void
c3f6f71d
JM
4806parse_breakpoint_sals (char **address,
4807 struct symtabs_and_lines *sals,
4808 char ***addr_string)
4809{
4810 char *addr_start = *address;
4811 *addr_string = NULL;
4812 /* If no arg given, or if first arg is 'if ', use the default
4813 breakpoint. */
4814 if ((*address) == NULL
4815 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c
SS
4816 {
4817 if (default_breakpoint_valid)
4818 {
c3f6f71d 4819 struct symtab_and_line sal;
fe39c653 4820 init_sal (&sal); /* initialize to zeroes */
c3f6f71d 4821 sals->sals = (struct symtab_and_line *)
c906108c
SS
4822 xmalloc (sizeof (struct symtab_and_line));
4823 sal.pc = default_breakpoint_address;
4824 sal.line = default_breakpoint_line;
4825 sal.symtab = default_breakpoint_symtab;
c5aa993b 4826 sal.section = find_pc_overlay (sal.pc);
c3f6f71d
JM
4827 sals->sals[0] = sal;
4828 sals->nelts = 1;
c906108c
SS
4829 }
4830 else
4831 error ("No default breakpoint address now.");
4832 }
4833 else
4834 {
c906108c 4835 /* Force almost all breakpoints to be in terms of the
c5aa993b
JM
4836 current_source_symtab (which is decode_line_1's default). This
4837 should produce the results we want almost all of the time while
1aeae86e
AF
4838 leaving default_breakpoint_* alone.
4839 ObjC: However, don't match an Objective-C method name which
4840 may have a '+' or '-' succeeded by a '[' */
0378c332 4841
c214a6fd 4842 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
0378c332 4843
c906108c 4844 if (default_breakpoint_valid
0378c332 4845 && (!cursal.symtab
1aeae86e
AF
4846 || ((strchr ("+-", (*address)[0]) != NULL)
4847 && ((*address)[1] != '['))))
c3f6f71d 4848 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
68219205 4849 default_breakpoint_line, addr_string, NULL);
c906108c 4850 else
68219205 4851 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0, addr_string, NULL);
c906108c 4852 }
c3f6f71d
JM
4853 /* For any SAL that didn't have a canonical string, fill one in. */
4854 if (sals->nelts > 0 && *addr_string == NULL)
4855 *addr_string = xcalloc (sals->nelts, sizeof (char **));
4856 if (addr_start != (*address))
c906108c 4857 {
c3f6f71d
JM
4858 int i;
4859 for (i = 0; i < sals->nelts; i++)
c906108c 4860 {
c3f6f71d
JM
4861 /* Add the string if not present. */
4862 if ((*addr_string)[i] == NULL)
4863 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
c906108c
SS
4864 }
4865 }
c3f6f71d 4866}
c906108c 4867
c906108c 4868
c3f6f71d
JM
4869/* Convert each SAL into a real PC. Verify that the PC can be
4870 inserted as a breakpoint. If it can't throw an error. */
c906108c 4871
b9362cc7 4872static void
c3f6f71d
JM
4873breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
4874 char *address)
4875{
4876 int i;
4877 for (i = 0; i < sals->nelts; i++)
4878 {
4879 resolve_sal_pc (&sals->sals[i]);
c906108c
SS
4880
4881 /* It's possible for the PC to be nonzero, but still an illegal
4882 value on some targets.
4883
4884 For example, on HP-UX if you start gdb, and before running the
4885 inferior you try to set a breakpoint on a shared library function
4886 "foo" where the inferior doesn't call "foo" directly but does
4887 pass its address to another function call, then we do find a
4888 minimal symbol for the "foo", but it's address is invalid.
4889 (Appears to be an index into a table that the loader sets up
4890 when the inferior is run.)
4891
4892 Give the target a chance to bless sals.sals[i].pc before we
4893 try to make a breakpoint for it. */
c3f6f71d 4894 if (PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
c5aa993b 4895 {
c3f6f71d
JM
4896 if (address == NULL)
4897 error ("Cannot break without a running program.");
4898 else
4899 error ("Cannot break on %s without a running program.",
4900 address);
c5aa993b 4901 }
c3f6f71d
JM
4902 }
4903}
4904
4905/* Set a breakpoint according to ARG (function, linenum or *address)
4906 flag: first bit : 0 non-temporary, 1 temporary.
4907 second bit : 0 normal breakpoint, 1 hardware breakpoint. */
c5aa993b 4908
c3f6f71d 4909static void
fba45db2 4910break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d
JM
4911{
4912 int tempflag, hardwareflag;
4913 struct symtabs_and_lines sals;
52f0bd74 4914 struct expression **cond = 0;
c3f6f71d
JM
4915 /* Pointers in arg to the start, and one past the end, of the
4916 condition. */
4917 char **cond_string = (char **) NULL;
4918 char *addr_start = arg;
4919 char **addr_string;
4920 struct cleanup *old_chain;
4921 struct cleanup *breakpoint_chain = NULL;
4922 int i;
4923 int thread = -1;
4924 int ignore_count = 0;
4925
4926 hardwareflag = flag & BP_HARDWAREFLAG;
4927 tempflag = flag & BP_TEMPFLAG;
c906108c 4928
c3f6f71d
JM
4929 sals.sals = NULL;
4930 sals.nelts = 0;
4931 addr_string = NULL;
4932 parse_breakpoint_sals (&arg, &sals, &addr_string);
4933
4934 if (!sals.nelts)
4935 return;
4936
4937 /* Create a chain of things that always need to be cleaned up. */
4938 old_chain = make_cleanup (null_cleanup, 0);
4939
4940 /* Make sure that all storage allocated to SALS gets freed. */
b8c9b27d 4941 make_cleanup (xfree, sals.sals);
c3f6f71d
JM
4942
4943 /* Cleanup the addr_string array but not its contents. */
b8c9b27d 4944 make_cleanup (xfree, addr_string);
c3f6f71d
JM
4945
4946 /* Allocate space for all the cond expressions. */
4947 cond = xcalloc (sals.nelts, sizeof (struct expression *));
b8c9b27d 4948 make_cleanup (xfree, cond);
c3f6f71d
JM
4949
4950 /* Allocate space for all the cond strings. */
4951 cond_string = xcalloc (sals.nelts, sizeof (char **));
b8c9b27d 4952 make_cleanup (xfree, cond_string);
c3f6f71d
JM
4953
4954 /* ----------------------------- SNIP -----------------------------
4955 Anything added to the cleanup chain beyond this point is assumed
4956 to be part of a breakpoint. If the breakpoint create succeeds
4957 then the memory is not reclaimed. */
4958 breakpoint_chain = make_cleanup (null_cleanup, 0);
4959
4960 /* Mark the contents of the addr_string for cleanup. These go on
4961 the breakpoint_chain and only occure if the breakpoint create
4962 fails. */
4963 for (i = 0; i < sals.nelts; i++)
4964 {
4965 if (addr_string[i] != NULL)
b8c9b27d 4966 make_cleanup (xfree, addr_string[i]);
c3f6f71d
JM
4967 }
4968
4969 /* Resolve all line numbers to PC's and verify that the addresses
4970 are ok for the target. */
4971 breakpoint_sals_to_pc (&sals, addr_start);
4972
4973 /* Verify that condition can be parsed, before setting any
4974 breakpoints. Allocate a separate condition expression for each
4975 breakpoint. */
4976 thread = -1; /* No specific thread yet */
4977 for (i = 0; i < sals.nelts; i++)
4978 {
4979 char *tok = arg;
c906108c
SS
4980 while (tok && *tok)
4981 {
c3f6f71d
JM
4982 char *end_tok;
4983 int toklen;
4984 char *cond_start = NULL;
4985 char *cond_end = NULL;
c906108c
SS
4986 while (*tok == ' ' || *tok == '\t')
4987 tok++;
4988
4989 end_tok = tok;
4990
4991 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4992 end_tok++;
4993
4994 toklen = end_tok - tok;
4995
4996 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4997 {
4998 tok = cond_start = end_tok + 1;
c3f6f71d 4999 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
b8c9b27d 5000 make_cleanup (xfree, cond[i]);
c906108c 5001 cond_end = tok;
c3f6f71d 5002 cond_string[i] = savestring (cond_start, cond_end - cond_start);
b8c9b27d 5003 make_cleanup (xfree, cond_string[i]);
c906108c
SS
5004 }
5005 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5006 {
5007 char *tmptok;
5008
5009 tok = end_tok + 1;
5010 tmptok = tok;
5011 thread = strtol (tok, &tok, 0);
5012 if (tok == tmptok)
5013 error ("Junk after thread keyword.");
5014 if (!valid_thread_id (thread))
5015 error ("Unknown thread %d\n", thread);
5016 }
5017 else
5018 error ("Junk at end of arguments.");
5019 }
5020 }
c906108c 5021
c3f6f71d
JM
5022 create_breakpoints (sals, addr_string, cond, cond_string,
5023 hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
b5de0fa7 5024 tempflag ? disp_del : disp_donttouch,
c3f6f71d
JM
5025 thread, ignore_count, from_tty);
5026
5027 if (sals.nelts > 1)
5028 {
5029 warning ("Multiple breakpoints were set.");
5030 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
c906108c 5031 }
c3f6f71d
JM
5032 /* That's it. Discard the cleanups for data inserted into the
5033 breakpoint. */
5034 discard_cleanups (breakpoint_chain);
5035 /* But cleanup everything else. */
5036 do_cleanups (old_chain);
5037}
c906108c 5038
c3f6f71d
JM
5039/* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
5040 linenum or *address) with COND and IGNORE_COUNT. */
c906108c 5041
c3f6f71d
JM
5042struct captured_breakpoint_args
5043 {
5044 char *address;
5045 char *condition;
5046 int hardwareflag;
5047 int tempflag;
5048 int thread;
5049 int ignore_count;
5050 };
5051
5052static int
5053do_captured_breakpoint (void *data)
5054{
5055 struct captured_breakpoint_args *args = data;
5056 struct symtabs_and_lines sals;
52f0bd74 5057 struct expression **cond;
c3f6f71d
JM
5058 struct cleanup *old_chain;
5059 struct cleanup *breakpoint_chain = NULL;
5060 int i;
5061 char **addr_string;
5062 char **cond_string;
5063
5064 char *address_end;
5065
5066 /* Parse the source and lines spec. Delay check that the expression
5067 didn't contain trailing garbage until after cleanups are in
5068 place. */
5069 sals.sals = NULL;
5070 sals.nelts = 0;
5071 address_end = args->address;
5072 addr_string = NULL;
5073 parse_breakpoint_sals (&address_end, &sals, &addr_string);
5074
5075 if (!sals.nelts)
5076 return GDB_RC_NONE;
5077
5078 /* Create a chain of things at always need to be cleaned up. */
5079 old_chain = make_cleanup (null_cleanup, 0);
5080
5081 /* Always have a addr_string array, even if it is empty. */
b8c9b27d 5082 make_cleanup (xfree, addr_string);
c3f6f71d
JM
5083
5084 /* Make sure that all storage allocated to SALS gets freed. */
b8c9b27d 5085 make_cleanup (xfree, sals.sals);
c3f6f71d
JM
5086
5087 /* Allocate space for all the cond expressions. */
5088 cond = xcalloc (sals.nelts, sizeof (struct expression *));
b8c9b27d 5089 make_cleanup (xfree, cond);
c3f6f71d
JM
5090
5091 /* Allocate space for all the cond strings. */
5092 cond_string = xcalloc (sals.nelts, sizeof (char **));
b8c9b27d 5093 make_cleanup (xfree, cond_string);
c3f6f71d
JM
5094
5095 /* ----------------------------- SNIP -----------------------------
5096 Anything added to the cleanup chain beyond this point is assumed
5097 to be part of a breakpoint. If the breakpoint create goes
5098 through then that memory is not cleaned up. */
5099 breakpoint_chain = make_cleanup (null_cleanup, 0);
5100
5101 /* Mark the contents of the addr_string for cleanup. These go on
5102 the breakpoint_chain and only occure if the breakpoint create
5103 fails. */
c906108c
SS
5104 for (i = 0; i < sals.nelts; i++)
5105 {
c3f6f71d 5106 if (addr_string[i] != NULL)
b8c9b27d 5107 make_cleanup (xfree, addr_string[i]);
c906108c
SS
5108 }
5109
c3f6f71d
JM
5110 /* Wait until now before checking for garbage at the end of the
5111 address. That way cleanups can take care of freeing any
5112 memory. */
5113 if (*address_end != '\0')
5114 error ("Garbage %s following breakpoint address", address_end);
5115
5116 /* Resolve all line numbers to PC's. */
5117 breakpoint_sals_to_pc (&sals, args->address);
5118
5119 /* Verify that conditions can be parsed, before setting any
5120 breakpoints. */
5121 for (i = 0; i < sals.nelts; i++)
c906108c 5122 {
c3f6f71d
JM
5123 if (args->condition != NULL)
5124 {
5125 char *tok = args->condition;
5126 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
5127 if (*tok != '\0')
5128 error ("Garbage %s follows condition", tok);
b8c9b27d 5129 make_cleanup (xfree, cond[i]);
c3f6f71d
JM
5130 cond_string[i] = xstrdup (args->condition);
5131 }
c906108c 5132 }
c3f6f71d
JM
5133
5134 create_breakpoints (sals, addr_string, cond, cond_string,
5135 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
b5de0fa7 5136 args->tempflag ? disp_del : disp_donttouch,
c3f6f71d
JM
5137 args->thread, args->ignore_count, 0/*from-tty*/);
5138
5139 /* That's it. Discard the cleanups for data inserted into the
5140 breakpoint. */
5141 discard_cleanups (breakpoint_chain);
5142 /* But cleanup everything else. */
c906108c 5143 do_cleanups (old_chain);
c3f6f71d 5144 return GDB_RC_OK;
c906108c
SS
5145}
5146
c3f6f71d
JM
5147enum gdb_rc
5148gdb_breakpoint (char *address, char *condition,
5149 int hardwareflag, int tempflag,
5150 int thread, int ignore_count)
5151{
5152 struct captured_breakpoint_args args;
5153 args.address = address;
5154 args.condition = condition;
5155 args.hardwareflag = hardwareflag;
5156 args.tempflag = tempflag;
5157 args.thread = thread;
5158 args.ignore_count = ignore_count;
5159 return catch_errors (do_captured_breakpoint, &args,
5160 NULL, RETURN_MASK_ALL);
5161}
5162
5163
c906108c 5164static void
fba45db2 5165break_at_finish_at_depth_command_1 (char *arg, int flag, int from_tty)
c906108c
SS
5166{
5167 struct frame_info *frame;
5168 CORE_ADDR low, high, selected_pc = 0;
7f7e9482
AC
5169 char *extra_args = NULL;
5170 char *level_arg;
c906108c
SS
5171 int extra_args_len = 0, if_arg = 0;
5172
5173 if (!arg ||
5174 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5175 {
5176
5177 if (default_breakpoint_valid)
5178 {
6e7f8b9c 5179 if (deprecated_selected_frame)
c906108c 5180 {
bdd78e62 5181 selected_pc = get_frame_pc (deprecated_selected_frame);
c906108c
SS
5182 if (arg)
5183 if_arg = 1;
5184 }
5185 else
5186 error ("No selected frame.");
5187 }
5188 else
5189 error ("No default breakpoint address now.");
5190 }
5191 else
5192 {
5193 extra_args = strchr (arg, ' ');
5194 if (extra_args)
5195 {
5196 extra_args++;
5197 extra_args_len = strlen (extra_args);
5198 level_arg = (char *) xmalloc (extra_args - arg);
5199 strncpy (level_arg, arg, extra_args - arg - 1);
5200 level_arg[extra_args - arg - 1] = '\0';
5201 }
5202 else
5203 {
5204 level_arg = (char *) xmalloc (strlen (arg) + 1);
5205 strcpy (level_arg, arg);
5206 }
5207
5208 frame = parse_frame_specification (level_arg);
5209 if (frame)
bdd78e62 5210 selected_pc = get_frame_pc (frame);
c906108c
SS
5211 else
5212 selected_pc = 0;
5213 }
5214 if (if_arg)
5215 {
5216 extra_args = arg;
c5aa993b 5217 extra_args_len = strlen (arg);
c906108c
SS
5218 }
5219
5220 if (selected_pc)
5221 {
c5aa993b 5222 if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
c906108c 5223 {
9ebf4acf 5224 char *addr_string;
c906108c 5225 if (extra_args_len)
9ebf4acf 5226 addr_string = xstrprintf ("*0x%s %s", paddr_nz (high), extra_args);
c906108c 5227 else
9ebf4acf 5228 addr_string = xstrprintf ("*0x%s", paddr_nz (high));
c906108c 5229 break_command_1 (addr_string, flag, from_tty);
b8c9b27d 5230 xfree (addr_string);
c906108c
SS
5231 }
5232 else
5233 error ("No function contains the specified address");
5234 }
5235 else
5236 error ("Unable to set breakpoint at procedure exit");
5237}
5238
5239
5240static void
fba45db2 5241break_at_finish_command_1 (char *arg, int flag, int from_tty)
c906108c
SS
5242{
5243 char *addr_string, *break_string, *beg_addr_string;
5244 CORE_ADDR low, high;
5245 struct symtabs_and_lines sals;
5246 struct symtab_and_line sal;
5247 struct cleanup *old_chain;
7f7e9482 5248 char *extra_args = NULL;
c906108c
SS
5249 int extra_args_len = 0;
5250 int i, if_arg = 0;
5251
5252 if (!arg ||
5253 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5254 {
5255 if (default_breakpoint_valid)
5256 {
6e7f8b9c 5257 if (deprecated_selected_frame)
c906108c 5258 {
9ebf4acf
AC
5259 addr_string = xstrprintf ("*0x%s",
5260 paddr_nz (get_frame_pc (deprecated_selected_frame)));
c906108c
SS
5261 if (arg)
5262 if_arg = 1;
5263 }
5264 else
5265 error ("No selected frame.");
5266 }
5267 else
5268 error ("No default breakpoint address now.");
5269 }
5270 else
5271 {
5272 addr_string = (char *) xmalloc (strlen (arg) + 1);
5273 strcpy (addr_string, arg);
5274 }
5275
5276 if (if_arg)
5277 {
5278 extra_args = arg;
c5aa993b
JM
5279 extra_args_len = strlen (arg);
5280 }
5281 else if (arg)
5282 {
5283 /* get the stuff after the function name or address */
5284 extra_args = strchr (arg, ' ');
5285 if (extra_args)
5286 {
5287 extra_args++;
5288 extra_args_len = strlen (extra_args);
5289 }
c906108c 5290 }
c906108c
SS
5291
5292 sals.sals = NULL;
5293 sals.nelts = 0;
5294
c5aa993b
JM
5295 beg_addr_string = addr_string;
5296 sals = decode_line_1 (&addr_string, 1, (struct symtab *) NULL, 0,
68219205 5297 (char ***) NULL, NULL);
c906108c 5298
b8c9b27d
KB
5299 xfree (beg_addr_string);
5300 old_chain = make_cleanup (xfree, sals.sals);
c906108c
SS
5301 for (i = 0; (i < sals.nelts); i++)
5302 {
5303 sal = sals.sals[i];
c5aa993b 5304 if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
c906108c 5305 {
9ebf4acf 5306 break_string;
c906108c 5307 if (extra_args_len)
9ebf4acf
AC
5308 break_string = xstrprintf ("*0x%s %s", paddr_nz (high),
5309 extra_args);
c906108c 5310 else
9ebf4acf 5311 break_string = xstrprintf ("*0x%s", paddr_nz (high));
c906108c 5312 break_command_1 (break_string, flag, from_tty);
b8c9b27d 5313 xfree (break_string);
c906108c
SS
5314 }
5315 else
5316 error ("No function contains the specified address");
5317 }
5318 if (sals.nelts > 1)
5319 {
53a5351d
JM
5320 warning ("Multiple breakpoints were set.\n");
5321 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
c906108c 5322 }
c5aa993b 5323 do_cleanups (old_chain);
c906108c
SS
5324}
5325
5326
5327/* Helper function for break_command_1 and disassemble_command. */
5328
5329void
fba45db2 5330resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
5331{
5332 CORE_ADDR pc;
5333
5334 if (sal->pc == 0 && sal->symtab != NULL)
5335 {
5336 if (!find_line_pc (sal->symtab, sal->line, &pc))
5337 error ("No line %d in file \"%s\".",
5338 sal->line, sal->symtab->filename);
5339 sal->pc = pc;
5340 }
5341
5342 if (sal->section == 0 && sal->symtab != NULL)
5343 {
5344 struct blockvector *bv;
c5aa993b
JM
5345 struct block *b;
5346 struct symbol *sym;
5347 int index;
c906108c 5348
c5aa993b 5349 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
c906108c
SS
5350 if (bv != NULL)
5351 {
c5aa993b 5352 b = BLOCKVECTOR_BLOCK (bv, index);
c906108c
SS
5353 sym = block_function (b);
5354 if (sym != NULL)
5355 {
5356 fixup_symbol_section (sym, sal->symtab->objfile);
5357 sal->section = SYMBOL_BFD_SECTION (sym);
5358 }
5359 else
5360 {
5361 /* It really is worthwhile to have the section, so we'll just
c5aa993b
JM
5362 have to look harder. This case can be executed if we have
5363 line numbers but no functions (as can happen in assembly
5364 source). */
c906108c 5365
c5aa993b 5366 struct minimal_symbol *msym;
c906108c
SS
5367
5368 msym = lookup_minimal_symbol_by_pc (sal->pc);
5369 if (msym)
5370 sal->section = SYMBOL_BFD_SECTION (msym);
5371 }
5372 }
5373 }
5374}
5375
5376void
fba45db2 5377break_command (char *arg, int from_tty)
c906108c
SS
5378{
5379 break_command_1 (arg, 0, from_tty);
5380}
5381
502fd408 5382void
fba45db2 5383break_at_finish_command (char *arg, int from_tty)
c906108c
SS
5384{
5385 break_at_finish_command_1 (arg, 0, from_tty);
5386}
5387
502fd408 5388void
fba45db2 5389break_at_finish_at_depth_command (char *arg, int from_tty)
c906108c
SS
5390{
5391 break_at_finish_at_depth_command_1 (arg, 0, from_tty);
5392}
5393
5394void
fba45db2 5395tbreak_command (char *arg, int from_tty)
c906108c
SS
5396{
5397 break_command_1 (arg, BP_TEMPFLAG, from_tty);
5398}
5399
502fd408 5400void
fba45db2 5401tbreak_at_finish_command (char *arg, int from_tty)
c906108c
SS
5402{
5403 break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
5404}
5405
5406static void
fba45db2 5407hbreak_command (char *arg, int from_tty)
c906108c
SS
5408{
5409 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
5410}
5411
5412static void
fba45db2 5413thbreak_command (char *arg, int from_tty)
c906108c
SS
5414{
5415 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
5416}
5417
5418static void
fba45db2 5419stop_command (char *arg, int from_tty)
c906108c
SS
5420{
5421 printf_filtered ("Specify the type of breakpoint to set.\n\
5422Usage: stop in <function | address>\n\
5423 stop at <line>\n");
5424}
5425
5426static void
fba45db2 5427stopin_command (char *arg, int from_tty)
c906108c
SS
5428{
5429 int badInput = 0;
5430
c5aa993b 5431 if (arg == (char *) NULL)
c906108c
SS
5432 badInput = 1;
5433 else if (*arg != '*')
5434 {
5435 char *argptr = arg;
5436 int hasColon = 0;
5437
53a5351d
JM
5438 /* look for a ':'. If this is a line number specification, then
5439 say it is bad, otherwise, it should be an address or
5440 function/method name */
c906108c 5441 while (*argptr && !hasColon)
c5aa993b
JM
5442 {
5443 hasColon = (*argptr == ':');
5444 argptr++;
5445 }
c906108c
SS
5446
5447 if (hasColon)
c5aa993b 5448 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 5449 else
c5aa993b 5450 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
5451 }
5452
5453 if (badInput)
c5aa993b 5454 printf_filtered ("Usage: stop in <function | address>\n");
c906108c
SS
5455 else
5456 break_command_1 (arg, 0, from_tty);
5457}
5458
5459static void
fba45db2 5460stopat_command (char *arg, int from_tty)
c906108c
SS
5461{
5462 int badInput = 0;
5463
c5aa993b 5464 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
5465 badInput = 1;
5466 else
5467 {
5468 char *argptr = arg;
5469 int hasColon = 0;
5470
5471 /* look for a ':'. If there is a '::' then get out, otherwise
c5aa993b 5472 it is probably a line number. */
c906108c 5473 while (*argptr && !hasColon)
c5aa993b
JM
5474 {
5475 hasColon = (*argptr == ':');
5476 argptr++;
5477 }
c906108c
SS
5478
5479 if (hasColon)
c5aa993b 5480 badInput = (*argptr == ':'); /* we have class::method */
c906108c 5481 else
c5aa993b 5482 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
5483 }
5484
5485 if (badInput)
c5aa993b 5486 printf_filtered ("Usage: stop at <line>\n");
c906108c
SS
5487 else
5488 break_command_1 (arg, 0, from_tty);
5489}
5490
53a5351d
JM
5491/* accessflag: hw_write: watch write,
5492 hw_read: watch read,
5493 hw_access: watch access (read or write) */
c906108c 5494static void
fba45db2 5495watch_command_1 (char *arg, int accessflag, int from_tty)
c906108c
SS
5496{
5497 struct breakpoint *b;
5498 struct symtab_and_line sal;
5499 struct expression *exp;
5500 struct block *exp_valid_block;
5501 struct value *val, *mark;
5502 struct frame_info *frame;
5503 struct frame_info *prev_frame = NULL;
5504 char *exp_start = NULL;
5505 char *exp_end = NULL;
5506 char *tok, *end_tok;
5507 int toklen;
5508 char *cond_start = NULL;
5509 char *cond_end = NULL;
5510 struct expression *cond = NULL;
5511 int i, other_type_used, target_resources_ok = 0;
5512 enum bptype bp_type;
5513 int mem_cnt = 0;
5514
fe39c653 5515 init_sal (&sal); /* initialize to zeroes */
c5aa993b 5516
c906108c
SS
5517 /* Parse arguments. */
5518 innermost_block = NULL;
5519 exp_start = arg;
5520 exp = parse_exp_1 (&arg, 0, 0);
5521 exp_end = arg;
5522 exp_valid_block = innermost_block;
5523 mark = value_mark ();
5524 val = evaluate_expression (exp);
5525 release_value (val);
5526 if (VALUE_LAZY (val))
5527 value_fetch_lazy (val);
5528
5529 tok = arg;
5530 while (*tok == ' ' || *tok == '\t')
5531 tok++;
5532 end_tok = tok;
5533
5534 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5535 end_tok++;
5536
5537 toklen = end_tok - tok;
5538 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5539 {
5540 tok = cond_start = end_tok + 1;
5541 cond = parse_exp_1 (&tok, 0, 0);
5542 cond_end = tok;
5543 }
5544 if (*tok)
c5aa993b 5545 error ("Junk at end of command.");
c906108c 5546
53a5351d 5547 if (accessflag == hw_read)
c5aa993b 5548 bp_type = bp_read_watchpoint;
53a5351d 5549 else if (accessflag == hw_access)
c5aa993b
JM
5550 bp_type = bp_access_watchpoint;
5551 else
5552 bp_type = bp_hardware_watchpoint;
c906108c
SS
5553
5554 mem_cnt = can_use_hardware_watchpoint (val);
5555 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5556 error ("Expression cannot be implemented with read/access watchpoint.");
c5aa993b
JM
5557 if (mem_cnt != 0)
5558 {
5559 i = hw_watchpoint_used_count (bp_type, &other_type_used);
53a5351d
JM
5560 target_resources_ok =
5561 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5562 other_type_used);
c5aa993b 5563 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
53a5351d
JM
5564 error ("Target does not support this type of hardware watchpoint.");
5565
c5aa993b 5566 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
53a5351d 5567 error ("Target can only support one kind of HW watchpoint at a time.");
c5aa993b 5568 }
c906108c
SS
5569
5570#if defined(HPUXHPPA)
c5aa993b 5571 /* On HP-UX if you set a h/w
c906108c
SS
5572 watchpoint before the "run" command, the inferior dies with a e.g.,
5573 SIGILL once you start it. I initially believed this was due to a
5574 bad interaction between page protection traps and the initial
5575 startup sequence by the dynamic linker.
5576
5577 However, I tried avoiding that by having HP-UX's implementation of
39f77062 5578 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
c906108c
SS
5579 yet, which forced slow watches before a "run" or "attach", and it
5580 still fails somewhere in the startup code.
5581
5582 Until I figure out what's happening, I'm disallowing watches altogether
5583 before the "run" or "attach" command. We'll tell the user they must
5584 set watches after getting the program started. */
c5aa993b 5585 if (!target_has_execution)
c906108c
SS
5586 {
5587 warning ("can't do that without a running program; try \"break main\", \"run\" first");
5588 return;
5589 }
5590#endif /* HPUXHPPA */
c5aa993b 5591
4d28f7a8
KB
5592 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5593 watchpoint could not be set. */
5594 if (!mem_cnt || target_resources_ok <= 0)
5595 bp_type = bp_watchpoint;
5596
c906108c 5597 /* Now set up the breakpoint. */
4d28f7a8 5598 b = set_raw_breakpoint (sal, bp_type);
c906108c
SS
5599 set_breakpoint_count (breakpoint_count + 1);
5600 b->number = breakpoint_count;
b5de0fa7 5601 b->disposition = disp_donttouch;
c906108c
SS
5602 b->exp = exp;
5603 b->exp_valid_block = exp_valid_block;
5604 b->exp_string = savestring (exp_start, exp_end - exp_start);
5605 b->val = val;
5606 b->cond = cond;
5607 if (cond_start)
5608 b->cond_string = savestring (cond_start, cond_end - cond_start);
5609 else
5610 b->cond_string = 0;
c5aa993b 5611
c906108c
SS
5612 frame = block_innermost_frame (exp_valid_block);
5613 if (frame)
5614 {
5615 prev_frame = get_prev_frame (frame);
7a424e99 5616 b->watchpoint_frame = get_frame_id (frame);
c906108c
SS
5617 }
5618 else
101dcfbe
AC
5619 {
5620 memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame));
5621 }
c906108c 5622
c906108c
SS
5623 /* If the expression is "local", then set up a "watchpoint scope"
5624 breakpoint at the point where we've left the scope of the watchpoint
5625 expression. */
5626 if (innermost_block)
5627 {
5628 if (prev_frame)
5629 {
5630 struct breakpoint *scope_breakpoint;
e86ae29f
KS
5631 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
5632 bp_watchpoint_scope);
c906108c 5633
b5de0fa7 5634 scope_breakpoint->enable_state = bp_enabled;
c906108c
SS
5635
5636 /* Automatically delete the breakpoint when it hits. */
b5de0fa7 5637 scope_breakpoint->disposition = disp_del;
c906108c
SS
5638
5639 /* Only break in the proper frame (help with recursion). */
818dd999 5640 scope_breakpoint->frame_id = get_frame_id (prev_frame);
c906108c
SS
5641
5642 /* Set the address at which we will stop. */
5cab636d
DJ
5643 scope_breakpoint->loc->requested_address
5644 = get_frame_pc (prev_frame);
5645 scope_breakpoint->loc->address
5646 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address);
c906108c
SS
5647
5648 /* The scope breakpoint is related to the watchpoint. We
5649 will need to act on them together. */
5650 b->related_breakpoint = scope_breakpoint;
5651 }
5652 }
5653 value_free_to_mark (mark);
5654 mention (b);
5655}
5656
5657/* Return count of locations need to be watched and can be handled
5658 in hardware. If the watchpoint can not be handled
5659 in hardware return zero. */
5660
5661#if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
53a5351d 5662#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(BYTE_SIZE) \
b1e29e33 5663 ((BYTE_SIZE) <= (DEPRECATED_REGISTER_SIZE))
53a5351d
JM
5664#endif
5665
5666#if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5667#define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
6ab3a9c9 5668 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
c906108c
SS
5669#endif
5670
5671static int
fba45db2 5672can_use_hardware_watchpoint (struct value *v)
c906108c
SS
5673{
5674 int found_memory_cnt = 0;
2e70b7b9 5675 struct value *head = v;
c906108c
SS
5676
5677 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 5678 if (!can_use_hw_watchpoints)
c906108c 5679 return 0;
c5aa993b 5680
5c44784c
JM
5681 /* Make sure that the value of the expression depends only upon
5682 memory contents, and values computed from them within GDB. If we
5683 find any register references or function calls, we can't use a
5684 hardware watchpoint.
5685
5686 The idea here is that evaluating an expression generates a series
5687 of values, one holding the value of every subexpression. (The
5688 expression a*b+c has five subexpressions: a, b, a*b, c, and
5689 a*b+c.) GDB's values hold almost enough information to establish
5690 the criteria given above --- they identify memory lvalues,
5691 register lvalues, computed values, etcetera. So we can evaluate
5692 the expression, and then scan the chain of values that leaves
5693 behind to decide whether we can detect any possible change to the
5694 expression's final value using only hardware watchpoints.
5695
5696 However, I don't think that the values returned by inferior
5697 function calls are special in any way. So this function may not
5698 notice that an expression involving an inferior function call
5699 can't be watched with hardware watchpoints. FIXME. */
c5aa993b 5700 for (; v; v = v->next)
c906108c 5701 {
5c44784c 5702 if (VALUE_LVAL (v) == lval_memory)
c906108c 5703 {
5c44784c
JM
5704 if (VALUE_LAZY (v))
5705 /* A lazy memory lvalue is one that GDB never needed to fetch;
5706 we either just used its address (e.g., `a' in `a.b') or
5707 we never needed it at all (e.g., `a' in `a,b'). */
5708 ;
53a5351d 5709 else
5c44784c
JM
5710 {
5711 /* Ahh, memory we actually used! Check if we can cover
5712 it with hardware watchpoints. */
2e70b7b9
MS
5713 struct type *vtype = check_typedef (VALUE_TYPE (v));
5714
5715 /* We only watch structs and arrays if user asked for it
5716 explicitly, never if they just happen to appear in a
5717 middle of some value chain. */
5718 if (v == head
5719 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5720 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5721 {
5722 CORE_ADDR vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
5723 int len = TYPE_LENGTH (VALUE_TYPE (v));
5724
5725 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5726 return 0;
5727 else
5728 found_memory_cnt++;
5729 }
5c44784c 5730 }
c5aa993b 5731 }
c906108c 5732 else if (v->lval != not_lval && v->modifiable == 0)
53a5351d
JM
5733 return 0; /* ??? What does this represent? */
5734 else if (v->lval == lval_register)
5735 return 0; /* cannot watch a register with a HW watchpoint */
c906108c
SS
5736 }
5737
5738 /* The expression itself looks suitable for using a hardware
5739 watchpoint, but give the target machine a chance to reject it. */
5740 return found_memory_cnt;
5741}
5742
8b93c638 5743void
fba45db2 5744watch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
5745{
5746 watch_command (arg, from_tty);
5747}
8926118c 5748
c5aa993b 5749static void
fba45db2 5750watch_command (char *arg, int from_tty)
c906108c 5751{
53a5351d 5752 watch_command_1 (arg, hw_write, from_tty);
c906108c
SS
5753}
5754
8b93c638 5755void
fba45db2 5756rwatch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
5757{
5758 rwatch_command (arg, from_tty);
5759}
8926118c 5760
c5aa993b 5761static void
fba45db2 5762rwatch_command (char *arg, int from_tty)
c906108c 5763{
53a5351d 5764 watch_command_1 (arg, hw_read, from_tty);
c906108c
SS
5765}
5766
8b93c638 5767void
fba45db2 5768awatch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
5769{
5770 awatch_command (arg, from_tty);
5771}
8926118c 5772
c5aa993b 5773static void
fba45db2 5774awatch_command (char *arg, int from_tty)
c906108c 5775{
53a5351d 5776 watch_command_1 (arg, hw_access, from_tty);
c906108c 5777}
c906108c 5778\f
c5aa993b 5779
43ff13b4 5780/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
5781 because it uses the mechanisms of breakpoints. */
5782
43ff13b4
JM
5783/* This function is called by fetch_inferior_event via the
5784 cmd_continuation pointer, to complete the until command. It takes
5785 care of cleaning up the temporary breakpoints set up by the until
5786 command. */
c2c6d25f
JM
5787static void
5788until_break_command_continuation (struct continuation_arg *arg)
43ff13b4 5789{
0d06e24b
JM
5790 struct cleanup *cleanups;
5791
57e687d9 5792 cleanups = (struct cleanup *) arg->data.pointer;
0d06e24b 5793 do_exec_cleanups (cleanups);
43ff13b4
JM
5794}
5795
c906108c 5796void
ae66c1fc 5797until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
5798{
5799 struct symtabs_and_lines sals;
5800 struct symtab_and_line sal;
6e7f8b9c 5801 struct frame_info *prev_frame = get_prev_frame (deprecated_selected_frame);
c906108c
SS
5802 struct breakpoint *breakpoint;
5803 struct cleanup *old_chain;
0d06e24b
JM
5804 struct continuation_arg *arg1;
5805
c906108c
SS
5806
5807 clear_proceed_status ();
5808
5809 /* Set a breakpoint where the user wants it and at return from
5810 this function */
c5aa993b 5811
c906108c
SS
5812 if (default_breakpoint_valid)
5813 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
68219205 5814 default_breakpoint_line, (char ***) NULL, NULL);
c906108c 5815 else
53a5351d 5816 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
68219205 5817 0, (char ***) NULL, NULL);
c5aa993b 5818
c906108c
SS
5819 if (sals.nelts != 1)
5820 error ("Couldn't get information on specified line.");
c5aa993b 5821
c906108c 5822 sal = sals.sals[0];
b8c9b27d 5823 xfree (sals.sals); /* malloc'd, so freed */
c5aa993b 5824
c906108c
SS
5825 if (*arg)
5826 error ("Junk at end of arguments.");
c5aa993b 5827
c906108c 5828 resolve_sal_pc (&sal);
c5aa993b 5829
ae66c1fc
EZ
5830 if (anywhere)
5831 /* If the user told us to continue until a specified location,
5832 we don't specify a frame at which we need to stop. */
5833 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
5834 else
5835 /* Otherwise, specify the current frame, because we want to stop only
5836 at the very same frame. */
5837 breakpoint = set_momentary_breakpoint (sal,
5838 get_frame_id (deprecated_selected_frame),
5839 bp_until);
c5aa993b 5840
6426a772 5841 if (!event_loop_p || !target_can_async_p ())
4d6140d9 5842 old_chain = make_cleanup_delete_breakpoint (breakpoint);
43ff13b4 5843 else
4d6140d9 5844 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
43ff13b4
JM
5845
5846 /* If we are running asynchronously, and the target supports async
5847 execution, we are not waiting for the target to stop, in the call
5848 tp proceed, below. This means that we cannot delete the
5849 brekpoints until the target has actually stopped. The only place
5850 where we get a chance to do that is in fetch_inferior_event, so
5851 we must set things up for that. */
5852
6426a772 5853 if (event_loop_p && target_can_async_p ())
43ff13b4 5854 {
0d06e24b
JM
5855 /* In this case the arg for the continuation is just the point
5856 in the exec_cleanups chain from where to start doing
5857 cleanups, because all the continuation does is the cleanups in
5858 the exec_cleanup_chain. */
5859 arg1 =
5860 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
57e687d9
MS
5861 arg1->next = NULL;
5862 arg1->data.pointer = old_chain;
0d06e24b
JM
5863
5864 add_continuation (until_break_command_continuation, arg1);
43ff13b4 5865 }
c906108c 5866
ae66c1fc
EZ
5867 /* Keep within the current frame, or in frames called by the current
5868 one. */
c906108c
SS
5869 if (prev_frame)
5870 {
30f7db39
AC
5871 sal = find_pc_line (get_frame_pc (prev_frame), 0);
5872 sal.pc = get_frame_pc (prev_frame);
818dd999
AC
5873 breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
5874 bp_until);
6426a772 5875 if (!event_loop_p || !target_can_async_p ())
4d6140d9 5876 make_cleanup_delete_breakpoint (breakpoint);
43ff13b4 5877 else
4d6140d9 5878 make_exec_cleanup_delete_breakpoint (breakpoint);
c906108c 5879 }
c5aa993b 5880
c906108c 5881 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
43ff13b4
JM
5882 /* Do the cleanups now, anly if we are not running asynchronously,
5883 of if we are, but the target is still synchronous. */
6426a772 5884 if (!event_loop_p || !target_can_async_p ())
c5aa993b 5885 do_cleanups (old_chain);
c906108c 5886}
ae66c1fc 5887
c906108c 5888static void
fba45db2 5889ep_skip_leading_whitespace (char **s)
c906108c 5890{
c5aa993b
JM
5891 if ((s == NULL) || (*s == NULL))
5892 return;
5893 while (isspace (**s))
5894 *s += 1;
c906108c 5895}
c5aa993b 5896
c906108c
SS
5897/* This function examines a string, and attempts to find a token
5898 that might be an event name in the leading characters. If a
5899 possible match is found, a pointer to the last character of
5900 the token is returned. Else, NULL is returned. */
53a5351d 5901
c906108c 5902static char *
fba45db2 5903ep_find_event_name_end (char *arg)
c906108c 5904{
c5aa993b
JM
5905 char *s = arg;
5906 char *event_name_end = NULL;
5907
c906108c
SS
5908 /* If we could depend upon the presense of strrpbrk, we'd use that... */
5909 if (arg == NULL)
5910 return NULL;
c5aa993b 5911
c906108c 5912 /* We break out of the loop when we find a token delimiter.
c5aa993b
JM
5913 Basically, we're looking for alphanumerics and underscores;
5914 anything else delimites the token. */
c906108c
SS
5915 while (*s != '\0')
5916 {
c5aa993b
JM
5917 if (!isalnum (*s) && (*s != '_'))
5918 break;
c906108c
SS
5919 event_name_end = s;
5920 s++;
5921 }
c5aa993b 5922
c906108c
SS
5923 return event_name_end;
5924}
5925
c5aa993b 5926
c906108c
SS
5927/* This function attempts to parse an optional "if <cond>" clause
5928 from the arg string. If one is not found, it returns NULL.
c5aa993b 5929
c906108c
SS
5930 Else, it returns a pointer to the condition string. (It does not
5931 attempt to evaluate the string against a particular block.) And,
5932 it updates arg to point to the first character following the parsed
5933 if clause in the arg string. */
53a5351d 5934
c906108c 5935static char *
fba45db2 5936ep_parse_optional_if_clause (char **arg)
c906108c 5937{
c5aa993b
JM
5938 char *cond_string;
5939
5940 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 5941 return NULL;
c5aa993b 5942
c906108c
SS
5943 /* Skip the "if" keyword. */
5944 (*arg) += 2;
c5aa993b 5945
c906108c
SS
5946 /* Skip any extra leading whitespace, and record the start of the
5947 condition string. */
5948 ep_skip_leading_whitespace (arg);
5949 cond_string = *arg;
c5aa993b 5950
c906108c
SS
5951 /* Assume that the condition occupies the remainder of the arg string. */
5952 (*arg) += strlen (cond_string);
c5aa993b 5953
c906108c
SS
5954 return cond_string;
5955}
c5aa993b 5956
c906108c
SS
5957/* This function attempts to parse an optional filename from the arg
5958 string. If one is not found, it returns NULL.
c5aa993b 5959
c906108c
SS
5960 Else, it returns a pointer to the parsed filename. (This function
5961 makes no attempt to verify that a file of that name exists, or is
5962 accessible.) And, it updates arg to point to the first character
5963 following the parsed filename in the arg string.
c5aa993b 5964
c906108c
SS
5965 Note that clients needing to preserve the returned filename for
5966 future access should copy it to their own buffers. */
5967static char *
fba45db2 5968ep_parse_optional_filename (char **arg)
c906108c 5969{
c5aa993b
JM
5970 static char filename[1024];
5971 char *arg_p = *arg;
5972 int i;
5973 char c;
5974
c906108c
SS
5975 if ((*arg_p == '\0') || isspace (*arg_p))
5976 return NULL;
c5aa993b
JM
5977
5978 for (i = 0;; i++)
c906108c
SS
5979 {
5980 c = *arg_p;
5981 if (isspace (c))
c5aa993b 5982 c = '\0';
c906108c
SS
5983 filename[i] = c;
5984 if (c == '\0')
c5aa993b 5985 break;
c906108c
SS
5986 arg_p++;
5987 }
5988 *arg = arg_p;
c5aa993b 5989
c906108c
SS
5990 return filename;
5991}
c5aa993b 5992
c906108c
SS
5993/* Commands to deal with catching events, such as signals, exceptions,
5994 process start/exit, etc. */
c5aa993b
JM
5995
5996typedef enum
5997{
5998 catch_fork, catch_vfork
5999}
6000catch_fork_kind;
6001
c906108c 6002static void
fba45db2
KB
6003catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6004 int from_tty)
c906108c 6005{
c5aa993b
JM
6006 char *cond_string = NULL;
6007
c906108c 6008 ep_skip_leading_whitespace (&arg);
c5aa993b 6009
c906108c 6010 /* The allowed syntax is:
c5aa993b
JM
6011 catch [v]fork
6012 catch [v]fork if <cond>
6013
c906108c
SS
6014 First, check if there's an if clause. */
6015 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6016
c906108c
SS
6017 if ((*arg != '\0') && !isspace (*arg))
6018 error ("Junk at end of arguments.");
c5aa993b 6019
c906108c
SS
6020 /* If this target supports it, create a fork or vfork catchpoint
6021 and enable reporting of such events. */
c5aa993b
JM
6022 switch (fork_kind)
6023 {
6024 case catch_fork:
c906108c
SS
6025 create_fork_event_catchpoint (tempflag, cond_string);
6026 break;
c5aa993b 6027 case catch_vfork:
c906108c
SS
6028 create_vfork_event_catchpoint (tempflag, cond_string);
6029 break;
c5aa993b 6030 default:
c906108c
SS
6031 error ("unsupported or unknown fork kind; cannot catch it");
6032 break;
c5aa993b 6033 }
c906108c
SS
6034}
6035
6036static void
fba45db2 6037catch_exec_command_1 (char *arg, int tempflag, int from_tty)
c906108c 6038{
c5aa993b 6039 char *cond_string = NULL;
c906108c
SS
6040
6041 ep_skip_leading_whitespace (&arg);
6042
6043 /* The allowed syntax is:
c5aa993b
JM
6044 catch exec
6045 catch exec if <cond>
c906108c
SS
6046
6047 First, check if there's an if clause. */
6048 cond_string = ep_parse_optional_if_clause (&arg);
6049
6050 if ((*arg != '\0') && !isspace (*arg))
6051 error ("Junk at end of arguments.");
6052
6053 /* If this target supports it, create an exec catchpoint
6054 and enable reporting of such events. */
6055 create_exec_event_catchpoint (tempflag, cond_string);
6056}
c5aa993b 6057
c906108c 6058static void
fba45db2 6059catch_load_command_1 (char *arg, int tempflag, int from_tty)
c906108c 6060{
c5aa993b
JM
6061 char *dll_pathname = NULL;
6062 char *cond_string = NULL;
6063
c906108c 6064 ep_skip_leading_whitespace (&arg);
c5aa993b 6065
c906108c 6066 /* The allowed syntax is:
c5aa993b
JM
6067 catch load
6068 catch load if <cond>
6069 catch load <filename>
6070 catch load <filename> if <cond>
6071
c906108c
SS
6072 The user is not allowed to specify the <filename> after an
6073 if clause.
c5aa993b 6074
c906108c 6075 We'll ignore the pathological case of a file named "if".
c5aa993b 6076
c906108c
SS
6077 First, check if there's an if clause. If so, then there
6078 cannot be a filename. */
6079 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6080
c906108c
SS
6081 /* If there was an if clause, then there cannot be a filename.
6082 Else, there might be a filename and an if clause. */
6083 if (cond_string == NULL)
6084 {
6085 dll_pathname = ep_parse_optional_filename (&arg);
6086 ep_skip_leading_whitespace (&arg);
6087 cond_string = ep_parse_optional_if_clause (&arg);
6088 }
c5aa993b 6089
c906108c
SS
6090 if ((*arg != '\0') && !isspace (*arg))
6091 error ("Junk at end of arguments.");
c5aa993b 6092
c906108c
SS
6093 /* Create a load breakpoint that only triggers when a load of
6094 the specified dll (or any dll, if no pathname was specified)
6095 occurs. */
39f77062 6096 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
53a5351d 6097 dll_pathname, cond_string);
c906108c 6098}
c5aa993b 6099
c906108c 6100static void
fba45db2 6101catch_unload_command_1 (char *arg, int tempflag, int from_tty)
c906108c 6102{
c5aa993b
JM
6103 char *dll_pathname = NULL;
6104 char *cond_string = NULL;
6105
c906108c 6106 ep_skip_leading_whitespace (&arg);
c5aa993b 6107
c906108c 6108 /* The allowed syntax is:
c5aa993b
JM
6109 catch unload
6110 catch unload if <cond>
6111 catch unload <filename>
6112 catch unload <filename> if <cond>
6113
c906108c
SS
6114 The user is not allowed to specify the <filename> after an
6115 if clause.
c5aa993b 6116
c906108c 6117 We'll ignore the pathological case of a file named "if".
c5aa993b 6118
c906108c
SS
6119 First, check if there's an if clause. If so, then there
6120 cannot be a filename. */
6121 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6122
c906108c
SS
6123 /* If there was an if clause, then there cannot be a filename.
6124 Else, there might be a filename and an if clause. */
6125 if (cond_string == NULL)
6126 {
6127 dll_pathname = ep_parse_optional_filename (&arg);
6128 ep_skip_leading_whitespace (&arg);
6129 cond_string = ep_parse_optional_if_clause (&arg);
6130 }
c5aa993b 6131
c906108c
SS
6132 if ((*arg != '\0') && !isspace (*arg))
6133 error ("Junk at end of arguments.");
c5aa993b 6134
c906108c
SS
6135 /* Create an unload breakpoint that only triggers when an unload of
6136 the specified dll (or any dll, if no pathname was specified)
6137 occurs. */
39f77062 6138 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
53a5351d 6139 dll_pathname, cond_string);
c906108c 6140}
c906108c
SS
6141
6142/* Commands to deal with catching exceptions. */
6143
6144/* Set a breakpoint at the specified callback routine for an
c5aa993b 6145 exception event callback */
c906108c
SS
6146
6147static void
fba45db2
KB
6148create_exception_catchpoint (int tempflag, char *cond_string,
6149 enum exception_event_kind ex_event,
6150 struct symtab_and_line *sal)
c906108c 6151{
c5aa993b 6152 struct breakpoint *b;
c5aa993b 6153 int thread = -1; /* All threads. */
4d28f7a8 6154 enum bptype bptype;
c906108c 6155
c5aa993b 6156 if (!sal) /* no exception support? */
c906108c
SS
6157 return;
6158
c906108c
SS
6159 switch (ex_event)
6160 {
c5aa993b 6161 case EX_EVENT_THROW:
4d28f7a8 6162 bptype = bp_catch_throw;
c5aa993b
JM
6163 break;
6164 case EX_EVENT_CATCH:
4d28f7a8 6165 bptype = bp_catch_catch;
c5aa993b
JM
6166 break;
6167 default: /* error condition */
c5aa993b 6168 error ("Internal error -- invalid catchpoint kind");
c906108c 6169 }
4d28f7a8
KB
6170
6171 b = set_raw_breakpoint (*sal, bptype);
6172 set_breakpoint_count (breakpoint_count + 1);
6173 b->number = breakpoint_count;
6174 b->cond = NULL;
6175 b->cond_string = (cond_string == NULL) ?
6176 NULL : savestring (cond_string, strlen (cond_string));
6177 b->thread = thread;
6178 b->addr_string = NULL;
b5de0fa7
EZ
6179 b->enable_state = bp_enabled;
6180 b->disposition = tempflag ? disp_del : disp_donttouch;
c906108c
SS
6181 mention (b);
6182}
6183
3086aeae
DJ
6184static enum print_stop_action
6185print_exception_catchpoint (struct breakpoint *b)
6186{
6187 annotate_catchpoint (b->number);
6188
6189 if (strstr (b->addr_string, "throw") != NULL)
6190 printf_filtered ("\nCatchpoint %d (exception thrown)\n",
6191 b->number);
6192 else
6193 printf_filtered ("\nCatchpoint %d (exception caught)\n",
6194 b->number);
6195
6196 return PRINT_SRC_AND_LOC;
6197}
6198
6199static void
6200print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6201{
6202 if (addressprint)
6203 {
6204 annotate_field (4);
5cab636d 6205 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3086aeae
DJ
6206 }
6207 annotate_field (5);
5cab636d 6208 *last_addr = b->loc->address;
3086aeae
DJ
6209 if (strstr (b->addr_string, "throw") != NULL)
6210 ui_out_field_string (uiout, "what", "exception throw");
6211 else
6212 ui_out_field_string (uiout, "what", "exception catch");
6213}
6214
6215static void
6216print_mention_exception_catchpoint (struct breakpoint *b)
6217{
6218 if (strstr (b->addr_string, "throw") != NULL)
6219 printf_filtered ("Catchpoint %d (throw)", b->number);
6220 else
6221 printf_filtered ("Catchpoint %d (catch)", b->number);
6222}
6223
6224static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6225 print_exception_catchpoint,
6226 print_one_exception_catchpoint,
6227 print_mention_exception_catchpoint
6228};
6229
6230static int
6231handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6232 enum exception_event_kind ex_event, int from_tty)
6233{
6234 char *trigger_func_name, *nameptr;
6235 struct symtabs_and_lines sals;
6236 struct breakpoint *b;
6237
6238 if (ex_event == EX_EVENT_CATCH)
6239 trigger_func_name = xstrdup ("__cxa_begin_catch");
6240 else
6241 trigger_func_name = xstrdup ("__cxa_throw");
6242
6243 nameptr = trigger_func_name;
68219205 6244 sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
3086aeae
DJ
6245 if (sals.nelts == 0)
6246 {
b59661bd 6247 xfree (trigger_func_name);
3086aeae
DJ
6248 return 0;
6249 }
6250
6251 b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
6252 set_breakpoint_count (breakpoint_count + 1);
6253 b->number = breakpoint_count;
6254 b->cond = NULL;
6255 b->cond_string = (cond_string == NULL) ?
6256 NULL : savestring (cond_string, strlen (cond_string));
6257 b->thread = -1;
6258 b->addr_string = trigger_func_name;
6259 b->enable_state = bp_enabled;
6260 b->disposition = tempflag ? disp_del : disp_donttouch;
6261 b->ops = &gnu_v3_exception_catchpoint_ops;
6262
b59661bd 6263 xfree (sals.sals);
3086aeae
DJ
6264 mention (b);
6265 return 1;
6266}
6267
c5aa993b 6268/* Deal with "catch catch" and "catch throw" commands */
c906108c
SS
6269
6270static void
fba45db2
KB
6271catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6272 int tempflag, int from_tty)
c906108c 6273{
c5aa993b
JM
6274 char *cond_string = NULL;
6275 struct symtab_and_line *sal = NULL;
6276
c906108c 6277 ep_skip_leading_whitespace (&arg);
c5aa993b 6278
c906108c
SS
6279 cond_string = ep_parse_optional_if_clause (&arg);
6280
6281 if ((*arg != '\0') && !isspace (*arg))
6282 error ("Junk at end of arguments.");
6283
6284 if ((ex_event != EX_EVENT_THROW) &&
6285 (ex_event != EX_EVENT_CATCH))
6286 error ("Unsupported or unknown exception event; cannot catch it");
6287
3086aeae
DJ
6288 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6289 return;
6290
c906108c
SS
6291 /* See if we can find a callback routine */
6292 sal = target_enable_exception_callback (ex_event, 1);
6293
c5aa993b 6294 if (sal)
c906108c
SS
6295 {
6296 /* We have callbacks from the runtime system for exceptions.
c5aa993b 6297 Set a breakpoint on the sal found, if no errors */
c906108c 6298 if (sal != (struct symtab_and_line *) -1)
c5aa993b 6299 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
c906108c 6300 else
53a5351d 6301 return; /* something went wrong with setting up callbacks */
c906108c 6302 }
c5aa993b 6303
69f567ae 6304 warning ("Unsupported with this platform/compiler combination.");
c906108c
SS
6305}
6306
6307/* Cover routine to allow wrapping target_enable_exception_catchpoints
6308 inside a catch_errors */
6309
6310static int
4efb68b1 6311cover_target_enable_exception_callback (void *arg)
c906108c
SS
6312{
6313 args_for_catchpoint_enable *args = arg;
6314 struct symtab_and_line *sal;
b5de0fa7 6315 sal = target_enable_exception_callback (args->kind, args->enable_p);
c906108c
SS
6316 if (sal == NULL)
6317 return 0;
6318 else if (sal == (struct symtab_and_line *) -1)
6319 return -1;
6320 else
c5aa993b 6321 return 1; /*is valid */
c906108c
SS
6322}
6323
c906108c 6324static void
fba45db2 6325catch_command_1 (char *arg, int tempflag, int from_tty)
c906108c 6326{
c5aa993b 6327
c906108c
SS
6328 /* The first argument may be an event name, such as "start" or "load".
6329 If so, then handle it as such. If it doesn't match an event name,
6330 then attempt to interpret it as an exception name. (This latter is
6331 the v4.16-and-earlier GDB meaning of the "catch" command.)
c5aa993b 6332
c906108c 6333 First, try to find the bounds of what might be an event name. */
c5aa993b
JM
6334 char *arg1_start = arg;
6335 char *arg1_end;
6336 int arg1_length;
6337
c906108c
SS
6338 if (arg1_start == NULL)
6339 {
c5aa993b 6340 /* Old behaviour was to use pre-v-4.16 syntax */
c906108c
SS
6341 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6342 /* return; */
c5aa993b 6343 /* Now, this is not allowed */
c906108c
SS
6344 error ("Catch requires an event name.");
6345
6346 }
6347 arg1_end = ep_find_event_name_end (arg1_start);
6348 if (arg1_end == NULL)
6349 error ("catch requires an event");
6350 arg1_length = arg1_end + 1 - arg1_start;
c5aa993b 6351
c906108c
SS
6352 /* Try to match what we found against known event names. */
6353 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6354 {
6355 error ("Catch of signal not yet implemented");
6356 }
6357 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6358 {
53a5351d
JM
6359 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6360 tempflag, from_tty);
c906108c
SS
6361 }
6362 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6363 {
53a5351d
JM
6364 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6365 tempflag, from_tty);
c906108c
SS
6366 }
6367 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6368 {
6369 error ("Catch of thread_start not yet implemented");
6370 }
6371 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6372 {
6373 error ("Catch of thread_exit not yet implemented");
6374 }
6375 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6376 {
6377 error ("Catch of thread_join not yet implemented");
6378 }
6379 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6380 {
6381 error ("Catch of start not yet implemented");
6382 }
6383 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6384 {
6385 error ("Catch of exit not yet implemented");
6386 }
6387 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6388 {
c5aa993b 6389 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
c906108c
SS
6390 }
6391 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6392 {
c5aa993b 6393 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
c906108c
SS
6394 }
6395 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6396 {
c5aa993b 6397 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
c906108c
SS
6398 }
6399 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6400 {
c5aa993b 6401 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
c906108c
SS
6402 }
6403 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6404 {
c5aa993b 6405 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
c906108c
SS
6406 }
6407 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6408 {
6409 error ("Catch of stop not yet implemented");
6410 }
c5aa993b 6411
c906108c
SS
6412 /* This doesn't appear to be an event name */
6413
6414 else
6415 {
6416 /* Pre-v.4.16 behaviour was to treat the argument
c5aa993b 6417 as the name of an exception */
c906108c 6418 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
c5aa993b 6419 /* Now this is not allowed */
c906108c
SS
6420 error ("Unknown event kind specified for catch");
6421
6422 }
6423}
6424
6425/* Used by the gui, could be made a worker for other things. */
6426
6427struct breakpoint *
fba45db2 6428set_breakpoint_sal (struct symtab_and_line sal)
c906108c
SS
6429{
6430 struct breakpoint *b;
4d28f7a8 6431 b = set_raw_breakpoint (sal, bp_breakpoint);
c906108c
SS
6432 set_breakpoint_count (breakpoint_count + 1);
6433 b->number = breakpoint_count;
c906108c
SS
6434 b->cond = 0;
6435 b->thread = -1;
6436 return b;
6437}
6438
c906108c 6439static void
fba45db2 6440catch_command (char *arg, int from_tty)
c906108c
SS
6441{
6442 catch_command_1 (arg, 0, from_tty);
6443}
6444\f
6445
6446static void
fba45db2 6447tcatch_command (char *arg, int from_tty)
c906108c
SS
6448{
6449 catch_command_1 (arg, 1, from_tty);
6450}
6451
80f8a6eb 6452/* Delete breakpoints by address or line. */
c906108c
SS
6453
6454static void
fba45db2 6455clear_command (char *arg, int from_tty)
c906108c 6456{
80f8a6eb 6457 struct breakpoint *b, *tmp, *prev, *found;
c906108c
SS
6458 int default_match;
6459 struct symtabs_and_lines sals;
6460 struct symtab_and_line sal;
c906108c
SS
6461 int i;
6462
6463 if (arg)
6464 {
6465 sals = decode_line_spec (arg, 1);
6466 default_match = 0;
6467 }
6468 else
6469 {
c5aa993b 6470 sals.sals = (struct symtab_and_line *)
c906108c 6471 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 6472 make_cleanup (xfree, sals.sals);
fe39c653 6473 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
6474 sal.line = default_breakpoint_line;
6475 sal.symtab = default_breakpoint_symtab;
6476 sal.pc = default_breakpoint_address;
6477 if (sal.symtab == 0)
6478 error ("No source file specified.");
6479
6480 sals.sals[0] = sal;
6481 sals.nelts = 1;
6482
6483 default_match = 1;
6484 }
6485
6486 /* For each line spec given, delete bps which correspond
80f8a6eb
MS
6487 to it. Do it in two passes, solely to preserve the current
6488 behavior that from_tty is forced true if we delete more than
6489 one breakpoint. */
c906108c 6490
80f8a6eb 6491 found = NULL;
c906108c
SS
6492 for (i = 0; i < sals.nelts; i++)
6493 {
6494 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
6495 If line given (pc == 0), clear all bpts on specified line.
6496 If defaulting, clear all bpts on default line
c906108c 6497 or at default pc.
c5aa993b
JM
6498
6499 defaulting sal.pc != 0 tests to do
6500
6501 0 1 pc
6502 1 1 pc _and_ line
6503 0 0 line
6504 1 0 <can't happen> */
c906108c
SS
6505
6506 sal = sals.sals[i];
80f8a6eb 6507 prev = NULL;
c906108c 6508
80f8a6eb
MS
6509 /* Find all matching breakpoints, remove them from the
6510 breakpoint chain, and add them to the 'found' chain. */
6511 ALL_BREAKPOINTS_SAFE (b, tmp)
c5aa993b 6512 {
80f8a6eb
MS
6513 /* Are we going to delete b? */
6514 if (b->type != bp_none
6515 && b->type != bp_watchpoint
6516 && b->type != bp_hardware_watchpoint
6517 && b->type != bp_read_watchpoint
6518 && b->type != bp_access_watchpoint
6519 /* Not if b is a watchpoint of any sort... */
5cab636d 6520 && (((sal.pc && (b->loc->address == sal.pc))
cf3a9e5b
DJ
6521 && (!section_is_overlay (b->loc->section)
6522 || b->loc->section == sal.section))
80f8a6eb
MS
6523 /* Yes, if sal.pc matches b (modulo overlays). */
6524 || ((default_match || (0 == sal.pc))
6525 && b->source_file != NULL
6526 && sal.symtab != NULL
6314a349 6527 && strcmp (b->source_file, sal.symtab->filename) == 0
80f8a6eb
MS
6528 && b->line_number == sal.line)))
6529 /* Yes, if sal source file and line matches b. */
6530 {
6531 /* Remove it from breakpoint_chain... */
6532 if (b == breakpoint_chain)
6533 {
6534 /* b is at the head of the list */
6535 breakpoint_chain = b->next;
6536 }
6537 else
6538 {
6539 prev->next = b->next;
6540 }
6541 /* And add it to 'found' chain. */
6542 b->next = found;
6543 found = b;
6544 }
c906108c 6545 else
80f8a6eb
MS
6546 {
6547 /* Keep b, and keep a pointer to it. */
6548 prev = b;
6549 }
c906108c 6550 }
80f8a6eb
MS
6551 }
6552 /* Now go thru the 'found' chain and delete them. */
6553 if (found == 0)
6554 {
6555 if (arg)
6556 error ("No breakpoint at %s.", arg);
6557 else
6558 error ("No breakpoint at this line.");
6559 }
c906108c 6560
80f8a6eb
MS
6561 if (found->next)
6562 from_tty = 1; /* Always report if deleted more than one */
6563 if (from_tty)
6564 printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6565 breakpoints_changed ();
6566 while (found)
6567 {
c5aa993b 6568 if (from_tty)
80f8a6eb
MS
6569 printf_unfiltered ("%d ", found->number);
6570 tmp = found->next;
6571 delete_breakpoint (found);
6572 found = tmp;
c906108c 6573 }
80f8a6eb
MS
6574 if (from_tty)
6575 putchar_unfiltered ('\n');
c906108c
SS
6576}
6577\f
6578/* Delete breakpoint in BS if they are `delete' breakpoints and
6579 all breakpoints that are marked for deletion, whether hit or not.
6580 This is called after any breakpoint is hit, or after errors. */
6581
6582void
fba45db2 6583breakpoint_auto_delete (bpstat bs)
c906108c
SS
6584{
6585 struct breakpoint *b, *temp;
6586
6587 for (; bs; bs = bs->next)
b5de0fa7 6588 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
c906108c
SS
6589 && bs->stop)
6590 delete_breakpoint (bs->breakpoint_at);
6591
6592 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 6593 {
b5de0fa7 6594 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
6595 delete_breakpoint (b);
6596 }
c906108c
SS
6597}
6598
53a5351d
JM
6599/* Delete a breakpoint and clean up all traces of it in the data
6600 structures. */
c906108c
SS
6601
6602void
fba45db2 6603delete_breakpoint (struct breakpoint *bpt)
c906108c 6604{
52f0bd74
AC
6605 struct breakpoint *b;
6606 bpstat bs;
7cc221ef 6607 struct bp_location *loc;
c906108c
SS
6608
6609 if (bpt == NULL)
6610 error ("Internal error (attempted to delete a NULL breakpoint)");
6611
6612
6613 /* Has this bp already been deleted? This can happen because multiple
6614 lists can hold pointers to bp's. bpstat lists are especial culprits.
6615
6616 One example of this happening is a watchpoint's scope bp. When the
6617 scope bp triggers, we notice that the watchpoint is out of scope, and
6618 delete it. We also delete its scope bp. But the scope bp is marked
6619 "auto-deleting", and is already on a bpstat. That bpstat is then
6620 checked for auto-deleting bp's, which are deleted.
6621
6622 A real solution to this problem might involve reference counts in bp's,
6623 and/or giving them pointers back to their referencing bpstat's, and
6624 teaching delete_breakpoint to only free a bp's storage when no more
6625 references were extent. A cheaper bandaid was chosen. */
6626 if (bpt->type == bp_none)
6627 return;
6628
6629 if (delete_breakpoint_hook)
6630 delete_breakpoint_hook (bpt);
104c1213 6631 breakpoint_delete_event (bpt->number);
c906108c 6632
5cab636d 6633 if (bpt->loc->inserted)
0bde7532 6634 remove_breakpoint (bpt->loc, mark_inserted);
c5aa993b 6635
c906108c
SS
6636 if (breakpoint_chain == bpt)
6637 breakpoint_chain = bpt->next;
6638
7cc221ef
DJ
6639 if (bp_location_chain == bpt->loc)
6640 bp_location_chain = bpt->loc->next;
6641
c906108c
SS
6642 /* If we have callback-style exception catchpoints, don't go through
6643 the adjustments to the C++ runtime library etc. if the inferior
6644 isn't actually running. target_enable_exception_callback for a
6645 null target ops vector gives an undesirable error message, so we
6646 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
c5aa993b 6647 exceptions are supported in this way, it's OK for now. FIXME */
c906108c
SS
6648 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6649 {
53a5351d 6650 /* Format possible error msg */
9ebf4acf
AC
6651 char *message = xstrprintf ("Error in deleting catchpoint %d:\n",
6652 bpt->number);
6653 struct cleanup *cleanups = make_cleanup (xfree, message);
6654 args_for_catchpoint_enable args;
53a5351d
JM
6655 args.kind = bpt->type == bp_catch_catch ?
6656 EX_EVENT_CATCH : EX_EVENT_THROW;
b5de0fa7 6657 args.enable_p = 0;
c906108c
SS
6658 catch_errors (cover_target_enable_exception_callback, &args,
6659 message, RETURN_MASK_ALL);
9ebf4acf 6660 do_cleanups (cleanups);
c906108c
SS
6661 }
6662
6663
6664 ALL_BREAKPOINTS (b)
6665 if (b->next == bpt)
c5aa993b
JM
6666 {
6667 b->next = bpt->next;
6668 break;
6669 }
c906108c 6670
7cc221ef
DJ
6671 ALL_BP_LOCATIONS (loc)
6672 if (loc->next == bpt->loc)
6673 {
6674 loc->next = bpt->loc->next;
6675 break;
6676 }
6677
9f60f21b 6678 check_duplicates (bpt);
c906108c
SS
6679 /* If this breakpoint was inserted, and there is another breakpoint
6680 at the same address, we need to insert the other breakpoint. */
5cab636d 6681 if (bpt->loc->inserted
c906108c
SS
6682 && bpt->type != bp_hardware_watchpoint
6683 && bpt->type != bp_read_watchpoint
6684 && bpt->type != bp_access_watchpoint
6685 && bpt->type != bp_catch_fork
6686 && bpt->type != bp_catch_vfork
6687 && bpt->type != bp_catch_exec)
6688 {
6689 ALL_BREAKPOINTS (b)
5cab636d 6690 if (b->loc->address == bpt->loc->address
cf3a9e5b 6691 && b->loc->section == bpt->loc->section
5cab636d 6692 && !b->loc->duplicate
b5de0fa7
EZ
6693 && b->enable_state != bp_disabled
6694 && b->enable_state != bp_shlib_disabled
6695 && b->enable_state != bp_call_disabled)
c5aa993b
JM
6696 {
6697 int val;
53a5351d 6698
c2c6d25f
JM
6699 /* We should never reach this point if there is a permanent
6700 breakpoint at the same address as the one being deleted.
6701 If there is a permanent breakpoint somewhere, it should
6702 always be the only one inserted. */
b5de0fa7 6703 if (b->enable_state == bp_permanent)
8e65ff28
AC
6704 internal_error (__FILE__, __LINE__,
6705 "another breakpoint was inserted on top of "
c2c6d25f
JM
6706 "a permanent breakpoint");
6707
53a5351d 6708 if (b->type == bp_hardware_breakpoint)
5cab636d 6709 val = target_insert_hw_breakpoint (b->loc->address, b->loc->shadow_contents);
53a5351d 6710 else
5cab636d 6711 val = target_insert_breakpoint (b->loc->address, b->loc->shadow_contents);
53a5351d 6712
81d0cc19 6713 /* If there was an error in the insert, print a message, then stop execution. */
c5aa993b
JM
6714 if (val != 0)
6715 {
81d0cc19
GS
6716 struct ui_file *tmp_error_stream = mem_fileopen ();
6717 make_cleanup_ui_file_delete (tmp_error_stream);
6718
6719
6720 if (b->type == bp_hardware_breakpoint)
6721 {
6722 fprintf_unfiltered (tmp_error_stream,
6723 "Cannot insert hardware breakpoint %d.\n"
6724 "You may have requested too many hardware breakpoints.\n",
6725 b->number);
6726 }
6727 else
6728 {
6729 fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
6730 fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
5cab636d 6731 print_address_numeric (b->loc->address, 1, tmp_error_stream);
81d0cc19
GS
6732 fprintf_filtered (tmp_error_stream, ": %s.\n",
6733 safe_strerror (val));
6734 }
6735
6736 fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
c5aa993b 6737 target_terminal_ours_for_output ();
81d0cc19 6738 error_stream(tmp_error_stream);
c5aa993b
JM
6739 }
6740 else
5cab636d 6741 b->loc->inserted = 1;
c5aa993b 6742 }
c906108c
SS
6743 }
6744
6745 free_command_lines (&bpt->commands);
6746 if (bpt->cond)
b8c9b27d 6747 xfree (bpt->cond);
c906108c 6748 if (bpt->cond_string != NULL)
b8c9b27d 6749 xfree (bpt->cond_string);
c906108c 6750 if (bpt->addr_string != NULL)
b8c9b27d 6751 xfree (bpt->addr_string);
c906108c 6752 if (bpt->exp != NULL)
b8c9b27d 6753 xfree (bpt->exp);
c906108c 6754 if (bpt->exp_string != NULL)
b8c9b27d 6755 xfree (bpt->exp_string);
c906108c
SS
6756 if (bpt->val != NULL)
6757 value_free (bpt->val);
6758 if (bpt->source_file != NULL)
b8c9b27d 6759 xfree (bpt->source_file);
c906108c 6760 if (bpt->dll_pathname != NULL)
b8c9b27d 6761 xfree (bpt->dll_pathname);
c906108c 6762 if (bpt->triggered_dll_pathname != NULL)
b8c9b27d 6763 xfree (bpt->triggered_dll_pathname);
c906108c 6764 if (bpt->exec_pathname != NULL)
b8c9b27d 6765 xfree (bpt->exec_pathname);
c906108c
SS
6766
6767 /* Be sure no bpstat's are pointing at it after it's been freed. */
6768 /* FIXME, how can we find all bpstat's?
6769 We just check stop_bpstat for now. */
6770 for (bs = stop_bpstat; bs; bs = bs->next)
6771 if (bs->breakpoint_at == bpt)
6772 {
6773 bs->breakpoint_at = NULL;
c906108c 6774 bs->old_val = NULL;
c2b8ed2c 6775 /* bs->commands will be freed later. */
c906108c
SS
6776 }
6777 /* On the chance that someone will soon try again to delete this same
6778 bp, we mark it as deleted before freeing its storage. */
6779 bpt->type = bp_none;
6780
5cab636d 6781 xfree (bpt->loc);
b8c9b27d 6782 xfree (bpt);
c906108c
SS
6783}
6784
4d6140d9
AC
6785static void
6786do_delete_breakpoint_cleanup (void *b)
6787{
6788 delete_breakpoint (b);
6789}
6790
6791struct cleanup *
6792make_cleanup_delete_breakpoint (struct breakpoint *b)
6793{
6794 return make_cleanup (do_delete_breakpoint_cleanup, b);
6795}
6796
6797struct cleanup *
6798make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
6799{
6800 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
6801}
6802
c906108c 6803void
fba45db2 6804delete_command (char *arg, int from_tty)
c906108c
SS
6805{
6806 struct breakpoint *b, *temp;
6807
ea9365bb
TT
6808 dont_repeat ();
6809
c906108c
SS
6810 if (arg == 0)
6811 {
6812 int breaks_to_delete = 0;
6813
6814 /* Delete all breakpoints if no argument.
c5aa993b
JM
6815 Do not delete internal or call-dummy breakpoints, these
6816 have to be deleted with an explicit breakpoint number argument. */
6817 ALL_BREAKPOINTS (b)
6818 {
6819 if (b->type != bp_call_dummy &&
6820 b->type != bp_shlib_event &&
c4093a6a 6821 b->type != bp_thread_event &&
1900040c 6822 b->type != bp_overlay_event &&
c5aa993b
JM
6823 b->number >= 0)
6824 breaks_to_delete = 1;
6825 }
c906108c
SS
6826
6827 /* Ask user only if there are some breakpoints to delete. */
6828 if (!from_tty
6829 || (breaks_to_delete && query ("Delete all breakpoints? ")))
6830 {
c5aa993b
JM
6831 ALL_BREAKPOINTS_SAFE (b, temp)
6832 {
6833 if (b->type != bp_call_dummy &&
6834 b->type != bp_shlib_event &&
c4093a6a 6835 b->type != bp_thread_event &&
1900040c 6836 b->type != bp_overlay_event &&
c5aa993b
JM
6837 b->number >= 0)
6838 delete_breakpoint (b);
6839 }
c906108c
SS
6840 }
6841 }
6842 else
6843 map_breakpoint_numbers (arg, delete_breakpoint);
6844}
6845
6846/* Reset a breakpoint given it's struct breakpoint * BINT.
6847 The value we return ends up being the return value from catch_errors.
6848 Unused in this case. */
6849
6850static int
4efb68b1 6851breakpoint_re_set_one (void *bint)
c906108c 6852{
53a5351d
JM
6853 /* get past catch_errs */
6854 struct breakpoint *b = (struct breakpoint *) bint;
c906108c
SS
6855 struct value *mark;
6856 int i;
6857 struct symtabs_and_lines sals;
6858 char *s;
b5de0fa7 6859 enum enable_state save_enable;
c906108c
SS
6860
6861 switch (b->type)
6862 {
6863 case bp_none:
53a5351d
JM
6864 warning ("attempted to reset apparently deleted breakpoint #%d?",
6865 b->number);
c906108c
SS
6866 return 0;
6867 case bp_breakpoint:
6868 case bp_hardware_breakpoint:
6869 case bp_catch_load:
6870 case bp_catch_unload:
6871 if (b->addr_string == NULL)
6872 {
6873 /* Anything without a string can't be re-set. */
6874 delete_breakpoint (b);
6875 return 0;
6876 }
b18c45ed
AC
6877 /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote:
6878
6879 ``And a hack it is, although Apple's Darwin version of GDB
6880 contains an almost identical hack to implement a "future
6881 break" command. It seems to work in many real world cases,
6882 but it is easy to come up with a test case where the patch
6883 doesn't help at all.''
6884
6885 ``It seems that the way GDB implements breakpoints - in -
6886 shared - libraries was designed for a.out shared library
6887 systems (SunOS 4) where shared libraries were loaded at a
6888 fixed address in memory. Since ELF shared libraries can (and
6889 will) be loaded at any address in memory, things break.
6890 Fixing this is not trivial. Therefore, I'm not sure whether
6891 we should add this hack to the branch only. I cannot
6892 guarantee that things will be fixed on the trunk in the near
6893 future.''
6894
6895 In case we have a problem, disable this breakpoint. We'll
6896 restore its status if we succeed. Don't disable a
6897 shlib_disabled breakpoint though. There's a fair chance we
6898 can't re-set it if the shared library it's in hasn't been
6899 loaded yet. */
b5de0fa7 6900 save_enable = b->enable_state;
b18c45ed
AC
6901 if (b->enable_state != bp_shlib_disabled)
6902 b->enable_state = bp_disabled;
c906108c
SS
6903
6904 set_language (b->language);
6905 input_radix = b->input_radix;
6906 s = b->addr_string;
68219205 6907 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL, NULL);
c906108c
SS
6908 for (i = 0; i < sals.nelts; i++)
6909 {
6910 resolve_sal_pc (&sals.sals[i]);
6911
6912 /* Reparse conditions, they might contain references to the
6913 old symtab. */
6914 if (b->cond_string != NULL)
6915 {
6916 s = b->cond_string;
6917 if (b->cond)
fad0733a
DJ
6918 {
6919 xfree (b->cond);
6920 /* Avoid re-freeing b->exp if an error during the call
6921 to parse_exp_1. */
6922 b->cond = NULL;
6923 }
c906108c
SS
6924 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
6925 }
6926
c5aa993b 6927 /* We need to re-set the breakpoint if the address changes... */
5cab636d 6928 if (b->loc->address != sals.sals[i].pc
c5aa993b
JM
6929 /* ...or new and old breakpoints both have source files, and
6930 the source file name or the line number changes... */
c906108c
SS
6931 || (b->source_file != NULL
6932 && sals.sals[i].symtab != NULL
6314a349 6933 && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0
c906108c 6934 || b->line_number != sals.sals[i].line)
c906108c 6935 )
c5aa993b
JM
6936 /* ...or we switch between having a source file and not having
6937 one. */
6938 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
6939 )
c906108c
SS
6940 {
6941 if (b->source_file != NULL)
b8c9b27d 6942 xfree (b->source_file);
c906108c
SS
6943 if (sals.sals[i].symtab == NULL)
6944 b->source_file = NULL;
6945 else
6946 b->source_file =
6947 savestring (sals.sals[i].symtab->filename,
6948 strlen (sals.sals[i].symtab->filename));
6949 b->line_number = sals.sals[i].line;
5cab636d
DJ
6950 b->loc->requested_address = sals.sals[i].pc;
6951 b->loc->address
6952 = adjust_breakpoint_address (b->loc->requested_address);
c906108c 6953
c5aa993b 6954 /* Used to check for duplicates here, but that can
261c4ca2 6955 cause trouble, as it doesn't check for disabled
c5aa993b 6956 breakpoints. */
c906108c
SS
6957
6958 mention (b);
6959
6960 /* Might be better to do this just once per breakpoint_re_set,
c5aa993b 6961 rather than once for every breakpoint. */
c906108c
SS
6962 breakpoints_changed ();
6963 }
cf3a9e5b 6964 b->loc->section = sals.sals[i].section;
b5de0fa7 6965 b->enable_state = save_enable; /* Restore it, this worked. */
c906108c
SS
6966
6967
c5aa993b 6968 /* Now that this is re-enabled, check_duplicates
c906108c 6969 can be used. */
9f60f21b 6970 check_duplicates (b);
c906108c
SS
6971
6972 }
b8c9b27d 6973 xfree (sals.sals);
c906108c
SS
6974 break;
6975
6976 case bp_watchpoint:
6977 case bp_hardware_watchpoint:
6978 case bp_read_watchpoint:
6979 case bp_access_watchpoint:
6980 innermost_block = NULL;
53a5351d
JM
6981 /* The issue arises of what context to evaluate this in. The
6982 same one as when it was set, but what does that mean when
6983 symbols have been re-read? We could save the filename and
6984 functionname, but if the context is more local than that, the
6985 best we could do would be something like how many levels deep
6986 and which index at that particular level, but that's going to
6987 be less stable than filenames or function names. */
6988
c906108c
SS
6989 /* So for now, just use a global context. */
6990 if (b->exp)
a355c7de
AC
6991 {
6992 xfree (b->exp);
6993 /* Avoid re-freeing b->exp if an error during the call to
6994 parse_expression. */
6995 b->exp = NULL;
6996 }
c906108c
SS
6997 b->exp = parse_expression (b->exp_string);
6998 b->exp_valid_block = innermost_block;
6999 mark = value_mark ();
7000 if (b->val)
a355c7de
AC
7001 {
7002 value_free (b->val);
7003 /* Avoid re-freeing b->val if an error during the call to
7004 evaluate_expression. */
7005 b->val = NULL;
7006 }
c906108c
SS
7007 b->val = evaluate_expression (b->exp);
7008 release_value (b->val);
468d015d 7009 if (VALUE_LAZY (b->val) && breakpoint_enabled (b))
c906108c
SS
7010 value_fetch_lazy (b->val);
7011
7012 if (b->cond_string != NULL)
7013 {
7014 s = b->cond_string;
7015 if (b->cond)
a355c7de
AC
7016 {
7017 xfree (b->cond);
7018 /* Avoid re-freeing b->exp if an error during the call
7019 to parse_exp_1. */
7020 b->cond = NULL;
7021 }
c5aa993b 7022 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
c906108c 7023 }
468d015d 7024 if (breakpoint_enabled (b))
c906108c
SS
7025 mention (b);
7026 value_free_to_mark (mark);
7027 break;
c5aa993b
JM
7028 case bp_catch_catch:
7029 case bp_catch_throw:
c906108c 7030 break;
c5aa993b
JM
7031 /* We needn't really do anything to reset these, since the mask
7032 that requests them is unaffected by e.g., new libraries being
7033 loaded. */
c906108c
SS
7034 case bp_catch_fork:
7035 case bp_catch_vfork:
7036 case bp_catch_exec:
7037 break;
c5aa993b 7038
c906108c
SS
7039 default:
7040 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
7041 /* fall through */
1900040c
MS
7042 /* Delete longjmp and overlay event breakpoints; they will be
7043 reset later by breakpoint_re_set. */
c906108c
SS
7044 case bp_longjmp:
7045 case bp_longjmp_resume:
1900040c 7046 case bp_overlay_event:
c906108c
SS
7047 delete_breakpoint (b);
7048 break;
7049
c5aa993b
JM
7050 /* This breakpoint is special, it's set up when the inferior
7051 starts and we really don't want to touch it. */
c906108c
SS
7052 case bp_shlib_event:
7053
c4093a6a
JM
7054 /* Like bp_shlib_event, this breakpoint type is special.
7055 Once it is set up, we do not want to touch it. */
7056 case bp_thread_event:
7057
c5aa993b
JM
7058 /* Keep temporary breakpoints, which can be encountered when we step
7059 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7060 Otherwise these should have been blown away via the cleanup chain
7061 or by breakpoint_init_inferior when we rerun the executable. */
c906108c
SS
7062 case bp_until:
7063 case bp_finish:
7064 case bp_watchpoint_scope:
7065 case bp_call_dummy:
7066 case bp_step_resume:
7067 break;
7068 }
7069
7070 return 0;
7071}
7072
7073/* Re-set all breakpoints after symbols have been re-loaded. */
7074void
fba45db2 7075breakpoint_re_set (void)
c906108c
SS
7076{
7077 struct breakpoint *b, *temp;
7078 enum language save_language;
7079 int save_input_radix;
c5aa993b 7080
c906108c
SS
7081 save_language = current_language->la_language;
7082 save_input_radix = input_radix;
7083 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 7084 {
53a5351d 7085 /* Format possible error msg */
9ebf4acf
AC
7086 char *message = xstrprintf ("Error in re-setting breakpoint %d:\n",
7087 b->number);
7088 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 7089 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 7090 do_cleanups (cleanups);
c5aa993b 7091 }
c906108c
SS
7092 set_language (save_language);
7093 input_radix = save_input_radix;
7094
9df628e0
RE
7095 if (GET_LONGJMP_TARGET_P ())
7096 {
7097 create_longjmp_breakpoint ("longjmp");
7098 create_longjmp_breakpoint ("_longjmp");
7099 create_longjmp_breakpoint ("siglongjmp");
7100 create_longjmp_breakpoint ("_siglongjmp");
7101 create_longjmp_breakpoint (NULL);
7102 }
1900040c
MS
7103
7104 create_overlay_event_breakpoint ("_ovly_debug_event");
c906108c
SS
7105}
7106\f
c906108c
SS
7107/* Reset the thread number of this breakpoint:
7108
7109 - If the breakpoint is for all threads, leave it as-is.
39f77062 7110 - Else, reset it to the current thread for inferior_ptid. */
c906108c 7111void
fba45db2 7112breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
7113{
7114 if (b->thread != -1)
7115 {
39f77062
KB
7116 if (in_thread_list (inferior_ptid))
7117 b->thread = pid_to_thread_id (inferior_ptid);
c906108c
SS
7118 }
7119}
7120
03ac34d5
MS
7121/* Set ignore-count of breakpoint number BPTNUM to COUNT.
7122 If from_tty is nonzero, it prints a message to that effect,
7123 which ends with a period (no newline). */
7124
c906108c 7125void
fba45db2 7126set_ignore_count (int bptnum, int count, int from_tty)
c906108c 7127{
52f0bd74 7128 struct breakpoint *b;
c906108c
SS
7129
7130 if (count < 0)
7131 count = 0;
7132
7133 ALL_BREAKPOINTS (b)
7134 if (b->number == bptnum)
c5aa993b
JM
7135 {
7136 b->ignore_count = count;
221ea385
KS
7137 if (from_tty)
7138 {
7139 if (count == 0)
7140 printf_filtered ("Will stop next time breakpoint %d is reached.",
7141 bptnum);
7142 else if (count == 1)
7143 printf_filtered ("Will ignore next crossing of breakpoint %d.",
7144 bptnum);
7145 else
7146 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
7147 count, bptnum);
7148 }
c5aa993b 7149 breakpoints_changed ();
221ea385 7150 breakpoint_modify_event (b->number);
c5aa993b
JM
7151 return;
7152 }
c906108c
SS
7153
7154 error ("No breakpoint number %d.", bptnum);
7155}
7156
7157/* Clear the ignore counts of all breakpoints. */
7158void
fba45db2 7159breakpoint_clear_ignore_counts (void)
c906108c
SS
7160{
7161 struct breakpoint *b;
7162
7163 ALL_BREAKPOINTS (b)
7164 b->ignore_count = 0;
7165}
7166
7167/* Command to set ignore-count of breakpoint N to COUNT. */
7168
7169static void
fba45db2 7170ignore_command (char *args, int from_tty)
c906108c
SS
7171{
7172 char *p = args;
52f0bd74 7173 int num;
c906108c
SS
7174
7175 if (p == 0)
7176 error_no_arg ("a breakpoint number");
c5aa993b 7177
c906108c 7178 num = get_number (&p);
5c44784c
JM
7179 if (num == 0)
7180 error ("bad breakpoint number: '%s'", args);
c906108c
SS
7181 if (*p == 0)
7182 error ("Second argument (specified ignore-count) is missing.");
7183
7184 set_ignore_count (num,
7185 longest_to_int (value_as_long (parse_and_eval (p))),
7186 from_tty);
221ea385
KS
7187 if (from_tty)
7188 printf_filtered ("\n");
c906108c
SS
7189}
7190\f
7191/* Call FUNCTION on each of the breakpoints
7192 whose numbers are given in ARGS. */
7193
7194static void
831662b3 7195map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
c906108c 7196{
52f0bd74 7197 char *p = args;
c906108c 7198 char *p1;
52f0bd74
AC
7199 int num;
7200 struct breakpoint *b, *tmp;
11cf8741 7201 int match;
c906108c
SS
7202
7203 if (p == 0)
7204 error_no_arg ("one or more breakpoint numbers");
7205
7206 while (*p)
7207 {
11cf8741 7208 match = 0;
c906108c 7209 p1 = p;
c5aa993b 7210
5c44784c
JM
7211 num = get_number_or_range (&p1);
7212 if (num == 0)
c5aa993b 7213 {
5c44784c
JM
7214 warning ("bad breakpoint number at or near '%s'", p);
7215 }
7216 else
7217 {
7218 ALL_BREAKPOINTS_SAFE (b, tmp)
7219 if (b->number == num)
7220 {
7221 struct breakpoint *related_breakpoint = b->related_breakpoint;
11cf8741 7222 match = 1;
5c44784c
JM
7223 function (b);
7224 if (related_breakpoint)
7225 function (related_breakpoint);
11cf8741 7226 break;
5c44784c 7227 }
11cf8741
JM
7228 if (match == 0)
7229 printf_unfiltered ("No breakpoint number %d.\n", num);
c5aa993b 7230 }
c906108c
SS
7231 p = p1;
7232 }
7233}
7234
1900040c
MS
7235/* Set ignore-count of breakpoint number BPTNUM to COUNT.
7236 If from_tty is nonzero, it prints a message to that effect,
7237 which ends with a period (no newline). */
7238
c906108c 7239void
fba45db2 7240disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
7241{
7242 /* Never disable a watchpoint scope breakpoint; we want to
7243 hit them when we leave scope so we can delete both the
7244 watchpoint and its scope breakpoint at that time. */
7245 if (bpt->type == bp_watchpoint_scope)
7246 return;
7247
c2c6d25f 7248 /* You can't disable permanent breakpoints. */
b5de0fa7 7249 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
7250 return;
7251
b5de0fa7 7252 bpt->enable_state = bp_disabled;
c906108c 7253
9f60f21b 7254 check_duplicates (bpt);
c906108c
SS
7255
7256 if (modify_breakpoint_hook)
7257 modify_breakpoint_hook (bpt);
104c1213 7258 breakpoint_modify_event (bpt->number);
c906108c
SS
7259}
7260
c906108c 7261static void
fba45db2 7262disable_command (char *args, int from_tty)
c906108c 7263{
52f0bd74 7264 struct breakpoint *bpt;
c906108c
SS
7265 if (args == 0)
7266 ALL_BREAKPOINTS (bpt)
7267 switch (bpt->type)
c5aa993b
JM
7268 {
7269 case bp_none:
53a5351d
JM
7270 warning ("attempted to disable apparently deleted breakpoint #%d?",
7271 bpt->number);
c5aa993b
JM
7272 continue;
7273 case bp_breakpoint:
7274 case bp_catch_load:
7275 case bp_catch_unload:
7276 case bp_catch_fork:
7277 case bp_catch_vfork:
7278 case bp_catch_exec:
7279 case bp_catch_catch:
7280 case bp_catch_throw:
7281 case bp_hardware_breakpoint:
7282 case bp_watchpoint:
7283 case bp_hardware_watchpoint:
7284 case bp_read_watchpoint:
7285 case bp_access_watchpoint:
7286 disable_breakpoint (bpt);
7287 default:
7288 continue;
7289 }
c906108c
SS
7290 else
7291 map_breakpoint_numbers (args, disable_breakpoint);
7292}
7293
7294static void
fba45db2 7295do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
c906108c
SS
7296{
7297 struct frame_info *save_selected_frame = NULL;
7298 int save_selected_frame_level = -1;
7299 int target_resources_ok, other_type_used;
7300 struct value *mark;
7301
7302 if (bpt->type == bp_hardware_breakpoint)
7303 {
7304 int i;
c5aa993b 7305 i = hw_breakpoint_used_count ();
53a5351d
JM
7306 target_resources_ok =
7307 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7308 i + 1, 0);
c906108c 7309 if (target_resources_ok == 0)
c5aa993b 7310 error ("No hardware breakpoint support in the target.");
c906108c 7311 else if (target_resources_ok < 0)
c5aa993b 7312 error ("Hardware breakpoints used exceeds limit.");
c906108c
SS
7313 }
7314
b5de0fa7
EZ
7315 if (bpt->enable_state != bp_permanent)
7316 bpt->enable_state = bp_enabled;
c906108c 7317 bpt->disposition = disposition;
9f60f21b 7318 check_duplicates (bpt);
c906108c
SS
7319 breakpoints_changed ();
7320
53a5351d
JM
7321 if (bpt->type == bp_watchpoint ||
7322 bpt->type == bp_hardware_watchpoint ||
7323 bpt->type == bp_read_watchpoint ||
7324 bpt->type == bp_access_watchpoint)
c906108c
SS
7325 {
7326 if (bpt->exp_valid_block != NULL)
7327 {
7328 struct frame_info *fr =
101dcfbe 7329 fr = frame_find_by_id (bpt->watchpoint_frame);
c906108c
SS
7330 if (fr == NULL)
7331 {
7332 printf_filtered ("\
7333Cannot enable watchpoint %d because the block in which its expression\n\
7334is valid is not currently in scope.\n", bpt->number);
b5de0fa7 7335 bpt->enable_state = bp_disabled;
c906108c
SS
7336 return;
7337 }
7338
6e7f8b9c
AC
7339 save_selected_frame = deprecated_selected_frame;
7340 save_selected_frame_level = frame_relative_level (deprecated_selected_frame);
0f7d239c 7341 select_frame (fr);
c906108c
SS
7342 }
7343
7344 value_free (bpt->val);
7345 mark = value_mark ();
7346 bpt->val = evaluate_expression (bpt->exp);
7347 release_value (bpt->val);
7348 if (VALUE_LAZY (bpt->val))
7349 value_fetch_lazy (bpt->val);
7350
7351 if (bpt->type == bp_hardware_watchpoint ||
c5aa993b
JM
7352 bpt->type == bp_read_watchpoint ||
7353 bpt->type == bp_access_watchpoint)
7354 {
7355 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7356 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7357
7358 /* Hack around 'unused var' error for some targets here */
7359 (void) mem_cnt, i;
7360 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7361 bpt->type, i + mem_cnt, other_type_used);
7362 /* we can consider of type is bp_hardware_watchpoint, convert to
7363 bp_watchpoint in the following condition */
7364 if (target_resources_ok < 0)
7365 {
7366 printf_filtered ("\
c906108c
SS
7367Cannot enable watchpoint %d because target watch resources\n\
7368have been allocated for other watchpoints.\n", bpt->number);
b5de0fa7 7369 bpt->enable_state = bp_disabled;
c5aa993b
JM
7370 value_free_to_mark (mark);
7371 return;
7372 }
7373 }
c906108c
SS
7374
7375 if (save_selected_frame_level >= 0)
0f7d239c 7376 select_frame (save_selected_frame);
c906108c
SS
7377 value_free_to_mark (mark);
7378 }
7379 if (modify_breakpoint_hook)
7380 modify_breakpoint_hook (bpt);
104c1213 7381 breakpoint_modify_event (bpt->number);
c906108c
SS
7382}
7383
7384void
fba45db2 7385enable_breakpoint (struct breakpoint *bpt)
c906108c
SS
7386{
7387 do_enable_breakpoint (bpt, bpt->disposition);
7388}
7389
7390/* The enable command enables the specified breakpoints (or all defined
7391 breakpoints) so they once again become (or continue to be) effective
7392 in stopping the inferior. */
7393
c906108c 7394static void
fba45db2 7395enable_command (char *args, int from_tty)
c906108c 7396{
52f0bd74 7397 struct breakpoint *bpt;
c906108c
SS
7398 if (args == 0)
7399 ALL_BREAKPOINTS (bpt)
7400 switch (bpt->type)
c5aa993b
JM
7401 {
7402 case bp_none:
53a5351d
JM
7403 warning ("attempted to enable apparently deleted breakpoint #%d?",
7404 bpt->number);
c5aa993b
JM
7405 continue;
7406 case bp_breakpoint:
7407 case bp_catch_load:
7408 case bp_catch_unload:
7409 case bp_catch_fork:
7410 case bp_catch_vfork:
7411 case bp_catch_exec:
7412 case bp_catch_catch:
7413 case bp_catch_throw:
7414 case bp_hardware_breakpoint:
7415 case bp_watchpoint:
7416 case bp_hardware_watchpoint:
7417 case bp_read_watchpoint:
7418 case bp_access_watchpoint:
7419 enable_breakpoint (bpt);
7420 default:
7421 continue;
7422 }
c906108c
SS
7423 else
7424 map_breakpoint_numbers (args, enable_breakpoint);
7425}
7426
7427static void
fba45db2 7428enable_once_breakpoint (struct breakpoint *bpt)
c906108c 7429{
b5de0fa7 7430 do_enable_breakpoint (bpt, disp_disable);
c906108c
SS
7431}
7432
c906108c 7433static void
fba45db2 7434enable_once_command (char *args, int from_tty)
c906108c
SS
7435{
7436 map_breakpoint_numbers (args, enable_once_breakpoint);
7437}
7438
7439static void
fba45db2 7440enable_delete_breakpoint (struct breakpoint *bpt)
c906108c 7441{
b5de0fa7 7442 do_enable_breakpoint (bpt, disp_del);
c906108c
SS
7443}
7444
c906108c 7445static void
fba45db2 7446enable_delete_command (char *args, int from_tty)
c906108c
SS
7447{
7448 map_breakpoint_numbers (args, enable_delete_breakpoint);
7449}
7450\f
7451/* Use default_breakpoint_'s, or nothing if they aren't valid. */
7452
7453struct symtabs_and_lines
fba45db2 7454decode_line_spec_1 (char *string, int funfirstline)
c906108c
SS
7455{
7456 struct symtabs_and_lines sals;
7457 if (string == 0)
7458 error ("Empty line specification.");
7459 if (default_breakpoint_valid)
7460 sals = decode_line_1 (&string, funfirstline,
53a5351d
JM
7461 default_breakpoint_symtab,
7462 default_breakpoint_line,
68219205 7463 (char ***) NULL, NULL);
c906108c
SS
7464 else
7465 sals = decode_line_1 (&string, funfirstline,
68219205 7466 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
c906108c
SS
7467 if (*string)
7468 error ("Junk at end of line specification: %s", string);
7469 return sals;
7470}
7471\f
7472void
fba45db2 7473_initialize_breakpoint (void)
c906108c
SS
7474{
7475 struct cmd_list_element *c;
7476
7477 breakpoint_chain = 0;
7478 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7479 before a breakpoint is set. */
7480 breakpoint_count = 0;
7481
7482 add_com ("ignore", class_breakpoint, ignore_command,
7483 "Set ignore-count of breakpoint number N to COUNT.\n\
7484Usage is `ignore N COUNT'.");
7485 if (xdb_commands)
c5aa993b 7486 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c
SS
7487
7488 add_com ("commands", class_breakpoint, commands_command,
7489 "Set commands to be executed when a breakpoint is hit.\n\
7490Give breakpoint number as argument after \"commands\".\n\
7491With no argument, the targeted breakpoint is the last one set.\n\
7492The commands themselves follow starting on the next line.\n\
7493Type a line containing \"end\" to indicate the end of them.\n\
7494Give \"silent\" as the first line to make the breakpoint silent;\n\
7495then no output is printed when it is hit, except what the commands print.");
7496
7497 add_com ("condition", class_breakpoint, condition_command,
7498 "Specify breakpoint number N to break only if COND is true.\n\
7499Usage is `condition N COND', where N is an integer and COND is an\n\
d4654627 7500expression to be evaluated whenever breakpoint N is reached.");
c906108c 7501
c94fdfd0
EZ
7502 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7503 "Set a temporary breakpoint. Args like \"break\" command.\n\
c906108c
SS
7504Like \"break\" except the breakpoint is only temporary,\n\
7505so it will be deleted when hit. Equivalent to \"break\" followed\n\
7506by using \"enable delete\" on the breakpoint number.");
5ba2abeb 7507 set_cmd_completer (c, location_completer);
c94fdfd0 7508
c94fdfd0
EZ
7509 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7510 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
c906108c
SS
7511Like \"break\" except the breakpoint requires hardware support,\n\
7512some target hardware may not have this support.");
5ba2abeb 7513 set_cmd_completer (c, location_completer);
c906108c 7514
c94fdfd0
EZ
7515 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7516 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
c906108c
SS
7517Like \"hbreak\" except the breakpoint is only temporary,\n\
7518so it will be deleted when hit.");
5ba2abeb 7519 set_cmd_completer (c, location_completer);
c906108c
SS
7520
7521 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7522 "Enable some breakpoints.\n\
7523Give breakpoint numbers (separated by spaces) as arguments.\n\
7524With no subcommand, breakpoints are enabled until you command otherwise.\n\
7525This is used to cancel the effect of the \"disable\" command.\n\
7526With a subcommand you can enable temporarily.",
7527 &enablelist, "enable ", 1, &cmdlist);
7528 if (xdb_commands)
c5aa993b
JM
7529 add_com ("ab", class_breakpoint, enable_command,
7530 "Enable some breakpoints.\n\
c906108c
SS
7531Give breakpoint numbers (separated by spaces) as arguments.\n\
7532With no subcommand, breakpoints are enabled until you command otherwise.\n\
7533This is used to cancel the effect of the \"disable\" command.\n\
7534With a subcommand you can enable temporarily.");
7535
7536 add_com_alias ("en", "enable", class_breakpoint, 1);
7537
7538 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
c5aa993b 7539 "Enable some breakpoints.\n\
c906108c
SS
7540Give breakpoint numbers (separated by spaces) as arguments.\n\
7541This is used to cancel the effect of the \"disable\" command.\n\
7542May be abbreviated to simply \"enable\".\n",
c5aa993b 7543 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c
SS
7544
7545 add_cmd ("once", no_class, enable_once_command,
7546 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7547If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7548 &enablebreaklist);
7549
7550 add_cmd ("delete", no_class, enable_delete_command,
7551 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7552If a breakpoint is hit while enabled in this fashion, it is deleted.",
7553 &enablebreaklist);
7554
7555 add_cmd ("delete", no_class, enable_delete_command,
7556 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7557If a breakpoint is hit while enabled in this fashion, it is deleted.",
7558 &enablelist);
7559
7560 add_cmd ("once", no_class, enable_once_command,
7561 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7562If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7563 &enablelist);
7564
7565 add_prefix_cmd ("disable", class_breakpoint, disable_command,
c5aa993b 7566 "Disable some breakpoints.\n\
c906108c
SS
7567Arguments are breakpoint numbers with spaces in between.\n\
7568To disable all breakpoints, give no argument.\n\
7569A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7570 &disablelist, "disable ", 1, &cmdlist);
7571 add_com_alias ("dis", "disable", class_breakpoint, 1);
7572 add_com_alias ("disa", "disable", class_breakpoint, 1);
7573 if (xdb_commands)
c5aa993b
JM
7574 add_com ("sb", class_breakpoint, disable_command,
7575 "Disable some breakpoints.\n\
c906108c
SS
7576Arguments are breakpoint numbers with spaces in between.\n\
7577To disable all breakpoints, give no argument.\n\
7578A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7579
7580 add_cmd ("breakpoints", class_alias, disable_command,
7581 "Disable some breakpoints.\n\
7582Arguments are breakpoint numbers with spaces in between.\n\
7583To disable all breakpoints, give no argument.\n\
7584A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7585This command may be abbreviated \"disable\".",
7586 &disablelist);
7587
7588 add_prefix_cmd ("delete", class_breakpoint, delete_command,
c5aa993b 7589 "Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
7590Arguments are breakpoint numbers with spaces in between.\n\
7591To delete all breakpoints, give no argument.\n\
7592\n\
7593Also a prefix command for deletion of other GDB objects.\n\
7594The \"unset\" command is also an alias for \"delete\".",
7595 &deletelist, "delete ", 1, &cmdlist);
7596 add_com_alias ("d", "delete", class_breakpoint, 1);
7597 if (xdb_commands)
7598 add_com ("db", class_breakpoint, delete_command,
c5aa993b 7599 "Delete some breakpoints.\n\
c906108c
SS
7600Arguments are breakpoint numbers with spaces in between.\n\
7601To delete all breakpoints, give no argument.\n");
7602
7603 add_cmd ("breakpoints", class_alias, delete_command,
7604 "Delete some breakpoints or auto-display expressions.\n\
7605Arguments are breakpoint numbers with spaces in between.\n\
7606To delete all breakpoints, give no argument.\n\
7607This command may be abbreviated \"delete\".",
7608 &deletelist);
7609
7610 add_com ("clear", class_breakpoint, clear_command,
7611 concat ("Clear breakpoint at specified line or function.\n\
7612Argument may be line number, function name, or \"*\" and an address.\n\
7613If line number is specified, all breakpoints in that line are cleared.\n\
7614If function is specified, breakpoints at beginning of function are cleared.\n\
7615If an address is specified, breakpoints at that address are cleared.\n\n",
c5aa993b 7616 "With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
7617is executing in.\n\
7618\n\
7619See also the \"delete\" command which clears breakpoints by number.", NULL));
7620
c94fdfd0
EZ
7621 c = add_com ("break", class_breakpoint, break_command,
7622 concat ("Set breakpoint at specified line or function.\n\
c906108c
SS
7623Argument may be line number, function name, or \"*\" and an address.\n\
7624If line number is specified, break at start of code for that line.\n\
7625If function is specified, break at start of code for that function.\n\
7626If an address is specified, break at that exact address.\n",
c5aa993b 7627 "With no arg, uses current execution address of selected stack frame.\n\
c906108c
SS
7628This is useful for breaking on return to a stack frame.\n\
7629\n\
7630Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7631\n\
7632Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
5ba2abeb 7633 set_cmd_completer (c, location_completer);
c94fdfd0 7634
c906108c
SS
7635 add_com_alias ("b", "break", class_run, 1);
7636 add_com_alias ("br", "break", class_run, 1);
7637 add_com_alias ("bre", "break", class_run, 1);
7638 add_com_alias ("brea", "break", class_run, 1);
7639
502fd408 7640 if (xdb_commands)
c906108c
SS
7641 {
7642 add_com_alias ("ba", "break", class_breakpoint, 1);
7643 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
c906108c
SS
7644 }
7645
7646 if (dbx_commands)
7647 {
c5aa993b
JM
7648 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7649 "Break in function/address or break at a line in the current file.",
7650 &stoplist, "stop ", 1, &cmdlist);
7651 add_cmd ("in", class_breakpoint, stopin_command,
7652 "Break in function or address.\n", &stoplist);
7653 add_cmd ("at", class_breakpoint, stopat_command,
7654 "Break at a line in the current file.\n", &stoplist);
7655 add_com ("status", class_info, breakpoints_info,
7656 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
7657The \"Type\" column indicates one of:\n\
7658\tbreakpoint - normal breakpoint\n\
7659\twatchpoint - watchpoint\n\
7660The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7661the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7662breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7663address and file/line number respectively.\n\n",
c5aa993b 7664 "Convenience variable \"$_\" and default examine address for \"x\"\n\
c906108c
SS
7665are set to the address of the last breakpoint listed.\n\n\
7666Convenience variable \"$bpnum\" contains the number of the last\n\
7667breakpoint set.", NULL));
7668 }
7669
7670 add_info ("breakpoints", breakpoints_info,
7671 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7672The \"Type\" column indicates one of:\n\
7673\tbreakpoint - normal breakpoint\n\
7674\twatchpoint - watchpoint\n\
7675The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7676the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7677breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7678address and file/line number respectively.\n\n",
c5aa993b 7679 "Convenience variable \"$_\" and default examine address for \"x\"\n\
c906108c
SS
7680are set to the address of the last breakpoint listed.\n\n\
7681Convenience variable \"$bpnum\" contains the number of the last\n\
7682breakpoint set.", NULL));
7683
7684 if (xdb_commands)
c5aa993b
JM
7685 add_com ("lb", class_breakpoint, breakpoints_info,
7686 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
7687The \"Type\" column indicates one of:\n\
7688\tbreakpoint - normal breakpoint\n\
7689\twatchpoint - watchpoint\n\
7690The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7691the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7692breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7693address and file/line number respectively.\n\n",
c5aa993b 7694 "Convenience variable \"$_\" and default examine address for \"x\"\n\
c906108c
SS
7695are set to the address of the last breakpoint listed.\n\n\
7696Convenience variable \"$bpnum\" contains the number of the last\n\
7697breakpoint set.", NULL));
7698
c906108c 7699 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
c5aa993b 7700 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
7701The \"Type\" column indicates one of:\n\
7702\tbreakpoint - normal breakpoint\n\
7703\twatchpoint - watchpoint\n\
7704\tlongjmp - internal breakpoint used to step through longjmp()\n\
7705\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7706\tuntil - internal breakpoint used by the \"until\" command\n\
7707\tfinish - internal breakpoint used by the \"finish\" command\n",
c5aa993b 7708 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
7709the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7710breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7711address and file/line number respectively.\n\n",
c5aa993b 7712 "Convenience variable \"$_\" and default examine address for \"x\"\n\
c906108c
SS
7713are set to the address of the last breakpoint listed.\n\n\
7714Convenience variable \"$bpnum\" contains the number of the last\n\
7715breakpoint set.", NULL),
7716 &maintenanceinfolist);
7717
c906108c 7718 add_com ("catch", class_breakpoint, catch_command,
c5aa993b 7719 "Set catchpoints to catch events.\n\
c906108c
SS
7720Raised signals may be caught:\n\
7721\tcatch signal - all signals\n\
7722\tcatch signal <signame> - a particular signal\n\
7723Raised exceptions may be caught:\n\
7724\tcatch throw - all exceptions, when thrown\n\
7725\tcatch throw <exceptname> - a particular exception, when thrown\n\
7726\tcatch catch - all exceptions, when caught\n\
7727\tcatch catch <exceptname> - a particular exception, when caught\n\
7728Thread or process events may be caught:\n\
7729\tcatch thread_start - any threads, just after creation\n\
7730\tcatch thread_exit - any threads, just before expiration\n\
7731\tcatch thread_join - any threads, just after joins\n\
7732Process events may be caught:\n\
7733\tcatch start - any processes, just after creation\n\
7734\tcatch exit - any processes, just before expiration\n\
7735\tcatch fork - calls to fork()\n\
7736\tcatch vfork - calls to vfork()\n\
7737\tcatch exec - calls to exec()\n\
7738Dynamically-linked library events may be caught:\n\
7739\tcatch load - loads of any library\n\
7740\tcatch load <libname> - loads of a particular library\n\
7741\tcatch unload - unloads of any library\n\
7742\tcatch unload <libname> - unloads of a particular library\n\
7743The act of your program's execution stopping may also be caught:\n\
7744\tcatch stop\n\n\
7745C++ exceptions may be caught:\n\
7746\tcatch throw - all exceptions, when thrown\n\
7747\tcatch catch - all exceptions, when caught\n\
7748\n\
7749Do \"help set follow-fork-mode\" for info on debugging your program\n\
7750after a fork or vfork is caught.\n\n\
7751Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
c5aa993b 7752
c906108c 7753 add_com ("tcatch", class_breakpoint, tcatch_command,
c5aa993b 7754 "Set temporary catchpoints to catch events.\n\
c906108c
SS
7755Args like \"catch\" command.\n\
7756Like \"catch\" except the catchpoint is only temporary,\n\
7757so it will be deleted when hit. Equivalent to \"catch\" followed\n\
7758by using \"enable delete\" on the catchpoint number.");
c5aa993b 7759
c94fdfd0
EZ
7760 c = add_com ("watch", class_breakpoint, watch_command,
7761 "Set a watchpoint for an expression.\n\
c906108c
SS
7762A watchpoint stops execution of your program whenever the value of\n\
7763an expression changes.");
5ba2abeb 7764 set_cmd_completer (c, location_completer);
c906108c 7765
c94fdfd0
EZ
7766 c = add_com ("rwatch", class_breakpoint, rwatch_command,
7767 "Set a read watchpoint for an expression.\n\
c906108c
SS
7768A watchpoint stops execution of your program whenever the value of\n\
7769an expression is read.");
5ba2abeb 7770 set_cmd_completer (c, location_completer);
c906108c 7771
c94fdfd0
EZ
7772 c = add_com ("awatch", class_breakpoint, awatch_command,
7773 "Set a watchpoint for an expression.\n\
c906108c
SS
7774A watchpoint stops execution of your program whenever the value of\n\
7775an expression is either read or written.");
5ba2abeb 7776 set_cmd_completer (c, location_completer);
c906108c
SS
7777
7778 add_info ("watchpoints", breakpoints_info,
7779 "Synonym for ``info breakpoints''.");
7780
7781
7782 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
c5aa993b
JM
7783 (char *) &can_use_hw_watchpoints,
7784 "Set debugger's willingness to use watchpoint hardware.\n\
c906108c
SS
7785If zero, gdb will not use hardware for new watchpoints, even if\n\
7786such is available. (However, any hardware watchpoints that were\n\
7787created before setting this to nonzero, will continue to use watchpoint\n\
7788hardware.)",
c5aa993b 7789 &setlist);
c906108c
SS
7790 add_show_from_set (c, &showlist);
7791
7792 can_use_hw_watchpoints = 1;
7793}