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