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