1 /* Everything about breakpoints, for GDB.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
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., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, 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"
55 #include "exceptions.h"
60 #include "gdb-events.h"
61 #include "mi/mi-common.h"
63 /* Prototypes for local functions. */
65 static void until_break_command_continuation (struct continuation_arg *arg);
67 static void catch_command_1 (char *, int, int);
69 static void enable_delete_command (char *, int);
71 static void enable_delete_breakpoint (struct breakpoint *);
73 static void enable_once_command (char *, int);
75 static void enable_once_breakpoint (struct breakpoint *);
77 static void disable_command (char *, int);
79 static void enable_command (char *, int);
81 static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
83 static void ignore_command (char *, int);
85 static int breakpoint_re_set_one (void *);
87 static void clear_command (char *, int);
89 static void catch_command (char *, int);
91 static void watch_command (char *, int);
93 static int can_use_hardware_watchpoint (struct value *);
95 static int break_command_1 (char *, int, int, struct breakpoint *);
97 static void mention (struct breakpoint *);
99 struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
101 static void check_duplicates (struct breakpoint *);
103 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
105 static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
108 static void describe_other_breakpoints (CORE_ADDR, asection *, int);
110 static void breakpoints_info (char *, int);
112 static void breakpoint_1 (int, int);
114 static bpstat bpstat_alloc (struct breakpoint *, bpstat);
116 static int breakpoint_cond_eval (void *);
118 static void cleanup_executing_breakpoints (void *);
120 static void commands_command (char *, int);
122 static void condition_command (char *, int);
124 static int get_number_trailer (char **, int);
126 void set_breakpoint_count (int);
135 static int remove_breakpoint (struct bp_location *, insertion_state_t);
137 static enum print_stop_action print_it_typical (bpstat);
139 static enum print_stop_action print_bp_stop_message (bpstat bs);
143 enum exception_event_kind kind;
146 args_for_catchpoint_enable;
148 static int watchpoint_check (void *);
150 static int cover_target_enable_exception_callback (void *);
152 static void maintenance_info_breakpoints (char *, int);
154 static void create_longjmp_breakpoint (char *);
156 static void create_overlay_event_breakpoint (char *);
158 static int hw_breakpoint_used_count (void);
160 static int hw_watchpoint_used_count (enum bptype, int *);
162 static void hbreak_command (char *, int);
164 static void thbreak_command (char *, int);
166 static void watch_command_1 (char *, int, int);
168 static void rwatch_command (char *, int);
170 static void awatch_command (char *, int);
172 static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
174 static void solib_load_unload_1 (char *hookname,
177 char *cond_string, enum bptype bp_kind);
179 static void create_fork_vfork_event_catchpoint (int tempflag,
181 enum bptype bp_kind);
183 static void stop_command (char *arg, int from_tty);
185 static void stopin_command (char *arg, int from_tty);
187 static void stopat_command (char *arg, int from_tty);
189 static char *ep_find_event_name_end (char *arg);
191 static char *ep_parse_optional_if_clause (char **arg);
193 static char *ep_parse_optional_filename (char **arg);
195 static void create_exception_catchpoint (int tempflag, char *cond_string,
196 enum exception_event_kind ex_event,
197 struct symtab_and_line *sal);
199 static void catch_exception_command_1 (enum exception_event_kind ex_event,
200 char *arg, int tempflag, int from_tty);
202 static void tcatch_command (char *arg, int from_tty);
204 static void ep_skip_leading_whitespace (char **s);
206 static int single_step_breakpoint_inserted_here_p (CORE_ADDR pc);
208 /* Prototypes for exported functions. */
210 /* If FALSE, gdb will not use hardware support for watchpoints, even
211 if such is available. */
212 static int can_use_hw_watchpoints;
215 show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
216 struct cmd_list_element *c,
219 fprintf_filtered (file, _("\
220 Debugger's willingness to use watchpoint hardware is %s.\n"),
224 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
225 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
226 for unrecognized breakpoint locations.
227 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
228 static enum auto_boolean pending_break_support;
230 show_pending_break_support (struct ui_file *file, int from_tty,
231 struct cmd_list_element *c,
234 fprintf_filtered (file, _("\
235 Debugger's behavior regarding pending breakpoints is %s.\n"),
239 /* If 1, gdb will automatically use hardware breakpoints for breakpoints
240 set with "break" but falling in read-only memory.
241 If 0, gdb will warn about such breakpoints, but won't automatically
242 use hardware breakpoints. */
243 static int automatic_hardware_breakpoints;
245 show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
246 struct cmd_list_element *c,
249 fprintf_filtered (file, _("\
250 Automatic usage of hardware breakpoints is %s.\n"),
255 void _initialize_breakpoint (void);
257 extern int addressprint; /* Print machine addresses? */
259 /* Are we executing breakpoint commands? */
260 static int executing_breakpoint_commands;
262 /* Are overlay event breakpoints enabled? */
263 static int overlay_events_enabled;
265 /* Walk the following statement or block through all breakpoints.
266 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
269 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
271 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
272 for (B = breakpoint_chain; \
273 B ? (TMP=B->next, 1): 0; \
276 /* Similar iterators for the low-level breakpoints. */
278 #define ALL_BP_LOCATIONS(B) for (B = bp_location_chain; B; B = B->next)
280 #define ALL_BP_LOCATIONS_SAFE(B,TMP) \
281 for (B = bp_location_chain; \
282 B ? (TMP=B->next, 1): 0; \
285 /* True if breakpoint hit counts should be displayed in breakpoint info. */
287 int show_breakpoint_hit_counts = 1;
289 /* Chains of all breakpoints defined. */
291 struct breakpoint *breakpoint_chain;
293 struct bp_location *bp_location_chain;
295 /* Number of last breakpoint made. */
297 int breakpoint_count;
299 /* Pointer to current exception event record */
300 static struct exception_event_record *current_exception_event;
302 /* This function returns a pointer to the string representation of the
303 pathname of the dynamically-linked library that has just been
306 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
307 or undefined results are guaranteed.
309 This string's contents are only valid immediately after the
310 inferior has stopped in the dynamic linker hook, and becomes
311 invalid as soon as the inferior is continued. Clients should make
312 a copy of this string if they wish to continue the inferior and
313 then access the string. */
315 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
316 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
319 /* This function returns a pointer to the string representation of the
320 pathname of the dynamically-linked library that has just been
323 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
324 TRUE, or undefined results are guaranteed.
326 This string's contents are only valid immediately after the
327 inferior has stopped in the dynamic linker hook, and becomes
328 invalid as soon as the inferior is continued. Clients should make
329 a copy of this string if they wish to continue the inferior and
330 then access the string. */
332 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
333 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
336 /* This function is called by the "catch load" command. It allows the
337 debugger to be notified by the dynamic linker when a specified
338 library file (or any library file, if filename is NULL) is loaded. */
340 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
341 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
342 error (_("catch of library loads not yet implemented on this platform"))
345 /* This function is called by the "catch unload" command. It allows
346 the debugger to be notified by the dynamic linker when a specified
347 library file (or any library file, if filename is NULL) is
350 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
351 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
352 error (_("catch of library unloads not yet implemented on this platform"))
355 /* Return whether a breakpoint is an active enabled breakpoint. */
357 breakpoint_enabled (struct breakpoint *b)
359 return (b->enable_state == bp_enabled && !b->pending);
362 /* Set breakpoint count to NUM. */
365 set_breakpoint_count (int num)
367 breakpoint_count = num;
368 set_internalvar (lookup_internalvar ("bpnum"),
369 value_from_longest (builtin_type_int, (LONGEST) num));
372 /* Used in run_command to zero the hit count when a new run starts. */
375 clear_breakpoint_hit_counts (void)
377 struct breakpoint *b;
383 /* Default address, symtab and line to put a breakpoint at
384 for "break" command with no arg.
385 if default_breakpoint_valid is zero, the other three are
386 not valid, and "break" with no arg is an error.
388 This set by print_stack_frame, which calls set_default_breakpoint. */
390 int default_breakpoint_valid;
391 CORE_ADDR default_breakpoint_address;
392 struct symtab *default_breakpoint_symtab;
393 int default_breakpoint_line;
395 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
396 Advance *PP after the string and any trailing whitespace.
398 Currently the string can either be a number or "$" followed by the name
399 of a convenience variable. Making it an expression wouldn't work well
400 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
402 If the string is a NULL pointer, that denotes the last breakpoint.
404 TRAILER is a character which can be found after the number; most
405 commonly this is `-'. If you don't want a trailer, use \0. */
407 get_number_trailer (char **pp, int trailer)
409 int retval = 0; /* default */
413 /* Empty line means refer to the last breakpoint. */
414 return breakpoint_count;
417 /* Make a copy of the name, so we can null-terminate it
418 to pass to lookup_internalvar(). */
423 while (isalnum (*p) || *p == '_')
425 varname = (char *) alloca (p - start + 1);
426 strncpy (varname, start, p - start);
427 varname[p - start] = '\0';
428 val = value_of_internalvar (lookup_internalvar (varname));
429 if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
430 retval = (int) value_as_long (val);
433 printf_filtered (_("Convenience variable must have integer value.\n"));
441 while (*p >= '0' && *p <= '9')
444 /* There is no number here. (e.g. "cond a == b"). */
446 /* Skip non-numeric token */
447 while (*p && !isspace((int) *p))
449 /* Return zero, which caller must interpret as error. */
455 if (!(isspace (*p) || *p == '\0' || *p == trailer))
457 /* Trailing junk: return 0 and let caller print error msg. */
458 while (!(isspace (*p) || *p == '\0' || *p == trailer))
469 /* Like get_number_trailer, but don't allow a trailer. */
471 get_number (char **pp)
473 return get_number_trailer (pp, '\0');
476 /* Parse a number or a range.
477 * A number will be of the form handled by get_number.
478 * A range will be of the form <number1> - <number2>, and
479 * will represent all the integers between number1 and number2,
482 * While processing a range, this fuction is called iteratively;
483 * At each call it will return the next value in the range.
485 * At the beginning of parsing a range, the char pointer PP will
486 * be advanced past <number1> and left pointing at the '-' token.
487 * Subsequent calls will not advance the pointer until the range
488 * is completed. The call that completes the range will advance
489 * pointer PP past <number2>.
493 get_number_or_range (char **pp)
495 static int last_retval, end_value;
496 static char *end_ptr;
497 static int in_range = 0;
501 /* Default case: pp is pointing either to a solo number,
502 or to the first number of a range. */
503 last_retval = get_number_trailer (pp, '-');
508 /* This is the start of a range (<number1> - <number2>).
509 Skip the '-', parse and remember the second number,
510 and also remember the end of the final token. */
514 while (isspace ((int) *end_ptr))
515 end_ptr++; /* skip white space */
516 end_value = get_number (temp);
517 if (end_value < last_retval)
519 error (_("inverted range"));
521 else if (end_value == last_retval)
523 /* degenerate range (number1 == number2). Advance the
524 token pointer so that the range will be treated as a
533 error (_("negative value"));
536 /* pp points to the '-' that betokens a range. All
537 number-parsing has already been done. Return the next
538 integer value (one greater than the saved previous value).
539 Do not advance the token pointer 'pp' until the end of range
542 if (++last_retval == end_value)
544 /* End of range reached; advance token pointer. */
554 /* condition N EXP -- set break condition of breakpoint N to EXP. */
557 condition_command (char *arg, int from_tty)
559 struct breakpoint *b;
564 error_no_arg (_("breakpoint number"));
567 bnum = get_number (&p);
569 error (_("Bad breakpoint argument: '%s'"), arg);
572 if (b->number == bnum)
579 if (b->cond_string != NULL)
580 xfree (b->cond_string);
585 b->cond_string = NULL;
587 printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum);
592 /* I don't know if it matters whether this is the string the user
593 typed in or the decompiled expression. */
594 b->cond_string = savestring (arg, strlen (arg));
597 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
599 error (_("Junk at end of expression"));
602 breakpoints_changed ();
603 breakpoint_modify_event (b->number);
607 error (_("No breakpoint number %d."), bnum);
611 commands_command (char *arg, int from_tty)
613 struct breakpoint *b;
616 struct command_line *l;
618 /* If we allowed this, we would have problems with when to
619 free the storage, if we change the commands currently
622 if (executing_breakpoint_commands)
623 error (_("Can't use the \"commands\" command among a breakpoint's commands."));
626 bnum = get_number (&p);
629 error (_("Unexpected extra arguments following breakpoint number."));
632 if (b->number == bnum)
634 char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
636 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
637 l = read_command_lines (tmpbuf, from_tty);
638 do_cleanups (cleanups);
639 free_command_lines (&b->commands);
641 breakpoints_changed ();
642 breakpoint_modify_event (b->number);
645 error (_("No breakpoint number %d."), bnum);
648 /* Like commands_command, but instead of reading the commands from
649 input stream, takes them from an already parsed command structure.
651 This is used by cli-script.c to DTRT with breakpoint commands
652 that are part of if and while bodies. */
653 enum command_control_type
654 commands_from_control_command (char *arg, struct command_line *cmd)
656 struct breakpoint *b;
660 /* If we allowed this, we would have problems with when to
661 free the storage, if we change the commands currently
664 if (executing_breakpoint_commands)
665 error (_("Can't use the \"commands\" command among a breakpoint's commands."));
667 /* An empty string for the breakpoint number means the last
668 breakpoint, but get_number expects a NULL pointer. */
673 bnum = get_number (&p);
676 error (_("Unexpected extra arguments following breakpoint number."));
679 if (b->number == bnum)
681 free_command_lines (&b->commands);
682 if (cmd->body_count != 1)
683 error (_("Invalid \"commands\" block structure."));
684 /* We need to copy the commands because if/while will free the
685 list after it finishes execution. */
686 b->commands = copy_command_lines (cmd->body_list[0]);
687 breakpoints_changed ();
688 breakpoint_modify_event (b->number);
689 return simple_control;
691 error (_("No breakpoint number %d."), bnum);
694 /* Like target_read_memory() but if breakpoints are inserted, return
695 the shadow contents instead of the breakpoints themselves.
697 Read "memory data" from whatever target or inferior we have.
698 Returns zero if successful, errno value if not. EIO is used
699 for address out of bounds. If breakpoints are inserted, returns
700 shadow contents, not the breakpoints themselves. From breakpoint.c. */
703 read_memory_nobpt (CORE_ADDR memaddr, gdb_byte *myaddr, unsigned len)
706 struct bp_location *b;
707 CORE_ADDR bp_addr = 0;
710 if (gdbarch_breakpoint_from_pc (current_gdbarch, &bp_addr, &bp_size) == NULL)
711 /* No breakpoints on this machine. */
712 return target_read_memory (memaddr, myaddr, len);
716 if (b->owner->type == bp_none)
717 warning (_("reading through apparently deleted breakpoint #%d?"),
720 if (b->loc_type != bp_loc_software_breakpoint)
724 /* Addresses and length of the part of the breakpoint that
726 bp_addr = b->target_info.placed_address;
727 bp_size = b->target_info.shadow_len;
729 /* bp isn't valid, or doesn't shadow memory. */
731 if (bp_addr + bp_size <= memaddr)
732 /* The breakpoint is entirely before the chunk of memory we
735 if (bp_addr >= memaddr + len)
736 /* The breakpoint is entirely after the chunk of memory we are
739 /* Copy the breakpoint from the shadow contents, and recurse for
740 the things before and after. */
742 /* Offset within shadow_contents. */
745 if (bp_addr < memaddr)
747 /* Only copy the second part of the breakpoint. */
748 bp_size -= memaddr - bp_addr;
749 bptoffset = memaddr - bp_addr;
753 if (bp_addr + bp_size > memaddr + len)
755 /* Only copy the first part of the breakpoint. */
756 bp_size -= (bp_addr + bp_size) - (memaddr + len);
759 memcpy (myaddr + bp_addr - memaddr,
760 b->target_info.shadow_contents + bptoffset, bp_size);
762 if (bp_addr > memaddr)
764 /* Copy the section of memory before the breakpoint. */
765 status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
770 if (bp_addr + bp_size < memaddr + len)
772 /* Copy the section of memory after the breakpoint. */
773 status = read_memory_nobpt (bp_addr + bp_size,
774 myaddr + bp_addr + bp_size - memaddr,
775 memaddr + len - (bp_addr + bp_size));
782 /* Nothing overlaps. Just call read_memory_noerr. */
783 return target_read_memory (memaddr, myaddr, len);
787 /* A wrapper function for inserting catchpoints. */
789 insert_catchpoint (struct ui_out *uo, void *args)
791 struct breakpoint *b = (struct breakpoint *) args;
797 target_insert_fork_catchpoint (PIDGET (inferior_ptid));
800 target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
803 target_insert_exec_catchpoint (PIDGET (inferior_ptid));
806 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
811 /* Helper routine: free the value chain for a breakpoint (watchpoint). */
814 free_valchain (struct bp_location *b)
819 /* Free the saved value chain. We will construct a new one
820 the next time the watchpoint is inserted. */
821 for (v = b->owner->val_chain; v; v = n)
826 b->owner->val_chain = NULL;
829 /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
830 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
831 PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
833 NOTE drow/2003-09-09: This routine could be broken down to an object-style
834 method for each breakpoint or catchpoint type. */
836 insert_bp_location (struct bp_location *bpt,
837 struct ui_file *tmp_error_stream,
838 int *disabled_breaks, int *process_warning,
839 int *hw_breakpoint_error)
843 /* Permanent breakpoints cannot be inserted or removed. Disabled
844 breakpoints should not be inserted. */
845 if (!breakpoint_enabled (bpt->owner))
848 if (bpt->inserted || bpt->duplicate)
851 /* Initialize the target-specific information. */
852 memset (&bpt->target_info, 0, sizeof (bpt->target_info));
853 bpt->target_info.placed_address = bpt->address;
855 if (bpt->loc_type == bp_loc_software_breakpoint
856 || bpt->loc_type == bp_loc_hardware_breakpoint)
858 if (bpt->owner->type != bp_hardware_breakpoint)
860 /* If the explicitly specified breakpoint type
861 is not hardware breakpoint, check the memory map to see
862 if the breakpoint address is in read only memory or not.
863 Two important cases are:
864 - location type is not hardware breakpoint, memory
865 is readonly. We change the type of the location to
867 - location type is hardware breakpoint, memory is read-write.
868 This means we've previously made the location hardware one, but
869 then the memory map changed, so we undo.
871 When breakpoints are removed, remove_breakpoints will
872 use location types we've just set here, the only possible
873 problem is that memory map has changed during running program,
874 but it's not going to work anyway with current gdb. */
875 struct mem_region *mr
876 = lookup_mem_region (bpt->target_info.placed_address);
880 if (automatic_hardware_breakpoints)
883 enum bp_loc_type new_type;
885 if (mr->attrib.mode != MEM_RW)
886 new_type = bp_loc_hardware_breakpoint;
888 new_type = bp_loc_software_breakpoint;
890 if (new_type != bpt->loc_type)
893 bpt->loc_type = new_type;
896 fprintf_filtered (gdb_stdout, _("\
897 Note: automatically using hardware breakpoints for read-only addresses.\n"));
902 else if (bpt->loc_type == bp_loc_software_breakpoint
903 && mr->attrib.mode != MEM_RW)
904 warning (_("cannot set software breakpoint at readonly address %s"),
905 paddr (bpt->address));
909 /* First check to see if we have to handle an overlay. */
910 if (overlay_debugging == ovly_off
911 || bpt->section == NULL
912 || !(section_is_overlay (bpt->section)))
914 /* No overlay handling: just set the breakpoint. */
916 if (bpt->loc_type == bp_loc_hardware_breakpoint)
917 val = target_insert_hw_breakpoint (&bpt->target_info);
919 val = target_insert_breakpoint (&bpt->target_info);
923 /* This breakpoint is in an overlay section.
924 Shall we set a breakpoint at the LMA? */
925 if (!overlay_events_enabled)
927 /* Yes -- overlay event support is not active,
928 so we must try to set a breakpoint at the LMA.
929 This will not work for a hardware breakpoint. */
930 if (bpt->loc_type == bp_loc_hardware_breakpoint)
931 warning (_("hardware breakpoint %d not supported in overlay!"),
935 CORE_ADDR addr = overlay_unmapped_address (bpt->address,
937 /* Set a software (trap) breakpoint at the LMA. */
938 bpt->overlay_target_info = bpt->target_info;
939 bpt->overlay_target_info.placed_address = addr;
940 val = target_insert_breakpoint (&bpt->overlay_target_info);
942 fprintf_unfiltered (tmp_error_stream,
943 "Overlay breakpoint %d failed: in ROM?",
947 /* Shall we set a breakpoint at the VMA? */
948 if (section_is_mapped (bpt->section))
950 /* Yes. This overlay section is mapped into memory. */
951 if (bpt->loc_type == bp_loc_hardware_breakpoint)
952 val = target_insert_hw_breakpoint (&bpt->target_info);
954 val = target_insert_breakpoint (&bpt->target_info);
958 /* No. This breakpoint will not be inserted.
959 No error, but do not mark the bp as 'inserted'. */
966 /* Can't set the breakpoint. */
967 if (solib_address (bpt->address))
969 /* See also: disable_breakpoints_in_shlibs. */
971 bpt->owner->enable_state = bp_shlib_disabled;
972 if (!*disabled_breaks)
974 fprintf_unfiltered (tmp_error_stream,
975 "Cannot insert breakpoint %d.\n",
977 fprintf_unfiltered (tmp_error_stream,
978 "Temporarily disabling shared library breakpoints:\n");
980 *disabled_breaks = 1;
981 fprintf_unfiltered (tmp_error_stream,
982 "breakpoint #%d\n", bpt->owner->number);
986 #ifdef ONE_PROCESS_WRITETEXT
987 *process_warning = 1;
989 if (bpt->loc_type == bp_loc_hardware_breakpoint)
991 *hw_breakpoint_error = 1;
992 fprintf_unfiltered (tmp_error_stream,
993 "Cannot insert hardware breakpoint %d.\n",
998 fprintf_unfiltered (tmp_error_stream,
999 "Cannot insert breakpoint %d.\n",
1000 bpt->owner->number);
1001 fprintf_filtered (tmp_error_stream,
1002 "Error accessing memory address ");
1003 deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream);
1004 fprintf_filtered (tmp_error_stream, ": %s.\n",
1005 safe_strerror (val));
1016 else if (bpt->loc_type == bp_loc_hardware_watchpoint
1017 /* NOTE drow/2003-09-08: This state only exists for removing
1018 watchpoints. It's not clear that it's necessary... */
1019 && bpt->owner->disposition != disp_del_at_next_stop)
1021 /* FIXME drow/2003-09-08: This code sets multiple hardware watchpoints
1022 based on the expression. Ideally this should happen at a higher level,
1023 and there should be one bp_location for each computed address we
1024 must watch. As soon as a many-to-one mapping is available I'll
1027 int within_current_scope;
1028 struct value *mark = value_mark ();
1030 struct frame_id saved_frame_id;
1032 /* Save the current frame's ID so we can restore it after
1033 evaluating the watchpoint expression on its own frame. */
1034 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1035 took a frame parameter, so that we didn't have to change the
1037 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1039 /* Determine if the watchpoint is within scope. */
1040 if (bpt->owner->exp_valid_block == NULL)
1041 within_current_scope = 1;
1044 struct frame_info *fi;
1045 fi = frame_find_by_id (bpt->owner->watchpoint_frame);
1046 within_current_scope = (fi != NULL);
1047 if (within_current_scope)
1051 if (within_current_scope)
1053 free_valchain (bpt);
1055 /* Evaluate the expression and cut the chain of values
1056 produced off from the value chain.
1058 Make sure the value returned isn't lazy; we use
1059 laziness to determine what memory GDB actually needed
1060 in order to compute the value of the expression. */
1061 v = evaluate_expression (bpt->owner->exp);
1063 value_release_to_mark (mark);
1065 bpt->owner->val_chain = v;
1068 /* Look at each value on the value chain. */
1069 for (; v; v = value_next (v))
1071 /* If it's a memory location, and GDB actually needed
1072 its contents to evaluate the expression, then we
1074 if (VALUE_LVAL (v) == lval_memory
1075 && ! value_lazy (v))
1077 struct type *vtype = check_typedef (value_type (v));
1079 /* We only watch structs and arrays if user asked
1080 for it explicitly, never if they just happen to
1081 appear in the middle of some value chain. */
1082 if (v == bpt->owner->val_chain
1083 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1084 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1089 addr = VALUE_ADDRESS (v) + value_offset (v);
1090 len = TYPE_LENGTH (value_type (v));
1092 if (bpt->owner->type == bp_read_watchpoint)
1094 else if (bpt->owner->type == bp_access_watchpoint)
1097 val = target_insert_watchpoint (addr, len, type);
1100 /* Don't exit the loop, try to insert
1101 every value on the value chain. That's
1102 because we will be removing all the
1103 watches below, and removing a
1104 watchpoint we didn't insert could have
1112 /* Failure to insert a watchpoint on any memory value in the
1113 value chain brings us here. */
1116 remove_breakpoint (bpt, mark_uninserted);
1117 *hw_breakpoint_error = 1;
1118 fprintf_unfiltered (tmp_error_stream,
1119 "Could not insert hardware watchpoint %d.\n",
1120 bpt->owner->number);
1126 printf_filtered (_("\
1127 Hardware watchpoint %d deleted because the program has left the block \n\
1128 in which its expression is valid.\n"),
1129 bpt->owner->number);
1130 if (bpt->owner->related_breakpoint)
1131 bpt->owner->related_breakpoint->disposition = disp_del_at_next_stop;
1132 bpt->owner->disposition = disp_del_at_next_stop;
1135 /* Restore the selected frame. */
1136 select_frame (frame_find_by_id (saved_frame_id));
1141 else if (ep_is_exception_catchpoint (bpt->owner))
1143 /* FIXME drow/2003-09-09: This code sets both a catchpoint and a
1144 breakpoint. Once again, it would be better if this was represented
1145 as two bp_locations. */
1147 /* If we get here, we must have a callback mechanism for exception
1148 events -- with g++ style embedded label support, we insert
1149 ordinary breakpoints and not catchpoints. */
1150 val = target_insert_breakpoint (&bpt->target_info);
1153 /* Couldn't set breakpoint for some reason */
1154 fprintf_unfiltered (tmp_error_stream,
1155 "Cannot insert catchpoint %d; disabling it.\n",
1156 bpt->owner->number);
1157 fprintf_filtered (tmp_error_stream,
1158 "Error accessing memory address ");
1159 deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream);
1160 fprintf_filtered (tmp_error_stream, ": %s.\n",
1161 safe_strerror (val));
1162 bpt->owner->enable_state = bp_disabled;
1166 /* Bp set, now make sure callbacks are enabled */
1167 /* Format possible error msg */
1168 char *message = xstrprintf ("Error inserting catchpoint %d:\n",
1169 bpt->owner->number);
1170 struct cleanup *cleanups = make_cleanup (xfree, message);
1172 args_for_catchpoint_enable args;
1173 args.kind = bpt->owner->type == bp_catch_catch ?
1174 EX_EVENT_CATCH : EX_EVENT_THROW;
1176 val = catch_errors (cover_target_enable_exception_callback,
1177 &args, message, RETURN_MASK_ALL);
1178 do_cleanups (cleanups);
1179 if (val != 0 && val != -1)
1182 /* Check if something went wrong; val == 0 can be ignored */
1185 /* something went wrong */
1186 fprintf_unfiltered (tmp_error_stream,
1187 "Cannot insert catchpoint %d; disabling it.\n",
1188 bpt->owner->number);
1189 bpt->owner->enable_state = bp_disabled;
1196 else if (bpt->owner->type == bp_catch_fork
1197 || bpt->owner->type == bp_catch_vfork
1198 || bpt->owner->type == bp_catch_exec)
1200 struct gdb_exception e = catch_exception (uiout, insert_catchpoint,
1201 bpt->owner, RETURN_MASK_ERROR);
1202 exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
1203 bpt->owner->number);
1205 bpt->owner->enable_state = bp_disabled;
1209 /* We've already printed an error message if there was a problem
1210 inserting this catchpoint, and we've disabled the catchpoint,
1211 so just return success. */
1218 /* insert_breakpoints is used when starting or continuing the program.
1219 remove_breakpoints is used when the program stops.
1220 Both return zero if successful,
1221 or an `errno' value if could not write the inferior. */
1224 insert_breakpoints (void)
1226 struct bp_location *b, *temp;
1227 int return_val = 0; /* return success code. */
1229 int disabled_breaks = 0;
1230 int hw_breakpoint_error = 0;
1231 int process_warning = 0;
1233 struct ui_file *tmp_error_stream = mem_fileopen ();
1234 make_cleanup_ui_file_delete (tmp_error_stream);
1236 /* Explicitly mark the warning -- this will only be printed if
1237 there was an error. */
1238 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
1240 ALL_BP_LOCATIONS_SAFE (b, temp)
1242 /* Permanent breakpoints cannot be inserted or removed. Disabled
1243 breakpoints should not be inserted. */
1244 if (!breakpoint_enabled (b->owner))
1247 /* There is no point inserting thread-specific breakpoints if the
1248 thread no longer exists. */
1249 if (b->owner->thread != -1
1250 && !valid_thread_id (b->owner->thread))
1253 /* FIXME drow/2003-10-07: This code should be pushed elsewhere when
1254 hardware watchpoints are split into multiple loc breakpoints. */
1255 if ((b->loc_type == bp_loc_hardware_watchpoint
1256 || b->owner->type == bp_watchpoint) && !b->owner->val)
1259 val = evaluate_expression (b->owner->exp);
1260 release_value (val);
1261 if (value_lazy (val))
1262 value_fetch_lazy (val);
1263 b->owner->val = val;
1266 val = insert_bp_location (b, tmp_error_stream,
1267 &disabled_breaks, &process_warning,
1268 &hw_breakpoint_error);
1275 /* If a hardware breakpoint or watchpoint was inserted, add a
1276 message about possibly exhausted resources. */
1277 if (hw_breakpoint_error)
1279 fprintf_unfiltered (tmp_error_stream,
1280 "Could not insert hardware breakpoints:\n\
1281 You may have requested too many hardware breakpoints/watchpoints.\n");
1283 #ifdef ONE_PROCESS_WRITETEXT
1284 if (process_warning)
1285 fprintf_unfiltered (tmp_error_stream,
1286 "The same program may be running in another process.");
1288 target_terminal_ours_for_output ();
1289 error_stream (tmp_error_stream);
1295 remove_breakpoints (void)
1297 struct bp_location *b;
1300 ALL_BP_LOCATIONS (b)
1304 val = remove_breakpoint (b, mark_uninserted);
1313 remove_hw_watchpoints (void)
1315 struct bp_location *b;
1318 ALL_BP_LOCATIONS (b)
1320 if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
1322 val = remove_breakpoint (b, mark_uninserted);
1331 reattach_breakpoints (int pid)
1333 struct bp_location *b;
1335 struct cleanup *old_chain = save_inferior_ptid ();
1336 struct ui_file *tmp_error_stream = mem_fileopen ();
1337 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
1339 make_cleanup_ui_file_delete (tmp_error_stream);
1341 inferior_ptid = pid_to_ptid (pid);
1342 ALL_BP_LOCATIONS (b)
1347 val = insert_bp_location (b, tmp_error_stream,
1348 &dummy1, &dummy2, &dummy3);
1351 do_cleanups (old_chain);
1356 do_cleanups (old_chain);
1361 update_breakpoints_after_exec (void)
1363 struct breakpoint *b;
1364 struct breakpoint *temp;
1366 /* Doing this first prevents the badness of having delete_breakpoint()
1367 write a breakpoint's current "shadow contents" to lift the bp. That
1368 shadow is NOT valid after an exec()! */
1369 mark_breakpoints_out ();
1371 ALL_BREAKPOINTS_SAFE (b, temp)
1373 /* Solib breakpoints must be explicitly reset after an exec(). */
1374 if (b->type == bp_shlib_event)
1376 delete_breakpoint (b);
1380 /* Thread event breakpoints must be set anew after an exec(),
1381 as must overlay event breakpoints. */
1382 if (b->type == bp_thread_event || b->type == bp_overlay_event)
1384 delete_breakpoint (b);
1388 /* Step-resume breakpoints are meaningless after an exec(). */
1389 if (b->type == bp_step_resume)
1391 delete_breakpoint (b);
1395 /* Ditto the exception-handling catchpoints. */
1396 if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
1398 delete_breakpoint (b);
1402 /* Don't delete an exec catchpoint, because else the inferior
1403 won't stop when it ought!
1405 Similarly, we probably ought to keep vfork catchpoints, 'cause
1406 on this target, we may not be able to stop when the vfork is
1407 seen, but only when the subsequent exec is seen. (And because
1408 deleting fork catchpoints here but not vfork catchpoints will
1409 seem mysterious to users, keep those too.)
1411 ??rehrauer: Let's hope that merely clearing out this catchpoint's
1412 target address field, if any, is sufficient to have it be reset
1413 automagically. Certainly on HP-UX that's true.
1416 valid code address on some platforms (like the mn10300
1417 simulators). We shouldn't assign any special interpretation to
1418 a breakpoint with a zero address. And in fact, GDB doesn't ---
1419 I can't see what that comment above is talking about. As far
1420 as I can tell, setting the address of a
1421 bp_catch_exec/bp_catch_vfork/bp_catch_fork breakpoint to zero
1422 is meaningless, since those are implemented with HP-UX kernel
1423 hackery, not by storing breakpoint instructions somewhere. */
1424 if ((b->type == bp_catch_exec) ||
1425 (b->type == bp_catch_vfork) ||
1426 (b->type == bp_catch_fork))
1428 b->loc->address = (CORE_ADDR) 0;
1432 /* bp_finish is a special case. The only way we ought to be able
1433 to see one of these when an exec() has happened, is if the user
1434 caught a vfork, and then said "finish". Ordinarily a finish just
1435 carries them to the call-site of the current callee, by setting
1436 a temporary bp there and resuming. But in this case, the finish
1437 will carry them entirely through the vfork & exec.
1439 We don't want to allow a bp_finish to remain inserted now. But
1440 we can't safely delete it, 'cause finish_command has a handle to
1441 the bp on a bpstat, and will later want to delete it. There's a
1442 chance (and I've seen it happen) that if we delete the bp_finish
1443 here, that its storage will get reused by the time finish_command
1444 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1445 We really must allow finish_command to delete a bp_finish.
1447 In the absense of a general solution for the "how do we know
1448 it's safe to delete something others may have handles to?"
1449 problem, what we'll do here is just uninsert the bp_finish, and
1450 let finish_command delete it.
1452 (We know the bp_finish is "doomed" in the sense that it's
1453 momentary, and will be deleted as soon as finish_command sees
1454 the inferior stopped. So it doesn't matter that the bp's
1455 address is probably bogus in the new a.out, unlike e.g., the
1456 solib breakpoints.) */
1458 if (b->type == bp_finish)
1463 /* Without a symbolic address, we have little hope of the
1464 pre-exec() address meaning the same thing in the post-exec()
1466 if (b->addr_string == NULL)
1468 delete_breakpoint (b);
1472 /* If this breakpoint has survived the above battery of checks, then
1473 it must have a symbolic address. Be sure that it gets reevaluated
1474 to a target address, rather than reusing the old evaluation.
1477 for bp_catch_exec and friends, I'm pretty sure this is entirely
1478 unnecessary. A call to breakpoint_re_set_one always recomputes
1479 the breakpoint's address from scratch, or deletes it if it can't.
1480 So I think this assignment could be deleted without effect. */
1481 b->loc->address = (CORE_ADDR) 0;
1483 /* FIXME what about longjmp breakpoints? Re-create them here? */
1484 create_overlay_event_breakpoint ("_ovly_debug_event");
1488 detach_breakpoints (int pid)
1490 struct bp_location *b;
1492 struct cleanup *old_chain = save_inferior_ptid ();
1494 if (pid == PIDGET (inferior_ptid))
1495 error (_("Cannot detach breakpoints of inferior_ptid"));
1497 /* Set inferior_ptid; remove_breakpoint uses this global. */
1498 inferior_ptid = pid_to_ptid (pid);
1499 ALL_BP_LOCATIONS (b)
1503 val = remove_breakpoint (b, mark_inserted);
1506 do_cleanups (old_chain);
1511 do_cleanups (old_chain);
1516 remove_breakpoint (struct bp_location *b, insertion_state_t is)
1520 if (b->owner->enable_state == bp_permanent)
1521 /* Permanent breakpoints cannot be inserted or removed. */
1524 if (b->owner->type == bp_none)
1525 warning (_("attempted to remove apparently deleted breakpoint #%d?"),
1528 if (b->loc_type == bp_loc_software_breakpoint
1529 || b->loc_type == bp_loc_hardware_breakpoint)
1531 /* "Normal" instruction breakpoint: either the standard
1532 trap-instruction bp (bp_breakpoint), or a
1533 bp_hardware_breakpoint. */
1535 /* First check to see if we have to handle an overlay. */
1536 if (overlay_debugging == ovly_off
1537 || b->section == NULL
1538 || !(section_is_overlay (b->section)))
1540 /* No overlay handling: just remove the breakpoint. */
1542 if (b->loc_type == bp_loc_hardware_breakpoint)
1543 val = target_remove_hw_breakpoint (&b->target_info);
1545 val = target_remove_breakpoint (&b->target_info);
1549 /* This breakpoint is in an overlay section.
1550 Did we set a breakpoint at the LMA? */
1551 if (!overlay_events_enabled)
1553 /* Yes -- overlay event support is not active, so we
1554 should have set a breakpoint at the LMA. Remove it.
1556 /* Ignore any failures: if the LMA is in ROM, we will
1557 have already warned when we failed to insert it. */
1558 if (b->loc_type == bp_loc_hardware_breakpoint)
1559 target_remove_hw_breakpoint (&b->overlay_target_info);
1561 target_remove_breakpoint (&b->overlay_target_info);
1563 /* Did we set a breakpoint at the VMA?
1564 If so, we will have marked the breakpoint 'inserted'. */
1567 /* Yes -- remove it. Previously we did not bother to
1568 remove the breakpoint if the section had been
1569 unmapped, but let's not rely on that being safe. We
1570 don't know what the overlay manager might do. */
1571 if (b->loc_type == bp_loc_hardware_breakpoint)
1572 val = target_remove_hw_breakpoint (&b->target_info);
1574 /* However, we should remove *software* breakpoints only
1575 if the section is still mapped, or else we overwrite
1576 wrong code with the saved shadow contents. */
1577 else if (section_is_mapped (b->section))
1578 val = target_remove_breakpoint (&b->target_info);
1584 /* No -- not inserted, so no need to remove. No error. */
1590 b->inserted = (is == mark_inserted);
1592 else if (b->loc_type == bp_loc_hardware_watchpoint
1593 && breakpoint_enabled (b->owner)
1599 b->inserted = (is == mark_inserted);
1600 /* Walk down the saved value chain. */
1601 for (v = b->owner->val_chain; v; v = value_next (v))
1603 /* For each memory reference remove the watchpoint
1605 if (VALUE_LVAL (v) == lval_memory
1606 && ! value_lazy (v))
1608 struct type *vtype = check_typedef (value_type (v));
1610 if (v == b->owner->val_chain
1611 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1612 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1617 addr = VALUE_ADDRESS (v) + value_offset (v);
1618 len = TYPE_LENGTH (value_type (v));
1620 if (b->owner->type == bp_read_watchpoint)
1622 else if (b->owner->type == bp_access_watchpoint)
1625 val = target_remove_watchpoint (addr, len, type);
1632 /* Failure to remove any of the hardware watchpoints comes here. */
1633 if ((is == mark_uninserted) && (b->inserted))
1634 warning (_("Could not remove hardware watchpoint %d."),
1637 else if ((b->owner->type == bp_catch_fork ||
1638 b->owner->type == bp_catch_vfork ||
1639 b->owner->type == bp_catch_exec)
1640 && breakpoint_enabled (b->owner)
1644 switch (b->owner->type)
1647 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
1649 case bp_catch_vfork:
1650 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
1653 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
1656 warning (_("Internal error, %s line %d."), __FILE__, __LINE__);
1661 b->inserted = (is == mark_inserted);
1663 else if ((b->owner->type == bp_catch_catch ||
1664 b->owner->type == bp_catch_throw)
1665 && breakpoint_enabled (b->owner)
1668 val = target_remove_breakpoint (&b->target_info);
1671 b->inserted = (is == mark_inserted);
1677 /* Clear the "inserted" flag in all breakpoints. */
1680 mark_breakpoints_out (void)
1682 struct bp_location *bpt;
1684 ALL_BP_LOCATIONS (bpt)
1688 /* Clear the "inserted" flag in all breakpoints and delete any
1689 breakpoints which should go away between runs of the program.
1691 Plus other such housekeeping that has to be done for breakpoints
1694 Note: this function gets called at the end of a run (by
1695 generic_mourn_inferior) and when a run begins (by
1696 init_wait_for_inferior). */
1701 breakpoint_init_inferior (enum inf_context context)
1703 struct breakpoint *b, *temp;
1704 struct bp_location *bpt;
1706 ALL_BP_LOCATIONS (bpt)
1709 ALL_BREAKPOINTS_SAFE (b, temp)
1714 case bp_watchpoint_scope:
1716 /* If the call dummy breakpoint is at the entry point it will
1717 cause problems when the inferior is rerun, so we better
1720 Also get rid of scope breakpoints. */
1721 delete_breakpoint (b);
1725 case bp_hardware_watchpoint:
1726 case bp_read_watchpoint:
1727 case bp_access_watchpoint:
1729 /* Likewise for watchpoints on local expressions. */
1730 if (b->exp_valid_block != NULL)
1731 delete_breakpoint (b);
1732 else if (context == inf_starting)
1734 /* Reset val field to force reread of starting value
1735 in insert_breakpoints. */
1737 value_free (b->val);
1747 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1748 exists at PC. It returns ordinary_breakpoint_here if it's an
1749 ordinary breakpoint, or permanent_breakpoint_here if it's a
1750 permanent breakpoint.
1751 - When continuing from a location with an ordinary breakpoint, we
1752 actually single step once before calling insert_breakpoints.
1753 - When continuing from a localion with a permanent breakpoint, we
1754 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1755 the target, to advance the PC past the breakpoint. */
1757 enum breakpoint_here
1758 breakpoint_here_p (CORE_ADDR pc)
1760 struct bp_location *bpt;
1761 int any_breakpoint_here = 0;
1763 ALL_BP_LOCATIONS (bpt)
1765 if (bpt->loc_type != bp_loc_software_breakpoint
1766 && bpt->loc_type != bp_loc_hardware_breakpoint)
1769 if ((breakpoint_enabled (bpt->owner)
1770 || bpt->owner->enable_state == bp_permanent)
1771 && bpt->address == pc) /* bp is enabled and matches pc */
1773 if (overlay_debugging
1774 && section_is_overlay (bpt->section)
1775 && !section_is_mapped (bpt->section))
1776 continue; /* unmapped overlay -- can't be a match */
1777 else if (bpt->owner->enable_state == bp_permanent)
1778 return permanent_breakpoint_here;
1780 any_breakpoint_here = 1;
1784 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1788 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1789 but it only returns true if there is actually a breakpoint inserted
1793 breakpoint_inserted_here_p (CORE_ADDR pc)
1795 struct bp_location *bpt;
1797 ALL_BP_LOCATIONS (bpt)
1799 if (bpt->loc_type != bp_loc_software_breakpoint
1800 && bpt->loc_type != bp_loc_hardware_breakpoint)
1804 && bpt->address == pc) /* bp is inserted and matches pc */
1806 if (overlay_debugging
1807 && section_is_overlay (bpt->section)
1808 && !section_is_mapped (bpt->section))
1809 continue; /* unmapped overlay -- can't be a match */
1815 /* Also check for software single-step breakpoints. */
1816 if (single_step_breakpoint_inserted_here_p (pc))
1822 /* This function returns non-zero iff there is a software breakpoint
1826 software_breakpoint_inserted_here_p (CORE_ADDR pc)
1828 struct bp_location *bpt;
1829 int any_breakpoint_here = 0;
1831 ALL_BP_LOCATIONS (bpt)
1833 if (bpt->loc_type != bp_loc_software_breakpoint)
1836 if ((breakpoint_enabled (bpt->owner)
1837 || bpt->owner->enable_state == bp_permanent)
1839 && bpt->address == pc) /* bp is enabled and matches pc */
1841 if (overlay_debugging
1842 && section_is_overlay (bpt->section)
1843 && !section_is_mapped (bpt->section))
1844 continue; /* unmapped overlay -- can't be a match */
1850 /* Also check for software single-step breakpoints. */
1851 if (single_step_breakpoint_inserted_here_p (pc))
1857 /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
1858 PC is valid for process/thread PTID. */
1861 breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
1863 struct bp_location *bpt;
1866 thread = pid_to_thread_id (ptid);
1868 ALL_BP_LOCATIONS (bpt)
1870 if (bpt->loc_type != bp_loc_software_breakpoint
1871 && bpt->loc_type != bp_loc_hardware_breakpoint)
1874 if ((breakpoint_enabled (bpt->owner)
1875 || bpt->owner->enable_state == bp_permanent)
1876 && bpt->address == pc
1877 && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
1879 if (overlay_debugging
1880 && section_is_overlay (bpt->section)
1881 && !section_is_mapped (bpt->section))
1882 continue; /* unmapped overlay -- can't be a match */
1892 /* bpstat stuff. External routines' interfaces are documented
1896 ep_is_catchpoint (struct breakpoint *ep)
1899 (ep->type == bp_catch_load)
1900 || (ep->type == bp_catch_unload)
1901 || (ep->type == bp_catch_fork)
1902 || (ep->type == bp_catch_vfork)
1903 || (ep->type == bp_catch_exec)
1904 || (ep->type == bp_catch_catch)
1905 || (ep->type == bp_catch_throw);
1907 /* ??rehrauer: Add more kinds here, as are implemented... */
1911 ep_is_shlib_catchpoint (struct breakpoint *ep)
1914 (ep->type == bp_catch_load)
1915 || (ep->type == bp_catch_unload);
1919 ep_is_exception_catchpoint (struct breakpoint *ep)
1922 (ep->type == bp_catch_catch)
1923 || (ep->type == bp_catch_throw);
1926 /* Clear a bpstat so that it says we are not at any breakpoint.
1927 Also free any storage that is part of a bpstat. */
1930 bpstat_clear (bpstat *bsp)
1941 if (p->old_val != NULL)
1942 value_free (p->old_val);
1943 free_command_lines (&p->commands);
1950 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1951 is part of the bpstat is copied as well. */
1954 bpstat_copy (bpstat bs)
1958 bpstat retval = NULL;
1963 for (; bs != NULL; bs = bs->next)
1965 tmp = (bpstat) xmalloc (sizeof (*tmp));
1966 memcpy (tmp, bs, sizeof (*tmp));
1967 if (bs->commands != NULL)
1968 tmp->commands = copy_command_lines (bs->commands);
1969 if (bs->old_val != NULL)
1970 tmp->old_val = value_copy (bs->old_val);
1973 /* This is the first thing in the chain. */
1983 /* Find the bpstat associated with this breakpoint */
1986 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
1991 for (; bsp != NULL; bsp = bsp->next)
1993 if (bsp->breakpoint_at == breakpoint)
1999 /* Find a step_resume breakpoint associated with this bpstat.
2000 (If there are multiple step_resume bp's on the list, this function
2001 will arbitrarily pick one.)
2003 It is an error to use this function if BPSTAT doesn't contain a
2004 step_resume breakpoint.
2006 See wait_for_inferior's use of this function. */
2008 bpstat_find_step_resume_breakpoint (bpstat bsp)
2012 gdb_assert (bsp != NULL);
2014 current_thread = pid_to_thread_id (inferior_ptid);
2016 for (; bsp != NULL; bsp = bsp->next)
2018 if ((bsp->breakpoint_at != NULL) &&
2019 (bsp->breakpoint_at->type == bp_step_resume) &&
2020 (bsp->breakpoint_at->thread == current_thread ||
2021 bsp->breakpoint_at->thread == -1))
2022 return bsp->breakpoint_at;
2025 internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found."));
2029 /* Put in *NUM the breakpoint number of the first breakpoint we are stopped
2030 at. *BSP upon return is a bpstat which points to the remaining
2031 breakpoints stopped at (but which is not guaranteed to be good for
2032 anything but further calls to bpstat_num).
2033 Return 0 if passed a bpstat which does not indicate any breakpoints.
2034 Return -1 if stopped at a breakpoint that has been deleted since
2036 Return 1 otherwise. */
2039 bpstat_num (bpstat *bsp, int *num)
2041 struct breakpoint *b;
2044 return 0; /* No more breakpoint values */
2046 b = (*bsp)->breakpoint_at;
2047 *bsp = (*bsp)->next;
2049 return -1; /* breakpoint that's been deleted since */
2051 *num = b->number; /* We have its number */
2055 /* Modify BS so that the actions will not be performed. */
2058 bpstat_clear_actions (bpstat bs)
2060 for (; bs != NULL; bs = bs->next)
2062 free_command_lines (&bs->commands);
2063 if (bs->old_val != NULL)
2065 value_free (bs->old_val);
2071 /* Stub for cleaning up our state if we error-out of a breakpoint command */
2073 cleanup_executing_breakpoints (void *ignore)
2075 executing_breakpoint_commands = 0;
2078 /* Execute all the commands associated with all the breakpoints at this
2079 location. Any of these commands could cause the process to proceed
2080 beyond this point, etc. We look out for such changes by checking
2081 the global "breakpoint_proceeded" after each command. */
2084 bpstat_do_actions (bpstat *bsp)
2087 struct cleanup *old_chain;
2089 /* Avoid endless recursion if a `source' command is contained
2091 if (executing_breakpoint_commands)
2094 executing_breakpoint_commands = 1;
2095 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
2098 /* Note that (as of this writing), our callers all appear to
2099 be passing us the address of global stop_bpstat. And, if
2100 our calls to execute_control_command cause the inferior to
2101 proceed, that global (and hence, *bsp) will change.
2103 We must be careful to not touch *bsp unless the inferior
2104 has not proceeded. */
2106 /* This pointer will iterate over the list of bpstat's. */
2109 breakpoint_proceeded = 0;
2110 for (; bs != NULL; bs = bs->next)
2112 struct command_line *cmd;
2113 struct cleanup *this_cmd_tree_chain;
2115 /* Take ownership of the BSP's command tree, if it has one.
2117 The command tree could legitimately contain commands like
2118 'step' and 'next', which call clear_proceed_status, which
2119 frees stop_bpstat's command tree. To make sure this doesn't
2120 free the tree we're executing out from under us, we need to
2121 take ownership of the tree ourselves. Since a given bpstat's
2122 commands are only executed once, we don't need to copy it; we
2123 can clear the pointer in the bpstat, and make sure we free
2124 the tree when we're done. */
2127 this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
2131 execute_control_command (cmd);
2133 if (breakpoint_proceeded)
2139 /* We can free this command tree now. */
2140 do_cleanups (this_cmd_tree_chain);
2142 if (breakpoint_proceeded)
2143 /* The inferior is proceeded by the command; bomb out now.
2144 The bpstat chain has been blown away by wait_for_inferior.
2145 But since execution has stopped again, there is a new bpstat
2146 to look at, so start over. */
2149 do_cleanups (old_chain);
2152 /* This is the normal print function for a bpstat. In the future,
2153 much of this logic could (should?) be moved to bpstat_stop_status,
2154 by having it set different print_it values.
2156 Current scheme: When we stop, bpstat_print() is called. It loops
2157 through the bpstat list of things causing this stop, calling the
2158 print_bp_stop_message function on each one. The behavior of the
2159 print_bp_stop_message function depends on the print_it field of
2160 bpstat. If such field so indicates, call this function here.
2162 Return values from this routine (ultimately used by bpstat_print()
2163 and normal_stop() to decide what to do):
2164 PRINT_NOTHING: Means we already printed all we needed to print,
2165 don't print anything else.
2166 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
2167 that something to be followed by a location.
2168 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
2169 that something to be followed by a location.
2170 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
2173 static enum print_stop_action
2174 print_it_typical (bpstat bs)
2176 struct cleanup *old_chain, *ui_out_chain;
2177 struct ui_stream *stb;
2178 stb = ui_out_stream_new (uiout);
2179 old_chain = make_cleanup_ui_out_stream_delete (stb);
2180 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
2181 which has since been deleted. */
2182 if (bs->breakpoint_at == NULL)
2183 return PRINT_UNKNOWN;
2185 switch (bs->breakpoint_at->type)
2188 case bp_hardware_breakpoint:
2189 if (bs->breakpoint_at->loc->address != bs->breakpoint_at->loc->requested_address)
2190 breakpoint_adjustment_warning (bs->breakpoint_at->loc->requested_address,
2191 bs->breakpoint_at->loc->address,
2192 bs->breakpoint_at->number, 1);
2193 annotate_breakpoint (bs->breakpoint_at->number);
2194 ui_out_text (uiout, "\nBreakpoint ");
2195 if (ui_out_is_mi_like_p (uiout))
2196 ui_out_field_string (uiout, "reason",
2197 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
2198 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
2199 ui_out_text (uiout, ", ");
2200 return PRINT_SRC_AND_LOC;
2203 case bp_shlib_event:
2204 /* Did we stop because the user set the stop_on_solib_events
2205 variable? (If so, we report this as a generic, "Stopped due
2206 to shlib event" message.) */
2207 printf_filtered (_("Stopped due to shared library event\n"));
2208 return PRINT_NOTHING;
2211 case bp_thread_event:
2212 /* Not sure how we will get here.
2213 GDB should not stop for these breakpoints. */
2214 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
2215 return PRINT_NOTHING;
2218 case bp_overlay_event:
2219 /* By analogy with the thread event, GDB should not stop for these. */
2220 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
2221 return PRINT_NOTHING;
2225 annotate_catchpoint (bs->breakpoint_at->number);
2226 printf_filtered (_("\nCatchpoint %d (loaded %s), "),
2227 bs->breakpoint_at->number,
2228 bs->breakpoint_at->triggered_dll_pathname);
2229 return PRINT_SRC_AND_LOC;
2232 case bp_catch_unload:
2233 annotate_catchpoint (bs->breakpoint_at->number);
2234 printf_filtered (_("\nCatchpoint %d (unloaded %s), "),
2235 bs->breakpoint_at->number,
2236 bs->breakpoint_at->triggered_dll_pathname);
2237 return PRINT_SRC_AND_LOC;
2241 annotate_catchpoint (bs->breakpoint_at->number);
2242 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
2243 bs->breakpoint_at->number,
2244 bs->breakpoint_at->forked_inferior_pid);
2245 return PRINT_SRC_AND_LOC;
2248 case bp_catch_vfork:
2249 annotate_catchpoint (bs->breakpoint_at->number);
2250 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
2251 bs->breakpoint_at->number,
2252 bs->breakpoint_at->forked_inferior_pid);
2253 return PRINT_SRC_AND_LOC;
2257 annotate_catchpoint (bs->breakpoint_at->number);
2258 printf_filtered (_("\nCatchpoint %d (exec'd %s), "),
2259 bs->breakpoint_at->number,
2260 bs->breakpoint_at->exec_pathname);
2261 return PRINT_SRC_AND_LOC;
2264 case bp_catch_catch:
2265 if (current_exception_event &&
2266 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
2268 annotate_catchpoint (bs->breakpoint_at->number);
2269 printf_filtered (_("\nCatchpoint %d (exception caught), "),
2270 bs->breakpoint_at->number);
2271 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2272 printf_filtered (_("throw location %s:%d, "),
2273 CURRENT_EXCEPTION_THROW_FILE,
2274 CURRENT_EXCEPTION_THROW_LINE);
2276 printf_filtered (_("throw location unknown, "));
2278 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2279 printf_filtered (_("catch location %s:%d\n"),
2280 CURRENT_EXCEPTION_CATCH_FILE,
2281 CURRENT_EXCEPTION_CATCH_LINE);
2283 printf_filtered (_("catch location unknown\n"));
2285 /* don't bother to print location frame info */
2286 return PRINT_SRC_ONLY;
2290 /* really throw, some other bpstat will handle it */
2291 return PRINT_UNKNOWN;
2295 case bp_catch_throw:
2296 if (current_exception_event &&
2297 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2299 annotate_catchpoint (bs->breakpoint_at->number);
2300 printf_filtered (_("\nCatchpoint %d (exception thrown), "),
2301 bs->breakpoint_at->number);
2302 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2303 printf_filtered (_("throw location %s:%d, "),
2304 CURRENT_EXCEPTION_THROW_FILE,
2305 CURRENT_EXCEPTION_THROW_LINE);
2307 printf_filtered (_("throw location unknown, "));
2309 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2310 printf_filtered (_("catch location %s:%d\n"),
2311 CURRENT_EXCEPTION_CATCH_FILE,
2312 CURRENT_EXCEPTION_CATCH_LINE);
2314 printf_filtered (_("catch location unknown\n"));
2316 /* don't bother to print location frame info */
2317 return PRINT_SRC_ONLY;
2321 /* really catch, some other bpstat will handle it */
2322 return PRINT_UNKNOWN;
2327 case bp_hardware_watchpoint:
2328 if (bs->old_val != NULL)
2330 annotate_watchpoint (bs->breakpoint_at->number);
2331 if (ui_out_is_mi_like_p (uiout))
2334 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
2335 mention (bs->breakpoint_at);
2336 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2337 ui_out_text (uiout, "\nOld value = ");
2338 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2339 ui_out_field_stream (uiout, "old", stb);
2340 ui_out_text (uiout, "\nNew value = ");
2341 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2342 ui_out_field_stream (uiout, "new", stb);
2343 do_cleanups (ui_out_chain);
2344 ui_out_text (uiout, "\n");
2345 value_free (bs->old_val);
2348 /* More than one watchpoint may have been triggered. */
2349 return PRINT_UNKNOWN;
2352 case bp_read_watchpoint:
2353 if (ui_out_is_mi_like_p (uiout))
2356 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
2357 mention (bs->breakpoint_at);
2358 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2359 ui_out_text (uiout, "\nValue = ");
2360 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2361 ui_out_field_stream (uiout, "value", stb);
2362 do_cleanups (ui_out_chain);
2363 ui_out_text (uiout, "\n");
2364 return PRINT_UNKNOWN;
2367 case bp_access_watchpoint:
2368 if (bs->old_val != NULL)
2370 annotate_watchpoint (bs->breakpoint_at->number);
2371 if (ui_out_is_mi_like_p (uiout))
2374 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
2375 mention (bs->breakpoint_at);
2376 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2377 ui_out_text (uiout, "\nOld value = ");
2378 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2379 ui_out_field_stream (uiout, "old", stb);
2380 value_free (bs->old_val);
2382 ui_out_text (uiout, "\nNew value = ");
2386 mention (bs->breakpoint_at);
2387 if (ui_out_is_mi_like_p (uiout))
2390 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
2391 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2392 ui_out_text (uiout, "\nValue = ");
2394 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2395 ui_out_field_stream (uiout, "new", stb);
2396 do_cleanups (ui_out_chain);
2397 ui_out_text (uiout, "\n");
2398 return PRINT_UNKNOWN;
2401 /* Fall through, we don't deal with these types of breakpoints
2405 if (ui_out_is_mi_like_p (uiout))
2408 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
2409 return PRINT_UNKNOWN;
2413 if (ui_out_is_mi_like_p (uiout))
2416 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
2417 return PRINT_UNKNOWN;
2422 case bp_longjmp_resume:
2423 case bp_step_resume:
2424 case bp_watchpoint_scope:
2427 return PRINT_UNKNOWN;
2431 /* Generic routine for printing messages indicating why we
2432 stopped. The behavior of this function depends on the value
2433 'print_it' in the bpstat structure. Under some circumstances we
2434 may decide not to print anything here and delegate the task to
2437 static enum print_stop_action
2438 print_bp_stop_message (bpstat bs)
2440 switch (bs->print_it)
2443 /* Nothing should be printed for this bpstat entry. */
2444 return PRINT_UNKNOWN;
2448 /* We still want to print the frame, but we already printed the
2449 relevant messages. */
2450 return PRINT_SRC_AND_LOC;
2453 case print_it_normal:
2454 /* Normal case. Call the breakpoint's print_it method, or
2455 print_it_typical. */
2456 if (bs->breakpoint_at != NULL && bs->breakpoint_at->ops != NULL
2457 && bs->breakpoint_at->ops->print_it != NULL)
2458 return bs->breakpoint_at->ops->print_it (bs->breakpoint_at);
2460 return print_it_typical (bs);
2464 internal_error (__FILE__, __LINE__,
2465 _("print_bp_stop_message: unrecognized enum value"));
2470 /* Print a message indicating what happened. This is called from
2471 normal_stop(). The input to this routine is the head of the bpstat
2472 list - a list of the eventpoints that caused this stop. This
2473 routine calls the generic print routine for printing a message
2474 about reasons for stopping. This will print (for example) the
2475 "Breakpoint n," part of the output. The return value of this
2478 PRINT_UNKNOWN: Means we printed nothing
2479 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2480 code to print the location. An example is
2481 "Breakpoint 1, " which should be followed by
2483 PRINT_SRC_ONLY: Means we printed something, but there is no need
2484 to also print the location part of the message.
2485 An example is the catch/throw messages, which
2486 don't require a location appended to the end.
2487 PRINT_NOTHING: We have done some printing and we don't need any
2488 further info to be printed.*/
2490 enum print_stop_action
2491 bpstat_print (bpstat bs)
2495 /* Maybe another breakpoint in the chain caused us to stop.
2496 (Currently all watchpoints go on the bpstat whether hit or not.
2497 That probably could (should) be changed, provided care is taken
2498 with respect to bpstat_explains_signal). */
2499 for (; bs; bs = bs->next)
2501 val = print_bp_stop_message (bs);
2502 if (val == PRINT_SRC_ONLY
2503 || val == PRINT_SRC_AND_LOC
2504 || val == PRINT_NOTHING)
2508 /* We reached the end of the chain, or we got a null BS to start
2509 with and nothing was printed. */
2510 return PRINT_UNKNOWN;
2513 /* Evaluate the expression EXP and return 1 if value is zero.
2514 This is used inside a catch_errors to evaluate the breakpoint condition.
2515 The argument is a "struct expression *" that has been cast to char * to
2516 make it pass through catch_errors. */
2519 breakpoint_cond_eval (void *exp)
2521 struct value *mark = value_mark ();
2522 int i = !value_true (evaluate_expression ((struct expression *) exp));
2523 value_free_to_mark (mark);
2527 /* Allocate a new bpstat and chain it to the current one. */
2530 bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
2534 bs = (bpstat) xmalloc (sizeof (*bs));
2536 bs->breakpoint_at = b;
2537 /* If the condition is false, etc., don't do the commands. */
2538 bs->commands = NULL;
2540 bs->print_it = print_it_normal;
2544 /* Possible return values for watchpoint_check (this can't be an enum
2545 because of check_errors). */
2546 /* The watchpoint has been deleted. */
2547 #define WP_DELETED 1
2548 /* The value has changed. */
2549 #define WP_VALUE_CHANGED 2
2550 /* The value has not changed. */
2551 #define WP_VALUE_NOT_CHANGED 3
2553 #define BP_TEMPFLAG 1
2554 #define BP_HARDWAREFLAG 2
2556 /* Check watchpoint condition. */
2559 watchpoint_check (void *p)
2561 bpstat bs = (bpstat) p;
2562 struct breakpoint *b;
2563 struct frame_info *fr;
2564 int within_current_scope;
2566 b = bs->breakpoint_at;
2568 if (b->exp_valid_block == NULL)
2569 within_current_scope = 1;
2572 /* There is no current frame at this moment. If we're going to have
2573 any chance of handling watchpoints on local variables, we'll need
2574 the frame chain (so we can determine if we're in scope). */
2575 reinit_frame_cache ();
2576 fr = frame_find_by_id (b->watchpoint_frame);
2577 within_current_scope = (fr != NULL);
2579 /* If we've gotten confused in the unwinder, we might have
2580 returned a frame that can't describe this variable. */
2581 if (within_current_scope
2582 && block_function (b->exp_valid_block) != get_frame_function (fr))
2583 within_current_scope = 0;
2585 /* in_function_epilogue_p() returns a non-zero value if we're still
2586 in the function but the stack frame has already been invalidated.
2587 Since we can't rely on the values of local variables after the
2588 stack has been destroyed, we are treating the watchpoint in that
2589 state as `not changed' without further checking.
2591 vinschen/2003-09-04: The former implementation left out the case
2592 that the watchpoint frame couldn't be found by frame_find_by_id()
2593 because the current PC is currently in an epilogue. Calling
2594 gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
2595 if ((!within_current_scope || fr == get_current_frame ())
2596 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2597 return WP_VALUE_NOT_CHANGED;
2598 if (fr && within_current_scope)
2599 /* If we end up stopping, the current frame will get selected
2600 in normal_stop. So this call to select_frame won't affect
2605 if (within_current_scope)
2607 /* We use value_{,free_to_}mark because it could be a
2608 *long* time before we return to the command level and
2609 call free_all_values. We can't call free_all_values because
2610 we might be in the middle of evaluating a function call. */
2612 struct value *mark = value_mark ();
2613 struct value *new_val = evaluate_expression (bs->breakpoint_at->exp);
2614 if (!value_equal (b->val, new_val))
2616 release_value (new_val);
2617 value_free_to_mark (mark);
2618 bs->old_val = b->val;
2620 /* We will stop here */
2621 return WP_VALUE_CHANGED;
2625 /* Nothing changed, don't do anything. */
2626 value_free_to_mark (mark);
2627 /* We won't stop here */
2628 return WP_VALUE_NOT_CHANGED;
2633 /* This seems like the only logical thing to do because
2634 if we temporarily ignored the watchpoint, then when
2635 we reenter the block in which it is valid it contains
2636 garbage (in the case of a function, it may have two
2637 garbage values, one before and one after the prologue).
2638 So we can't even detect the first assignment to it and
2639 watch after that (since the garbage may or may not equal
2640 the first value assigned). */
2641 /* We print all the stop information in print_it_typical(), but
2642 in this case, by the time we call print_it_typical() this bp
2643 will be deleted already. So we have no choice but print the
2644 information here. */
2645 if (ui_out_is_mi_like_p (uiout))
2647 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
2648 ui_out_text (uiout, "\nWatchpoint ");
2649 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2650 ui_out_text (uiout, " deleted because the program has left the block in\n\
2651 which its expression is valid.\n");
2653 if (b->related_breakpoint)
2654 b->related_breakpoint->disposition = disp_del_at_next_stop;
2655 b->disposition = disp_del_at_next_stop;
2661 /* Get a bpstat associated with having just stopped at address
2662 BP_ADDR in thread PTID. STOPPED_BY_WATCHPOINT is 1 if the
2663 target thinks we stopped due to a hardware watchpoint, 0 if we
2664 know we did not trigger a hardware watchpoint, and -1 if we do not know. */
2666 /* Determine whether we stopped at a breakpoint, etc, or whether we
2667 don't understand this stop. Result is a chain of bpstat's such that:
2669 if we don't understand the stop, the result is a null pointer.
2671 if we understand why we stopped, the result is not null.
2673 Each element of the chain refers to a particular breakpoint or
2674 watchpoint at which we have stopped. (We may have stopped for
2675 several reasons concurrently.)
2677 Each element of the chain has valid next, breakpoint_at,
2678 commands, FIXME??? fields. */
2681 bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid, int stopped_by_watchpoint)
2683 struct breakpoint *b, *temp;
2684 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2685 int real_breakpoint = 0;
2686 /* Root of the chain of bpstat's */
2687 struct bpstats root_bs[1];
2688 /* Pointer to the last thing in the chain currently. */
2689 bpstat bs = root_bs;
2690 int thread_id = pid_to_thread_id (ptid);
2692 ALL_BREAKPOINTS_SAFE (b, temp)
2694 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
2697 if (b->type != bp_watchpoint
2698 && b->type != bp_hardware_watchpoint
2699 && b->type != bp_read_watchpoint
2700 && b->type != bp_access_watchpoint
2701 && b->type != bp_hardware_breakpoint
2702 && b->type != bp_catch_fork
2703 && b->type != bp_catch_vfork
2704 && b->type != bp_catch_exec
2705 && b->type != bp_catch_catch
2706 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2708 if (b->loc->address != bp_addr) /* address doesn't match */
2710 if (overlay_debugging /* unmapped overlay section */
2711 && section_is_overlay (b->loc->section)
2712 && !section_is_mapped (b->loc->section))
2716 /* Continuable hardware watchpoints are treated as non-existent if the
2717 reason we stopped wasn't a hardware watchpoint (we didn't stop on
2718 some data address). Otherwise gdb won't stop on a break instruction
2719 in the code (not from a breakpoint) when a hardware watchpoint has
2722 if ((b->type == bp_hardware_watchpoint
2723 || b->type == bp_read_watchpoint
2724 || b->type == bp_access_watchpoint)
2725 && !stopped_by_watchpoint)
2728 if (b->type == bp_hardware_breakpoint)
2730 if (b->loc->address != bp_addr)
2732 if (overlay_debugging /* unmapped overlay section */
2733 && section_is_overlay (b->loc->section)
2734 && !section_is_mapped (b->loc->section))
2738 /* Is this a catchpoint of a load or unload? If so, did we
2739 get a load or unload of the specified library? If not,
2741 if ((b->type == bp_catch_load)
2742 #if defined(SOLIB_HAVE_LOAD_EVENT)
2743 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2744 || ((b->dll_pathname != NULL)
2745 && (strcmp (b->dll_pathname,
2746 SOLIB_LOADED_LIBRARY_PATHNAME (
2747 PIDGET (inferior_ptid)))
2753 if ((b->type == bp_catch_unload)
2754 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2755 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2756 || ((b->dll_pathname != NULL)
2757 && (strcmp (b->dll_pathname,
2758 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2759 PIDGET (inferior_ptid)))
2765 if ((b->type == bp_catch_fork)
2766 && !inferior_has_forked (PIDGET (inferior_ptid),
2767 &b->forked_inferior_pid))
2770 if ((b->type == bp_catch_vfork)
2771 && !inferior_has_vforked (PIDGET (inferior_ptid),
2772 &b->forked_inferior_pid))
2775 if ((b->type == bp_catch_exec)
2776 && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
2779 if (ep_is_exception_catchpoint (b) &&
2780 !(current_exception_event = target_get_current_exception_event ()))
2783 /* Come here if it's a watchpoint, or if the break address matches */
2785 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2787 /* Watchpoints may change this, if not found to have triggered. */
2791 if (b->type == bp_watchpoint ||
2792 b->type == bp_hardware_watchpoint)
2794 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2796 struct cleanup *cleanups = make_cleanup (xfree, message);
2797 int e = catch_errors (watchpoint_check, bs, message,
2799 do_cleanups (cleanups);
2803 /* We've already printed what needs to be printed. */
2804 /* Actually this is superfluous, because by the time we
2805 call print_it_typical() the wp will be already deleted,
2806 and the function will return immediately. */
2807 bs->print_it = print_it_done;
2810 case WP_VALUE_CHANGED:
2814 case WP_VALUE_NOT_CHANGED:
2816 bs->print_it = print_it_noop;
2823 /* Error from catch_errors. */
2824 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
2825 if (b->related_breakpoint)
2826 b->related_breakpoint->disposition = disp_del_at_next_stop;
2827 b->disposition = disp_del_at_next_stop;
2828 /* We've already printed what needs to be printed. */
2829 bs->print_it = print_it_done;
2835 else if (b->type == bp_read_watchpoint ||
2836 b->type == bp_access_watchpoint)
2842 if (!target_stopped_data_address (¤t_target, &addr))
2844 for (v = b->val_chain; v; v = value_next (v))
2846 if (VALUE_LVAL (v) == lval_memory
2847 && ! value_lazy (v))
2849 struct type *vtype = check_typedef (value_type (v));
2851 if (v == b->val_chain
2852 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2853 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2857 vaddr = VALUE_ADDRESS (v) + value_offset (v);
2858 /* Exact match not required. Within range is
2860 if (addr >= vaddr &&
2861 addr < vaddr + TYPE_LENGTH (value_type (v)))
2868 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2870 struct cleanup *cleanups = make_cleanup (xfree, message);
2871 int e = catch_errors (watchpoint_check, bs, message,
2873 do_cleanups (cleanups);
2877 /* We've already printed what needs to be printed. */
2878 bs->print_it = print_it_done;
2881 case WP_VALUE_CHANGED:
2882 if (b->type == bp_read_watchpoint)
2884 /* Don't stop: read watchpoints shouldn't fire if
2885 the value has changed. This is for targets
2886 which cannot set read-only watchpoints. */
2887 bs->print_it = print_it_noop;
2893 case WP_VALUE_NOT_CHANGED:
2900 /* Error from catch_errors. */
2901 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
2902 if (b->related_breakpoint)
2903 b->related_breakpoint->disposition = disp_del_at_next_stop;
2904 b->disposition = disp_del_at_next_stop;
2905 /* We've already printed what needs to be printed. */
2906 bs->print_it = print_it_done;
2910 else /* found == 0 */
2912 /* This is a case where some watchpoint(s) triggered,
2913 but not at the address of this watchpoint (FOUND
2914 was left zero). So don't print anything for this
2916 bs->print_it = print_it_noop;
2923 /* By definition, an encountered breakpoint is a triggered
2927 real_breakpoint = 1;
2930 if (frame_id_p (b->frame_id)
2931 && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
2935 int value_is_zero = 0;
2939 /* Need to select the frame, with all that implies
2940 so that the conditions will have the right context. */
2941 select_frame (get_current_frame ());
2943 = catch_errors (breakpoint_cond_eval, (b->cond),
2944 "Error in testing breakpoint condition:\n",
2946 /* FIXME-someday, should give breakpoint # */
2949 if (b->cond && value_is_zero)
2952 /* Don't consider this a hit. */
2955 else if (b->thread != -1 && b->thread != thread_id)
2958 /* Don't consider this a hit. */
2961 else if (b->ignore_count > 0)
2964 annotate_ignore_count_change ();
2969 /* We will stop here */
2970 if (b->disposition == disp_disable)
2971 b->enable_state = bp_disabled;
2974 bs->commands = b->commands;
2976 (strcmp ("silent", bs->commands->line) == 0
2977 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
2979 bs->commands = bs->commands->next;
2982 bs->commands = copy_command_lines (bs->commands);
2985 /* Print nothing for this entry if we dont stop or if we dont print. */
2986 if (bs->stop == 0 || bs->print == 0)
2987 bs->print_it = print_it_noop;
2990 bs->next = NULL; /* Terminate the chain */
2991 bs = root_bs->next; /* Re-grab the head of the chain */
2993 /* The value of a hardware watchpoint hasn't changed, but the
2994 intermediate memory locations we are watching may have. */
2995 if (bs && !bs->stop &&
2996 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2997 bs->breakpoint_at->type == bp_read_watchpoint ||
2998 bs->breakpoint_at->type == bp_access_watchpoint))
3000 remove_breakpoints ();
3001 insert_breakpoints ();
3006 /* Tell what to do about this bpstat. */
3008 bpstat_what (bpstat bs)
3010 /* Classify each bpstat as one of the following. */
3013 /* This bpstat element has no effect on the main_action. */
3016 /* There was a watchpoint, stop but don't print. */
3019 /* There was a watchpoint, stop and print. */
3022 /* There was a breakpoint but we're not stopping. */
3025 /* There was a breakpoint, stop but don't print. */
3028 /* There was a breakpoint, stop and print. */
3031 /* We hit the longjmp breakpoint. */
3034 /* We hit the longjmp_resume breakpoint. */
3037 /* We hit the step_resume breakpoint. */
3040 /* We hit the shared library event breakpoint. */
3043 /* We caught a shared library event. */
3046 /* This is just used to count how many enums there are. */
3050 /* Here is the table which drives this routine. So that we can
3051 format it pretty, we define some abbreviations for the
3052 enum bpstat_what codes. */
3053 #define kc BPSTAT_WHAT_KEEP_CHECKING
3054 #define ss BPSTAT_WHAT_STOP_SILENT
3055 #define sn BPSTAT_WHAT_STOP_NOISY
3056 #define sgl BPSTAT_WHAT_SINGLE
3057 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
3058 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
3059 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
3060 #define sr BPSTAT_WHAT_STEP_RESUME
3061 #define shl BPSTAT_WHAT_CHECK_SHLIBS
3062 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
3064 /* "Can't happen." Might want to print an error message.
3065 abort() is not out of the question, but chances are GDB is just
3066 a bit confused, not unusable. */
3067 #define err BPSTAT_WHAT_STOP_NOISY
3069 /* Given an old action and a class, come up with a new action. */
3070 /* One interesting property of this table is that wp_silent is the same
3071 as bp_silent and wp_noisy is the same as bp_noisy. That is because
3072 after stopping, the check for whether to step over a breakpoint
3073 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
3074 reference to how we stopped. We retain separate wp_silent and
3075 bp_silent codes in case we want to change that someday.
3077 Another possibly interesting property of this table is that
3078 there's a partial ordering, priority-like, of the actions. Once
3079 you've decided that some action is appropriate, you'll never go
3080 back and decide something of a lower priority is better. The
3083 kc < clr sgl shl shlr slr sn sr ss
3084 sgl < clrs shl shlr slr sn sr ss
3085 slr < err shl shlr sn sr ss
3086 clr < clrs err shl shlr sn sr ss
3087 clrs < err shl shlr sn sr ss
3094 What I think this means is that we don't need a damned table
3095 here. If you just put the rows and columns in the right order,
3096 it'd look awfully regular. We could simply walk the bpstat list
3097 and choose the highest priority action we find, with a little
3098 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
3099 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
3100 is messy anyway). */
3102 /* step_resume entries: a step resume breakpoint overrides another
3103 breakpoint of signal handling (see comment in wait_for_inferior
3104 at where we set the step_resume breakpoint). */
3106 static const enum bpstat_what_main_action
3107 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
3110 /* kc ss sn sgl slr clr clrs sr shl shlr
3113 {kc, ss, sn, sgl, slr, clr, clrs, sr, shl, shlr},
3115 {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
3117 {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
3119 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, shl, shlr},
3121 {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
3123 {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
3125 {slr, ss, sn, slr, slr, err, err, sr, shl, shlr},
3127 {clr, ss, sn, clrs, err, err, err, sr, shl, shlr},
3129 {sr, sr, sr, sr, sr, sr, sr, sr, sr, sr},
3131 {shl, shl, shl, shl, shl, shl, shl, sr, shl, shlr},
3133 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, sr, shlr, shlr}
3148 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
3149 struct bpstat_what retval;
3151 retval.call_dummy = 0;
3152 for (; bs != NULL; bs = bs->next)
3154 enum class bs_class = no_effect;
3155 if (bs->breakpoint_at == NULL)
3156 /* I suspect this can happen if it was a momentary breakpoint
3157 which has since been deleted. */
3159 switch (bs->breakpoint_at->type)
3165 case bp_hardware_breakpoint:
3171 bs_class = bp_noisy;
3173 bs_class = bp_silent;
3176 bs_class = bp_nostop;
3179 case bp_hardware_watchpoint:
3180 case bp_read_watchpoint:
3181 case bp_access_watchpoint:
3185 bs_class = wp_noisy;
3187 bs_class = wp_silent;
3190 /* There was a watchpoint, but we're not stopping.
3191 This requires no further action. */
3192 bs_class = no_effect;
3195 bs_class = long_jump;
3197 case bp_longjmp_resume:
3198 bs_class = long_resume;
3200 case bp_step_resume:
3203 bs_class = step_resume;
3206 /* It is for the wrong frame. */
3207 bs_class = bp_nostop;
3209 case bp_watchpoint_scope:
3210 bs_class = bp_nostop;
3212 case bp_shlib_event:
3213 bs_class = shlib_event;
3215 case bp_thread_event:
3216 case bp_overlay_event:
3217 bs_class = bp_nostop;
3220 case bp_catch_unload:
3221 /* Only if this catchpoint triggered should we cause the
3222 step-out-of-dld behaviour. Otherwise, we ignore this
3225 bs_class = catch_shlib_event;
3227 bs_class = no_effect;
3230 case bp_catch_vfork:
3235 bs_class = bp_noisy;
3237 bs_class = bp_silent;
3240 /* There was a catchpoint, but we're not stopping.
3241 This requires no further action. */
3242 bs_class = no_effect;
3244 case bp_catch_catch:
3245 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
3246 bs_class = bp_nostop;
3248 bs_class = bs->print ? bp_noisy : bp_silent;
3250 case bp_catch_throw:
3251 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
3252 bs_class = bp_nostop;
3254 bs_class = bs->print ? bp_noisy : bp_silent;
3257 /* Make sure the action is stop (silent or noisy),
3258 so infrun.c pops the dummy frame. */
3259 bs_class = bp_silent;
3260 retval.call_dummy = 1;
3263 current_action = table[(int) bs_class][(int) current_action];
3265 retval.main_action = current_action;
3269 /* Nonzero if we should step constantly (e.g. watchpoints on machines
3270 without hardware support). This isn't related to a specific bpstat,
3271 just to things like whether watchpoints are set. */
3274 bpstat_should_step (void)
3276 struct breakpoint *b;
3278 if (breakpoint_enabled (b) && b->type == bp_watchpoint)
3283 /* Nonzero if there are enabled hardware watchpoints. */
3285 bpstat_have_active_hw_watchpoints (void)
3287 struct bp_location *bpt;
3288 ALL_BP_LOCATIONS (bpt)
3289 if (breakpoint_enabled (bpt->owner)
3291 && bpt->loc_type == bp_loc_hardware_watchpoint)
3297 /* Given a bpstat that records zero or more triggered eventpoints, this
3298 function returns another bpstat which contains only the catchpoints
3299 on that first list, if any. */
3301 bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
3303 struct bpstats root_bs[1];
3304 bpstat bs = root_bs;
3305 struct breakpoint *ep;
3308 bpstat_clear (cp_list);
3309 root_bs->next = NULL;
3311 for (; ep_list != NULL; ep_list = ep_list->next)
3313 /* Is this eventpoint a catchpoint? If not, ignore it. */
3314 ep = ep_list->breakpoint_at;
3317 if ((ep->type != bp_catch_load) &&
3318 (ep->type != bp_catch_unload) &&
3319 (ep->type != bp_catch_catch) &&
3320 (ep->type != bp_catch_throw))
3321 /* pai: (temp) ADD fork/vfork here!! */
3324 /* Yes; add it to the list. */
3325 bs = bpstat_alloc (ep, bs);
3330 #if defined(SOLIB_ADD)
3331 /* Also, for each triggered catchpoint, tag it with the name of
3332 the library that caused this trigger. (We copy the name now,
3333 because it's only guaranteed to be available NOW, when the
3334 catchpoint triggers. Clients who may wish to know the name
3335 later must get it from the catchpoint itself.) */
3336 if (ep->triggered_dll_pathname != NULL)
3337 xfree (ep->triggered_dll_pathname);
3338 if (ep->type == bp_catch_load)
3339 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3340 PIDGET (inferior_ptid));
3342 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3343 PIDGET (inferior_ptid));
3345 dll_pathname = NULL;
3349 ep->triggered_dll_pathname = (char *)
3350 xmalloc (strlen (dll_pathname) + 1);
3351 strcpy (ep->triggered_dll_pathname, dll_pathname);
3354 ep->triggered_dll_pathname = NULL;
3360 /* Print B to gdb_stdout. */
3362 print_one_breakpoint (struct breakpoint *b,
3363 CORE_ADDR *last_addr)
3365 struct command_line *l;
3367 struct ep_type_description
3372 static struct ep_type_description bptypes[] =
3374 {bp_none, "?deleted?"},
3375 {bp_breakpoint, "breakpoint"},
3376 {bp_hardware_breakpoint, "hw breakpoint"},
3377 {bp_until, "until"},
3378 {bp_finish, "finish"},
3379 {bp_watchpoint, "watchpoint"},
3380 {bp_hardware_watchpoint, "hw watchpoint"},
3381 {bp_read_watchpoint, "read watchpoint"},
3382 {bp_access_watchpoint, "acc watchpoint"},
3383 {bp_longjmp, "longjmp"},
3384 {bp_longjmp_resume, "longjmp resume"},
3385 {bp_step_resume, "step resume"},
3386 {bp_watchpoint_scope, "watchpoint scope"},
3387 {bp_call_dummy, "call dummy"},
3388 {bp_shlib_event, "shlib events"},
3389 {bp_thread_event, "thread events"},
3390 {bp_overlay_event, "overlay events"},
3391 {bp_catch_load, "catch load"},
3392 {bp_catch_unload, "catch unload"},
3393 {bp_catch_fork, "catch fork"},
3394 {bp_catch_vfork, "catch vfork"},
3395 {bp_catch_exec, "catch exec"},
3396 {bp_catch_catch, "catch catch"},
3397 {bp_catch_throw, "catch throw"}
3400 static char *bpdisps[] =
3401 {"del", "dstp", "dis", "keep"};
3402 static char bpenables[] = "nynny";
3403 char wrap_indent[80];
3404 struct ui_stream *stb = ui_out_stream_new (uiout);
3405 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3406 struct cleanup *bkpt_chain;
3409 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
3413 ui_out_field_int (uiout, "number", b->number);
3417 if (((int) b->type >= (sizeof (bptypes) / sizeof (bptypes[0])))
3418 || ((int) b->type != bptypes[(int) b->type].type))
3419 internal_error (__FILE__, __LINE__,
3420 _("bptypes table does not describe type #%d."),
3422 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3426 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
3430 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
3431 ui_out_spaces (uiout, 2);
3434 strcpy (wrap_indent, " ");
3437 if (gdbarch_addr_bit (current_gdbarch) <= 32)
3438 strcat (wrap_indent, " ");
3440 strcat (wrap_indent, " ");
3443 if (b->ops != NULL && b->ops->print_one != NULL)
3444 b->ops->print_one (b, last_addr);
3449 internal_error (__FILE__, __LINE__,
3450 _("print_one_breakpoint: bp_none encountered\n"));
3454 case bp_hardware_watchpoint:
3455 case bp_read_watchpoint:
3456 case bp_access_watchpoint:
3457 /* Field 4, the address, is omitted (which makes the columns
3458 not line up too nicely with the headers, but the effect
3459 is relatively readable). */
3461 ui_out_field_skip (uiout, "addr");
3463 print_expression (b->exp, stb->stream);
3464 ui_out_field_stream (uiout, "what", stb);
3468 case bp_catch_unload:
3469 /* Field 4, the address, is omitted (which makes the columns
3470 not line up too nicely with the headers, but the effect
3471 is relatively readable). */
3473 ui_out_field_skip (uiout, "addr");
3475 if (b->dll_pathname == NULL)
3477 ui_out_field_string (uiout, "what", "<any library>");
3478 ui_out_spaces (uiout, 1);
3482 ui_out_text (uiout, "library \"");
3483 ui_out_field_string (uiout, "what", b->dll_pathname);
3484 ui_out_text (uiout, "\" ");
3489 case bp_catch_vfork:
3490 /* Field 4, the address, is omitted (which makes the columns
3491 not line up too nicely with the headers, but the effect
3492 is relatively readable). */
3494 ui_out_field_skip (uiout, "addr");
3496 if (b->forked_inferior_pid != 0)
3498 ui_out_text (uiout, "process ");
3499 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3500 ui_out_spaces (uiout, 1);
3505 /* Field 4, the address, is omitted (which makes the columns
3506 not line up too nicely with the headers, but the effect
3507 is relatively readable). */
3509 ui_out_field_skip (uiout, "addr");
3511 if (b->exec_pathname != NULL)
3513 ui_out_text (uiout, "program \"");
3514 ui_out_field_string (uiout, "what", b->exec_pathname);
3515 ui_out_text (uiout, "\" ");
3519 case bp_catch_catch:
3520 /* Field 4, the address, is omitted (which makes the columns
3521 not line up too nicely with the headers, but the effect
3522 is relatively readable). */
3524 ui_out_field_skip (uiout, "addr");
3526 ui_out_field_string (uiout, "what", "exception catch");
3527 ui_out_spaces (uiout, 1);
3530 case bp_catch_throw:
3531 /* Field 4, the address, is omitted (which makes the columns
3532 not line up too nicely with the headers, but the effect
3533 is relatively readable). */
3535 ui_out_field_skip (uiout, "addr");
3537 ui_out_field_string (uiout, "what", "exception throw");
3538 ui_out_spaces (uiout, 1);
3542 case bp_hardware_breakpoint:
3546 case bp_longjmp_resume:
3547 case bp_step_resume:
3548 case bp_watchpoint_scope:
3550 case bp_shlib_event:
3551 case bp_thread_event:
3552 case bp_overlay_event:
3557 ui_out_field_string (uiout, "addr", "<PENDING>");
3559 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3562 *last_addr = b->loc->address;
3565 sym = find_pc_sect_function (b->loc->address, b->loc->section);
3568 ui_out_text (uiout, "in ");
3569 ui_out_field_string (uiout, "func",
3570 SYMBOL_PRINT_NAME (sym));
3571 ui_out_wrap_hint (uiout, wrap_indent);
3572 ui_out_text (uiout, " at ");
3574 ui_out_field_string (uiout, "file", b->source_file);
3575 ui_out_text (uiout, ":");
3577 if (ui_out_is_mi_like_p (uiout))
3579 struct symtab_and_line sal = find_pc_line (b->loc->address, 0);
3580 char *fullname = symtab_to_fullname (sal.symtab);
3583 ui_out_field_string (uiout, "fullname", fullname);
3586 ui_out_field_int (uiout, "line", b->line_number);
3588 else if (b->pending)
3590 ui_out_field_string (uiout, "pending", b->addr_string);
3594 print_address_symbolic (b->loc->address, stb->stream, demangle, "");
3595 ui_out_field_stream (uiout, "at", stb);
3600 if (b->thread != -1)
3602 /* FIXME: This seems to be redundant and lost here; see the
3603 "stop only in" line a little further down. */
3604 ui_out_text (uiout, " thread ");
3605 ui_out_field_int (uiout, "thread", b->thread);
3608 ui_out_text (uiout, "\n");
3610 if (frame_id_p (b->frame_id))
3613 ui_out_text (uiout, "\tstop only in stack frame at ");
3614 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
3616 ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
3617 ui_out_text (uiout, "\n");
3620 if (b->cond && !ada_exception_catchpoint_p (b))
3622 /* We do not print the condition for Ada exception catchpoints
3623 because the condition is an internal implementation detail
3624 that we do not want to expose to the user. */
3626 ui_out_text (uiout, "\tstop only if ");
3627 print_expression (b->cond, stb->stream);
3628 ui_out_field_stream (uiout, "cond", stb);
3629 ui_out_text (uiout, "\n");
3632 if (b->pending && b->cond_string)
3635 ui_out_text (uiout, "\tstop only if ");
3636 ui_out_field_string (uiout, "cond", b->cond_string);
3637 ui_out_text (uiout, "\n");
3640 if (b->thread != -1)
3642 /* FIXME should make an annotation for this */
3643 ui_out_text (uiout, "\tstop only in thread ");
3644 ui_out_field_int (uiout, "thread", b->thread);
3645 ui_out_text (uiout, "\n");
3648 if (show_breakpoint_hit_counts && b->hit_count)
3650 /* FIXME should make an annotation for this */
3651 if (ep_is_catchpoint (b))
3652 ui_out_text (uiout, "\tcatchpoint");
3654 ui_out_text (uiout, "\tbreakpoint");
3655 ui_out_text (uiout, " already hit ");
3656 ui_out_field_int (uiout, "times", b->hit_count);
3657 if (b->hit_count == 1)
3658 ui_out_text (uiout, " time\n");
3660 ui_out_text (uiout, " times\n");
3663 /* Output the count also if it is zero, but only if this is
3664 mi. FIXME: Should have a better test for this. */
3665 if (ui_out_is_mi_like_p (uiout))
3666 if (show_breakpoint_hit_counts && b->hit_count == 0)
3667 ui_out_field_int (uiout, "times", b->hit_count);
3669 if (b->ignore_count)
3672 ui_out_text (uiout, "\tignore next ");
3673 ui_out_field_int (uiout, "ignore", b->ignore_count);
3674 ui_out_text (uiout, " hits\n");
3677 if ((l = b->commands))
3679 struct cleanup *script_chain;
3682 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
3683 print_command_lines (uiout, l, 4);
3684 do_cleanups (script_chain);
3686 do_cleanups (bkpt_chain);
3687 do_cleanups (old_chain);
3690 struct captured_breakpoint_query_args
3696 do_captured_breakpoint_query (struct ui_out *uiout, void *data)
3698 struct captured_breakpoint_query_args *args = data;
3699 struct breakpoint *b;
3700 CORE_ADDR dummy_addr = 0;
3703 if (args->bnum == b->number)
3705 print_one_breakpoint (b, &dummy_addr);
3713 gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
3715 struct captured_breakpoint_query_args args;
3717 /* For the moment we don't trust print_one_breakpoint() to not throw
3719 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
3720 error_message, RETURN_MASK_ALL) < 0)
3726 /* Return non-zero if B is user settable (breakpoints, watchpoints,
3727 catchpoints, et.al.). */
3730 user_settable_breakpoint (const struct breakpoint *b)
3732 return (b->type == bp_breakpoint
3733 || b->type == bp_catch_load
3734 || b->type == bp_catch_unload
3735 || b->type == bp_catch_fork
3736 || b->type == bp_catch_vfork
3737 || b->type == bp_catch_exec
3738 || b->type == bp_catch_catch
3739 || b->type == bp_catch_throw
3740 || b->type == bp_hardware_breakpoint
3741 || b->type == bp_watchpoint
3742 || b->type == bp_read_watchpoint
3743 || b->type == bp_access_watchpoint
3744 || b->type == bp_hardware_watchpoint);
3747 /* Print information on user settable breakpoint (watchpoint, etc)
3748 number BNUM. If BNUM is -1 print all user settable breakpoints.
3749 If ALLFLAG is non-zero, include non- user settable breakpoints. */
3752 breakpoint_1 (int bnum, int allflag)
3754 struct breakpoint *b;
3755 CORE_ADDR last_addr = (CORE_ADDR) -1;
3756 int nr_printable_breakpoints;
3757 struct cleanup *bkpttbl_chain;
3759 /* Compute the number of rows in the table. */
3760 nr_printable_breakpoints = 0;
3763 || bnum == b->number)
3765 if (allflag || user_settable_breakpoint (b))
3766 nr_printable_breakpoints++;
3771 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
3775 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
3778 if (nr_printable_breakpoints > 0)
3779 annotate_breakpoints_headers ();
3780 if (nr_printable_breakpoints > 0)
3782 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3783 if (nr_printable_breakpoints > 0)
3785 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3786 if (nr_printable_breakpoints > 0)
3788 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3789 if (nr_printable_breakpoints > 0)
3791 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3794 if (nr_printable_breakpoints > 0)
3796 if (gdbarch_addr_bit (current_gdbarch) <= 32)
3797 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
3799 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
3801 if (nr_printable_breakpoints > 0)
3803 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3804 ui_out_table_body (uiout);
3805 if (nr_printable_breakpoints > 0)
3806 annotate_breakpoints_table ();
3810 || bnum == b->number)
3812 /* We only print out user settable breakpoints unless the
3814 if (allflag || user_settable_breakpoint (b))
3815 print_one_breakpoint (b, &last_addr);
3818 do_cleanups (bkpttbl_chain);
3820 if (nr_printable_breakpoints == 0)
3823 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3825 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3830 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3831 that a comparison of an unsigned with -1 is always false. */
3832 if (last_addr != (CORE_ADDR) -1 && !server_command)
3833 set_next_address (last_addr);
3836 /* FIXME? Should this be moved up so that it is only called when
3837 there have been breakpoints? */
3838 annotate_breakpoints_table_end ();
3842 breakpoints_info (char *bnum_exp, int from_tty)
3847 bnum = parse_and_eval_long (bnum_exp);
3849 breakpoint_1 (bnum, 0);
3853 maintenance_info_breakpoints (char *bnum_exp, int from_tty)
3858 bnum = parse_and_eval_long (bnum_exp);
3860 breakpoint_1 (bnum, 1);
3863 /* Print a message describing any breakpoints set at PC. */
3866 describe_other_breakpoints (CORE_ADDR pc, asection *section, int thread)
3869 struct breakpoint *b;
3872 if (b->loc->address == pc) /* address match / overlay match */
3873 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3878 printf_filtered (_("Note: breakpoint "));
3879 else /* if (others == ???) */
3880 printf_filtered (_("Note: breakpoints "));
3882 if (b->loc->address == pc) /* address match / overlay match */
3883 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3886 printf_filtered ("%d", b->number);
3887 if (b->thread == -1 && thread != -1)
3888 printf_filtered (" (all threads)");
3889 else if (b->thread != -1)
3890 printf_filtered (" (thread %d)", b->thread);
3891 printf_filtered ("%s%s ",
3892 ((b->enable_state == bp_disabled ||
3893 b->enable_state == bp_shlib_disabled ||
3894 b->enable_state == bp_call_disabled)
3896 : b->enable_state == bp_permanent
3900 : ((others == 1) ? " and" : ""));
3902 printf_filtered (_("also set at pc "));
3903 deprecated_print_address_numeric (pc, 1, gdb_stdout);
3904 printf_filtered (".\n");
3908 /* Set the default place to put a breakpoint
3909 for the `break' command with no arguments. */
3912 set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3915 default_breakpoint_valid = valid;
3916 default_breakpoint_address = addr;
3917 default_breakpoint_symtab = symtab;
3918 default_breakpoint_line = line;
3921 /* Return true iff it is meaningful to use the address member of
3922 BPT. For some breakpoint types, the address member is irrelevant
3923 and it makes no sense to attempt to compare it to other addresses
3924 (or use it for any other purpose either).
3926 More specifically, each of the following breakpoint types will always
3927 have a zero valued address and we don't want check_duplicates() to mark
3928 breakpoints of any of these types to be a duplicate of an actual
3929 breakpoint at address zero:
3932 bp_hardware_watchpoint
3934 bp_access_watchpoint
3941 breakpoint_address_is_meaningful (struct breakpoint *bpt)
3943 enum bptype type = bpt->type;
3945 return (type != bp_watchpoint
3946 && type != bp_hardware_watchpoint
3947 && type != bp_read_watchpoint
3948 && type != bp_access_watchpoint
3949 && type != bp_catch_exec
3950 && type != bp_longjmp_resume
3951 && type != bp_catch_fork
3952 && type != bp_catch_vfork);
3955 /* Rescan breakpoints at the same address and section as BPT,
3956 marking the first one as "first" and any others as "duplicates".
3957 This is so that the bpt instruction is only inserted once.
3958 If we have a permanent breakpoint at the same place as BPT, make
3959 that one the official one, and the rest as duplicates. */
3962 check_duplicates (struct breakpoint *bpt)
3964 struct bp_location *b;
3966 struct bp_location *perm_bp = 0;
3967 CORE_ADDR address = bpt->loc->address;
3968 asection *section = bpt->loc->section;
3970 if (! breakpoint_address_is_meaningful (bpt))
3973 ALL_BP_LOCATIONS (b)
3974 if (b->owner->enable_state != bp_disabled
3975 && b->owner->enable_state != bp_shlib_disabled
3976 && !b->owner->pending
3977 && b->owner->enable_state != bp_call_disabled
3978 && b->address == address /* address / overlay match */
3979 && (!overlay_debugging || b->section == section)
3980 && breakpoint_address_is_meaningful (b->owner))
3982 /* Have we found a permanent breakpoint? */
3983 if (b->owner->enable_state == bp_permanent)
3990 b->duplicate = count > 1;
3993 /* If we found a permanent breakpoint at this address, go over the
3994 list again and declare all the other breakpoints there to be the
3998 perm_bp->duplicate = 0;
4000 /* Permanent breakpoint should always be inserted. */
4001 if (! perm_bp->inserted)
4002 internal_error (__FILE__, __LINE__,
4003 _("allegedly permanent breakpoint is not "
4004 "actually inserted"));
4006 ALL_BP_LOCATIONS (b)
4009 if (b->owner->enable_state != bp_disabled
4010 && b->owner->enable_state != bp_shlib_disabled
4011 && !b->owner->pending
4012 && b->owner->enable_state != bp_call_disabled
4013 && b->address == address /* address / overlay match */
4014 && (!overlay_debugging || b->section == section)
4015 && breakpoint_address_is_meaningful (b->owner))
4018 internal_error (__FILE__, __LINE__,
4019 _("another breakpoint was inserted on top of "
4020 "a permanent breakpoint"));
4029 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
4030 int bnum, int have_bnum)
4035 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
4036 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
4038 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
4039 bnum, astr1, astr2);
4041 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
4044 /* Adjust a breakpoint's address to account for architectural constraints
4045 on breakpoint placement. Return the adjusted address. Note: Very
4046 few targets require this kind of adjustment. For most targets,
4047 this function is simply the identity function. */
4050 adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
4052 if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
4054 /* Very few targets need any kind of breakpoint adjustment. */
4057 else if (bptype == bp_watchpoint
4058 || bptype == bp_hardware_watchpoint
4059 || bptype == bp_read_watchpoint
4060 || bptype == bp_access_watchpoint
4061 || bptype == bp_catch_fork
4062 || bptype == bp_catch_vfork
4063 || bptype == bp_catch_exec)
4065 /* Watchpoints and the various bp_catch_* eventpoints should not
4066 have their addresses modified. */
4071 CORE_ADDR adjusted_bpaddr;
4073 /* Some targets have architectural constraints on the placement
4074 of breakpoint instructions. Obtain the adjusted address. */
4075 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
4078 /* An adjusted breakpoint address can significantly alter
4079 a user's expectations. Print a warning if an adjustment
4081 if (adjusted_bpaddr != bpaddr)
4082 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
4084 return adjusted_bpaddr;
4088 /* Allocate a struct bp_location. */
4090 static struct bp_location *
4091 allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
4093 struct bp_location *loc, *loc_p;
4095 loc = xmalloc (sizeof (struct bp_location));
4096 memset (loc, 0, sizeof (*loc));
4106 case bp_longjmp_resume:
4107 case bp_step_resume:
4108 case bp_watchpoint_scope:
4110 case bp_shlib_event:
4111 case bp_thread_event:
4112 case bp_overlay_event:
4114 case bp_catch_unload:
4115 loc->loc_type = bp_loc_software_breakpoint;
4117 case bp_hardware_breakpoint:
4118 loc->loc_type = bp_loc_hardware_breakpoint;
4120 case bp_hardware_watchpoint:
4121 case bp_read_watchpoint:
4122 case bp_access_watchpoint:
4123 loc->loc_type = bp_loc_hardware_watchpoint;
4127 case bp_catch_vfork:
4129 case bp_catch_catch:
4130 case bp_catch_throw:
4131 loc->loc_type = bp_loc_other;
4134 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
4137 /* Add this breakpoint to the end of the chain. */
4139 loc_p = bp_location_chain;
4141 bp_location_chain = loc;
4145 loc_p = loc_p->next;
4152 /* set_raw_breakpoint() is a low level routine for allocating and
4153 partially initializing a breakpoint of type BPTYPE. The newly
4154 created breakpoint's address, section, source file name, and line
4155 number are provided by SAL. The newly created and partially
4156 initialized breakpoint is added to the breakpoint chain and
4157 is also returned as the value of this function.
4159 It is expected that the caller will complete the initialization of
4160 the newly created breakpoint struct as well as output any status
4161 information regarding the creation of a new breakpoint. In
4162 particular, set_raw_breakpoint() does NOT set the breakpoint
4163 number! Care should be taken to not allow an error() to occur
4164 prior to completing the initialization of the breakpoint. If this
4165 should happen, a bogus breakpoint will be left on the chain. */
4168 set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
4170 struct breakpoint *b, *b1;
4171 CORE_ADDR adjusted_address;
4173 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
4174 memset (b, 0, sizeof (*b));
4176 /* Adjust the breakpoint's address prior to allocating a location.
4177 Once we call allocate_bp_location(), that mostly uninitialized
4178 location will be placed on the location chain. Adjustment of the
4179 breakpoint may cause read_memory_nobpt() to be called and we do
4180 not want its scan of the location chain to find a breakpoint and
4181 location that's only been partially initialized. */
4182 adjusted_address = adjust_breakpoint_address (sal.pc, bptype);
4184 b->loc = allocate_bp_location (b, bptype);
4185 b->loc->requested_address = sal.pc;
4186 b->loc->address = adjusted_address;
4188 if (sal.symtab == NULL)
4189 b->source_file = NULL;
4191 b->source_file = savestring (sal.symtab->filename,
4192 strlen (sal.symtab->filename));
4193 b->loc->section = sal.section;
4195 b->language = current_language->la_language;
4196 b->input_radix = input_radix;
4198 b->line_number = sal.line;
4199 b->enable_state = bp_enabled;
4202 b->ignore_count = 0;
4204 b->frame_id = null_frame_id;
4205 b->dll_pathname = NULL;
4206 b->triggered_dll_pathname = NULL;
4207 b->forked_inferior_pid = 0;
4208 b->exec_pathname = NULL;
4212 /* Add this breakpoint to the end of the chain
4213 so that a list of breakpoints will come out in order
4214 of increasing numbers. */
4216 b1 = breakpoint_chain;
4218 breakpoint_chain = b;
4226 check_duplicates (b);
4227 breakpoints_changed ();
4233 /* Note that the breakpoint object B describes a permanent breakpoint
4234 instruction, hard-wired into the inferior's code. */
4236 make_breakpoint_permanent (struct breakpoint *b)
4238 b->enable_state = bp_permanent;
4240 /* By definition, permanent breakpoints are already present in the code. */
4241 b->loc->inserted = 1;
4244 static struct breakpoint *
4245 create_internal_breakpoint (CORE_ADDR address, enum bptype type)
4247 static int internal_breakpoint_number = -1;
4248 struct symtab_and_line sal;
4249 struct breakpoint *b;
4251 init_sal (&sal); /* initialize to zeroes */
4254 sal.section = find_pc_overlay (sal.pc);
4256 b = set_raw_breakpoint (sal, type);
4257 b->number = internal_breakpoint_number--;
4258 b->disposition = disp_donttouch;
4265 create_longjmp_breakpoint (char *func_name)
4267 struct breakpoint *b;
4268 struct minimal_symbol *m;
4270 if (func_name == NULL)
4271 b = create_internal_breakpoint (0, bp_longjmp_resume);
4274 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4277 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
4280 b->enable_state = bp_disabled;
4283 b->addr_string = xstrdup (func_name);
4286 /* Call this routine when stepping and nexting to enable a breakpoint
4287 if we do a longjmp(). When we hit that breakpoint, call
4288 set_longjmp_resume_breakpoint() to figure out where we are going. */
4291 enable_longjmp_breakpoint (void)
4293 struct breakpoint *b;
4296 if (b->type == bp_longjmp)
4298 b->enable_state = bp_enabled;
4299 check_duplicates (b);
4304 disable_longjmp_breakpoint (void)
4306 struct breakpoint *b;
4309 if (b->type == bp_longjmp
4310 || b->type == bp_longjmp_resume)
4312 b->enable_state = bp_disabled;
4313 check_duplicates (b);
4318 create_overlay_event_breakpoint (char *func_name)
4320 struct breakpoint *b;
4321 struct minimal_symbol *m;
4323 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4326 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
4328 b->addr_string = xstrdup (func_name);
4330 if (overlay_debugging == ovly_auto)
4332 b->enable_state = bp_enabled;
4333 overlay_events_enabled = 1;
4337 b->enable_state = bp_disabled;
4338 overlay_events_enabled = 0;
4343 enable_overlay_breakpoints (void)
4345 struct breakpoint *b;
4348 if (b->type == bp_overlay_event)
4350 b->enable_state = bp_enabled;
4351 check_duplicates (b);
4352 overlay_events_enabled = 1;
4357 disable_overlay_breakpoints (void)
4359 struct breakpoint *b;
4362 if (b->type == bp_overlay_event)
4364 b->enable_state = bp_disabled;
4365 check_duplicates (b);
4366 overlay_events_enabled = 0;
4371 create_thread_event_breakpoint (CORE_ADDR address)
4373 struct breakpoint *b;
4375 b = create_internal_breakpoint (address, bp_thread_event);
4377 b->enable_state = bp_enabled;
4378 /* addr_string has to be used or breakpoint_re_set will delete me. */
4379 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
4385 remove_thread_event_breakpoints (void)
4387 struct breakpoint *b, *temp;
4389 ALL_BREAKPOINTS_SAFE (b, temp)
4390 if (b->type == bp_thread_event)
4391 delete_breakpoint (b);
4394 struct captured_parse_breakpoint_args
4397 struct symtabs_and_lines *sals_p;
4398 char ***addr_string_p;
4402 struct lang_and_radix
4408 /* Cleanup helper routine to restore the current language and
4411 do_restore_lang_radix_cleanup (void *old)
4413 struct lang_and_radix *p = old;
4414 set_language (p->lang);
4415 input_radix = p->radix;
4418 /* Try and resolve a pending breakpoint. */
4420 resolve_pending_breakpoint (struct breakpoint *b)
4422 /* Try and reparse the breakpoint in case the shared library
4424 struct symtabs_and_lines sals;
4425 struct symtab_and_line pending_sal;
4426 char **cond_string = (char **) NULL;
4427 char *copy_arg = b->addr_string;
4432 struct ui_file *old_gdb_stderr;
4433 struct lang_and_radix old_lr;
4434 struct cleanup *old_chain;
4436 /* Set language, input-radix, then reissue breakpoint command.
4437 Ensure the language and input-radix are restored afterwards. */
4438 old_lr.lang = current_language->la_language;
4439 old_lr.radix = input_radix;
4440 old_chain = make_cleanup (do_restore_lang_radix_cleanup, &old_lr);
4442 set_language (b->language);
4443 input_radix = b->input_radix;
4444 rc = break_command_1 (b->addr_string, b->flag, b->from_tty, b);
4446 if (rc == GDB_RC_OK)
4447 /* Pending breakpoint has been resolved. */
4448 printf_filtered (_("Pending breakpoint \"%s\" resolved\n"), b->addr_string);
4450 do_cleanups (old_chain);
4455 remove_solib_event_breakpoints (void)
4457 struct breakpoint *b, *temp;
4459 ALL_BREAKPOINTS_SAFE (b, temp)
4460 if (b->type == bp_shlib_event)
4461 delete_breakpoint (b);
4465 create_solib_event_breakpoint (CORE_ADDR address)
4467 struct breakpoint *b;
4469 b = create_internal_breakpoint (address, bp_shlib_event);
4473 /* Disable any breakpoints that are on code in shared libraries. Only
4474 apply to enabled breakpoints, disabled ones can just stay disabled. */
4477 disable_breakpoints_in_shlibs (int silent)
4479 struct breakpoint *b;
4480 int disabled_shlib_breaks = 0;
4484 if (((b->type == bp_breakpoint) || (b->type == bp_hardware_breakpoint))
4485 && breakpoint_enabled (b) && !b->loc->duplicate
4487 && PC_SOLIB (b->loc->address)
4489 && solib_address (b->loc->address)
4493 b->enable_state = bp_shlib_disabled;
4496 if (!disabled_shlib_breaks)
4498 target_terminal_ours_for_output ();
4499 warning (_("Temporarily disabling shared library breakpoints:"));
4501 disabled_shlib_breaks = 1;
4502 warning (_("breakpoint #%d "), b->number);
4508 /* Disable any breakpoints that are in in an unloaded shared library. Only
4509 apply to enabled breakpoints, disabled ones can just stay disabled. */
4512 disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
4514 struct breakpoint *b;
4515 int disabled_shlib_breaks = 0;
4519 if ((b->loc->loc_type == bp_loc_hardware_breakpoint
4520 || b->loc->loc_type == bp_loc_software_breakpoint)
4521 && breakpoint_enabled (b) && !b->loc->duplicate)
4524 char *so_name = PC_SOLIB (b->loc->address);
4526 char *so_name = solib_address (b->loc->address);
4528 if (so_name && !strcmp (so_name, solib->so_name))
4530 b->enable_state = bp_shlib_disabled;
4531 /* At this point, we cannot rely on remove_breakpoint
4532 succeeding so we must mark the breakpoint as not inserted
4533 to prevent future errors occurring in remove_breakpoints. */
4534 b->loc->inserted = 0;
4535 if (!disabled_shlib_breaks)
4537 target_terminal_ours_for_output ();
4538 warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
4541 disabled_shlib_breaks = 1;
4547 /* Try to reenable any breakpoints in shared libraries. */
4549 re_enable_breakpoints_in_shlibs (void)
4551 struct breakpoint *b, *tmp;
4553 ALL_BREAKPOINTS_SAFE (b, tmp)
4555 if (b->enable_state == bp_shlib_disabled)
4560 /* Do not reenable the breakpoint if the shared library is
4561 still not mapped in. */
4563 lib = PC_SOLIB (b->loc->address);
4565 lib = solib_address (b->loc->address);
4567 if (lib != NULL && target_read_memory (b->loc->address, buf, 1) == 0)
4568 b->enable_state = bp_enabled;
4570 else if (b->pending && (b->enable_state == bp_enabled))
4572 if (resolve_pending_breakpoint (b) == GDB_RC_OK)
4573 delete_breakpoint (b);
4579 solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4580 char *cond_string, enum bptype bp_kind)
4582 struct breakpoint *b;
4583 struct symtabs_and_lines sals;
4584 struct cleanup *old_chain;
4585 struct cleanup *canonical_strings_chain = NULL;
4586 char *addr_start = hookname;
4587 char *addr_end = NULL;
4588 char **canonical = (char **) NULL;
4589 int thread = -1; /* All threads. */
4591 /* Set a breakpoint on the specified hook. */
4592 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL,
4593 0, &canonical, NULL);
4594 addr_end = hookname;
4596 if (sals.nelts == 0)
4598 warning (_("Unable to set a breakpoint on dynamic linker callback.\n"
4599 "Suggest linking with /opt/langtools/lib/end.o.\n"
4600 "GDB will be unable to track shl_load/shl_unload calls."));
4603 if (sals.nelts != 1)
4605 warning (_("Unable to set unique breakpoint on dynamic linker callback.\n"
4606 "GDB will be unable to track shl_load/shl_unload calls."));
4610 /* Make sure that all storage allocated in decode_line_1 gets freed
4611 in case the following errors out. */
4612 old_chain = make_cleanup (xfree, sals.sals);
4613 if (canonical != (char **) NULL)
4615 make_cleanup (xfree, canonical);
4616 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4617 if (canonical[0] != NULL)
4618 make_cleanup (xfree, canonical[0]);
4621 resolve_sal_pc (&sals.sals[0]);
4623 /* Remove the canonical strings from the cleanup, they are needed below. */
4624 if (canonical != (char **) NULL)
4625 discard_cleanups (canonical_strings_chain);
4627 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4628 set_breakpoint_count (breakpoint_count + 1);
4629 b->number = breakpoint_count;
4631 b->cond_string = (cond_string == NULL) ?
4632 NULL : savestring (cond_string, strlen (cond_string));
4635 if (canonical != (char **) NULL && canonical[0] != NULL)
4636 b->addr_string = canonical[0];
4637 else if (addr_start)
4638 b->addr_string = savestring (addr_start, addr_end - addr_start);
4640 b->enable_state = bp_enabled;
4641 b->disposition = tempflag ? disp_del : disp_donttouch;
4643 if (dll_pathname == NULL)
4644 b->dll_pathname = NULL;
4647 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4648 strcpy (b->dll_pathname, dll_pathname);
4652 do_cleanups (old_chain);
4656 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4657 char *dll_pathname, char *cond_string)
4659 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4660 cond_string, bp_catch_load);
4664 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4665 char *dll_pathname, char *cond_string)
4667 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4668 cond_string, bp_catch_unload);
4672 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4673 enum bptype bp_kind)
4675 struct symtab_and_line sal;
4676 struct breakpoint *b;
4677 int thread = -1; /* All threads. */
4684 b = set_raw_breakpoint (sal, bp_kind);
4685 set_breakpoint_count (breakpoint_count + 1);
4686 b->number = breakpoint_count;
4688 b->cond_string = (cond_string == NULL) ?
4689 NULL : savestring (cond_string, strlen (cond_string));
4691 b->addr_string = NULL;
4692 b->enable_state = bp_enabled;
4693 b->disposition = tempflag ? disp_del : disp_donttouch;
4694 b->forked_inferior_pid = 0;
4700 create_fork_event_catchpoint (int tempflag, char *cond_string)
4702 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4706 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4708 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4712 create_exec_event_catchpoint (int tempflag, char *cond_string)
4714 struct symtab_and_line sal;
4715 struct breakpoint *b;
4716 int thread = -1; /* All threads. */
4723 b = set_raw_breakpoint (sal, bp_catch_exec);
4724 set_breakpoint_count (breakpoint_count + 1);
4725 b->number = breakpoint_count;
4727 b->cond_string = (cond_string == NULL) ?
4728 NULL : savestring (cond_string, strlen (cond_string));
4730 b->addr_string = NULL;
4731 b->enable_state = bp_enabled;
4732 b->disposition = tempflag ? disp_del : disp_donttouch;
4738 hw_breakpoint_used_count (void)
4740 struct breakpoint *b;
4745 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4753 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4755 struct breakpoint *b;
4758 *other_type_used = 0;
4761 if (breakpoint_enabled (b))
4763 if (b->type == type)
4765 else if ((b->type == bp_hardware_watchpoint ||
4766 b->type == bp_read_watchpoint ||
4767 b->type == bp_access_watchpoint))
4768 *other_type_used = 1;
4774 /* Call this after hitting the longjmp() breakpoint. Use this to set
4775 a new breakpoint at the target of the jmp_buf.
4777 FIXME - This ought to be done by setting a temporary breakpoint
4778 that gets deleted automatically... */
4781 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
4783 struct breakpoint *b;
4786 if (b->type == bp_longjmp_resume)
4788 b->loc->requested_address = pc;
4789 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4791 b->enable_state = bp_enabled;
4792 b->frame_id = frame_id;
4793 check_duplicates (b);
4799 disable_watchpoints_before_interactive_call_start (void)
4801 struct breakpoint *b;
4805 if (((b->type == bp_watchpoint)
4806 || (b->type == bp_hardware_watchpoint)
4807 || (b->type == bp_read_watchpoint)
4808 || (b->type == bp_access_watchpoint)
4809 || ep_is_exception_catchpoint (b))
4810 && breakpoint_enabled (b))
4812 b->enable_state = bp_call_disabled;
4813 check_duplicates (b);
4819 enable_watchpoints_after_interactive_call_stop (void)
4821 struct breakpoint *b;
4825 if (((b->type == bp_watchpoint)
4826 || (b->type == bp_hardware_watchpoint)
4827 || (b->type == bp_read_watchpoint)
4828 || (b->type == bp_access_watchpoint)
4829 || ep_is_exception_catchpoint (b))
4830 && (b->enable_state == bp_call_disabled))
4832 b->enable_state = bp_enabled;
4833 check_duplicates (b);
4839 /* Set a breakpoint that will evaporate an end of command
4840 at address specified by SAL.
4841 Restrict it to frame FRAME if FRAME is nonzero. */
4844 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
4847 struct breakpoint *b;
4848 b = set_raw_breakpoint (sal, type);
4849 b->enable_state = bp_enabled;
4850 b->disposition = disp_donttouch;
4851 b->frame_id = frame_id;
4853 /* If we're debugging a multi-threaded program, then we
4854 want momentary breakpoints to be active in only a
4855 single thread of control. */
4856 if (in_thread_list (inferior_ptid))
4857 b->thread = pid_to_thread_id (inferior_ptid);
4863 /* Tell the user we have just set a breakpoint B. */
4866 mention (struct breakpoint *b)
4869 struct cleanup *old_chain, *ui_out_chain;
4870 struct ui_stream *stb;
4872 stb = ui_out_stream_new (uiout);
4873 old_chain = make_cleanup_ui_out_stream_delete (stb);
4875 /* FIXME: This is misplaced; mention() is called by things (like
4876 hitting a watchpoint) other than breakpoint creation. It should
4877 be possible to clean this up and at the same time replace the
4878 random calls to breakpoint_changed with this hook, as has already
4879 been done for deprecated_delete_breakpoint_hook and so on. */
4880 if (deprecated_create_breakpoint_hook)
4881 deprecated_create_breakpoint_hook (b);
4882 breakpoint_create_event (b->number);
4884 if (b->ops != NULL && b->ops->print_mention != NULL)
4885 b->ops->print_mention (b);
4890 printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
4893 ui_out_text (uiout, "Watchpoint ");
4894 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4895 ui_out_field_int (uiout, "number", b->number);
4896 ui_out_text (uiout, ": ");
4897 print_expression (b->exp, stb->stream);
4898 ui_out_field_stream (uiout, "exp", stb);
4899 do_cleanups (ui_out_chain);
4901 case bp_hardware_watchpoint:
4902 ui_out_text (uiout, "Hardware watchpoint ");
4903 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4904 ui_out_field_int (uiout, "number", b->number);
4905 ui_out_text (uiout, ": ");
4906 print_expression (b->exp, stb->stream);
4907 ui_out_field_stream (uiout, "exp", stb);
4908 do_cleanups (ui_out_chain);
4910 case bp_read_watchpoint:
4911 ui_out_text (uiout, "Hardware read watchpoint ");
4912 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4913 ui_out_field_int (uiout, "number", b->number);
4914 ui_out_text (uiout, ": ");
4915 print_expression (b->exp, stb->stream);
4916 ui_out_field_stream (uiout, "exp", stb);
4917 do_cleanups (ui_out_chain);
4919 case bp_access_watchpoint:
4920 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4921 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4922 ui_out_field_int (uiout, "number", b->number);
4923 ui_out_text (uiout, ": ");
4924 print_expression (b->exp, stb->stream);
4925 ui_out_field_stream (uiout, "exp", stb);
4926 do_cleanups (ui_out_chain);
4929 if (ui_out_is_mi_like_p (uiout))
4934 printf_filtered (_("Breakpoint %d"), b->number);
4937 case bp_hardware_breakpoint:
4938 if (ui_out_is_mi_like_p (uiout))
4943 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
4947 case bp_catch_unload:
4948 printf_filtered (_("Catchpoint %d (%s %s)"),
4950 (b->type == bp_catch_load) ? "load" : "unload",
4951 (b->dll_pathname != NULL) ?
4952 b->dll_pathname : "<any library>");
4955 case bp_catch_vfork:
4956 printf_filtered (_("Catchpoint %d (%s)"),
4958 (b->type == bp_catch_fork) ? "fork" : "vfork");
4961 printf_filtered (_("Catchpoint %d (exec)"),
4964 case bp_catch_catch:
4965 case bp_catch_throw:
4966 printf_filtered (_("Catchpoint %d (%s)"),
4968 (b->type == bp_catch_catch) ? "catch" : "throw");
4974 case bp_longjmp_resume:
4975 case bp_step_resume:
4977 case bp_watchpoint_scope:
4978 case bp_shlib_event:
4979 case bp_thread_event:
4980 case bp_overlay_event:
4986 /* i18n: cagney/2005-02-11: Below needs to be merged into a
4990 printf_filtered (_(" (%s) pending."), b->addr_string);
4994 if (addressprint || b->source_file == NULL)
4996 printf_filtered (" at ");
4997 deprecated_print_address_numeric (b->loc->address, 1, gdb_stdout);
5000 printf_filtered (": file %s, line %d.",
5001 b->source_file, b->line_number);
5004 do_cleanups (old_chain);
5005 if (ui_out_is_mi_like_p (uiout))
5007 printf_filtered ("\n");
5011 /* Add SALS.nelts breakpoints to the breakpoint table. For each
5012 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
5013 COND[i] and COND_STRING[i] values.
5015 The parameter PENDING_BP points to a pending breakpoint that is
5016 the basis of the breakpoints currently being created. The pending
5017 breakpoint may contain a separate condition string or commands
5018 that were added after the initial pending breakpoint was created.
5020 NOTE: If the function succeeds, the caller is expected to cleanup
5021 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
5022 array contents). If the function fails (error() is called), the
5023 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
5024 COND and SALS arrays and each of those arrays contents. */
5027 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
5028 struct expression **cond, char **cond_string,
5029 enum bptype type, enum bpdisp disposition,
5030 int thread, int ignore_count, int from_tty,
5031 struct breakpoint *pending_bp)
5033 if (type == bp_hardware_breakpoint)
5035 int i = hw_breakpoint_used_count ();
5036 int target_resources_ok =
5037 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
5039 if (target_resources_ok == 0)
5040 error (_("No hardware breakpoint support in the target."));
5041 else if (target_resources_ok < 0)
5042 error (_("Hardware breakpoints used exceeds limit."));
5045 /* Now set all the breakpoints. */
5048 for (i = 0; i < sals.nelts; i++)
5050 struct breakpoint *b;
5051 struct symtab_and_line sal = sals.sals[i];
5054 describe_other_breakpoints (sal.pc, sal.section, thread);
5056 b = set_raw_breakpoint (sal, type);
5057 set_breakpoint_count (breakpoint_count + 1);
5058 b->number = breakpoint_count;
5062 b->addr_string = addr_string[i];
5064 /* addr_string has to be used or breakpoint_re_set will delete
5066 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
5067 b->cond_string = cond_string[i];
5068 b->ignore_count = ignore_count;
5069 b->enable_state = bp_enabled;
5070 b->disposition = disposition;
5071 /* If resolving a pending breakpoint, a check must be made to see if
5072 the user has specified a new condition or commands for the
5073 breakpoint. A new condition will override any condition that was
5074 initially specified with the initial breakpoint command. */
5078 if (pending_bp->cond_string)
5080 arg = pending_bp->cond_string;
5081 b->cond_string = savestring (arg, strlen (arg));
5082 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
5084 error (_("Junk at end of pending breakpoint condition expression"));
5086 /* If there are commands associated with the breakpoint, they should
5088 if (pending_bp->commands)
5089 b->commands = copy_command_lines (pending_bp->commands);
5091 /* We have to copy over the ignore_count and thread as well. */
5092 b->ignore_count = pending_bp->ignore_count;
5093 b->thread = pending_bp->thread;
5100 /* Parse ARG which is assumed to be a SAL specification possibly
5101 followed by conditionals. On return, SALS contains an array of SAL
5102 addresses found. ADDR_STRING contains a vector of (canonical)
5103 address strings. ARG points to the end of the SAL. */
5106 parse_breakpoint_sals (char **address,
5107 struct symtabs_and_lines *sals,
5108 char ***addr_string,
5111 char *addr_start = *address;
5112 *addr_string = NULL;
5113 /* If no arg given, or if first arg is 'if ', use the default
5115 if ((*address) == NULL
5116 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
5118 if (default_breakpoint_valid)
5120 struct symtab_and_line sal;
5121 init_sal (&sal); /* initialize to zeroes */
5122 sals->sals = (struct symtab_and_line *)
5123 xmalloc (sizeof (struct symtab_and_line));
5124 sal.pc = default_breakpoint_address;
5125 sal.line = default_breakpoint_line;
5126 sal.symtab = default_breakpoint_symtab;
5127 sal.section = find_pc_overlay (sal.pc);
5128 sals->sals[0] = sal;
5132 error (_("No default breakpoint address now."));
5136 /* Force almost all breakpoints to be in terms of the
5137 current_source_symtab (which is decode_line_1's default). This
5138 should produce the results we want almost all of the time while
5139 leaving default_breakpoint_* alone.
5140 ObjC: However, don't match an Objective-C method name which
5141 may have a '+' or '-' succeeded by a '[' */
5143 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
5145 if (default_breakpoint_valid
5147 || ((strchr ("+-", (*address)[0]) != NULL)
5148 && ((*address)[1] != '['))))
5149 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
5150 default_breakpoint_line, addr_string,
5153 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
5154 addr_string, not_found_ptr);
5156 /* For any SAL that didn't have a canonical string, fill one in. */
5157 if (sals->nelts > 0 && *addr_string == NULL)
5158 *addr_string = xcalloc (sals->nelts, sizeof (char **));
5159 if (addr_start != (*address))
5162 for (i = 0; i < sals->nelts; i++)
5164 /* Add the string if not present. */
5165 if ((*addr_string)[i] == NULL)
5166 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
5172 /* Convert each SAL into a real PC. Verify that the PC can be
5173 inserted as a breakpoint. If it can't throw an error. */
5176 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
5180 for (i = 0; i < sals->nelts; i++)
5182 resolve_sal_pc (&sals->sals[i]);
5184 /* It's possible for the PC to be nonzero, but still an illegal
5185 value on some targets.
5187 For example, on HP-UX if you start gdb, and before running the
5188 inferior you try to set a breakpoint on a shared library function
5189 "foo" where the inferior doesn't call "foo" directly but does
5190 pass its address to another function call, then we do find a
5191 minimal symbol for the "foo", but it's address is invalid.
5192 (Appears to be an index into a table that the loader sets up
5193 when the inferior is run.)
5195 Give the target a chance to bless sals.sals[i].pc before we
5196 try to make a breakpoint for it. */
5197 #ifdef DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE
5198 if (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
5200 if (address == NULL)
5201 error (_("Cannot break without a running program."));
5203 error (_("Cannot break on %s without a running program."),
5211 do_captured_parse_breakpoint (struct ui_out *ui, void *data)
5213 struct captured_parse_breakpoint_args *args = data;
5215 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
5216 args->not_found_ptr);
5219 /* Set a breakpoint according to ARG (function, linenum or *address)
5220 flag: first bit : 0 non-temporary, 1 temporary.
5221 second bit : 0 normal breakpoint, 1 hardware breakpoint.
5223 PENDING_BP is non-NULL when this function is being called to resolve
5224 a pending breakpoint. */
5227 break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp)
5229 struct gdb_exception e;
5230 int tempflag, hardwareflag;
5231 struct symtabs_and_lines sals;
5232 struct expression **cond = 0;
5233 struct symtab_and_line pending_sal;
5234 char **cond_string = (char **) NULL;
5237 char *addr_start = arg;
5239 struct cleanup *old_chain;
5240 struct cleanup *breakpoint_chain = NULL;
5241 struct captured_parse_breakpoint_args parse_args;
5245 int ignore_count = 0;
5248 hardwareflag = flag & BP_HARDWAREFLAG;
5249 tempflag = flag & BP_TEMPFLAG;
5255 parse_args.arg_p = &arg;
5256 parse_args.sals_p = &sals;
5257 parse_args.addr_string_p = &addr_string;
5258 parse_args.not_found_ptr = ¬_found;
5260 e = catch_exception (uiout, do_captured_parse_breakpoint,
5261 &parse_args, RETURN_MASK_ALL);
5263 /* If caller is interested in rc value from parse, set value. */
5267 exception_print (gdb_stderr, e);
5272 case NOT_FOUND_ERROR:
5273 /* If called to resolve pending breakpoint, just return
5278 exception_print (gdb_stderr, e);
5280 /* If pending breakpoint support is turned off, throw
5283 if (pending_break_support == AUTO_BOOLEAN_FALSE)
5284 deprecated_throw_reason (RETURN_ERROR);
5286 /* If pending breakpoint support is auto query and the user
5287 selects no, then simply return the error code. */
5288 if (pending_break_support == AUTO_BOOLEAN_AUTO &&
5289 !nquery ("Make breakpoint pending on future shared library load? "))
5292 /* At this point, either the user was queried about setting
5293 a pending breakpoint and selected yes, or pending
5294 breakpoint behavior is on and thus a pending breakpoint
5295 is defaulted on behalf of the user. */
5296 copy_arg = xstrdup (addr_start);
5297 addr_string = ©_arg;
5299 sals.sals = &pending_sal;
5304 exception_print (gdb_stderr, e);
5312 /* Create a chain of things that always need to be cleaned up. */
5313 old_chain = make_cleanup (null_cleanup, 0);
5317 /* Make sure that all storage allocated to SALS gets freed. */
5318 make_cleanup (xfree, sals.sals);
5320 /* Cleanup the addr_string array but not its contents. */
5321 make_cleanup (xfree, addr_string);
5324 /* Allocate space for all the cond expressions. */
5325 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5326 make_cleanup (xfree, cond);
5328 /* Allocate space for all the cond strings. */
5329 cond_string = xcalloc (sals.nelts, sizeof (char **));
5330 make_cleanup (xfree, cond_string);
5332 /* ----------------------------- SNIP -----------------------------
5333 Anything added to the cleanup chain beyond this point is assumed
5334 to be part of a breakpoint. If the breakpoint create succeeds
5335 then the memory is not reclaimed. */
5336 breakpoint_chain = make_cleanup (null_cleanup, 0);
5338 /* Mark the contents of the addr_string for cleanup. These go on
5339 the breakpoint_chain and only occure if the breakpoint create
5341 for (i = 0; i < sals.nelts; i++)
5343 if (addr_string[i] != NULL)
5344 make_cleanup (xfree, addr_string[i]);
5347 /* Resolve all line numbers to PC's and verify that the addresses
5348 are ok for the target. */
5350 breakpoint_sals_to_pc (&sals, addr_start);
5352 /* Verify that condition can be parsed, before setting any
5353 breakpoints. Allocate a separate condition expression for each
5355 thread = -1; /* No specific thread yet */
5358 for (i = 0; i < sals.nelts; i++)
5365 char *cond_start = NULL;
5366 char *cond_end = NULL;
5367 while (*tok == ' ' || *tok == '\t')
5372 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5375 toklen = end_tok - tok;
5377 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5379 tok = cond_start = end_tok + 1;
5380 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc),
5382 make_cleanup (xfree, cond[i]);
5384 cond_string[i] = savestring (cond_start,
5385 cond_end - cond_start);
5386 make_cleanup (xfree, cond_string[i]);
5388 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5394 thread = strtol (tok, &tok, 0);
5396 error (_("Junk after thread keyword."));
5397 if (!valid_thread_id (thread))
5398 error (_("Unknown thread %d."), thread);
5401 error (_("Junk at end of arguments."));
5404 create_breakpoints (sals, addr_string, cond, cond_string,
5405 hardwareflag ? bp_hardware_breakpoint
5407 tempflag ? disp_del : disp_donttouch,
5408 thread, ignore_count, from_tty,
5413 struct symtab_and_line sal;
5414 struct breakpoint *b;
5419 make_cleanup (xfree, copy_arg);
5421 b = set_raw_breakpoint (sal, hardwareflag ? bp_hardware_breakpoint
5423 set_breakpoint_count (breakpoint_count + 1);
5424 b->number = breakpoint_count;
5427 b->addr_string = *addr_string;
5428 b->cond_string = *cond_string;
5429 b->ignore_count = ignore_count;
5431 b->disposition = tempflag ? disp_del : disp_donttouch;
5432 b->from_tty = from_tty;
5438 warning (_("Multiple breakpoints were set.\n"
5439 "Use the \"delete\" command to delete unwanted breakpoints."));
5440 /* That's it. Discard the cleanups for data inserted into the
5442 discard_cleanups (breakpoint_chain);
5443 /* But cleanup everything else. */
5444 do_cleanups (old_chain);
5449 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
5450 linenum or *address) with COND and IGNORE_COUNT. */
5452 struct captured_breakpoint_args
5463 do_captured_breakpoint (struct ui_out *uiout, void *data)
5465 struct captured_breakpoint_args *args = data;
5466 struct symtabs_and_lines sals;
5467 struct expression **cond;
5468 struct cleanup *old_chain;
5469 struct cleanup *breakpoint_chain = NULL;
5476 /* Parse the source and lines spec. Delay check that the expression
5477 didn't contain trailing garbage until after cleanups are in
5481 address_end = args->address;
5483 parse_breakpoint_sals (&address_end, &sals, &addr_string, 0);
5488 /* Create a chain of things at always need to be cleaned up. */
5489 old_chain = make_cleanup (null_cleanup, 0);
5491 /* Always have a addr_string array, even if it is empty. */
5492 make_cleanup (xfree, addr_string);
5494 /* Make sure that all storage allocated to SALS gets freed. */
5495 make_cleanup (xfree, sals.sals);
5497 /* Allocate space for all the cond expressions. */
5498 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5499 make_cleanup (xfree, cond);
5501 /* Allocate space for all the cond strings. */
5502 cond_string = xcalloc (sals.nelts, sizeof (char **));
5503 make_cleanup (xfree, cond_string);
5505 /* ----------------------------- SNIP -----------------------------
5506 Anything added to the cleanup chain beyond this point is assumed
5507 to be part of a breakpoint. If the breakpoint create goes
5508 through then that memory is not cleaned up. */
5509 breakpoint_chain = make_cleanup (null_cleanup, 0);
5511 /* Mark the contents of the addr_string for cleanup. These go on
5512 the breakpoint_chain and only occure if the breakpoint create
5514 for (i = 0; i < sals.nelts; i++)
5516 if (addr_string[i] != NULL)
5517 make_cleanup (xfree, addr_string[i]);
5520 /* Wait until now before checking for garbage at the end of the
5521 address. That way cleanups can take care of freeing any
5523 if (*address_end != '\0')
5524 error (_("Garbage %s following breakpoint address"), address_end);
5526 /* Resolve all line numbers to PC's. */
5527 breakpoint_sals_to_pc (&sals, args->address);
5529 /* Verify that conditions can be parsed, before setting any
5531 for (i = 0; i < sals.nelts; i++)
5533 if (args->condition != NULL)
5535 char *tok = args->condition;
5536 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
5538 error (_("Garbage %s follows condition"), tok);
5539 make_cleanup (xfree, cond[i]);
5540 cond_string[i] = xstrdup (args->condition);
5544 create_breakpoints (sals, addr_string, cond, cond_string,
5545 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
5546 args->tempflag ? disp_del : disp_donttouch,
5547 args->thread, args->ignore_count, 0/*from-tty*/,
5548 NULL/*pending_bp*/);
5550 /* That's it. Discard the cleanups for data inserted into the
5552 discard_cleanups (breakpoint_chain);
5553 /* But cleanup everything else. */
5554 do_cleanups (old_chain);
5559 gdb_breakpoint (char *address, char *condition,
5560 int hardwareflag, int tempflag,
5561 int thread, int ignore_count,
5562 char **error_message)
5564 struct captured_breakpoint_args args;
5565 args.address = address;
5566 args.condition = condition;
5567 args.hardwareflag = hardwareflag;
5568 args.tempflag = tempflag;
5569 args.thread = thread;
5570 args.ignore_count = ignore_count;
5571 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args,
5572 error_message, RETURN_MASK_ALL) < 0)
5579 /* Helper function for break_command_1 and disassemble_command. */
5582 resolve_sal_pc (struct symtab_and_line *sal)
5586 if (sal->pc == 0 && sal->symtab != NULL)
5588 if (!find_line_pc (sal->symtab, sal->line, &pc))
5589 error (_("No line %d in file \"%s\"."),
5590 sal->line, sal->symtab->filename);
5594 if (sal->section == 0 && sal->symtab != NULL)
5596 struct blockvector *bv;
5601 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5604 b = BLOCKVECTOR_BLOCK (bv, index);
5605 sym = block_function (b);
5608 fixup_symbol_section (sym, sal->symtab->objfile);
5609 sal->section = SYMBOL_BFD_SECTION (sym);
5613 /* It really is worthwhile to have the section, so we'll just
5614 have to look harder. This case can be executed if we have
5615 line numbers but no functions (as can happen in assembly
5618 struct minimal_symbol *msym;
5620 msym = lookup_minimal_symbol_by_pc (sal->pc);
5622 sal->section = SYMBOL_BFD_SECTION (msym);
5629 break_command (char *arg, int from_tty)
5631 break_command_1 (arg, 0, from_tty, NULL);
5635 tbreak_command (char *arg, int from_tty)
5637 break_command_1 (arg, BP_TEMPFLAG, from_tty, NULL);
5641 hbreak_command (char *arg, int from_tty)
5643 break_command_1 (arg, BP_HARDWAREFLAG, from_tty, NULL);
5647 thbreak_command (char *arg, int from_tty)
5649 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty, NULL);
5653 stop_command (char *arg, int from_tty)
5655 printf_filtered (_("Specify the type of breakpoint to set.\n\
5656 Usage: stop in <function | address>\n\
5657 stop at <line>\n"));
5661 stopin_command (char *arg, int from_tty)
5665 if (arg == (char *) NULL)
5667 else if (*arg != '*')
5672 /* look for a ':'. If this is a line number specification, then
5673 say it is bad, otherwise, it should be an address or
5674 function/method name */
5675 while (*argptr && !hasColon)
5677 hasColon = (*argptr == ':');
5682 badInput = (*argptr != ':'); /* Not a class::method */
5684 badInput = isdigit (*arg); /* a simple line number */
5688 printf_filtered (_("Usage: stop in <function | address>\n"));
5690 break_command_1 (arg, 0, from_tty, NULL);
5694 stopat_command (char *arg, int from_tty)
5698 if (arg == (char *) NULL || *arg == '*') /* no line number */
5705 /* look for a ':'. If there is a '::' then get out, otherwise
5706 it is probably a line number. */
5707 while (*argptr && !hasColon)
5709 hasColon = (*argptr == ':');
5714 badInput = (*argptr == ':'); /* we have class::method */
5716 badInput = !isdigit (*arg); /* not a line number */
5720 printf_filtered (_("Usage: stop at <line>\n"));
5722 break_command_1 (arg, 0, from_tty, NULL);
5725 /* accessflag: hw_write: watch write,
5726 hw_read: watch read,
5727 hw_access: watch access (read or write) */
5729 watch_command_1 (char *arg, int accessflag, int from_tty)
5731 struct breakpoint *b;
5732 struct symtab_and_line sal;
5733 struct expression *exp;
5734 struct block *exp_valid_block;
5735 struct value *val, *mark;
5736 struct frame_info *frame;
5737 struct frame_info *prev_frame = NULL;
5738 char *exp_start = NULL;
5739 char *exp_end = NULL;
5740 char *tok, *end_tok;
5742 char *cond_start = NULL;
5743 char *cond_end = NULL;
5744 struct expression *cond = NULL;
5745 int i, other_type_used, target_resources_ok = 0;
5746 enum bptype bp_type;
5749 init_sal (&sal); /* initialize to zeroes */
5751 /* Parse arguments. */
5752 innermost_block = NULL;
5754 exp = parse_exp_1 (&arg, 0, 0);
5756 exp_valid_block = innermost_block;
5757 mark = value_mark ();
5758 val = evaluate_expression (exp);
5759 release_value (val);
5760 if (value_lazy (val))
5761 value_fetch_lazy (val);
5764 while (*tok == ' ' || *tok == '\t')
5768 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5771 toklen = end_tok - tok;
5772 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5774 tok = cond_start = end_tok + 1;
5775 cond = parse_exp_1 (&tok, 0, 0);
5779 error (_("Junk at end of command."));
5781 if (accessflag == hw_read)
5782 bp_type = bp_read_watchpoint;
5783 else if (accessflag == hw_access)
5784 bp_type = bp_access_watchpoint;
5786 bp_type = bp_hardware_watchpoint;
5788 mem_cnt = can_use_hardware_watchpoint (val);
5789 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5790 error (_("Expression cannot be implemented with read/access watchpoint."));
5793 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5794 target_resources_ok =
5795 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5797 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5798 error (_("Target does not support this type of hardware watchpoint."));
5800 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5801 error (_("Target can only support one kind of HW watchpoint at a time."));
5804 #if defined(HPUXHPPA)
5805 /* On HP-UX if you set a h/w
5806 watchpoint before the "run" command, the inferior dies with a e.g.,
5807 SIGILL once you start it. I initially believed this was due to a
5808 bad interaction between page protection traps and the initial
5809 startup sequence by the dynamic linker.
5811 However, I tried avoiding that by having HP-UX's implementation of
5812 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5813 yet, which forced slow watches before a "run" or "attach", and it
5814 still fails somewhere in the startup code.
5816 Until I figure out what's happening, I'm disallowing watches altogether
5817 before the "run" or "attach" command. We'll tell the user they must
5818 set watches after getting the program started. */
5819 if (!target_has_execution)
5821 warning (_("can't do that without a running program; try \"break main\"), \"run\" first");
5824 #endif /* HPUXHPPA */
5826 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5827 watchpoint could not be set. */
5828 if (!mem_cnt || target_resources_ok <= 0)
5829 bp_type = bp_watchpoint;
5831 /* Now set up the breakpoint. */
5832 b = set_raw_breakpoint (sal, bp_type);
5833 set_breakpoint_count (breakpoint_count + 1);
5834 b->number = breakpoint_count;
5835 b->disposition = disp_donttouch;
5837 b->exp_valid_block = exp_valid_block;
5838 b->exp_string = savestring (exp_start, exp_end - exp_start);
5842 b->cond_string = savestring (cond_start, cond_end - cond_start);
5846 frame = block_innermost_frame (exp_valid_block);
5849 prev_frame = get_prev_frame (frame);
5850 b->watchpoint_frame = get_frame_id (frame);
5854 memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame));
5857 /* If the expression is "local", then set up a "watchpoint scope"
5858 breakpoint at the point where we've left the scope of the watchpoint
5860 if (innermost_block)
5864 struct breakpoint *scope_breakpoint;
5865 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
5866 bp_watchpoint_scope);
5868 scope_breakpoint->enable_state = bp_enabled;
5870 /* Automatically delete the breakpoint when it hits. */
5871 scope_breakpoint->disposition = disp_del;
5873 /* Only break in the proper frame (help with recursion). */
5874 scope_breakpoint->frame_id = get_frame_id (prev_frame);
5876 /* Set the address at which we will stop. */
5877 scope_breakpoint->loc->requested_address
5878 = get_frame_pc (prev_frame);
5879 scope_breakpoint->loc->address
5880 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
5881 scope_breakpoint->type);
5883 /* The scope breakpoint is related to the watchpoint. We
5884 will need to act on them together. */
5885 b->related_breakpoint = scope_breakpoint;
5888 value_free_to_mark (mark);
5892 /* Return count of locations need to be watched and can be handled
5893 in hardware. If the watchpoint can not be handled
5894 in hardware return zero. */
5897 can_use_hardware_watchpoint (struct value *v)
5899 int found_memory_cnt = 0;
5900 struct value *head = v;
5902 /* Did the user specifically forbid us to use hardware watchpoints? */
5903 if (!can_use_hw_watchpoints)
5906 /* Make sure that the value of the expression depends only upon
5907 memory contents, and values computed from them within GDB. If we
5908 find any register references or function calls, we can't use a
5909 hardware watchpoint.
5911 The idea here is that evaluating an expression generates a series
5912 of values, one holding the value of every subexpression. (The
5913 expression a*b+c has five subexpressions: a, b, a*b, c, and
5914 a*b+c.) GDB's values hold almost enough information to establish
5915 the criteria given above --- they identify memory lvalues,
5916 register lvalues, computed values, etcetera. So we can evaluate
5917 the expression, and then scan the chain of values that leaves
5918 behind to decide whether we can detect any possible change to the
5919 expression's final value using only hardware watchpoints.
5921 However, I don't think that the values returned by inferior
5922 function calls are special in any way. So this function may not
5923 notice that an expression involving an inferior function call
5924 can't be watched with hardware watchpoints. FIXME. */
5925 for (; v; v = value_next (v))
5927 if (VALUE_LVAL (v) == lval_memory)
5930 /* A lazy memory lvalue is one that GDB never needed to fetch;
5931 we either just used its address (e.g., `a' in `a.b') or
5932 we never needed it at all (e.g., `a' in `a,b'). */
5936 /* Ahh, memory we actually used! Check if we can cover
5937 it with hardware watchpoints. */
5938 struct type *vtype = check_typedef (value_type (v));
5940 /* We only watch structs and arrays if user asked for it
5941 explicitly, never if they just happen to appear in a
5942 middle of some value chain. */
5944 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5945 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5947 CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
5948 int len = TYPE_LENGTH (value_type (v));
5950 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5957 else if (VALUE_LVAL (v) != not_lval
5958 && deprecated_value_modifiable (v) == 0)
5959 return 0; /* ??? What does this represent? */
5960 else if (VALUE_LVAL (v) == lval_register)
5961 return 0; /* cannot watch a register with a HW watchpoint */
5964 /* The expression itself looks suitable for using a hardware
5965 watchpoint, but give the target machine a chance to reject it. */
5966 return found_memory_cnt;
5970 watch_command_wrapper (char *arg, int from_tty)
5972 watch_command (arg, from_tty);
5976 watch_command (char *arg, int from_tty)
5978 watch_command_1 (arg, hw_write, from_tty);
5982 rwatch_command_wrapper (char *arg, int from_tty)
5984 rwatch_command (arg, from_tty);
5988 rwatch_command (char *arg, int from_tty)
5990 watch_command_1 (arg, hw_read, from_tty);
5994 awatch_command_wrapper (char *arg, int from_tty)
5996 awatch_command (arg, from_tty);
6000 awatch_command (char *arg, int from_tty)
6002 watch_command_1 (arg, hw_access, from_tty);
6006 /* Helper routines for the until_command routine in infcmd.c. Here
6007 because it uses the mechanisms of breakpoints. */
6009 /* This function is called by fetch_inferior_event via the
6010 cmd_continuation pointer, to complete the until command. It takes
6011 care of cleaning up the temporary breakpoints set up by the until
6014 until_break_command_continuation (struct continuation_arg *arg)
6016 struct cleanup *cleanups;
6018 cleanups = (struct cleanup *) arg->data.pointer;
6019 do_exec_cleanups (cleanups);
6023 until_break_command (char *arg, int from_tty, int anywhere)
6025 struct symtabs_and_lines sals;
6026 struct symtab_and_line sal;
6027 struct frame_info *frame = get_selected_frame (NULL);
6028 struct frame_info *prev_frame = get_prev_frame (frame);
6029 struct breakpoint *breakpoint;
6030 struct cleanup *old_chain;
6031 struct continuation_arg *arg1;
6034 clear_proceed_status ();
6036 /* Set a breakpoint where the user wants it and at return from
6039 if (default_breakpoint_valid)
6040 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
6041 default_breakpoint_line, (char ***) NULL, NULL);
6043 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
6044 0, (char ***) NULL, NULL);
6046 if (sals.nelts != 1)
6047 error (_("Couldn't get information on specified line."));
6050 xfree (sals.sals); /* malloc'd, so freed */
6053 error (_("Junk at end of arguments."));
6055 resolve_sal_pc (&sal);
6058 /* If the user told us to continue until a specified location,
6059 we don't specify a frame at which we need to stop. */
6060 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
6062 /* Otherwise, specify the current frame, because we want to stop only
6063 at the very same frame. */
6064 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
6067 if (!target_can_async_p ())
6068 old_chain = make_cleanup_delete_breakpoint (breakpoint);
6070 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
6072 /* If we are running asynchronously, and the target supports async
6073 execution, we are not waiting for the target to stop, in the call
6074 tp proceed, below. This means that we cannot delete the
6075 brekpoints until the target has actually stopped. The only place
6076 where we get a chance to do that is in fetch_inferior_event, so
6077 we must set things up for that. */
6079 if (target_can_async_p ())
6081 /* In this case the arg for the continuation is just the point
6082 in the exec_cleanups chain from where to start doing
6083 cleanups, because all the continuation does is the cleanups in
6084 the exec_cleanup_chain. */
6086 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
6088 arg1->data.pointer = old_chain;
6090 add_continuation (until_break_command_continuation, arg1);
6093 /* Keep within the current frame, or in frames called by the current
6097 sal = find_pc_line (get_frame_pc (prev_frame), 0);
6098 sal.pc = get_frame_pc (prev_frame);
6099 breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
6101 if (!target_can_async_p ())
6102 make_cleanup_delete_breakpoint (breakpoint);
6104 make_exec_cleanup_delete_breakpoint (breakpoint);
6107 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
6108 /* Do the cleanups now, anly if we are not running asynchronously,
6109 of if we are, but the target is still synchronous. */
6110 if (!target_can_async_p ())
6111 do_cleanups (old_chain);
6115 ep_skip_leading_whitespace (char **s)
6117 if ((s == NULL) || (*s == NULL))
6119 while (isspace (**s))
6123 /* This function examines a string, and attempts to find a token
6124 that might be an event name in the leading characters. If a
6125 possible match is found, a pointer to the last character of
6126 the token is returned. Else, NULL is returned. */
6129 ep_find_event_name_end (char *arg)
6132 char *event_name_end = NULL;
6134 /* If we could depend upon the presense of strrpbrk, we'd use that... */
6138 /* We break out of the loop when we find a token delimiter.
6139 Basically, we're looking for alphanumerics and underscores;
6140 anything else delimites the token. */
6143 if (!isalnum (*s) && (*s != '_'))
6149 return event_name_end;
6153 /* This function attempts to parse an optional "if <cond>" clause
6154 from the arg string. If one is not found, it returns NULL.
6156 Else, it returns a pointer to the condition string. (It does not
6157 attempt to evaluate the string against a particular block.) And,
6158 it updates arg to point to the first character following the parsed
6159 if clause in the arg string. */
6162 ep_parse_optional_if_clause (char **arg)
6166 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
6169 /* Skip the "if" keyword. */
6172 /* Skip any extra leading whitespace, and record the start of the
6173 condition string. */
6174 ep_skip_leading_whitespace (arg);
6177 /* Assume that the condition occupies the remainder of the arg string. */
6178 (*arg) += strlen (cond_string);
6183 /* This function attempts to parse an optional filename from the arg
6184 string. If one is not found, it returns NULL.
6186 Else, it returns a pointer to the parsed filename. (This function
6187 makes no attempt to verify that a file of that name exists, or is
6188 accessible.) And, it updates arg to point to the first character
6189 following the parsed filename in the arg string.
6191 Note that clients needing to preserve the returned filename for
6192 future access should copy it to their own buffers. */
6194 ep_parse_optional_filename (char **arg)
6196 static char filename[1024];
6201 if ((*arg_p == '\0') || isspace (*arg_p))
6219 /* Commands to deal with catching events, such as signals, exceptions,
6220 process start/exit, etc. */
6224 catch_fork, catch_vfork
6229 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6232 char *cond_string = NULL;
6234 ep_skip_leading_whitespace (&arg);
6236 /* The allowed syntax is:
6238 catch [v]fork if <cond>
6240 First, check if there's an if clause. */
6241 cond_string = ep_parse_optional_if_clause (&arg);
6243 if ((*arg != '\0') && !isspace (*arg))
6244 error (_("Junk at end of arguments."));
6246 /* If this target supports it, create a fork or vfork catchpoint
6247 and enable reporting of such events. */
6251 create_fork_event_catchpoint (tempflag, cond_string);
6254 create_vfork_event_catchpoint (tempflag, cond_string);
6257 error (_("unsupported or unknown fork kind; cannot catch it"));
6263 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6265 char *cond_string = NULL;
6267 ep_skip_leading_whitespace (&arg);
6269 /* The allowed syntax is:
6271 catch exec if <cond>
6273 First, check if there's an if clause. */
6274 cond_string = ep_parse_optional_if_clause (&arg);
6276 if ((*arg != '\0') && !isspace (*arg))
6277 error (_("Junk at end of arguments."));
6279 /* If this target supports it, create an exec catchpoint
6280 and enable reporting of such events. */
6281 create_exec_event_catchpoint (tempflag, cond_string);
6285 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6287 char *dll_pathname = NULL;
6288 char *cond_string = NULL;
6290 ep_skip_leading_whitespace (&arg);
6292 /* The allowed syntax is:
6294 catch load if <cond>
6295 catch load <filename>
6296 catch load <filename> if <cond>
6298 The user is not allowed to specify the <filename> after an
6301 We'll ignore the pathological case of a file named "if".
6303 First, check if there's an if clause. If so, then there
6304 cannot be a filename. */
6305 cond_string = ep_parse_optional_if_clause (&arg);
6307 /* If there was an if clause, then there cannot be a filename.
6308 Else, there might be a filename and an if clause. */
6309 if (cond_string == NULL)
6311 dll_pathname = ep_parse_optional_filename (&arg);
6312 ep_skip_leading_whitespace (&arg);
6313 cond_string = ep_parse_optional_if_clause (&arg);
6316 if ((*arg != '\0') && !isspace (*arg))
6317 error (_("Junk at end of arguments."));
6319 /* Create a load breakpoint that only triggers when a load of
6320 the specified dll (or any dll, if no pathname was specified)
6322 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6323 dll_pathname, cond_string);
6327 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6329 char *dll_pathname = NULL;
6330 char *cond_string = NULL;
6332 ep_skip_leading_whitespace (&arg);
6334 /* The allowed syntax is:
6336 catch unload if <cond>
6337 catch unload <filename>
6338 catch unload <filename> if <cond>
6340 The user is not allowed to specify the <filename> after an
6343 We'll ignore the pathological case of a file named "if".
6345 First, check if there's an if clause. If so, then there
6346 cannot be a filename. */
6347 cond_string = ep_parse_optional_if_clause (&arg);
6349 /* If there was an if clause, then there cannot be a filename.
6350 Else, there might be a filename and an if clause. */
6351 if (cond_string == NULL)
6353 dll_pathname = ep_parse_optional_filename (&arg);
6354 ep_skip_leading_whitespace (&arg);
6355 cond_string = ep_parse_optional_if_clause (&arg);
6358 if ((*arg != '\0') && !isspace (*arg))
6359 error (_("Junk at end of arguments."));
6361 /* Create an unload breakpoint that only triggers when an unload of
6362 the specified dll (or any dll, if no pathname was specified)
6364 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6365 dll_pathname, cond_string);
6368 /* Commands to deal with catching exceptions. */
6370 /* Set a breakpoint at the specified callback routine for an
6371 exception event callback */
6374 create_exception_catchpoint (int tempflag, char *cond_string,
6375 enum exception_event_kind ex_event,
6376 struct symtab_and_line *sal)
6378 struct breakpoint *b;
6379 int thread = -1; /* All threads. */
6382 if (!sal) /* no exception support? */
6387 case EX_EVENT_THROW:
6388 bptype = bp_catch_throw;
6390 case EX_EVENT_CATCH:
6391 bptype = bp_catch_catch;
6393 default: /* error condition */
6394 error (_("Internal error -- invalid catchpoint kind"));
6397 b = set_raw_breakpoint (*sal, bptype);
6398 set_breakpoint_count (breakpoint_count + 1);
6399 b->number = breakpoint_count;
6401 b->cond_string = (cond_string == NULL) ?
6402 NULL : savestring (cond_string, strlen (cond_string));
6404 b->addr_string = NULL;
6405 b->enable_state = bp_enabled;
6406 b->disposition = tempflag ? disp_del : disp_donttouch;
6410 static enum print_stop_action
6411 print_exception_catchpoint (struct breakpoint *b)
6413 annotate_catchpoint (b->number);
6415 if (strstr (b->addr_string, "throw") != NULL)
6416 printf_filtered (_("\nCatchpoint %d (exception thrown)\n"),
6419 printf_filtered (_("\nCatchpoint %d (exception caught)\n"),
6422 return PRINT_SRC_AND_LOC;
6426 print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6431 ui_out_field_core_addr (uiout, "addr", b->loc->address);
6434 *last_addr = b->loc->address;
6435 if (strstr (b->addr_string, "throw") != NULL)
6436 ui_out_field_string (uiout, "what", "exception throw");
6438 ui_out_field_string (uiout, "what", "exception catch");
6442 print_mention_exception_catchpoint (struct breakpoint *b)
6444 if (strstr (b->addr_string, "throw") != NULL)
6445 printf_filtered (_("Catchpoint %d (throw)"), b->number);
6447 printf_filtered (_("Catchpoint %d (catch)"), b->number);
6450 static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6451 print_exception_catchpoint,
6452 print_one_exception_catchpoint,
6453 print_mention_exception_catchpoint
6457 handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6458 enum exception_event_kind ex_event, int from_tty)
6460 char *trigger_func_name, *nameptr;
6461 struct symtabs_and_lines sals;
6462 struct breakpoint *b;
6464 if (ex_event == EX_EVENT_CATCH)
6465 trigger_func_name = xstrdup ("__cxa_begin_catch");
6467 trigger_func_name = xstrdup ("__cxa_throw");
6469 nameptr = trigger_func_name;
6470 sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
6471 if (sals.nelts == 0)
6473 xfree (trigger_func_name);
6477 b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
6478 set_breakpoint_count (breakpoint_count + 1);
6479 b->number = breakpoint_count;
6481 b->cond_string = (cond_string == NULL) ?
6482 NULL : savestring (cond_string, strlen (cond_string));
6484 b->addr_string = trigger_func_name;
6485 b->enable_state = bp_enabled;
6486 b->disposition = tempflag ? disp_del : disp_donttouch;
6487 b->ops = &gnu_v3_exception_catchpoint_ops;
6494 /* Deal with "catch catch" and "catch throw" commands */
6497 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6498 int tempflag, int from_tty)
6500 char *cond_string = NULL;
6501 struct symtab_and_line *sal = NULL;
6503 ep_skip_leading_whitespace (&arg);
6505 cond_string = ep_parse_optional_if_clause (&arg);
6507 if ((*arg != '\0') && !isspace (*arg))
6508 error (_("Junk at end of arguments."));
6510 if ((ex_event != EX_EVENT_THROW) &&
6511 (ex_event != EX_EVENT_CATCH))
6512 error (_("Unsupported or unknown exception event; cannot catch it"));
6514 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6517 /* See if we can find a callback routine */
6518 sal = target_enable_exception_callback (ex_event, 1);
6522 /* We have callbacks from the runtime system for exceptions.
6523 Set a breakpoint on the sal found, if no errors */
6524 if (sal != (struct symtab_and_line *) -1)
6525 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6527 return; /* something went wrong with setting up callbacks */
6530 warning (_("Unsupported with this platform/compiler combination."));
6533 /* Create a breakpoint struct for Ada exception catchpoints. */
6536 create_ada_exception_breakpoint (struct symtab_and_line sal,
6540 struct expression *cond,
6541 struct breakpoint_ops *ops,
6545 struct breakpoint *b;
6549 describe_other_breakpoints (sal.pc, sal.section, -1);
6550 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
6551 version for exception catchpoints, because two catchpoints
6552 used for different exception names will use the same address.
6553 In this case, a "breakpoint ... also set at..." warning is
6554 unproductive. Besides. the warning phrasing is also a bit
6555 inapropriate, we should use the word catchpoint, and tell
6556 the user what type of catchpoint it is. The above is good
6557 enough for now, though. */
6560 b = set_raw_breakpoint (sal, bp_breakpoint);
6561 set_breakpoint_count (breakpoint_count + 1);
6563 b->enable_state = bp_enabled;
6564 b->disposition = tempflag ? disp_del : disp_donttouch;
6565 b->number = breakpoint_count;
6566 b->ignore_count = 0;
6568 b->addr_string = addr_string;
6569 b->language = language_ada;
6570 b->cond_string = cond_string;
6571 b->exp_string = exp_string;
6574 b->from_tty = from_tty;
6579 /* Implement the "catch exception" command. */
6582 catch_ada_exception_command (char *arg, int tempflag, int from_tty)
6584 struct symtab_and_line sal;
6586 char *addr_string = NULL;
6587 char *exp_string = NULL;
6588 char *cond_string = NULL;
6589 struct expression *cond = NULL;
6590 struct breakpoint_ops *ops = NULL;
6592 sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
6593 &cond_string, &cond, &ops);
6594 create_ada_exception_breakpoint (sal, addr_string, exp_string,
6595 cond_string, cond, ops, tempflag,
6599 /* Implement the "catch assert" command. */
6602 catch_assert_command (char *arg, int tempflag, int from_tty)
6604 struct symtab_and_line sal;
6605 char *addr_string = NULL;
6606 struct breakpoint_ops *ops = NULL;
6608 sal = ada_decode_assert_location (arg, &addr_string, &ops);
6609 create_ada_exception_breakpoint (sal, addr_string, NULL, NULL, NULL, ops,
6610 tempflag, from_tty);
6613 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6614 inside a catch_errors */
6617 cover_target_enable_exception_callback (void *arg)
6619 args_for_catchpoint_enable *args = arg;
6620 struct symtab_and_line *sal;
6621 sal = target_enable_exception_callback (args->kind, args->enable_p);
6624 else if (sal == (struct symtab_and_line *) -1)
6627 return 1; /*is valid */
6631 catch_command_1 (char *arg, int tempflag, int from_tty)
6634 /* The first argument may be an event name, such as "start" or "load".
6635 If so, then handle it as such. If it doesn't match an event name,
6636 then attempt to interpret it as an exception name. (This latter is
6637 the v4.16-and-earlier GDB meaning of the "catch" command.)
6639 First, try to find the bounds of what might be an event name. */
6640 char *arg1_start = arg;
6644 if (arg1_start == NULL)
6646 /* Old behaviour was to use pre-v-4.16 syntax */
6647 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6649 /* Now, this is not allowed */
6650 error (_("Catch requires an event name."));
6653 arg1_end = ep_find_event_name_end (arg1_start);
6654 if (arg1_end == NULL)
6655 error (_("catch requires an event"));
6656 arg1_length = arg1_end + 1 - arg1_start;
6658 /* Try to match what we found against known event names. */
6659 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6661 error (_("Catch of signal not yet implemented"));
6663 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6665 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6666 tempflag, from_tty);
6668 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6670 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6671 tempflag, from_tty);
6673 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6675 error (_("Catch of thread_start not yet implemented"));
6677 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6679 error (_("Catch of thread_exit not yet implemented"));
6681 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6683 error (_("Catch of thread_join not yet implemented"));
6685 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6687 error (_("Catch of start not yet implemented"));
6689 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6691 error (_("Catch of exit not yet implemented"));
6693 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6695 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6697 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6699 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6701 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6703 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6705 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6707 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6709 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6711 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6713 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6715 error (_("Catch of stop not yet implemented"));
6717 else if (strncmp (arg1_start, "exception", arg1_length) == 0)
6719 catch_ada_exception_command (arg1_end + 1, tempflag, from_tty);
6722 else if (strncmp (arg1_start, "assert", arg1_length) == 0)
6724 catch_assert_command (arg1_end + 1, tempflag, from_tty);
6727 /* This doesn't appear to be an event name */
6731 /* Pre-v.4.16 behaviour was to treat the argument
6732 as the name of an exception */
6733 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6734 /* Now this is not allowed */
6735 error (_("Unknown event kind specified for catch"));
6740 /* Used by the gui, could be made a worker for other things. */
6743 set_breakpoint_sal (struct symtab_and_line sal)
6745 struct breakpoint *b;
6746 b = set_raw_breakpoint (sal, bp_breakpoint);
6747 set_breakpoint_count (breakpoint_count + 1);
6748 b->number = breakpoint_count;
6755 catch_command (char *arg, int from_tty)
6757 catch_command_1 (arg, 0, from_tty);
6762 tcatch_command (char *arg, int from_tty)
6764 catch_command_1 (arg, 1, from_tty);
6767 /* Delete breakpoints by address or line. */
6770 clear_command (char *arg, int from_tty)
6772 struct breakpoint *b, *tmp, *prev, *found;
6774 struct symtabs_and_lines sals;
6775 struct symtab_and_line sal;
6780 sals = decode_line_spec (arg, 1);
6785 sals.sals = (struct symtab_and_line *)
6786 xmalloc (sizeof (struct symtab_and_line));
6787 make_cleanup (xfree, sals.sals);
6788 init_sal (&sal); /* initialize to zeroes */
6789 sal.line = default_breakpoint_line;
6790 sal.symtab = default_breakpoint_symtab;
6791 sal.pc = default_breakpoint_address;
6792 if (sal.symtab == 0)
6793 error (_("No source file specified."));
6801 /* For each line spec given, delete bps which correspond
6802 to it. Do it in two passes, solely to preserve the current
6803 behavior that from_tty is forced true if we delete more than
6807 for (i = 0; i < sals.nelts; i++)
6809 /* If exact pc given, clear bpts at that pc.
6810 If line given (pc == 0), clear all bpts on specified line.
6811 If defaulting, clear all bpts on default line
6814 defaulting sal.pc != 0 tests to do
6819 1 0 <can't happen> */
6824 /* Find all matching breakpoints, remove them from the
6825 breakpoint chain, and add them to the 'found' chain. */
6826 ALL_BREAKPOINTS_SAFE (b, tmp)
6828 /* Are we going to delete b? */
6829 if (b->type != bp_none
6830 && b->type != bp_watchpoint
6831 && b->type != bp_hardware_watchpoint
6832 && b->type != bp_read_watchpoint
6833 && b->type != bp_access_watchpoint
6834 /* Not if b is a watchpoint of any sort... */
6835 && (((sal.pc && (b->loc->address == sal.pc))
6836 && (!section_is_overlay (b->loc->section)
6837 || b->loc->section == sal.section))
6838 /* Yes, if sal.pc matches b (modulo overlays). */
6839 || ((default_match || (0 == sal.pc))
6840 && b->source_file != NULL
6841 && sal.symtab != NULL
6842 && strcmp (b->source_file, sal.symtab->filename) == 0
6843 && b->line_number == sal.line)))
6844 /* Yes, if sal source file and line matches b. */
6846 /* Remove it from breakpoint_chain... */
6847 if (b == breakpoint_chain)
6849 /* b is at the head of the list */
6850 breakpoint_chain = b->next;
6854 prev->next = b->next;
6856 /* And add it to 'found' chain. */
6862 /* Keep b, and keep a pointer to it. */
6867 /* Now go thru the 'found' chain and delete them. */
6871 error (_("No breakpoint at %s."), arg);
6873 error (_("No breakpoint at this line."));
6877 from_tty = 1; /* Always report if deleted more than one */
6881 printf_unfiltered (_("Deleted breakpoint "));
6883 printf_unfiltered (_("Deleted breakpoints "));
6885 breakpoints_changed ();
6889 printf_unfiltered ("%d ", found->number);
6891 delete_breakpoint (found);
6895 putchar_unfiltered ('\n');
6898 /* Delete breakpoint in BS if they are `delete' breakpoints and
6899 all breakpoints that are marked for deletion, whether hit or not.
6900 This is called after any breakpoint is hit, or after errors. */
6903 breakpoint_auto_delete (bpstat bs)
6905 struct breakpoint *b, *temp;
6907 for (; bs; bs = bs->next)
6908 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6910 delete_breakpoint (bs->breakpoint_at);
6912 ALL_BREAKPOINTS_SAFE (b, temp)
6914 if (b->disposition == disp_del_at_next_stop)
6915 delete_breakpoint (b);
6919 /* Delete a breakpoint and clean up all traces of it in the data
6923 delete_breakpoint (struct breakpoint *bpt)
6925 struct breakpoint *b;
6927 struct bp_location *loc;
6929 gdb_assert (bpt != NULL);
6931 /* Has this bp already been deleted? This can happen because multiple
6932 lists can hold pointers to bp's. bpstat lists are especial culprits.
6934 One example of this happening is a watchpoint's scope bp. When the
6935 scope bp triggers, we notice that the watchpoint is out of scope, and
6936 delete it. We also delete its scope bp. But the scope bp is marked
6937 "auto-deleting", and is already on a bpstat. That bpstat is then
6938 checked for auto-deleting bp's, which are deleted.
6940 A real solution to this problem might involve reference counts in bp's,
6941 and/or giving them pointers back to their referencing bpstat's, and
6942 teaching delete_breakpoint to only free a bp's storage when no more
6943 references were extent. A cheaper bandaid was chosen. */
6944 if (bpt->type == bp_none)
6947 if (deprecated_delete_breakpoint_hook)
6948 deprecated_delete_breakpoint_hook (bpt);
6949 breakpoint_delete_event (bpt->number);
6951 if (bpt->loc->inserted)
6952 remove_breakpoint (bpt->loc, mark_inserted);
6954 free_valchain (bpt->loc);
6956 if (breakpoint_chain == bpt)
6957 breakpoint_chain = bpt->next;
6959 if (bp_location_chain == bpt->loc)
6960 bp_location_chain = bpt->loc->next;
6962 /* If we have callback-style exception catchpoints, don't go through
6963 the adjustments to the C++ runtime library etc. if the inferior
6964 isn't actually running. target_enable_exception_callback for a
6965 null target ops vector gives an undesirable error message, so we
6966 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6967 exceptions are supported in this way, it's OK for now. FIXME */
6968 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6970 /* Format possible error msg */
6971 char *message = xstrprintf ("Error in deleting catchpoint %d:\n",
6973 struct cleanup *cleanups = make_cleanup (xfree, message);
6974 args_for_catchpoint_enable args;
6975 args.kind = bpt->type == bp_catch_catch ?
6976 EX_EVENT_CATCH : EX_EVENT_THROW;
6978 catch_errors (cover_target_enable_exception_callback, &args,
6979 message, RETURN_MASK_ALL);
6980 do_cleanups (cleanups);
6987 b->next = bpt->next;
6991 ALL_BP_LOCATIONS (loc)
6992 if (loc->next == bpt->loc)
6994 loc->next = bpt->loc->next;
6998 check_duplicates (bpt);
6999 /* If this breakpoint was inserted, and there is another breakpoint
7000 at the same address, we need to insert the other breakpoint. */
7001 if (bpt->loc->inserted
7002 && bpt->type != bp_hardware_watchpoint
7003 && bpt->type != bp_read_watchpoint
7004 && bpt->type != bp_access_watchpoint
7005 && bpt->type != bp_catch_fork
7006 && bpt->type != bp_catch_vfork
7007 && bpt->type != bp_catch_exec)
7010 if (b->loc->address == bpt->loc->address
7011 && b->loc->section == bpt->loc->section
7012 && !b->loc->duplicate
7013 && b->enable_state != bp_disabled
7014 && b->enable_state != bp_shlib_disabled
7016 && b->enable_state != bp_call_disabled)
7020 /* We should never reach this point if there is a permanent
7021 breakpoint at the same address as the one being deleted.
7022 If there is a permanent breakpoint somewhere, it should
7023 always be the only one inserted. */
7024 if (b->enable_state == bp_permanent)
7025 internal_error (__FILE__, __LINE__,
7026 _("another breakpoint was inserted on top of "
7027 "a permanent breakpoint"));
7029 memset (&b->loc->target_info, 0, sizeof (b->loc->target_info));
7030 b->loc->target_info.placed_address = b->loc->address;
7031 if (b->type == bp_hardware_breakpoint)
7032 val = target_insert_hw_breakpoint (&b->loc->target_info);
7034 val = target_insert_breakpoint (&b->loc->target_info);
7036 /* If there was an error in the insert, print a message, then stop execution. */
7039 struct ui_file *tmp_error_stream = mem_fileopen ();
7040 make_cleanup_ui_file_delete (tmp_error_stream);
7043 if (b->type == bp_hardware_breakpoint)
7045 fprintf_unfiltered (tmp_error_stream,
7046 "Cannot insert hardware breakpoint %d.\n"
7047 "You may have requested too many hardware breakpoints.\n",
7052 fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
7053 fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
7054 deprecated_print_address_numeric (b->loc->address, 1, tmp_error_stream);
7055 fprintf_filtered (tmp_error_stream, ": %s.\n",
7056 safe_strerror (val));
7059 fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
7060 target_terminal_ours_for_output ();
7061 error_stream(tmp_error_stream);
7064 b->loc->inserted = 1;
7068 free_command_lines (&bpt->commands);
7071 if (bpt->cond_string != NULL)
7072 xfree (bpt->cond_string);
7073 if (bpt->addr_string != NULL)
7074 xfree (bpt->addr_string);
7075 if (bpt->exp != NULL)
7077 if (bpt->exp_string != NULL)
7078 xfree (bpt->exp_string);
7079 if (bpt->val != NULL)
7080 value_free (bpt->val);
7081 if (bpt->source_file != NULL)
7082 xfree (bpt->source_file);
7083 if (bpt->dll_pathname != NULL)
7084 xfree (bpt->dll_pathname);
7085 if (bpt->triggered_dll_pathname != NULL)
7086 xfree (bpt->triggered_dll_pathname);
7087 if (bpt->exec_pathname != NULL)
7088 xfree (bpt->exec_pathname);
7090 /* Be sure no bpstat's are pointing at it after it's been freed. */
7091 /* FIXME, how can we find all bpstat's?
7092 We just check stop_bpstat for now. */
7093 for (bs = stop_bpstat; bs; bs = bs->next)
7094 if (bs->breakpoint_at == bpt)
7096 bs->breakpoint_at = NULL;
7098 /* bs->commands will be freed later. */
7100 /* On the chance that someone will soon try again to delete this same
7101 bp, we mark it as deleted before freeing its storage. */
7102 bpt->type = bp_none;
7109 do_delete_breakpoint_cleanup (void *b)
7111 delete_breakpoint (b);
7115 make_cleanup_delete_breakpoint (struct breakpoint *b)
7117 return make_cleanup (do_delete_breakpoint_cleanup, b);
7121 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
7123 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
7127 delete_command (char *arg, int from_tty)
7129 struct breakpoint *b, *temp;
7135 int breaks_to_delete = 0;
7137 /* Delete all breakpoints if no argument.
7138 Do not delete internal or call-dummy breakpoints, these
7139 have to be deleted with an explicit breakpoint number argument. */
7142 if (b->type != bp_call_dummy &&
7143 b->type != bp_shlib_event &&
7144 b->type != bp_thread_event &&
7145 b->type != bp_overlay_event &&
7148 breaks_to_delete = 1;
7153 /* Ask user only if there are some breakpoints to delete. */
7155 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
7157 ALL_BREAKPOINTS_SAFE (b, temp)
7159 if (b->type != bp_call_dummy &&
7160 b->type != bp_shlib_event &&
7161 b->type != bp_thread_event &&
7162 b->type != bp_overlay_event &&
7164 delete_breakpoint (b);
7169 map_breakpoint_numbers (arg, delete_breakpoint);
7172 /* Reset a breakpoint given it's struct breakpoint * BINT.
7173 The value we return ends up being the return value from catch_errors.
7174 Unused in this case. */
7177 breakpoint_re_set_one (void *bint)
7179 /* get past catch_errs */
7180 struct breakpoint *b = (struct breakpoint *) bint;
7184 int *not_found_ptr = NULL;
7185 struct symtabs_and_lines sals;
7187 enum enable_state save_enable;
7192 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
7196 case bp_hardware_breakpoint:
7198 case bp_catch_unload:
7199 if (b->addr_string == NULL)
7201 /* Anything without a string can't be re-set. */
7202 delete_breakpoint (b);
7205 /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote:
7207 ``And a hack it is, although Apple's Darwin version of GDB
7208 contains an almost identical hack to implement a "future
7209 break" command. It seems to work in many real world cases,
7210 but it is easy to come up with a test case where the patch
7211 doesn't help at all.''
7213 ``It seems that the way GDB implements breakpoints - in -
7214 shared - libraries was designed for a.out shared library
7215 systems (SunOS 4) where shared libraries were loaded at a
7216 fixed address in memory. Since ELF shared libraries can (and
7217 will) be loaded at any address in memory, things break.
7218 Fixing this is not trivial. Therefore, I'm not sure whether
7219 we should add this hack to the branch only. I cannot
7220 guarantee that things will be fixed on the trunk in the near
7223 In case we have a problem, disable this breakpoint. We'll
7224 restore its status if we succeed. Don't disable a
7225 shlib_disabled breakpoint though. There's a fair chance we
7226 can't re-set it if the shared library it's in hasn't been
7232 save_enable = b->enable_state;
7233 if (b->enable_state != bp_shlib_disabled)
7234 b->enable_state = bp_disabled;
7236 /* If resetting a shlib-disabled breakpoint, we don't want to
7237 see an error message if it is not found since we will expect
7238 this to occur until the shared library is finally reloaded.
7239 We accomplish this by giving decode_line_1 a pointer to use
7240 for silent notification that the symbol is not found. */
7241 not_found_ptr = ¬_found;
7243 set_language (b->language);
7244 input_radix = b->input_radix;
7246 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
7248 for (i = 0; i < sals.nelts; i++)
7250 resolve_sal_pc (&sals.sals[i]);
7252 /* Reparse conditions, they might contain references to the
7254 if (b->cond_string != NULL)
7260 /* Avoid re-freeing b->exp if an error during the call
7264 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7267 /* We need to re-set the breakpoint if the address changes... */
7268 if (b->loc->address != sals.sals[i].pc
7269 /* ...or new and old breakpoints both have source files, and
7270 the source file name or the line number changes... */
7271 || (b->source_file != NULL
7272 && sals.sals[i].symtab != NULL
7273 && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0
7274 || b->line_number != sals.sals[i].line)
7276 /* ...or we switch between having a source file and not having
7278 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7281 if (b->source_file != NULL)
7282 xfree (b->source_file);
7283 if (sals.sals[i].symtab == NULL)
7284 b->source_file = NULL;
7287 savestring (sals.sals[i].symtab->filename,
7288 strlen (sals.sals[i].symtab->filename));
7289 b->line_number = sals.sals[i].line;
7290 b->loc->requested_address = sals.sals[i].pc;
7292 = adjust_breakpoint_address (b->loc->requested_address,
7295 /* Used to check for duplicates here, but that can
7296 cause trouble, as it doesn't check for disabled
7301 /* Might be better to do this just once per breakpoint_re_set,
7302 rather than once for every breakpoint. */
7303 breakpoints_changed ();
7305 b->loc->section = sals.sals[i].section;
7306 b->enable_state = save_enable; /* Restore it, this worked. */
7309 /* Now that this is re-enabled, check_duplicates
7311 check_duplicates (b);
7318 case bp_hardware_watchpoint:
7319 case bp_read_watchpoint:
7320 case bp_access_watchpoint:
7321 innermost_block = NULL;
7322 /* The issue arises of what context to evaluate this in. The
7323 same one as when it was set, but what does that mean when
7324 symbols have been re-read? We could save the filename and
7325 functionname, but if the context is more local than that, the
7326 best we could do would be something like how many levels deep
7327 and which index at that particular level, but that's going to
7328 be less stable than filenames or function names. */
7330 /* So for now, just use a global context. */
7334 /* Avoid re-freeing b->exp if an error during the call to
7335 parse_expression. */
7338 b->exp = parse_expression (b->exp_string);
7339 b->exp_valid_block = innermost_block;
7340 mark = value_mark ();
7343 value_free (b->val);
7344 /* Avoid re-freeing b->val if an error during the call to
7345 evaluate_expression. */
7348 b->val = evaluate_expression (b->exp);
7349 release_value (b->val);
7350 if (value_lazy (b->val) && breakpoint_enabled (b))
7351 value_fetch_lazy (b->val);
7353 if (b->cond_string != NULL)
7359 /* Avoid re-freeing b->exp if an error during the call
7363 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7365 if (breakpoint_enabled (b))
7367 value_free_to_mark (mark);
7369 case bp_catch_catch:
7370 case bp_catch_throw:
7372 /* We needn't really do anything to reset these, since the mask
7373 that requests them is unaffected by e.g., new libraries being
7376 case bp_catch_vfork:
7381 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
7383 /* Delete longjmp and overlay event breakpoints; they will be
7384 reset later by breakpoint_re_set. */
7386 case bp_longjmp_resume:
7387 case bp_overlay_event:
7388 delete_breakpoint (b);
7391 /* This breakpoint is special, it's set up when the inferior
7392 starts and we really don't want to touch it. */
7393 case bp_shlib_event:
7395 /* Like bp_shlib_event, this breakpoint type is special.
7396 Once it is set up, we do not want to touch it. */
7397 case bp_thread_event:
7399 /* Keep temporary breakpoints, which can be encountered when we step
7400 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7401 Otherwise these should have been blown away via the cleanup chain
7402 or by breakpoint_init_inferior when we rerun the executable. */
7405 case bp_watchpoint_scope:
7407 case bp_step_resume:
7414 /* Re-set all breakpoints after symbols have been re-loaded. */
7416 breakpoint_re_set (void)
7418 struct breakpoint *b, *temp;
7419 enum language save_language;
7420 int save_input_radix;
7422 save_language = current_language->la_language;
7423 save_input_radix = input_radix;
7424 ALL_BREAKPOINTS_SAFE (b, temp)
7426 /* Format possible error msg */
7427 char *message = xstrprintf ("Error in re-setting breakpoint %d:\n",
7429 struct cleanup *cleanups = make_cleanup (xfree, message);
7430 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7431 do_cleanups (cleanups);
7433 set_language (save_language);
7434 input_radix = save_input_radix;
7436 if (gdbarch_get_longjmp_target_p (current_gdbarch))
7438 create_longjmp_breakpoint ("longjmp");
7439 create_longjmp_breakpoint ("_longjmp");
7440 create_longjmp_breakpoint ("siglongjmp");
7441 create_longjmp_breakpoint ("_siglongjmp");
7442 create_longjmp_breakpoint (NULL);
7445 create_overlay_event_breakpoint ("_ovly_debug_event");
7448 /* Reset the thread number of this breakpoint:
7450 - If the breakpoint is for all threads, leave it as-is.
7451 - Else, reset it to the current thread for inferior_ptid. */
7453 breakpoint_re_set_thread (struct breakpoint *b)
7455 if (b->thread != -1)
7457 if (in_thread_list (inferior_ptid))
7458 b->thread = pid_to_thread_id (inferior_ptid);
7462 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7463 If from_tty is nonzero, it prints a message to that effect,
7464 which ends with a period (no newline). */
7467 set_ignore_count (int bptnum, int count, int from_tty)
7469 struct breakpoint *b;
7475 if (b->number == bptnum)
7477 b->ignore_count = count;
7481 printf_filtered (_("Will stop next time breakpoint %d is reached."),
7483 else if (count == 1)
7484 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
7487 printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
7490 breakpoints_changed ();
7491 breakpoint_modify_event (b->number);
7495 error (_("No breakpoint number %d."), bptnum);
7498 /* Clear the ignore counts of all breakpoints. */
7500 breakpoint_clear_ignore_counts (void)
7502 struct breakpoint *b;
7505 b->ignore_count = 0;
7508 /* Command to set ignore-count of breakpoint N to COUNT. */
7511 ignore_command (char *args, int from_tty)
7517 error_no_arg (_("a breakpoint number"));
7519 num = get_number (&p);
7521 error (_("bad breakpoint number: '%s'"), args);
7523 error (_("Second argument (specified ignore-count) is missing."));
7525 set_ignore_count (num,
7526 longest_to_int (value_as_long (parse_and_eval (p))),
7529 printf_filtered ("\n");
7532 /* Call FUNCTION on each of the breakpoints
7533 whose numbers are given in ARGS. */
7536 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7541 struct breakpoint *b, *tmp;
7545 error_no_arg (_("one or more breakpoint numbers"));
7552 num = get_number_or_range (&p1);
7555 warning (_("bad breakpoint number at or near '%s'"), p);
7559 ALL_BREAKPOINTS_SAFE (b, tmp)
7560 if (b->number == num)
7562 struct breakpoint *related_breakpoint = b->related_breakpoint;
7565 if (related_breakpoint)
7566 function (related_breakpoint);
7570 printf_unfiltered (_("No breakpoint number %d.\n"), num);
7576 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7577 If from_tty is nonzero, it prints a message to that effect,
7578 which ends with a period (no newline). */
7581 disable_breakpoint (struct breakpoint *bpt)
7583 /* Never disable a watchpoint scope breakpoint; we want to
7584 hit them when we leave scope so we can delete both the
7585 watchpoint and its scope breakpoint at that time. */
7586 if (bpt->type == bp_watchpoint_scope)
7589 /* You can't disable permanent breakpoints. */
7590 if (bpt->enable_state == bp_permanent)
7593 bpt->enable_state = bp_disabled;
7595 check_duplicates (bpt);
7597 if (deprecated_modify_breakpoint_hook)
7598 deprecated_modify_breakpoint_hook (bpt);
7599 breakpoint_modify_event (bpt->number);
7603 disable_command (char *args, int from_tty)
7605 struct breakpoint *bpt;
7607 ALL_BREAKPOINTS (bpt)
7611 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
7616 case bp_catch_unload:
7618 case bp_catch_vfork:
7620 case bp_catch_catch:
7621 case bp_catch_throw:
7622 case bp_hardware_breakpoint:
7624 case bp_hardware_watchpoint:
7625 case bp_read_watchpoint:
7626 case bp_access_watchpoint:
7627 disable_breakpoint (bpt);
7632 map_breakpoint_numbers (args, disable_breakpoint);
7636 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7638 int target_resources_ok, other_type_used;
7641 if (bpt->type == bp_hardware_breakpoint)
7644 i = hw_breakpoint_used_count ();
7645 target_resources_ok =
7646 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7648 if (target_resources_ok == 0)
7649 error (_("No hardware breakpoint support in the target."));
7650 else if (target_resources_ok < 0)
7651 error (_("Hardware breakpoints used exceeds limit."));
7656 if (bpt->enable_state != bp_enabled)
7658 /* When enabling a pending breakpoint, we need to check if the breakpoint
7659 is resolvable since shared libraries could have been loaded
7660 after the breakpoint was disabled. */
7661 breakpoints_changed ();
7662 if (resolve_pending_breakpoint (bpt) == GDB_RC_OK)
7664 delete_breakpoint (bpt);
7667 bpt->enable_state = bp_enabled;
7668 bpt->disposition = disposition;
7671 else /* Not a pending breakpoint. */
7673 if (bpt->enable_state != bp_permanent)
7674 bpt->enable_state = bp_enabled;
7675 bpt->disposition = disposition;
7676 check_duplicates (bpt);
7677 breakpoints_changed ();
7679 if (bpt->type == bp_watchpoint ||
7680 bpt->type == bp_hardware_watchpoint ||
7681 bpt->type == bp_read_watchpoint ||
7682 bpt->type == bp_access_watchpoint)
7684 struct frame_id saved_frame_id;
7686 saved_frame_id = get_frame_id (get_selected_frame (NULL));
7687 if (bpt->exp_valid_block != NULL)
7689 struct frame_info *fr =
7690 fr = frame_find_by_id (bpt->watchpoint_frame);
7693 printf_filtered (_("\
7694 Cannot enable watchpoint %d because the block in which its expression\n\
7695 is valid is not currently in scope.\n"), bpt->number);
7696 bpt->enable_state = bp_disabled;
7702 value_free (bpt->val);
7703 mark = value_mark ();
7704 bpt->val = evaluate_expression (bpt->exp);
7705 release_value (bpt->val);
7706 if (value_lazy (bpt->val))
7707 value_fetch_lazy (bpt->val);
7709 if (bpt->type == bp_hardware_watchpoint ||
7710 bpt->type == bp_read_watchpoint ||
7711 bpt->type == bp_access_watchpoint)
7713 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7714 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7716 /* Hack around 'unused var' error for some targets here */
7717 (void) mem_cnt, (void) i;
7718 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7719 bpt->type, i + mem_cnt, other_type_used);
7720 /* we can consider of type is bp_hardware_watchpoint, convert to
7721 bp_watchpoint in the following condition */
7722 if (target_resources_ok < 0)
7724 printf_filtered (_("\
7725 Cannot enable watchpoint %d because target watch resources\n\
7726 have been allocated for other watchpoints.\n"), bpt->number);
7727 bpt->enable_state = bp_disabled;
7728 value_free_to_mark (mark);
7733 select_frame (frame_find_by_id (saved_frame_id));
7734 value_free_to_mark (mark);
7738 if (deprecated_modify_breakpoint_hook)
7739 deprecated_modify_breakpoint_hook (bpt);
7740 breakpoint_modify_event (bpt->number);
7744 enable_breakpoint (struct breakpoint *bpt)
7746 do_enable_breakpoint (bpt, bpt->disposition);
7749 /* The enable command enables the specified breakpoints (or all defined
7750 breakpoints) so they once again become (or continue to be) effective
7751 in stopping the inferior. */
7754 enable_command (char *args, int from_tty)
7756 struct breakpoint *bpt;
7758 ALL_BREAKPOINTS (bpt)
7762 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
7767 case bp_catch_unload:
7769 case bp_catch_vfork:
7771 case bp_catch_catch:
7772 case bp_catch_throw:
7773 case bp_hardware_breakpoint:
7775 case bp_hardware_watchpoint:
7776 case bp_read_watchpoint:
7777 case bp_access_watchpoint:
7778 enable_breakpoint (bpt);
7783 map_breakpoint_numbers (args, enable_breakpoint);
7787 enable_once_breakpoint (struct breakpoint *bpt)
7789 do_enable_breakpoint (bpt, disp_disable);
7793 enable_once_command (char *args, int from_tty)
7795 map_breakpoint_numbers (args, enable_once_breakpoint);
7799 enable_delete_breakpoint (struct breakpoint *bpt)
7801 do_enable_breakpoint (bpt, disp_del);
7805 enable_delete_command (char *args, int from_tty)
7807 map_breakpoint_numbers (args, enable_delete_breakpoint);
7811 set_breakpoint_cmd (char *args, int from_tty)
7816 show_breakpoint_cmd (char *args, int from_tty)
7820 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7822 struct symtabs_and_lines
7823 decode_line_spec_1 (char *string, int funfirstline)
7825 struct symtabs_and_lines sals;
7827 error (_("Empty line specification."));
7828 if (default_breakpoint_valid)
7829 sals = decode_line_1 (&string, funfirstline,
7830 default_breakpoint_symtab,
7831 default_breakpoint_line,
7832 (char ***) NULL, NULL);
7834 sals = decode_line_1 (&string, funfirstline,
7835 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
7837 error (_("Junk at end of line specification: %s"), string);
7841 /* Create and insert a raw software breakpoint at PC. Return an
7842 identifier, which should be used to remove the breakpoint later.
7843 In general, places which call this should be using something on the
7844 breakpoint chain instead; this function should be eliminated
7848 deprecated_insert_raw_breakpoint (CORE_ADDR pc)
7850 struct bp_target_info *bp_tgt;
7852 bp_tgt = xmalloc (sizeof (struct bp_target_info));
7853 memset (bp_tgt, 0, sizeof (struct bp_target_info));
7855 bp_tgt->placed_address = pc;
7856 if (target_insert_breakpoint (bp_tgt) != 0)
7858 /* Could not insert the breakpoint. */
7866 /* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint. */
7869 deprecated_remove_raw_breakpoint (void *bp)
7871 struct bp_target_info *bp_tgt = bp;
7874 ret = target_remove_breakpoint (bp_tgt);
7880 /* One (or perhaps two) breakpoints used for software single stepping. */
7882 static void *single_step_breakpoints[2];
7884 /* Create and insert a breakpoint for software single step. */
7887 insert_single_step_breakpoint (CORE_ADDR next_pc)
7891 if (single_step_breakpoints[0] == NULL)
7892 bpt_p = &single_step_breakpoints[0];
7895 gdb_assert (single_step_breakpoints[1] == NULL);
7896 bpt_p = &single_step_breakpoints[1];
7899 /* NOTE drow/2006-04-11: A future improvement to this function would be
7900 to only create the breakpoints once, and actually put them on the
7901 breakpoint chain. That would let us use set_raw_breakpoint. We could
7902 adjust the addresses each time they were needed. Doing this requires
7903 corresponding changes elsewhere where single step breakpoints are
7904 handled, however. So, for now, we use this. */
7906 *bpt_p = deprecated_insert_raw_breakpoint (next_pc);
7908 error (_("Could not insert single-step breakpoint at 0x%s"),
7909 paddr_nz (next_pc));
7912 /* Remove and delete any breakpoints used for software single step. */
7915 remove_single_step_breakpoints (void)
7917 gdb_assert (single_step_breakpoints[0] != NULL);
7919 /* See insert_single_step_breakpoint for more about this deprecated
7921 deprecated_remove_raw_breakpoint (single_step_breakpoints[0]);
7922 single_step_breakpoints[0] = NULL;
7924 if (single_step_breakpoints[1] != NULL)
7926 deprecated_remove_raw_breakpoint (single_step_breakpoints[1]);
7927 single_step_breakpoints[1] = NULL;
7931 /* Check whether a software single-step breakpoint is inserted at PC. */
7934 single_step_breakpoint_inserted_here_p (CORE_ADDR pc)
7938 for (i = 0; i < 2; i++)
7940 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
7941 if (bp_tgt && bp_tgt->placed_address == pc)
7949 /* This help string is used for the break, hbreak, tbreak and thbreak commands.
7950 It is defined as a macro to prevent duplication.
7951 COMMAND should be a string constant containing the name of the command. */
7952 #define BREAK_ARGS_HELP(command) \
7953 command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
7954 LOCATION may be a line number, function name, or \"*\" and an address.\n\
7955 If a line number is specified, break at start of code for that line.\n\
7956 If a function is specified, break at start of code for that function.\n\
7957 If an address is specified, break at that exact address.\n\
7958 With no LOCATION, uses current execution address of selected stack frame.\n\
7959 This is useful for breaking on return to a stack frame.\n\
7961 THREADNUM is the number from \"info threads\".\n\
7962 CONDITION is a boolean expression.\n\
7964 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7966 Do \"help breakpoints\" for info on other commands dealing with breakpoints."
7969 _initialize_breakpoint (void)
7971 static struct cmd_list_element *breakpoint_set_cmdlist;
7972 static struct cmd_list_element *breakpoint_show_cmdlist;
7973 struct cmd_list_element *c;
7975 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
7977 breakpoint_chain = 0;
7978 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7979 before a breakpoint is set. */
7980 breakpoint_count = 0;
7982 add_com ("ignore", class_breakpoint, ignore_command, _("\
7983 Set ignore-count of breakpoint number N to COUNT.\n\
7984 Usage is `ignore N COUNT'."));
7986 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7988 add_com ("commands", class_breakpoint, commands_command, _("\
7989 Set commands to be executed when a breakpoint is hit.\n\
7990 Give breakpoint number as argument after \"commands\".\n\
7991 With no argument, the targeted breakpoint is the last one set.\n\
7992 The commands themselves follow starting on the next line.\n\
7993 Type a line containing \"end\" to indicate the end of them.\n\
7994 Give \"silent\" as the first line to make the breakpoint silent;\n\
7995 then no output is printed when it is hit, except what the commands print."));
7997 add_com ("condition", class_breakpoint, condition_command, _("\
7998 Specify breakpoint number N to break only if COND is true.\n\
7999 Usage is `condition N COND', where N is an integer and COND is an\n\
8000 expression to be evaluated whenever breakpoint N is reached."));
8002 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
8003 Set a temporary breakpoint.\n\
8004 Like \"break\" except the breakpoint is only temporary,\n\
8005 so it will be deleted when hit. Equivalent to \"break\" followed\n\
8006 by using \"enable delete\" on the breakpoint number.\n\
8008 BREAK_ARGS_HELP ("tbreak")));
8009 set_cmd_completer (c, location_completer);
8011 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
8012 Set a hardware assisted breakpoint.\n\
8013 Like \"break\" except the breakpoint requires hardware support,\n\
8014 some target hardware may not have this support.\n\
8016 BREAK_ARGS_HELP ("hbreak")));
8017 set_cmd_completer (c, location_completer);
8019 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
8020 Set a temporary hardware assisted breakpoint.\n\
8021 Like \"hbreak\" except the breakpoint is only temporary,\n\
8022 so it will be deleted when hit.\n\
8024 BREAK_ARGS_HELP ("thbreak")));
8025 set_cmd_completer (c, location_completer);
8027 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
8028 Enable some breakpoints.\n\
8029 Give breakpoint numbers (separated by spaces) as arguments.\n\
8030 With no subcommand, breakpoints are enabled until you command otherwise.\n\
8031 This is used to cancel the effect of the \"disable\" command.\n\
8032 With a subcommand you can enable temporarily."),
8033 &enablelist, "enable ", 1, &cmdlist);
8035 add_com ("ab", class_breakpoint, enable_command, _("\
8036 Enable some breakpoints.\n\
8037 Give breakpoint numbers (separated by spaces) as arguments.\n\
8038 With no subcommand, breakpoints are enabled until you command otherwise.\n\
8039 This is used to cancel the effect of the \"disable\" command.\n\
8040 With a subcommand you can enable temporarily."));
8042 add_com_alias ("en", "enable", class_breakpoint, 1);
8044 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
8045 Enable some breakpoints.\n\
8046 Give breakpoint numbers (separated by spaces) as arguments.\n\
8047 This is used to cancel the effect of the \"disable\" command.\n\
8048 May be abbreviated to simply \"enable\".\n"),
8049 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
8051 add_cmd ("once", no_class, enable_once_command, _("\
8052 Enable breakpoints for one hit. Give breakpoint numbers.\n\
8053 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
8056 add_cmd ("delete", no_class, enable_delete_command, _("\
8057 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
8058 If a breakpoint is hit while enabled in this fashion, it is deleted."),
8061 add_cmd ("delete", no_class, enable_delete_command, _("\
8062 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
8063 If a breakpoint is hit while enabled in this fashion, it is deleted."),
8066 add_cmd ("once", no_class, enable_once_command, _("\
8067 Enable breakpoints for one hit. Give breakpoint numbers.\n\
8068 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
8071 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
8072 Disable some breakpoints.\n\
8073 Arguments are breakpoint numbers with spaces in between.\n\
8074 To disable all breakpoints, give no argument.\n\
8075 A disabled breakpoint is not forgotten, but has no effect until reenabled."),
8076 &disablelist, "disable ", 1, &cmdlist);
8077 add_com_alias ("dis", "disable", class_breakpoint, 1);
8078 add_com_alias ("disa", "disable", class_breakpoint, 1);
8080 add_com ("sb", class_breakpoint, disable_command, _("\
8081 Disable some breakpoints.\n\
8082 Arguments are breakpoint numbers with spaces in between.\n\
8083 To disable all breakpoints, give no argument.\n\
8084 A disabled breakpoint is not forgotten, but has no effect until reenabled."));
8086 add_cmd ("breakpoints", class_alias, disable_command, _("\
8087 Disable some breakpoints.\n\
8088 Arguments are breakpoint numbers with spaces in between.\n\
8089 To disable all breakpoints, give no argument.\n\
8090 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
8091 This command may be abbreviated \"disable\"."),
8094 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
8095 Delete some breakpoints or auto-display expressions.\n\
8096 Arguments are breakpoint numbers with spaces in between.\n\
8097 To delete all breakpoints, give no argument.\n\
8099 Also a prefix command for deletion of other GDB objects.\n\
8100 The \"unset\" command is also an alias for \"delete\"."),
8101 &deletelist, "delete ", 1, &cmdlist);
8102 add_com_alias ("d", "delete", class_breakpoint, 1);
8103 add_com_alias ("del", "delete", class_breakpoint, 1);
8105 add_com ("db", class_breakpoint, delete_command, _("\
8106 Delete some breakpoints.\n\
8107 Arguments are breakpoint numbers with spaces in between.\n\
8108 To delete all breakpoints, give no argument.\n"));
8110 add_cmd ("breakpoints", class_alias, delete_command, _("\
8111 Delete some breakpoints or auto-display expressions.\n\
8112 Arguments are breakpoint numbers with spaces in between.\n\
8113 To delete all breakpoints, give no argument.\n\
8114 This command may be abbreviated \"delete\"."),
8117 add_com ("clear", class_breakpoint, clear_command, _("\
8118 Clear breakpoint at specified line or function.\n\
8119 Argument may be line number, function name, or \"*\" and an address.\n\
8120 If line number is specified, all breakpoints in that line are cleared.\n\
8121 If function is specified, breakpoints at beginning of function are cleared.\n\
8122 If an address is specified, breakpoints at that address are cleared.\n\
8124 With no argument, clears all breakpoints in the line that the selected frame\n\
8127 See also the \"delete\" command which clears breakpoints by number."));
8129 c = add_com ("break", class_breakpoint, break_command, _("\
8130 Set breakpoint at specified line or function.\n"
8131 BREAK_ARGS_HELP ("break")));
8132 set_cmd_completer (c, location_completer);
8134 add_com_alias ("b", "break", class_run, 1);
8135 add_com_alias ("br", "break", class_run, 1);
8136 add_com_alias ("bre", "break", class_run, 1);
8137 add_com_alias ("brea", "break", class_run, 1);
8141 add_com_alias ("ba", "break", class_breakpoint, 1);
8142 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
8147 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
8148 Break in function/address or break at a line in the current file."),
8149 &stoplist, "stop ", 1, &cmdlist);
8150 add_cmd ("in", class_breakpoint, stopin_command,
8151 _("Break in function or address."), &stoplist);
8152 add_cmd ("at", class_breakpoint, stopat_command,
8153 _("Break at a line in the current file."), &stoplist);
8154 add_com ("status", class_info, breakpoints_info, _("\
8155 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
8156 The \"Type\" column indicates one of:\n\
8157 \tbreakpoint - normal breakpoint\n\
8158 \twatchpoint - watchpoint\n\
8159 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8160 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8161 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
8162 address and file/line number respectively.\n\
8164 Convenience variable \"$_\" and default examine address for \"x\"\n\
8165 are set to the address of the last breakpoint listed unless the command\n\
8166 is prefixed with \"server \".\n\n\
8167 Convenience variable \"$bpnum\" contains the number of the last\n\
8171 add_info ("breakpoints", breakpoints_info, _("\
8172 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
8173 The \"Type\" column indicates one of:\n\
8174 \tbreakpoint - normal breakpoint\n\
8175 \twatchpoint - watchpoint\n\
8176 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8177 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8178 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
8179 address and file/line number respectively.\n\
8181 Convenience variable \"$_\" and default examine address for \"x\"\n\
8182 are set to the address of the last breakpoint listed unless the command\n\
8183 is prefixed with \"server \".\n\n\
8184 Convenience variable \"$bpnum\" contains the number of the last\n\
8188 add_com ("lb", class_breakpoint, breakpoints_info, _("\
8189 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
8190 The \"Type\" column indicates one of:\n\
8191 \tbreakpoint - normal breakpoint\n\
8192 \twatchpoint - watchpoint\n\
8193 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8194 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8195 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
8196 address and file/line number respectively.\n\
8198 Convenience variable \"$_\" and default examine address for \"x\"\n\
8199 are set to the address of the last breakpoint listed unless the command\n\
8200 is prefixed with \"server \".\n\n\
8201 Convenience variable \"$bpnum\" contains the number of the last\n\
8204 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
8205 Status of all breakpoints, or breakpoint number NUMBER.\n\
8206 The \"Type\" column indicates one of:\n\
8207 \tbreakpoint - normal breakpoint\n\
8208 \twatchpoint - watchpoint\n\
8209 \tlongjmp - internal breakpoint used to step through longjmp()\n\
8210 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
8211 \tuntil - internal breakpoint used by the \"until\" command\n\
8212 \tfinish - internal breakpoint used by the \"finish\" command\n\
8213 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8214 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8215 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
8216 address and file/line number respectively.\n\
8218 Convenience variable \"$_\" and default examine address for \"x\"\n\
8219 are set to the address of the last breakpoint listed unless the command\n\
8220 is prefixed with \"server \".\n\n\
8221 Convenience variable \"$bpnum\" contains the number of the last\n\
8223 &maintenanceinfolist);
8225 add_com ("catch", class_breakpoint, catch_command, _("\
8226 Set catchpoints to catch events.\n\
8227 Raised signals may be caught:\n\
8228 \tcatch signal - all signals\n\
8229 \tcatch signal <signame> - a particular signal\n\
8230 Raised exceptions may be caught:\n\
8231 \tcatch throw - all exceptions, when thrown\n\
8232 \tcatch throw <exceptname> - a particular exception, when thrown\n\
8233 \tcatch catch - all exceptions, when caught\n\
8234 \tcatch catch <exceptname> - a particular exception, when caught\n\
8235 Thread or process events may be caught:\n\
8236 \tcatch thread_start - any threads, just after creation\n\
8237 \tcatch thread_exit - any threads, just before expiration\n\
8238 \tcatch thread_join - any threads, just after joins\n\
8239 Process events may be caught:\n\
8240 \tcatch start - any processes, just after creation\n\
8241 \tcatch exit - any processes, just before expiration\n\
8242 \tcatch fork - calls to fork()\n\
8243 \tcatch vfork - calls to vfork()\n\
8244 \tcatch exec - calls to exec()\n\
8245 Dynamically-linked library events may be caught:\n\
8246 \tcatch load - loads of any library\n\
8247 \tcatch load <libname> - loads of a particular library\n\
8248 \tcatch unload - unloads of any library\n\
8249 \tcatch unload <libname> - unloads of a particular library\n\
8250 The act of your program's execution stopping may also be caught:\n\
8252 C++ exceptions may be caught:\n\
8253 \tcatch throw - all exceptions, when thrown\n\
8254 \tcatch catch - all exceptions, when caught\n\
8255 Ada exceptions may be caught:\n\
8256 \tcatch exception - all exceptions, when raised\n\
8257 \tcatch exception <name> - a particular exception, when raised\n\
8258 \tcatch exception unhandled - all unhandled exceptions, when raised\n\
8259 \tcatch assert - all failed assertions, when raised\n\
8261 Do \"help set follow-fork-mode\" for info on debugging your program\n\
8262 after a fork or vfork is caught.\n\n\
8263 Do \"help breakpoints\" for info on other commands dealing with breakpoints."));
8265 add_com ("tcatch", class_breakpoint, tcatch_command, _("\
8266 Set temporary catchpoints to catch events.\n\
8267 Args like \"catch\" command.\n\
8268 Like \"catch\" except the catchpoint is only temporary,\n\
8269 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
8270 by using \"enable delete\" on the catchpoint number."));
8272 c = add_com ("watch", class_breakpoint, watch_command, _("\
8273 Set a watchpoint for an expression.\n\
8274 A watchpoint stops execution of your program whenever the value of\n\
8275 an expression changes."));
8276 set_cmd_completer (c, location_completer);
8278 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
8279 Set a read watchpoint for an expression.\n\
8280 A watchpoint stops execution of your program whenever the value of\n\
8281 an expression is read."));
8282 set_cmd_completer (c, location_completer);
8284 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
8285 Set a watchpoint for an expression.\n\
8286 A watchpoint stops execution of your program whenever the value of\n\
8287 an expression is either read or written."));
8288 set_cmd_completer (c, location_completer);
8290 add_info ("watchpoints", breakpoints_info,
8291 _("Synonym for ``info breakpoints''."));
8294 /* XXX: cagney/2005-02-23: This should be a boolean, and should
8295 respond to changes - contrary to the description. */
8296 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
8297 &can_use_hw_watchpoints, _("\
8298 Set debugger's willingness to use watchpoint hardware."), _("\
8299 Show debugger's willingness to use watchpoint hardware."), _("\
8300 If zero, gdb will not use hardware for new watchpoints, even if\n\
8301 such is available. (However, any hardware watchpoints that were\n\
8302 created before setting this to nonzero, will continue to use watchpoint\n\
8305 show_can_use_hw_watchpoints,
8306 &setlist, &showlist);
8308 can_use_hw_watchpoints = 1;
8310 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
8311 Breakpoint specific settings\n\
8312 Configure various breakpoint-specific variables such as\n\
8313 pending breakpoint behavior"),
8314 &breakpoint_set_cmdlist, "set breakpoint ",
8315 0/*allow-unknown*/, &setlist);
8316 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
8317 Breakpoint specific settings\n\
8318 Configure various breakpoint-specific variables such as\n\
8319 pending breakpoint behavior"),
8320 &breakpoint_show_cmdlist, "show breakpoint ",
8321 0/*allow-unknown*/, &showlist);
8323 add_setshow_auto_boolean_cmd ("pending", no_class,
8324 &pending_break_support, _("\
8325 Set debugger's behavior regarding pending breakpoints."), _("\
8326 Show debugger's behavior regarding pending breakpoints."), _("\
8327 If on, an unrecognized breakpoint location will cause gdb to create a\n\
8328 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
8329 an error. If auto, an unrecognized breakpoint location results in a\n\
8330 user-query to see if a pending breakpoint should be created."),
8332 show_pending_break_support,
8333 &breakpoint_set_cmdlist,
8334 &breakpoint_show_cmdlist);
8336 pending_break_support = AUTO_BOOLEAN_AUTO;
8338 add_setshow_boolean_cmd ("auto-hw", no_class,
8339 &automatic_hardware_breakpoints, _("\
8340 Set automatic usage of hardware breakpoints."), _("\
8341 Show automatic usage of hardware breakpoints."), _("\
8342 If set, the debugger will automatically use hardware breakpoints for\n\
8343 breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
8344 a warning will be emitted for such breakpoints."),
8346 show_automatic_hardware_breakpoints,
8347 &breakpoint_set_cmdlist,
8348 &breakpoint_show_cmdlist);
8350 automatic_hardware_breakpoints = 1;