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