1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 #include "breakpoint.h"
27 #include "expression.h"
33 #include "gdbthread.h"
36 #include "gdb_string.h"
42 /* Prototypes for local functions. */
45 catch_command_1 PARAMS ((char *, int, int));
48 enable_delete_command PARAMS ((char *, int));
51 enable_delete_breakpoint PARAMS ((struct breakpoint *));
54 enable_once_command PARAMS ((char *, int));
57 enable_once_breakpoint PARAMS ((struct breakpoint *));
60 disable_command PARAMS ((char *, int));
63 enable_command PARAMS ((char *, int));
66 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
69 ignore_command PARAMS ((char *, int));
71 static int breakpoint_re_set_one PARAMS ((PTR));
74 clear_command PARAMS ((char *, int));
77 catch_command PARAMS ((char *, int));
80 handle_gnu_4_16_catch_command PARAMS ((char *, int, int));
82 static struct symtabs_and_lines
83 get_catch_sals PARAMS ((int));
86 watch_command PARAMS ((char *, int));
89 can_use_hardware_watchpoint PARAMS ((struct value *));
91 static void break_at_finish_command PARAMS ((char *, int));
92 static void break_at_finish_at_depth_command PARAMS ((char *, int));
95 tbreak_command PARAMS ((char *, int));
97 static void tbreak_at_finish_command PARAMS ((char *, int));
100 break_command_1 PARAMS ((char *, int, int));
103 mention PARAMS ((struct breakpoint *));
106 set_raw_breakpoint PARAMS ((struct symtab_and_line));
109 check_duplicates PARAMS ((CORE_ADDR, asection *));
112 describe_other_breakpoints PARAMS ((CORE_ADDR, asection *));
115 breakpoints_info PARAMS ((char *, int));
118 breakpoint_1 PARAMS ((int, int));
121 bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
123 static int breakpoint_cond_eval PARAMS ((PTR));
126 cleanup_executing_breakpoints PARAMS ((PTR));
129 commands_command PARAMS ((char *, int));
132 condition_command PARAMS ((char *, int));
135 get_number PARAMS ((char **));
138 set_breakpoint_count PARAMS ((int));
141 static struct breakpoint *
142 create_temp_exception_breakpoint PARAMS ((CORE_ADDR));
151 remove_breakpoint PARAMS ((struct breakpoint *, insertion_state_t));
153 static int print_it_normal PARAMS ((bpstat));
156 enum exception_event_kind kind;
158 } args_for_catchpoint_enable;
160 static int watchpoint_check PARAMS ((PTR));
162 static int cover_target_enable_exception_callback PARAMS ((PTR));
164 static int print_it_done PARAMS ((bpstat));
166 static int print_it_noop PARAMS ((bpstat));
168 static void maintenance_info_breakpoints PARAMS ((char *, int));
170 #ifdef GET_LONGJMP_TARGET
171 static void create_longjmp_breakpoint PARAMS ((char *));
174 static int hw_breakpoint_used_count PARAMS ((void));
176 static int hw_watchpoint_used_count PARAMS ((enum bptype, int *));
178 static void hbreak_command PARAMS ((char *, int));
180 static void thbreak_command PARAMS ((char *, int));
182 static void watch_command_1 PARAMS ((char *, int, int));
184 static void rwatch_command PARAMS ((char *, int));
186 static void awatch_command PARAMS ((char *, int));
188 static void do_enable_breakpoint PARAMS ((struct breakpoint *, enum bpdisp));
190 static void create_solib_load_unload_event_breakpoint PARAMS ((char *hookname, int tempflag, char *dll_pathname, char *cond_string, enum bptype bp_kind));
192 static void create_fork_vfork_event_catchpoint PARAMS ((int tempflag, char * cond_string, enum bptype bp_kind));
194 static void break_at_finish_at_depth_command_1 PARAMS ((char *arg, int flag, int from_tty));
196 static void break_at_finish_command_1 PARAMS ((char *arg, int flag, int from_tty));
198 static void stop_command PARAMS ((char *arg, int from_tty));
200 static void stopin_command PARAMS ((char *arg, int from_tty));
202 static void stopat_command PARAMS ((char *arg, int from_tty));
204 static char *ep_find_event_name_end PARAMS ((char *arg));
206 static char *ep_parse_optional_if_clause PARAMS ((char **arg));
208 static char *ep_parse_optional_filename PARAMS ((char **arg));
210 static void catch_exec_command_1 PARAMS ((char *arg, int tempflag, int from_tty));
212 static void create_exception_catchpoint PARAMS ((int tempflag, char *cond_string, enum exception_event_kind ex_event, struct symtab_and_line *sal));
214 static void catch_exception_command_1 PARAMS ((enum exception_event_kind ex_event, char *arg, int tempflag, int from_tty));
216 static void tcatch_command PARAMS ((char *arg, int from_tty));
218 static void ep_skip_leading_whitespace PARAMS ((char **s));
220 /* Prototypes for exported functions. */
223 awatch_command PARAMS ((char *, int));
226 do_enable_breakpoint PARAMS ((struct breakpoint *, enum bpdisp));
228 /* If FALSE, gdb will not use hardware support for watchpoints, even
229 if such is available. */
230 static int can_use_hw_watchpoints;
232 void delete_command PARAMS ((char *, int));
234 void _initialize_breakpoint PARAMS ((void));
236 void set_breakpoint_count PARAMS ((int));
238 extern int addressprint; /* Print machine addresses? */
240 #if defined (GET_LONGJMP_TARGET) || defined (SOLIB_ADD)
241 static int internal_breakpoint_number = -1;
244 /* Are we executing breakpoint commands? */
245 static int executing_breakpoint_commands;
247 /* Walk the following statement or block through all breakpoints.
248 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
251 #define ALL_BREAKPOINTS(b) for (b = breakpoint_chain; b; b = b->next)
253 #define ALL_BREAKPOINTS_SAFE(b,tmp) \
254 for (b = breakpoint_chain; \
255 b? (tmp=b->next, 1): 0; \
258 /* True if SHIFT_INST_REGS defined, false otherwise. */
260 int must_shift_inst_regs =
261 #if defined(SHIFT_INST_REGS)
268 /* True if breakpoint hit counts should be displayed in breakpoint info. */
270 int show_breakpoint_hit_counts = 1;
272 /* Chain of all breakpoints defined. */
274 struct breakpoint *breakpoint_chain;
276 /* Number of last breakpoint made. */
278 int breakpoint_count;
280 /* Pointer to current exception event record */
281 static struct exception_event_record * current_exception_event;
283 /* Indicator of whether exception catchpoints should be nuked
284 between runs of a program */
285 int exception_catchpoints_are_fragile = 0;
287 /* Indicator of when exception catchpoints set-up should be
288 reinitialized -- e.g. when program is re-run */
289 int exception_support_initialized = 0;
291 /* This function returns a pointer to the string representation of the
292 pathname of the dynamically-linked library that has just been
295 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
296 or undefined results are guaranteed.
298 This string's contents are only valid immediately after the
299 inferior has stopped in the dynamic linker hook, and becomes
300 invalid as soon as the inferior is continued. Clients should make
301 a copy of this string if they wish to continue the inferior and
302 then access the string. */
304 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
305 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
308 /* This function returns a pointer to the string representation of the
309 pathname of the dynamically-linked library that has just been
312 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
313 TRUE, or undefined results are guaranteed.
315 This string's contents are only valid immediately after the
316 inferior has stopped in the dynamic linker hook, and becomes
317 invalid as soon as the inferior is continued. Clients should make
318 a copy of this string if they wish to continue the inferior and
319 then access the string. */
321 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
322 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
325 /* This function is called by the "catch load" command. It allows the
326 debugger to be notified by the dynamic linker when a specified
327 library file (or any library file, if filename is NULL) is loaded. */
329 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
330 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
331 error ("catch of library loads not yet implemented on this platform")
334 /* This function is called by the "catch unload" command. It allows
335 the debugger to be notified by the dynamic linker when a specified
336 library file (or any library file, if filename is NULL) is
339 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
340 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
341 error ("catch of library unloads not yet implemented on this platform")
344 /* Set breakpoint count to NUM. */
347 set_breakpoint_count (num)
350 breakpoint_count = num;
351 set_internalvar (lookup_internalvar ("bpnum"),
352 value_from_longest (builtin_type_int, (LONGEST) num));
355 /* Used in run_command to zero the hit count when a new run starts. */
358 clear_breakpoint_hit_counts ()
360 struct breakpoint *b;
366 /* Default address, symtab and line to put a breakpoint at
367 for "break" command with no arg.
368 if default_breakpoint_valid is zero, the other three are
369 not valid, and "break" with no arg is an error.
371 This set by print_stack_frame, which calls set_default_breakpoint. */
373 int default_breakpoint_valid;
374 CORE_ADDR default_breakpoint_address;
375 struct symtab *default_breakpoint_symtab;
376 int default_breakpoint_line;
378 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
379 Advance *PP after the string and any trailing whitespace.
381 Currently the string can either be a number or "$" followed by the name
382 of a convenience variable. Making it an expression wouldn't work well
383 for map_breakpoint_numbers (e.g. "4 + 5 + 6"). */
392 /* Empty line means refer to the last breakpoint. */
393 return breakpoint_count;
396 /* Make a copy of the name, so we can null-terminate it
397 to pass to lookup_internalvar(). */
402 while (isalnum (*p) || *p == '_')
404 varname = (char *) alloca (p - start + 1);
405 strncpy (varname, start, p - start);
406 varname[p - start] = '\0';
407 val = value_of_internalvar (lookup_internalvar (varname));
408 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_INT)
410 "Convenience variables used to specify breakpoints must have integer values."
412 retval = (int) value_as_long (val);
418 while (*p >= '0' && *p <= '9')
421 /* There is no number here. (e.g. "cond a == b"). */
422 error_no_arg ("breakpoint number");
425 if (!(isspace (*p) || *p == '\0'))
426 error ("breakpoint number expected");
433 /* condition N EXP -- set break condition of breakpoint N to EXP. */
436 condition_command (arg, from_tty)
440 register struct breakpoint *b;
445 error_no_arg ("breakpoint number");
448 bnum = get_number (&p);
451 if (b->number == bnum)
458 if (b->cond_string != NULL)
459 free ((PTR)b->cond_string);
464 b->cond_string = NULL;
466 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
471 /* I don't know if it matters whether this is the string the user
472 typed in or the decompiled expression. */
473 b->cond_string = savestring (arg, strlen (arg));
474 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
476 error ("Junk at end of expression");
478 breakpoints_changed ();
482 error ("No breakpoint number %d.", bnum);
487 commands_command (arg, from_tty)
491 register struct breakpoint *b;
494 struct command_line *l;
496 /* If we allowed this, we would have problems with when to
497 free the storage, if we change the commands currently
500 if (executing_breakpoint_commands)
501 error ("Can't use the \"commands\" command among a breakpoint's commands.");
504 bnum = get_number (&p);
506 error ("Unexpected extra arguments following breakpoint number.");
509 if (b->number == bnum)
512 sprintf (tmpbuf, "Type commands for when breakpoint %d is hit, one per line.", bnum);
513 l = read_command_lines (tmpbuf, from_tty);
514 free_command_lines (&b->commands);
516 breakpoints_changed ();
519 error ("No breakpoint number %d.", bnum);
522 /* Like target_read_memory() but if breakpoints are inserted, return
523 the shadow contents instead of the breakpoints themselves.
525 Read "memory data" from whatever target or inferior we have.
526 Returns zero if successful, errno value if not. EIO is used
527 for address out of bounds. If breakpoints are inserted, returns
528 shadow contents, not the breakpoints themselves. From breakpoint.c. */
531 read_memory_nobpt (memaddr, myaddr, len)
537 struct breakpoint *b;
538 CORE_ADDR bp_addr = 0;
541 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
542 /* No breakpoints on this machine. */
543 return target_read_memory (memaddr, myaddr, len);
547 if (b->type == bp_none)
548 warning ("attempted to read through apparently deleted breakpoint #%d?\n", b->number);
550 /* memory breakpoint? */
551 if (b->type == bp_watchpoint
552 || b->type == bp_hardware_watchpoint
553 || b->type == bp_read_watchpoint
554 || b->type == bp_access_watchpoint)
559 /* Addresses and length of the part of the breakpoint that
561 /* XXXX The m68k, sh and h8300 have different local and remote
562 breakpoint values. BREAKPOINT_FROM_PC still manages to
563 correctly determine the breakpoints memory address and size
564 for these targets. */
565 bp_addr = b->address;
567 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
572 if (bp_addr + bp_size <= memaddr)
573 /* The breakpoint is entirely before the chunk of memory we
576 if (bp_addr >= memaddr + len)
577 /* The breakpoint is entirely after the chunk of memory we are
580 /* Copy the breakpoint from the shadow contents, and recurse for
581 the things before and after. */
583 /* Offset within shadow_contents. */
586 if (bp_addr < memaddr)
588 /* Only copy the second part of the breakpoint. */
589 bp_size -= memaddr - bp_addr;
590 bptoffset = memaddr - bp_addr;
594 if (bp_addr + bp_size > memaddr + len)
596 /* Only copy the first part of the breakpoint. */
597 bp_size -= (bp_addr + bp_size) - (memaddr + len);
600 memcpy (myaddr + bp_addr - memaddr,
601 b->shadow_contents + bptoffset, bp_size);
603 if (bp_addr > memaddr)
605 /* Copy the section of memory before the breakpoint. */
606 status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
611 if (bp_addr + bp_size < memaddr + len)
613 /* Copy the section of memory after the breakpoint. */
614 status = read_memory_nobpt
616 myaddr + bp_addr + bp_size - memaddr,
617 memaddr + len - (bp_addr + bp_size));
624 /* Nothing overlaps. Just call read_memory_noerr. */
625 return target_read_memory (memaddr, myaddr, len);
629 /* insert_breakpoints is used when starting or continuing the program.
630 remove_breakpoints is used when the program stops.
631 Both return zero if successful,
632 or an `errno' value if could not write the inferior. */
635 insert_breakpoints ()
637 register struct breakpoint *b, *temp;
639 int disabled_breaks = 0;
641 static char message1[] = "Error inserting catchpoint %d:\n";
642 static char message[sizeof (message1) + 30];
645 ALL_BREAKPOINTS_SAFE (b, temp)
647 if (b->type != bp_watchpoint
648 && b->type != bp_hardware_watchpoint
649 && b->type != bp_read_watchpoint
650 && b->type != bp_access_watchpoint
651 && b->type != bp_catch_fork
652 && b->type != bp_catch_vfork
653 && b->type != bp_catch_exec
654 && b->type != bp_catch_throw
655 && b->type != bp_catch_catch
656 && b->enable != disabled
657 && b->enable != shlib_disabled
658 && b->enable != call_disabled
662 if (b->type == bp_hardware_breakpoint)
663 val = target_insert_hw_breakpoint(b->address, b->shadow_contents);
666 /* Check to see if breakpoint is in an overlay section;
667 if so, we should set the breakpoint at the LMA address.
668 Only if the section is currently mapped should we ALSO
669 set a break at the VMA address. */
670 if (overlay_debugging && b->section &&
671 section_is_overlay (b->section))
675 addr = overlay_unmapped_address (b->address, b->section);
676 val = target_insert_breakpoint (addr, b->shadow_contents);
677 /* This would be the time to check val, to see if the
678 breakpoint write to the load address succeeded.
679 However, this might be an ordinary occurrance, eg. if
680 the unmapped overlay is in ROM. */
681 val = 0; /* in case unmapped address failed */
682 if (section_is_mapped (b->section))
683 val = target_insert_breakpoint (b->address,
686 else /* ordinary (non-overlay) address */
687 val = target_insert_breakpoint(b->address, b->shadow_contents);
691 /* Can't set the breakpoint. */
692 #if defined (DISABLE_UNSETTABLE_BREAK)
693 if (DISABLE_UNSETTABLE_BREAK (b->address))
695 /* See also: disable_breakpoints_in_shlibs. */
697 b->enable = shlib_disabled;
698 if (!disabled_breaks)
700 target_terminal_ours_for_output ();
701 fprintf_unfiltered (gdb_stderr,
702 "Cannot insert breakpoint %d:\n", b->number);
703 printf_filtered ("Temporarily disabling shared library breakpoints:\n");
706 printf_filtered ("%d ", b->number);
711 target_terminal_ours_for_output ();
712 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
713 #ifdef ONE_PROCESS_WRITETEXT
714 fprintf_unfiltered (gdb_stderr,
715 "The same program may be running in another process.\n");
717 memory_error (val, b->address); /* which bombs us out */
723 else if (ep_is_exception_catchpoint (b)
724 && b->enable != disabled
725 && b->enable != shlib_disabled
726 && b->enable != call_disabled
731 /* If we get here, we must have a callback mechanism for exception
732 events -- with g++ style embedded label support, we insert
733 ordinary breakpoints and not catchpoints. */
734 sprintf (message, message1, b->number); /* Format possible error message */
736 val = target_insert_breakpoint(b->address, b->shadow_contents);
739 /* Couldn't set breakpoint for some reason */
740 target_terminal_ours_for_output ();
741 fprintf_unfiltered (gdb_stderr,
742 "Cannot insert catchpoint %d; disabling it\n", b->number);
743 b->enable = disabled;
747 /* Bp set, now make sure callbacks are enabled */
749 args_for_catchpoint_enable args;
750 args.kind = b->type == bp_catch_catch ? EX_EVENT_CATCH : EX_EVENT_THROW;
752 val = catch_errors (cover_target_enable_exception_callback,
754 message, RETURN_MASK_ALL);
755 if (val != 0 && val != -1)
759 /* Check if something went wrong; val == 0 can be ignored */
762 /* something went wrong */
763 target_terminal_ours_for_output ();
764 fprintf_unfiltered (gdb_stderr, "Cannot insert catchpoint %d; disabling it\n", b->number);
765 b->enable = disabled;
770 else if ((b->type == bp_hardware_watchpoint ||
771 b->type == bp_read_watchpoint ||
772 b->type == bp_access_watchpoint)
773 && b->enable == enabled
777 struct frame_info *saved_frame;
778 int saved_level, within_current_scope;
779 value_ptr mark = value_mark ();
782 /* Save the current frame and level so we can restore it after
783 evaluating the watchpoint expression on its own frame. */
784 saved_frame = selected_frame;
785 saved_level = selected_frame_level;
787 /* Determine if the watchpoint is within scope. */
788 if (b->exp_valid_block == NULL)
789 within_current_scope = 1;
792 struct frame_info *fi;
794 /* There might be no current frame at this moment if we are
795 resuming from a step over a breakpoint.
796 Set up current frame before trying to find the watchpoint
798 get_current_frame ();
799 fi = find_frame_addr_in_frame_chain (b->watchpoint_frame);
800 within_current_scope = (fi != NULL);
801 if (within_current_scope)
802 select_frame (fi, -1);
805 if (within_current_scope)
807 /* Evaluate the expression and cut the chain of values
808 produced off from the value chain. */
809 v = evaluate_expression (b->exp);
810 value_release_to_mark (mark);
815 /* Look at each value on the value chain. */
816 for ( ; v; v=v->next)
818 /* If it's a memory location, then we must watch it. */
819 if (v->lval == lval_memory)
823 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
824 len = TYPE_LENGTH (VALUE_TYPE (v));
826 if (b->type == bp_read_watchpoint)
828 else if (b->type == bp_access_watchpoint)
831 val = target_insert_watchpoint (addr, len, type);
840 /* Failure to insert a watchpoint on any memory value in the
841 value chain brings us here. */
843 warning ("Hardware watchpoint %d: Could not insert watchpoint\n",
849 Hardware watchpoint %d deleted because the program has left the block in\n\
850 which its expression is valid.\n", b->number);
851 if (b->related_breakpoint)
852 b->related_breakpoint->disposition = del_at_next_stop;
853 b->disposition = del_at_next_stop;
856 /* Restore the frame and level. */
857 if ((saved_frame != selected_frame) ||
858 (saved_level != selected_frame_level))
859 select_and_print_frame (saved_frame, saved_level);
861 else if ((b->type == bp_catch_fork
862 || b->type == bp_catch_vfork
863 || b->type == bp_catch_exec)
864 && b->enable == enabled
872 val = target_insert_fork_catchpoint (inferior_pid);
874 case bp_catch_vfork :
875 val = target_insert_vfork_catchpoint (inferior_pid);
878 val = target_insert_exec_catchpoint (inferior_pid);
883 target_terminal_ours_for_output ();
884 fprintf_unfiltered (gdb_stderr, "Cannot insert catchpoint %d:\n", b->number);
891 printf_filtered ("\n");
898 remove_breakpoints ()
900 register struct breakpoint *b;
907 val = remove_breakpoint (b, mark_uninserted);
916 reattach_breakpoints (pid)
919 register struct breakpoint *b;
921 int saved_inferior_pid = inferior_pid;
923 inferior_pid = pid; /* Because remove_breakpoint will use this global. */
928 remove_breakpoint (b, mark_inserted);
929 if (b->type == bp_hardware_breakpoint)
930 val = target_insert_hw_breakpoint(b->address, b->shadow_contents);
932 val = target_insert_breakpoint(b->address, b->shadow_contents);
935 inferior_pid = saved_inferior_pid;
940 inferior_pid = saved_inferior_pid;
945 update_breakpoints_after_exec ()
947 struct breakpoint * b;
948 struct breakpoint * temp;
950 /* Doing this first prevents the badness of having delete_breakpoint()
951 write a breakpoint's current "shadow contents" to lift the bp. That
952 shadow is NOT valid after an exec()! */
953 mark_breakpoints_out ();
955 ALL_BREAKPOINTS_SAFE (b, temp)
957 /* Solib breakpoints must be explicitly reset after an exec(). */
958 if (b->type == bp_shlib_event)
960 delete_breakpoint (b);
964 /* Step-resume breakpoints are meaningless after an exec(). */
965 if (b->type == bp_step_resume)
967 delete_breakpoint (b);
971 /* Ditto the sigtramp handler breakpoints. */
972 if (b->type == bp_through_sigtramp)
974 delete_breakpoint (b);
978 /* Ditto the exception-handling catchpoints. */
979 if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
981 delete_breakpoint (b);
985 /* Don't delete an exec catchpoint, because else the inferior
986 won't stop when it ought!
988 Similarly, we probably ought to keep vfork catchpoints, 'cause
989 on this target, we may not be able to stop when the vfork is seen,
990 but only when the subsequent exec is seen. (And because deleting
991 fork catchpoints here but not vfork catchpoints will seem mysterious
992 to users, keep those too.)
994 ??rehrauer: Let's hope that merely clearing out this catchpoint's
995 target address field, if any, is sufficient to have it be reset
996 automagically. Certainly on HP-UX that's true. */
997 if ((b->type == bp_catch_exec) ||
998 (b->type == bp_catch_vfork) ||
999 (b->type == bp_catch_fork))
1001 b->address = (CORE_ADDR) NULL;
1005 /* bp_finish is a special case. The only way we ought to be able
1006 to see one of these when an exec() has happened, is if the user
1007 caught a vfork, and then said "finish". Ordinarily a finish just
1008 carries them to the call-site of the current callee, by setting
1009 a temporary bp there and resuming. But in this case, the finish
1010 will carry them entirely through the vfork & exec.
1012 We don't want to allow a bp_finish to remain inserted now. But
1013 we can't safely delete it, 'cause finish_command has a handle to
1014 the bp on a bpstat, and will later want to delete it. There's a
1015 chance (and I've seen it happen) that if we delete the bp_finish
1016 here, that its storage will get reused by the time finish_command
1017 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1018 We really must allow finish_command to delete a bp_finish.
1020 In the absense of a general solution for the "how do we know it's
1021 safe to delete something others may have handles to?" problem, what
1022 we'll do here is just uninsert the bp_finish, and let finish_command
1025 (We know the bp_finish is "doomed" in the sense that it's momentary,
1026 and will be deleted as soon as finish_command sees the inferior stopped.
1027 So it doesn't matter that the bp's address is probably bogus in the
1028 new a.out, unlike e.g., the solib breakpoints.) */
1029 if (b->type == bp_finish)
1034 /* Without a symbolic address, we have little hope of the
1035 pre-exec() address meaning the same thing in the post-exec()
1037 if (b->addr_string == NULL)
1039 delete_breakpoint (b);
1043 /* If this breakpoint has survived the above battery of checks, then
1044 it must have a symbolic address. Be sure that it gets reevaluated
1045 to a target address, rather than reusing the old evaluation. */
1046 b->address = (CORE_ADDR) NULL;
1051 detach_breakpoints (pid)
1054 register struct breakpoint *b;
1056 int saved_inferior_pid = inferior_pid;
1058 if (pid == inferior_pid)
1059 error ("Cannot detach breakpoints of inferior_pid");
1061 inferior_pid = pid; /* Because remove_breakpoint will use this global. */
1066 val = remove_breakpoint (b, mark_inserted);
1069 inferior_pid = saved_inferior_pid;
1074 inferior_pid = saved_inferior_pid;
1079 remove_breakpoint (b, is)
1080 struct breakpoint *b;
1081 insertion_state_t is;
1085 if (b->type == bp_none)
1086 warning ("attempted to remove apparently deleted breakpoint #%d?\n", b->number);
1088 if (b->type != bp_watchpoint
1089 && b->type != bp_hardware_watchpoint
1090 && b->type != bp_read_watchpoint
1091 && b->type != bp_access_watchpoint
1092 && b->type != bp_catch_fork
1093 && b->type != bp_catch_vfork
1094 && b->type != bp_catch_exec
1095 && b->type != bp_catch_catch
1096 && b->type != bp_catch_throw)
1099 if (b->type == bp_hardware_breakpoint)
1100 val = target_remove_hw_breakpoint(b->address, b->shadow_contents);
1103 /* Check to see if breakpoint is in an overlay section;
1104 if so, we should remove the breakpoint at the LMA address.
1105 If that is not equal to the raw address, then we should
1106 presumable remove the breakpoint there as well. */
1107 if (overlay_debugging && b->section &&
1108 section_is_overlay (b->section))
1112 addr = overlay_unmapped_address (b->address, b->section);
1113 val = target_remove_breakpoint (addr, b->shadow_contents);
1114 /* This would be the time to check val, to see if the
1115 shadow breakpoint write to the load address succeeded.
1116 However, this might be an ordinary occurrance, eg. if
1117 the unmapped overlay is in ROM. */
1118 val = 0; /* in case unmapped address failed */
1119 if (section_is_mapped (b->section))
1120 val = target_remove_breakpoint (b->address,
1121 b->shadow_contents);
1123 else /* ordinary (non-overlay) address */
1124 val = target_remove_breakpoint(b->address, b->shadow_contents);
1128 b->inserted = (is == mark_inserted);
1130 else if ((b->type == bp_hardware_watchpoint ||
1131 b->type == bp_read_watchpoint ||
1132 b->type == bp_access_watchpoint)
1133 && b->enable == enabled
1138 b->inserted = (is == mark_inserted);
1139 /* Walk down the saved value chain. */
1140 for (v = b->val_chain; v; v = v->next)
1142 /* For each memory reference remove the watchpoint
1144 if (v->lval == lval_memory)
1146 int addr, len, type;
1148 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1149 len = TYPE_LENGTH (VALUE_TYPE (v));
1151 if (b->type == bp_read_watchpoint)
1153 else if (b->type == bp_access_watchpoint)
1156 val = target_remove_watchpoint (addr, len, type);
1162 /* Failure to remove any of the hardware watchpoints comes here. */
1163 if ((is == mark_uninserted) && (b->inserted))
1164 warning ("Hardware watchpoint %d: Could not remove watchpoint\n",
1167 /* Free the saved value chain. We will construct a new one
1168 the next time the watchpoint is inserted. */
1169 for (v = b->val_chain; v; v = n)
1174 b->val_chain = NULL;
1176 else if ((b->type == bp_catch_fork ||
1177 b->type == bp_catch_vfork ||
1178 b->type == bp_catch_exec)
1179 && b->enable == enabled
1186 val = target_remove_fork_catchpoint (inferior_pid);
1188 case bp_catch_vfork :
1189 val = target_remove_vfork_catchpoint (inferior_pid);
1191 case bp_catch_exec :
1192 val = target_remove_exec_catchpoint (inferior_pid);
1197 b->inserted = (is == mark_inserted);
1199 else if ((b->type == bp_catch_catch ||
1200 b->type == bp_catch_throw)
1201 && b->enable == enabled
1205 val = target_remove_breakpoint(b->address, b->shadow_contents);
1208 b->inserted = (is == mark_inserted);
1210 else if (ep_is_exception_catchpoint (b)
1211 && b->inserted /* sometimes previous insert doesn't happen */
1212 && b->enable == enabled
1216 val = target_remove_breakpoint(b->address, b->shadow_contents);
1220 b->inserted = (is == mark_inserted);
1226 /* Clear the "inserted" flag in all breakpoints. */
1229 mark_breakpoints_out ()
1231 register struct breakpoint *b;
1237 /* Clear the "inserted" flag in all breakpoints and delete any breakpoints
1238 which should go away between runs of the program.
1240 Plus other such housekeeping that has to be done for breakpoints
1243 Note: this function gets called at the end of a run (by generic_mourn_inferior)
1244 and when a run begins (by init_wait_for_inferior). */
1249 breakpoint_init_inferior (context)
1250 enum inf_context context;
1252 register struct breakpoint *b, *temp;
1253 static int warning_needed = 0;
1255 ALL_BREAKPOINTS_SAFE (b, temp)
1262 case bp_watchpoint_scope:
1264 /* If the call dummy breakpoint is at the entry point it will
1265 cause problems when the inferior is rerun, so we better
1268 Also get rid of scope breakpoints. */
1269 delete_breakpoint (b);
1273 case bp_hardware_watchpoint:
1274 case bp_read_watchpoint:
1275 case bp_access_watchpoint:
1277 /* Likewise for watchpoints on local expressions. */
1278 if (b->exp_valid_block != NULL)
1279 delete_breakpoint (b);
1282 /* Likewise for exception catchpoints in dynamic-linked
1283 executables where required */
1284 if (ep_is_exception_catchpoint (b) &&
1285 exception_catchpoints_are_fragile)
1288 delete_breakpoint (b);
1294 if (exception_catchpoints_are_fragile)
1295 exception_support_initialized = 0;
1297 /* Don't issue the warning unless it's really needed... */
1298 if (warning_needed && (context != inf_exited))
1300 warning ("Exception catchpoints from last run were deleted, you must reinsert them explicitly");
1305 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
1306 When continuing from a location with a breakpoint,
1307 we actually single step once before calling insert_breakpoints. */
1310 breakpoint_here_p (pc)
1313 register struct breakpoint *b;
1316 if (b->enable == enabled
1317 && b->enable != shlib_disabled
1318 && b->enable != call_disabled
1319 && b->address == pc) /* bp is enabled and matches pc */
1321 if (overlay_debugging &&
1322 section_is_overlay (b->section) &&
1323 !section_is_mapped (b->section))
1324 continue; /* unmapped overlay -- can't be a match */
1332 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(), but it
1333 only returns true if there is actually a breakpoint inserted at PC. */
1336 breakpoint_inserted_here_p (pc)
1339 register struct breakpoint *b;
1343 && b->address == pc) /* bp is inserted and matches pc */
1345 if (overlay_debugging &&
1346 section_is_overlay (b->section) &&
1347 !section_is_mapped (b->section))
1348 continue; /* unmapped overlay -- can't be a match */
1356 /* Return nonzero if FRAME is a dummy frame. We can't use PC_IN_CALL_DUMMY
1357 because figuring out the saved SP would take too much time, at least using
1358 get_saved_register on the 68k. This means that for this function to
1359 work right a port must use the bp_call_dummy breakpoint. */
1362 frame_in_dummy (frame)
1363 struct frame_info *frame;
1365 struct breakpoint *b;
1370 if (USE_GENERIC_DUMMY_FRAMES)
1371 return generic_pc_in_call_dummy (frame->pc, frame->frame, frame->frame);
1375 if (b->type == bp_call_dummy
1376 && b->frame == frame->frame
1377 /* We need to check the PC as well as the frame on the sparc,
1378 for signals.exp in the testsuite. */
1381 - SIZEOF_CALL_DUMMY_WORDS / sizeof (LONGEST) * REGISTER_SIZE))
1382 && frame->pc <= b->address)
1388 /* breakpoint_match_thread (PC, PID) returns true if the breakpoint at PC
1389 is valid for process/thread PID. */
1392 breakpoint_thread_match (pc, pid)
1396 struct breakpoint *b;
1399 thread = pid_to_thread_id (pid);
1402 if (b->enable != disabled
1403 && b->enable != shlib_disabled
1404 && b->enable != call_disabled
1406 && (b->thread == -1 || b->thread == thread))
1408 if (overlay_debugging &&
1409 section_is_overlay (b->section) &&
1410 !section_is_mapped (b->section))
1411 continue; /* unmapped overlay -- can't be a match */
1420 /* bpstat stuff. External routines' interfaces are documented
1424 ep_is_catchpoint (ep)
1425 struct breakpoint * ep;
1428 (ep->type == bp_catch_load)
1429 || (ep->type == bp_catch_unload)
1430 || (ep->type == bp_catch_fork)
1431 || (ep->type == bp_catch_vfork)
1432 || (ep->type == bp_catch_exec)
1433 || (ep->type == bp_catch_catch)
1434 || (ep->type == bp_catch_throw)
1437 /* ??rehrauer: Add more kinds here, as are implemented... */
1442 ep_is_shlib_catchpoint (ep)
1443 struct breakpoint * ep;
1446 (ep->type == bp_catch_load)
1447 || (ep->type == bp_catch_unload)
1452 ep_is_exception_catchpoint (ep)
1453 struct breakpoint * ep;
1456 (ep->type == bp_catch_catch)
1457 || (ep->type == bp_catch_throw)
1461 /* Clear a bpstat so that it says we are not at any breakpoint.
1462 Also free any storage that is part of a bpstat. */
1477 if (p->old_val != NULL)
1478 value_free (p->old_val);
1485 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1486 is part of the bpstat is copied as well. */
1494 bpstat retval = NULL;
1499 for (; bs != NULL; bs = bs->next)
1501 tmp = (bpstat) xmalloc (sizeof (*tmp));
1502 memcpy (tmp, bs, sizeof (*tmp));
1504 /* This is the first thing in the chain. */
1514 /* Find the bpstat associated with this breakpoint */
1517 bpstat_find_breakpoint(bsp, breakpoint)
1519 struct breakpoint *breakpoint;
1521 if (bsp == NULL) return NULL;
1523 for (;bsp != NULL; bsp = bsp->next) {
1524 if (bsp->breakpoint_at == breakpoint) return bsp;
1529 /* Find a step_resume breakpoint associated with this bpstat.
1530 (If there are multiple step_resume bp's on the list, this function
1531 will arbitrarily pick one.)
1533 It is an error to use this function if BPSTAT doesn't contain a
1534 step_resume breakpoint.
1536 See wait_for_inferior's use of this function. */
1538 bpstat_find_step_resume_breakpoint (bsp)
1542 error ("Internal error (bpstat_find_step_resume_breakpoint)");
1544 for (; bsp != NULL; bsp = bsp->next)
1546 if ((bsp->breakpoint_at != NULL) &&
1547 (bsp->breakpoint_at->type == bp_step_resume))
1548 return bsp->breakpoint_at;
1551 error ("Internal error (no step_resume breakpoint found)");
1555 /* Return the breakpoint number of the first breakpoint we are stopped
1556 at. *BSP upon return is a bpstat which points to the remaining
1557 breakpoints stopped at (but which is not guaranteed to be good for
1558 anything but further calls to bpstat_num).
1559 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1565 struct breakpoint *b;
1568 return 0; /* No more breakpoint values */
1571 b = (*bsp)->breakpoint_at;
1572 *bsp = (*bsp)->next;
1574 return -1; /* breakpoint that's been deleted since */
1576 return b->number; /* We have its number */
1580 /* Modify BS so that the actions will not be performed. */
1583 bpstat_clear_actions (bs)
1586 for (; bs != NULL; bs = bs->next)
1588 bs->commands = NULL;
1589 if (bs->old_val != NULL)
1591 value_free (bs->old_val);
1597 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1600 cleanup_executing_breakpoints (ignore)
1603 executing_breakpoint_commands = 0;
1606 /* Execute all the commands associated with all the breakpoints at this
1607 location. Any of these commands could cause the process to proceed
1608 beyond this point, etc. We look out for such changes by checking
1609 the global "breakpoint_proceeded" after each command. */
1612 bpstat_do_actions (bsp)
1616 struct cleanup *old_chain;
1617 struct command_line *cmd;
1619 /* Avoid endless recursion if a `source' command is contained
1621 if (executing_breakpoint_commands)
1624 executing_breakpoint_commands = 1;
1625 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
1628 /* Note that (as of this writing), our callers all appear to
1629 be passing us the address of global stop_bpstat. And, if
1630 our calls to execute_control_command cause the inferior to
1631 proceed, that global (and hence, *bsp) will change.
1633 We must be careful to not touch *bsp unless the inferior
1634 has not proceeded. */
1636 /* This pointer will iterate over the list of bpstat's. */
1639 breakpoint_proceeded = 0;
1640 for (; bs != NULL; bs = bs->next)
1645 execute_control_command (cmd);
1647 if (breakpoint_proceeded)
1652 if (breakpoint_proceeded)
1653 /* The inferior is proceeded by the command; bomb out now.
1654 The bpstat chain has been blown away by wait_for_inferior.
1655 But since execution has stopped again, there is a new bpstat
1656 to look at, so start over. */
1659 bs->commands = NULL;
1662 executing_breakpoint_commands = 0;
1663 discard_cleanups (old_chain);
1666 /* This is the normal print_it function for a bpstat. In the future,
1667 much of this logic could (should?) be moved to bpstat_stop_status,
1668 by having it set different print_it functions.
1670 Current scheme: When we stop, bpstat_print() is called.
1671 It loops through the bpstat list of things causing this stop,
1672 calling the print_it function for each one. The default
1673 print_it function, used for breakpoints, is print_it_normal().
1674 (Also see print_it_noop() and print_it_done()).
1676 Return values from this routine (used by bpstat_print() to
1678 1: Means we printed something, and we do *not* desire that
1679 something to be followed by a location.
1680 0: Means we printed something, and we *do* desire that
1681 something to be followed by a location.
1682 -1: Means we printed nothing. */
1685 print_it_normal (bs)
1688 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
1689 which has since been deleted. */
1690 if (bs->breakpoint_at == NULL
1691 || (bs->breakpoint_at->type != bp_breakpoint
1692 && bs->breakpoint_at->type != bp_catch_load
1693 && bs->breakpoint_at->type != bp_catch_unload
1694 && bs->breakpoint_at->type != bp_catch_fork
1695 && bs->breakpoint_at->type != bp_catch_vfork
1696 && bs->breakpoint_at->type != bp_catch_exec
1697 && bs->breakpoint_at->type != bp_catch_catch
1698 && bs->breakpoint_at->type != bp_catch_throw
1699 && bs->breakpoint_at->type != bp_hardware_breakpoint
1700 && bs->breakpoint_at->type != bp_watchpoint
1701 && bs->breakpoint_at->type != bp_read_watchpoint
1702 && bs->breakpoint_at->type != bp_access_watchpoint
1703 && bs->breakpoint_at->type != bp_hardware_watchpoint))
1706 if (ep_is_shlib_catchpoint (bs->breakpoint_at))
1708 annotate_catchpoint (bs->breakpoint_at->number);
1709 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1710 if (bs->breakpoint_at->type == bp_catch_load)
1711 printf_filtered ("loaded");
1712 else if (bs->breakpoint_at->type == bp_catch_unload)
1713 printf_filtered ("unloaded");
1714 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1717 else if (bs->breakpoint_at->type == bp_catch_fork ||
1718 bs->breakpoint_at->type == bp_catch_vfork)
1720 annotate_catchpoint (bs->breakpoint_at->number);
1721 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1722 if (bs->breakpoint_at->type == bp_catch_fork)
1723 printf_filtered ("forked");
1724 else if (bs->breakpoint_at->type == bp_catch_vfork)
1725 printf_filtered ("vforked");
1726 printf_filtered (" process %d), ", bs->breakpoint_at->forked_inferior_pid);
1729 else if (bs->breakpoint_at->type == bp_catch_exec)
1731 annotate_catchpoint (bs->breakpoint_at->number);
1732 printf_filtered ("\nCatchpoint %d (exec'd %s), ",
1733 bs->breakpoint_at->number,
1734 bs->breakpoint_at->exec_pathname);
1737 else if (bs->breakpoint_at->type == bp_catch_catch)
1739 if (current_exception_event && (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
1741 annotate_catchpoint (bs->breakpoint_at->number);
1742 printf_filtered ("\nCatchpoint %d (exception caught), ", bs->breakpoint_at->number);
1743 printf_filtered ("throw location ");
1744 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
1745 printf_filtered ("%s:%d",
1746 CURRENT_EXCEPTION_THROW_FILE,
1747 CURRENT_EXCEPTION_THROW_LINE);
1749 printf_filtered ("unknown");
1751 printf_filtered (", catch location ");
1752 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
1753 printf_filtered ("%s:%d",
1754 CURRENT_EXCEPTION_CATCH_FILE,
1755 CURRENT_EXCEPTION_CATCH_LINE);
1757 printf_filtered ("unknown");
1759 printf_filtered ("\n");
1760 return 1; /* don't bother to print location frame info */
1764 return -1; /* really throw, some other bpstat will handle it */
1767 else if (bs->breakpoint_at->type == bp_catch_throw)
1769 if (current_exception_event && (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
1771 annotate_catchpoint (bs->breakpoint_at->number);
1772 printf_filtered ("\nCatchpoint %d (exception thrown), ", bs->breakpoint_at->number);
1773 printf_filtered ("throw location ");
1774 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
1775 printf_filtered ("%s:%d",
1776 CURRENT_EXCEPTION_THROW_FILE,
1777 CURRENT_EXCEPTION_THROW_LINE);
1779 printf_filtered ("unknown");
1781 printf_filtered (", catch location ");
1782 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
1783 printf_filtered ("%s:%d",
1784 CURRENT_EXCEPTION_CATCH_FILE,
1785 CURRENT_EXCEPTION_CATCH_LINE);
1787 printf_filtered ("unknown");
1789 printf_filtered ("\n");
1790 return 1; /* don't bother to print location frame info */
1794 return -1; /* really catch, some other bpstat willhandle it */
1798 else if (bs->breakpoint_at->type == bp_breakpoint ||
1799 bs->breakpoint_at->type == bp_hardware_breakpoint)
1801 /* I think the user probably only wants to see one breakpoint
1802 number, not all of them. */
1803 annotate_breakpoint (bs->breakpoint_at->number);
1804 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
1807 else if ((bs->old_val != NULL) &&
1808 (bs->breakpoint_at->type == bp_watchpoint ||
1809 bs->breakpoint_at->type == bp_access_watchpoint ||
1810 bs->breakpoint_at->type == bp_hardware_watchpoint))
1812 annotate_watchpoint (bs->breakpoint_at->number);
1813 mention (bs->breakpoint_at);
1814 printf_filtered ("\nOld value = ");
1815 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
1816 printf_filtered ("\nNew value = ");
1817 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
1818 Val_pretty_default);
1819 printf_filtered ("\n");
1820 value_free (bs->old_val);
1822 /* More than one watchpoint may have been triggered. */
1825 else if (bs->breakpoint_at->type == bp_access_watchpoint ||
1826 bs->breakpoint_at->type == bp_read_watchpoint)
1828 mention (bs->breakpoint_at);
1829 printf_filtered ("\nValue = ");
1830 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
1831 Val_pretty_default);
1832 printf_filtered ("\n");
1835 /* We can't deal with it. Maybe another member of the bpstat chain can. */
1839 /* Print a message indicating what happened.
1840 This is called from normal_stop().
1841 The input to this routine is the head of the bpstat list - a list
1842 of the eventpoints that caused this stop.
1843 This routine calls the "print_it" routine(s) associated
1844 with these eventpoints. This will print (for example)
1845 the "Breakpoint n," part of the output.
1846 The return value of this routine is one of:
1848 -1: Means we printed nothing
1849 0: Means we printed something, and expect subsequent
1850 code to print the location. An example is
1851 "Breakpoint 1, " which should be followed by
1853 1 : Means we printed something, but there is no need
1854 to also print the location part of the message.
1855 An example is the catch/throw messages, which
1856 don't require a location appended to the end. */
1867 val = (*bs->print_it) (bs);
1871 /* Maybe another breakpoint in the chain caused us to stop.
1872 (Currently all watchpoints go on the bpstat whether hit or
1873 not. That probably could (should) be changed, provided care is taken
1874 with respect to bpstat_explains_signal). */
1876 return bpstat_print (bs->next);
1878 /* We reached the end of the chain without printing anything. */
1882 /* Evaluate the expression EXP and return 1 if value is zero.
1883 This is used inside a catch_errors to evaluate the breakpoint condition.
1884 The argument is a "struct expression *" that has been cast to char * to
1885 make it pass through catch_errors. */
1888 breakpoint_cond_eval (exp)
1891 value_ptr mark = value_mark ();
1892 int i = !value_true (evaluate_expression ((struct expression *)exp));
1893 value_free_to_mark (mark);
1897 /* Allocate a new bpstat and chain it to the current one. */
1900 bpstat_alloc (b, cbs)
1901 register struct breakpoint *b;
1902 bpstat cbs; /* Current "bs" value */
1906 bs = (bpstat) xmalloc (sizeof (*bs));
1908 bs->breakpoint_at = b;
1909 /* If the condition is false, etc., don't do the commands. */
1910 bs->commands = NULL;
1912 bs->print_it = print_it_normal;
1916 /* Possible return values for watchpoint_check (this can't be an enum
1917 because of check_errors). */
1918 /* The watchpoint has been deleted. */
1919 #define WP_DELETED 1
1920 /* The value has changed. */
1921 #define WP_VALUE_CHANGED 2
1922 /* The value has not changed. */
1923 #define WP_VALUE_NOT_CHANGED 3
1925 #define BP_TEMPFLAG 1
1926 #define BP_HARDWAREFLAG 2
1928 /* Check watchpoint condition. */
1931 watchpoint_check (p)
1934 bpstat bs = (bpstat) p;
1935 struct breakpoint *b;
1936 struct frame_info *fr;
1937 int within_current_scope;
1939 b = bs->breakpoint_at;
1941 if (b->exp_valid_block == NULL)
1942 within_current_scope = 1;
1945 /* There is no current frame at this moment. If we're going to have
1946 any chance of handling watchpoints on local variables, we'll need
1947 the frame chain (so we can determine if we're in scope). */
1948 reinit_frame_cache();
1949 fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
1950 within_current_scope = (fr != NULL);
1951 if (within_current_scope)
1952 /* If we end up stopping, the current frame will get selected
1953 in normal_stop. So this call to select_frame won't affect
1955 select_frame (fr, -1);
1958 if (within_current_scope)
1960 /* We use value_{,free_to_}mark because it could be a
1961 *long* time before we return to the command level and
1962 call free_all_values. We can't call free_all_values because
1963 we might be in the middle of evaluating a function call. */
1965 value_ptr mark = value_mark ();
1966 value_ptr new_val = evaluate_expression (bs->breakpoint_at->exp);
1967 if (!value_equal (b->val, new_val))
1969 release_value (new_val);
1970 value_free_to_mark (mark);
1971 bs->old_val = b->val;
1973 /* We will stop here */
1974 return WP_VALUE_CHANGED;
1978 /* Nothing changed, don't do anything. */
1979 value_free_to_mark (mark);
1980 /* We won't stop here */
1981 return WP_VALUE_NOT_CHANGED;
1986 /* This seems like the only logical thing to do because
1987 if we temporarily ignored the watchpoint, then when
1988 we reenter the block in which it is valid it contains
1989 garbage (in the case of a function, it may have two
1990 garbage values, one before and one after the prologue).
1991 So we can't even detect the first assignment to it and
1992 watch after that (since the garbage may or may not equal
1993 the first value assigned). */
1995 Watchpoint %d deleted because the program has left the block in\n\
1996 which its expression is valid.\n", bs->breakpoint_at->number);
1997 if (b->related_breakpoint)
1998 b->related_breakpoint->disposition = del_at_next_stop;
1999 b->disposition = del_at_next_stop;
2005 /* This is used when everything which needs to be printed has
2006 already been printed. But we still want to print the frame. */
2008 /* Background: When we stop, bpstat_print() is called.
2009 It loops through the bpstat list of things causing this stop,
2010 calling the print_it function for each one. The default
2011 print_it function, used for breakpoints, is print_it_normal().
2012 Also see print_it_noop() and print_it_done() are the other
2013 two possibilities. See comments in bpstat_print() and
2014 in header of print_it_normal() for more detail. */
2023 /* This is used when nothing should be printed for this bpstat entry. */
2024 /* Background: When we stop, bpstat_print() is called.
2025 It loops through the bpstat list of things causing this stop,
2026 calling the print_it function for each one. The default
2027 print_it function, used for breakpoints, is print_it_normal().
2028 Also see print_it_noop() and print_it_done() are the other
2029 two possibilities. See comments in bpstat_print() and
2030 in header of print_it_normal() for more detail. */
2039 /* Get a bpstat associated with having just stopped at address *PC
2040 and frame address CORE_ADDRESS. Update *PC to point at the
2041 breakpoint (if we hit a breakpoint). NOT_A_BREAKPOINT is nonzero
2042 if this is known to not be a real breakpoint (it could still be a
2043 watchpoint, though). */
2045 /* Determine whether we stopped at a breakpoint, etc, or whether we
2046 don't understand this stop. Result is a chain of bpstat's such that:
2048 if we don't understand the stop, the result is a null pointer.
2050 if we understand why we stopped, the result is not null.
2052 Each element of the chain refers to a particular breakpoint or
2053 watchpoint at which we have stopped. (We may have stopped for
2054 several reasons concurrently.)
2056 Each element of the chain has valid next, breakpoint_at,
2057 commands, FIXME??? fields. */
2060 bpstat_stop_status (pc, not_a_breakpoint)
2062 int not_a_breakpoint;
2064 register struct breakpoint *b, *temp;
2066 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2067 int real_breakpoint = 0;
2068 /* Root of the chain of bpstat's */
2069 struct bpstats root_bs[1];
2070 /* Pointer to the last thing in the chain currently. */
2071 bpstat bs = root_bs;
2072 static char message1[] =
2073 "Error evaluating expression for watchpoint %d\n";
2074 char message[sizeof (message1) + 30 /* slop */];
2076 /* Get the address where the breakpoint would have been. */
2077 bp_addr = *pc - DECR_PC_AFTER_BREAK;
2079 ALL_BREAKPOINTS_SAFE (b, temp)
2081 if (b->enable == disabled
2082 || b->enable == shlib_disabled
2083 || b->enable == call_disabled)
2086 if (b->type != bp_watchpoint
2087 && b->type != bp_hardware_watchpoint
2088 && b->type != bp_read_watchpoint
2089 && b->type != bp_access_watchpoint
2090 && b->type != bp_hardware_breakpoint
2091 && b->type != bp_catch_fork
2092 && b->type != bp_catch_vfork
2093 && b->type != bp_catch_exec
2094 && b->type != bp_catch_catch
2095 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2096 if (b->address != bp_addr || /* address doesn't match or */
2097 (overlay_debugging && /* overlay doesn't match */
2098 section_is_overlay (b->section) &&
2099 !section_is_mapped (b->section)))
2102 if (b->type == bp_hardware_breakpoint
2103 && b->address != (*pc - DECR_PC_AFTER_HW_BREAK))
2106 if (b->type != bp_watchpoint
2107 && b->type != bp_hardware_watchpoint
2108 && b->type != bp_read_watchpoint
2109 && b->type != bp_access_watchpoint
2110 && not_a_breakpoint)
2113 /* Is this a catchpoint of a load or unload? If so, did we
2114 get a load or unload of the specified library? If not,
2116 if ((b->type == bp_catch_load)
2117 #if defined(SOLIB_HAVE_LOAD_EVENT)
2118 && (!SOLIB_HAVE_LOAD_EVENT(inferior_pid)
2119 || ((b->dll_pathname != NULL)
2120 && (strcmp (b->dll_pathname, SOLIB_LOADED_LIBRARY_PATHNAME(inferior_pid)) != 0)))
2125 if ((b->type == bp_catch_unload)
2126 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2127 && (!SOLIB_HAVE_UNLOAD_EVENT(inferior_pid)
2128 || ((b->dll_pathname != NULL)
2129 && (strcmp (b->dll_pathname, SOLIB_UNLOADED_LIBRARY_PATHNAME(inferior_pid)) != 0)))
2134 if ((b->type == bp_catch_fork)
2135 && ! target_has_forked (inferior_pid, &b->forked_inferior_pid))
2138 if ((b->type == bp_catch_vfork)
2139 && ! target_has_vforked (inferior_pid, &b->forked_inferior_pid))
2142 if ((b->type == bp_catch_exec)
2143 && ! target_has_execd (inferior_pid, &b->exec_pathname))
2146 if (ep_is_exception_catchpoint (b) &&
2147 !(current_exception_event = target_get_current_exception_event ()))
2150 /* Come here if it's a watchpoint, or if the break address matches */
2152 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2154 /* Watchpoints may change this, if not found to have triggered. */
2158 sprintf (message, message1, b->number);
2159 if (b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
2161 switch (catch_errors (watchpoint_check, bs, message, RETURN_MASK_ALL))
2164 /* We've already printed what needs to be printed. */
2165 bs->print_it = print_it_done;
2168 case WP_VALUE_CHANGED:
2172 case WP_VALUE_NOT_CHANGED:
2174 bs->print_it = print_it_noop;
2176 /* Don't consider this a hit. */
2183 /* Error from catch_errors. */
2184 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2185 if (b->related_breakpoint)
2186 b->related_breakpoint->disposition = del_at_next_stop;
2187 b->disposition = del_at_next_stop;
2188 /* We've already printed what needs to be printed. */
2189 bs->print_it = print_it_done;
2195 else if (b->type == bp_read_watchpoint || b->type == bp_access_watchpoint)
2201 addr = target_stopped_data_address();
2202 if (addr == 0) continue;
2203 for (v = b->val_chain; v; v = v->next)
2205 if (v->lval == lval_memory)
2209 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2215 switch (catch_errors (watchpoint_check, bs, message, RETURN_MASK_ALL))
2218 /* We've already printed what needs to be printed. */
2219 bs->print_it = print_it_done;
2222 case WP_VALUE_CHANGED:
2223 case WP_VALUE_NOT_CHANGED:
2230 /* Error from catch_errors. */
2231 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2232 if (b->related_breakpoint)
2233 b->related_breakpoint->disposition = del_at_next_stop;
2234 b->disposition = del_at_next_stop;
2235 /* We've already printed what needs to be printed. */
2236 bs->print_it = print_it_done;
2242 /* By definition, an encountered breakpoint is a triggered
2246 real_breakpoint = 1;
2249 if (b->frame && b->frame != (get_current_frame ())->frame &&
2250 (b->type == bp_step_resume &&
2251 (INNER_THAN (get_current_frame ()->frame, b->frame))))
2255 int value_is_zero = 0;
2259 /* Need to select the frame, with all that implies
2260 so that the conditions will have the right context. */
2261 select_frame (get_current_frame (), 0);
2263 = catch_errors (breakpoint_cond_eval, (b->cond),
2264 "Error in testing breakpoint condition:\n",
2266 /* FIXME-someday, should give breakpoint # */
2269 if (b->cond && value_is_zero)
2272 /* Don't consider this a hit. */
2275 else if (b->ignore_count > 0)
2282 /* We will stop here */
2283 if (b->disposition == disable)
2284 b->enable = disabled;
2285 bs->commands = b->commands;
2289 (STREQ ("silent", bs->commands->line) ||
2290 (xdb_commands && STREQ ("Q", bs->commands->line))))
2292 bs->commands = bs->commands->next;
2297 /* Print nothing for this entry if we dont stop or if we dont print. */
2298 if (bs->stop == 0 || bs->print == 0)
2299 bs->print_it = print_it_noop;
2302 bs->next = NULL; /* Terminate the chain */
2303 bs = root_bs->next; /* Re-grab the head of the chain */
2305 if (real_breakpoint && bs)
2307 if (bs->breakpoint_at->type == bp_hardware_breakpoint)
2309 if (DECR_PC_AFTER_HW_BREAK != 0)
2311 *pc = *pc - DECR_PC_AFTER_HW_BREAK;
2317 if (DECR_PC_AFTER_BREAK != 0 || must_shift_inst_regs)
2320 #if defined (SHIFT_INST_REGS)
2322 #else /* No SHIFT_INST_REGS. */
2324 #endif /* No SHIFT_INST_REGS. */
2329 /* The value of a hardware watchpoint hasn't changed, but the
2330 intermediate memory locations we are watching may have. */
2331 if (bs && ! bs->stop &&
2332 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2333 bs->breakpoint_at->type == bp_read_watchpoint ||
2334 bs->breakpoint_at->type == bp_access_watchpoint))
2336 remove_breakpoints ();
2337 insert_breakpoints ();
2342 /* Tell what to do about this bpstat. */
2347 /* Classify each bpstat as one of the following. */
2349 /* This bpstat element has no effect on the main_action. */
2352 /* There was a watchpoint, stop but don't print. */
2355 /* There was a watchpoint, stop and print. */
2358 /* There was a breakpoint but we're not stopping. */
2361 /* There was a breakpoint, stop but don't print. */
2364 /* There was a breakpoint, stop and print. */
2367 /* We hit the longjmp breakpoint. */
2370 /* We hit the longjmp_resume breakpoint. */
2373 /* We hit the step_resume breakpoint. */
2376 /* We hit the through_sigtramp breakpoint. */
2379 /* We hit the shared library event breakpoint. */
2382 /* We caught a shared library event. */
2385 /* This is just used to count how many enums there are. */
2389 /* Here is the table which drives this routine. So that we can
2390 format it pretty, we define some abbreviations for the
2391 enum bpstat_what codes. */
2392 #define kc BPSTAT_WHAT_KEEP_CHECKING
2393 #define ss BPSTAT_WHAT_STOP_SILENT
2394 #define sn BPSTAT_WHAT_STOP_NOISY
2395 #define sgl BPSTAT_WHAT_SINGLE
2396 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2397 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2398 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2399 #define sr BPSTAT_WHAT_STEP_RESUME
2400 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2401 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2402 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2404 /* "Can't happen." Might want to print an error message.
2405 abort() is not out of the question, but chances are GDB is just
2406 a bit confused, not unusable. */
2407 #define err BPSTAT_WHAT_STOP_NOISY
2409 /* Given an old action and a class, come up with a new action. */
2410 /* One interesting property of this table is that wp_silent is the same
2411 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2412 after stopping, the check for whether to step over a breakpoint
2413 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2414 reference to how we stopped. We retain separate wp_silent and bp_silent
2415 codes in case we want to change that someday. */
2417 /* step_resume entries: a step resume breakpoint overrides another
2418 breakpoint of signal handling (see comment in wait_for_inferior
2419 at first IN_SIGTRAMP where we set the step_resume breakpoint). */
2420 /* We handle the through_sigtramp_breakpoint the same way; having both
2421 one of those and a step_resume_breakpoint is probably very rare (?). */
2423 static const enum bpstat_what_main_action
2424 table[(int)class_last][(int)BPSTAT_WHAT_LAST] =
2427 /* kc ss sn sgl slr clr clrs sr ts shl shlr
2429 /*no_effect*/ {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
2430 /*wp_silent*/ {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2431 /*wp_noisy*/ {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2432 /*bp_nostop*/ {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
2433 /*bp_silent*/ {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2434 /*bp_noisy*/ {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2435 /*long_jump*/ {slr, ss, sn, slr, err, err, err, sr, ts, shl, shlr},
2436 /*long_resume*/ {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
2437 /*step_resume*/ {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
2438 /*through_sig*/ {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
2439 /*shlib*/ {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
2440 /*catch_shlib*/ {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
2455 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
2456 struct bpstat_what retval;
2458 retval.call_dummy = 0;
2459 for (; bs != NULL; bs = bs->next)
2461 enum class bs_class = no_effect;
2462 if (bs->breakpoint_at == NULL)
2463 /* I suspect this can happen if it was a momentary breakpoint
2464 which has since been deleted. */
2466 switch (bs->breakpoint_at->type)
2472 case bp_hardware_breakpoint:
2478 bs_class = bp_noisy;
2480 bs_class = bp_silent;
2483 bs_class = bp_nostop;
2486 case bp_hardware_watchpoint:
2487 case bp_read_watchpoint:
2488 case bp_access_watchpoint:
2492 bs_class = wp_noisy;
2494 bs_class = wp_silent;
2497 /* There was a watchpoint, but we're not stopping. This requires
2498 no further action. */
2499 bs_class = no_effect;
2502 bs_class = long_jump;
2504 case bp_longjmp_resume:
2505 bs_class = long_resume;
2507 case bp_step_resume:
2510 bs_class = step_resume;
2513 /* It is for the wrong frame. */
2514 bs_class = bp_nostop;
2516 case bp_through_sigtramp:
2517 bs_class = through_sig;
2519 case bp_watchpoint_scope:
2520 bs_class = bp_nostop;
2522 case bp_shlib_event:
2523 bs_class = shlib_event;
2526 case bp_catch_unload:
2527 /* Only if this catchpoint triggered should we cause the
2528 step-out-of-dld behaviour. Otherwise, we ignore this
2531 bs_class = catch_shlib_event;
2533 bs_class = no_effect;
2536 case bp_catch_vfork:
2541 bs_class = bp_noisy;
2543 bs_class = bp_silent;
2546 /* There was a catchpoint, but we're not stopping. This requires
2547 no further action. */
2548 bs_class = no_effect;
2550 case bp_catch_catch:
2551 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
2552 bs_class = bp_nostop;
2554 bs_class = bs->print ? bp_noisy : bp_silent;
2556 case bp_catch_throw:
2557 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
2558 bs_class = bp_nostop;
2560 bs_class = bs->print ? bp_noisy : bp_silent;
2563 /* Make sure the action is stop (silent or noisy), so infrun.c
2564 pops the dummy frame. */
2565 bs_class = bp_silent;
2566 retval.call_dummy = 1;
2569 current_action = table[(int)bs_class][(int)current_action];
2571 retval.main_action = current_action;
2575 /* Nonzero if we should step constantly (e.g. watchpoints on machines
2576 without hardware support). This isn't related to a specific bpstat,
2577 just to things like whether watchpoints are set. */
2580 bpstat_should_step ()
2582 struct breakpoint *b;
2584 if (b->enable == enabled && b->type == bp_watchpoint)
2589 /* Nonzero if there are enabled hardware watchpoints. */
2591 bpstat_have_active_hw_watchpoints ()
2593 struct breakpoint *b;
2595 if ((b->enable == enabled) &&
2597 ((b->type == bp_hardware_watchpoint) ||
2598 (b->type == bp_read_watchpoint) ||
2599 (b->type == bp_access_watchpoint)))
2605 /* Given a bpstat that records zero or more triggered eventpoints, this
2606 function returns another bpstat which contains only the catchpoints
2607 on that first list, if any. */
2609 bpstat_get_triggered_catchpoints (ep_list, cp_list)
2613 struct bpstats root_bs[1];
2614 bpstat bs = root_bs;
2615 struct breakpoint * ep;
2616 char * dll_pathname;
2618 bpstat_clear (cp_list);
2619 root_bs->next = NULL;
2621 for (; ep_list != NULL; ep_list = ep_list->next )
2623 /* Is this eventpoint a catchpoint? If not, ignore it. */
2624 ep = ep_list->breakpoint_at;
2627 if ((ep->type != bp_catch_load) &&
2628 (ep->type != bp_catch_unload) &&
2629 (ep->type != bp_catch_catch) &&
2630 (ep->type != bp_catch_throw)) /* pai: (temp) ADD fork/vfork here!! */
2633 /* Yes; add it to the list. */
2634 bs = bpstat_alloc (ep, bs);
2639 #if defined(SOLIB_ADD)
2640 /* Also, for each triggered catchpoint, tag it with the name of
2641 the library that caused this trigger. (We copy the name now,
2642 because it's only guaranteed to be available NOW, when the
2643 catchpoint triggers. Clients who may wish to know the name
2644 later must get it from the catchpoint itself.) */
2645 if (ep->triggered_dll_pathname != NULL)
2646 free (ep->triggered_dll_pathname);
2647 if (ep->type == bp_catch_load)
2648 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (inferior_pid);
2650 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (inferior_pid);
2652 dll_pathname = NULL;
2656 ep->triggered_dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
2657 strcpy (ep->triggered_dll_pathname, dll_pathname);
2660 ep->triggered_dll_pathname = NULL;
2666 /* Print information on breakpoint number BNUM, or -1 if all.
2667 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
2668 is nonzero, process only watchpoints. */
2673 } ep_type_description_t;
2676 breakpoint_1 (bnum, allflag)
2680 register struct breakpoint *b;
2681 register struct command_line *l;
2682 register struct symbol *sym;
2683 CORE_ADDR last_addr = (CORE_ADDR)-1;
2684 int found_a_breakpoint = 0;
2685 static ep_type_description_t bptypes[] =
2687 {bp_none, "?deleted?"},
2688 {bp_breakpoint, "breakpoint"},
2689 {bp_hardware_breakpoint, "hw breakpoint"},
2690 {bp_until, "until"},
2691 {bp_finish, "finish"},
2692 {bp_watchpoint, "watchpoint"},
2693 {bp_hardware_watchpoint, "hw watchpoint"},
2694 {bp_read_watchpoint, "read watchpoint"},
2695 {bp_access_watchpoint, "acc watchpoint"},
2696 {bp_longjmp, "longjmp"},
2697 {bp_longjmp_resume, "longjmp resume"},
2698 {bp_step_resume, "step resume"},
2699 {bp_through_sigtramp, "sigtramp"},
2700 {bp_watchpoint_scope, "watchpoint scope"},
2701 {bp_call_dummy, "call dummy"},
2702 {bp_shlib_event, "shlib events"},
2703 {bp_catch_load, "catch load"},
2704 {bp_catch_unload, "catch unload"},
2705 {bp_catch_fork, "catch fork"},
2706 {bp_catch_vfork, "catch vfork"},
2707 {bp_catch_exec, "catch exec"},
2708 {bp_catch_catch, "catch catch"},
2709 {bp_catch_throw, "catch throw"}
2712 static char *bpdisps[] = {"del", "dstp", "dis", "keep"};
2713 static char bpenables[] = "nyn";
2714 char wrap_indent[80];
2719 || bnum == b->number)
2721 /* We only print out user settable breakpoints unless the allflag is set. */
2723 && b->type != bp_breakpoint
2724 && b->type != bp_catch_load
2725 && b->type != bp_catch_unload
2726 && b->type != bp_catch_fork
2727 && b->type != bp_catch_vfork
2728 && b->type != bp_catch_exec
2729 && b->type != bp_catch_catch
2730 && b->type != bp_catch_throw
2731 && b->type != bp_hardware_breakpoint
2732 && b->type != bp_watchpoint
2733 && b->type != bp_read_watchpoint
2734 && b->type != bp_access_watchpoint
2735 && b->type != bp_hardware_watchpoint)
2738 if (!found_a_breakpoint++)
2740 annotate_breakpoints_headers ();
2743 printf_filtered ("Num ");
2745 printf_filtered ("Type ");
2747 printf_filtered ("Disp ");
2749 printf_filtered ("Enb ");
2753 printf_filtered ("Address ");
2756 printf_filtered ("What\n");
2758 annotate_breakpoints_table ();
2763 printf_filtered ("%-3d ", b->number);
2765 if ((int)b->type > (sizeof(bptypes)/sizeof(bptypes[0])))
2766 error ("bptypes table does not describe type #%d.", (int)b->type);
2767 if ((int)b->type != bptypes[(int)b->type].type)
2768 error ("bptypes table does not describe type #%d?", (int)b->type);
2769 printf_filtered ("%-14s ", bptypes[(int)b->type].description);
2771 printf_filtered ("%-4s ", bpdisps[(int)b->disposition]);
2773 printf_filtered ("%-3c ", bpenables[(int)b->enable]);
2775 strcpy (wrap_indent, " ");
2777 strcat (wrap_indent, " ");
2781 case bp_hardware_watchpoint:
2782 case bp_read_watchpoint:
2783 case bp_access_watchpoint:
2784 /* Field 4, the address, is omitted (which makes the columns
2785 not line up too nicely with the headers, but the effect
2786 is relatively readable). */
2788 print_expression (b->exp, gdb_stdout);
2792 case bp_catch_unload:
2793 /* Field 4, the address, is omitted (which makes the columns
2794 not line up too nicely with the headers, but the effect
2795 is relatively readable). */
2797 if (b->dll_pathname == NULL)
2798 printf_filtered ("<any library> ");
2800 printf_filtered ("library \"%s\" ", b->dll_pathname);
2804 case bp_catch_vfork:
2805 /* Field 4, the address, is omitted (which makes the columns
2806 not line up too nicely with the headers, but the effect
2807 is relatively readable). */
2809 if (b->forked_inferior_pid != 0)
2810 printf_filtered ("process %d ", b->forked_inferior_pid);
2814 /* Field 4, the address, is omitted (which makes the columns
2815 not line up too nicely with the headers, but the effect
2816 is relatively readable). */
2818 if (b->exec_pathname != NULL)
2819 printf_filtered ("program \"%s\" ", b->exec_pathname);
2821 case bp_catch_catch:
2822 /* Field 4, the address, is omitted (which makes the columns
2823 not line up too nicely with the headers, but the effect
2824 is relatively readable). */
2826 printf_filtered ("exception catch ");
2828 case bp_catch_throw:
2829 /* Field 4, the address, is omitted (which makes the columns
2830 not line up too nicely with the headers, but the effect
2831 is relatively readable). */
2833 printf_filtered ("exception throw ");
2837 case bp_hardware_breakpoint:
2841 case bp_longjmp_resume:
2842 case bp_step_resume:
2843 case bp_through_sigtramp:
2844 case bp_watchpoint_scope:
2846 case bp_shlib_event:
2850 /* FIXME-32x64: need a print_address_numeric with
2854 local_hex_string_custom
2855 ((unsigned long) b->address, "08l"));
2860 last_addr = b->address;
2863 sym = find_pc_sect_function (b->address, b->section);
2866 fputs_filtered ("in ", gdb_stdout);
2867 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
2868 wrap_here (wrap_indent);
2869 fputs_filtered (" at ", gdb_stdout);
2871 fputs_filtered (b->source_file, gdb_stdout);
2872 printf_filtered (":%d", b->line_number);
2875 print_address_symbolic (b->address, gdb_stdout, demangle, " ");
2879 if (b->thread != -1)
2880 printf_filtered (" thread %d", b->thread );
2882 printf_filtered ("\n");
2888 printf_filtered ("\tstop only in stack frame at ");
2889 print_address_numeric (b->frame, 1, gdb_stdout);
2890 printf_filtered ("\n");
2897 printf_filtered ("\tstop only if ");
2898 print_expression (b->cond, gdb_stdout);
2899 printf_filtered ("\n");
2902 if (b->thread != -1)
2904 /* FIXME should make an annotation for this */
2905 printf_filtered ("\tstop only in thread %d\n", b->thread);
2908 if (show_breakpoint_hit_counts && b->hit_count)
2910 /* FIXME should make an annotation for this */
2911 if (ep_is_catchpoint (b))
2912 printf_filtered ("\tcatchpoint");
2914 printf_filtered ("\tbreakpoint");
2915 printf_filtered (" already hit %d time%s\n",
2916 b->hit_count, (b->hit_count == 1 ? "" : "s"));
2919 if (b->ignore_count)
2923 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
2926 if ((l = b->commands))
2932 print_command_line (l, 4, gdb_stdout);
2938 if (!found_a_breakpoint)
2941 printf_filtered ("No breakpoints or watchpoints.\n");
2943 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
2946 /* Compare against (CORE_ADDR)-1 in case some compiler decides
2947 that a comparison of an unsigned with -1 is always false. */
2948 if (last_addr != (CORE_ADDR)-1)
2949 set_next_address (last_addr);
2951 annotate_breakpoints_table_end ();
2956 breakpoints_info (bnum_exp, from_tty)
2963 bnum = parse_and_eval_address (bnum_exp);
2965 breakpoint_1 (bnum, 0);
2970 maintenance_info_breakpoints (bnum_exp, from_tty)
2977 bnum = parse_and_eval_address (bnum_exp);
2979 breakpoint_1 (bnum, 1);
2982 /* Print a message describing any breakpoints set at PC. */
2985 describe_other_breakpoints (pc, section)
2989 register int others = 0;
2990 register struct breakpoint *b;
2993 if (b->address == pc)
2994 if (overlay_debugging == 0 ||
2995 b->section == section)
2999 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3001 if (b->address == pc)
3002 if (overlay_debugging == 0 ||
3003 b->section == section)
3009 ((b->enable == disabled || b->enable == shlib_disabled || b->enable == call_disabled)
3010 ? " (disabled)" : ""),
3011 (others > 1) ? "," : ((others == 1) ? " and" : ""));
3013 printf_filtered ("also set at pc ");
3014 print_address_numeric (pc, 1, gdb_stdout);
3015 printf_filtered (".\n");
3019 /* Set the default place to put a breakpoint
3020 for the `break' command with no arguments. */
3023 set_default_breakpoint (valid, addr, symtab, line)
3026 struct symtab *symtab;
3029 default_breakpoint_valid = valid;
3030 default_breakpoint_address = addr;
3031 default_breakpoint_symtab = symtab;
3032 default_breakpoint_line = line;
3035 /* Rescan breakpoints at address ADDRESS,
3036 marking the first one as "first" and any others as "duplicates".
3037 This is so that the bpt instruction is only inserted once. */
3040 check_duplicates (address, section)
3044 register struct breakpoint *b;
3045 register int count = 0;
3047 if (address == 0) /* Watchpoints are uninteresting */
3051 if (b->enable != disabled
3052 && b->enable != shlib_disabled
3053 && b->enable != call_disabled
3054 && b->address == address
3055 && (overlay_debugging == 0 || b->section == section))
3058 b->duplicate = count > 1;
3062 /* Low level routine to set a breakpoint.
3063 Takes as args the three things that every breakpoint must have.
3064 Returns the breakpoint object so caller can set other things.
3065 Does not set the breakpoint number!
3066 Does not print anything.
3068 ==> This routine should not be called if there is a chance of later
3069 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
3070 your arguments BEFORE calling this routine! */
3073 set_raw_breakpoint (sal)
3074 struct symtab_and_line sal;
3076 register struct breakpoint *b, *b1;
3078 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
3079 memset (b, 0, sizeof (*b));
3080 b->address = sal.pc;
3081 if (sal.symtab == NULL)
3082 b->source_file = NULL;
3084 b->source_file = savestring (sal.symtab->filename,
3085 strlen (sal.symtab->filename));
3086 b->section = sal.section;
3087 b->language = current_language->la_language;
3088 b->input_radix = input_radix;
3090 b->line_number = sal.line;
3091 b->enable = enabled;
3094 b->ignore_count = 0;
3097 b->dll_pathname = NULL;
3098 b->triggered_dll_pathname = NULL;
3099 b->forked_inferior_pid = 0;
3100 b->exec_pathname = NULL;
3102 /* Add this breakpoint to the end of the chain
3103 so that a list of breakpoints will come out in order
3104 of increasing numbers. */
3106 b1 = breakpoint_chain;
3108 breakpoint_chain = b;
3116 check_duplicates (sal.pc, sal.section);
3117 breakpoints_changed ();
3122 #ifdef GET_LONGJMP_TARGET
3125 create_longjmp_breakpoint (func_name)
3128 struct symtab_and_line sal;
3129 struct breakpoint *b;
3131 INIT_SAL (&sal); /* initialize to zeroes */
3132 if (func_name != NULL)
3134 struct minimal_symbol *m;
3136 m = lookup_minimal_symbol_text (func_name, NULL, (struct objfile *)NULL);
3138 sal.pc = SYMBOL_VALUE_ADDRESS (m);
3142 sal.section = find_pc_overlay (sal.pc);
3143 b = set_raw_breakpoint (sal);
3146 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
3147 b->disposition = donttouch;
3148 b->enable = disabled;
3151 b->addr_string = strsave(func_name);
3152 b->number = internal_breakpoint_number--;
3155 #endif /* #ifdef GET_LONGJMP_TARGET */
3157 /* Call this routine when stepping and nexting to enable a breakpoint if we do
3158 a longjmp(). When we hit that breakpoint, call
3159 set_longjmp_resume_breakpoint() to figure out where we are going. */
3162 enable_longjmp_breakpoint()
3164 register struct breakpoint *b;
3167 if (b->type == bp_longjmp)
3169 b->enable = enabled;
3170 check_duplicates (b->address, b->section);
3175 disable_longjmp_breakpoint()
3177 register struct breakpoint *b;
3180 if ( b->type == bp_longjmp
3181 || b->type == bp_longjmp_resume)
3183 b->enable = disabled;
3184 check_duplicates (b->address, b->section);
3190 remove_solib_event_breakpoints ()
3192 register struct breakpoint *b, *temp;
3194 ALL_BREAKPOINTS_SAFE (b, temp)
3195 if (b->type == bp_shlib_event)
3196 delete_breakpoint (b);
3200 create_solib_event_breakpoint (address)
3203 struct breakpoint *b;
3204 struct symtab_and_line sal;
3206 INIT_SAL (&sal); /* initialize to zeroes */
3208 sal.section = find_pc_overlay (sal.pc);
3209 b = set_raw_breakpoint (sal);
3210 b->number = internal_breakpoint_number--;
3211 b->disposition = donttouch;
3212 b->type = bp_shlib_event;
3216 disable_breakpoints_in_shlibs (silent)
3219 struct breakpoint * b;
3220 int disabled_shlib_breaks = 0;
3222 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
3225 #if defined (PC_SOLIB)
3226 if (((b->type == bp_breakpoint) ||
3227 (b->type == bp_hardware_breakpoint)) &&
3228 (b->enable != shlib_disabled) &&
3229 (b->enable != call_disabled) &&
3231 PC_SOLIB (b->address))
3233 b->enable = shlib_disabled;
3236 if (!disabled_shlib_breaks)
3238 target_terminal_ours_for_output ();
3239 printf_filtered ("Temporarily disabling shared library breakpoints:\n");
3241 disabled_shlib_breaks = 1;
3242 printf_filtered ("%d ", b->number);
3247 if (disabled_shlib_breaks && !silent)
3248 printf_filtered ("\n");
3251 /* Try to reenable any breakpoints in shared libraries. */
3253 re_enable_breakpoints_in_shlibs ()
3255 struct breakpoint *b;
3258 if (b->enable == shlib_disabled)
3262 /* Do not reenable the breakpoint if the shared library
3263 is still not mapped in. */
3264 if (target_read_memory (b->address, buf, 1) == 0)
3265 b->enable = enabled;
3272 create_solib_load_unload_event_breakpoint (hookname, tempflag, dll_pathname, cond_string, bp_kind)
3277 enum bptype bp_kind;
3279 struct breakpoint * b;
3280 struct symtabs_and_lines sals;
3281 struct symtab_and_line sal;
3282 struct cleanup * old_chain;
3283 struct cleanup * canonical_strings_chain = NULL;
3285 char * addr_start = hookname;
3286 char * addr_end = NULL;
3287 char ** canonical = (char **) NULL;
3288 int thread = -1; /* All threads. */
3290 /* Set a breakpoint on the specified hook. */
3291 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical);
3292 addr_end = hookname;
3294 if (sals.nelts == 0)
3296 warning ("Unable to set a breakpoint on dynamic linker callback.");
3297 warning ("Suggest linking with /opt/langtools/lib/end.o.");
3298 warning ("GDB will be unable to track shl_load/shl_unload calls");
3301 if (sals.nelts != 1)
3303 warning ("Unable to set a unique breakpoint on dynamic linker callback.");
3304 warning ("GDB will be unable to track shl_load/shl_unload calls");
3308 /* Make sure that all storage allocated in decode_line_1 gets freed in case
3309 the following errors out. */
3310 old_chain = make_cleanup (free, sals.sals);
3311 if (canonical != (char **)NULL)
3313 make_cleanup (free, canonical);
3314 canonical_strings_chain = make_cleanup (null_cleanup, 0);
3315 if (canonical[0] != NULL)
3316 make_cleanup (free, canonical[0]);
3319 resolve_sal_pc (&sals.sals[0]);
3321 /* Remove the canonical strings from the cleanup, they are needed below. */
3322 if (canonical != (char **)NULL)
3323 discard_cleanups (canonical_strings_chain);
3325 b = set_raw_breakpoint (sals.sals[0]);
3326 set_breakpoint_count (breakpoint_count + 1);
3327 b->number = breakpoint_count;
3329 b->cond_string = (cond_string == NULL) ? NULL : savestring (cond_string, strlen (cond_string));
3332 if (canonical != (char **)NULL && canonical[0] != NULL)
3333 b->addr_string = canonical[0];
3334 else if (addr_start)
3335 b->addr_string = savestring (addr_start, addr_end - addr_start);
3337 b->enable = enabled;
3338 b->disposition = tempflag ? del : donttouch;
3340 if (dll_pathname == NULL)
3341 b->dll_pathname = NULL;
3344 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
3345 strcpy (b->dll_pathname, dll_pathname);
3350 do_cleanups (old_chain);
3354 create_solib_load_event_breakpoint (hookname, tempflag, dll_pathname, cond_string)
3357 char * dll_pathname;
3360 create_solib_load_unload_event_breakpoint (hookname,
3368 create_solib_unload_event_breakpoint (hookname, tempflag, dll_pathname, cond_string)
3371 char * dll_pathname;
3374 create_solib_load_unload_event_breakpoint (hookname,
3382 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_kind)
3385 enum bptype bp_kind;
3387 struct symtab_and_line sal;
3388 struct breakpoint * b;
3389 int thread = -1; /* All threads. */
3396 b = set_raw_breakpoint (sal);
3397 set_breakpoint_count (breakpoint_count + 1);
3398 b->number = breakpoint_count;
3400 b->cond_string = (cond_string == NULL) ? NULL : savestring (cond_string, strlen (cond_string));
3402 b->addr_string = NULL;
3403 b->enable = enabled;
3404 b->disposition = tempflag ? del : donttouch;
3405 b->forked_inferior_pid = 0;
3413 create_fork_event_catchpoint (tempflag, cond_string)
3417 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
3421 create_vfork_event_catchpoint (tempflag, cond_string)
3425 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
3429 create_exec_event_catchpoint (tempflag, cond_string)
3433 struct symtab_and_line sal;
3434 struct breakpoint * b;
3435 int thread = -1; /* All threads. */
3442 b = set_raw_breakpoint (sal);
3443 set_breakpoint_count (breakpoint_count + 1);
3444 b->number = breakpoint_count;
3446 b->cond_string = (cond_string == NULL) ? NULL : savestring (cond_string, strlen (cond_string));
3448 b->addr_string = NULL;
3449 b->enable = enabled;
3450 b->disposition = tempflag ? del : donttouch;
3452 b->type = bp_catch_exec;
3458 hw_breakpoint_used_count()
3460 register struct breakpoint *b;
3465 if (b->type == bp_hardware_breakpoint && b->enable == enabled)
3473 hw_watchpoint_used_count(type, other_type_used)
3475 int *other_type_used;
3477 register struct breakpoint *b;
3480 *other_type_used = 0;
3483 if (b->enable == enabled)
3485 if (b->type == type) i++;
3486 else if ((b->type == bp_hardware_watchpoint ||
3487 b->type == bp_read_watchpoint ||
3488 b->type == bp_access_watchpoint)
3489 && b->enable == enabled)
3490 *other_type_used = 1;
3496 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
3497 breakpoint at the target of the jmp_buf.
3499 FIXME - This ought to be done by setting a temporary breakpoint that gets
3500 deleted automatically... */
3503 set_longjmp_resume_breakpoint(pc, frame)
3505 struct frame_info *frame;
3507 register struct breakpoint *b;
3510 if (b->type == bp_longjmp_resume)
3513 b->enable = enabled;
3515 b->frame = frame->frame;
3518 check_duplicates (b->address, b->section);
3524 disable_watchpoints_before_interactive_call_start ()
3526 struct breakpoint * b;
3530 if (((b->type == bp_watchpoint)
3531 || (b->type == bp_hardware_watchpoint)
3532 || (b->type == bp_read_watchpoint)
3533 || (b->type == bp_access_watchpoint)
3534 || ep_is_exception_catchpoint (b))
3535 && (b->enable == enabled))
3537 b->enable = call_disabled;
3538 check_duplicates (b->address, b->section);
3544 enable_watchpoints_after_interactive_call_stop ()
3546 struct breakpoint * b;
3550 if (((b->type == bp_watchpoint)
3551 || (b->type == bp_hardware_watchpoint)
3552 || (b->type == bp_read_watchpoint)
3553 || (b->type == bp_access_watchpoint)
3554 || ep_is_exception_catchpoint (b))
3555 && (b->enable == call_disabled))
3557 b->enable = enabled;
3558 check_duplicates (b->address, b->section);
3564 /* Set a breakpoint that will evaporate an end of command
3565 at address specified by SAL.
3566 Restrict it to frame FRAME if FRAME is nonzero. */
3569 set_momentary_breakpoint (sal, frame, type)
3570 struct symtab_and_line sal;
3571 struct frame_info *frame;
3574 register struct breakpoint *b;
3575 b = set_raw_breakpoint (sal);
3577 b->enable = enabled;
3578 b->disposition = donttouch;
3579 b->frame = (frame ? frame->frame : 0);
3581 /* If we're debugging a multi-threaded program, then we
3582 want momentary breakpoints to be active in only a
3583 single thread of control. */
3584 if (in_thread_list (inferior_pid))
3585 b->thread = pid_to_thread_id (inferior_pid);
3591 /* Tell the user we have just set a breakpoint B. */
3595 struct breakpoint *b;
3599 /* FIXME: This is misplaced; mention() is called by things (like hitting a
3600 watchpoint) other than breakpoint creation. It should be possible to
3601 clean this up and at the same time replace the random calls to
3602 breakpoint_changed with this hook, as has already been done for
3603 delete_breakpoint_hook and so on. */
3604 if (create_breakpoint_hook)
3605 create_breakpoint_hook (b);
3610 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
3613 printf_filtered ("Watchpoint %d: ", b->number);
3614 print_expression (b->exp, gdb_stdout);
3616 case bp_hardware_watchpoint:
3617 printf_filtered ("Hardware watchpoint %d: ", b->number);
3618 print_expression (b->exp, gdb_stdout);
3620 case bp_read_watchpoint:
3621 printf_filtered ("Hardware read watchpoint %d: ", b->number);
3622 print_expression (b->exp, gdb_stdout);
3624 case bp_access_watchpoint:
3625 printf_filtered ("Hardware access (read/write) watchpoint %d: ",b->number);
3626 print_expression (b->exp, gdb_stdout);
3629 printf_filtered ("Breakpoint %d", b->number);
3632 case bp_hardware_breakpoint:
3633 printf_filtered ("Hardware assisted breakpoint %d", b->number);
3637 case bp_catch_unload:
3638 printf_filtered ("Catchpoint %d (%s %s)",
3640 (b->type == bp_catch_load) ? "load" : "unload",
3641 (b->dll_pathname != NULL) ? b->dll_pathname : "<any library>");
3644 case bp_catch_vfork:
3645 printf_filtered ("Catchpoint %d (%s)",
3647 (b->type == bp_catch_fork) ? "fork" : "vfork");
3650 printf_filtered ("Catchpoint %d (exec)",
3653 case bp_catch_catch:
3654 case bp_catch_throw:
3655 printf_filtered ("Catchpoint %d (%s)",
3657 (b->type == bp_catch_catch) ? "catch" : "throw");
3663 case bp_longjmp_resume:
3664 case bp_step_resume:
3665 case bp_through_sigtramp:
3667 case bp_watchpoint_scope:
3668 case bp_shlib_event:
3673 if (addressprint || b->source_file == NULL)
3675 printf_filtered (" at ");
3676 print_address_numeric (b->address, 1, gdb_stdout);
3679 printf_filtered (": file %s, line %d.",
3680 b->source_file, b->line_number);
3681 TUIDO(((TuiOpaqueFuncPtr)tui_vAllSetHasBreakAt, b, 1));
3682 TUIDO(((TuiOpaqueFuncPtr)tuiUpdateAllExecInfos));
3684 printf_filtered ("\n");
3688 /* Set a breakpoint according to ARG (function, linenum or *address)
3689 flag: first bit : 0 non-temporary, 1 temporary.
3690 second bit : 0 normal breakpoint, 1 hardware breakpoint. */
3693 break_command_1 (arg, flag, from_tty)
3697 int tempflag, hardwareflag;
3698 struct symtabs_and_lines sals;
3699 struct symtab_and_line sal;
3700 register struct expression *cond = 0;
3701 register struct breakpoint *b;
3703 /* Pointers in arg to the start, and one past the end, of the condition. */
3704 char *cond_start = NULL;
3705 char *cond_end = NULL;
3706 /* Pointers in arg to the start, and one past the end,
3707 of the address part. */
3708 char *addr_start = NULL;
3709 char *addr_end = NULL;
3710 struct cleanup *old_chain;
3711 struct cleanup *canonical_strings_chain = NULL;
3712 char **canonical = (char **)NULL;
3716 hardwareflag = flag & BP_HARDWAREFLAG;
3717 tempflag = flag & BP_TEMPFLAG;
3722 INIT_SAL (&sal); /* initialize to zeroes */
3724 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
3726 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
3727 && (arg[2] == ' ' || arg[2] == '\t')))
3729 if (default_breakpoint_valid)
3731 sals.sals = (struct symtab_and_line *)
3732 xmalloc (sizeof (struct symtab_and_line));
3733 sal.pc = default_breakpoint_address;
3734 sal.line = default_breakpoint_line;
3735 sal.symtab = default_breakpoint_symtab;
3736 sal.section = find_pc_overlay (sal.pc);
3741 error ("No default breakpoint address now.");
3747 /* Force almost all breakpoints to be in terms of the
3748 current_source_symtab (which is decode_line_1's default). This
3749 should produce the results we want almost all of the time while
3750 leaving default_breakpoint_* alone. */
3751 if (default_breakpoint_valid
3752 && (!current_source_symtab
3753 || (arg && (*arg == '+' || *arg == '-'))))
3754 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
3755 default_breakpoint_line, &canonical);
3757 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, &canonical);
3765 /* Make sure that all storage allocated in decode_line_1 gets freed in case
3766 the following `for' loop errors out. */
3767 old_chain = make_cleanup (free, sals.sals);
3768 if (canonical != (char **)NULL)
3770 make_cleanup (free, canonical);
3771 canonical_strings_chain = make_cleanup (null_cleanup, 0);
3772 for (i = 0; i < sals.nelts; i++)
3774 if (canonical[i] != NULL)
3775 make_cleanup (free, canonical[i]);
3779 thread = -1; /* No specific thread yet */
3781 /* Resolve all line numbers to PC's, and verify that conditions
3782 can be parsed, before setting any breakpoints. */
3783 for (i = 0; i < sals.nelts; i++)
3785 char *tok, *end_tok;
3788 resolve_sal_pc (&sals.sals[i]);
3790 /* It's possible for the PC to be nonzero, but still an illegal
3791 value on some targets.
3793 For example, on HP-UX if you start gdb, and before running the
3794 inferior you try to set a breakpoint on a shared library function
3795 "foo" where the inferior doesn't call "foo" directly but does
3796 pass its address to another function call, then we do find a
3797 minimal symbol for the "foo", but it's address is invalid.
3798 (Appears to be an index into a table that the loader sets up
3799 when the inferior is run.)
3801 Give the target a chance to bless sals.sals[i].pc before we
3802 try to make a breakpoint for it. */
3803 if (PC_REQUIRES_RUN_BEFORE_USE(sals.sals[i].pc))
3805 error ("Cannot break on %s without a running program.", addr_start);
3812 while (*tok == ' ' || *tok == '\t')
3817 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
3820 toklen = end_tok - tok;
3822 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
3824 tok = cond_start = end_tok + 1;
3825 cond = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
3828 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
3834 thread = strtol (tok, &tok, 0);
3836 error ("Junk after thread keyword.");
3837 if (!valid_thread_id (thread))
3838 error ("Unknown thread %d\n", thread);
3841 error ("Junk at end of arguments.");
3846 int i, target_resources_ok;
3848 i = hw_breakpoint_used_count ();
3849 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
3850 bp_hardware_breakpoint, i + sals.nelts, 0);
3851 if (target_resources_ok == 0)
3852 error ("No hardware breakpoint support in the target.");
3853 else if (target_resources_ok < 0)
3854 error ("Hardware breakpoints used exceeds limit.");
3857 /* Remove the canonical strings from the cleanup, they are needed below. */
3858 if (canonical != (char **)NULL)
3859 discard_cleanups (canonical_strings_chain);
3861 /* Now set all the breakpoints. */
3862 for (i = 0; i < sals.nelts; i++)
3867 describe_other_breakpoints (sal.pc, sal.section);
3869 b = set_raw_breakpoint (sal);
3870 set_breakpoint_count (breakpoint_count + 1);
3871 b->number = breakpoint_count;
3872 b->type = hardwareflag ? bp_hardware_breakpoint : bp_breakpoint;
3876 /* If a canonical line spec is needed use that instead of the
3878 if (canonical != (char **)NULL && canonical[i] != NULL)
3879 b->addr_string = canonical[i];
3880 else if (addr_start)
3881 b->addr_string = savestring (addr_start, addr_end - addr_start);
3883 b->cond_string = savestring (cond_start, cond_end - cond_start);
3885 b->enable = enabled;
3886 b->disposition = tempflag ? del : donttouch;
3892 printf_filtered ("Multiple breakpoints were set.\n");
3893 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
3895 do_cleanups (old_chain);
3899 break_at_finish_at_depth_command_1 (arg, flag, from_tty)
3904 struct frame_info *frame;
3905 CORE_ADDR low, high, selected_pc = 0;
3906 char *extra_args, *level_arg, *addr_string;
3907 int extra_args_len = 0, if_arg = 0;
3910 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
3913 if (default_breakpoint_valid)
3917 selected_pc = selected_frame->pc;
3922 error ("No selected frame.");
3925 error ("No default breakpoint address now.");
3929 extra_args = strchr (arg, ' ');
3933 extra_args_len = strlen (extra_args);
3934 level_arg = (char *) xmalloc (extra_args - arg);
3935 strncpy (level_arg, arg, extra_args - arg - 1);
3936 level_arg[extra_args - arg - 1] = '\0';
3940 level_arg = (char *) xmalloc (strlen (arg) + 1);
3941 strcpy (level_arg, arg);
3944 frame = parse_frame_specification (level_arg);
3946 selected_pc = frame->pc;
3953 extra_args_len = strlen (arg);
3958 if (find_pc_partial_function(selected_pc, (char **)NULL, &low, &high))
3960 addr_string = (char *) xmalloc (26 + extra_args_len);
3962 sprintf (addr_string, "*0x%x %s", high, extra_args);
3964 sprintf (addr_string, "*0x%x", high);
3965 break_command_1 (addr_string, flag, from_tty);
3969 error ("No function contains the specified address");
3972 error ("Unable to set breakpoint at procedure exit");
3977 break_at_finish_command_1 (arg, flag, from_tty)
3982 char *addr_string, *break_string, *beg_addr_string;
3983 CORE_ADDR low, high;
3984 struct symtabs_and_lines sals;
3985 struct symtab_and_line sal;
3986 struct cleanup *old_chain;
3988 int extra_args_len = 0;
3992 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
3994 if (default_breakpoint_valid)
3998 addr_string = (char *) xmalloc (15);
3999 sprintf (addr_string, "*0x%x", selected_frame->pc);
4004 error ("No selected frame.");
4007 error ("No default breakpoint address now.");
4011 addr_string = (char *) xmalloc (strlen (arg) + 1);
4012 strcpy (addr_string, arg);
4018 extra_args_len = strlen (arg);
4023 /* get the stuff after the function name or address */
4024 extra_args = strchr (arg, ' ');
4028 extra_args_len = strlen (extra_args);
4035 beg_addr_string = addr_string;
4036 sals = decode_line_1 (&addr_string, 1, (struct symtab *)NULL, 0,
4039 free (beg_addr_string);
4040 old_chain = make_cleanup (free, sals.sals);
4041 for (i = 0; (i < sals.nelts); i++)
4044 if (find_pc_partial_function (sal.pc, (char **)NULL, &low, &high))
4046 break_string = (char *) xmalloc (extra_args_len + 26);
4048 sprintf (break_string, "*0x%x %s", high, extra_args);
4050 sprintf (break_string, "*0x%x", high);
4051 break_command_1 (break_string, flag, from_tty);
4055 error ("No function contains the specified address");
4059 printf_filtered ("Multiple breakpoints were set.\n");
4060 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
4062 do_cleanups(old_chain);
4066 /* Helper function for break_command_1 and disassemble_command. */
4069 resolve_sal_pc (sal)
4070 struct symtab_and_line *sal;
4074 if (sal->pc == 0 && sal->symtab != NULL)
4076 if (!find_line_pc (sal->symtab, sal->line, &pc))
4077 error ("No line %d in file \"%s\".",
4078 sal->line, sal->symtab->filename);
4082 if (sal->section == 0 && sal->symtab != NULL)
4084 struct blockvector *bv;
4089 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
4092 b = BLOCKVECTOR_BLOCK (bv, index);
4093 sym = block_function (b);
4096 fixup_symbol_section (sym, sal->symtab->objfile);
4097 sal->section = SYMBOL_BFD_SECTION (sym);
4101 /* It really is worthwhile to have the section, so we'll just
4102 have to look harder. This case can be executed if we have
4103 line numbers but no functions (as can happen in assembly
4106 struct minimal_symbol *msym;
4108 msym = lookup_minimal_symbol_by_pc (sal->pc);
4110 sal->section = SYMBOL_BFD_SECTION (msym);
4117 break_command (arg, from_tty)
4121 break_command_1 (arg, 0, from_tty);
4125 break_at_finish_command (arg, from_tty)
4129 break_at_finish_command_1 (arg, 0, from_tty);
4133 break_at_finish_at_depth_command (arg, from_tty)
4137 break_at_finish_at_depth_command_1 (arg, 0, from_tty);
4141 tbreak_command (arg, from_tty)
4145 break_command_1 (arg, BP_TEMPFLAG, from_tty);
4149 tbreak_at_finish_command (arg, from_tty)
4153 break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
4157 hbreak_command (arg, from_tty)
4161 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
4165 thbreak_command (arg, from_tty)
4169 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
4173 stop_command (arg, from_tty)
4177 printf_filtered ("Specify the type of breakpoint to set.\n\
4178 Usage: stop in <function | address>\n\
4183 stopin_command (arg, from_tty)
4189 if (arg == (char *)NULL)
4191 else if (*arg != '*')
4196 /* look for a ':'. If this is a line number specification, then say
4197 it is bad, otherwise, it should be an address or function/method
4199 while (*argptr && !hasColon)
4201 hasColon = (*argptr == ':');
4206 badInput = (*argptr != ':'); /* Not a class::method */
4208 badInput = isdigit(*arg); /* a simple line number */
4212 printf_filtered("Usage: stop in <function | address>\n");
4214 break_command_1 (arg, 0, from_tty);
4218 stopat_command (arg, from_tty)
4224 if (arg == (char *)NULL || *arg == '*') /* no line number */
4231 /* look for a ':'. If there is a '::' then get out, otherwise
4232 it is probably a line number. */
4233 while (*argptr && !hasColon)
4235 hasColon = (*argptr == ':');
4240 badInput = (*argptr == ':'); /* we have class::method */
4242 badInput = !isdigit(*arg); /* not a line number */
4246 printf_filtered("Usage: stop at <line>\n");
4248 break_command_1 (arg, 0, from_tty);
4252 /* accessflag: 0: watch write, 1: watch read, 2: watch access(read or write) */
4254 watch_command_1 (arg, accessflag, from_tty)
4259 struct breakpoint *b;
4260 struct symtab_and_line sal;
4261 struct expression *exp;
4262 struct block *exp_valid_block;
4263 struct value *val, *mark;
4264 struct frame_info *frame;
4265 struct frame_info *prev_frame = NULL;
4266 char *exp_start = NULL;
4267 char *exp_end = NULL;
4268 char *tok, *end_tok;
4270 char *cond_start = NULL;
4271 char *cond_end = NULL;
4272 struct expression *cond = NULL;
4273 int i, other_type_used, target_resources_ok = 0;
4274 enum bptype bp_type;
4277 INIT_SAL (&sal); /* initialize to zeroes */
4279 /* Parse arguments. */
4280 innermost_block = NULL;
4282 exp = parse_exp_1 (&arg, 0, 0);
4284 exp_valid_block = innermost_block;
4285 mark = value_mark ();
4286 val = evaluate_expression (exp);
4287 release_value (val);
4288 if (VALUE_LAZY (val))
4289 value_fetch_lazy (val);
4292 while (*tok == ' ' || *tok == '\t')
4296 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4299 toklen = end_tok - tok;
4300 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4302 tok = cond_start = end_tok + 1;
4303 cond = parse_exp_1 (&tok, 0, 0);
4307 error("Junk at end of command.");
4309 if (accessflag == 1) bp_type = bp_read_watchpoint;
4310 else if (accessflag == 2) bp_type = bp_access_watchpoint;
4311 else bp_type = bp_hardware_watchpoint;
4313 mem_cnt = can_use_hardware_watchpoint (val);
4314 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
4315 error ("Expression cannot be implemented with read/access watchpoint.");
4317 i = hw_watchpoint_used_count (bp_type, &other_type_used);
4318 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
4319 bp_type, i + mem_cnt, other_type_used);
4320 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
4321 error ("Target does not have this type of hardware watchpoint support.");
4322 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
4323 error ("Target resources have been allocated for other types of watchpoints.");
4326 #if defined(HPUXHPPA)
4327 /* On HP-UX if you set a h/w
4328 watchpoint before the "run" command, the inferior dies with a e.g.,
4329 SIGILL once you start it. I initially believed this was due to a
4330 bad interaction between page protection traps and the initial
4331 startup sequence by the dynamic linker.
4333 However, I tried avoiding that by having HP-UX's implementation of
4334 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_pid
4335 yet, which forced slow watches before a "run" or "attach", and it
4336 still fails somewhere in the startup code.
4338 Until I figure out what's happening, I'm disallowing watches altogether
4339 before the "run" or "attach" command. We'll tell the user they must
4340 set watches after getting the program started. */
4341 if (! target_has_execution)
4343 warning ("can't do that without a running program; try \"break main\", \"run\" first");
4346 #endif /* HPUXHPPA */
4348 /* Now set up the breakpoint. */
4349 b = set_raw_breakpoint (sal);
4350 set_breakpoint_count (breakpoint_count + 1);
4351 b->number = breakpoint_count;
4352 b->disposition = donttouch;
4354 b->exp_valid_block = exp_valid_block;
4355 b->exp_string = savestring (exp_start, exp_end - exp_start);
4359 b->cond_string = savestring (cond_start, cond_end - cond_start);
4363 frame = block_innermost_frame (exp_valid_block);
4366 prev_frame = get_prev_frame (frame);
4367 b->watchpoint_frame = frame->frame;
4370 b->watchpoint_frame = (CORE_ADDR)0;
4372 if (mem_cnt && target_resources_ok > 0)
4375 b->type = bp_watchpoint;
4377 /* If the expression is "local", then set up a "watchpoint scope"
4378 breakpoint at the point where we've left the scope of the watchpoint
4380 if (innermost_block)
4384 struct breakpoint *scope_breakpoint;
4385 struct symtab_and_line scope_sal;
4387 INIT_SAL (&scope_sal); /* initialize to zeroes */
4388 scope_sal.pc = get_frame_pc (prev_frame);
4389 scope_sal.section = find_pc_overlay (scope_sal.pc);
4391 scope_breakpoint = set_raw_breakpoint (scope_sal);
4392 set_breakpoint_count (breakpoint_count + 1);
4393 scope_breakpoint->number = breakpoint_count;
4395 scope_breakpoint->type = bp_watchpoint_scope;
4396 scope_breakpoint->enable = enabled;
4398 /* Automatically delete the breakpoint when it hits. */
4399 scope_breakpoint->disposition = del;
4401 /* Only break in the proper frame (help with recursion). */
4402 scope_breakpoint->frame = prev_frame->frame;
4404 /* Set the address at which we will stop. */
4405 scope_breakpoint->address = get_frame_pc (prev_frame);
4407 /* The scope breakpoint is related to the watchpoint. We
4408 will need to act on them together. */
4409 b->related_breakpoint = scope_breakpoint;
4412 value_free_to_mark (mark);
4416 /* Return count of locations need to be watched and can be handled
4417 in hardware. If the watchpoint can not be handled
4418 in hardware return zero. */
4420 #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
4421 #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(byte_size) \
4422 ((byte_size) <= (REGISTER_SIZE))
4426 can_use_hardware_watchpoint (v)
4429 int found_memory_cnt = 0;
4431 /* Did the user specifically forbid us to use hardware watchpoints? */
4432 if (! can_use_hw_watchpoints)
4435 /* Make sure all the intermediate values are in memory. Also make sure
4436 we found at least one memory expression. Guards against watch 0x12345,
4437 which is meaningless, but could cause errors if one tries to insert a
4438 hardware watchpoint for the constant expression. */
4439 for ( ; v; v = v->next)
4441 if (v->lval == lval_memory)
4443 if (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT (TYPE_LENGTH (VALUE_TYPE (v))))
4446 else if (v->lval != not_lval && v->modifiable == 0)
4450 /* The expression itself looks suitable for using a hardware
4451 watchpoint, but give the target machine a chance to reject it. */
4452 return found_memory_cnt;
4455 static void watch_command (arg, from_tty)
4459 watch_command_1 (arg, 0, from_tty);
4462 static void rwatch_command (arg, from_tty)
4466 watch_command_1 (arg, 1, from_tty);
4469 static void awatch_command (arg, from_tty)
4473 watch_command_1 (arg, 2, from_tty);
4477 /* Helper routine for the until_command routine in infcmd.c. Here
4478 because it uses the mechanisms of breakpoints. */
4482 until_break_command (arg, from_tty)
4486 struct symtabs_and_lines sals;
4487 struct symtab_and_line sal;
4488 struct frame_info *prev_frame = get_prev_frame (selected_frame);
4489 struct breakpoint *breakpoint;
4490 struct cleanup *old_chain;
4492 clear_proceed_status ();
4494 /* Set a breakpoint where the user wants it and at return from
4497 if (default_breakpoint_valid)
4498 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
4499 default_breakpoint_line, (char ***)NULL);
4501 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, (char ***)NULL);
4503 if (sals.nelts != 1)
4504 error ("Couldn't get information on specified line.");
4507 free ((PTR)sals.sals); /* malloc'd, so freed */
4510 error ("Junk at end of arguments.");
4512 resolve_sal_pc (&sal);
4514 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
4516 old_chain = make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
4518 /* Keep within the current frame */
4522 sal = find_pc_line (prev_frame->pc, 0);
4523 sal.pc = prev_frame->pc;
4524 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
4525 make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
4528 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
4529 do_cleanups(old_chain);
4533 /* These aren't used; I don't konw what they were for. */
4534 /* Set a breakpoint at the catch clause for NAME. */
4536 catch_breakpoint (name)
4542 disable_catch_breakpoint ()
4547 delete_catch_breakpoint ()
4552 enable_catch_breakpoint ()
4559 struct sal_chain *next;
4560 struct symtab_and_line sal;
4564 /* Not really used -- invocation in handle_gnu_4_16_catch_command
4565 had been commented out in the v.4.16 sources, and stays
4566 disabled there now because "catch NAME" syntax isn't allowed.
4568 /* This isn't used; I don't know what it was for. */
4569 /* For each catch clause identified in ARGS, run FUNCTION
4570 with that clause as an argument. */
4571 static struct symtabs_and_lines
4572 map_catch_names (args, function)
4576 register char *p = args;
4578 struct symtabs_and_lines sals;
4580 struct sal_chain *sal_chain = 0;
4584 error_no_arg ("one or more catch names");
4592 /* Don't swallow conditional part. */
4593 if (p1[0] == 'i' && p1[1] == 'f'
4594 && (p1[2] == ' ' || p1[2] == '\t'))
4600 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
4604 if (*p1 && *p1 != ' ' && *p1 != '\t')
4605 error ("Arguments must be catch names.");
4611 struct sal_chain *next = (struct sal_chain *)
4612 alloca (sizeof (struct sal_chain));
4613 next->next = sal_chain;
4614 next->sal = get_catch_sal (p);
4619 printf_unfiltered ("No catch clause for exception %s.\n", p);
4624 while (*p == ' ' || *p == '\t') p++;
4629 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
4631 static struct symtabs_and_lines
4632 get_catch_sals (this_level_only)
4633 int this_level_only;
4635 register struct blockvector *bl;
4636 register struct block *block;
4637 int index, have_default = 0;
4639 struct symtabs_and_lines sals;
4640 struct sal_chain *sal_chain = 0;
4641 char *blocks_searched;
4643 /* Not sure whether an error message is always the correct response,
4644 but it's better than a core dump. */
4645 if (selected_frame == NULL)
4646 error ("No selected frame.");
4647 block = get_frame_block (selected_frame);
4648 pc = selected_frame->pc;
4654 error ("No symbol table info available.\n");
4656 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
4657 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
4658 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
4662 CORE_ADDR end = BLOCK_END (block) - 4;
4665 if (bl != blockvector_for_pc (end, &index))
4666 error ("blockvector blotch");
4667 if (BLOCKVECTOR_BLOCK (bl, index) != block)
4668 error ("blockvector botch");
4669 last_index = BLOCKVECTOR_NBLOCKS (bl);
4672 /* Don't print out blocks that have gone by. */
4673 while (index < last_index
4674 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
4677 while (index < last_index
4678 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
4680 if (blocks_searched[index] == 0)
4682 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
4685 register struct symbol *sym;
4687 nsyms = BLOCK_NSYMS (b);
4689 for (i = 0; i < nsyms; i++)
4691 sym = BLOCK_SYM (b, i);
4692 if (STREQ (SYMBOL_NAME (sym), "default"))
4698 if (SYMBOL_CLASS (sym) == LOC_LABEL)
4700 struct sal_chain *next = (struct sal_chain *)
4701 alloca (sizeof (struct sal_chain));
4702 next->next = sal_chain;
4703 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
4707 blocks_searched[index] = 1;
4713 if (sal_chain && this_level_only)
4716 /* After handling the function's top-level block, stop.
4717 Don't continue to its superblock, the block of
4718 per-file symbols. */
4719 if (BLOCK_FUNCTION (block))
4721 block = BLOCK_SUPERBLOCK (block);
4726 struct sal_chain *tmp_chain;
4728 /* Count the number of entries. */
4729 for (index = 0, tmp_chain = sal_chain; tmp_chain;
4730 tmp_chain = tmp_chain->next)
4734 sals.sals = (struct symtab_and_line *)
4735 xmalloc (index * sizeof (struct symtab_and_line));
4736 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
4737 sals.sals[index] = sal_chain->sal;
4744 ep_skip_leading_whitespace (s)
4747 if ((s == NULL) || (*s == NULL))
4749 while (isspace(**s))
4753 /* This function examines a string, and attempts to find a token
4754 that might be an event name in the leading characters. If a
4755 possible match is found, a pointer to the last character of
4756 the token is returned. Else, NULL is returned. */
4758 ep_find_event_name_end (arg)
4762 char * event_name_end = NULL;
4764 /* If we could depend upon the presense of strrpbrk, we'd use that... */
4768 /* We break out of the loop when we find a token delimiter.
4769 Basically, we're looking for alphanumerics and underscores;
4770 anything else delimites the token. */
4773 if (! isalnum(*s) && (*s != '_'))
4779 return event_name_end;
4783 /* This function attempts to parse an optional "if <cond>" clause
4784 from the arg string. If one is not found, it returns NULL.
4786 Else, it returns a pointer to the condition string. (It does not
4787 attempt to evaluate the string against a particular block.) And,
4788 it updates arg to point to the first character following the parsed
4789 if clause in the arg string. */
4791 ep_parse_optional_if_clause (arg)
4796 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace((*arg)[2]))
4799 /* Skip the "if" keyword. */
4802 /* Skip any extra leading whitespace, and record the start of the
4803 condition string. */
4804 ep_skip_leading_whitespace (arg);
4807 /* Assume that the condition occupies the remainder of the arg string. */
4808 (*arg) += strlen (cond_string);
4813 /* This function attempts to parse an optional filename from the arg
4814 string. If one is not found, it returns NULL.
4816 Else, it returns a pointer to the parsed filename. (This function
4817 makes no attempt to verify that a file of that name exists, or is
4818 accessible.) And, it updates arg to point to the first character
4819 following the parsed filename in the arg string.
4821 Note that clients needing to preserve the returned filename for
4822 future access should copy it to their own buffers. */
4824 ep_parse_optional_filename (arg)
4827 static char filename [1024];
4828 char * arg_p = *arg;
4832 if ((*arg_p == '\0') || isspace (*arg_p))
4850 /* Commands to deal with catching events, such as signals, exceptions,
4851 process start/exit, etc. */
4853 typedef enum {catch_fork, catch_vfork} catch_fork_kind;
4855 static void catch_fork_command_1 PARAMS ((catch_fork_kind fork_kind, char *arg, int tempflag, int from_tty));
4858 catch_fork_command_1 (fork_kind, arg, tempflag, from_tty)
4859 catch_fork_kind fork_kind;
4864 char * cond_string = NULL;
4866 ep_skip_leading_whitespace (&arg);
4868 /* The allowed syntax is:
4870 catch [v]fork if <cond>
4872 First, check if there's an if clause. */
4873 cond_string = ep_parse_optional_if_clause (&arg);
4875 if ((*arg != '\0') && !isspace (*arg))
4876 error ("Junk at end of arguments.");
4878 /* If this target supports it, create a fork or vfork catchpoint
4879 and enable reporting of such events. */
4880 switch (fork_kind) {
4882 create_fork_event_catchpoint (tempflag, cond_string);
4885 create_vfork_event_catchpoint (tempflag, cond_string);
4888 error ("unsupported or unknown fork kind; cannot catch it");
4894 catch_exec_command_1 (arg, tempflag, from_tty)
4899 char * cond_string = NULL;
4901 ep_skip_leading_whitespace (&arg);
4903 /* The allowed syntax is:
4905 catch exec if <cond>
4907 First, check if there's an if clause. */
4908 cond_string = ep_parse_optional_if_clause (&arg);
4910 if ((*arg != '\0') && !isspace (*arg))
4911 error ("Junk at end of arguments.");
4913 /* If this target supports it, create an exec catchpoint
4914 and enable reporting of such events. */
4915 create_exec_event_catchpoint (tempflag, cond_string);
4918 #if defined(SOLIB_ADD)
4920 catch_load_command_1 (arg, tempflag, from_tty)
4925 char * dll_pathname = NULL;
4926 char * cond_string = NULL;
4928 ep_skip_leading_whitespace (&arg);
4930 /* The allowed syntax is:
4932 catch load if <cond>
4933 catch load <filename>
4934 catch load <filename> if <cond>
4936 The user is not allowed to specify the <filename> after an
4939 We'll ignore the pathological case of a file named "if".
4941 First, check if there's an if clause. If so, then there
4942 cannot be a filename. */
4943 cond_string = ep_parse_optional_if_clause (&arg);
4945 /* If there was an if clause, then there cannot be a filename.
4946 Else, there might be a filename and an if clause. */
4947 if (cond_string == NULL)
4949 dll_pathname = ep_parse_optional_filename (&arg);
4950 ep_skip_leading_whitespace (&arg);
4951 cond_string = ep_parse_optional_if_clause (&arg);
4954 if ((*arg != '\0') && !isspace (*arg))
4955 error ("Junk at end of arguments.");
4957 /* Create a load breakpoint that only triggers when a load of
4958 the specified dll (or any dll, if no pathname was specified)
4960 SOLIB_CREATE_CATCH_LOAD_HOOK (inferior_pid, tempflag, dll_pathname, cond_string);
4964 catch_unload_command_1 (arg, tempflag, from_tty)
4969 char * dll_pathname = NULL;
4970 char * cond_string = NULL;
4972 ep_skip_leading_whitespace (&arg);
4974 /* The allowed syntax is:
4976 catch unload if <cond>
4977 catch unload <filename>
4978 catch unload <filename> if <cond>
4980 The user is not allowed to specify the <filename> after an
4983 We'll ignore the pathological case of a file named "if".
4985 First, check if there's an if clause. If so, then there
4986 cannot be a filename. */
4987 cond_string = ep_parse_optional_if_clause (&arg);
4989 /* If there was an if clause, then there cannot be a filename.
4990 Else, there might be a filename and an if clause. */
4991 if (cond_string == NULL)
4993 dll_pathname = ep_parse_optional_filename (&arg);
4994 ep_skip_leading_whitespace (&arg);
4995 cond_string = ep_parse_optional_if_clause (&arg);
4998 if ((*arg != '\0') && !isspace (*arg))
4999 error ("Junk at end of arguments.");
5001 /* Create an unload breakpoint that only triggers when an unload of
5002 the specified dll (or any dll, if no pathname was specified)
5004 SOLIB_CREATE_CATCH_UNLOAD_HOOK (inferior_pid, tempflag, dll_pathname, cond_string);
5006 #endif /* SOLIB_ADD */
5008 /* Commands to deal with catching exceptions. */
5010 /* Set a breakpoint at the specified callback routine for an
5011 exception event callback */
5014 create_exception_catchpoint (tempflag, cond_string, ex_event, sal)
5017 enum exception_event_kind ex_event;
5018 struct symtab_and_line *sal;
5020 struct breakpoint * b;
5022 int thread = -1; /* All threads. */
5024 if (!sal) /* no exception support? */
5027 b = set_raw_breakpoint (*sal);
5028 set_breakpoint_count (breakpoint_count + 1);
5029 b->number = breakpoint_count;
5031 b->cond_string = (cond_string == NULL) ? NULL : savestring (cond_string, strlen (cond_string));
5033 b->addr_string = NULL;
5034 b->enable = enabled;
5035 b->disposition = tempflag ? del : donttouch;
5038 case EX_EVENT_THROW:
5039 b->type = bp_catch_throw;
5041 case EX_EVENT_CATCH:
5042 b->type = bp_catch_catch;
5044 default: /* error condition */
5046 b->enable = disabled;
5047 error ("Internal error -- invalid catchpoint kind");
5052 /* Deal with "catch catch" and "catch throw" commands */
5055 catch_exception_command_1 (ex_event, arg, tempflag, from_tty)
5056 enum exception_event_kind ex_event;
5061 char * cond_string = NULL;
5062 struct symtab_and_line * sal = NULL;
5064 ep_skip_leading_whitespace (&arg);
5066 cond_string = ep_parse_optional_if_clause (&arg);
5068 if ((*arg != '\0') && !isspace (*arg))
5069 error ("Junk at end of arguments.");
5071 if ((ex_event != EX_EVENT_THROW) &&
5072 (ex_event != EX_EVENT_CATCH))
5073 error ("Unsupported or unknown exception event; cannot catch it");
5075 /* See if we can find a callback routine */
5076 sal = target_enable_exception_callback (ex_event, 1);
5080 /* We have callbacks from the runtime system for exceptions.
5081 Set a breakpoint on the sal found, if no errors */
5082 if (sal != (struct symtab_and_line *) -1)
5083 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
5085 return; /* something went wrong with setting up callbacks */
5089 /* No callbacks from runtime system for exceptions.
5090 Try GNU C++ exception breakpoints using labels in debug info. */
5091 if (ex_event == EX_EVENT_CATCH)
5093 handle_gnu_4_16_catch_command (arg, tempflag, from_tty);
5095 else if (ex_event == EX_EVENT_THROW)
5097 /* Set a breakpoint on __raise_exception () */
5099 fprintf_filtered (gdb_stderr, "Unsupported with this platform/compiler combination.\n");
5100 fprintf_filtered (gdb_stderr, "Perhaps you can achieve the effect you want by setting\n");
5101 fprintf_filtered (gdb_stderr, "a breakpoint on __raise_exception().\n");
5106 /* Cover routine to allow wrapping target_enable_exception_catchpoints
5107 inside a catch_errors */
5110 cover_target_enable_exception_callback (arg)
5113 args_for_catchpoint_enable *args = arg;
5114 struct symtab_and_line *sal;
5115 sal = target_enable_exception_callback (args->kind, args->enable);
5118 else if (sal == (struct symtab_and_line *) -1)
5121 return 1; /*is valid*/
5126 /* This is the original v.4.16 and earlier version of the
5127 catch_command_1() function. Now that other flavours of "catch"
5128 have been introduced, and since exception handling can be handled
5129 in other ways (through target ops) also, this is used only for the
5130 GNU C++ exception handling system.
5131 Note: Only the "catch" flavour of GDB 4.16 is handled here. The
5132 "catch NAME" is now no longer allowed in catch_command_1(). Also,
5133 there was no code in GDB 4.16 for "catch throw".
5135 Called from catch_exception_command_1 () */
5139 handle_gnu_4_16_catch_command (arg, tempflag, from_tty)
5144 /* First, translate ARG into something we can deal with in terms
5147 struct symtabs_and_lines sals;
5148 struct symtab_and_line sal;
5149 register struct expression *cond = 0;
5150 register struct breakpoint *b;
5154 INIT_SAL (&sal); /* initialize to zeroes */
5156 /* If no arg given, or if first arg is 'if ', all active catch clauses
5157 are breakpointed. */
5159 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
5160 && (arg[2] == ' ' || arg[2] == '\t')))
5162 /* Grab all active catch clauses. */
5163 sals = get_catch_sals (0);
5167 /* Grab selected catch clauses. */
5168 error ("catch NAME not implemented");
5171 /* Not sure why this code has been disabled. I'm leaving
5172 it disabled. We can never come here now anyway
5173 since we don't allow the "catch NAME" syntax.
5176 /* This isn't used; I don't know what it was for. */
5177 sals = map_catch_names (arg, catch_breakpoint);
5185 for (i = 0; i < sals.nelts; i++)
5187 resolve_sal_pc (&sals.sals[i]);
5191 if (arg[0] == 'i' && arg[1] == 'f'
5192 && (arg[2] == ' ' || arg[2] == '\t'))
5193 cond = parse_exp_1 ((arg += 2, &arg),
5194 block_for_pc (sals.sals[i].pc), 0);
5196 error ("Junk at end of arguments.");
5201 for (i = 0; i < sals.nelts; i++)
5206 describe_other_breakpoints (sal.pc, sal.section);
5208 b = set_raw_breakpoint (sal);
5209 set_breakpoint_count (breakpoint_count + 1);
5210 b->number = breakpoint_count;
5211 b->type = bp_breakpoint; /* Important -- this is an ordinary breakpoint.
5212 For platforms with callback support for exceptions,
5213 create_exception_catchpoint() will create special
5214 bp types (bp_catch_catch and bp_catch_throw), and
5215 there is code in insert_breakpoints() and elsewhere
5216 that depends on that. */
5219 b->enable = enabled;
5220 b->disposition = tempflag ? del : donttouch;
5227 printf_unfiltered ("Multiple breakpoints were set.\n");
5228 printf_unfiltered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
5230 free ((PTR)sals.sals);
5234 /* This creates a temporary internal breakpoint
5235 just to placate infrun */
5236 static struct breakpoint *
5237 create_temp_exception_breakpoint (pc)
5240 struct symtab_and_line sal;
5241 struct breakpoint *b;
5248 b = set_raw_breakpoint (sal);
5250 error ("Internal error -- couldn't set temp exception breakpoint");
5252 b->type = bp_breakpoint;
5253 b->disposition = del;
5254 b->enable = enabled;
5256 b->number = internal_breakpoint_number--;
5262 catch_command_1 (arg, tempflag, from_tty)
5268 /* The first argument may be an event name, such as "start" or "load".
5269 If so, then handle it as such. If it doesn't match an event name,
5270 then attempt to interpret it as an exception name. (This latter is
5271 the v4.16-and-earlier GDB meaning of the "catch" command.)
5273 First, try to find the bounds of what might be an event name. */
5274 char * arg1_start = arg;
5278 if (arg1_start == NULL)
5280 /* Old behaviour was to use pre-v-4.16 syntax */
5281 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
5283 /* Now, this is not allowed */
5284 error ("Catch requires an event name.");
5287 arg1_end = ep_find_event_name_end (arg1_start);
5288 if (arg1_end == NULL)
5289 error ("catch requires an event");
5290 arg1_length = arg1_end + 1 - arg1_start;
5292 /* Try to match what we found against known event names. */
5293 if (strncmp (arg1_start, "signal", arg1_length) == 0)
5295 error ("Catch of signal not yet implemented");
5297 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
5299 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end+1, tempflag, from_tty);
5301 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
5303 catch_exception_command_1 (EX_EVENT_THROW, arg1_end+1, tempflag, from_tty);
5305 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
5307 error ("Catch of thread_start not yet implemented");
5309 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
5311 error ("Catch of thread_exit not yet implemented");
5313 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
5315 error ("Catch of thread_join not yet implemented");
5317 else if (strncmp (arg1_start, "start", arg1_length) == 0)
5319 error ("Catch of start not yet implemented");
5321 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
5323 error ("Catch of exit not yet implemented");
5325 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
5327 #if defined(CHILD_INSERT_FORK_CATCHPOINT)
5328 catch_fork_command_1 (catch_fork, arg1_end+1, tempflag, from_tty);
5330 error ("Catch of fork not yet implemented");
5333 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
5335 #if defined(CHILD_INSERT_VFORK_CATCHPOINT)
5336 catch_fork_command_1 (catch_vfork, arg1_end+1, tempflag, from_tty);
5338 error ("Catch of vfork not yet implemented");
5341 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
5343 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
5344 catch_exec_command_1 (arg1_end+1, tempflag, from_tty);
5346 error ("Catch of exec not yet implemented");
5349 else if (strncmp (arg1_start, "load", arg1_length) == 0)
5351 #if defined(SOLIB_ADD)
5352 catch_load_command_1 (arg1_end+1, tempflag, from_tty);
5354 error ("Catch of load not implemented");
5357 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
5359 #if defined(SOLIB_ADD)
5360 catch_unload_command_1 (arg1_end+1, tempflag, from_tty);
5362 error ("Catch of load not implemented");
5365 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
5367 error ("Catch of stop not yet implemented");
5370 /* This doesn't appear to be an event name */
5374 /* Pre-v.4.16 behaviour was to treat the argument
5375 as the name of an exception */
5376 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
5377 /* Now this is not allowed */
5378 error ("Unknown event kind specified for catch");
5383 /* Used by the gui, could be made a worker for other things. */
5386 set_breakpoint_sal (sal)
5387 struct symtab_and_line sal;
5389 struct breakpoint *b;
5390 b = set_raw_breakpoint (sal);
5391 set_breakpoint_count (breakpoint_count + 1);
5392 b->number = breakpoint_count;
5393 b->type = bp_breakpoint;
5400 /* These aren't used; I don't know what they were for. */
5401 /* Disable breakpoints on all catch clauses described in ARGS. */
5403 disable_catch (args)
5406 /* Map the disable command to catch clauses described in ARGS. */
5409 /* Enable breakpoints on all catch clauses described in ARGS. */
5414 /* Map the disable command to catch clauses described in ARGS. */
5417 /* Delete breakpoints on all catch clauses in the active scope. */
5422 /* Map the delete command to catch clauses described in ARGS. */
5427 catch_command (arg, from_tty)
5431 catch_command_1 (arg, 0, from_tty);
5436 tcatch_command (arg, from_tty)
5440 catch_command_1 (arg, 1, from_tty);
5445 clear_command (arg, from_tty)
5449 register struct breakpoint *b, *b1;
5451 struct symtabs_and_lines sals;
5452 struct symtab_and_line sal;
5453 register struct breakpoint *found;
5458 sals = decode_line_spec (arg, 1);
5463 sals.sals = (struct symtab_and_line *)
5464 xmalloc (sizeof (struct symtab_and_line));
5465 INIT_SAL (&sal); /* initialize to zeroes */
5466 sal.line = default_breakpoint_line;
5467 sal.symtab = default_breakpoint_symtab;
5468 sal.pc = default_breakpoint_address;
5469 if (sal.symtab == 0)
5470 error ("No source file specified.");
5478 /* For each line spec given, delete bps which correspond
5479 to it. We do this in two loops: the first loop looks at
5480 the initial bp(s) in the chain which should be deleted,
5481 the second goes down the rest of the chain looking ahead
5482 one so it can take those bps off the chain without messing
5486 for (i = 0; i < sals.nelts; i++)
5488 /* If exact pc given, clear bpts at that pc.
5489 If line given (pc == 0), clear all bpts on specified line.
5490 If defaulting, clear all bpts on default line
5493 defaulting sal.pc != 0 tests to do
5498 1 0 <can't happen> */
5501 found = (struct breakpoint *) 0;
5504 while (breakpoint_chain
5505 /* Why don't we check here that this is not
5506 a watchpoint, etc., as we do below?
5507 I can't make it fail, but don't know
5508 what's stopping the failure: a watchpoint
5509 of the same address as "sal.pc" should
5510 wind up being deleted. */
5512 && ( ((sal.pc && (breakpoint_chain->address == sal.pc)) &&
5513 (overlay_debugging == 0 ||
5514 breakpoint_chain->section == sal.section))
5515 || ((default_match || (0 == sal.pc))
5516 && breakpoint_chain->source_file != NULL
5517 && sal.symtab != NULL
5518 && STREQ (breakpoint_chain->source_file, sal.symtab->filename)
5519 && breakpoint_chain->line_number == sal.line)))
5522 b1 = breakpoint_chain;
5523 breakpoint_chain = b1->next;
5531 && b->next->type != bp_none
5532 && b->next->type != bp_watchpoint
5533 && b->next->type != bp_hardware_watchpoint
5534 && b->next->type != bp_read_watchpoint
5535 && b->next->type != bp_access_watchpoint
5536 && ( ((sal.pc && (b->next->address == sal.pc)) &&
5537 (overlay_debugging == 0 ||
5538 b->next->section == sal.section))
5539 || ((default_match || (0 == sal.pc))
5540 && b->next->source_file != NULL
5541 && sal.symtab != NULL
5542 && STREQ (b->next->source_file, sal.symtab->filename)
5543 && b->next->line_number == sal.line)))
5556 error ("No breakpoint at %s.", arg);
5558 error ("No breakpoint at this line.");
5561 if (found->next) from_tty = 1; /* Always report if deleted more than one */
5562 if (from_tty) printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
5563 breakpoints_changed ();
5566 if (from_tty) printf_unfiltered ("%d ", found->number);
5568 delete_breakpoint (found);
5571 if (from_tty) putchar_unfiltered ('\n');
5573 free ((PTR)sals.sals);
5576 /* Delete breakpoint in BS if they are `delete' breakpoints and
5577 all breakpoints that are marked for deletion, whether hit or not.
5578 This is called after any breakpoint is hit, or after errors. */
5581 breakpoint_auto_delete (bs)
5584 struct breakpoint *b, *temp;
5586 for (; bs; bs = bs->next)
5587 if (bs->breakpoint_at && bs->breakpoint_at->disposition == del
5589 delete_breakpoint (bs->breakpoint_at);
5591 ALL_BREAKPOINTS_SAFE (b, temp)
5593 if (b->disposition == del_at_next_stop)
5594 delete_breakpoint (b);
5598 /* Delete a breakpoint and clean up all traces of it in the data structures. */
5601 delete_breakpoint (bpt)
5602 struct breakpoint *bpt;
5604 register struct breakpoint *b;
5608 error ("Internal error (attempted to delete a NULL breakpoint)");
5611 /* Has this bp already been deleted? This can happen because multiple
5612 lists can hold pointers to bp's. bpstat lists are especial culprits.
5614 One example of this happening is a watchpoint's scope bp. When the
5615 scope bp triggers, we notice that the watchpoint is out of scope, and
5616 delete it. We also delete its scope bp. But the scope bp is marked
5617 "auto-deleting", and is already on a bpstat. That bpstat is then
5618 checked for auto-deleting bp's, which are deleted.
5620 A real solution to this problem might involve reference counts in bp's,
5621 and/or giving them pointers back to their referencing bpstat's, and
5622 teaching delete_breakpoint to only free a bp's storage when no more
5623 references were extent. A cheaper bandaid was chosen. */
5624 if (bpt->type == bp_none)
5627 if (delete_breakpoint_hook)
5628 delete_breakpoint_hook (bpt);
5631 remove_breakpoint (bpt, mark_uninserted);
5633 if (breakpoint_chain == bpt)
5634 breakpoint_chain = bpt->next;
5636 /* If we have callback-style exception catchpoints, don't go through
5637 the adjustments to the C++ runtime library etc. if the inferior
5638 isn't actually running. target_enable_exception_callback for a
5639 null target ops vector gives an undesirable error message, so we
5640 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
5641 exceptions are supported in this way, it's OK for now. FIXME */
5642 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
5644 static char message1[] = "Error in deleting catchpoint %d:\n";
5645 static char message[sizeof (message1) + 30];
5646 args_for_catchpoint_enable args;
5648 sprintf (message, message1, bpt->number); /* Format possible error msg */
5649 args.kind = bpt->type == bp_catch_catch ? EX_EVENT_CATCH : EX_EVENT_THROW;
5651 catch_errors (cover_target_enable_exception_callback, &args,
5652 message, RETURN_MASK_ALL);
5659 b->next = bpt->next;
5663 /* Before turning off the visuals for the bp, check to see that
5664 there are no other bps at the same address. */
5671 clearIt = (b->address != bpt->address);
5678 TUIDO(((TuiOpaqueFuncPtr)tui_vAllSetHasBreakAt, bpt, 0));
5679 TUIDO(((TuiOpaqueFuncPtr)tuiUpdateAllExecInfos));
5683 check_duplicates (bpt->address, bpt->section);
5684 /* If this breakpoint was inserted, and there is another breakpoint
5685 at the same address, we need to insert the other breakpoint. */
5687 && bpt->type != bp_hardware_watchpoint
5688 && bpt->type != bp_read_watchpoint
5689 && bpt->type != bp_access_watchpoint
5690 && bpt->type != bp_catch_fork
5691 && bpt->type != bp_catch_vfork
5692 && bpt->type != bp_catch_exec)
5695 if (b->address == bpt->address
5696 && b->section == bpt->section
5698 && b->enable != disabled
5699 && b->enable != shlib_disabled
5700 && b->enable != call_disabled)
5703 val = target_insert_breakpoint (b->address, b->shadow_contents);
5706 target_terminal_ours_for_output ();
5707 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
5708 memory_error (val, b->address); /* which bombs us out */
5715 free_command_lines (&bpt->commands);
5718 if (bpt->cond_string != NULL)
5719 free (bpt->cond_string);
5720 if (bpt->addr_string != NULL)
5721 free (bpt->addr_string);
5722 if (bpt->exp != NULL)
5724 if (bpt->exp_string != NULL)
5725 free (bpt->exp_string);
5726 if (bpt->val != NULL)
5727 value_free (bpt->val);
5728 if (bpt->source_file != NULL)
5729 free (bpt->source_file);
5730 if (bpt->dll_pathname != NULL)
5731 free (bpt->dll_pathname);
5732 if (bpt->triggered_dll_pathname != NULL)
5733 free (bpt->triggered_dll_pathname);
5734 if (bpt->exec_pathname != NULL)
5735 free (bpt->exec_pathname);
5737 /* Be sure no bpstat's are pointing at it after it's been freed. */
5738 /* FIXME, how can we find all bpstat's?
5739 We just check stop_bpstat for now. */
5740 for (bs = stop_bpstat; bs; bs = bs->next)
5741 if (bs->breakpoint_at == bpt)
5743 bs->breakpoint_at = NULL;
5745 /* we'd call bpstat_clear_actions, but that free's stuff and due
5746 to the multiple pointers pointing to one item with no
5747 reference counts found anywhere through out the bpstat's (how
5748 do you spell fragile?), we don't want to free things twice --
5749 better a memory leak than a corrupt malloc pool! */
5750 bs->commands = NULL;
5753 /* On the chance that someone will soon try again to delete this same
5754 bp, we mark it as deleted before freeing its storage. */
5755 bpt->type = bp_none;
5761 delete_command (arg, from_tty)
5765 struct breakpoint *b, *temp;
5769 int breaks_to_delete = 0;
5771 /* Delete all breakpoints if no argument.
5772 Do not delete internal or call-dummy breakpoints, these
5773 have to be deleted with an explicit breakpoint number argument. */
5776 if (b->type != bp_call_dummy &&
5777 b->type != bp_shlib_event &&
5779 breaks_to_delete = 1;
5782 /* Ask user only if there are some breakpoints to delete. */
5784 || (breaks_to_delete && query ("Delete all breakpoints? ")))
5786 ALL_BREAKPOINTS_SAFE (b, temp)
5788 if (b->type != bp_call_dummy &&
5789 b->type != bp_shlib_event &&
5791 delete_breakpoint (b);
5796 map_breakpoint_numbers (arg, delete_breakpoint);
5799 /* Reset a breakpoint given it's struct breakpoint * BINT.
5800 The value we return ends up being the return value from catch_errors.
5801 Unused in this case. */
5804 breakpoint_re_set_one (bint)
5807 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
5810 struct symtabs_and_lines sals;
5812 enum enable save_enable;
5817 warning ("attempted to reset apparently deleted breakpoint #%d?\n", b->number);
5820 case bp_hardware_breakpoint:
5822 case bp_catch_unload:
5823 if (b->addr_string == NULL)
5825 /* Anything without a string can't be re-set. */
5826 delete_breakpoint (b);
5829 /* In case we have a problem, disable this breakpoint. We'll restore
5830 its status if we succeed. */
5831 save_enable = b->enable;
5832 b->enable = disabled;
5834 set_language (b->language);
5835 input_radix = b->input_radix;
5837 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0, (char ***)NULL);
5838 for (i = 0; i < sals.nelts; i++)
5840 resolve_sal_pc (&sals.sals[i]);
5842 /* Reparse conditions, they might contain references to the
5844 if (b->cond_string != NULL)
5848 free ((PTR)b->cond);
5849 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
5852 /* We need to re-set the breakpoint if the address changes...*/
5853 if (b->address != sals.sals[i].pc
5854 /* ...or new and old breakpoints both have source files, and
5855 the source file name or the line number changes... */
5856 || (b->source_file != NULL
5857 && sals.sals[i].symtab != NULL
5858 && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
5859 || b->line_number != sals.sals[i].line)
5861 /* ...or we switch between having a source file and not having
5863 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
5866 if (b->source_file != NULL)
5867 free (b->source_file);
5868 if (sals.sals[i].symtab == NULL)
5869 b->source_file = NULL;
5872 savestring (sals.sals[i].symtab->filename,
5873 strlen (sals.sals[i].symtab->filename));
5874 b->line_number = sals.sals[i].line;
5875 b->address = sals.sals[i].pc;
5877 /* Used to check for duplicates here, but that can
5878 cause trouble, as it doesn't check for disable
5883 /* Might be better to do this just once per breakpoint_re_set,
5884 rather than once for every breakpoint. */
5885 breakpoints_changed ();
5887 b->section = sals.sals[i].section;
5888 b->enable = save_enable; /* Restore it, this worked. */
5891 /* Now that this is re-enabled, check_duplicates
5893 check_duplicates (b->address, b->section);
5896 free ((PTR)sals.sals);
5900 case bp_hardware_watchpoint:
5901 case bp_read_watchpoint:
5902 case bp_access_watchpoint:
5903 innermost_block = NULL;
5904 /* The issue arises of what context to evaluate this in. The same
5905 one as when it was set, but what does that mean when symbols have
5906 been re-read? We could save the filename and functionname, but
5907 if the context is more local than that, the best we could do would
5908 be something like how many levels deep and which index at that
5909 particular level, but that's going to be less stable than filenames
5910 or functionnames. */
5911 /* So for now, just use a global context. */
5914 b->exp = parse_expression (b->exp_string);
5915 b->exp_valid_block = innermost_block;
5916 mark = value_mark ();
5918 value_free (b->val);
5919 b->val = evaluate_expression (b->exp);
5920 release_value (b->val);
5921 if (VALUE_LAZY (b->val))
5922 value_fetch_lazy (b->val);
5924 if (b->cond_string != NULL)
5928 free ((PTR)b->cond);
5929 b->cond = parse_exp_1 (&s, (struct block *)0, 0);
5931 if (b->enable == enabled)
5933 value_free_to_mark (mark);
5935 case bp_catch_catch:
5936 case bp_catch_throw:
5938 /* We needn't really do anything to reset these, since the mask
5939 that requests them is unaffected by e.g., new libraries being
5942 case bp_catch_vfork:
5947 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
5949 /* Delete longjmp breakpoints, they will be reset later by
5950 breakpoint_re_set. */
5952 case bp_longjmp_resume:
5953 delete_breakpoint (b);
5956 /* This breakpoint is special, it's set up when the inferior
5957 starts and we really don't want to touch it. */
5958 case bp_shlib_event:
5960 /* Keep temporary breakpoints, which can be encountered when we step
5961 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
5962 Otherwise these should have been blown away via the cleanup chain
5963 or by breakpoint_init_inferior when we rerun the executable. */
5966 case bp_watchpoint_scope:
5968 case bp_step_resume:
5975 /* Re-set all breakpoints after symbols have been re-loaded. */
5977 breakpoint_re_set ()
5979 struct breakpoint *b, *temp;
5980 enum language save_language;
5981 int save_input_radix;
5982 static char message1[] = "Error in re-setting breakpoint %d:\n";
5983 char message[sizeof (message1) + 30 /* slop */];
5985 save_language = current_language->la_language;
5986 save_input_radix = input_radix;
5987 ALL_BREAKPOINTS_SAFE (b, temp)
5989 sprintf (message, message1, b->number); /* Format possible error msg */
5990 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
5992 set_language (save_language);
5993 input_radix = save_input_radix;
5995 #ifdef GET_LONGJMP_TARGET
5996 create_longjmp_breakpoint ("longjmp");
5997 create_longjmp_breakpoint ("_longjmp");
5998 create_longjmp_breakpoint ("siglongjmp");
5999 create_longjmp_breakpoint ("_siglongjmp");
6000 create_longjmp_breakpoint (NULL);
6004 /* Took this out (temporarily at least), since it produces an extra
6005 blank line at startup. This messes up the gdbtests. -PB */
6006 /* Blank line to finish off all those mention() messages we just printed. */
6007 printf_filtered ("\n");
6011 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
6012 If from_tty is nonzero, it prints a message to that effect,
6013 which ends with a period (no newline). */
6015 /* Reset the thread number of this breakpoint:
6017 - If the breakpoint is for all threads, leave it as-is.
6018 - Else, reset it to the current thread for inferior_pid. */
6020 breakpoint_re_set_thread (b)
6021 struct breakpoint * b;
6023 if (b->thread != -1)
6025 if (in_thread_list (inferior_pid))
6026 b->thread = pid_to_thread_id (inferior_pid);
6031 set_ignore_count (bptnum, count, from_tty)
6032 int bptnum, count, from_tty;
6034 register struct breakpoint *b;
6040 if (b->number == bptnum)
6042 b->ignore_count = count;
6045 else if (count == 0)
6046 printf_filtered ("Will stop next time breakpoint %d is reached.",
6048 else if (count == 1)
6049 printf_filtered ("Will ignore next crossing of breakpoint %d.",
6052 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
6054 breakpoints_changed ();
6058 error ("No breakpoint number %d.", bptnum);
6061 /* Clear the ignore counts of all breakpoints. */
6063 breakpoint_clear_ignore_counts ()
6065 struct breakpoint *b;
6068 b->ignore_count = 0;
6071 /* Command to set ignore-count of breakpoint N to COUNT. */
6074 ignore_command (args, from_tty)
6082 error_no_arg ("a breakpoint number");
6084 num = get_number (&p);
6087 error ("Second argument (specified ignore-count) is missing.");
6089 set_ignore_count (num,
6090 longest_to_int (value_as_long (parse_and_eval (p))),
6092 printf_filtered ("\n");
6093 breakpoints_changed ();
6096 /* Call FUNCTION on each of the breakpoints
6097 whose numbers are given in ARGS. */
6100 map_breakpoint_numbers (args, function)
6102 void (*function) PARAMS ((struct breakpoint *));
6104 register char *p = args;
6107 register struct breakpoint *b;
6110 error_no_arg ("one or more breakpoint numbers");
6116 num = get_number (&p1);
6119 if (b->number == num)
6121 struct breakpoint *related_breakpoint = b->related_breakpoint;
6123 if (related_breakpoint)
6124 function (related_breakpoint);
6127 printf_unfiltered ("No breakpoint number %d.\n", num);
6134 disable_breakpoint (bpt)
6135 struct breakpoint *bpt;
6137 /* Never disable a watchpoint scope breakpoint; we want to
6138 hit them when we leave scope so we can delete both the
6139 watchpoint and its scope breakpoint at that time. */
6140 if (bpt->type == bp_watchpoint_scope)
6143 bpt->enable = disabled;
6145 check_duplicates (bpt->address, bpt->section);
6147 if (modify_breakpoint_hook)
6148 modify_breakpoint_hook (bpt);
6153 disable_command (args, from_tty)
6157 register struct breakpoint *bpt;
6159 ALL_BREAKPOINTS (bpt)
6163 warning ("attempted to disable apparently deleted breakpoint #%d?\n", bpt->number);
6167 case bp_catch_unload:
6169 case bp_catch_vfork:
6171 case bp_catch_catch:
6172 case bp_catch_throw:
6173 case bp_hardware_breakpoint:
6175 case bp_hardware_watchpoint:
6176 case bp_read_watchpoint:
6177 case bp_access_watchpoint:
6178 disable_breakpoint (bpt);
6183 map_breakpoint_numbers (args, disable_breakpoint);
6187 do_enable_breakpoint (bpt, disposition)
6188 struct breakpoint *bpt;
6189 enum bpdisp disposition;
6191 struct frame_info *save_selected_frame = NULL;
6192 int save_selected_frame_level = -1;
6193 int target_resources_ok, other_type_used;
6196 if (bpt->type == bp_hardware_breakpoint)
6199 i = hw_breakpoint_used_count();
6200 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
6201 bp_hardware_breakpoint, i+1, 0);
6202 if (target_resources_ok == 0)
6203 error ("No hardware breakpoint support in the target.");
6204 else if (target_resources_ok < 0)
6205 error ("Hardware breakpoints used exceeds limit.");
6208 bpt->enable = enabled;
6209 bpt->disposition = disposition;
6210 check_duplicates (bpt->address, bpt->section);
6211 breakpoints_changed ();
6213 if (bpt->type == bp_watchpoint || bpt->type == bp_hardware_watchpoint ||
6214 bpt->type == bp_read_watchpoint || bpt->type == bp_access_watchpoint)
6216 if (bpt->exp_valid_block != NULL)
6218 struct frame_info *fr =
6220 /* Ensure that we have the current frame. Else, this
6221 next query may pessimistically be answered as, "No,
6222 not within current scope". */
6223 get_current_frame ();
6224 fr = find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
6228 Cannot enable watchpoint %d because the block in which its expression\n\
6229 is valid is not currently in scope.\n", bpt->number);
6230 bpt->enable = disabled;
6234 save_selected_frame = selected_frame;
6235 save_selected_frame_level = selected_frame_level;
6236 select_frame (fr, -1);
6239 value_free (bpt->val);
6240 mark = value_mark ();
6241 bpt->val = evaluate_expression (bpt->exp);
6242 release_value (bpt->val);
6243 if (VALUE_LAZY (bpt->val))
6244 value_fetch_lazy (bpt->val);
6246 if (bpt->type == bp_hardware_watchpoint ||
6247 bpt->type == bp_read_watchpoint ||
6248 bpt->type == bp_access_watchpoint)
6250 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
6251 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
6253 /* Hack around 'unused var' error for some targets here */
6255 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
6256 bpt->type, i + mem_cnt, other_type_used);
6257 /* we can consider of type is bp_hardware_watchpoint, convert to
6258 bp_watchpoint in the following condition */
6259 if (target_resources_ok < 0)
6262 Cannot enable watchpoint %d because target watch resources\n\
6263 have been allocated for other watchpoints.\n", bpt->number);
6264 bpt->enable = disabled;
6265 value_free_to_mark (mark);
6270 if (save_selected_frame_level >= 0)
6271 select_and_print_frame (save_selected_frame, save_selected_frame_level);
6272 value_free_to_mark (mark);
6274 if (modify_breakpoint_hook)
6275 modify_breakpoint_hook (bpt);
6279 enable_breakpoint (bpt)
6280 struct breakpoint *bpt;
6282 do_enable_breakpoint (bpt, bpt->disposition);
6285 /* The enable command enables the specified breakpoints (or all defined
6286 breakpoints) so they once again become (or continue to be) effective
6287 in stopping the inferior. */
6291 enable_command (args, from_tty)
6295 register struct breakpoint *bpt;
6297 ALL_BREAKPOINTS (bpt)
6301 warning ("attempted to enable apparently deleted breakpoint #%d?\n", bpt->number);
6305 case bp_catch_unload:
6307 case bp_catch_vfork:
6309 case bp_catch_catch:
6310 case bp_catch_throw:
6311 case bp_hardware_breakpoint:
6313 case bp_hardware_watchpoint:
6314 case bp_read_watchpoint:
6315 case bp_access_watchpoint:
6316 enable_breakpoint (bpt);
6321 map_breakpoint_numbers (args, enable_breakpoint);
6325 enable_once_breakpoint (bpt)
6326 struct breakpoint *bpt;
6328 do_enable_breakpoint (bpt, disable);
6333 enable_once_command (args, from_tty)
6337 map_breakpoint_numbers (args, enable_once_breakpoint);
6341 enable_delete_breakpoint (bpt)
6342 struct breakpoint *bpt;
6344 do_enable_breakpoint (bpt, del);
6349 enable_delete_command (args, from_tty)
6353 map_breakpoint_numbers (args, enable_delete_breakpoint);
6356 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
6358 struct symtabs_and_lines
6359 decode_line_spec_1 (string, funfirstline)
6363 struct symtabs_and_lines sals;
6365 error ("Empty line specification.");
6366 if (default_breakpoint_valid)
6367 sals = decode_line_1 (&string, funfirstline,
6368 default_breakpoint_symtab, default_breakpoint_line,
6371 sals = decode_line_1 (&string, funfirstline,
6372 (struct symtab *)NULL, 0, (char ***)NULL);
6374 error ("Junk at end of line specification: %s", string);
6379 _initialize_breakpoint ()
6381 struct cmd_list_element *c;
6383 breakpoint_chain = 0;
6384 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
6385 before a breakpoint is set. */
6386 breakpoint_count = 0;
6388 add_com ("ignore", class_breakpoint, ignore_command,
6389 "Set ignore-count of breakpoint number N to COUNT.\n\
6390 Usage is `ignore N COUNT'.");
6392 add_com_alias("bc", "ignore", class_breakpoint, 1);
6394 add_com ("commands", class_breakpoint, commands_command,
6395 "Set commands to be executed when a breakpoint is hit.\n\
6396 Give breakpoint number as argument after \"commands\".\n\
6397 With no argument, the targeted breakpoint is the last one set.\n\
6398 The commands themselves follow starting on the next line.\n\
6399 Type a line containing \"end\" to indicate the end of them.\n\
6400 Give \"silent\" as the first line to make the breakpoint silent;\n\
6401 then no output is printed when it is hit, except what the commands print.");
6403 add_com ("condition", class_breakpoint, condition_command,
6404 "Specify breakpoint number N to break only if COND is true.\n\
6405 Usage is `condition N COND', where N is an integer and COND is an\n\
6406 expression to be evaluated whenever breakpoint N is reached. ");
6408 add_com ("tbreak", class_breakpoint, tbreak_command,
6409 "Set a temporary breakpoint. Args like \"break\" command.\n\
6410 Like \"break\" except the breakpoint is only temporary,\n\
6411 so it will be deleted when hit. Equivalent to \"break\" followed\n\
6412 by using \"enable delete\" on the breakpoint number.");
6413 add_com("txbreak", class_breakpoint, tbreak_at_finish_command,
6414 "Set temporary breakpoint at procedure exit. Either there should\n\
6415 be no argument or the argument must be a depth.\n");
6417 add_com ("hbreak", class_breakpoint, hbreak_command,
6418 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
6419 Like \"break\" except the breakpoint requires hardware support,\n\
6420 some target hardware may not have this support.");
6422 add_com ("thbreak", class_breakpoint, thbreak_command,
6423 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
6424 Like \"hbreak\" except the breakpoint is only temporary,\n\
6425 so it will be deleted when hit.");
6427 add_prefix_cmd ("enable", class_breakpoint, enable_command,
6428 "Enable some breakpoints.\n\
6429 Give breakpoint numbers (separated by spaces) as arguments.\n\
6430 With no subcommand, breakpoints are enabled until you command otherwise.\n\
6431 This is used to cancel the effect of the \"disable\" command.\n\
6432 With a subcommand you can enable temporarily.",
6433 &enablelist, "enable ", 1, &cmdlist);
6435 add_com("ab", class_breakpoint, enable_command,
6436 "Enable some breakpoints.\n\
6437 Give breakpoint numbers (separated by spaces) as arguments.\n\
6438 With no subcommand, breakpoints are enabled until you command otherwise.\n\
6439 This is used to cancel the effect of the \"disable\" command.\n\
6440 With a subcommand you can enable temporarily.");
6442 add_com_alias ("en", "enable", class_breakpoint, 1);
6444 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
6445 "Enable some breakpoints.\n\
6446 Give breakpoint numbers (separated by spaces) as arguments.\n\
6447 This is used to cancel the effect of the \"disable\" command.\n\
6448 May be abbreviated to simply \"enable\".\n",
6449 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
6451 add_cmd ("once", no_class, enable_once_command,
6452 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
6453 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
6456 add_cmd ("delete", no_class, enable_delete_command,
6457 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
6458 If a breakpoint is hit while enabled in this fashion, it is deleted.",
6461 add_cmd ("delete", no_class, enable_delete_command,
6462 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
6463 If a breakpoint is hit while enabled in this fashion, it is deleted.",
6466 add_cmd ("once", no_class, enable_once_command,
6467 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
6468 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
6471 add_prefix_cmd ("disable", class_breakpoint, disable_command,
6472 "Disable some breakpoints.\n\
6473 Arguments are breakpoint numbers with spaces in between.\n\
6474 To disable all breakpoints, give no argument.\n\
6475 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
6476 &disablelist, "disable ", 1, &cmdlist);
6477 add_com_alias ("dis", "disable", class_breakpoint, 1);
6478 add_com_alias ("disa", "disable", class_breakpoint, 1);
6480 add_com("sb", class_breakpoint, disable_command,
6481 "Disable some breakpoints.\n\
6482 Arguments are breakpoint numbers with spaces in between.\n\
6483 To disable all breakpoints, give no argument.\n\
6484 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
6486 add_cmd ("breakpoints", class_alias, disable_command,
6487 "Disable some breakpoints.\n\
6488 Arguments are breakpoint numbers with spaces in between.\n\
6489 To disable all breakpoints, give no argument.\n\
6490 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
6491 This command may be abbreviated \"disable\".",
6494 add_prefix_cmd ("delete", class_breakpoint, delete_command,
6495 "Delete some breakpoints or auto-display expressions.\n\
6496 Arguments are breakpoint numbers with spaces in between.\n\
6497 To delete all breakpoints, give no argument.\n\
6499 Also a prefix command for deletion of other GDB objects.\n\
6500 The \"unset\" command is also an alias for \"delete\".",
6501 &deletelist, "delete ", 1, &cmdlist);
6502 add_com_alias ("d", "delete", class_breakpoint, 1);
6504 add_com ("db", class_breakpoint, delete_command,
6505 "Delete some breakpoints.\n\
6506 Arguments are breakpoint numbers with spaces in between.\n\
6507 To delete all breakpoints, give no argument.\n");
6509 add_cmd ("breakpoints", class_alias, delete_command,
6510 "Delete some breakpoints or auto-display expressions.\n\
6511 Arguments are breakpoint numbers with spaces in between.\n\
6512 To delete all breakpoints, give no argument.\n\
6513 This command may be abbreviated \"delete\".",
6516 add_com ("clear", class_breakpoint, clear_command,
6517 concat ("Clear breakpoint at specified line or function.\n\
6518 Argument may be line number, function name, or \"*\" and an address.\n\
6519 If line number is specified, all breakpoints in that line are cleared.\n\
6520 If function is specified, breakpoints at beginning of function are cleared.\n\
6521 If an address is specified, breakpoints at that address are cleared.\n\n",
6522 "With no argument, clears all breakpoints in the line that the selected frame\n\
6525 See also the \"delete\" command which clears breakpoints by number.", NULL));
6527 add_com ("break", class_breakpoint, break_command,
6528 concat ("Set breakpoint at specified line or function.\n\
6529 Argument may be line number, function name, or \"*\" and an address.\n\
6530 If line number is specified, break at start of code for that line.\n\
6531 If function is specified, break at start of code for that function.\n\
6532 If an address is specified, break at that exact address.\n",
6533 "With no arg, uses current execution address of selected stack frame.\n\
6534 This is useful for breaking on return to a stack frame.\n\
6536 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
6538 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
6539 add_com_alias ("b", "break", class_run, 1);
6540 add_com_alias ("br", "break", class_run, 1);
6541 add_com_alias ("bre", "break", class_run, 1);
6542 add_com_alias ("brea", "break", class_run, 1);
6544 add_com("xbreak", class_breakpoint, break_at_finish_command,
6545 concat("Set breakpoint at procedure exit. \n\
6546 Argument may be function name, or \"*\" and an address.\n\
6547 If function is specified, break at end of code for that function.\n\
6548 If an address is specified, break at the end of the function that contains \n\
6549 that exact address.\n",
6550 "With no arg, uses current execution address of selected stack frame.\n\
6551 This is useful for breaking on return to a stack frame.\n\
6553 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
6555 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
6556 add_com_alias ("xb", "xbreak", class_breakpoint, 1);
6557 add_com_alias ("xbr", "xbreak", class_breakpoint, 1);
6558 add_com_alias ("xbre", "xbreak", class_breakpoint, 1);
6559 add_com_alias ("xbrea", "xbreak", class_breakpoint, 1);
6563 add_com_alias ("ba", "break", class_breakpoint, 1);
6564 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
6565 add_com ("bx", class_breakpoint, break_at_finish_at_depth_command,
6566 "Set breakpoint at procedure exit. Either there should\n\
6567 be no argument or the argument must be a depth.\n");
6572 add_abbrev_prefix_cmd("stop", class_breakpoint, stop_command,
6573 "Break in function/address or break at a line in the current file.",
6574 &stoplist, "stop ", 1, &cmdlist);
6575 add_cmd("in", class_breakpoint, stopin_command,
6576 "Break in function or address.\n", &stoplist);
6577 add_cmd("at", class_breakpoint, stopat_command,
6578 "Break at a line in the current file.\n", &stoplist);
6579 add_com("status", class_info, breakpoints_info,
6580 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
6581 The \"Type\" column indicates one of:\n\
6582 \tbreakpoint - normal breakpoint\n\
6583 \twatchpoint - watchpoint\n\
6584 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
6585 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
6586 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
6587 address and file/line number respectively.\n\n",
6588 "Convenience variable \"$_\" and default examine address for \"x\"\n\
6589 are set to the address of the last breakpoint listed.\n\n\
6590 Convenience variable \"$bpnum\" contains the number of the last\n\
6591 breakpoint set.", NULL));
6594 add_info ("breakpoints", breakpoints_info,
6595 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
6596 The \"Type\" column indicates one of:\n\
6597 \tbreakpoint - normal breakpoint\n\
6598 \twatchpoint - watchpoint\n\
6599 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
6600 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
6601 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
6602 address and file/line number respectively.\n\n",
6603 "Convenience variable \"$_\" and default examine address for \"x\"\n\
6604 are set to the address of the last breakpoint listed.\n\n\
6605 Convenience variable \"$bpnum\" contains the number of the last\n\
6606 breakpoint set.", NULL));
6609 add_com("lb", class_breakpoint, breakpoints_info,
6610 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
6611 The \"Type\" column indicates one of:\n\
6612 \tbreakpoint - normal breakpoint\n\
6613 \twatchpoint - watchpoint\n\
6614 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
6615 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
6616 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
6617 address and file/line number respectively.\n\n",
6618 "Convenience variable \"$_\" and default examine address for \"x\"\n\
6619 are set to the address of the last breakpoint listed.\n\n\
6620 Convenience variable \"$bpnum\" contains the number of the last\n\
6621 breakpoint set.", NULL));
6623 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
6624 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
6625 The \"Type\" column indicates one of:\n\
6626 \tbreakpoint - normal breakpoint\n\
6627 \twatchpoint - watchpoint\n\
6628 \tlongjmp - internal breakpoint used to step through longjmp()\n\
6629 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
6630 \tuntil - internal breakpoint used by the \"until\" command\n\
6631 \tfinish - internal breakpoint used by the \"finish\" command\n",
6632 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
6633 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
6634 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
6635 address and file/line number respectively.\n\n",
6636 "Convenience variable \"$_\" and default examine address for \"x\"\n\
6637 are set to the address of the last breakpoint listed.\n\n\
6638 Convenience variable \"$bpnum\" contains the number of the last\n\
6639 breakpoint set.", NULL),
6640 &maintenanceinfolist);
6642 add_com ("catch", class_breakpoint, catch_command,
6643 "Set catchpoints to catch events.\n\
6644 Raised signals may be caught:\n\
6645 \tcatch signal - all signals\n\
6646 \tcatch signal <signame> - a particular signal\n\
6647 Raised exceptions may be caught:\n\
6648 \tcatch throw - all exceptions, when thrown\n\
6649 \tcatch throw <exceptname> - a particular exception, when thrown\n\
6650 \tcatch catch - all exceptions, when caught\n\
6651 \tcatch catch <exceptname> - a particular exception, when caught\n\
6652 Thread or process events may be caught:\n\
6653 \tcatch thread_start - any threads, just after creation\n\
6654 \tcatch thread_exit - any threads, just before expiration\n\
6655 \tcatch thread_join - any threads, just after joins\n\
6656 Process events may be caught:\n\
6657 \tcatch start - any processes, just after creation\n\
6658 \tcatch exit - any processes, just before expiration\n\
6659 \tcatch fork - calls to fork()\n\
6660 \tcatch vfork - calls to vfork()\n\
6661 \tcatch exec - calls to exec()\n\
6662 Dynamically-linked library events may be caught:\n\
6663 \tcatch load - loads of any library\n\
6664 \tcatch load <libname> - loads of a particular library\n\
6665 \tcatch unload - unloads of any library\n\
6666 \tcatch unload <libname> - unloads of a particular library\n\
6667 The act of your program's execution stopping may also be caught:\n\
6669 C++ exceptions may be caught:\n\
6670 \tcatch throw - all exceptions, when thrown\n\
6671 \tcatch catch - all exceptions, when caught\n\
6673 Do \"help set follow-fork-mode\" for info on debugging your program\n\
6674 after a fork or vfork is caught.\n\n\
6675 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
6677 add_com ("tcatch", class_breakpoint, tcatch_command,
6678 "Set temporary catchpoints to catch events.\n\
6679 Args like \"catch\" command.\n\
6680 Like \"catch\" except the catchpoint is only temporary,\n\
6681 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
6682 by using \"enable delete\" on the catchpoint number.");
6684 add_com ("watch", class_breakpoint, watch_command,
6686 "Set a watchpoint for an expression.\n\
6687 A watchpoint stops execution of your program whenever the value of\n\
6688 an expression changes.");
6690 add_com ("rwatch", class_breakpoint, rwatch_command,
6691 "Set a read watchpoint for an expression.\n\
6692 A watchpoint stops execution of your program whenever the value of\n\
6693 an expression is read.");
6695 add_com ("awatch", class_breakpoint, awatch_command,
6696 "Set a watchpoint for an expression.\n\
6697 A watchpoint stops execution of your program whenever the value of\n\
6698 an expression is either read or written.");
6700 add_info ("watchpoints", breakpoints_info,
6701 "Synonym for ``info breakpoints''.");
6704 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
6705 (char *) &can_use_hw_watchpoints,
6706 "Set debugger's willingness to use watchpoint hardware.\n\
6707 If zero, gdb will not use hardware for new watchpoints, even if\n\
6708 such is available. (However, any hardware watchpoints that were\n\
6709 created before setting this to nonzero, will continue to use watchpoint\n\
6712 add_show_from_set (c, &showlist);
6714 can_use_hw_watchpoints = 1;