1 /* Everything about breakpoints, for GDB.
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
28 #include "breakpoint.h"
30 #include "expression.h"
36 #include "gdbthread.h"
39 #include "gdb_string.h"
46 #include "completer.h"
49 #include "cli/cli-script.h"
50 #include "gdb_assert.h"
54 #include "exceptions.h"
56 #include "gdb-events.h"
58 /* Prototypes for local functions. */
60 static void until_break_command_continuation (struct continuation_arg *arg);
62 static void catch_command_1 (char *, int, int);
64 static void enable_delete_command (char *, int);
66 static void enable_delete_breakpoint (struct breakpoint *);
68 static void enable_once_command (char *, int);
70 static void enable_once_breakpoint (struct breakpoint *);
72 static void disable_command (char *, int);
74 static void enable_command (char *, int);
76 static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
78 static void ignore_command (char *, int);
80 static int breakpoint_re_set_one (void *);
82 static void clear_command (char *, int);
84 static void catch_command (char *, int);
86 static void watch_command (char *, int);
88 static int can_use_hardware_watchpoint (struct value *);
90 static int break_command_1 (char *, int, int, struct breakpoint *);
92 static void mention (struct breakpoint *);
94 struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
96 static void check_duplicates (struct breakpoint *);
98 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
100 static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
103 static void describe_other_breakpoints (CORE_ADDR, asection *);
105 static void breakpoints_info (char *, int);
107 static void breakpoint_1 (int, int);
109 static bpstat bpstat_alloc (struct breakpoint *, bpstat);
111 static int breakpoint_cond_eval (void *);
113 static void cleanup_executing_breakpoints (void *);
115 static void commands_command (char *, int);
117 static void condition_command (char *, int);
119 static int get_number_trailer (char **, int);
121 void set_breakpoint_count (int);
130 static int remove_breakpoint (struct bp_location *, insertion_state_t);
132 static enum print_stop_action print_it_typical (bpstat);
134 static enum print_stop_action print_bp_stop_message (bpstat bs);
138 enum exception_event_kind kind;
141 args_for_catchpoint_enable;
143 static int watchpoint_check (void *);
145 static int cover_target_enable_exception_callback (void *);
147 static void maintenance_info_breakpoints (char *, int);
149 static void create_longjmp_breakpoint (char *);
151 static void create_overlay_event_breakpoint (char *);
153 static int hw_breakpoint_used_count (void);
155 static int hw_watchpoint_used_count (enum bptype, int *);
157 static void hbreak_command (char *, int);
159 static void thbreak_command (char *, int);
161 static void watch_command_1 (char *, int, int);
163 static void rwatch_command (char *, int);
165 static void awatch_command (char *, int);
167 static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
169 static void solib_load_unload_1 (char *hookname,
172 char *cond_string, enum bptype bp_kind);
174 static void create_fork_vfork_event_catchpoint (int tempflag,
176 enum bptype bp_kind);
178 static void stop_command (char *arg, int from_tty);
180 static void stopin_command (char *arg, int from_tty);
182 static void stopat_command (char *arg, int from_tty);
184 static char *ep_find_event_name_end (char *arg);
186 static char *ep_parse_optional_if_clause (char **arg);
188 static char *ep_parse_optional_filename (char **arg);
190 static void create_exception_catchpoint (int tempflag, char *cond_string,
191 enum exception_event_kind ex_event,
192 struct symtab_and_line *sal);
194 static void catch_exception_command_1 (enum exception_event_kind ex_event,
195 char *arg, int tempflag, int from_tty);
197 static void tcatch_command (char *arg, int from_tty);
199 static void ep_skip_leading_whitespace (char **s);
201 /* Prototypes for exported functions. */
203 /* If FALSE, gdb will not use hardware support for watchpoints, even
204 if such is available. */
205 static int can_use_hw_watchpoints;
207 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
208 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
209 for unrecognized breakpoint locations.
210 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
211 static enum auto_boolean pending_break_support;
213 void _initialize_breakpoint (void);
215 extern int addressprint; /* Print machine addresses? */
217 /* Are we executing breakpoint commands? */
218 static int executing_breakpoint_commands;
220 /* Are overlay event breakpoints enabled? */
221 static int overlay_events_enabled;
223 /* Walk the following statement or block through all breakpoints.
224 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
227 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
229 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
230 for (B = breakpoint_chain; \
231 B ? (TMP=B->next, 1): 0; \
234 /* Similar iterators for the low-level breakpoints. */
236 #define ALL_BP_LOCATIONS(B) for (B = bp_location_chain; B; B = B->next)
238 #define ALL_BP_LOCATIONS_SAFE(B,TMP) \
239 for (B = bp_location_chain; \
240 B ? (TMP=B->next, 1): 0; \
243 /* True if breakpoint hit counts should be displayed in breakpoint info. */
245 int show_breakpoint_hit_counts = 1;
247 /* Chains of all breakpoints defined. */
249 struct breakpoint *breakpoint_chain;
251 struct bp_location *bp_location_chain;
253 /* Number of last breakpoint made. */
255 int breakpoint_count;
257 /* Pointer to current exception event record */
258 static struct exception_event_record *current_exception_event;
260 /* Indicator of whether exception catchpoints should be nuked between
261 runs of a program. */
262 int deprecated_exception_catchpoints_are_fragile = 0;
264 /* Indicator of when exception catchpoints set-up should be
265 reinitialized -- e.g. when program is re-run. */
266 int deprecated_exception_support_initialized = 0;
268 /* This function returns a pointer to the string representation of the
269 pathname of the dynamically-linked library that has just been
272 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
273 or undefined results are guaranteed.
275 This string's contents are only valid immediately after the
276 inferior has stopped in the dynamic linker hook, and becomes
277 invalid as soon as the inferior is continued. Clients should make
278 a copy of this string if they wish to continue the inferior and
279 then access the string. */
281 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
282 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
285 /* This function returns a pointer to the string representation of the
286 pathname of the dynamically-linked library that has just been
289 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
290 TRUE, or undefined results are guaranteed.
292 This string's contents are only valid immediately after the
293 inferior has stopped in the dynamic linker hook, and becomes
294 invalid as soon as the inferior is continued. Clients should make
295 a copy of this string if they wish to continue the inferior and
296 then access the string. */
298 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
299 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
302 /* This function is called by the "catch load" command. It allows the
303 debugger to be notified by the dynamic linker when a specified
304 library file (or any library file, if filename is NULL) is loaded. */
306 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
307 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
308 error (_("catch of library loads not yet implemented on this platform"))
311 /* This function is called by the "catch unload" command. It allows
312 the debugger to be notified by the dynamic linker when a specified
313 library file (or any library file, if filename is NULL) is
316 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
317 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
318 error (_("catch of library unloads not yet implemented on this platform"))
321 /* Return whether a breakpoint is an active enabled breakpoint. */
323 breakpoint_enabled (struct breakpoint *b)
325 return (b->enable_state == bp_enabled && !b->pending);
328 /* Set breakpoint count to NUM. */
331 set_breakpoint_count (int num)
333 breakpoint_count = num;
334 set_internalvar (lookup_internalvar ("bpnum"),
335 value_from_longest (builtin_type_int, (LONGEST) num));
338 /* Used in run_command to zero the hit count when a new run starts. */
341 clear_breakpoint_hit_counts (void)
343 struct breakpoint *b;
349 /* Default address, symtab and line to put a breakpoint at
350 for "break" command with no arg.
351 if default_breakpoint_valid is zero, the other three are
352 not valid, and "break" with no arg is an error.
354 This set by print_stack_frame, which calls set_default_breakpoint. */
356 int default_breakpoint_valid;
357 CORE_ADDR default_breakpoint_address;
358 struct symtab *default_breakpoint_symtab;
359 int default_breakpoint_line;
361 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
362 Advance *PP after the string and any trailing whitespace.
364 Currently the string can either be a number or "$" followed by the name
365 of a convenience variable. Making it an expression wouldn't work well
366 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
368 TRAILER is a character which can be found after the number; most
369 commonly this is `-'. If you don't want a trailer, use \0. */
371 get_number_trailer (char **pp, int trailer)
373 int retval = 0; /* default */
377 /* Empty line means refer to the last breakpoint. */
378 return breakpoint_count;
381 /* Make a copy of the name, so we can null-terminate it
382 to pass to lookup_internalvar(). */
387 while (isalnum (*p) || *p == '_')
389 varname = (char *) alloca (p - start + 1);
390 strncpy (varname, start, p - start);
391 varname[p - start] = '\0';
392 val = value_of_internalvar (lookup_internalvar (varname));
393 if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
394 retval = (int) value_as_long (val);
397 printf_filtered (_("Convenience variable must have integer value.\n"));
405 while (*p >= '0' && *p <= '9')
408 /* There is no number here. (e.g. "cond a == b"). */
410 /* Skip non-numeric token */
411 while (*p && !isspace((int) *p))
413 /* Return zero, which caller must interpret as error. */
419 if (!(isspace (*p) || *p == '\0' || *p == trailer))
421 /* Trailing junk: return 0 and let caller print error msg. */
422 while (!(isspace (*p) || *p == '\0' || *p == trailer))
433 /* Like get_number_trailer, but don't allow a trailer. */
435 get_number (char **pp)
437 return get_number_trailer (pp, '\0');
440 /* Parse a number or a range.
441 * A number will be of the form handled by get_number.
442 * A range will be of the form <number1> - <number2>, and
443 * will represent all the integers between number1 and number2,
446 * While processing a range, this fuction is called iteratively;
447 * At each call it will return the next value in the range.
449 * At the beginning of parsing a range, the char pointer PP will
450 * be advanced past <number1> and left pointing at the '-' token.
451 * Subsequent calls will not advance the pointer until the range
452 * is completed. The call that completes the range will advance
453 * pointer PP past <number2>.
457 get_number_or_range (char **pp)
459 static int last_retval, end_value;
460 static char *end_ptr;
461 static int in_range = 0;
465 /* Default case: pp is pointing either to a solo number,
466 or to the first number of a range. */
467 last_retval = get_number_trailer (pp, '-');
472 /* This is the start of a range (<number1> - <number2>).
473 Skip the '-', parse and remember the second number,
474 and also remember the end of the final token. */
478 while (isspace ((int) *end_ptr))
479 end_ptr++; /* skip white space */
480 end_value = get_number (temp);
481 if (end_value < last_retval)
483 error (_("inverted range"));
485 else if (end_value == last_retval)
487 /* degenerate range (number1 == number2). Advance the
488 token pointer so that the range will be treated as a
497 error (_("negative value"));
500 /* pp points to the '-' that betokens a range. All
501 number-parsing has already been done. Return the next
502 integer value (one greater than the saved previous value).
503 Do not advance the token pointer 'pp' until the end of range
506 if (++last_retval == end_value)
508 /* End of range reached; advance token pointer. */
518 /* condition N EXP -- set break condition of breakpoint N to EXP. */
521 condition_command (char *arg, int from_tty)
523 struct breakpoint *b;
528 error_no_arg (_("breakpoint number"));
531 bnum = get_number (&p);
533 error (_("Bad breakpoint argument: '%s'"), arg);
536 if (b->number == bnum)
543 if (b->cond_string != NULL)
544 xfree (b->cond_string);
549 b->cond_string = NULL;
551 printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum);
556 /* I don't know if it matters whether this is the string the user
557 typed in or the decompiled expression. */
558 b->cond_string = savestring (arg, strlen (arg));
561 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
563 error (_("Junk at end of expression"));
566 breakpoints_changed ();
567 breakpoint_modify_event (b->number);
571 error (_("No breakpoint number %d."), bnum);
575 commands_command (char *arg, int from_tty)
577 struct breakpoint *b;
580 struct command_line *l;
582 /* If we allowed this, we would have problems with when to
583 free the storage, if we change the commands currently
586 if (executing_breakpoint_commands)
587 error (_("Can't use the \"commands\" command among a breakpoint's commands."));
590 bnum = get_number (&p);
593 error (_("Unexpected extra arguments following breakpoint number."));
596 if (b->number == bnum)
598 char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
600 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
601 l = read_command_lines (tmpbuf, from_tty);
602 do_cleanups (cleanups);
603 free_command_lines (&b->commands);
605 breakpoints_changed ();
606 breakpoint_modify_event (b->number);
609 error (_("No breakpoint number %d."), bnum);
612 /* Like target_read_memory() but if breakpoints are inserted, return
613 the shadow contents instead of the breakpoints themselves.
615 Read "memory data" from whatever target or inferior we have.
616 Returns zero if successful, errno value if not. EIO is used
617 for address out of bounds. If breakpoints are inserted, returns
618 shadow contents, not the breakpoints themselves. From breakpoint.c. */
621 deprecated_read_memory_nobpt (CORE_ADDR memaddr, char *myaddr, unsigned len)
624 struct bp_location *b;
625 CORE_ADDR bp_addr = 0;
628 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
629 /* No breakpoints on this machine. */
630 return target_read_memory (memaddr, myaddr, len);
634 if (b->owner->type == bp_none)
635 warning (_("reading through apparently deleted breakpoint #%d?"),
638 if (b->loc_type != bp_loc_software_breakpoint)
642 /* Addresses and length of the part of the breakpoint that
644 /* XXXX The m68k, sh and h8300 have different local and remote
645 breakpoint values. BREAKPOINT_FROM_PC still manages to
646 correctly determine the breakpoints memory address and size
647 for these targets. */
648 bp_addr = b->address;
650 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
655 if (bp_addr + bp_size <= memaddr)
656 /* The breakpoint is entirely before the chunk of memory we
659 if (bp_addr >= memaddr + len)
660 /* The breakpoint is entirely after the chunk of memory we are
663 /* Copy the breakpoint from the shadow contents, and recurse for
664 the things before and after. */
666 /* Offset within shadow_contents. */
669 if (bp_addr < memaddr)
671 /* Only copy the second part of the breakpoint. */
672 bp_size -= memaddr - bp_addr;
673 bptoffset = memaddr - bp_addr;
677 if (bp_addr + bp_size > memaddr + len)
679 /* Only copy the first part of the breakpoint. */
680 bp_size -= (bp_addr + bp_size) - (memaddr + len);
683 memcpy (myaddr + bp_addr - memaddr,
684 b->shadow_contents + bptoffset, bp_size);
686 if (bp_addr > memaddr)
688 /* Copy the section of memory before the breakpoint. */
689 status = deprecated_read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
694 if (bp_addr + bp_size < memaddr + len)
696 /* Copy the section of memory after the breakpoint. */
697 status = deprecated_read_memory_nobpt (bp_addr + bp_size,
698 myaddr + bp_addr + bp_size - memaddr,
699 memaddr + len - (bp_addr + bp_size));
706 /* Nothing overlaps. Just call read_memory_noerr. */
707 return target_read_memory (memaddr, myaddr, len);
711 /* A wrapper function for inserting catchpoints. */
713 insert_catchpoint (struct ui_out *uo, void *args)
715 struct breakpoint *b = (struct breakpoint *) args;
721 target_insert_fork_catchpoint (PIDGET (inferior_ptid));
724 target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
727 target_insert_exec_catchpoint (PIDGET (inferior_ptid));
730 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
735 /* Helper routine: free the value chain for a breakpoint (watchpoint). */
737 static void free_valchain (struct bp_location *b)
742 /* Free the saved value chain. We will construct a new one
743 the next time the watchpoint is inserted. */
744 for (v = b->owner->val_chain; v; v = n)
749 b->owner->val_chain = NULL;
752 /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
753 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
754 PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
756 NOTE drow/2003-09-09: This routine could be broken down to an object-style
757 method for each breakpoint or catchpoint type. */
759 insert_bp_location (struct bp_location *bpt,
760 struct ui_file *tmp_error_stream,
761 int *disabled_breaks, int *process_warning,
762 int *hw_breakpoint_error)
766 /* Permanent breakpoints cannot be inserted or removed. Disabled
767 breakpoints should not be inserted. */
768 if (!breakpoint_enabled (bpt->owner))
771 if (bpt->inserted || bpt->duplicate)
774 if (bpt->loc_type == bp_loc_software_breakpoint
775 || bpt->loc_type == bp_loc_hardware_breakpoint)
777 /* First check to see if we have to handle an overlay. */
778 if (overlay_debugging == ovly_off
779 || bpt->section == NULL
780 || !(section_is_overlay (bpt->section)))
782 /* No overlay handling: just set the breakpoint. */
784 if (bpt->loc_type == bp_loc_hardware_breakpoint)
785 val = target_insert_hw_breakpoint (bpt->address,
786 bpt->shadow_contents);
788 val = target_insert_breakpoint (bpt->address,
789 bpt->shadow_contents);
793 /* This breakpoint is in an overlay section.
794 Shall we set a breakpoint at the LMA? */
795 if (!overlay_events_enabled)
797 /* Yes -- overlay event support is not active,
798 so we must try to set a breakpoint at the LMA.
799 This will not work for a hardware breakpoint. */
800 if (bpt->loc_type == bp_loc_hardware_breakpoint)
801 warning (_("hardware breakpoint %d not supported in overlay!"),
805 CORE_ADDR addr = overlay_unmapped_address (bpt->address,
807 /* Set a software (trap) breakpoint at the LMA. */
808 val = target_insert_breakpoint (addr, bpt->shadow_contents);
810 fprintf_unfiltered (tmp_error_stream,
811 "Overlay breakpoint %d failed: in ROM?",
815 /* Shall we set a breakpoint at the VMA? */
816 if (section_is_mapped (bpt->section))
818 /* Yes. This overlay section is mapped into memory. */
819 if (bpt->loc_type == bp_loc_hardware_breakpoint)
820 val = target_insert_hw_breakpoint (bpt->address,
821 bpt->shadow_contents);
823 val = target_insert_breakpoint (bpt->address,
824 bpt->shadow_contents);
828 /* No. This breakpoint will not be inserted.
829 No error, but do not mark the bp as 'inserted'. */
836 /* Can't set the breakpoint. */
837 #if defined (DISABLE_UNSETTABLE_BREAK)
838 if (DISABLE_UNSETTABLE_BREAK (bpt->address))
840 /* See also: disable_breakpoints_in_shlibs. */
842 bpt->owner->enable_state = bp_shlib_disabled;
843 if (!*disabled_breaks)
845 fprintf_unfiltered (tmp_error_stream,
846 "Cannot insert breakpoint %d.\n",
848 fprintf_unfiltered (tmp_error_stream,
849 "Temporarily disabling shared library breakpoints:\n");
851 *disabled_breaks = 1;
852 fprintf_unfiltered (tmp_error_stream,
853 "breakpoint #%d\n", bpt->owner->number);
858 #ifdef ONE_PROCESS_WRITETEXT
859 *process_warning = 1;
861 if (bpt->loc_type == bp_loc_hardware_breakpoint)
863 *hw_breakpoint_error = 1;
864 fprintf_unfiltered (tmp_error_stream,
865 "Cannot insert hardware breakpoint %d.\n",
870 fprintf_unfiltered (tmp_error_stream,
871 "Cannot insert breakpoint %d.\n",
873 fprintf_filtered (tmp_error_stream,
874 "Error accessing memory address ");
875 deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream);
876 fprintf_filtered (tmp_error_stream, ": %s.\n",
877 safe_strerror (val));
888 else if (bpt->loc_type == bp_loc_hardware_watchpoint
889 /* NOTE drow/2003-09-08: This state only exists for removing
890 watchpoints. It's not clear that it's necessary... */
891 && bpt->owner->disposition != disp_del_at_next_stop)
893 /* FIXME drow/2003-09-08: This code sets multiple hardware watchpoints
894 based on the expression. Ideally this should happen at a higher level,
895 and there should be one bp_location for each computed address we
896 must watch. As soon as a many-to-one mapping is available I'll
899 int within_current_scope;
900 struct value *mark = value_mark ();
902 struct frame_id saved_frame_id;
904 /* Save the current frame's ID so we can restore it after
905 evaluating the watchpoint expression on its own frame. */
906 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
907 took a frame parameter, so that we didn't have to change the
909 saved_frame_id = get_frame_id (deprecated_selected_frame);
911 /* Determine if the watchpoint is within scope. */
912 if (bpt->owner->exp_valid_block == NULL)
913 within_current_scope = 1;
916 struct frame_info *fi;
917 fi = frame_find_by_id (bpt->owner->watchpoint_frame);
918 within_current_scope = (fi != NULL);
919 if (within_current_scope)
923 if (within_current_scope)
927 /* Evaluate the expression and cut the chain of values
928 produced off from the value chain.
930 Make sure the value returned isn't lazy; we use
931 laziness to determine what memory GDB actually needed
932 in order to compute the value of the expression. */
933 v = evaluate_expression (bpt->owner->exp);
935 value_release_to_mark (mark);
937 bpt->owner->val_chain = v;
940 /* Look at each value on the value chain. */
941 for (; v; v = value_next (v))
943 /* If it's a memory location, and GDB actually needed
944 its contents to evaluate the expression, then we
946 if (VALUE_LVAL (v) == lval_memory
949 struct type *vtype = check_typedef (value_type (v));
951 /* We only watch structs and arrays if user asked
952 for it explicitly, never if they just happen to
953 appear in the middle of some value chain. */
954 if (v == bpt->owner->val_chain
955 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
956 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
961 addr = VALUE_ADDRESS (v) + value_offset (v);
962 len = TYPE_LENGTH (value_type (v));
964 if (bpt->owner->type == bp_read_watchpoint)
966 else if (bpt->owner->type == bp_access_watchpoint)
969 val = target_insert_watchpoint (addr, len, type);
972 /* Don't exit the loop, try to insert
973 every value on the value chain. That's
974 because we will be removing all the
975 watches below, and removing a
976 watchpoint we didn't insert could have
984 /* Failure to insert a watchpoint on any memory value in the
985 value chain brings us here. */
988 remove_breakpoint (bpt, mark_uninserted);
989 *hw_breakpoint_error = 1;
990 fprintf_unfiltered (tmp_error_stream,
991 "Could not insert hardware watchpoint %d.\n",
998 printf_filtered (_("\
999 Hardware watchpoint %d deleted because the program has left the block \n\
1000 in which its expression is valid.\n"),
1001 bpt->owner->number);
1002 if (bpt->owner->related_breakpoint)
1003 bpt->owner->related_breakpoint->disposition = disp_del_at_next_stop;
1004 bpt->owner->disposition = disp_del_at_next_stop;
1007 /* Restore the selected frame. */
1008 select_frame (frame_find_by_id (saved_frame_id));
1013 else if (ep_is_exception_catchpoint (bpt->owner))
1015 /* FIXME drow/2003-09-09: This code sets both a catchpoint and a
1016 breakpoint. Once again, it would be better if this was represented
1017 as two bp_locations. */
1019 /* If we get here, we must have a callback mechanism for exception
1020 events -- with g++ style embedded label support, we insert
1021 ordinary breakpoints and not catchpoints. */
1022 val = target_insert_breakpoint (bpt->address, bpt->shadow_contents);
1025 /* Couldn't set breakpoint for some reason */
1026 fprintf_unfiltered (tmp_error_stream,
1027 "Cannot insert catchpoint %d; disabling it.\n",
1028 bpt->owner->number);
1029 fprintf_filtered (tmp_error_stream,
1030 "Error accessing memory address ");
1031 deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream);
1032 fprintf_filtered (tmp_error_stream, ": %s.\n",
1033 safe_strerror (val));
1034 bpt->owner->enable_state = bp_disabled;
1038 /* Bp set, now make sure callbacks are enabled */
1039 /* Format possible error msg */
1040 char *message = xstrprintf ("Error inserting catchpoint %d:\n",
1041 bpt->owner->number);
1042 struct cleanup *cleanups = make_cleanup (xfree, message);
1044 args_for_catchpoint_enable args;
1045 args.kind = bpt->owner->type == bp_catch_catch ?
1046 EX_EVENT_CATCH : EX_EVENT_THROW;
1048 val = catch_errors (cover_target_enable_exception_callback,
1049 &args, message, RETURN_MASK_ALL);
1050 do_cleanups (cleanups);
1051 if (val != 0 && val != -1)
1054 /* Check if something went wrong; val == 0 can be ignored */
1057 /* something went wrong */
1058 fprintf_unfiltered (tmp_error_stream,
1059 "Cannot insert catchpoint %d; disabling it.\n",
1060 bpt->owner->number);
1061 bpt->owner->enable_state = bp_disabled;
1068 else if (bpt->owner->type == bp_catch_fork
1069 || bpt->owner->type == bp_catch_vfork
1070 || bpt->owner->type == bp_catch_exec)
1072 struct exception e = catch_exception (uiout, insert_catchpoint,
1073 bpt->owner, RETURN_MASK_ERROR);
1074 exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
1075 bpt->owner->number);
1077 bpt->owner->enable_state = bp_disabled;
1081 /* We've already printed an error message if there was a problem
1082 inserting this catchpoint, and we've disabled the catchpoint,
1083 so just return success. */
1090 /* insert_breakpoints is used when starting or continuing the program.
1091 remove_breakpoints is used when the program stops.
1092 Both return zero if successful,
1093 or an `errno' value if could not write the inferior. */
1096 insert_breakpoints (void)
1098 struct bp_location *b, *temp;
1099 int return_val = 0; /* return success code. */
1101 int disabled_breaks = 0;
1102 int hw_breakpoint_error = 0;
1103 int process_warning = 0;
1105 struct ui_file *tmp_error_stream = mem_fileopen ();
1106 make_cleanup_ui_file_delete (tmp_error_stream);
1108 /* Explicitly mark the warning -- this will only be printed if
1109 there was an error. */
1110 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
1112 ALL_BP_LOCATIONS_SAFE (b, temp)
1114 /* Permanent breakpoints cannot be inserted or removed. Disabled
1115 breakpoints should not be inserted. */
1116 if (!breakpoint_enabled (b->owner))
1119 /* FIXME drow/2003-10-07: This code should be pushed elsewhere when
1120 hardware watchpoints are split into multiple loc breakpoints. */
1121 if ((b->loc_type == bp_loc_hardware_watchpoint
1122 || b->owner->type == bp_watchpoint) && !b->owner->val)
1125 val = evaluate_expression (b->owner->exp);
1126 release_value (val);
1127 if (value_lazy (val))
1128 value_fetch_lazy (val);
1129 b->owner->val = val;
1132 val = insert_bp_location (b, tmp_error_stream,
1133 &disabled_breaks, &process_warning,
1134 &hw_breakpoint_error);
1141 /* If a hardware breakpoint or watchpoint was inserted, add a
1142 message about possibly exhausted resources. */
1143 if (hw_breakpoint_error)
1145 fprintf_unfiltered (tmp_error_stream,
1146 "Could not insert hardware breakpoints:\n\
1147 You may have requested too many hardware breakpoints/watchpoints.\n");
1149 #ifdef ONE_PROCESS_WRITETEXT
1150 if (process_warning)
1151 fprintf_unfiltered (tmp_error_stream,
1152 "The same program may be running in another process.");
1154 target_terminal_ours_for_output ();
1155 error_stream (tmp_error_stream);
1161 remove_breakpoints (void)
1163 struct bp_location *b;
1166 ALL_BP_LOCATIONS (b)
1170 val = remove_breakpoint (b, mark_uninserted);
1179 remove_hw_watchpoints (void)
1181 struct bp_location *b;
1184 ALL_BP_LOCATIONS (b)
1186 if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
1188 val = remove_breakpoint (b, mark_uninserted);
1197 reattach_breakpoints (int pid)
1199 struct bp_location *b;
1201 struct cleanup *old_chain = save_inferior_ptid ();
1203 /* Set inferior_ptid; remove_breakpoint uses this global. */
1204 inferior_ptid = pid_to_ptid (pid);
1205 ALL_BP_LOCATIONS (b)
1209 remove_breakpoint (b, mark_inserted);
1210 if (b->loc_type == bp_loc_hardware_breakpoint)
1211 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
1213 val = target_insert_breakpoint (b->address, b->shadow_contents);
1214 /* FIXME drow/2003-10-07: This doesn't handle any other kinds of
1215 breakpoints. It's wrong for watchpoints, for example. */
1218 do_cleanups (old_chain);
1223 do_cleanups (old_chain);
1228 update_breakpoints_after_exec (void)
1230 struct breakpoint *b;
1231 struct breakpoint *temp;
1233 /* Doing this first prevents the badness of having delete_breakpoint()
1234 write a breakpoint's current "shadow contents" to lift the bp. That
1235 shadow is NOT valid after an exec()! */
1236 mark_breakpoints_out ();
1238 ALL_BREAKPOINTS_SAFE (b, temp)
1240 /* Solib breakpoints must be explicitly reset after an exec(). */
1241 if (b->type == bp_shlib_event)
1243 delete_breakpoint (b);
1247 /* Thread event breakpoints must be set anew after an exec(),
1248 as must overlay event breakpoints. */
1249 if (b->type == bp_thread_event || b->type == bp_overlay_event)
1251 delete_breakpoint (b);
1255 /* Step-resume breakpoints are meaningless after an exec(). */
1256 if (b->type == bp_step_resume)
1258 delete_breakpoint (b);
1262 /* Ditto the sigtramp handler breakpoints. */
1263 if (b->type == bp_through_sigtramp)
1265 delete_breakpoint (b);
1269 /* Ditto the exception-handling catchpoints. */
1270 if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
1272 delete_breakpoint (b);
1276 /* Don't delete an exec catchpoint, because else the inferior
1277 won't stop when it ought!
1279 Similarly, we probably ought to keep vfork catchpoints, 'cause
1280 on this target, we may not be able to stop when the vfork is
1281 seen, but only when the subsequent exec is seen. (And because
1282 deleting fork catchpoints here but not vfork catchpoints will
1283 seem mysterious to users, keep those too.)
1285 ??rehrauer: Let's hope that merely clearing out this catchpoint's
1286 target address field, if any, is sufficient to have it be reset
1287 automagically. Certainly on HP-UX that's true.
1290 valid code address on some platforms (like the mn10300
1291 simulators). We shouldn't assign any special interpretation to
1292 a breakpoint with a zero address. And in fact, GDB doesn't ---
1293 I can't see what that comment above is talking about. As far
1294 as I can tell, setting the address of a
1295 bp_catch_exec/bp_catch_vfork/bp_catch_fork breakpoint to zero
1296 is meaningless, since those are implemented with HP-UX kernel
1297 hackery, not by storing breakpoint instructions somewhere. */
1298 if ((b->type == bp_catch_exec) ||
1299 (b->type == bp_catch_vfork) ||
1300 (b->type == bp_catch_fork))
1302 b->loc->address = (CORE_ADDR) NULL;
1306 /* bp_finish is a special case. The only way we ought to be able
1307 to see one of these when an exec() has happened, is if the user
1308 caught a vfork, and then said "finish". Ordinarily a finish just
1309 carries them to the call-site of the current callee, by setting
1310 a temporary bp there and resuming. But in this case, the finish
1311 will carry them entirely through the vfork & exec.
1313 We don't want to allow a bp_finish to remain inserted now. But
1314 we can't safely delete it, 'cause finish_command has a handle to
1315 the bp on a bpstat, and will later want to delete it. There's a
1316 chance (and I've seen it happen) that if we delete the bp_finish
1317 here, that its storage will get reused by the time finish_command
1318 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1319 We really must allow finish_command to delete a bp_finish.
1321 In the absense of a general solution for the "how do we know
1322 it's safe to delete something others may have handles to?"
1323 problem, what we'll do here is just uninsert the bp_finish, and
1324 let finish_command delete it.
1326 (We know the bp_finish is "doomed" in the sense that it's
1327 momentary, and will be deleted as soon as finish_command sees
1328 the inferior stopped. So it doesn't matter that the bp's
1329 address is probably bogus in the new a.out, unlike e.g., the
1330 solib breakpoints.) */
1332 if (b->type == bp_finish)
1337 /* Without a symbolic address, we have little hope of the
1338 pre-exec() address meaning the same thing in the post-exec()
1340 if (b->addr_string == NULL)
1342 delete_breakpoint (b);
1346 /* If this breakpoint has survived the above battery of checks, then
1347 it must have a symbolic address. Be sure that it gets reevaluated
1348 to a target address, rather than reusing the old evaluation.
1351 for bp_catch_exec and friends, I'm pretty sure this is entirely
1352 unnecessary. A call to breakpoint_re_set_one always recomputes
1353 the breakpoint's address from scratch, or deletes it if it can't.
1354 So I think this assignment could be deleted without effect. */
1355 b->loc->address = (CORE_ADDR) NULL;
1357 /* FIXME what about longjmp breakpoints? Re-create them here? */
1358 create_overlay_event_breakpoint ("_ovly_debug_event");
1362 detach_breakpoints (int pid)
1364 struct bp_location *b;
1366 struct cleanup *old_chain = save_inferior_ptid ();
1368 if (pid == PIDGET (inferior_ptid))
1369 error (_("Cannot detach breakpoints of inferior_ptid"));
1371 /* Set inferior_ptid; remove_breakpoint uses this global. */
1372 inferior_ptid = pid_to_ptid (pid);
1373 ALL_BP_LOCATIONS (b)
1377 val = remove_breakpoint (b, mark_inserted);
1380 do_cleanups (old_chain);
1385 do_cleanups (old_chain);
1390 remove_breakpoint (struct bp_location *b, insertion_state_t is)
1394 if (b->owner->enable_state == bp_permanent)
1395 /* Permanent breakpoints cannot be inserted or removed. */
1398 if (b->owner->type == bp_none)
1399 warning (_("attempted to remove apparently deleted breakpoint #%d?"),
1402 if (b->loc_type == bp_loc_software_breakpoint
1403 || b->loc_type == bp_loc_hardware_breakpoint)
1405 /* "Normal" instruction breakpoint: either the standard
1406 trap-instruction bp (bp_breakpoint), or a
1407 bp_hardware_breakpoint. */
1409 /* First check to see if we have to handle an overlay. */
1410 if (overlay_debugging == ovly_off
1411 || b->section == NULL
1412 || !(section_is_overlay (b->section)))
1414 /* No overlay handling: just remove the breakpoint. */
1416 if (b->loc_type == bp_loc_hardware_breakpoint)
1417 val = target_remove_hw_breakpoint (b->address,
1418 b->shadow_contents);
1420 val = target_remove_breakpoint (b->address, b->shadow_contents);
1424 /* This breakpoint is in an overlay section.
1425 Did we set a breakpoint at the LMA? */
1426 if (!overlay_events_enabled)
1428 /* Yes -- overlay event support is not active, so we
1429 should have set a breakpoint at the LMA. Remove it.
1431 CORE_ADDR addr = overlay_unmapped_address (b->address,
1433 /* Ignore any failures: if the LMA is in ROM, we will
1434 have already warned when we failed to insert it. */
1435 if (b->loc_type == bp_loc_hardware_breakpoint)
1436 target_remove_hw_breakpoint (addr, b->shadow_contents);
1438 target_remove_breakpoint (addr, b->shadow_contents);
1440 /* Did we set a breakpoint at the VMA?
1441 If so, we will have marked the breakpoint 'inserted'. */
1444 /* Yes -- remove it. Previously we did not bother to
1445 remove the breakpoint if the section had been
1446 unmapped, but let's not rely on that being safe. We
1447 don't know what the overlay manager might do. */
1448 if (b->loc_type == bp_loc_hardware_breakpoint)
1449 val = target_remove_hw_breakpoint (b->address,
1450 b->shadow_contents);
1452 val = target_remove_breakpoint (b->address,
1453 b->shadow_contents);
1457 /* No -- not inserted, so no need to remove. No error. */
1463 b->inserted = (is == mark_inserted);
1465 else if (b->loc_type == bp_loc_hardware_watchpoint
1466 && breakpoint_enabled (b->owner)
1472 b->inserted = (is == mark_inserted);
1473 /* Walk down the saved value chain. */
1474 for (v = b->owner->val_chain; v; v = value_next (v))
1476 /* For each memory reference remove the watchpoint
1478 if (VALUE_LVAL (v) == lval_memory
1479 && ! value_lazy (v))
1481 struct type *vtype = check_typedef (value_type (v));
1483 if (v == b->owner->val_chain
1484 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1485 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1490 addr = VALUE_ADDRESS (v) + value_offset (v);
1491 len = TYPE_LENGTH (value_type (v));
1493 if (b->owner->type == bp_read_watchpoint)
1495 else if (b->owner->type == bp_access_watchpoint)
1498 val = target_remove_watchpoint (addr, len, type);
1505 /* Failure to remove any of the hardware watchpoints comes here. */
1506 if ((is == mark_uninserted) && (b->inserted))
1507 warning (_("Could not remove hardware watchpoint %d."),
1510 else if ((b->owner->type == bp_catch_fork ||
1511 b->owner->type == bp_catch_vfork ||
1512 b->owner->type == bp_catch_exec)
1513 && breakpoint_enabled (b->owner)
1517 switch (b->owner->type)
1520 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
1522 case bp_catch_vfork:
1523 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
1526 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
1529 warning (_("Internal error, %s line %d."), __FILE__, __LINE__);
1534 b->inserted = (is == mark_inserted);
1536 else if ((b->owner->type == bp_catch_catch ||
1537 b->owner->type == bp_catch_throw)
1538 && breakpoint_enabled (b->owner)
1542 val = target_remove_breakpoint (b->address, b->shadow_contents);
1545 b->inserted = (is == mark_inserted);
1547 else if (ep_is_exception_catchpoint (b->owner)
1548 && b->inserted /* sometimes previous insert doesn't happen */
1549 && breakpoint_enabled (b->owner)
1553 val = target_remove_breakpoint (b->address, b->shadow_contents);
1557 b->inserted = (is == mark_inserted);
1563 /* Clear the "inserted" flag in all breakpoints. */
1566 mark_breakpoints_out (void)
1568 struct bp_location *bpt;
1570 ALL_BP_LOCATIONS (bpt)
1574 /* Clear the "inserted" flag in all breakpoints and delete any
1575 breakpoints which should go away between runs of the program.
1577 Plus other such housekeeping that has to be done for breakpoints
1580 Note: this function gets called at the end of a run (by
1581 generic_mourn_inferior) and when a run begins (by
1582 init_wait_for_inferior). */
1587 breakpoint_init_inferior (enum inf_context context)
1589 struct breakpoint *b, *temp;
1590 struct bp_location *bpt;
1591 static int warning_needed = 0;
1593 ALL_BP_LOCATIONS (bpt)
1596 ALL_BREAKPOINTS_SAFE (b, temp)
1601 case bp_watchpoint_scope:
1603 /* If the call dummy breakpoint is at the entry point it will
1604 cause problems when the inferior is rerun, so we better
1607 Also get rid of scope breakpoints. */
1608 delete_breakpoint (b);
1612 case bp_hardware_watchpoint:
1613 case bp_read_watchpoint:
1614 case bp_access_watchpoint:
1616 /* Likewise for watchpoints on local expressions. */
1617 if (b->exp_valid_block != NULL)
1618 delete_breakpoint (b);
1619 if (context == inf_starting)
1621 /* Reset val field to force reread of starting value
1622 in insert_breakpoints. */
1624 value_free (b->val);
1629 /* Likewise for exception catchpoints in dynamic-linked
1630 executables where required */
1631 if (ep_is_exception_catchpoint (b)
1632 && deprecated_exception_catchpoints_are_fragile)
1635 delete_breakpoint (b);
1641 if (deprecated_exception_catchpoints_are_fragile)
1642 deprecated_exception_support_initialized = 0;
1644 /* Don't issue the warning unless it's really needed... */
1645 if (warning_needed && (context != inf_exited))
1647 warning (_("Exception catchpoints from last run were deleted.\n"
1648 "You must reinsert them explicitly."));
1653 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1654 exists at PC. It returns ordinary_breakpoint_here if it's an
1655 ordinary breakpoint, or permanent_breakpoint_here if it's a
1656 permanent breakpoint.
1657 - When continuing from a location with an ordinary breakpoint, we
1658 actually single step once before calling insert_breakpoints.
1659 - When continuing from a localion with a permanent breakpoint, we
1660 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1661 the target, to advance the PC past the breakpoint. */
1663 enum breakpoint_here
1664 breakpoint_here_p (CORE_ADDR pc)
1666 struct bp_location *bpt;
1667 int any_breakpoint_here = 0;
1669 ALL_BP_LOCATIONS (bpt)
1671 if (bpt->loc_type != bp_loc_software_breakpoint
1672 && bpt->loc_type != bp_loc_hardware_breakpoint)
1675 if ((breakpoint_enabled (bpt->owner)
1676 || bpt->owner->enable_state == bp_permanent)
1677 && bpt->address == pc) /* bp is enabled and matches pc */
1679 if (overlay_debugging
1680 && section_is_overlay (bpt->section)
1681 && !section_is_mapped (bpt->section))
1682 continue; /* unmapped overlay -- can't be a match */
1683 else if (bpt->owner->enable_state == bp_permanent)
1684 return permanent_breakpoint_here;
1686 any_breakpoint_here = 1;
1690 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1694 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1695 but it only returns true if there is actually a breakpoint inserted
1699 breakpoint_inserted_here_p (CORE_ADDR pc)
1701 struct bp_location *bpt;
1703 ALL_BP_LOCATIONS (bpt)
1705 if (bpt->loc_type != bp_loc_software_breakpoint
1706 && bpt->loc_type != bp_loc_hardware_breakpoint)
1710 && bpt->address == pc) /* bp is inserted and matches pc */
1712 if (overlay_debugging
1713 && section_is_overlay (bpt->section)
1714 && !section_is_mapped (bpt->section))
1715 continue; /* unmapped overlay -- can't be a match */
1724 /* This function returns non-zero iff there is a software breakpoint
1728 software_breakpoint_inserted_here_p (CORE_ADDR pc)
1730 struct bp_location *bpt;
1731 int any_breakpoint_here = 0;
1733 ALL_BP_LOCATIONS (bpt)
1735 if (bpt->loc_type != bp_loc_software_breakpoint)
1738 if ((breakpoint_enabled (bpt->owner)
1739 || bpt->owner->enable_state == bp_permanent)
1741 && bpt->address == pc) /* bp is enabled and matches pc */
1743 if (overlay_debugging
1744 && section_is_overlay (bpt->section)
1745 && !section_is_mapped (bpt->section))
1746 continue; /* unmapped overlay -- can't be a match */
1755 /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
1756 PC is valid for process/thread PTID. */
1759 breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
1761 struct bp_location *bpt;
1764 thread = pid_to_thread_id (ptid);
1766 ALL_BP_LOCATIONS (bpt)
1768 if (bpt->loc_type != bp_loc_software_breakpoint
1769 && bpt->loc_type != bp_loc_hardware_breakpoint)
1772 if ((breakpoint_enabled (bpt->owner)
1773 || bpt->owner->enable_state == bp_permanent)
1774 && bpt->address == pc
1775 && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
1777 if (overlay_debugging
1778 && section_is_overlay (bpt->section)
1779 && !section_is_mapped (bpt->section))
1780 continue; /* unmapped overlay -- can't be a match */
1790 /* bpstat stuff. External routines' interfaces are documented
1794 ep_is_catchpoint (struct breakpoint *ep)
1797 (ep->type == bp_catch_load)
1798 || (ep->type == bp_catch_unload)
1799 || (ep->type == bp_catch_fork)
1800 || (ep->type == bp_catch_vfork)
1801 || (ep->type == bp_catch_exec)
1802 || (ep->type == bp_catch_catch)
1803 || (ep->type == bp_catch_throw);
1805 /* ??rehrauer: Add more kinds here, as are implemented... */
1809 ep_is_shlib_catchpoint (struct breakpoint *ep)
1812 (ep->type == bp_catch_load)
1813 || (ep->type == bp_catch_unload);
1817 ep_is_exception_catchpoint (struct breakpoint *ep)
1820 (ep->type == bp_catch_catch)
1821 || (ep->type == bp_catch_throw);
1824 /* Clear a bpstat so that it says we are not at any breakpoint.
1825 Also free any storage that is part of a bpstat. */
1828 bpstat_clear (bpstat *bsp)
1839 if (p->old_val != NULL)
1840 value_free (p->old_val);
1841 free_command_lines (&p->commands);
1848 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1849 is part of the bpstat is copied as well. */
1852 bpstat_copy (bpstat bs)
1856 bpstat retval = NULL;
1861 for (; bs != NULL; bs = bs->next)
1863 tmp = (bpstat) xmalloc (sizeof (*tmp));
1864 memcpy (tmp, bs, sizeof (*tmp));
1865 if (bs->commands != NULL)
1866 tmp->commands = copy_command_lines (bs->commands);
1867 if (bs->old_val != NULL)
1868 tmp->old_val = value_copy (bs->old_val);
1871 /* This is the first thing in the chain. */
1881 /* Find the bpstat associated with this breakpoint */
1884 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
1889 for (; bsp != NULL; bsp = bsp->next)
1891 if (bsp->breakpoint_at == breakpoint)
1897 /* Find a step_resume breakpoint associated with this bpstat.
1898 (If there are multiple step_resume bp's on the list, this function
1899 will arbitrarily pick one.)
1901 It is an error to use this function if BPSTAT doesn't contain a
1902 step_resume breakpoint.
1904 See wait_for_inferior's use of this function. */
1906 bpstat_find_step_resume_breakpoint (bpstat bsp)
1910 gdb_assert (bsp != NULL);
1912 current_thread = pid_to_thread_id (inferior_ptid);
1914 for (; bsp != NULL; bsp = bsp->next)
1916 if ((bsp->breakpoint_at != NULL) &&
1917 (bsp->breakpoint_at->type == bp_step_resume) &&
1918 (bsp->breakpoint_at->thread == current_thread ||
1919 bsp->breakpoint_at->thread == -1))
1920 return bsp->breakpoint_at;
1923 internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found."));
1927 /* Return the breakpoint number of the first breakpoint we are stopped
1928 at. *BSP upon return is a bpstat which points to the remaining
1929 breakpoints stopped at (but which is not guaranteed to be good for
1930 anything but further calls to bpstat_num).
1931 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1934 bpstat_num (bpstat *bsp)
1936 struct breakpoint *b;
1939 return 0; /* No more breakpoint values */
1942 b = (*bsp)->breakpoint_at;
1943 *bsp = (*bsp)->next;
1945 return -1; /* breakpoint that's been deleted since */
1947 return b->number; /* We have its number */
1951 /* Modify BS so that the actions will not be performed. */
1954 bpstat_clear_actions (bpstat bs)
1956 for (; bs != NULL; bs = bs->next)
1958 free_command_lines (&bs->commands);
1959 if (bs->old_val != NULL)
1961 value_free (bs->old_val);
1967 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1969 cleanup_executing_breakpoints (void *ignore)
1971 executing_breakpoint_commands = 0;
1974 /* Execute all the commands associated with all the breakpoints at this
1975 location. Any of these commands could cause the process to proceed
1976 beyond this point, etc. We look out for such changes by checking
1977 the global "breakpoint_proceeded" after each command. */
1980 bpstat_do_actions (bpstat *bsp)
1983 struct cleanup *old_chain;
1985 /* Avoid endless recursion if a `source' command is contained
1987 if (executing_breakpoint_commands)
1990 executing_breakpoint_commands = 1;
1991 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
1994 /* Note that (as of this writing), our callers all appear to
1995 be passing us the address of global stop_bpstat. And, if
1996 our calls to execute_control_command cause the inferior to
1997 proceed, that global (and hence, *bsp) will change.
1999 We must be careful to not touch *bsp unless the inferior
2000 has not proceeded. */
2002 /* This pointer will iterate over the list of bpstat's. */
2005 breakpoint_proceeded = 0;
2006 for (; bs != NULL; bs = bs->next)
2008 struct command_line *cmd;
2009 struct cleanup *this_cmd_tree_chain;
2011 /* Take ownership of the BSP's command tree, if it has one.
2013 The command tree could legitimately contain commands like
2014 'step' and 'next', which call clear_proceed_status, which
2015 frees stop_bpstat's command tree. To make sure this doesn't
2016 free the tree we're executing out from under us, we need to
2017 take ownership of the tree ourselves. Since a given bpstat's
2018 commands are only executed once, we don't need to copy it; we
2019 can clear the pointer in the bpstat, and make sure we free
2020 the tree when we're done. */
2023 this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
2027 execute_control_command (cmd);
2029 if (breakpoint_proceeded)
2035 /* We can free this command tree now. */
2036 do_cleanups (this_cmd_tree_chain);
2038 if (breakpoint_proceeded)
2039 /* The inferior is proceeded by the command; bomb out now.
2040 The bpstat chain has been blown away by wait_for_inferior.
2041 But since execution has stopped again, there is a new bpstat
2042 to look at, so start over. */
2045 do_cleanups (old_chain);
2048 /* This is the normal print function for a bpstat. In the future,
2049 much of this logic could (should?) be moved to bpstat_stop_status,
2050 by having it set different print_it values.
2052 Current scheme: When we stop, bpstat_print() is called. It loops
2053 through the bpstat list of things causing this stop, calling the
2054 print_bp_stop_message function on each one. The behavior of the
2055 print_bp_stop_message function depends on the print_it field of
2056 bpstat. If such field so indicates, call this function here.
2058 Return values from this routine (ultimately used by bpstat_print()
2059 and normal_stop() to decide what to do):
2060 PRINT_NOTHING: Means we already printed all we needed to print,
2061 don't print anything else.
2062 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
2063 that something to be followed by a location.
2064 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
2065 that something to be followed by a location.
2066 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
2069 static enum print_stop_action
2070 print_it_typical (bpstat bs)
2072 struct cleanup *old_chain, *ui_out_chain;
2073 struct ui_stream *stb;
2074 stb = ui_out_stream_new (uiout);
2075 old_chain = make_cleanup_ui_out_stream_delete (stb);
2076 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
2077 which has since been deleted. */
2078 if (bs->breakpoint_at == NULL)
2079 return PRINT_UNKNOWN;
2081 switch (bs->breakpoint_at->type)
2084 case bp_hardware_breakpoint:
2085 if (bs->breakpoint_at->loc->address != bs->breakpoint_at->loc->requested_address)
2086 breakpoint_adjustment_warning (bs->breakpoint_at->loc->requested_address,
2087 bs->breakpoint_at->loc->address,
2088 bs->breakpoint_at->number, 1);
2089 annotate_breakpoint (bs->breakpoint_at->number);
2090 ui_out_text (uiout, "\nBreakpoint ");
2091 if (ui_out_is_mi_like_p (uiout))
2092 ui_out_field_string (uiout, "reason", "breakpoint-hit");
2093 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
2094 ui_out_text (uiout, ", ");
2095 return PRINT_SRC_AND_LOC;
2098 case bp_shlib_event:
2099 /* Did we stop because the user set the stop_on_solib_events
2100 variable? (If so, we report this as a generic, "Stopped due
2101 to shlib event" message.) */
2102 printf_filtered (_("Stopped due to shared library event\n"));
2103 return PRINT_NOTHING;
2106 case bp_thread_event:
2107 /* Not sure how we will get here.
2108 GDB should not stop for these breakpoints. */
2109 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
2110 return PRINT_NOTHING;
2113 case bp_overlay_event:
2114 /* By analogy with the thread event, GDB should not stop for these. */
2115 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
2116 return PRINT_NOTHING;
2120 annotate_catchpoint (bs->breakpoint_at->number);
2121 printf_filtered (_("\nCatchpoint %d (loaded %s), "),
2122 bs->breakpoint_at->number,
2123 bs->breakpoint_at->triggered_dll_pathname);
2124 return PRINT_SRC_AND_LOC;
2127 case bp_catch_unload:
2128 annotate_catchpoint (bs->breakpoint_at->number);
2129 printf_filtered (_("\nCatchpoint %d (unloaded %s), "),
2130 bs->breakpoint_at->number,
2131 bs->breakpoint_at->triggered_dll_pathname);
2132 return PRINT_SRC_AND_LOC;
2136 annotate_catchpoint (bs->breakpoint_at->number);
2137 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
2138 bs->breakpoint_at->number,
2139 bs->breakpoint_at->forked_inferior_pid);
2140 return PRINT_SRC_AND_LOC;
2143 case bp_catch_vfork:
2144 annotate_catchpoint (bs->breakpoint_at->number);
2145 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
2146 bs->breakpoint_at->number,
2147 bs->breakpoint_at->forked_inferior_pid);
2148 return PRINT_SRC_AND_LOC;
2152 annotate_catchpoint (bs->breakpoint_at->number);
2153 printf_filtered (_("\nCatchpoint %d (exec'd %s), "),
2154 bs->breakpoint_at->number,
2155 bs->breakpoint_at->exec_pathname);
2156 return PRINT_SRC_AND_LOC;
2159 case bp_catch_catch:
2160 if (current_exception_event &&
2161 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
2163 annotate_catchpoint (bs->breakpoint_at->number);
2164 printf_filtered (_("\nCatchpoint %d (exception caught), "),
2165 bs->breakpoint_at->number);
2166 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2167 printf_filtered (_("throw location %s:%d, "),
2168 CURRENT_EXCEPTION_THROW_FILE,
2169 CURRENT_EXCEPTION_THROW_LINE);
2171 printf_filtered (_("throw location unknown, "));
2173 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2174 printf_filtered (_("catch location %s:%d\n"),
2175 CURRENT_EXCEPTION_CATCH_FILE,
2176 CURRENT_EXCEPTION_CATCH_LINE);
2178 printf_filtered (_("catch location unknown\n"));
2180 /* don't bother to print location frame info */
2181 return PRINT_SRC_ONLY;
2185 /* really throw, some other bpstat will handle it */
2186 return PRINT_UNKNOWN;
2190 case bp_catch_throw:
2191 if (current_exception_event &&
2192 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2194 annotate_catchpoint (bs->breakpoint_at->number);
2195 printf_filtered (_("\nCatchpoint %d (exception thrown), "),
2196 bs->breakpoint_at->number);
2197 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2198 printf_filtered (_("throw location %s:%d, "),
2199 CURRENT_EXCEPTION_THROW_FILE,
2200 CURRENT_EXCEPTION_THROW_LINE);
2202 printf_filtered (_("throw location unknown, "));
2204 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2205 printf_filtered (_("catch location %s:%d\n"),
2206 CURRENT_EXCEPTION_CATCH_FILE,
2207 CURRENT_EXCEPTION_CATCH_LINE);
2209 printf_filtered (_("catch location unknown\n"));
2211 /* don't bother to print location frame info */
2212 return PRINT_SRC_ONLY;
2216 /* really catch, some other bpstat will handle it */
2217 return PRINT_UNKNOWN;
2222 case bp_hardware_watchpoint:
2223 if (bs->old_val != NULL)
2225 annotate_watchpoint (bs->breakpoint_at->number);
2226 if (ui_out_is_mi_like_p (uiout))
2227 ui_out_field_string (uiout, "reason", "watchpoint-trigger");
2228 mention (bs->breakpoint_at);
2229 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2230 ui_out_text (uiout, "\nOld value = ");
2231 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2232 ui_out_field_stream (uiout, "old", stb);
2233 ui_out_text (uiout, "\nNew value = ");
2234 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2235 ui_out_field_stream (uiout, "new", stb);
2236 do_cleanups (ui_out_chain);
2237 ui_out_text (uiout, "\n");
2238 value_free (bs->old_val);
2241 /* More than one watchpoint may have been triggered. */
2242 return PRINT_UNKNOWN;
2245 case bp_read_watchpoint:
2246 if (ui_out_is_mi_like_p (uiout))
2247 ui_out_field_string (uiout, "reason", "read-watchpoint-trigger");
2248 mention (bs->breakpoint_at);
2249 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2250 ui_out_text (uiout, "\nValue = ");
2251 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2252 ui_out_field_stream (uiout, "value", stb);
2253 do_cleanups (ui_out_chain);
2254 ui_out_text (uiout, "\n");
2255 return PRINT_UNKNOWN;
2258 case bp_access_watchpoint:
2259 if (bs->old_val != NULL)
2261 annotate_watchpoint (bs->breakpoint_at->number);
2262 if (ui_out_is_mi_like_p (uiout))
2263 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2264 mention (bs->breakpoint_at);
2265 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2266 ui_out_text (uiout, "\nOld value = ");
2267 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2268 ui_out_field_stream (uiout, "old", stb);
2269 value_free (bs->old_val);
2271 ui_out_text (uiout, "\nNew value = ");
2275 mention (bs->breakpoint_at);
2276 if (ui_out_is_mi_like_p (uiout))
2277 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2278 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2279 ui_out_text (uiout, "\nValue = ");
2281 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2282 ui_out_field_stream (uiout, "new", stb);
2283 do_cleanups (ui_out_chain);
2284 ui_out_text (uiout, "\n");
2285 return PRINT_UNKNOWN;
2288 /* Fall through, we don't deal with these types of breakpoints
2292 if (ui_out_is_mi_like_p (uiout))
2293 ui_out_field_string (uiout, "reason", "function-finished");
2294 return PRINT_UNKNOWN;
2298 if (ui_out_is_mi_like_p (uiout))
2299 ui_out_field_string (uiout, "reason", "location-reached");
2300 return PRINT_UNKNOWN;
2305 case bp_longjmp_resume:
2306 case bp_step_resume:
2307 case bp_through_sigtramp:
2308 case bp_watchpoint_scope:
2311 return PRINT_UNKNOWN;
2315 /* Generic routine for printing messages indicating why we
2316 stopped. The behavior of this function depends on the value
2317 'print_it' in the bpstat structure. Under some circumstances we
2318 may decide not to print anything here and delegate the task to
2321 static enum print_stop_action
2322 print_bp_stop_message (bpstat bs)
2324 switch (bs->print_it)
2327 /* Nothing should be printed for this bpstat entry. */
2328 return PRINT_UNKNOWN;
2332 /* We still want to print the frame, but we already printed the
2333 relevant messages. */
2334 return PRINT_SRC_AND_LOC;
2337 case print_it_normal:
2338 /* Normal case. Call the breakpoint's print_it method, or
2339 print_it_typical. */
2340 if (bs->breakpoint_at != NULL && bs->breakpoint_at->ops != NULL
2341 && bs->breakpoint_at->ops->print_it != NULL)
2342 return bs->breakpoint_at->ops->print_it (bs->breakpoint_at);
2344 return print_it_typical (bs);
2348 internal_error (__FILE__, __LINE__,
2349 _("print_bp_stop_message: unrecognized enum value"));
2354 /* Print a message indicating what happened. This is called from
2355 normal_stop(). The input to this routine is the head of the bpstat
2356 list - a list of the eventpoints that caused this stop. This
2357 routine calls the generic print routine for printing a message
2358 about reasons for stopping. This will print (for example) the
2359 "Breakpoint n," part of the output. The return value of this
2362 PRINT_UNKNOWN: Means we printed nothing
2363 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2364 code to print the location. An example is
2365 "Breakpoint 1, " which should be followed by
2367 PRINT_SRC_ONLY: Means we printed something, but there is no need
2368 to also print the location part of the message.
2369 An example is the catch/throw messages, which
2370 don't require a location appended to the end.
2371 PRINT_NOTHING: We have done some printing and we don't need any
2372 further info to be printed.*/
2374 enum print_stop_action
2375 bpstat_print (bpstat bs)
2379 /* Maybe another breakpoint in the chain caused us to stop.
2380 (Currently all watchpoints go on the bpstat whether hit or not.
2381 That probably could (should) be changed, provided care is taken
2382 with respect to bpstat_explains_signal). */
2383 for (; bs; bs = bs->next)
2385 val = print_bp_stop_message (bs);
2386 if (val == PRINT_SRC_ONLY
2387 || val == PRINT_SRC_AND_LOC
2388 || val == PRINT_NOTHING)
2392 /* We reached the end of the chain, or we got a null BS to start
2393 with and nothing was printed. */
2394 return PRINT_UNKNOWN;
2397 /* Evaluate the expression EXP and return 1 if value is zero.
2398 This is used inside a catch_errors to evaluate the breakpoint condition.
2399 The argument is a "struct expression *" that has been cast to char * to
2400 make it pass through catch_errors. */
2403 breakpoint_cond_eval (void *exp)
2405 struct value *mark = value_mark ();
2406 int i = !value_true (evaluate_expression ((struct expression *) exp));
2407 value_free_to_mark (mark);
2411 /* Allocate a new bpstat and chain it to the current one. */
2414 bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
2418 bs = (bpstat) xmalloc (sizeof (*bs));
2420 bs->breakpoint_at = b;
2421 /* If the condition is false, etc., don't do the commands. */
2422 bs->commands = NULL;
2424 bs->print_it = print_it_normal;
2428 /* Possible return values for watchpoint_check (this can't be an enum
2429 because of check_errors). */
2430 /* The watchpoint has been deleted. */
2431 #define WP_DELETED 1
2432 /* The value has changed. */
2433 #define WP_VALUE_CHANGED 2
2434 /* The value has not changed. */
2435 #define WP_VALUE_NOT_CHANGED 3
2437 #define BP_TEMPFLAG 1
2438 #define BP_HARDWAREFLAG 2
2440 /* Check watchpoint condition. */
2443 watchpoint_check (void *p)
2445 bpstat bs = (bpstat) p;
2446 struct breakpoint *b;
2447 struct frame_info *fr;
2448 int within_current_scope;
2450 b = bs->breakpoint_at;
2452 if (b->exp_valid_block == NULL)
2453 within_current_scope = 1;
2456 /* There is no current frame at this moment. If we're going to have
2457 any chance of handling watchpoints on local variables, we'll need
2458 the frame chain (so we can determine if we're in scope). */
2459 reinit_frame_cache ();
2460 fr = frame_find_by_id (b->watchpoint_frame);
2461 within_current_scope = (fr != NULL);
2462 /* in_function_epilogue_p() returns a non-zero value if we're still
2463 in the function but the stack frame has already been invalidated.
2464 Since we can't rely on the values of local variables after the
2465 stack has been destroyed, we are treating the watchpoint in that
2466 state as `not changed' without further checking.
2468 vinschen/2003-09-04: The former implementation left out the case
2469 that the watchpoint frame couldn't be found by frame_find_by_id()
2470 because the current PC is currently in an epilogue. Calling
2471 gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
2472 if ((!within_current_scope || fr == get_current_frame ())
2473 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2474 return WP_VALUE_NOT_CHANGED;
2475 if (fr && within_current_scope)
2476 /* If we end up stopping, the current frame will get selected
2477 in normal_stop. So this call to select_frame won't affect
2482 if (within_current_scope)
2484 /* We use value_{,free_to_}mark because it could be a
2485 *long* time before we return to the command level and
2486 call free_all_values. We can't call free_all_values because
2487 we might be in the middle of evaluating a function call. */
2489 struct value *mark = value_mark ();
2490 struct value *new_val = evaluate_expression (bs->breakpoint_at->exp);
2491 if (!value_equal (b->val, new_val))
2493 release_value (new_val);
2494 value_free_to_mark (mark);
2495 bs->old_val = b->val;
2497 /* We will stop here */
2498 return WP_VALUE_CHANGED;
2502 /* Nothing changed, don't do anything. */
2503 value_free_to_mark (mark);
2504 /* We won't stop here */
2505 return WP_VALUE_NOT_CHANGED;
2510 /* This seems like the only logical thing to do because
2511 if we temporarily ignored the watchpoint, then when
2512 we reenter the block in which it is valid it contains
2513 garbage (in the case of a function, it may have two
2514 garbage values, one before and one after the prologue).
2515 So we can't even detect the first assignment to it and
2516 watch after that (since the garbage may or may not equal
2517 the first value assigned). */
2518 /* We print all the stop information in print_it_typical(), but
2519 in this case, by the time we call print_it_typical() this bp
2520 will be deleted already. So we have no choice but print the
2521 information here. */
2522 if (ui_out_is_mi_like_p (uiout))
2523 ui_out_field_string (uiout, "reason", "watchpoint-scope");
2524 ui_out_text (uiout, "\nWatchpoint ");
2525 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2526 ui_out_text (uiout, " deleted because the program has left the block in\n\
2527 which its expression is valid.\n");
2529 if (b->related_breakpoint)
2530 b->related_breakpoint->disposition = disp_del_at_next_stop;
2531 b->disposition = disp_del_at_next_stop;
2537 /* Get a bpstat associated with having just stopped at address
2538 BP_ADDR in thread PTID. STOPPED_BY_WATCHPOINT is 1 if the
2539 target thinks we stopped due to a hardware watchpoint, 0 if we
2540 know we did not trigger a hardware watchpoint, and -1 if we do not know. */
2542 /* Determine whether we stopped at a breakpoint, etc, or whether we
2543 don't understand this stop. Result is a chain of bpstat's such that:
2545 if we don't understand the stop, the result is a null pointer.
2547 if we understand why we stopped, the result is not null.
2549 Each element of the chain refers to a particular breakpoint or
2550 watchpoint at which we have stopped. (We may have stopped for
2551 several reasons concurrently.)
2553 Each element of the chain has valid next, breakpoint_at,
2554 commands, FIXME??? fields. */
2557 bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid, int stopped_by_watchpoint)
2559 struct breakpoint *b, *temp;
2560 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2561 int real_breakpoint = 0;
2562 /* Root of the chain of bpstat's */
2563 struct bpstats root_bs[1];
2564 /* Pointer to the last thing in the chain currently. */
2565 bpstat bs = root_bs;
2566 int thread_id = pid_to_thread_id (ptid);
2568 ALL_BREAKPOINTS_SAFE (b, temp)
2570 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
2573 if (b->type != bp_watchpoint
2574 && b->type != bp_hardware_watchpoint
2575 && b->type != bp_read_watchpoint
2576 && b->type != bp_access_watchpoint
2577 && b->type != bp_hardware_breakpoint
2578 && b->type != bp_catch_fork
2579 && b->type != bp_catch_vfork
2580 && b->type != bp_catch_exec
2581 && b->type != bp_catch_catch
2582 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2584 if (b->loc->address != bp_addr) /* address doesn't match */
2586 if (overlay_debugging /* unmapped overlay section */
2587 && section_is_overlay (b->loc->section)
2588 && !section_is_mapped (b->loc->section))
2592 /* Continuable hardware watchpoints are treated as non-existent if the
2593 reason we stopped wasn't a hardware watchpoint (we didn't stop on
2594 some data address). Otherwise gdb won't stop on a break instruction
2595 in the code (not from a breakpoint) when a hardware watchpoint has
2598 if ((b->type == bp_hardware_watchpoint
2599 || b->type == bp_read_watchpoint
2600 || b->type == bp_access_watchpoint)
2601 && !stopped_by_watchpoint)
2604 if (b->type == bp_hardware_breakpoint)
2606 if (b->loc->address != bp_addr)
2608 if (overlay_debugging /* unmapped overlay section */
2609 && section_is_overlay (b->loc->section)
2610 && !section_is_mapped (b->loc->section))
2614 /* Is this a catchpoint of a load or unload? If so, did we
2615 get a load or unload of the specified library? If not,
2617 if ((b->type == bp_catch_load)
2618 #if defined(SOLIB_HAVE_LOAD_EVENT)
2619 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2620 || ((b->dll_pathname != NULL)
2621 && (strcmp (b->dll_pathname,
2622 SOLIB_LOADED_LIBRARY_PATHNAME (
2623 PIDGET (inferior_ptid)))
2629 if ((b->type == bp_catch_unload)
2630 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2631 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2632 || ((b->dll_pathname != NULL)
2633 && (strcmp (b->dll_pathname,
2634 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2635 PIDGET (inferior_ptid)))
2641 if ((b->type == bp_catch_fork)
2642 && !inferior_has_forked (PIDGET (inferior_ptid),
2643 &b->forked_inferior_pid))
2646 if ((b->type == bp_catch_vfork)
2647 && !inferior_has_vforked (PIDGET (inferior_ptid),
2648 &b->forked_inferior_pid))
2651 if ((b->type == bp_catch_exec)
2652 && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
2655 if (ep_is_exception_catchpoint (b) &&
2656 !(current_exception_event = target_get_current_exception_event ()))
2659 /* Come here if it's a watchpoint, or if the break address matches */
2661 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2663 /* Watchpoints may change this, if not found to have triggered. */
2667 if (b->type == bp_watchpoint ||
2668 b->type == bp_hardware_watchpoint)
2670 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2672 struct cleanup *cleanups = make_cleanup (xfree, message);
2673 int e = catch_errors (watchpoint_check, bs, message,
2675 do_cleanups (cleanups);
2679 /* We've already printed what needs to be printed. */
2680 /* Actually this is superfluous, because by the time we
2681 call print_it_typical() the wp will be already deleted,
2682 and the function will return immediately. */
2683 bs->print_it = print_it_done;
2686 case WP_VALUE_CHANGED:
2690 case WP_VALUE_NOT_CHANGED:
2692 bs->print_it = print_it_noop;
2699 /* Error from catch_errors. */
2700 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
2701 if (b->related_breakpoint)
2702 b->related_breakpoint->disposition = disp_del_at_next_stop;
2703 b->disposition = disp_del_at_next_stop;
2704 /* We've already printed what needs to be printed. */
2705 bs->print_it = print_it_done;
2711 else if (b->type == bp_read_watchpoint ||
2712 b->type == bp_access_watchpoint)
2718 if (!target_stopped_data_address (¤t_target, &addr))
2720 for (v = b->val_chain; v; v = value_next (v))
2722 if (VALUE_LVAL (v) == lval_memory
2723 && ! value_lazy (v))
2725 struct type *vtype = check_typedef (value_type (v));
2727 if (v == b->val_chain
2728 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2729 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2733 vaddr = VALUE_ADDRESS (v) + value_offset (v);
2734 /* Exact match not required. Within range is
2736 if (addr >= vaddr &&
2737 addr < vaddr + TYPE_LENGTH (value_type (v)))
2744 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2746 struct cleanup *cleanups = make_cleanup (xfree, message);
2747 int e = catch_errors (watchpoint_check, bs, message,
2749 do_cleanups (cleanups);
2753 /* We've already printed what needs to be printed. */
2754 bs->print_it = print_it_done;
2757 case WP_VALUE_CHANGED:
2758 if (b->type == bp_read_watchpoint)
2760 /* Don't stop: read watchpoints shouldn't fire if
2761 the value has changed. This is for targets
2762 which cannot set read-only watchpoints. */
2763 bs->print_it = print_it_noop;
2769 case WP_VALUE_NOT_CHANGED:
2776 /* Error from catch_errors. */
2777 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
2778 if (b->related_breakpoint)
2779 b->related_breakpoint->disposition = disp_del_at_next_stop;
2780 b->disposition = disp_del_at_next_stop;
2781 /* We've already printed what needs to be printed. */
2782 bs->print_it = print_it_done;
2786 else /* found == 0 */
2788 /* This is a case where some watchpoint(s) triggered,
2789 but not at the address of this watchpoint (FOUND
2790 was left zero). So don't print anything for this
2792 bs->print_it = print_it_noop;
2799 /* By definition, an encountered breakpoint is a triggered
2803 real_breakpoint = 1;
2806 if (frame_id_p (b->frame_id)
2807 && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
2811 int value_is_zero = 0;
2815 /* Need to select the frame, with all that implies
2816 so that the conditions will have the right context. */
2817 select_frame (get_current_frame ());
2819 = catch_errors (breakpoint_cond_eval, (b->cond),
2820 "Error in testing breakpoint condition:\n",
2822 /* FIXME-someday, should give breakpoint # */
2825 if (b->cond && value_is_zero)
2828 /* Don't consider this a hit. */
2831 else if (b->thread != -1 && b->thread != thread_id)
2834 /* Don't consider this a hit. */
2837 else if (b->ignore_count > 0)
2840 annotate_ignore_count_change ();
2845 /* We will stop here */
2846 if (b->disposition == disp_disable)
2847 b->enable_state = bp_disabled;
2850 bs->commands = b->commands;
2852 (strcmp ("silent", bs->commands->line) == 0
2853 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
2855 bs->commands = bs->commands->next;
2858 bs->commands = copy_command_lines (bs->commands);
2861 /* Print nothing for this entry if we dont stop or if we dont print. */
2862 if (bs->stop == 0 || bs->print == 0)
2863 bs->print_it = print_it_noop;
2866 bs->next = NULL; /* Terminate the chain */
2867 bs = root_bs->next; /* Re-grab the head of the chain */
2869 /* The value of a hardware watchpoint hasn't changed, but the
2870 intermediate memory locations we are watching may have. */
2871 if (bs && !bs->stop &&
2872 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2873 bs->breakpoint_at->type == bp_read_watchpoint ||
2874 bs->breakpoint_at->type == bp_access_watchpoint))
2876 remove_breakpoints ();
2877 insert_breakpoints ();
2882 /* Tell what to do about this bpstat. */
2884 bpstat_what (bpstat bs)
2886 /* Classify each bpstat as one of the following. */
2889 /* This bpstat element has no effect on the main_action. */
2892 /* There was a watchpoint, stop but don't print. */
2895 /* There was a watchpoint, stop and print. */
2898 /* There was a breakpoint but we're not stopping. */
2901 /* There was a breakpoint, stop but don't print. */
2904 /* There was a breakpoint, stop and print. */
2907 /* We hit the longjmp breakpoint. */
2910 /* We hit the longjmp_resume breakpoint. */
2913 /* We hit the step_resume breakpoint. */
2916 /* We hit the through_sigtramp breakpoint. */
2919 /* We hit the shared library event breakpoint. */
2922 /* We caught a shared library event. */
2925 /* This is just used to count how many enums there are. */
2929 /* Here is the table which drives this routine. So that we can
2930 format it pretty, we define some abbreviations for the
2931 enum bpstat_what codes. */
2932 #define kc BPSTAT_WHAT_KEEP_CHECKING
2933 #define ss BPSTAT_WHAT_STOP_SILENT
2934 #define sn BPSTAT_WHAT_STOP_NOISY
2935 #define sgl BPSTAT_WHAT_SINGLE
2936 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2937 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2938 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2939 #define sr BPSTAT_WHAT_STEP_RESUME
2940 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2941 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2942 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2944 /* "Can't happen." Might want to print an error message.
2945 abort() is not out of the question, but chances are GDB is just
2946 a bit confused, not unusable. */
2947 #define err BPSTAT_WHAT_STOP_NOISY
2949 /* Given an old action and a class, come up with a new action. */
2950 /* One interesting property of this table is that wp_silent is the same
2951 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2952 after stopping, the check for whether to step over a breakpoint
2953 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2954 reference to how we stopped. We retain separate wp_silent and
2955 bp_silent codes in case we want to change that someday.
2957 Another possibly interesting property of this table is that
2958 there's a partial ordering, priority-like, of the actions. Once
2959 you've decided that some action is appropriate, you'll never go
2960 back and decide something of a lower priority is better. The
2963 kc < clr sgl shl shlr slr sn sr ss ts
2964 sgl < clrs shl shlr slr sn sr ss ts
2965 slr < err shl shlr sn sr ss ts
2966 clr < clrs err shl shlr sn sr ss ts
2967 clrs < err shl shlr sn sr ss ts
2968 ss < shl shlr sn sr ts
2975 What I think this means is that we don't need a damned table
2976 here. If you just put the rows and columns in the right order,
2977 it'd look awfully regular. We could simply walk the bpstat list
2978 and choose the highest priority action we find, with a little
2979 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
2980 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
2981 is messy anyway). */
2983 /* step_resume entries: a step resume breakpoint overrides another
2984 breakpoint of signal handling (see comment in wait_for_inferior
2985 at where we set the step_resume breakpoint). */
2986 /* We handle the through_sigtramp_breakpoint the same way; having both
2987 one of those and a step_resume_breakpoint is probably very rare (?). */
2989 static const enum bpstat_what_main_action
2990 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
2993 /* kc ss sn sgl slr clr clrs sr ts shl shlr
2996 {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
2998 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3000 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3002 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
3004 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3006 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3008 {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr},
3010 {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
3012 {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
3014 {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
3016 {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
3018 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
3033 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
3034 struct bpstat_what retval;
3036 retval.call_dummy = 0;
3037 for (; bs != NULL; bs = bs->next)
3039 enum class bs_class = no_effect;
3040 if (bs->breakpoint_at == NULL)
3041 /* I suspect this can happen if it was a momentary breakpoint
3042 which has since been deleted. */
3044 switch (bs->breakpoint_at->type)
3050 case bp_hardware_breakpoint:
3056 bs_class = bp_noisy;
3058 bs_class = bp_silent;
3061 bs_class = bp_nostop;
3064 case bp_hardware_watchpoint:
3065 case bp_read_watchpoint:
3066 case bp_access_watchpoint:
3070 bs_class = wp_noisy;
3072 bs_class = wp_silent;
3075 /* There was a watchpoint, but we're not stopping.
3076 This requires no further action. */
3077 bs_class = no_effect;
3080 bs_class = long_jump;
3082 case bp_longjmp_resume:
3083 bs_class = long_resume;
3085 case bp_step_resume:
3088 bs_class = step_resume;
3091 /* It is for the wrong frame. */
3092 bs_class = bp_nostop;
3094 case bp_through_sigtramp:
3095 bs_class = through_sig;
3097 case bp_watchpoint_scope:
3098 bs_class = bp_nostop;
3100 case bp_shlib_event:
3101 bs_class = shlib_event;
3103 case bp_thread_event:
3104 case bp_overlay_event:
3105 bs_class = bp_nostop;
3108 case bp_catch_unload:
3109 /* Only if this catchpoint triggered should we cause the
3110 step-out-of-dld behaviour. Otherwise, we ignore this
3113 bs_class = catch_shlib_event;
3115 bs_class = no_effect;
3118 case bp_catch_vfork:
3123 bs_class = bp_noisy;
3125 bs_class = bp_silent;
3128 /* There was a catchpoint, but we're not stopping.
3129 This requires no further action. */
3130 bs_class = no_effect;
3132 case bp_catch_catch:
3133 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
3134 bs_class = bp_nostop;
3136 bs_class = bs->print ? bp_noisy : bp_silent;
3138 case bp_catch_throw:
3139 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
3140 bs_class = bp_nostop;
3142 bs_class = bs->print ? bp_noisy : bp_silent;
3145 /* Make sure the action is stop (silent or noisy),
3146 so infrun.c pops the dummy frame. */
3147 bs_class = bp_silent;
3148 retval.call_dummy = 1;
3151 current_action = table[(int) bs_class][(int) current_action];
3153 retval.main_action = current_action;
3157 /* Nonzero if we should step constantly (e.g. watchpoints on machines
3158 without hardware support). This isn't related to a specific bpstat,
3159 just to things like whether watchpoints are set. */
3162 bpstat_should_step (void)
3164 struct breakpoint *b;
3166 if (breakpoint_enabled (b) && b->type == bp_watchpoint)
3171 /* Nonzero if there are enabled hardware watchpoints. */
3173 bpstat_have_active_hw_watchpoints (void)
3175 struct bp_location *bpt;
3176 ALL_BP_LOCATIONS (bpt)
3177 if (breakpoint_enabled (bpt->owner)
3179 && bpt->loc_type == bp_loc_hardware_watchpoint)
3185 /* Given a bpstat that records zero or more triggered eventpoints, this
3186 function returns another bpstat which contains only the catchpoints
3187 on that first list, if any. */
3189 bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
3191 struct bpstats root_bs[1];
3192 bpstat bs = root_bs;
3193 struct breakpoint *ep;
3196 bpstat_clear (cp_list);
3197 root_bs->next = NULL;
3199 for (; ep_list != NULL; ep_list = ep_list->next)
3201 /* Is this eventpoint a catchpoint? If not, ignore it. */
3202 ep = ep_list->breakpoint_at;
3205 if ((ep->type != bp_catch_load) &&
3206 (ep->type != bp_catch_unload) &&
3207 (ep->type != bp_catch_catch) &&
3208 (ep->type != bp_catch_throw))
3209 /* pai: (temp) ADD fork/vfork here!! */
3212 /* Yes; add it to the list. */
3213 bs = bpstat_alloc (ep, bs);
3218 #if defined(SOLIB_ADD)
3219 /* Also, for each triggered catchpoint, tag it with the name of
3220 the library that caused this trigger. (We copy the name now,
3221 because it's only guaranteed to be available NOW, when the
3222 catchpoint triggers. Clients who may wish to know the name
3223 later must get it from the catchpoint itself.) */
3224 if (ep->triggered_dll_pathname != NULL)
3225 xfree (ep->triggered_dll_pathname);
3226 if (ep->type == bp_catch_load)
3227 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3228 PIDGET (inferior_ptid));
3230 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3231 PIDGET (inferior_ptid));
3233 dll_pathname = NULL;
3237 ep->triggered_dll_pathname = (char *)
3238 xmalloc (strlen (dll_pathname) + 1);
3239 strcpy (ep->triggered_dll_pathname, dll_pathname);
3242 ep->triggered_dll_pathname = NULL;
3248 /* Print B to gdb_stdout. */
3250 print_one_breakpoint (struct breakpoint *b,
3251 CORE_ADDR *last_addr)
3253 struct command_line *l;
3255 struct ep_type_description
3260 static struct ep_type_description bptypes[] =
3262 {bp_none, "?deleted?"},
3263 {bp_breakpoint, "breakpoint"},
3264 {bp_hardware_breakpoint, "hw breakpoint"},
3265 {bp_until, "until"},
3266 {bp_finish, "finish"},
3267 {bp_watchpoint, "watchpoint"},
3268 {bp_hardware_watchpoint, "hw watchpoint"},
3269 {bp_read_watchpoint, "read watchpoint"},
3270 {bp_access_watchpoint, "acc watchpoint"},
3271 {bp_longjmp, "longjmp"},
3272 {bp_longjmp_resume, "longjmp resume"},
3273 {bp_step_resume, "step resume"},
3274 {bp_through_sigtramp, "sigtramp"},
3275 {bp_watchpoint_scope, "watchpoint scope"},
3276 {bp_call_dummy, "call dummy"},
3277 {bp_shlib_event, "shlib events"},
3278 {bp_thread_event, "thread events"},
3279 {bp_overlay_event, "overlay events"},
3280 {bp_catch_load, "catch load"},
3281 {bp_catch_unload, "catch unload"},
3282 {bp_catch_fork, "catch fork"},
3283 {bp_catch_vfork, "catch vfork"},
3284 {bp_catch_exec, "catch exec"},
3285 {bp_catch_catch, "catch catch"},
3286 {bp_catch_throw, "catch throw"}
3289 static char *bpdisps[] =
3290 {"del", "dstp", "dis", "keep"};
3291 static char bpenables[] = "nynny";
3292 char wrap_indent[80];
3293 struct ui_stream *stb = ui_out_stream_new (uiout);
3294 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3295 struct cleanup *bkpt_chain;
3298 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
3302 ui_out_field_int (uiout, "number", b->number);
3306 if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3307 || ((int) b->type != bptypes[(int) b->type].type))
3308 internal_error (__FILE__, __LINE__,
3309 _("bptypes table does not describe type #%d."),
3311 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3315 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
3319 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
3320 ui_out_spaces (uiout, 2);
3323 strcpy (wrap_indent, " ");
3326 if (TARGET_ADDR_BIT <= 32)
3327 strcat (wrap_indent, " ");
3329 strcat (wrap_indent, " ");
3332 if (b->ops != NULL && b->ops->print_one != NULL)
3333 b->ops->print_one (b, last_addr);
3338 internal_error (__FILE__, __LINE__,
3339 _("print_one_breakpoint: bp_none encountered\n"));
3343 case bp_hardware_watchpoint:
3344 case bp_read_watchpoint:
3345 case bp_access_watchpoint:
3346 /* Field 4, the address, is omitted (which makes the columns
3347 not line up too nicely with the headers, but the effect
3348 is relatively readable). */
3350 ui_out_field_skip (uiout, "addr");
3352 print_expression (b->exp, stb->stream);
3353 ui_out_field_stream (uiout, "what", stb);
3357 case bp_catch_unload:
3358 /* Field 4, the address, is omitted (which makes the columns
3359 not line up too nicely with the headers, but the effect
3360 is relatively readable). */
3362 ui_out_field_skip (uiout, "addr");
3364 if (b->dll_pathname == NULL)
3366 ui_out_field_string (uiout, "what", "<any library>");
3367 ui_out_spaces (uiout, 1);
3371 ui_out_text (uiout, "library \"");
3372 ui_out_field_string (uiout, "what", b->dll_pathname);
3373 ui_out_text (uiout, "\" ");
3378 case bp_catch_vfork:
3379 /* Field 4, the address, is omitted (which makes the columns
3380 not line up too nicely with the headers, but the effect
3381 is relatively readable). */
3383 ui_out_field_skip (uiout, "addr");
3385 if (b->forked_inferior_pid != 0)
3387 ui_out_text (uiout, "process ");
3388 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3389 ui_out_spaces (uiout, 1);
3393 /* Field 4, the address, is omitted (which makes the columns
3394 not line up too nicely with the headers, but the effect
3395 is relatively readable). */
3397 ui_out_field_skip (uiout, "addr");
3399 if (b->exec_pathname != NULL)
3401 ui_out_text (uiout, "program \"");
3402 ui_out_field_string (uiout, "what", b->exec_pathname);
3403 ui_out_text (uiout, "\" ");
3407 case bp_catch_catch:
3408 /* Field 4, the address, is omitted (which makes the columns
3409 not line up too nicely with the headers, but the effect
3410 is relatively readable). */
3412 ui_out_field_skip (uiout, "addr");
3414 ui_out_field_string (uiout, "what", "exception catch");
3415 ui_out_spaces (uiout, 1);
3418 case bp_catch_throw:
3419 /* Field 4, the address, is omitted (which makes the columns
3420 not line up too nicely with the headers, but the effect
3421 is relatively readable). */
3423 ui_out_field_skip (uiout, "addr");
3425 ui_out_field_string (uiout, "what", "exception throw");
3426 ui_out_spaces (uiout, 1);
3430 case bp_hardware_breakpoint:
3434 case bp_longjmp_resume:
3435 case bp_step_resume:
3436 case bp_through_sigtramp:
3437 case bp_watchpoint_scope:
3439 case bp_shlib_event:
3440 case bp_thread_event:
3441 case bp_overlay_event:
3446 ui_out_field_string (uiout, "addr", "<PENDING>");
3448 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3451 *last_addr = b->loc->address;
3454 sym = find_pc_sect_function (b->loc->address, b->loc->section);
3457 ui_out_text (uiout, "in ");
3458 ui_out_field_string (uiout, "func",
3459 SYMBOL_PRINT_NAME (sym));
3460 ui_out_wrap_hint (uiout, wrap_indent);
3461 ui_out_text (uiout, " at ");
3463 ui_out_field_string (uiout, "file", b->source_file);
3464 ui_out_text (uiout, ":");
3465 ui_out_field_int (uiout, "line", b->line_number);
3467 else if (b->pending)
3469 ui_out_field_string (uiout, "pending", b->addr_string);
3473 print_address_symbolic (b->loc->address, stb->stream, demangle, "");
3474 ui_out_field_stream (uiout, "at", stb);
3479 if (b->thread != -1)
3481 /* FIXME: This seems to be redundant and lost here; see the
3482 "stop only in" line a little further down. */
3483 ui_out_text (uiout, " thread ");
3484 ui_out_field_int (uiout, "thread", b->thread);
3487 ui_out_text (uiout, "\n");
3489 if (frame_id_p (b->frame_id))
3492 ui_out_text (uiout, "\tstop only in stack frame at ");
3493 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
3495 ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
3496 ui_out_text (uiout, "\n");
3502 ui_out_text (uiout, "\tstop only if ");
3503 print_expression (b->cond, stb->stream);
3504 ui_out_field_stream (uiout, "cond", stb);
3505 ui_out_text (uiout, "\n");
3508 if (b->pending && b->cond_string)
3511 ui_out_text (uiout, "\tstop only if ");
3512 ui_out_field_string (uiout, "cond", b->cond_string);
3513 ui_out_text (uiout, "\n");
3516 if (b->thread != -1)
3518 /* FIXME should make an annotation for this */
3519 ui_out_text (uiout, "\tstop only in thread ");
3520 ui_out_field_int (uiout, "thread", b->thread);
3521 ui_out_text (uiout, "\n");
3524 if (show_breakpoint_hit_counts && b->hit_count)
3526 /* FIXME should make an annotation for this */
3527 if (ep_is_catchpoint (b))
3528 ui_out_text (uiout, "\tcatchpoint");
3530 ui_out_text (uiout, "\tbreakpoint");
3531 ui_out_text (uiout, " already hit ");
3532 ui_out_field_int (uiout, "times", b->hit_count);
3533 if (b->hit_count == 1)
3534 ui_out_text (uiout, " time\n");
3536 ui_out_text (uiout, " times\n");
3539 /* Output the count also if it is zero, but only if this is
3540 mi. FIXME: Should have a better test for this. */
3541 if (ui_out_is_mi_like_p (uiout))
3542 if (show_breakpoint_hit_counts && b->hit_count == 0)
3543 ui_out_field_int (uiout, "times", b->hit_count);
3545 if (b->ignore_count)
3548 ui_out_text (uiout, "\tignore next ");
3549 ui_out_field_int (uiout, "ignore", b->ignore_count);
3550 ui_out_text (uiout, " hits\n");
3553 if ((l = b->commands))
3555 struct cleanup *script_chain;
3558 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
3559 print_command_lines (uiout, l, 4);
3560 do_cleanups (script_chain);
3562 do_cleanups (bkpt_chain);
3563 do_cleanups (old_chain);
3566 struct captured_breakpoint_query_args
3572 do_captured_breakpoint_query (struct ui_out *uiout, void *data)
3574 struct captured_breakpoint_query_args *args = data;
3575 struct breakpoint *b;
3576 CORE_ADDR dummy_addr = 0;
3579 if (args->bnum == b->number)
3581 print_one_breakpoint (b, &dummy_addr);
3589 gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
3591 struct captured_breakpoint_query_args args;
3593 /* For the moment we don't trust print_one_breakpoint() to not throw
3595 return catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
3596 error_message, RETURN_MASK_ALL);
3599 /* Return non-zero if B is user settable (breakpoints, watchpoints,
3600 catchpoints, et.al.). */
3603 user_settable_breakpoint (const struct breakpoint *b)
3605 return (b->type == bp_breakpoint
3606 || b->type == bp_catch_load
3607 || b->type == bp_catch_unload
3608 || b->type == bp_catch_fork
3609 || b->type == bp_catch_vfork
3610 || b->type == bp_catch_exec
3611 || b->type == bp_catch_catch
3612 || b->type == bp_catch_throw
3613 || b->type == bp_hardware_breakpoint
3614 || b->type == bp_watchpoint
3615 || b->type == bp_read_watchpoint
3616 || b->type == bp_access_watchpoint
3617 || b->type == bp_hardware_watchpoint);
3620 /* Print information on user settable breakpoint (watchpoint, etc)
3621 number BNUM. If BNUM is -1 print all user settable breakpoints.
3622 If ALLFLAG is non-zero, include non- user settable breakpoints. */
3625 breakpoint_1 (int bnum, int allflag)
3627 struct breakpoint *b;
3628 CORE_ADDR last_addr = (CORE_ADDR) -1;
3629 int nr_printable_breakpoints;
3630 struct cleanup *bkpttbl_chain;
3632 /* Compute the number of rows in the table. */
3633 nr_printable_breakpoints = 0;
3636 || bnum == b->number)
3638 if (allflag || user_settable_breakpoint (b))
3639 nr_printable_breakpoints++;
3644 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
3648 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
3651 if (nr_printable_breakpoints > 0)
3652 annotate_breakpoints_headers ();
3653 if (nr_printable_breakpoints > 0)
3655 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3656 if (nr_printable_breakpoints > 0)
3658 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3659 if (nr_printable_breakpoints > 0)
3661 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3662 if (nr_printable_breakpoints > 0)
3664 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3667 if (nr_printable_breakpoints > 0)
3669 if (TARGET_ADDR_BIT <= 32)
3670 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
3672 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
3674 if (nr_printable_breakpoints > 0)
3676 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3677 ui_out_table_body (uiout);
3678 if (nr_printable_breakpoints > 0)
3679 annotate_breakpoints_table ();
3683 || bnum == b->number)
3685 /* We only print out user settable breakpoints unless the
3687 if (allflag || user_settable_breakpoint (b))
3688 print_one_breakpoint (b, &last_addr);
3691 do_cleanups (bkpttbl_chain);
3693 if (nr_printable_breakpoints == 0)
3696 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3698 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3703 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3704 that a comparison of an unsigned with -1 is always false. */
3705 if (last_addr != (CORE_ADDR) -1)
3706 set_next_address (last_addr);
3709 /* FIXME? Should this be moved up so that it is only called when
3710 there have been breakpoints? */
3711 annotate_breakpoints_table_end ();
3715 breakpoints_info (char *bnum_exp, int from_tty)
3720 bnum = parse_and_eval_long (bnum_exp);
3722 breakpoint_1 (bnum, 0);
3726 maintenance_info_breakpoints (char *bnum_exp, int from_tty)
3731 bnum = parse_and_eval_long (bnum_exp);
3733 breakpoint_1 (bnum, 1);
3736 /* Print a message describing any breakpoints set at PC. */
3739 describe_other_breakpoints (CORE_ADDR pc, asection *section)
3742 struct breakpoint *b;
3745 if (b->loc->address == pc) /* address match / overlay match */
3746 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3751 printf_filtered (_("Note: breakpoint "));
3752 else /* if (others == ???) */
3753 printf_filtered (_("Note: breakpoints "));
3755 if (b->loc->address == pc) /* address match / overlay match */
3756 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3759 printf_filtered ("%d%s%s ",
3761 ((b->enable_state == bp_disabled ||
3762 b->enable_state == bp_shlib_disabled ||
3763 b->enable_state == bp_call_disabled)
3765 : b->enable_state == bp_permanent
3769 : ((others == 1) ? " and" : ""));
3771 printf_filtered (_("also set at pc "));
3772 deprecated_print_address_numeric (pc, 1, gdb_stdout);
3773 printf_filtered (".\n");
3777 /* Set the default place to put a breakpoint
3778 for the `break' command with no arguments. */
3781 set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3784 default_breakpoint_valid = valid;
3785 default_breakpoint_address = addr;
3786 default_breakpoint_symtab = symtab;
3787 default_breakpoint_line = line;
3790 /* Return true iff it is meaningful to use the address member of
3791 BPT. For some breakpoint types, the address member is irrelevant
3792 and it makes no sense to attempt to compare it to other addresses
3793 (or use it for any other purpose either).
3795 More specifically, each of the following breakpoint types will always
3796 have a zero valued address and we don't want check_duplicates() to mark
3797 breakpoints of any of these types to be a duplicate of an actual
3798 breakpoint at address zero:
3801 bp_hardware_watchpoint
3803 bp_access_watchpoint
3810 breakpoint_address_is_meaningful (struct breakpoint *bpt)
3812 enum bptype type = bpt->type;
3814 return (type != bp_watchpoint
3815 && type != bp_hardware_watchpoint
3816 && type != bp_read_watchpoint
3817 && type != bp_access_watchpoint
3818 && type != bp_catch_exec
3819 && type != bp_longjmp_resume
3820 && type != bp_catch_fork
3821 && type != bp_catch_vfork);
3824 /* Rescan breakpoints at the same address and section as BPT,
3825 marking the first one as "first" and any others as "duplicates".
3826 This is so that the bpt instruction is only inserted once.
3827 If we have a permanent breakpoint at the same place as BPT, make
3828 that one the official one, and the rest as duplicates. */
3831 check_duplicates (struct breakpoint *bpt)
3833 struct bp_location *b;
3835 struct bp_location *perm_bp = 0;
3836 CORE_ADDR address = bpt->loc->address;
3837 asection *section = bpt->loc->section;
3839 if (! breakpoint_address_is_meaningful (bpt))
3842 ALL_BP_LOCATIONS (b)
3843 if (b->owner->enable_state != bp_disabled
3844 && b->owner->enable_state != bp_shlib_disabled
3845 && !b->owner->pending
3846 && b->owner->enable_state != bp_call_disabled
3847 && b->address == address /* address / overlay match */
3848 && (!overlay_debugging || b->section == section)
3849 && breakpoint_address_is_meaningful (b->owner))
3851 /* Have we found a permanent breakpoint? */
3852 if (b->owner->enable_state == bp_permanent)
3859 b->duplicate = count > 1;
3862 /* If we found a permanent breakpoint at this address, go over the
3863 list again and declare all the other breakpoints there to be the
3867 perm_bp->duplicate = 0;
3869 /* Permanent breakpoint should always be inserted. */
3870 if (! perm_bp->inserted)
3871 internal_error (__FILE__, __LINE__,
3872 _("allegedly permanent breakpoint is not "
3873 "actually inserted"));
3875 ALL_BP_LOCATIONS (b)
3878 if (b->owner->enable_state != bp_disabled
3879 && b->owner->enable_state != bp_shlib_disabled
3880 && !b->owner->pending
3881 && b->owner->enable_state != bp_call_disabled
3882 && b->address == address /* address / overlay match */
3883 && (!overlay_debugging || b->section == section)
3884 && breakpoint_address_is_meaningful (b->owner))
3887 internal_error (__FILE__, __LINE__,
3888 _("another breakpoint was inserted on top of "
3889 "a permanent breakpoint"));
3898 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
3899 int bnum, int have_bnum)
3904 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
3905 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
3907 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
3908 bnum, astr1, astr2);
3910 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
3913 /* Adjust a breakpoint's address to account for architectural constraints
3914 on breakpoint placement. Return the adjusted address. Note: Very
3915 few targets require this kind of adjustment. For most targets,
3916 this function is simply the identity function. */
3919 adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
3921 if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
3923 /* Very few targets need any kind of breakpoint adjustment. */
3926 else if (bptype == bp_watchpoint
3927 || bptype == bp_hardware_watchpoint
3928 || bptype == bp_read_watchpoint
3929 || bptype == bp_access_watchpoint
3930 || bptype == bp_catch_fork
3931 || bptype == bp_catch_vfork
3932 || bptype == bp_catch_exec)
3934 /* Watchpoints and the various bp_catch_* eventpoints should not
3935 have their addresses modified. */
3940 CORE_ADDR adjusted_bpaddr;
3942 /* Some targets have architectural constraints on the placement
3943 of breakpoint instructions. Obtain the adjusted address. */
3944 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
3947 /* An adjusted breakpoint address can significantly alter
3948 a user's expectations. Print a warning if an adjustment
3950 if (adjusted_bpaddr != bpaddr)
3951 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
3953 return adjusted_bpaddr;
3957 /* Allocate a struct bp_location. */
3959 static struct bp_location *
3960 allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
3962 struct bp_location *loc, *loc_p;
3964 loc = xmalloc (sizeof (struct bp_location));
3965 memset (loc, 0, sizeof (*loc));
3975 case bp_longjmp_resume:
3976 case bp_step_resume:
3977 case bp_through_sigtramp:
3978 case bp_watchpoint_scope:
3980 case bp_shlib_event:
3981 case bp_thread_event:
3982 case bp_overlay_event:
3984 case bp_catch_unload:
3985 loc->loc_type = bp_loc_software_breakpoint;
3987 case bp_hardware_breakpoint:
3988 loc->loc_type = bp_loc_hardware_breakpoint;
3990 case bp_hardware_watchpoint:
3991 case bp_read_watchpoint:
3992 case bp_access_watchpoint:
3993 loc->loc_type = bp_loc_hardware_watchpoint;
3997 case bp_catch_vfork:
3999 case bp_catch_catch:
4000 case bp_catch_throw:
4001 loc->loc_type = bp_loc_other;
4004 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
4007 /* Add this breakpoint to the end of the chain. */
4009 loc_p = bp_location_chain;
4011 bp_location_chain = loc;
4015 loc_p = loc_p->next;
4022 /* set_raw_breakpoint() is a low level routine for allocating and
4023 partially initializing a breakpoint of type BPTYPE. The newly
4024 created breakpoint's address, section, source file name, and line
4025 number are provided by SAL. The newly created and partially
4026 initialized breakpoint is added to the breakpoint chain and
4027 is also returned as the value of this function.
4029 It is expected that the caller will complete the initialization of
4030 the newly created breakpoint struct as well as output any status
4031 information regarding the creation of a new breakpoint. In
4032 particular, set_raw_breakpoint() does NOT set the breakpoint
4033 number! Care should be taken to not allow an error() to occur
4034 prior to completing the initialization of the breakpoint. If this
4035 should happen, a bogus breakpoint will be left on the chain. */
4038 set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
4040 struct breakpoint *b, *b1;
4042 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
4043 memset (b, 0, sizeof (*b));
4044 b->loc = allocate_bp_location (b, bptype);
4045 b->loc->requested_address = sal.pc;
4046 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4048 if (sal.symtab == NULL)
4049 b->source_file = NULL;
4051 b->source_file = savestring (sal.symtab->filename,
4052 strlen (sal.symtab->filename));
4053 b->loc->section = sal.section;
4055 b->language = current_language->la_language;
4056 b->input_radix = input_radix;
4058 b->line_number = sal.line;
4059 b->enable_state = bp_enabled;
4062 b->ignore_count = 0;
4064 b->frame_id = null_frame_id;
4065 b->dll_pathname = NULL;
4066 b->triggered_dll_pathname = NULL;
4067 b->forked_inferior_pid = 0;
4068 b->exec_pathname = NULL;
4072 /* Add this breakpoint to the end of the chain
4073 so that a list of breakpoints will come out in order
4074 of increasing numbers. */
4076 b1 = breakpoint_chain;
4078 breakpoint_chain = b;
4086 check_duplicates (b);
4087 breakpoints_changed ();
4093 /* Note that the breakpoint object B describes a permanent breakpoint
4094 instruction, hard-wired into the inferior's code. */
4096 make_breakpoint_permanent (struct breakpoint *b)
4098 b->enable_state = bp_permanent;
4100 /* By definition, permanent breakpoints are already present in the code. */
4101 b->loc->inserted = 1;
4104 static struct breakpoint *
4105 create_internal_breakpoint (CORE_ADDR address, enum bptype type)
4107 static int internal_breakpoint_number = -1;
4108 struct symtab_and_line sal;
4109 struct breakpoint *b;
4111 init_sal (&sal); /* initialize to zeroes */
4114 sal.section = find_pc_overlay (sal.pc);
4116 b = set_raw_breakpoint (sal, type);
4117 b->number = internal_breakpoint_number--;
4118 b->disposition = disp_donttouch;
4125 create_longjmp_breakpoint (char *func_name)
4127 struct breakpoint *b;
4128 struct minimal_symbol *m;
4130 if (func_name == NULL)
4131 b = create_internal_breakpoint (0, bp_longjmp_resume);
4134 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4137 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
4140 b->enable_state = bp_disabled;
4143 b->addr_string = xstrdup (func_name);
4146 /* Call this routine when stepping and nexting to enable a breakpoint
4147 if we do a longjmp(). When we hit that breakpoint, call
4148 set_longjmp_resume_breakpoint() to figure out where we are going. */
4151 enable_longjmp_breakpoint (void)
4153 struct breakpoint *b;
4156 if (b->type == bp_longjmp)
4158 b->enable_state = bp_enabled;
4159 check_duplicates (b);
4164 disable_longjmp_breakpoint (void)
4166 struct breakpoint *b;
4169 if (b->type == bp_longjmp
4170 || b->type == bp_longjmp_resume)
4172 b->enable_state = bp_disabled;
4173 check_duplicates (b);
4178 create_overlay_event_breakpoint (char *func_name)
4180 struct breakpoint *b;
4181 struct minimal_symbol *m;
4183 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4186 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
4188 b->addr_string = xstrdup (func_name);
4190 if (overlay_debugging == ovly_auto)
4192 b->enable_state = bp_enabled;
4193 overlay_events_enabled = 1;
4197 b->enable_state = bp_disabled;
4198 overlay_events_enabled = 0;
4203 enable_overlay_breakpoints (void)
4205 struct breakpoint *b;
4208 if (b->type == bp_overlay_event)
4210 b->enable_state = bp_enabled;
4211 check_duplicates (b);
4212 overlay_events_enabled = 1;
4217 disable_overlay_breakpoints (void)
4219 struct breakpoint *b;
4222 if (b->type == bp_overlay_event)
4224 b->enable_state = bp_disabled;
4225 check_duplicates (b);
4226 overlay_events_enabled = 0;
4231 create_thread_event_breakpoint (CORE_ADDR address)
4233 struct breakpoint *b;
4235 b = create_internal_breakpoint (address, bp_thread_event);
4237 b->enable_state = bp_enabled;
4238 /* addr_string has to be used or breakpoint_re_set will delete me. */
4239 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
4245 remove_thread_event_breakpoints (void)
4247 struct breakpoint *b, *temp;
4249 ALL_BREAKPOINTS_SAFE (b, temp)
4250 if (b->type == bp_thread_event)
4251 delete_breakpoint (b);
4254 struct captured_parse_breakpoint_args
4257 struct symtabs_and_lines *sals_p;
4258 char ***addr_string_p;
4262 struct lang_and_radix
4268 /* Cleanup helper routine to restore the current language and
4271 do_restore_lang_radix_cleanup (void *old)
4273 struct lang_and_radix *p = old;
4274 set_language (p->lang);
4275 input_radix = p->radix;
4278 /* Try and resolve a pending breakpoint. */
4280 resolve_pending_breakpoint (struct breakpoint *b)
4282 /* Try and reparse the breakpoint in case the shared library
4284 struct symtabs_and_lines sals;
4285 struct symtab_and_line pending_sal;
4286 char **cond_string = (char **) NULL;
4287 char *copy_arg = b->addr_string;
4292 struct ui_file *old_gdb_stderr;
4293 struct lang_and_radix old_lr;
4294 struct cleanup *old_chain;
4296 /* Set language, input-radix, then reissue breakpoint command.
4297 Ensure the language and input-radix are restored afterwards. */
4298 old_lr.lang = current_language->la_language;
4299 old_lr.radix = input_radix;
4300 old_chain = make_cleanup (do_restore_lang_radix_cleanup, &old_lr);
4302 set_language (b->language);
4303 input_radix = b->input_radix;
4304 rc = break_command_1 (b->addr_string, b->flag, b->from_tty, b);
4306 if (rc == GDB_RC_OK)
4307 /* Pending breakpoint has been resolved. */
4308 printf_filtered (_("Pending breakpoint \"%s\" resolved\n"), b->addr_string);
4310 do_cleanups (old_chain);
4316 remove_solib_event_breakpoints (void)
4318 struct breakpoint *b, *temp;
4320 ALL_BREAKPOINTS_SAFE (b, temp)
4321 if (b->type == bp_shlib_event)
4322 delete_breakpoint (b);
4326 create_solib_event_breakpoint (CORE_ADDR address)
4328 struct breakpoint *b;
4330 b = create_internal_breakpoint (address, bp_shlib_event);
4334 /* Disable any breakpoints that are on code in shared libraries. Only
4335 apply to enabled breakpoints, disabled ones can just stay disabled. */
4338 disable_breakpoints_in_shlibs (int silent)
4340 struct breakpoint *b;
4341 int disabled_shlib_breaks = 0;
4343 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4346 #if defined (PC_SOLIB)
4347 if (((b->type == bp_breakpoint) ||
4348 (b->type == bp_hardware_breakpoint)) &&
4349 breakpoint_enabled (b) &&
4350 !b->loc->duplicate &&
4351 PC_SOLIB (b->loc->address))
4353 b->enable_state = bp_shlib_disabled;
4356 if (!disabled_shlib_breaks)
4358 target_terminal_ours_for_output ();
4359 warning (_("Temporarily disabling shared library breakpoints:"));
4361 disabled_shlib_breaks = 1;
4362 warning (_("breakpoint #%d "), b->number);
4369 /* Disable any breakpoints that are in in an unloaded shared library. Only
4370 apply to enabled breakpoints, disabled ones can just stay disabled. */
4373 disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
4375 struct breakpoint *b;
4376 int disabled_shlib_breaks = 0;
4378 #if defined (PC_SOLIB)
4379 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4382 if ((b->loc->loc_type == bp_loc_hardware_breakpoint
4383 || b->loc->loc_type == bp_loc_software_breakpoint)
4384 && breakpoint_enabled (b)
4385 && !b->loc->duplicate)
4387 char *so_name = PC_SOLIB (b->loc->address);
4389 && !strcmp (so_name, solib->so_name))
4391 b->enable_state = bp_shlib_disabled;
4392 /* At this point, we cannot rely on remove_breakpoint
4393 succeeding so we must mark the breakpoint as not inserted
4394 to prevent future errors occurring in remove_breakpoints. */
4395 b->loc->inserted = 0;
4396 if (!disabled_shlib_breaks)
4398 target_terminal_ours_for_output ();
4399 warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
4402 disabled_shlib_breaks = 1;
4409 /* Try to reenable any breakpoints in shared libraries. */
4411 re_enable_breakpoints_in_shlibs (void)
4413 struct breakpoint *b, *tmp;
4415 ALL_BREAKPOINTS_SAFE (b, tmp)
4417 if (b->enable_state == bp_shlib_disabled)
4421 /* Do not reenable the breakpoint if the shared library
4422 is still not mapped in. */
4423 lib = PC_SOLIB (b->loc->address);
4424 if (lib != NULL && target_read_memory (b->loc->address, buf, 1) == 0)
4425 b->enable_state = bp_enabled;
4427 else if (b->pending && (b->enable_state == bp_enabled))
4429 if (resolve_pending_breakpoint (b) == GDB_RC_OK)
4430 delete_breakpoint (b);
4438 solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4439 char *cond_string, enum bptype bp_kind)
4441 struct breakpoint *b;
4442 struct symtabs_and_lines sals;
4443 struct cleanup *old_chain;
4444 struct cleanup *canonical_strings_chain = NULL;
4445 char *addr_start = hookname;
4446 char *addr_end = NULL;
4447 char **canonical = (char **) NULL;
4448 int thread = -1; /* All threads. */
4450 /* Set a breakpoint on the specified hook. */
4451 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL,
4452 0, &canonical, NULL);
4453 addr_end = hookname;
4455 if (sals.nelts == 0)
4457 warning (_("Unable to set a breakpoint on dynamic linker callback.\n"
4458 "Suggest linking with /opt/langtools/lib/end.o.\n"
4459 "GDB will be unable to track shl_load/shl_unload calls."));
4462 if (sals.nelts != 1)
4464 warning (_("Unable to set unique breakpoint on dynamic linker callback.\n"
4465 "GDB will be unable to track shl_load/shl_unload calls."));
4469 /* Make sure that all storage allocated in decode_line_1 gets freed
4470 in case the following errors out. */
4471 old_chain = make_cleanup (xfree, sals.sals);
4472 if (canonical != (char **) NULL)
4474 make_cleanup (xfree, canonical);
4475 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4476 if (canonical[0] != NULL)
4477 make_cleanup (xfree, canonical[0]);
4480 resolve_sal_pc (&sals.sals[0]);
4482 /* Remove the canonical strings from the cleanup, they are needed below. */
4483 if (canonical != (char **) NULL)
4484 discard_cleanups (canonical_strings_chain);
4486 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4487 set_breakpoint_count (breakpoint_count + 1);
4488 b->number = breakpoint_count;
4490 b->cond_string = (cond_string == NULL) ?
4491 NULL : savestring (cond_string, strlen (cond_string));
4494 if (canonical != (char **) NULL && canonical[0] != NULL)
4495 b->addr_string = canonical[0];
4496 else if (addr_start)
4497 b->addr_string = savestring (addr_start, addr_end - addr_start);
4499 b->enable_state = bp_enabled;
4500 b->disposition = tempflag ? disp_del : disp_donttouch;
4502 if (dll_pathname == NULL)
4503 b->dll_pathname = NULL;
4506 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4507 strcpy (b->dll_pathname, dll_pathname);
4511 do_cleanups (old_chain);
4515 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4516 char *dll_pathname, char *cond_string)
4518 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4519 cond_string, bp_catch_load);
4523 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4524 char *dll_pathname, char *cond_string)
4526 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4527 cond_string, bp_catch_unload);
4531 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4532 enum bptype bp_kind)
4534 struct symtab_and_line sal;
4535 struct breakpoint *b;
4536 int thread = -1; /* All threads. */
4543 b = set_raw_breakpoint (sal, bp_kind);
4544 set_breakpoint_count (breakpoint_count + 1);
4545 b->number = breakpoint_count;
4547 b->cond_string = (cond_string == NULL) ?
4548 NULL : savestring (cond_string, strlen (cond_string));
4550 b->addr_string = NULL;
4551 b->enable_state = bp_enabled;
4552 b->disposition = tempflag ? disp_del : disp_donttouch;
4553 b->forked_inferior_pid = 0;
4559 create_fork_event_catchpoint (int tempflag, char *cond_string)
4561 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4565 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4567 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4571 create_exec_event_catchpoint (int tempflag, char *cond_string)
4573 struct symtab_and_line sal;
4574 struct breakpoint *b;
4575 int thread = -1; /* All threads. */
4582 b = set_raw_breakpoint (sal, bp_catch_exec);
4583 set_breakpoint_count (breakpoint_count + 1);
4584 b->number = breakpoint_count;
4586 b->cond_string = (cond_string == NULL) ?
4587 NULL : savestring (cond_string, strlen (cond_string));
4589 b->addr_string = NULL;
4590 b->enable_state = bp_enabled;
4591 b->disposition = tempflag ? disp_del : disp_donttouch;
4597 hw_breakpoint_used_count (void)
4599 struct breakpoint *b;
4604 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4612 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4614 struct breakpoint *b;
4617 *other_type_used = 0;
4620 if (breakpoint_enabled (b))
4622 if (b->type == type)
4624 else if ((b->type == bp_hardware_watchpoint ||
4625 b->type == bp_read_watchpoint ||
4626 b->type == bp_access_watchpoint))
4627 *other_type_used = 1;
4633 /* Call this after hitting the longjmp() breakpoint. Use this to set
4634 a new breakpoint at the target of the jmp_buf.
4636 FIXME - This ought to be done by setting a temporary breakpoint
4637 that gets deleted automatically... */
4640 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
4642 struct breakpoint *b;
4645 if (b->type == bp_longjmp_resume)
4647 b->loc->requested_address = pc;
4648 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4650 b->enable_state = bp_enabled;
4651 b->frame_id = frame_id;
4652 check_duplicates (b);
4658 disable_watchpoints_before_interactive_call_start (void)
4660 struct breakpoint *b;
4664 if (((b->type == bp_watchpoint)
4665 || (b->type == bp_hardware_watchpoint)
4666 || (b->type == bp_read_watchpoint)
4667 || (b->type == bp_access_watchpoint)
4668 || ep_is_exception_catchpoint (b))
4669 && breakpoint_enabled (b))
4671 b->enable_state = bp_call_disabled;
4672 check_duplicates (b);
4678 enable_watchpoints_after_interactive_call_stop (void)
4680 struct breakpoint *b;
4684 if (((b->type == bp_watchpoint)
4685 || (b->type == bp_hardware_watchpoint)
4686 || (b->type == bp_read_watchpoint)
4687 || (b->type == bp_access_watchpoint)
4688 || ep_is_exception_catchpoint (b))
4689 && (b->enable_state == bp_call_disabled))
4691 b->enable_state = bp_enabled;
4692 check_duplicates (b);
4698 /* Set a breakpoint that will evaporate an end of command
4699 at address specified by SAL.
4700 Restrict it to frame FRAME if FRAME is nonzero. */
4703 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
4706 struct breakpoint *b;
4707 b = set_raw_breakpoint (sal, type);
4708 b->enable_state = bp_enabled;
4709 b->disposition = disp_donttouch;
4710 b->frame_id = frame_id;
4712 /* If we're debugging a multi-threaded program, then we
4713 want momentary breakpoints to be active in only a
4714 single thread of control. */
4715 if (in_thread_list (inferior_ptid))
4716 b->thread = pid_to_thread_id (inferior_ptid);
4722 /* Tell the user we have just set a breakpoint B. */
4725 mention (struct breakpoint *b)
4728 struct cleanup *old_chain, *ui_out_chain;
4729 struct ui_stream *stb;
4731 stb = ui_out_stream_new (uiout);
4732 old_chain = make_cleanup_ui_out_stream_delete (stb);
4734 /* FIXME: This is misplaced; mention() is called by things (like
4735 hitting a watchpoint) other than breakpoint creation. It should
4736 be possible to clean this up and at the same time replace the
4737 random calls to breakpoint_changed with this hook, as has already
4738 been done for deprecated_delete_breakpoint_hook and so on. */
4739 if (deprecated_create_breakpoint_hook)
4740 deprecated_create_breakpoint_hook (b);
4741 breakpoint_create_event (b->number);
4743 if (b->ops != NULL && b->ops->print_mention != NULL)
4744 b->ops->print_mention (b);
4749 printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
4752 ui_out_text (uiout, "Watchpoint ");
4753 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4754 ui_out_field_int (uiout, "number", b->number);
4755 ui_out_text (uiout, ": ");
4756 print_expression (b->exp, stb->stream);
4757 ui_out_field_stream (uiout, "exp", stb);
4758 do_cleanups (ui_out_chain);
4760 case bp_hardware_watchpoint:
4761 ui_out_text (uiout, "Hardware watchpoint ");
4762 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4763 ui_out_field_int (uiout, "number", b->number);
4764 ui_out_text (uiout, ": ");
4765 print_expression (b->exp, stb->stream);
4766 ui_out_field_stream (uiout, "exp", stb);
4767 do_cleanups (ui_out_chain);
4769 case bp_read_watchpoint:
4770 ui_out_text (uiout, "Hardware read watchpoint ");
4771 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4772 ui_out_field_int (uiout, "number", b->number);
4773 ui_out_text (uiout, ": ");
4774 print_expression (b->exp, stb->stream);
4775 ui_out_field_stream (uiout, "exp", stb);
4776 do_cleanups (ui_out_chain);
4778 case bp_access_watchpoint:
4779 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4780 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4781 ui_out_field_int (uiout, "number", b->number);
4782 ui_out_text (uiout, ": ");
4783 print_expression (b->exp, stb->stream);
4784 ui_out_field_stream (uiout, "exp", stb);
4785 do_cleanups (ui_out_chain);
4788 if (ui_out_is_mi_like_p (uiout))
4793 printf_filtered (_("Breakpoint %d"), b->number);
4796 case bp_hardware_breakpoint:
4797 if (ui_out_is_mi_like_p (uiout))
4802 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
4806 case bp_catch_unload:
4807 printf_filtered (_("Catchpoint %d (%s %s)"),
4809 (b->type == bp_catch_load) ? "load" : "unload",
4810 (b->dll_pathname != NULL) ?
4811 b->dll_pathname : "<any library>");
4814 case bp_catch_vfork:
4815 printf_filtered (_("Catchpoint %d (%s)"),
4817 (b->type == bp_catch_fork) ? "fork" : "vfork");
4820 printf_filtered (_("Catchpoint %d (exec)"),
4823 case bp_catch_catch:
4824 case bp_catch_throw:
4825 printf_filtered (_("Catchpoint %d (%s)"),
4827 (b->type == bp_catch_catch) ? "catch" : "throw");
4833 case bp_longjmp_resume:
4834 case bp_step_resume:
4835 case bp_through_sigtramp:
4837 case bp_watchpoint_scope:
4838 case bp_shlib_event:
4839 case bp_thread_event:
4840 case bp_overlay_event:
4846 /* i18n: cagney/2005-02-11: Below needs to be merged into a
4850 printf_filtered (_(" (%s) pending."), b->addr_string);
4854 if (addressprint || b->source_file == NULL)
4856 printf_filtered (" at ");
4857 deprecated_print_address_numeric (b->loc->address, 1, gdb_stdout);
4860 printf_filtered (": file %s, line %d.",
4861 b->source_file, b->line_number);
4864 do_cleanups (old_chain);
4865 if (ui_out_is_mi_like_p (uiout))
4867 printf_filtered ("\n");
4871 /* Add SALS.nelts breakpoints to the breakpoint table. For each
4872 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4873 COND[i] and COND_STRING[i] values.
4875 The parameter PENDING_BP points to a pending breakpoint that is
4876 the basis of the breakpoints currently being created. The pending
4877 breakpoint may contain a separate condition string or commands
4878 that were added after the initial pending breakpoint was created.
4880 NOTE: If the function succeeds, the caller is expected to cleanup
4881 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4882 array contents). If the function fails (error() is called), the
4883 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4884 COND and SALS arrays and each of those arrays contents. */
4887 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4888 struct expression **cond, char **cond_string,
4889 enum bptype type, enum bpdisp disposition,
4890 int thread, int ignore_count, int from_tty,
4891 struct breakpoint *pending_bp)
4893 if (type == bp_hardware_breakpoint)
4895 int i = hw_breakpoint_used_count ();
4896 int target_resources_ok =
4897 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4899 if (target_resources_ok == 0)
4900 error (_("No hardware breakpoint support in the target."));
4901 else if (target_resources_ok < 0)
4902 error (_("Hardware breakpoints used exceeds limit."));
4905 /* Now set all the breakpoints. */
4908 for (i = 0; i < sals.nelts; i++)
4910 struct breakpoint *b;
4911 struct symtab_and_line sal = sals.sals[i];
4914 describe_other_breakpoints (sal.pc, sal.section);
4916 b = set_raw_breakpoint (sal, type);
4917 set_breakpoint_count (breakpoint_count + 1);
4918 b->number = breakpoint_count;
4922 b->addr_string = addr_string[i];
4924 /* addr_string has to be used or breakpoint_re_set will delete
4926 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
4927 b->cond_string = cond_string[i];
4928 b->ignore_count = ignore_count;
4929 b->enable_state = bp_enabled;
4930 b->disposition = disposition;
4931 /* If resolving a pending breakpoint, a check must be made to see if
4932 the user has specified a new condition or commands for the
4933 breakpoint. A new condition will override any condition that was
4934 initially specified with the initial breakpoint command. */
4938 if (pending_bp->cond_string)
4940 arg = pending_bp->cond_string;
4941 b->cond_string = savestring (arg, strlen (arg));
4942 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
4944 error (_("Junk at end of pending breakpoint condition expression"));
4946 /* If there are commands associated with the breakpoint, they should
4948 if (pending_bp->commands)
4949 b->commands = copy_command_lines (pending_bp->commands);
4951 /* We have to copy over the ignore_count and thread as well. */
4952 b->ignore_count = pending_bp->ignore_count;
4953 b->thread = pending_bp->thread;
4960 /* Parse ARG which is assumed to be a SAL specification possibly
4961 followed by conditionals. On return, SALS contains an array of SAL
4962 addresses found. ADDR_STRING contains a vector of (canonical)
4963 address strings. ARG points to the end of the SAL. */
4966 parse_breakpoint_sals (char **address,
4967 struct symtabs_and_lines *sals,
4968 char ***addr_string,
4971 char *addr_start = *address;
4972 *addr_string = NULL;
4973 /* If no arg given, or if first arg is 'if ', use the default
4975 if ((*address) == NULL
4976 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4978 if (default_breakpoint_valid)
4980 struct symtab_and_line sal;
4981 init_sal (&sal); /* initialize to zeroes */
4982 sals->sals = (struct symtab_and_line *)
4983 xmalloc (sizeof (struct symtab_and_line));
4984 sal.pc = default_breakpoint_address;
4985 sal.line = default_breakpoint_line;
4986 sal.symtab = default_breakpoint_symtab;
4987 sal.section = find_pc_overlay (sal.pc);
4988 sals->sals[0] = sal;
4992 error (_("No default breakpoint address now."));
4996 /* Force almost all breakpoints to be in terms of the
4997 current_source_symtab (which is decode_line_1's default). This
4998 should produce the results we want almost all of the time while
4999 leaving default_breakpoint_* alone.
5000 ObjC: However, don't match an Objective-C method name which
5001 may have a '+' or '-' succeeded by a '[' */
5003 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
5005 if (default_breakpoint_valid
5007 || ((strchr ("+-", (*address)[0]) != NULL)
5008 && ((*address)[1] != '['))))
5009 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
5010 default_breakpoint_line, addr_string,
5013 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
5014 addr_string, not_found_ptr);
5016 /* For any SAL that didn't have a canonical string, fill one in. */
5017 if (sals->nelts > 0 && *addr_string == NULL)
5018 *addr_string = xcalloc (sals->nelts, sizeof (char **));
5019 if (addr_start != (*address))
5022 for (i = 0; i < sals->nelts; i++)
5024 /* Add the string if not present. */
5025 if ((*addr_string)[i] == NULL)
5026 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
5032 /* Convert each SAL into a real PC. Verify that the PC can be
5033 inserted as a breakpoint. If it can't throw an error. */
5036 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
5040 for (i = 0; i < sals->nelts; i++)
5042 resolve_sal_pc (&sals->sals[i]);
5044 /* It's possible for the PC to be nonzero, but still an illegal
5045 value on some targets.
5047 For example, on HP-UX if you start gdb, and before running the
5048 inferior you try to set a breakpoint on a shared library function
5049 "foo" where the inferior doesn't call "foo" directly but does
5050 pass its address to another function call, then we do find a
5051 minimal symbol for the "foo", but it's address is invalid.
5052 (Appears to be an index into a table that the loader sets up
5053 when the inferior is run.)
5055 Give the target a chance to bless sals.sals[i].pc before we
5056 try to make a breakpoint for it. */
5057 #ifdef DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE
5058 if (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
5060 if (address == NULL)
5061 error (_("Cannot break without a running program."));
5063 error (_("Cannot break on %s without a running program."),
5071 do_captured_parse_breakpoint (struct ui_out *ui, void *data)
5073 struct captured_parse_breakpoint_args *args = data;
5075 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
5076 args->not_found_ptr);
5079 /* Set a breakpoint according to ARG (function, linenum or *address)
5080 flag: first bit : 0 non-temporary, 1 temporary.
5081 second bit : 0 normal breakpoint, 1 hardware breakpoint.
5083 PENDING_BP is non-NULL when this function is being called to resolve
5084 a pending breakpoint. */
5087 break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp)
5090 int tempflag, hardwareflag;
5091 struct symtabs_and_lines sals;
5092 struct expression **cond = 0;
5093 struct symtab_and_line pending_sal;
5094 char **cond_string = (char **) NULL;
5097 char *addr_start = arg;
5099 struct cleanup *old_chain;
5100 struct cleanup *breakpoint_chain = NULL;
5101 struct captured_parse_breakpoint_args parse_args;
5105 int ignore_count = 0;
5108 hardwareflag = flag & BP_HARDWAREFLAG;
5109 tempflag = flag & BP_TEMPFLAG;
5115 parse_args.arg_p = &arg;
5116 parse_args.sals_p = &sals;
5117 parse_args.addr_string_p = &addr_string;
5118 parse_args.not_found_ptr = ¬_found;
5120 e = catch_exception (uiout, do_captured_parse_breakpoint,
5121 &parse_args, RETURN_MASK_ALL);
5123 /* If caller is interested in rc value from parse, set value. */
5127 exception_print (gdb_stderr, e);
5132 case NOT_FOUND_ERROR:
5133 /* If called to resolve pending breakpoint, just return
5138 exception_print (gdb_stderr, e);
5140 /* If pending breakpoint support is turned off, throw
5143 if (pending_break_support == AUTO_BOOLEAN_FALSE)
5144 deprecated_throw_reason (RETURN_ERROR);
5146 /* If pending breakpoint support is auto query and the user
5147 selects no, then simply return the error code. */
5148 if (pending_break_support == AUTO_BOOLEAN_AUTO &&
5149 !nquery ("Make breakpoint pending on future shared library load? "))
5152 /* At this point, either the user was queried about setting
5153 a pending breakpoint and selected yes, or pending
5154 breakpoint behavior is on and thus a pending breakpoint
5155 is defaulted on behalf of the user. */
5156 copy_arg = xstrdup (addr_start);
5157 addr_string = ©_arg;
5159 sals.sals = &pending_sal;
5164 exception_print (gdb_stderr, e);
5172 /* Create a chain of things that always need to be cleaned up. */
5173 old_chain = make_cleanup (null_cleanup, 0);
5177 /* Make sure that all storage allocated to SALS gets freed. */
5178 make_cleanup (xfree, sals.sals);
5180 /* Cleanup the addr_string array but not its contents. */
5181 make_cleanup (xfree, addr_string);
5184 /* Allocate space for all the cond expressions. */
5185 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5186 make_cleanup (xfree, cond);
5188 /* Allocate space for all the cond strings. */
5189 cond_string = xcalloc (sals.nelts, sizeof (char **));
5190 make_cleanup (xfree, cond_string);
5192 /* ----------------------------- SNIP -----------------------------
5193 Anything added to the cleanup chain beyond this point is assumed
5194 to be part of a breakpoint. If the breakpoint create succeeds
5195 then the memory is not reclaimed. */
5196 breakpoint_chain = make_cleanup (null_cleanup, 0);
5198 /* Mark the contents of the addr_string for cleanup. These go on
5199 the breakpoint_chain and only occure if the breakpoint create
5201 for (i = 0; i < sals.nelts; i++)
5203 if (addr_string[i] != NULL)
5204 make_cleanup (xfree, addr_string[i]);
5207 /* Resolve all line numbers to PC's and verify that the addresses
5208 are ok for the target. */
5210 breakpoint_sals_to_pc (&sals, addr_start);
5212 /* Verify that condition can be parsed, before setting any
5213 breakpoints. Allocate a separate condition expression for each
5215 thread = -1; /* No specific thread yet */
5218 for (i = 0; i < sals.nelts; i++)
5225 char *cond_start = NULL;
5226 char *cond_end = NULL;
5227 while (*tok == ' ' || *tok == '\t')
5232 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5235 toklen = end_tok - tok;
5237 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5239 tok = cond_start = end_tok + 1;
5240 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc),
5242 make_cleanup (xfree, cond[i]);
5244 cond_string[i] = savestring (cond_start,
5245 cond_end - cond_start);
5246 make_cleanup (xfree, cond_string[i]);
5248 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5254 thread = strtol (tok, &tok, 0);
5256 error (_("Junk after thread keyword."));
5257 if (!valid_thread_id (thread))
5258 error (_("Unknown thread %d."), thread);
5261 error (_("Junk at end of arguments."));
5264 create_breakpoints (sals, addr_string, cond, cond_string,
5265 hardwareflag ? bp_hardware_breakpoint
5267 tempflag ? disp_del : disp_donttouch,
5268 thread, ignore_count, from_tty,
5273 struct symtab_and_line sal;
5274 struct breakpoint *b;
5279 make_cleanup (xfree, copy_arg);
5281 b = set_raw_breakpoint (sal, hardwareflag ? bp_hardware_breakpoint
5283 set_breakpoint_count (breakpoint_count + 1);
5284 b->number = breakpoint_count;
5287 b->addr_string = *addr_string;
5288 b->cond_string = *cond_string;
5289 b->ignore_count = ignore_count;
5291 b->disposition = tempflag ? disp_del : disp_donttouch;
5292 b->from_tty = from_tty;
5298 warning (_("Multiple breakpoints were set.\n"
5299 "Use the \"delete\" command to delete unwanted breakpoints."));
5300 /* That's it. Discard the cleanups for data inserted into the
5302 discard_cleanups (breakpoint_chain);
5303 /* But cleanup everything else. */
5304 do_cleanups (old_chain);
5309 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
5310 linenum or *address) with COND and IGNORE_COUNT. */
5312 struct captured_breakpoint_args
5323 do_captured_breakpoint (struct ui_out *uiout, void *data)
5325 struct captured_breakpoint_args *args = data;
5326 struct symtabs_and_lines sals;
5327 struct expression **cond;
5328 struct cleanup *old_chain;
5329 struct cleanup *breakpoint_chain = NULL;
5336 /* Parse the source and lines spec. Delay check that the expression
5337 didn't contain trailing garbage until after cleanups are in
5341 address_end = args->address;
5343 parse_breakpoint_sals (&address_end, &sals, &addr_string, 0);
5348 /* Create a chain of things at always need to be cleaned up. */
5349 old_chain = make_cleanup (null_cleanup, 0);
5351 /* Always have a addr_string array, even if it is empty. */
5352 make_cleanup (xfree, addr_string);
5354 /* Make sure that all storage allocated to SALS gets freed. */
5355 make_cleanup (xfree, sals.sals);
5357 /* Allocate space for all the cond expressions. */
5358 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5359 make_cleanup (xfree, cond);
5361 /* Allocate space for all the cond strings. */
5362 cond_string = xcalloc (sals.nelts, sizeof (char **));
5363 make_cleanup (xfree, cond_string);
5365 /* ----------------------------- SNIP -----------------------------
5366 Anything added to the cleanup chain beyond this point is assumed
5367 to be part of a breakpoint. If the breakpoint create goes
5368 through then that memory is not cleaned up. */
5369 breakpoint_chain = make_cleanup (null_cleanup, 0);
5371 /* Mark the contents of the addr_string for cleanup. These go on
5372 the breakpoint_chain and only occure if the breakpoint create
5374 for (i = 0; i < sals.nelts; i++)
5376 if (addr_string[i] != NULL)
5377 make_cleanup (xfree, addr_string[i]);
5380 /* Wait until now before checking for garbage at the end of the
5381 address. That way cleanups can take care of freeing any
5383 if (*address_end != '\0')
5384 error (_("Garbage %s following breakpoint address"), address_end);
5386 /* Resolve all line numbers to PC's. */
5387 breakpoint_sals_to_pc (&sals, args->address);
5389 /* Verify that conditions can be parsed, before setting any
5391 for (i = 0; i < sals.nelts; i++)
5393 if (args->condition != NULL)
5395 char *tok = args->condition;
5396 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
5398 error (_("Garbage %s follows condition"), tok);
5399 make_cleanup (xfree, cond[i]);
5400 cond_string[i] = xstrdup (args->condition);
5404 create_breakpoints (sals, addr_string, cond, cond_string,
5405 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
5406 args->tempflag ? disp_del : disp_donttouch,
5407 args->thread, args->ignore_count, 0/*from-tty*/,
5408 NULL/*pending_bp*/);
5410 /* That's it. Discard the cleanups for data inserted into the
5412 discard_cleanups (breakpoint_chain);
5413 /* But cleanup everything else. */
5414 do_cleanups (old_chain);
5419 gdb_breakpoint (char *address, char *condition,
5420 int hardwareflag, int tempflag,
5421 int thread, int ignore_count,
5422 char **error_message)
5424 struct captured_breakpoint_args args;
5425 args.address = address;
5426 args.condition = condition;
5427 args.hardwareflag = hardwareflag;
5428 args.tempflag = tempflag;
5429 args.thread = thread;
5430 args.ignore_count = ignore_count;
5431 return catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args,
5432 error_message, RETURN_MASK_ALL);
5436 /* Helper function for break_command_1 and disassemble_command. */
5439 resolve_sal_pc (struct symtab_and_line *sal)
5443 if (sal->pc == 0 && sal->symtab != NULL)
5445 if (!find_line_pc (sal->symtab, sal->line, &pc))
5446 error (_("No line %d in file \"%s\"."),
5447 sal->line, sal->symtab->filename);
5451 if (sal->section == 0 && sal->symtab != NULL)
5453 struct blockvector *bv;
5458 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5461 b = BLOCKVECTOR_BLOCK (bv, index);
5462 sym = block_function (b);
5465 fixup_symbol_section (sym, sal->symtab->objfile);
5466 sal->section = SYMBOL_BFD_SECTION (sym);
5470 /* It really is worthwhile to have the section, so we'll just
5471 have to look harder. This case can be executed if we have
5472 line numbers but no functions (as can happen in assembly
5475 struct minimal_symbol *msym;
5477 msym = lookup_minimal_symbol_by_pc (sal->pc);
5479 sal->section = SYMBOL_BFD_SECTION (msym);
5486 break_command (char *arg, int from_tty)
5488 break_command_1 (arg, 0, from_tty, NULL);
5492 tbreak_command (char *arg, int from_tty)
5494 break_command_1 (arg, BP_TEMPFLAG, from_tty, NULL);
5498 hbreak_command (char *arg, int from_tty)
5500 break_command_1 (arg, BP_HARDWAREFLAG, from_tty, NULL);
5504 thbreak_command (char *arg, int from_tty)
5506 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty, NULL);
5510 stop_command (char *arg, int from_tty)
5512 printf_filtered (_("Specify the type of breakpoint to set.\n\
5513 Usage: stop in <function | address>\n\
5514 stop at <line>\n"));
5518 stopin_command (char *arg, int from_tty)
5522 if (arg == (char *) NULL)
5524 else if (*arg != '*')
5529 /* look for a ':'. If this is a line number specification, then
5530 say it is bad, otherwise, it should be an address or
5531 function/method name */
5532 while (*argptr && !hasColon)
5534 hasColon = (*argptr == ':');
5539 badInput = (*argptr != ':'); /* Not a class::method */
5541 badInput = isdigit (*arg); /* a simple line number */
5545 printf_filtered (_("Usage: stop in <function | address>\n"));
5547 break_command_1 (arg, 0, from_tty, NULL);
5551 stopat_command (char *arg, int from_tty)
5555 if (arg == (char *) NULL || *arg == '*') /* no line number */
5562 /* look for a ':'. If there is a '::' then get out, otherwise
5563 it is probably a line number. */
5564 while (*argptr && !hasColon)
5566 hasColon = (*argptr == ':');
5571 badInput = (*argptr == ':'); /* we have class::method */
5573 badInput = !isdigit (*arg); /* not a line number */
5577 printf_filtered (_("Usage: stop at <line>\n"));
5579 break_command_1 (arg, 0, from_tty, NULL);
5582 /* accessflag: hw_write: watch write,
5583 hw_read: watch read,
5584 hw_access: watch access (read or write) */
5586 watch_command_1 (char *arg, int accessflag, int from_tty)
5588 struct breakpoint *b;
5589 struct symtab_and_line sal;
5590 struct expression *exp;
5591 struct block *exp_valid_block;
5592 struct value *val, *mark;
5593 struct frame_info *frame;
5594 struct frame_info *prev_frame = NULL;
5595 char *exp_start = NULL;
5596 char *exp_end = NULL;
5597 char *tok, *end_tok;
5599 char *cond_start = NULL;
5600 char *cond_end = NULL;
5601 struct expression *cond = NULL;
5602 int i, other_type_used, target_resources_ok = 0;
5603 enum bptype bp_type;
5606 init_sal (&sal); /* initialize to zeroes */
5608 /* Parse arguments. */
5609 innermost_block = NULL;
5611 exp = parse_exp_1 (&arg, 0, 0);
5613 exp_valid_block = innermost_block;
5614 mark = value_mark ();
5615 val = evaluate_expression (exp);
5616 release_value (val);
5617 if (value_lazy (val))
5618 value_fetch_lazy (val);
5621 while (*tok == ' ' || *tok == '\t')
5625 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5628 toklen = end_tok - tok;
5629 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5631 tok = cond_start = end_tok + 1;
5632 cond = parse_exp_1 (&tok, 0, 0);
5636 error (_("Junk at end of command."));
5638 if (accessflag == hw_read)
5639 bp_type = bp_read_watchpoint;
5640 else if (accessflag == hw_access)
5641 bp_type = bp_access_watchpoint;
5643 bp_type = bp_hardware_watchpoint;
5645 mem_cnt = can_use_hardware_watchpoint (val);
5646 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5647 error (_("Expression cannot be implemented with read/access watchpoint."));
5650 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5651 target_resources_ok =
5652 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5654 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5655 error (_("Target does not support this type of hardware watchpoint."));
5657 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5658 error (_("Target can only support one kind of HW watchpoint at a time."));
5661 #if defined(HPUXHPPA)
5662 /* On HP-UX if you set a h/w
5663 watchpoint before the "run" command, the inferior dies with a e.g.,
5664 SIGILL once you start it. I initially believed this was due to a
5665 bad interaction between page protection traps and the initial
5666 startup sequence by the dynamic linker.
5668 However, I tried avoiding that by having HP-UX's implementation of
5669 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5670 yet, which forced slow watches before a "run" or "attach", and it
5671 still fails somewhere in the startup code.
5673 Until I figure out what's happening, I'm disallowing watches altogether
5674 before the "run" or "attach" command. We'll tell the user they must
5675 set watches after getting the program started. */
5676 if (!target_has_execution)
5678 warning (_("can't do that without a running program; try \"break main\"), \"run\" first");
5681 #endif /* HPUXHPPA */
5683 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5684 watchpoint could not be set. */
5685 if (!mem_cnt || target_resources_ok <= 0)
5686 bp_type = bp_watchpoint;
5688 /* Now set up the breakpoint. */
5689 b = set_raw_breakpoint (sal, bp_type);
5690 set_breakpoint_count (breakpoint_count + 1);
5691 b->number = breakpoint_count;
5692 b->disposition = disp_donttouch;
5694 b->exp_valid_block = exp_valid_block;
5695 b->exp_string = savestring (exp_start, exp_end - exp_start);
5699 b->cond_string = savestring (cond_start, cond_end - cond_start);
5703 frame = block_innermost_frame (exp_valid_block);
5706 prev_frame = get_prev_frame (frame);
5707 b->watchpoint_frame = get_frame_id (frame);
5711 memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame));
5714 /* If the expression is "local", then set up a "watchpoint scope"
5715 breakpoint at the point where we've left the scope of the watchpoint
5717 if (innermost_block)
5721 struct breakpoint *scope_breakpoint;
5722 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
5723 bp_watchpoint_scope);
5725 scope_breakpoint->enable_state = bp_enabled;
5727 /* Automatically delete the breakpoint when it hits. */
5728 scope_breakpoint->disposition = disp_del;
5730 /* Only break in the proper frame (help with recursion). */
5731 scope_breakpoint->frame_id = get_frame_id (prev_frame);
5733 /* Set the address at which we will stop. */
5734 scope_breakpoint->loc->requested_address
5735 = get_frame_pc (prev_frame);
5736 scope_breakpoint->loc->address
5737 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
5738 scope_breakpoint->type);
5740 /* The scope breakpoint is related to the watchpoint. We
5741 will need to act on them together. */
5742 b->related_breakpoint = scope_breakpoint;
5745 value_free_to_mark (mark);
5749 /* Return count of locations need to be watched and can be handled
5750 in hardware. If the watchpoint can not be handled
5751 in hardware return zero. */
5753 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5754 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5755 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
5759 can_use_hardware_watchpoint (struct value *v)
5761 int found_memory_cnt = 0;
5762 struct value *head = v;
5764 /* Did the user specifically forbid us to use hardware watchpoints? */
5765 if (!can_use_hw_watchpoints)
5768 /* Make sure that the value of the expression depends only upon
5769 memory contents, and values computed from them within GDB. If we
5770 find any register references or function calls, we can't use a
5771 hardware watchpoint.
5773 The idea here is that evaluating an expression generates a series
5774 of values, one holding the value of every subexpression. (The
5775 expression a*b+c has five subexpressions: a, b, a*b, c, and
5776 a*b+c.) GDB's values hold almost enough information to establish
5777 the criteria given above --- they identify memory lvalues,
5778 register lvalues, computed values, etcetera. So we can evaluate
5779 the expression, and then scan the chain of values that leaves
5780 behind to decide whether we can detect any possible change to the
5781 expression's final value using only hardware watchpoints.
5783 However, I don't think that the values returned by inferior
5784 function calls are special in any way. So this function may not
5785 notice that an expression involving an inferior function call
5786 can't be watched with hardware watchpoints. FIXME. */
5787 for (; v; v = value_next (v))
5789 if (VALUE_LVAL (v) == lval_memory)
5792 /* A lazy memory lvalue is one that GDB never needed to fetch;
5793 we either just used its address (e.g., `a' in `a.b') or
5794 we never needed it at all (e.g., `a' in `a,b'). */
5798 /* Ahh, memory we actually used! Check if we can cover
5799 it with hardware watchpoints. */
5800 struct type *vtype = check_typedef (value_type (v));
5802 /* We only watch structs and arrays if user asked for it
5803 explicitly, never if they just happen to appear in a
5804 middle of some value chain. */
5806 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5807 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5809 CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
5810 int len = TYPE_LENGTH (value_type (v));
5812 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5819 else if (VALUE_LVAL (v) != not_lval
5820 && deprecated_value_modifiable (v) == 0)
5821 return 0; /* ??? What does this represent? */
5822 else if (VALUE_LVAL (v) == lval_register)
5823 return 0; /* cannot watch a register with a HW watchpoint */
5826 /* The expression itself looks suitable for using a hardware
5827 watchpoint, but give the target machine a chance to reject it. */
5828 return found_memory_cnt;
5832 watch_command_wrapper (char *arg, int from_tty)
5834 watch_command (arg, from_tty);
5838 watch_command (char *arg, int from_tty)
5840 watch_command_1 (arg, hw_write, from_tty);
5844 rwatch_command_wrapper (char *arg, int from_tty)
5846 rwatch_command (arg, from_tty);
5850 rwatch_command (char *arg, int from_tty)
5852 watch_command_1 (arg, hw_read, from_tty);
5856 awatch_command_wrapper (char *arg, int from_tty)
5858 awatch_command (arg, from_tty);
5862 awatch_command (char *arg, int from_tty)
5864 watch_command_1 (arg, hw_access, from_tty);
5868 /* Helper routines for the until_command routine in infcmd.c. Here
5869 because it uses the mechanisms of breakpoints. */
5871 /* This function is called by fetch_inferior_event via the
5872 cmd_continuation pointer, to complete the until command. It takes
5873 care of cleaning up the temporary breakpoints set up by the until
5876 until_break_command_continuation (struct continuation_arg *arg)
5878 struct cleanup *cleanups;
5880 cleanups = (struct cleanup *) arg->data.pointer;
5881 do_exec_cleanups (cleanups);
5885 until_break_command (char *arg, int from_tty, int anywhere)
5887 struct symtabs_and_lines sals;
5888 struct symtab_and_line sal;
5889 struct frame_info *prev_frame = get_prev_frame (deprecated_selected_frame);
5890 struct breakpoint *breakpoint;
5891 struct cleanup *old_chain;
5892 struct continuation_arg *arg1;
5895 clear_proceed_status ();
5897 /* Set a breakpoint where the user wants it and at return from
5900 if (default_breakpoint_valid)
5901 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
5902 default_breakpoint_line, (char ***) NULL, NULL);
5904 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
5905 0, (char ***) NULL, NULL);
5907 if (sals.nelts != 1)
5908 error (_("Couldn't get information on specified line."));
5911 xfree (sals.sals); /* malloc'd, so freed */
5914 error (_("Junk at end of arguments."));
5916 resolve_sal_pc (&sal);
5919 /* If the user told us to continue until a specified location,
5920 we don't specify a frame at which we need to stop. */
5921 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
5923 /* Otherwise, specify the current frame, because we want to stop only
5924 at the very same frame. */
5925 breakpoint = set_momentary_breakpoint (sal,
5926 get_frame_id (deprecated_selected_frame),
5929 if (!target_can_async_p ())
5930 old_chain = make_cleanup_delete_breakpoint (breakpoint);
5932 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
5934 /* If we are running asynchronously, and the target supports async
5935 execution, we are not waiting for the target to stop, in the call
5936 tp proceed, below. This means that we cannot delete the
5937 brekpoints until the target has actually stopped. The only place
5938 where we get a chance to do that is in fetch_inferior_event, so
5939 we must set things up for that. */
5941 if (target_can_async_p ())
5943 /* In this case the arg for the continuation is just the point
5944 in the exec_cleanups chain from where to start doing
5945 cleanups, because all the continuation does is the cleanups in
5946 the exec_cleanup_chain. */
5948 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
5950 arg1->data.pointer = old_chain;
5952 add_continuation (until_break_command_continuation, arg1);
5955 /* Keep within the current frame, or in frames called by the current
5959 sal = find_pc_line (get_frame_pc (prev_frame), 0);
5960 sal.pc = get_frame_pc (prev_frame);
5961 breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
5963 if (!target_can_async_p ())
5964 make_cleanup_delete_breakpoint (breakpoint);
5966 make_exec_cleanup_delete_breakpoint (breakpoint);
5969 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
5970 /* Do the cleanups now, anly if we are not running asynchronously,
5971 of if we are, but the target is still synchronous. */
5972 if (!target_can_async_p ())
5973 do_cleanups (old_chain);
5977 ep_skip_leading_whitespace (char **s)
5979 if ((s == NULL) || (*s == NULL))
5981 while (isspace (**s))
5985 /* This function examines a string, and attempts to find a token
5986 that might be an event name in the leading characters. If a
5987 possible match is found, a pointer to the last character of
5988 the token is returned. Else, NULL is returned. */
5991 ep_find_event_name_end (char *arg)
5994 char *event_name_end = NULL;
5996 /* If we could depend upon the presense of strrpbrk, we'd use that... */
6000 /* We break out of the loop when we find a token delimiter.
6001 Basically, we're looking for alphanumerics and underscores;
6002 anything else delimites the token. */
6005 if (!isalnum (*s) && (*s != '_'))
6011 return event_name_end;
6015 /* This function attempts to parse an optional "if <cond>" clause
6016 from the arg string. If one is not found, it returns NULL.
6018 Else, it returns a pointer to the condition string. (It does not
6019 attempt to evaluate the string against a particular block.) And,
6020 it updates arg to point to the first character following the parsed
6021 if clause in the arg string. */
6024 ep_parse_optional_if_clause (char **arg)
6028 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
6031 /* Skip the "if" keyword. */
6034 /* Skip any extra leading whitespace, and record the start of the
6035 condition string. */
6036 ep_skip_leading_whitespace (arg);
6039 /* Assume that the condition occupies the remainder of the arg string. */
6040 (*arg) += strlen (cond_string);
6045 /* This function attempts to parse an optional filename from the arg
6046 string. If one is not found, it returns NULL.
6048 Else, it returns a pointer to the parsed filename. (This function
6049 makes no attempt to verify that a file of that name exists, or is
6050 accessible.) And, it updates arg to point to the first character
6051 following the parsed filename in the arg string.
6053 Note that clients needing to preserve the returned filename for
6054 future access should copy it to their own buffers. */
6056 ep_parse_optional_filename (char **arg)
6058 static char filename[1024];
6063 if ((*arg_p == '\0') || isspace (*arg_p))
6081 /* Commands to deal with catching events, such as signals, exceptions,
6082 process start/exit, etc. */
6086 catch_fork, catch_vfork
6091 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6094 char *cond_string = NULL;
6096 ep_skip_leading_whitespace (&arg);
6098 /* The allowed syntax is:
6100 catch [v]fork if <cond>
6102 First, check if there's an if clause. */
6103 cond_string = ep_parse_optional_if_clause (&arg);
6105 if ((*arg != '\0') && !isspace (*arg))
6106 error (_("Junk at end of arguments."));
6108 /* If this target supports it, create a fork or vfork catchpoint
6109 and enable reporting of such events. */
6113 create_fork_event_catchpoint (tempflag, cond_string);
6116 create_vfork_event_catchpoint (tempflag, cond_string);
6119 error (_("unsupported or unknown fork kind; cannot catch it"));
6125 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6127 char *cond_string = NULL;
6129 ep_skip_leading_whitespace (&arg);
6131 /* The allowed syntax is:
6133 catch exec if <cond>
6135 First, check if there's an if clause. */
6136 cond_string = ep_parse_optional_if_clause (&arg);
6138 if ((*arg != '\0') && !isspace (*arg))
6139 error (_("Junk at end of arguments."));
6141 /* If this target supports it, create an exec catchpoint
6142 and enable reporting of such events. */
6143 create_exec_event_catchpoint (tempflag, cond_string);
6147 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6149 char *dll_pathname = NULL;
6150 char *cond_string = NULL;
6152 ep_skip_leading_whitespace (&arg);
6154 /* The allowed syntax is:
6156 catch load if <cond>
6157 catch load <filename>
6158 catch load <filename> if <cond>
6160 The user is not allowed to specify the <filename> after an
6163 We'll ignore the pathological case of a file named "if".
6165 First, check if there's an if clause. If so, then there
6166 cannot be a filename. */
6167 cond_string = ep_parse_optional_if_clause (&arg);
6169 /* If there was an if clause, then there cannot be a filename.
6170 Else, there might be a filename and an if clause. */
6171 if (cond_string == NULL)
6173 dll_pathname = ep_parse_optional_filename (&arg);
6174 ep_skip_leading_whitespace (&arg);
6175 cond_string = ep_parse_optional_if_clause (&arg);
6178 if ((*arg != '\0') && !isspace (*arg))
6179 error (_("Junk at end of arguments."));
6181 /* Create a load breakpoint that only triggers when a load of
6182 the specified dll (or any dll, if no pathname was specified)
6184 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6185 dll_pathname, cond_string);
6189 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6191 char *dll_pathname = NULL;
6192 char *cond_string = NULL;
6194 ep_skip_leading_whitespace (&arg);
6196 /* The allowed syntax is:
6198 catch unload if <cond>
6199 catch unload <filename>
6200 catch unload <filename> if <cond>
6202 The user is not allowed to specify the <filename> after an
6205 We'll ignore the pathological case of a file named "if".
6207 First, check if there's an if clause. If so, then there
6208 cannot be a filename. */
6209 cond_string = ep_parse_optional_if_clause (&arg);
6211 /* If there was an if clause, then there cannot be a filename.
6212 Else, there might be a filename and an if clause. */
6213 if (cond_string == NULL)
6215 dll_pathname = ep_parse_optional_filename (&arg);
6216 ep_skip_leading_whitespace (&arg);
6217 cond_string = ep_parse_optional_if_clause (&arg);
6220 if ((*arg != '\0') && !isspace (*arg))
6221 error (_("Junk at end of arguments."));
6223 /* Create an unload breakpoint that only triggers when an unload of
6224 the specified dll (or any dll, if no pathname was specified)
6226 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6227 dll_pathname, cond_string);
6230 /* Commands to deal with catching exceptions. */
6232 /* Set a breakpoint at the specified callback routine for an
6233 exception event callback */
6236 create_exception_catchpoint (int tempflag, char *cond_string,
6237 enum exception_event_kind ex_event,
6238 struct symtab_and_line *sal)
6240 struct breakpoint *b;
6241 int thread = -1; /* All threads. */
6244 if (!sal) /* no exception support? */
6249 case EX_EVENT_THROW:
6250 bptype = bp_catch_throw;
6252 case EX_EVENT_CATCH:
6253 bptype = bp_catch_catch;
6255 default: /* error condition */
6256 error (_("Internal error -- invalid catchpoint kind"));
6259 b = set_raw_breakpoint (*sal, bptype);
6260 set_breakpoint_count (breakpoint_count + 1);
6261 b->number = breakpoint_count;
6263 b->cond_string = (cond_string == NULL) ?
6264 NULL : savestring (cond_string, strlen (cond_string));
6266 b->addr_string = NULL;
6267 b->enable_state = bp_enabled;
6268 b->disposition = tempflag ? disp_del : disp_donttouch;
6272 static enum print_stop_action
6273 print_exception_catchpoint (struct breakpoint *b)
6275 annotate_catchpoint (b->number);
6277 if (strstr (b->addr_string, "throw") != NULL)
6278 printf_filtered (_("\nCatchpoint %d (exception thrown)\n"),
6281 printf_filtered (_("\nCatchpoint %d (exception caught)\n"),
6284 return PRINT_SRC_AND_LOC;
6288 print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6293 ui_out_field_core_addr (uiout, "addr", b->loc->address);
6296 *last_addr = b->loc->address;
6297 if (strstr (b->addr_string, "throw") != NULL)
6298 ui_out_field_string (uiout, "what", "exception throw");
6300 ui_out_field_string (uiout, "what", "exception catch");
6304 print_mention_exception_catchpoint (struct breakpoint *b)
6306 if (strstr (b->addr_string, "throw") != NULL)
6307 printf_filtered (_("Catchpoint %d (throw)"), b->number);
6309 printf_filtered (_("Catchpoint %d (catch)"), b->number);
6312 static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6313 print_exception_catchpoint,
6314 print_one_exception_catchpoint,
6315 print_mention_exception_catchpoint
6319 handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6320 enum exception_event_kind ex_event, int from_tty)
6322 char *trigger_func_name, *nameptr;
6323 struct symtabs_and_lines sals;
6324 struct breakpoint *b;
6326 if (ex_event == EX_EVENT_CATCH)
6327 trigger_func_name = xstrdup ("__cxa_begin_catch");
6329 trigger_func_name = xstrdup ("__cxa_throw");
6331 nameptr = trigger_func_name;
6332 sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
6333 if (sals.nelts == 0)
6335 xfree (trigger_func_name);
6339 b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
6340 set_breakpoint_count (breakpoint_count + 1);
6341 b->number = breakpoint_count;
6343 b->cond_string = (cond_string == NULL) ?
6344 NULL : savestring (cond_string, strlen (cond_string));
6346 b->addr_string = trigger_func_name;
6347 b->enable_state = bp_enabled;
6348 b->disposition = tempflag ? disp_del : disp_donttouch;
6349 b->ops = &gnu_v3_exception_catchpoint_ops;
6356 /* Deal with "catch catch" and "catch throw" commands */
6359 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6360 int tempflag, int from_tty)
6362 char *cond_string = NULL;
6363 struct symtab_and_line *sal = NULL;
6365 ep_skip_leading_whitespace (&arg);
6367 cond_string = ep_parse_optional_if_clause (&arg);
6369 if ((*arg != '\0') && !isspace (*arg))
6370 error (_("Junk at end of arguments."));
6372 if ((ex_event != EX_EVENT_THROW) &&
6373 (ex_event != EX_EVENT_CATCH))
6374 error (_("Unsupported or unknown exception event; cannot catch it"));
6376 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6379 /* See if we can find a callback routine */
6380 sal = target_enable_exception_callback (ex_event, 1);
6384 /* We have callbacks from the runtime system for exceptions.
6385 Set a breakpoint on the sal found, if no errors */
6386 if (sal != (struct symtab_and_line *) -1)
6387 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6389 return; /* something went wrong with setting up callbacks */
6392 warning (_("Unsupported with this platform/compiler combination."));
6395 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6396 inside a catch_errors */
6399 cover_target_enable_exception_callback (void *arg)
6401 args_for_catchpoint_enable *args = arg;
6402 struct symtab_and_line *sal;
6403 sal = target_enable_exception_callback (args->kind, args->enable_p);
6406 else if (sal == (struct symtab_and_line *) -1)
6409 return 1; /*is valid */
6413 catch_command_1 (char *arg, int tempflag, int from_tty)
6416 /* The first argument may be an event name, such as "start" or "load".
6417 If so, then handle it as such. If it doesn't match an event name,
6418 then attempt to interpret it as an exception name. (This latter is
6419 the v4.16-and-earlier GDB meaning of the "catch" command.)
6421 First, try to find the bounds of what might be an event name. */
6422 char *arg1_start = arg;
6426 if (arg1_start == NULL)
6428 /* Old behaviour was to use pre-v-4.16 syntax */
6429 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6431 /* Now, this is not allowed */
6432 error (_("Catch requires an event name."));
6435 arg1_end = ep_find_event_name_end (arg1_start);
6436 if (arg1_end == NULL)
6437 error (_("catch requires an event"));
6438 arg1_length = arg1_end + 1 - arg1_start;
6440 /* Try to match what we found against known event names. */
6441 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6443 error (_("Catch of signal not yet implemented"));
6445 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6447 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6448 tempflag, from_tty);
6450 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6452 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6453 tempflag, from_tty);
6455 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6457 error (_("Catch of thread_start not yet implemented"));
6459 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6461 error (_("Catch of thread_exit not yet implemented"));
6463 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6465 error (_("Catch of thread_join not yet implemented"));
6467 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6469 error (_("Catch of start not yet implemented"));
6471 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6473 error (_("Catch of exit not yet implemented"));
6475 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6477 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6479 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6481 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6483 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6485 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6487 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6489 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6491 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6493 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6495 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6497 error (_("Catch of stop not yet implemented"));
6500 /* This doesn't appear to be an event name */
6504 /* Pre-v.4.16 behaviour was to treat the argument
6505 as the name of an exception */
6506 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6507 /* Now this is not allowed */
6508 error (_("Unknown event kind specified for catch"));
6513 /* Used by the gui, could be made a worker for other things. */
6516 set_breakpoint_sal (struct symtab_and_line sal)
6518 struct breakpoint *b;
6519 b = set_raw_breakpoint (sal, bp_breakpoint);
6520 set_breakpoint_count (breakpoint_count + 1);
6521 b->number = breakpoint_count;
6528 catch_command (char *arg, int from_tty)
6530 catch_command_1 (arg, 0, from_tty);
6535 tcatch_command (char *arg, int from_tty)
6537 catch_command_1 (arg, 1, from_tty);
6540 /* Delete breakpoints by address or line. */
6543 clear_command (char *arg, int from_tty)
6545 struct breakpoint *b, *tmp, *prev, *found;
6547 struct symtabs_and_lines sals;
6548 struct symtab_and_line sal;
6553 sals = decode_line_spec (arg, 1);
6558 sals.sals = (struct symtab_and_line *)
6559 xmalloc (sizeof (struct symtab_and_line));
6560 make_cleanup (xfree, sals.sals);
6561 init_sal (&sal); /* initialize to zeroes */
6562 sal.line = default_breakpoint_line;
6563 sal.symtab = default_breakpoint_symtab;
6564 sal.pc = default_breakpoint_address;
6565 if (sal.symtab == 0)
6566 error (_("No source file specified."));
6574 /* For each line spec given, delete bps which correspond
6575 to it. Do it in two passes, solely to preserve the current
6576 behavior that from_tty is forced true if we delete more than
6580 for (i = 0; i < sals.nelts; i++)
6582 /* If exact pc given, clear bpts at that pc.
6583 If line given (pc == 0), clear all bpts on specified line.
6584 If defaulting, clear all bpts on default line
6587 defaulting sal.pc != 0 tests to do
6592 1 0 <can't happen> */
6597 /* Find all matching breakpoints, remove them from the
6598 breakpoint chain, and add them to the 'found' chain. */
6599 ALL_BREAKPOINTS_SAFE (b, tmp)
6601 /* Are we going to delete b? */
6602 if (b->type != bp_none
6603 && b->type != bp_watchpoint
6604 && b->type != bp_hardware_watchpoint
6605 && b->type != bp_read_watchpoint
6606 && b->type != bp_access_watchpoint
6607 /* Not if b is a watchpoint of any sort... */
6608 && (((sal.pc && (b->loc->address == sal.pc))
6609 && (!section_is_overlay (b->loc->section)
6610 || b->loc->section == sal.section))
6611 /* Yes, if sal.pc matches b (modulo overlays). */
6612 || ((default_match || (0 == sal.pc))
6613 && b->source_file != NULL
6614 && sal.symtab != NULL
6615 && strcmp (b->source_file, sal.symtab->filename) == 0
6616 && b->line_number == sal.line)))
6617 /* Yes, if sal source file and line matches b. */
6619 /* Remove it from breakpoint_chain... */
6620 if (b == breakpoint_chain)
6622 /* b is at the head of the list */
6623 breakpoint_chain = b->next;
6627 prev->next = b->next;
6629 /* And add it to 'found' chain. */
6635 /* Keep b, and keep a pointer to it. */
6640 /* Now go thru the 'found' chain and delete them. */
6644 error (_("No breakpoint at %s."), arg);
6646 error (_("No breakpoint at this line."));
6650 from_tty = 1; /* Always report if deleted more than one */
6654 printf_unfiltered (_("Deleted breakpoint "));
6656 printf_unfiltered (_("Deleted breakpoints "));
6658 breakpoints_changed ();
6662 printf_unfiltered ("%d ", found->number);
6664 delete_breakpoint (found);
6668 putchar_unfiltered ('\n');
6671 /* Delete breakpoint in BS if they are `delete' breakpoints and
6672 all breakpoints that are marked for deletion, whether hit or not.
6673 This is called after any breakpoint is hit, or after errors. */
6676 breakpoint_auto_delete (bpstat bs)
6678 struct breakpoint *b, *temp;
6680 for (; bs; bs = bs->next)
6681 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6683 delete_breakpoint (bs->breakpoint_at);
6685 ALL_BREAKPOINTS_SAFE (b, temp)
6687 if (b->disposition == disp_del_at_next_stop)
6688 delete_breakpoint (b);
6692 /* Delete a breakpoint and clean up all traces of it in the data
6696 delete_breakpoint (struct breakpoint *bpt)
6698 struct breakpoint *b;
6700 struct bp_location *loc;
6702 gdb_assert (bpt != NULL);
6704 /* Has this bp already been deleted? This can happen because multiple
6705 lists can hold pointers to bp's. bpstat lists are especial culprits.
6707 One example of this happening is a watchpoint's scope bp. When the
6708 scope bp triggers, we notice that the watchpoint is out of scope, and
6709 delete it. We also delete its scope bp. But the scope bp is marked
6710 "auto-deleting", and is already on a bpstat. That bpstat is then
6711 checked for auto-deleting bp's, which are deleted.
6713 A real solution to this problem might involve reference counts in bp's,
6714 and/or giving them pointers back to their referencing bpstat's, and
6715 teaching delete_breakpoint to only free a bp's storage when no more
6716 references were extent. A cheaper bandaid was chosen. */
6717 if (bpt->type == bp_none)
6720 if (deprecated_delete_breakpoint_hook)
6721 deprecated_delete_breakpoint_hook (bpt);
6722 breakpoint_delete_event (bpt->number);
6724 if (bpt->loc->inserted)
6725 remove_breakpoint (bpt->loc, mark_inserted);
6727 free_valchain (bpt->loc);
6729 if (breakpoint_chain == bpt)
6730 breakpoint_chain = bpt->next;
6732 if (bp_location_chain == bpt->loc)
6733 bp_location_chain = bpt->loc->next;
6735 /* If we have callback-style exception catchpoints, don't go through
6736 the adjustments to the C++ runtime library etc. if the inferior
6737 isn't actually running. target_enable_exception_callback for a
6738 null target ops vector gives an undesirable error message, so we
6739 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6740 exceptions are supported in this way, it's OK for now. FIXME */
6741 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6743 /* Format possible error msg */
6744 char *message = xstrprintf ("Error in deleting catchpoint %d:\n",
6746 struct cleanup *cleanups = make_cleanup (xfree, message);
6747 args_for_catchpoint_enable args;
6748 args.kind = bpt->type == bp_catch_catch ?
6749 EX_EVENT_CATCH : EX_EVENT_THROW;
6751 catch_errors (cover_target_enable_exception_callback, &args,
6752 message, RETURN_MASK_ALL);
6753 do_cleanups (cleanups);
6760 b->next = bpt->next;
6764 ALL_BP_LOCATIONS (loc)
6765 if (loc->next == bpt->loc)
6767 loc->next = bpt->loc->next;
6771 check_duplicates (bpt);
6772 /* If this breakpoint was inserted, and there is another breakpoint
6773 at the same address, we need to insert the other breakpoint. */
6774 if (bpt->loc->inserted
6775 && bpt->type != bp_hardware_watchpoint
6776 && bpt->type != bp_read_watchpoint
6777 && bpt->type != bp_access_watchpoint
6778 && bpt->type != bp_catch_fork
6779 && bpt->type != bp_catch_vfork
6780 && bpt->type != bp_catch_exec)
6783 if (b->loc->address == bpt->loc->address
6784 && b->loc->section == bpt->loc->section
6785 && !b->loc->duplicate
6786 && b->enable_state != bp_disabled
6787 && b->enable_state != bp_shlib_disabled
6789 && b->enable_state != bp_call_disabled)
6793 /* We should never reach this point if there is a permanent
6794 breakpoint at the same address as the one being deleted.
6795 If there is a permanent breakpoint somewhere, it should
6796 always be the only one inserted. */
6797 if (b->enable_state == bp_permanent)
6798 internal_error (__FILE__, __LINE__,
6799 _("another breakpoint was inserted on top of "
6800 "a permanent breakpoint"));
6802 if (b->type == bp_hardware_breakpoint)
6803 val = target_insert_hw_breakpoint (b->loc->address, b->loc->shadow_contents);
6805 val = target_insert_breakpoint (b->loc->address, b->loc->shadow_contents);
6807 /* If there was an error in the insert, print a message, then stop execution. */
6810 struct ui_file *tmp_error_stream = mem_fileopen ();
6811 make_cleanup_ui_file_delete (tmp_error_stream);
6814 if (b->type == bp_hardware_breakpoint)
6816 fprintf_unfiltered (tmp_error_stream,
6817 "Cannot insert hardware breakpoint %d.\n"
6818 "You may have requested too many hardware breakpoints.\n",
6823 fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
6824 fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
6825 deprecated_print_address_numeric (b->loc->address, 1, tmp_error_stream);
6826 fprintf_filtered (tmp_error_stream, ": %s.\n",
6827 safe_strerror (val));
6830 fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
6831 target_terminal_ours_for_output ();
6832 error_stream(tmp_error_stream);
6835 b->loc->inserted = 1;
6839 free_command_lines (&bpt->commands);
6842 if (bpt->cond_string != NULL)
6843 xfree (bpt->cond_string);
6844 if (bpt->addr_string != NULL)
6845 xfree (bpt->addr_string);
6846 if (bpt->exp != NULL)
6848 if (bpt->exp_string != NULL)
6849 xfree (bpt->exp_string);
6850 if (bpt->val != NULL)
6851 value_free (bpt->val);
6852 if (bpt->source_file != NULL)
6853 xfree (bpt->source_file);
6854 if (bpt->dll_pathname != NULL)
6855 xfree (bpt->dll_pathname);
6856 if (bpt->triggered_dll_pathname != NULL)
6857 xfree (bpt->triggered_dll_pathname);
6858 if (bpt->exec_pathname != NULL)
6859 xfree (bpt->exec_pathname);
6861 /* Be sure no bpstat's are pointing at it after it's been freed. */
6862 /* FIXME, how can we find all bpstat's?
6863 We just check stop_bpstat for now. */
6864 for (bs = stop_bpstat; bs; bs = bs->next)
6865 if (bs->breakpoint_at == bpt)
6867 bs->breakpoint_at = NULL;
6869 /* bs->commands will be freed later. */
6871 /* On the chance that someone will soon try again to delete this same
6872 bp, we mark it as deleted before freeing its storage. */
6873 bpt->type = bp_none;
6880 do_delete_breakpoint_cleanup (void *b)
6882 delete_breakpoint (b);
6886 make_cleanup_delete_breakpoint (struct breakpoint *b)
6888 return make_cleanup (do_delete_breakpoint_cleanup, b);
6892 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
6894 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
6898 delete_command (char *arg, int from_tty)
6900 struct breakpoint *b, *temp;
6906 int breaks_to_delete = 0;
6908 /* Delete all breakpoints if no argument.
6909 Do not delete internal or call-dummy breakpoints, these
6910 have to be deleted with an explicit breakpoint number argument. */
6913 if (b->type != bp_call_dummy &&
6914 b->type != bp_shlib_event &&
6915 b->type != bp_thread_event &&
6916 b->type != bp_overlay_event &&
6918 breaks_to_delete = 1;
6921 /* Ask user only if there are some breakpoints to delete. */
6923 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
6925 ALL_BREAKPOINTS_SAFE (b, temp)
6927 if (b->type != bp_call_dummy &&
6928 b->type != bp_shlib_event &&
6929 b->type != bp_thread_event &&
6930 b->type != bp_overlay_event &&
6932 delete_breakpoint (b);
6937 map_breakpoint_numbers (arg, delete_breakpoint);
6940 /* Reset a breakpoint given it's struct breakpoint * BINT.
6941 The value we return ends up being the return value from catch_errors.
6942 Unused in this case. */
6945 breakpoint_re_set_one (void *bint)
6947 /* get past catch_errs */
6948 struct breakpoint *b = (struct breakpoint *) bint;
6952 int *not_found_ptr = NULL;
6953 struct symtabs_and_lines sals;
6955 enum enable_state save_enable;
6960 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
6964 case bp_hardware_breakpoint:
6966 case bp_catch_unload:
6967 if (b->addr_string == NULL)
6969 /* Anything without a string can't be re-set. */
6970 delete_breakpoint (b);
6973 /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote:
6975 ``And a hack it is, although Apple's Darwin version of GDB
6976 contains an almost identical hack to implement a "future
6977 break" command. It seems to work in many real world cases,
6978 but it is easy to come up with a test case where the patch
6979 doesn't help at all.''
6981 ``It seems that the way GDB implements breakpoints - in -
6982 shared - libraries was designed for a.out shared library
6983 systems (SunOS 4) where shared libraries were loaded at a
6984 fixed address in memory. Since ELF shared libraries can (and
6985 will) be loaded at any address in memory, things break.
6986 Fixing this is not trivial. Therefore, I'm not sure whether
6987 we should add this hack to the branch only. I cannot
6988 guarantee that things will be fixed on the trunk in the near
6991 In case we have a problem, disable this breakpoint. We'll
6992 restore its status if we succeed. Don't disable a
6993 shlib_disabled breakpoint though. There's a fair chance we
6994 can't re-set it if the shared library it's in hasn't been
7000 save_enable = b->enable_state;
7001 if (b->enable_state != bp_shlib_disabled)
7002 b->enable_state = bp_disabled;
7004 /* If resetting a shlib-disabled breakpoint, we don't want to
7005 see an error message if it is not found since we will expect
7006 this to occur until the shared library is finally reloaded.
7007 We accomplish this by giving decode_line_1 a pointer to use
7008 for silent notification that the symbol is not found. */
7009 not_found_ptr = ¬_found;
7011 set_language (b->language);
7012 input_radix = b->input_radix;
7014 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
7016 for (i = 0; i < sals.nelts; i++)
7018 resolve_sal_pc (&sals.sals[i]);
7020 /* Reparse conditions, they might contain references to the
7022 if (b->cond_string != NULL)
7028 /* Avoid re-freeing b->exp if an error during the call
7032 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7035 /* We need to re-set the breakpoint if the address changes... */
7036 if (b->loc->address != sals.sals[i].pc
7037 /* ...or new and old breakpoints both have source files, and
7038 the source file name or the line number changes... */
7039 || (b->source_file != NULL
7040 && sals.sals[i].symtab != NULL
7041 && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0
7042 || b->line_number != sals.sals[i].line)
7044 /* ...or we switch between having a source file and not having
7046 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7049 if (b->source_file != NULL)
7050 xfree (b->source_file);
7051 if (sals.sals[i].symtab == NULL)
7052 b->source_file = NULL;
7055 savestring (sals.sals[i].symtab->filename,
7056 strlen (sals.sals[i].symtab->filename));
7057 b->line_number = sals.sals[i].line;
7058 b->loc->requested_address = sals.sals[i].pc;
7060 = adjust_breakpoint_address (b->loc->requested_address,
7063 /* Used to check for duplicates here, but that can
7064 cause trouble, as it doesn't check for disabled
7069 /* Might be better to do this just once per breakpoint_re_set,
7070 rather than once for every breakpoint. */
7071 breakpoints_changed ();
7073 b->loc->section = sals.sals[i].section;
7074 b->enable_state = save_enable; /* Restore it, this worked. */
7077 /* Now that this is re-enabled, check_duplicates
7079 check_duplicates (b);
7086 case bp_hardware_watchpoint:
7087 case bp_read_watchpoint:
7088 case bp_access_watchpoint:
7089 innermost_block = NULL;
7090 /* The issue arises of what context to evaluate this in. The
7091 same one as when it was set, but what does that mean when
7092 symbols have been re-read? We could save the filename and
7093 functionname, but if the context is more local than that, the
7094 best we could do would be something like how many levels deep
7095 and which index at that particular level, but that's going to
7096 be less stable than filenames or function names. */
7098 /* So for now, just use a global context. */
7102 /* Avoid re-freeing b->exp if an error during the call to
7103 parse_expression. */
7106 b->exp = parse_expression (b->exp_string);
7107 b->exp_valid_block = innermost_block;
7108 mark = value_mark ();
7111 value_free (b->val);
7112 /* Avoid re-freeing b->val if an error during the call to
7113 evaluate_expression. */
7116 b->val = evaluate_expression (b->exp);
7117 release_value (b->val);
7118 if (value_lazy (b->val) && breakpoint_enabled (b))
7119 value_fetch_lazy (b->val);
7121 if (b->cond_string != NULL)
7127 /* Avoid re-freeing b->exp if an error during the call
7131 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7133 if (breakpoint_enabled (b))
7135 value_free_to_mark (mark);
7137 case bp_catch_catch:
7138 case bp_catch_throw:
7140 /* We needn't really do anything to reset these, since the mask
7141 that requests them is unaffected by e.g., new libraries being
7144 case bp_catch_vfork:
7149 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
7151 /* Delete longjmp and overlay event breakpoints; they will be
7152 reset later by breakpoint_re_set. */
7154 case bp_longjmp_resume:
7155 case bp_overlay_event:
7156 delete_breakpoint (b);
7159 /* This breakpoint is special, it's set up when the inferior
7160 starts and we really don't want to touch it. */
7161 case bp_shlib_event:
7163 /* Like bp_shlib_event, this breakpoint type is special.
7164 Once it is set up, we do not want to touch it. */
7165 case bp_thread_event:
7167 /* Keep temporary breakpoints, which can be encountered when we step
7168 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7169 Otherwise these should have been blown away via the cleanup chain
7170 or by breakpoint_init_inferior when we rerun the executable. */
7173 case bp_watchpoint_scope:
7175 case bp_step_resume:
7182 /* Re-set all breakpoints after symbols have been re-loaded. */
7184 breakpoint_re_set (void)
7186 struct breakpoint *b, *temp;
7187 enum language save_language;
7188 int save_input_radix;
7190 save_language = current_language->la_language;
7191 save_input_radix = input_radix;
7192 ALL_BREAKPOINTS_SAFE (b, temp)
7194 /* Format possible error msg */
7195 char *message = xstrprintf ("Error in re-setting breakpoint %d:\n",
7197 struct cleanup *cleanups = make_cleanup (xfree, message);
7198 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7199 do_cleanups (cleanups);
7201 set_language (save_language);
7202 input_radix = save_input_radix;
7204 if (GET_LONGJMP_TARGET_P ())
7206 create_longjmp_breakpoint ("longjmp");
7207 create_longjmp_breakpoint ("_longjmp");
7208 create_longjmp_breakpoint ("siglongjmp");
7209 create_longjmp_breakpoint ("_siglongjmp");
7210 create_longjmp_breakpoint (NULL);
7213 create_overlay_event_breakpoint ("_ovly_debug_event");
7216 /* Reset the thread number of this breakpoint:
7218 - If the breakpoint is for all threads, leave it as-is.
7219 - Else, reset it to the current thread for inferior_ptid. */
7221 breakpoint_re_set_thread (struct breakpoint *b)
7223 if (b->thread != -1)
7225 if (in_thread_list (inferior_ptid))
7226 b->thread = pid_to_thread_id (inferior_ptid);
7230 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7231 If from_tty is nonzero, it prints a message to that effect,
7232 which ends with a period (no newline). */
7235 set_ignore_count (int bptnum, int count, int from_tty)
7237 struct breakpoint *b;
7243 if (b->number == bptnum)
7245 b->ignore_count = count;
7249 printf_filtered (_("Will stop next time breakpoint %d is reached."),
7251 else if (count == 1)
7252 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
7255 printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
7258 breakpoints_changed ();
7259 breakpoint_modify_event (b->number);
7263 error (_("No breakpoint number %d."), bptnum);
7266 /* Clear the ignore counts of all breakpoints. */
7268 breakpoint_clear_ignore_counts (void)
7270 struct breakpoint *b;
7273 b->ignore_count = 0;
7276 /* Command to set ignore-count of breakpoint N to COUNT. */
7279 ignore_command (char *args, int from_tty)
7285 error_no_arg (_("a breakpoint number"));
7287 num = get_number (&p);
7289 error (_("bad breakpoint number: '%s'"), args);
7291 error (_("Second argument (specified ignore-count) is missing."));
7293 set_ignore_count (num,
7294 longest_to_int (value_as_long (parse_and_eval (p))),
7297 printf_filtered ("\n");
7300 /* Call FUNCTION on each of the breakpoints
7301 whose numbers are given in ARGS. */
7304 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7309 struct breakpoint *b, *tmp;
7313 error_no_arg (_("one or more breakpoint numbers"));
7320 num = get_number_or_range (&p1);
7323 warning (_("bad breakpoint number at or near '%s'"), p);
7327 ALL_BREAKPOINTS_SAFE (b, tmp)
7328 if (b->number == num)
7330 struct breakpoint *related_breakpoint = b->related_breakpoint;
7333 if (related_breakpoint)
7334 function (related_breakpoint);
7338 printf_unfiltered (_("No breakpoint number %d.\n"), num);
7344 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7345 If from_tty is nonzero, it prints a message to that effect,
7346 which ends with a period (no newline). */
7349 disable_breakpoint (struct breakpoint *bpt)
7351 /* Never disable a watchpoint scope breakpoint; we want to
7352 hit them when we leave scope so we can delete both the
7353 watchpoint and its scope breakpoint at that time. */
7354 if (bpt->type == bp_watchpoint_scope)
7357 /* You can't disable permanent breakpoints. */
7358 if (bpt->enable_state == bp_permanent)
7361 bpt->enable_state = bp_disabled;
7363 check_duplicates (bpt);
7365 if (deprecated_modify_breakpoint_hook)
7366 deprecated_modify_breakpoint_hook (bpt);
7367 breakpoint_modify_event (bpt->number);
7371 disable_command (char *args, int from_tty)
7373 struct breakpoint *bpt;
7375 ALL_BREAKPOINTS (bpt)
7379 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
7384 case bp_catch_unload:
7386 case bp_catch_vfork:
7388 case bp_catch_catch:
7389 case bp_catch_throw:
7390 case bp_hardware_breakpoint:
7392 case bp_hardware_watchpoint:
7393 case bp_read_watchpoint:
7394 case bp_access_watchpoint:
7395 disable_breakpoint (bpt);
7400 map_breakpoint_numbers (args, disable_breakpoint);
7404 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7406 int target_resources_ok, other_type_used;
7409 if (bpt->type == bp_hardware_breakpoint)
7412 i = hw_breakpoint_used_count ();
7413 target_resources_ok =
7414 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7416 if (target_resources_ok == 0)
7417 error (_("No hardware breakpoint support in the target."));
7418 else if (target_resources_ok < 0)
7419 error (_("Hardware breakpoints used exceeds limit."));
7424 if (bpt->enable_state != bp_enabled)
7426 /* When enabling a pending breakpoint, we need to check if the breakpoint
7427 is resolvable since shared libraries could have been loaded
7428 after the breakpoint was disabled. */
7429 breakpoints_changed ();
7430 if (resolve_pending_breakpoint (bpt) == GDB_RC_OK)
7432 delete_breakpoint (bpt);
7435 bpt->enable_state = bp_enabled;
7436 bpt->disposition = disposition;
7439 else /* Not a pending breakpoint. */
7441 if (bpt->enable_state != bp_permanent)
7442 bpt->enable_state = bp_enabled;
7443 bpt->disposition = disposition;
7444 check_duplicates (bpt);
7445 breakpoints_changed ();
7447 if (bpt->type == bp_watchpoint ||
7448 bpt->type == bp_hardware_watchpoint ||
7449 bpt->type == bp_read_watchpoint ||
7450 bpt->type == bp_access_watchpoint)
7452 struct frame_id saved_frame_id;
7454 saved_frame_id = get_frame_id (get_selected_frame (NULL));
7455 if (bpt->exp_valid_block != NULL)
7457 struct frame_info *fr =
7458 fr = frame_find_by_id (bpt->watchpoint_frame);
7461 printf_filtered (_("\
7462 Cannot enable watchpoint %d because the block in which its expression\n\
7463 is valid is not currently in scope.\n"), bpt->number);
7464 bpt->enable_state = bp_disabled;
7470 value_free (bpt->val);
7471 mark = value_mark ();
7472 bpt->val = evaluate_expression (bpt->exp);
7473 release_value (bpt->val);
7474 if (value_lazy (bpt->val))
7475 value_fetch_lazy (bpt->val);
7477 if (bpt->type == bp_hardware_watchpoint ||
7478 bpt->type == bp_read_watchpoint ||
7479 bpt->type == bp_access_watchpoint)
7481 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7482 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7484 /* Hack around 'unused var' error for some targets here */
7486 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7487 bpt->type, i + mem_cnt, other_type_used);
7488 /* we can consider of type is bp_hardware_watchpoint, convert to
7489 bp_watchpoint in the following condition */
7490 if (target_resources_ok < 0)
7492 printf_filtered (_("\
7493 Cannot enable watchpoint %d because target watch resources\n\
7494 have been allocated for other watchpoints.\n"), bpt->number);
7495 bpt->enable_state = bp_disabled;
7496 value_free_to_mark (mark);
7501 select_frame (frame_find_by_id (saved_frame_id));
7502 value_free_to_mark (mark);
7506 if (deprecated_modify_breakpoint_hook)
7507 deprecated_modify_breakpoint_hook (bpt);
7508 breakpoint_modify_event (bpt->number);
7512 enable_breakpoint (struct breakpoint *bpt)
7514 do_enable_breakpoint (bpt, bpt->disposition);
7517 /* The enable command enables the specified breakpoints (or all defined
7518 breakpoints) so they once again become (or continue to be) effective
7519 in stopping the inferior. */
7522 enable_command (char *args, int from_tty)
7524 struct breakpoint *bpt;
7526 ALL_BREAKPOINTS (bpt)
7530 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
7535 case bp_catch_unload:
7537 case bp_catch_vfork:
7539 case bp_catch_catch:
7540 case bp_catch_throw:
7541 case bp_hardware_breakpoint:
7543 case bp_hardware_watchpoint:
7544 case bp_read_watchpoint:
7545 case bp_access_watchpoint:
7546 enable_breakpoint (bpt);
7551 map_breakpoint_numbers (args, enable_breakpoint);
7555 enable_once_breakpoint (struct breakpoint *bpt)
7557 do_enable_breakpoint (bpt, disp_disable);
7561 enable_once_command (char *args, int from_tty)
7563 map_breakpoint_numbers (args, enable_once_breakpoint);
7567 enable_delete_breakpoint (struct breakpoint *bpt)
7569 do_enable_breakpoint (bpt, disp_del);
7573 enable_delete_command (char *args, int from_tty)
7575 map_breakpoint_numbers (args, enable_delete_breakpoint);
7579 set_breakpoint_cmd (char *args, int from_tty)
7584 show_breakpoint_cmd (char *args, int from_tty)
7588 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7590 struct symtabs_and_lines
7591 decode_line_spec_1 (char *string, int funfirstline)
7593 struct symtabs_and_lines sals;
7595 error (_("Empty line specification."));
7596 if (default_breakpoint_valid)
7597 sals = decode_line_1 (&string, funfirstline,
7598 default_breakpoint_symtab,
7599 default_breakpoint_line,
7600 (char ***) NULL, NULL);
7602 sals = decode_line_1 (&string, funfirstline,
7603 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
7605 error (_("Junk at end of line specification: %s"), string);
7610 _initialize_breakpoint (void)
7612 static struct cmd_list_element *breakpoint_set_cmdlist;
7613 static struct cmd_list_element *breakpoint_show_cmdlist;
7614 struct cmd_list_element *c;
7617 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
7620 breakpoint_chain = 0;
7621 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7622 before a breakpoint is set. */
7623 breakpoint_count = 0;
7625 add_com ("ignore", class_breakpoint, ignore_command,
7626 "Set ignore-count of breakpoint number N to COUNT.\n\
7627 Usage is `ignore N COUNT'.");
7629 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7631 add_com ("commands", class_breakpoint, commands_command,
7632 "Set commands to be executed when a breakpoint is hit.\n\
7633 Give breakpoint number as argument after \"commands\".\n\
7634 With no argument, the targeted breakpoint is the last one set.\n\
7635 The commands themselves follow starting on the next line.\n\
7636 Type a line containing \"end\" to indicate the end of them.\n\
7637 Give \"silent\" as the first line to make the breakpoint silent;\n\
7638 then no output is printed when it is hit, except what the commands print.");
7640 add_com ("condition", class_breakpoint, condition_command,
7641 "Specify breakpoint number N to break only if COND is true.\n\
7642 Usage is `condition N COND', where N is an integer and COND is an\n\
7643 expression to be evaluated whenever breakpoint N is reached.");
7645 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7646 "Set a temporary breakpoint. Args like \"break\" command.\n\
7647 Like \"break\" except the breakpoint is only temporary,\n\
7648 so it will be deleted when hit. Equivalent to \"break\" followed\n\
7649 by using \"enable delete\" on the breakpoint number.");
7650 set_cmd_completer (c, location_completer);
7652 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7653 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
7654 Like \"break\" except the breakpoint requires hardware support,\n\
7655 some target hardware may not have this support.");
7656 set_cmd_completer (c, location_completer);
7658 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7659 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7660 Like \"hbreak\" except the breakpoint is only temporary,\n\
7661 so it will be deleted when hit.");
7662 set_cmd_completer (c, location_completer);
7664 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7665 "Enable some breakpoints.\n\
7666 Give breakpoint numbers (separated by spaces) as arguments.\n\
7667 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7668 This is used to cancel the effect of the \"disable\" command.\n\
7669 With a subcommand you can enable temporarily.",
7670 &enablelist, "enable ", 1, &cmdlist);
7672 add_com ("ab", class_breakpoint, enable_command,
7673 "Enable some breakpoints.\n\
7674 Give breakpoint numbers (separated by spaces) as arguments.\n\
7675 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7676 This is used to cancel the effect of the \"disable\" command.\n\
7677 With a subcommand you can enable temporarily.");
7679 add_com_alias ("en", "enable", class_breakpoint, 1);
7681 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7682 "Enable some breakpoints.\n\
7683 Give breakpoint numbers (separated by spaces) as arguments.\n\
7684 This is used to cancel the effect of the \"disable\" command.\n\
7685 May be abbreviated to simply \"enable\".\n",
7686 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7688 add_cmd ("once", no_class, enable_once_command, _("\
7689 Enable breakpoints for one hit. Give breakpoint numbers.\n\
7690 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
7693 add_cmd ("delete", no_class, enable_delete_command, _("\
7694 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7695 If a breakpoint is hit while enabled in this fashion, it is deleted."),
7698 add_cmd ("delete", no_class, enable_delete_command, _("\
7699 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7700 If a breakpoint is hit while enabled in this fashion, it is deleted."),
7703 add_cmd ("once", no_class, enable_once_command, _("\
7704 Enable breakpoints for one hit. Give breakpoint numbers.\n\
7705 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
7708 add_prefix_cmd ("disable", class_breakpoint, disable_command,
7709 "Disable some breakpoints.\n\
7710 Arguments are breakpoint numbers with spaces in between.\n\
7711 To disable all breakpoints, give no argument.\n\
7712 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7713 &disablelist, "disable ", 1, &cmdlist);
7714 add_com_alias ("dis", "disable", class_breakpoint, 1);
7715 add_com_alias ("disa", "disable", class_breakpoint, 1);
7717 add_com ("sb", class_breakpoint, disable_command,
7718 "Disable some breakpoints.\n\
7719 Arguments are breakpoint numbers with spaces in between.\n\
7720 To disable all breakpoints, give no argument.\n\
7721 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7723 add_cmd ("breakpoints", class_alias, disable_command, _("\
7724 Disable some breakpoints.\n\
7725 Arguments are breakpoint numbers with spaces in between.\n\
7726 To disable all breakpoints, give no argument.\n\
7727 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7728 This command may be abbreviated \"disable\"."),
7731 add_prefix_cmd ("delete", class_breakpoint, delete_command,
7732 "Delete some breakpoints or auto-display expressions.\n\
7733 Arguments are breakpoint numbers with spaces in between.\n\
7734 To delete all breakpoints, give no argument.\n\
7736 Also a prefix command for deletion of other GDB objects.\n\
7737 The \"unset\" command is also an alias for \"delete\".",
7738 &deletelist, "delete ", 1, &cmdlist);
7739 add_com_alias ("d", "delete", class_breakpoint, 1);
7741 add_com ("db", class_breakpoint, delete_command,
7742 "Delete some breakpoints.\n\
7743 Arguments are breakpoint numbers with spaces in between.\n\
7744 To delete all breakpoints, give no argument.\n");
7746 add_cmd ("breakpoints", class_alias, delete_command, _("\
7747 Delete some breakpoints or auto-display expressions.\n\
7748 Arguments are breakpoint numbers with spaces in between.\n\
7749 To delete all breakpoints, give no argument.\n\
7750 This command may be abbreviated \"delete\"."),
7753 add_com ("clear", class_breakpoint, clear_command,
7754 concat ("Clear breakpoint at specified line or function.\n\
7755 Argument may be line number, function name, or \"*\" and an address.\n\
7756 If line number is specified, all breakpoints in that line are cleared.\n\
7757 If function is specified, breakpoints at beginning of function are cleared.\n\
7758 If an address is specified, breakpoints at that address are cleared.\n\n",
7759 "With no argument, clears all breakpoints in the line that the selected frame\n\
7762 See also the \"delete\" command which clears breakpoints by number.", NULL));
7764 c = add_com ("break", class_breakpoint, break_command,
7765 concat ("Set breakpoint at specified line or function.\n\
7766 Argument may be line number, function name, or \"*\" and an address.\n\
7767 If line number is specified, break at start of code for that line.\n\
7768 If function is specified, break at start of code for that function.\n\
7769 If an address is specified, break at that exact address.\n",
7770 "With no arg, uses current execution address of selected stack frame.\n\
7771 This is useful for breaking on return to a stack frame.\n\
7773 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7775 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7776 set_cmd_completer (c, location_completer);
7778 add_com_alias ("b", "break", class_run, 1);
7779 add_com_alias ("br", "break", class_run, 1);
7780 add_com_alias ("bre", "break", class_run, 1);
7781 add_com_alias ("brea", "break", class_run, 1);
7785 add_com_alias ("ba", "break", class_breakpoint, 1);
7786 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7791 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7792 "Break in function/address or break at a line in the current file.",
7793 &stoplist, "stop ", 1, &cmdlist);
7794 add_cmd ("in", class_breakpoint, stopin_command,
7795 _("Break in function or address."), &stoplist);
7796 add_cmd ("at", class_breakpoint, stopat_command,
7797 _("Break at a line in the current file."), &stoplist);
7798 add_com ("status", class_info, breakpoints_info,
7799 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7800 The \"Type\" column indicates one of:\n\
7801 \tbreakpoint - normal breakpoint\n\
7802 \twatchpoint - watchpoint\n\
7803 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7804 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7805 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7806 address and file/line number respectively.\n\n",
7807 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7808 are set to the address of the last breakpoint listed.\n\n\
7809 Convenience variable \"$bpnum\" contains the number of the last\n\
7810 breakpoint set.", NULL));
7813 add_info ("breakpoints", breakpoints_info,
7814 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7815 The \"Type\" column indicates one of:\n\
7816 \tbreakpoint - normal breakpoint\n\
7817 \twatchpoint - watchpoint\n\
7818 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7819 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7820 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7821 address and file/line number respectively.\n\n",
7822 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7823 are set to the address of the last breakpoint listed.\n\n\
7824 Convenience variable \"$bpnum\" contains the number of the last\n\
7825 breakpoint set.", NULL));
7828 add_com ("lb", class_breakpoint, breakpoints_info,
7829 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7830 The \"Type\" column indicates one of:\n\
7831 \tbreakpoint - normal breakpoint\n\
7832 \twatchpoint - watchpoint\n\
7833 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7834 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7835 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7836 address and file/line number respectively.\n\n",
7837 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7838 are set to the address of the last breakpoint listed.\n\n\
7839 Convenience variable \"$bpnum\" contains the number of the last\n\
7840 breakpoint set.", NULL));
7842 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
7843 Status of all breakpoints, or breakpoint number NUMBER.\n\
7844 The \"Type\" column indicates one of:\n\
7845 \tbreakpoint - normal breakpoint\n\
7846 \twatchpoint - watchpoint\n\
7847 \tlongjmp - internal breakpoint used to step through longjmp()\n\
7848 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7849 \tuntil - internal breakpoint used by the \"until\" command\n\
7850 \tfinish - internal breakpoint used by the \"finish\" command\n\
7851 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7852 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7853 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7854 address and file/line number respectively.\n\
7856 Convenience variable \"$_\" and default examine address for \"x\"\n\
7857 are set to the address of the last breakpoint listed.\n\
7859 Convenience variable \"$bpnum\" contains the number of the last\n\
7861 &maintenanceinfolist);
7863 add_com ("catch", class_breakpoint, catch_command,
7864 "Set catchpoints to catch events.\n\
7865 Raised signals may be caught:\n\
7866 \tcatch signal - all signals\n\
7867 \tcatch signal <signame> - a particular signal\n\
7868 Raised exceptions may be caught:\n\
7869 \tcatch throw - all exceptions, when thrown\n\
7870 \tcatch throw <exceptname> - a particular exception, when thrown\n\
7871 \tcatch catch - all exceptions, when caught\n\
7872 \tcatch catch <exceptname> - a particular exception, when caught\n\
7873 Thread or process events may be caught:\n\
7874 \tcatch thread_start - any threads, just after creation\n\
7875 \tcatch thread_exit - any threads, just before expiration\n\
7876 \tcatch thread_join - any threads, just after joins\n\
7877 Process events may be caught:\n\
7878 \tcatch start - any processes, just after creation\n\
7879 \tcatch exit - any processes, just before expiration\n\
7880 \tcatch fork - calls to fork()\n\
7881 \tcatch vfork - calls to vfork()\n\
7882 \tcatch exec - calls to exec()\n\
7883 Dynamically-linked library events may be caught:\n\
7884 \tcatch load - loads of any library\n\
7885 \tcatch load <libname> - loads of a particular library\n\
7886 \tcatch unload - unloads of any library\n\
7887 \tcatch unload <libname> - unloads of a particular library\n\
7888 The act of your program's execution stopping may also be caught:\n\
7890 C++ exceptions may be caught:\n\
7891 \tcatch throw - all exceptions, when thrown\n\
7892 \tcatch catch - all exceptions, when caught\n\
7894 Do \"help set follow-fork-mode\" for info on debugging your program\n\
7895 after a fork or vfork is caught.\n\n\
7896 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
7898 add_com ("tcatch", class_breakpoint, tcatch_command,
7899 "Set temporary catchpoints to catch events.\n\
7900 Args like \"catch\" command.\n\
7901 Like \"catch\" except the catchpoint is only temporary,\n\
7902 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
7903 by using \"enable delete\" on the catchpoint number.");
7905 c = add_com ("watch", class_breakpoint, watch_command,
7906 "Set a watchpoint for an expression.\n\
7907 A watchpoint stops execution of your program whenever the value of\n\
7908 an expression changes.");
7909 set_cmd_completer (c, location_completer);
7911 c = add_com ("rwatch", class_breakpoint, rwatch_command,
7912 "Set a read watchpoint for an expression.\n\
7913 A watchpoint stops execution of your program whenever the value of\n\
7914 an expression is read.");
7915 set_cmd_completer (c, location_completer);
7917 c = add_com ("awatch", class_breakpoint, awatch_command,
7918 "Set a watchpoint for an expression.\n\
7919 A watchpoint stops execution of your program whenever the value of\n\
7920 an expression is either read or written.");
7921 set_cmd_completer (c, location_completer);
7923 add_info ("watchpoints", breakpoints_info,
7924 "Synonym for ``info breakpoints''.");
7927 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
7928 (char *) &can_use_hw_watchpoints,
7929 "Set debugger's willingness to use watchpoint hardware.\n\
7930 If zero, gdb will not use hardware for new watchpoints, even if\n\
7931 such is available. (However, any hardware watchpoints that were\n\
7932 created before setting this to nonzero, will continue to use watchpoint\n\
7935 deprecated_add_show_from_set (c, &showlist);
7937 can_use_hw_watchpoints = 1;
7939 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, "\
7940 Breakpoint specific settings\n\
7941 Configure various breakpoint-specific variables such as\n\
7942 pending breakpoint behavior",
7943 &breakpoint_set_cmdlist, "set breakpoint ",
7944 0/*allow-unknown*/, &setlist);
7945 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, "\
7946 Breakpoint specific settings\n\
7947 Configure various breakpoint-specific variables such as\n\
7948 pending breakpoint behavior",
7949 &breakpoint_show_cmdlist, "show breakpoint ",
7950 0/*allow-unknown*/, &showlist);
7952 add_setshow_auto_boolean_cmd ("pending", no_class,
7953 &pending_break_support, _("\
7954 Set debugger's behavior regarding pending breakpoints."), _("\
7955 Show debugger's behavior regarding pending breakpoints."), _("\
7956 If on, an unrecognized breakpoint location will cause gdb to create a\n\
7957 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
7958 an error. If auto, an unrecognized breakpoint location results in a\n\
7959 user-query to see if a pending breakpoint should be created."),
7960 NULL, /* FIXME: i18n: Debugger's behavior regarding pending breakpoints is %s. */
7962 &breakpoint_set_cmdlist,
7963 &breakpoint_show_cmdlist);
7965 pending_break_support = AUTO_BOOLEAN_AUTO;