1 /* Everything about breakpoints, for GDB.
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
28 #include "breakpoint.h"
30 #include "expression.h"
36 #include "gdbthread.h"
39 #include "gdb_string.h"
46 #include "completer.h"
49 #include "cli/cli-script.h"
50 #include "gdb_assert.h"
53 #include "gdb-events.h"
55 /* Prototypes for local functions. */
57 static void until_break_command_continuation (struct continuation_arg *arg);
59 static void catch_command_1 (char *, int, int);
61 static void enable_delete_command (char *, int);
63 static void enable_delete_breakpoint (struct breakpoint *);
65 static void enable_once_command (char *, int);
67 static void enable_once_breakpoint (struct breakpoint *);
69 static void disable_command (char *, int);
71 static void enable_command (char *, int);
73 static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
75 static void ignore_command (char *, int);
77 static int breakpoint_re_set_one (void *);
79 static void clear_command (char *, int);
81 static void catch_command (char *, int);
83 static void watch_command (char *, int);
85 static int can_use_hardware_watchpoint (struct value *);
87 extern void break_at_finish_command (char *, int);
88 extern void break_at_finish_at_depth_command (char *, int);
90 extern void tbreak_at_finish_command (char *, int);
92 static int break_command_1 (char *, int, int, struct breakpoint *);
94 static void mention (struct breakpoint *);
96 struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
98 static void check_duplicates (struct breakpoint *);
100 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
102 static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
105 static void describe_other_breakpoints (CORE_ADDR, asection *);
107 static void breakpoints_info (char *, int);
109 static void breakpoint_1 (int, int);
111 static bpstat bpstat_alloc (struct breakpoint *, bpstat);
113 static int breakpoint_cond_eval (void *);
115 static void cleanup_executing_breakpoints (void *);
117 static void commands_command (char *, int);
119 static void condition_command (char *, int);
121 static int get_number_trailer (char **, int);
123 static int do_captured_parse_breakpoint (struct ui_out *, void *);
125 void set_breakpoint_count (int);
134 static int remove_breakpoint (struct bp_location *, insertion_state_t);
136 static enum print_stop_action print_it_typical (bpstat);
138 static enum print_stop_action print_bp_stop_message (bpstat bs);
142 enum exception_event_kind kind;
145 args_for_catchpoint_enable;
147 static int watchpoint_check (void *);
149 static int cover_target_enable_exception_callback (void *);
151 static void maintenance_info_breakpoints (char *, int);
153 static void create_longjmp_breakpoint (char *);
155 static void create_overlay_event_breakpoint (char *);
157 static int hw_breakpoint_used_count (void);
159 static int hw_watchpoint_used_count (enum bptype, int *);
161 static void hbreak_command (char *, int);
163 static void thbreak_command (char *, int);
165 static void watch_command_1 (char *, int, int);
167 static void rwatch_command (char *, int);
169 static void awatch_command (char *, int);
171 static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
173 static void solib_load_unload_1 (char *hookname,
176 char *cond_string, enum bptype bp_kind);
178 static void create_fork_vfork_event_catchpoint (int tempflag,
180 enum bptype bp_kind);
182 static void break_at_finish_at_depth_command_1 (char *arg,
183 int flag, int from_tty);
185 static void break_at_finish_command_1 (char *arg, int flag, int from_tty);
187 static void stop_command (char *arg, int from_tty);
189 static void stopin_command (char *arg, int from_tty);
191 static void stopat_command (char *arg, int from_tty);
193 static char *ep_find_event_name_end (char *arg);
195 static char *ep_parse_optional_if_clause (char **arg);
197 static char *ep_parse_optional_filename (char **arg);
199 static void create_exception_catchpoint (int tempflag, char *cond_string,
200 enum exception_event_kind ex_event,
201 struct symtab_and_line *sal);
203 static void catch_exception_command_1 (enum exception_event_kind ex_event,
204 char *arg, int tempflag, int from_tty);
206 static void tcatch_command (char *arg, int from_tty);
208 static void ep_skip_leading_whitespace (char **s);
210 /* Prototypes for exported functions. */
212 /* If FALSE, gdb will not use hardware support for watchpoints, even
213 if such is available. */
214 static int can_use_hw_watchpoints;
216 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
217 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
218 for unrecognized breakpoint locations.
219 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
220 static enum auto_boolean pending_break_support;
222 void _initialize_breakpoint (void);
224 extern int addressprint; /* Print machine addresses? */
226 /* Are we executing breakpoint commands? */
227 static int executing_breakpoint_commands;
229 /* Are overlay event breakpoints enabled? */
230 static int overlay_events_enabled;
232 /* Walk the following statement or block through all breakpoints.
233 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
236 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
238 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
239 for (B = breakpoint_chain; \
240 B ? (TMP=B->next, 1): 0; \
243 /* Similar iterators for the low-level breakpoints. */
245 #define ALL_BP_LOCATIONS(B) for (B = bp_location_chain; B; B = B->next)
247 #define ALL_BP_LOCATIONS_SAFE(B,TMP) \
248 for (B = bp_location_chain; \
249 B ? (TMP=B->next, 1): 0; \
252 /* True if breakpoint hit counts should be displayed in breakpoint info. */
254 int show_breakpoint_hit_counts = 1;
256 /* Chains of all breakpoints defined. */
258 struct breakpoint *breakpoint_chain;
260 struct bp_location *bp_location_chain;
262 /* Number of last breakpoint made. */
264 int breakpoint_count;
266 /* Pointer to current exception event record */
267 static struct exception_event_record *current_exception_event;
269 /* Indicator of whether exception catchpoints should be nuked between
270 runs of a program. */
271 int deprecated_exception_catchpoints_are_fragile = 0;
273 /* Indicator of when exception catchpoints set-up should be
274 reinitialized -- e.g. when program is re-run. */
275 int deprecated_exception_support_initialized = 0;
277 /* This function returns a pointer to the string representation of the
278 pathname of the dynamically-linked library that has just been
281 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
282 or undefined results are guaranteed.
284 This string's contents are only valid immediately after the
285 inferior has stopped in the dynamic linker hook, and becomes
286 invalid as soon as the inferior is continued. Clients should make
287 a copy of this string if they wish to continue the inferior and
288 then access the string. */
290 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
291 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
294 /* This function returns a pointer to the string representation of the
295 pathname of the dynamically-linked library that has just been
298 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
299 TRUE, or undefined results are guaranteed.
301 This string's contents are only valid immediately after the
302 inferior has stopped in the dynamic linker hook, and becomes
303 invalid as soon as the inferior is continued. Clients should make
304 a copy of this string if they wish to continue the inferior and
305 then access the string. */
307 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
308 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
311 /* This function is called by the "catch load" command. It allows the
312 debugger to be notified by the dynamic linker when a specified
313 library file (or any library file, if filename is NULL) is loaded. */
315 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
316 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
317 error ("catch of library loads not yet implemented on this platform")
320 /* This function is called by the "catch unload" command. It allows
321 the debugger to be notified by the dynamic linker when a specified
322 library file (or any library file, if filename is NULL) is
325 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
326 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
327 error ("catch of library unloads not yet implemented on this platform")
330 /* Return whether a breakpoint is an active enabled breakpoint. */
332 breakpoint_enabled (struct breakpoint *b)
334 return (b->enable_state == bp_enabled && !b->pending);
337 /* Set breakpoint count to NUM. */
340 set_breakpoint_count (int num)
342 breakpoint_count = num;
343 set_internalvar (lookup_internalvar ("bpnum"),
344 value_from_longest (builtin_type_int, (LONGEST) num));
347 /* Used in run_command to zero the hit count when a new run starts. */
350 clear_breakpoint_hit_counts (void)
352 struct breakpoint *b;
358 /* Default address, symtab and line to put a breakpoint at
359 for "break" command with no arg.
360 if default_breakpoint_valid is zero, the other three are
361 not valid, and "break" with no arg is an error.
363 This set by print_stack_frame, which calls set_default_breakpoint. */
365 int default_breakpoint_valid;
366 CORE_ADDR default_breakpoint_address;
367 struct symtab *default_breakpoint_symtab;
368 int default_breakpoint_line;
370 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
371 Advance *PP after the string and any trailing whitespace.
373 Currently the string can either be a number or "$" followed by the name
374 of a convenience variable. Making it an expression wouldn't work well
375 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
377 TRAILER is a character which can be found after the number; most
378 commonly this is `-'. If you don't want a trailer, use \0. */
380 get_number_trailer (char **pp, int trailer)
382 int retval = 0; /* default */
386 /* Empty line means refer to the last breakpoint. */
387 return breakpoint_count;
390 /* Make a copy of the name, so we can null-terminate it
391 to pass to lookup_internalvar(). */
396 while (isalnum (*p) || *p == '_')
398 varname = (char *) alloca (p - start + 1);
399 strncpy (varname, start, p - start);
400 varname[p - start] = '\0';
401 val = value_of_internalvar (lookup_internalvar (varname));
402 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_INT)
403 retval = (int) value_as_long (val);
406 printf_filtered ("Convenience variable must have integer value.\n");
414 while (*p >= '0' && *p <= '9')
417 /* There is no number here. (e.g. "cond a == b"). */
419 /* Skip non-numeric token */
420 while (*p && !isspace((int) *p))
422 /* Return zero, which caller must interpret as error. */
428 if (!(isspace (*p) || *p == '\0' || *p == trailer))
430 /* Trailing junk: return 0 and let caller print error msg. */
431 while (!(isspace (*p) || *p == '\0' || *p == trailer))
442 /* Like get_number_trailer, but don't allow a trailer. */
444 get_number (char **pp)
446 return get_number_trailer (pp, '\0');
449 /* Parse a number or a range.
450 * A number will be of the form handled by get_number.
451 * A range will be of the form <number1> - <number2>, and
452 * will represent all the integers between number1 and number2,
455 * While processing a range, this fuction is called iteratively;
456 * At each call it will return the next value in the range.
458 * At the beginning of parsing a range, the char pointer PP will
459 * be advanced past <number1> and left pointing at the '-' token.
460 * Subsequent calls will not advance the pointer until the range
461 * is completed. The call that completes the range will advance
462 * pointer PP past <number2>.
466 get_number_or_range (char **pp)
468 static int last_retval, end_value;
469 static char *end_ptr;
470 static int in_range = 0;
474 /* Default case: pp is pointing either to a solo number,
475 or to the first number of a range. */
476 last_retval = get_number_trailer (pp, '-');
481 /* This is the start of a range (<number1> - <number2>).
482 Skip the '-', parse and remember the second number,
483 and also remember the end of the final token. */
487 while (isspace ((int) *end_ptr))
488 end_ptr++; /* skip white space */
489 end_value = get_number (temp);
490 if (end_value < last_retval)
492 error ("inverted range");
494 else if (end_value == last_retval)
496 /* degenerate range (number1 == number2). Advance the
497 token pointer so that the range will be treated as a
506 error ("negative value");
509 /* pp points to the '-' that betokens a range. All
510 number-parsing has already been done. Return the next
511 integer value (one greater than the saved previous value).
512 Do not advance the token pointer 'pp' until the end of range
515 if (++last_retval == end_value)
517 /* End of range reached; advance token pointer. */
527 /* condition N EXP -- set break condition of breakpoint N to EXP. */
530 condition_command (char *arg, int from_tty)
532 struct breakpoint *b;
537 error_no_arg ("breakpoint number");
540 bnum = get_number (&p);
542 error ("Bad breakpoint argument: '%s'", arg);
545 if (b->number == bnum)
552 if (b->cond_string != NULL)
553 xfree (b->cond_string);
558 b->cond_string = NULL;
560 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
565 /* I don't know if it matters whether this is the string the user
566 typed in or the decompiled expression. */
567 b->cond_string = savestring (arg, strlen (arg));
570 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
572 error ("Junk at end of expression");
575 breakpoints_changed ();
576 breakpoint_modify_event (b->number);
580 error ("No breakpoint number %d.", bnum);
584 commands_command (char *arg, int from_tty)
586 struct breakpoint *b;
589 struct command_line *l;
591 /* If we allowed this, we would have problems with when to
592 free the storage, if we change the commands currently
595 if (executing_breakpoint_commands)
596 error ("Can't use the \"commands\" command among a breakpoint's commands.");
599 bnum = get_number (&p);
602 error ("Unexpected extra arguments following breakpoint number.");
605 if (b->number == bnum)
607 char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
609 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
610 l = read_command_lines (tmpbuf, from_tty);
611 do_cleanups (cleanups);
612 free_command_lines (&b->commands);
614 breakpoints_changed ();
615 breakpoint_modify_event (b->number);
618 error ("No breakpoint number %d.", bnum);
621 /* Like target_read_memory() but if breakpoints are inserted, return
622 the shadow contents instead of the breakpoints themselves.
624 Read "memory data" from whatever target or inferior we have.
625 Returns zero if successful, errno value if not. EIO is used
626 for address out of bounds. If breakpoints are inserted, returns
627 shadow contents, not the breakpoints themselves. From breakpoint.c. */
630 read_memory_nobpt (CORE_ADDR memaddr, char *myaddr, unsigned len)
633 struct bp_location *b;
634 CORE_ADDR bp_addr = 0;
637 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
638 /* No breakpoints on this machine. */
639 return target_read_memory (memaddr, myaddr, len);
643 if (b->owner->type == bp_none)
644 warning ("reading through apparently deleted breakpoint #%d?",
647 if (b->loc_type != bp_loc_software_breakpoint)
651 /* Addresses and length of the part of the breakpoint that
653 /* XXXX The m68k, sh and h8300 have different local and remote
654 breakpoint values. BREAKPOINT_FROM_PC still manages to
655 correctly determine the breakpoints memory address and size
656 for these targets. */
657 bp_addr = b->address;
659 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
664 if (bp_addr + bp_size <= memaddr)
665 /* The breakpoint is entirely before the chunk of memory we
668 if (bp_addr >= memaddr + len)
669 /* The breakpoint is entirely after the chunk of memory we are
672 /* Copy the breakpoint from the shadow contents, and recurse for
673 the things before and after. */
675 /* Offset within shadow_contents. */
678 if (bp_addr < memaddr)
680 /* Only copy the second part of the breakpoint. */
681 bp_size -= memaddr - bp_addr;
682 bptoffset = memaddr - bp_addr;
686 if (bp_addr + bp_size > memaddr + len)
688 /* Only copy the first part of the breakpoint. */
689 bp_size -= (bp_addr + bp_size) - (memaddr + len);
692 memcpy (myaddr + bp_addr - memaddr,
693 b->shadow_contents + bptoffset, bp_size);
695 if (bp_addr > memaddr)
697 /* Copy the section of memory before the breakpoint. */
698 status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
703 if (bp_addr + bp_size < memaddr + len)
705 /* Copy the section of memory after the breakpoint. */
706 status = read_memory_nobpt (bp_addr + bp_size,
707 myaddr + bp_addr + bp_size - memaddr,
708 memaddr + len - (bp_addr + bp_size));
715 /* Nothing overlaps. Just call read_memory_noerr. */
716 return target_read_memory (memaddr, myaddr, len);
720 /* A wrapper function for inserting catchpoints. */
722 insert_catchpoint (struct ui_out *uo, void *args)
724 struct breakpoint *b = (struct breakpoint *) args;
730 val = target_insert_fork_catchpoint (PIDGET (inferior_ptid));
733 val = target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
736 val = target_insert_exec_catchpoint (PIDGET (inferior_ptid));
739 internal_error (__FILE__, __LINE__, "unknown breakpoint type");
744 throw_exception (RETURN_ERROR);
749 /* Helper routine: free the value chain for a breakpoint (watchpoint). */
751 static void free_valchain (struct bp_location *b)
756 /* Free the saved value chain. We will construct a new one
757 the next time the watchpoint is inserted. */
758 for (v = b->owner->val_chain; v; v = n)
763 b->owner->val_chain = NULL;
766 /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
767 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
768 PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
770 NOTE drow/2003-09-09: This routine could be broken down to an object-style
771 method for each breakpoint or catchpoint type. */
773 insert_bp_location (struct bp_location *bpt,
774 struct ui_file *tmp_error_stream,
775 int *disabled_breaks, int *process_warning,
776 int *hw_breakpoint_error)
780 /* Permanent breakpoints cannot be inserted or removed. Disabled
781 breakpoints should not be inserted. */
782 if (!breakpoint_enabled (bpt->owner))
785 if (bpt->inserted || bpt->duplicate)
788 if (bpt->loc_type == bp_loc_software_breakpoint
789 || bpt->loc_type == bp_loc_hardware_breakpoint)
791 /* First check to see if we have to handle an overlay. */
792 if (overlay_debugging == ovly_off
793 || bpt->section == NULL
794 || !(section_is_overlay (bpt->section)))
796 /* No overlay handling: just set the breakpoint. */
798 if (bpt->loc_type == bp_loc_hardware_breakpoint)
799 val = target_insert_hw_breakpoint (bpt->address,
800 bpt->shadow_contents);
802 val = target_insert_breakpoint (bpt->address,
803 bpt->shadow_contents);
807 /* This breakpoint is in an overlay section.
808 Shall we set a breakpoint at the LMA? */
809 if (!overlay_events_enabled)
811 /* Yes -- overlay event support is not active,
812 so we must try to set a breakpoint at the LMA.
813 This will not work for a hardware breakpoint. */
814 if (bpt->loc_type == bp_loc_hardware_breakpoint)
815 warning ("hardware breakpoint %d not supported in overlay!\n",
819 CORE_ADDR addr = overlay_unmapped_address (bpt->address,
821 /* Set a software (trap) breakpoint at the LMA. */
822 val = target_insert_breakpoint (addr, bpt->shadow_contents);
824 fprintf_unfiltered (tmp_error_stream,
825 "Overlay breakpoint %d failed: in ROM?",
829 /* Shall we set a breakpoint at the VMA? */
830 if (section_is_mapped (bpt->section))
832 /* Yes. This overlay section is mapped into memory. */
833 if (bpt->loc_type == bp_loc_hardware_breakpoint)
834 val = target_insert_hw_breakpoint (bpt->address,
835 bpt->shadow_contents);
837 val = target_insert_breakpoint (bpt->address,
838 bpt->shadow_contents);
842 /* No. This breakpoint will not be inserted.
843 No error, but do not mark the bp as 'inserted'. */
850 /* Can't set the breakpoint. */
851 #if defined (DISABLE_UNSETTABLE_BREAK)
852 if (DISABLE_UNSETTABLE_BREAK (bpt->address))
854 /* See also: disable_breakpoints_in_shlibs. */
856 bpt->owner->enable_state = bp_shlib_disabled;
857 if (!*disabled_breaks)
859 fprintf_unfiltered (tmp_error_stream,
860 "Cannot insert breakpoint %d.\n",
862 fprintf_unfiltered (tmp_error_stream,
863 "Temporarily disabling shared library breakpoints:\n");
865 *disabled_breaks = 1;
866 fprintf_unfiltered (tmp_error_stream,
867 "breakpoint #%d\n", bpt->owner->number);
872 #ifdef ONE_PROCESS_WRITETEXT
873 *process_warning = 1;
875 if (bpt->loc_type == bp_loc_hardware_breakpoint)
877 *hw_breakpoint_error = 1;
878 fprintf_unfiltered (tmp_error_stream,
879 "Cannot insert hardware breakpoint %d.\n",
884 fprintf_unfiltered (tmp_error_stream,
885 "Cannot insert breakpoint %d.\n",
887 fprintf_filtered (tmp_error_stream,
888 "Error accessing memory address ");
889 print_address_numeric (bpt->address, 1, tmp_error_stream);
890 fprintf_filtered (tmp_error_stream, ": %s.\n",
891 safe_strerror (val));
902 else if (bpt->loc_type == bp_loc_hardware_watchpoint
903 /* NOTE drow/2003-09-08: This state only exists for removing
904 watchpoints. It's not clear that it's necessary... */
905 && bpt->owner->disposition != disp_del_at_next_stop)
907 /* FIXME drow/2003-09-08: This code sets multiple hardware watchpoints
908 based on the expression. Ideally this should happen at a higher level,
909 and there should be one bp_location for each computed address we
910 must watch. As soon as a many-to-one mapping is available I'll
913 int within_current_scope;
914 struct value *mark = value_mark ();
916 struct frame_id saved_frame_id;
918 /* Save the current frame's ID so we can restore it after
919 evaluating the watchpoint expression on its own frame. */
920 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
921 took a frame parameter, so that we didn't have to change the
923 saved_frame_id = get_frame_id (deprecated_selected_frame);
925 /* Determine if the watchpoint is within scope. */
926 if (bpt->owner->exp_valid_block == NULL)
927 within_current_scope = 1;
930 struct frame_info *fi;
931 fi = frame_find_by_id (bpt->owner->watchpoint_frame);
932 within_current_scope = (fi != NULL);
933 if (within_current_scope)
937 if (within_current_scope)
941 /* Evaluate the expression and cut the chain of values
942 produced off from the value chain.
944 Make sure the value returned isn't lazy; we use
945 laziness to determine what memory GDB actually needed
946 in order to compute the value of the expression. */
947 v = evaluate_expression (bpt->owner->exp);
949 value_release_to_mark (mark);
951 bpt->owner->val_chain = v;
954 /* Look at each value on the value chain. */
955 for (; v; v = v->next)
957 /* If it's a memory location, and GDB actually needed
958 its contents to evaluate the expression, then we
960 if (VALUE_LVAL (v) == lval_memory
963 struct type *vtype = check_typedef (VALUE_TYPE (v));
965 /* We only watch structs and arrays if user asked
966 for it explicitly, never if they just happen to
967 appear in the middle of some value chain. */
968 if (v == bpt->owner->val_chain
969 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
970 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
975 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
976 len = TYPE_LENGTH (VALUE_TYPE (v));
978 if (bpt->owner->type == bp_read_watchpoint)
980 else if (bpt->owner->type == bp_access_watchpoint)
983 val = target_insert_watchpoint (addr, len, type);
986 /* Don't exit the loop, try to insert
987 every value on the value chain. That's
988 because we will be removing all the
989 watches below, and removing a
990 watchpoint we didn't insert could have
998 /* Failure to insert a watchpoint on any memory value in the
999 value chain brings us here. */
1002 remove_breakpoint (bpt, mark_uninserted);
1003 *hw_breakpoint_error = 1;
1004 fprintf_unfiltered (tmp_error_stream,
1005 "Could not insert hardware watchpoint %d.\n",
1006 bpt->owner->number);
1012 printf_filtered ("Hardware watchpoint %d deleted ", bpt->owner->number);
1013 printf_filtered ("because the program has left the block \n");
1014 printf_filtered ("in which its expression is valid.\n");
1015 if (bpt->owner->related_breakpoint)
1016 bpt->owner->related_breakpoint->disposition = disp_del_at_next_stop;
1017 bpt->owner->disposition = disp_del_at_next_stop;
1020 /* Restore the selected frame. */
1021 select_frame (frame_find_by_id (saved_frame_id));
1026 else if (ep_is_exception_catchpoint (bpt->owner))
1028 /* FIXME drow/2003-09-09: This code sets both a catchpoint and a
1029 breakpoint. Once again, it would be better if this was represented
1030 as two bp_locations. */
1032 /* If we get here, we must have a callback mechanism for exception
1033 events -- with g++ style embedded label support, we insert
1034 ordinary breakpoints and not catchpoints. */
1035 val = target_insert_breakpoint (bpt->address, bpt->shadow_contents);
1038 /* Couldn't set breakpoint for some reason */
1039 fprintf_unfiltered (tmp_error_stream,
1040 "Cannot insert catchpoint %d; disabling it.\n",
1041 bpt->owner->number);
1042 fprintf_filtered (tmp_error_stream,
1043 "Error accessing memory address ");
1044 print_address_numeric (bpt->address, 1, tmp_error_stream);
1045 fprintf_filtered (tmp_error_stream, ": %s.\n",
1046 safe_strerror (val));
1047 bpt->owner->enable_state = bp_disabled;
1051 /* Bp set, now make sure callbacks are enabled */
1052 /* Format possible error msg */
1053 char *message = xstrprintf ("Error inserting catchpoint %d:\n",
1054 bpt->owner->number);
1055 struct cleanup *cleanups = make_cleanup (xfree, message);
1057 args_for_catchpoint_enable args;
1058 args.kind = bpt->owner->type == bp_catch_catch ?
1059 EX_EVENT_CATCH : EX_EVENT_THROW;
1061 val = catch_errors (cover_target_enable_exception_callback,
1062 &args, message, RETURN_MASK_ALL);
1063 do_cleanups (cleanups);
1064 if (val != 0 && val != -1)
1067 /* Check if something went wrong; val == 0 can be ignored */
1070 /* something went wrong */
1071 fprintf_unfiltered (tmp_error_stream,
1072 "Cannot insert catchpoint %d; disabling it.\n",
1073 bpt->owner->number);
1074 bpt->owner->enable_state = bp_disabled;
1081 else if (bpt->owner->type == bp_catch_fork
1082 || bpt->owner->type == bp_catch_vfork
1083 || bpt->owner->type == bp_catch_exec)
1085 char *prefix = xstrprintf ("warning: inserting catchpoint %d: ",
1086 bpt->owner->number);
1087 struct cleanup *cleanups = make_cleanup (xfree, prefix);
1088 val = catch_exceptions (uiout, insert_catchpoint, bpt->owner, prefix,
1090 do_cleanups (cleanups);
1092 bpt->owner->enable_state = bp_disabled;
1096 /* We've already printed an error message if there was a problem
1097 inserting this catchpoint, and we've disabled the catchpoint,
1098 so just return success. */
1105 /* insert_breakpoints is used when starting or continuing the program.
1106 remove_breakpoints is used when the program stops.
1107 Both return zero if successful,
1108 or an `errno' value if could not write the inferior. */
1111 insert_breakpoints (void)
1113 struct bp_location *b, *temp;
1114 int return_val = 0; /* return success code. */
1116 int disabled_breaks = 0;
1117 int hw_breakpoint_error = 0;
1118 int process_warning = 0;
1120 struct ui_file *tmp_error_stream = mem_fileopen ();
1121 make_cleanup_ui_file_delete (tmp_error_stream);
1123 /* Explicitly mark the warning -- this will only be printed if
1124 there was an error. */
1125 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
1127 ALL_BP_LOCATIONS_SAFE (b, temp)
1129 /* Permanent breakpoints cannot be inserted or removed. Disabled
1130 breakpoints should not be inserted. */
1131 if (!breakpoint_enabled (b->owner))
1134 /* FIXME drow/2003-10-07: This code should be pushed elsewhere when
1135 hardware watchpoints are split into multiple loc breakpoints. */
1136 if ((b->loc_type == bp_loc_hardware_watchpoint
1137 || b->owner->type == bp_watchpoint) && !b->owner->val)
1140 val = evaluate_expression (b->owner->exp);
1141 release_value (val);
1142 if (VALUE_LAZY (val))
1143 value_fetch_lazy (val);
1144 b->owner->val = val;
1147 val = insert_bp_location (b, tmp_error_stream,
1148 &disabled_breaks, &process_warning,
1149 &hw_breakpoint_error);
1156 /* If a hardware breakpoint or watchpoint was inserted, add a
1157 message about possibly exhausted resources. */
1158 if (hw_breakpoint_error)
1160 fprintf_unfiltered (tmp_error_stream,
1161 "Could not insert hardware breakpoints:\n\
1162 You may have requested too many hardware breakpoints/watchpoints.\n");
1164 #ifdef ONE_PROCESS_WRITETEXT
1165 if (process_warning)
1166 fprintf_unfiltered (tmp_error_stream,
1167 "The same program may be running in another process.");
1169 target_terminal_ours_for_output ();
1170 error_stream (tmp_error_stream);
1176 remove_breakpoints (void)
1178 struct bp_location *b;
1181 ALL_BP_LOCATIONS (b)
1185 val = remove_breakpoint (b, mark_uninserted);
1194 remove_hw_watchpoints (void)
1196 struct bp_location *b;
1199 ALL_BP_LOCATIONS (b)
1201 if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
1203 val = remove_breakpoint (b, mark_uninserted);
1212 reattach_breakpoints (int pid)
1214 struct bp_location *b;
1216 struct cleanup *old_chain = save_inferior_ptid ();
1218 /* Set inferior_ptid; remove_breakpoint uses this global. */
1219 inferior_ptid = pid_to_ptid (pid);
1220 ALL_BP_LOCATIONS (b)
1224 remove_breakpoint (b, mark_inserted);
1225 if (b->loc_type == bp_loc_hardware_breakpoint)
1226 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
1228 val = target_insert_breakpoint (b->address, b->shadow_contents);
1229 /* FIXME drow/2003-10-07: This doesn't handle any other kinds of
1230 breakpoints. It's wrong for watchpoints, for example. */
1233 do_cleanups (old_chain);
1238 do_cleanups (old_chain);
1243 update_breakpoints_after_exec (void)
1245 struct breakpoint *b;
1246 struct breakpoint *temp;
1248 /* Doing this first prevents the badness of having delete_breakpoint()
1249 write a breakpoint's current "shadow contents" to lift the bp. That
1250 shadow is NOT valid after an exec()! */
1251 mark_breakpoints_out ();
1253 ALL_BREAKPOINTS_SAFE (b, temp)
1255 /* Solib breakpoints must be explicitly reset after an exec(). */
1256 if (b->type == bp_shlib_event)
1258 delete_breakpoint (b);
1262 /* Thread event breakpoints must be set anew after an exec(),
1263 as must overlay event breakpoints. */
1264 if (b->type == bp_thread_event || b->type == bp_overlay_event)
1266 delete_breakpoint (b);
1270 /* Step-resume breakpoints are meaningless after an exec(). */
1271 if (b->type == bp_step_resume)
1273 delete_breakpoint (b);
1277 /* Ditto the sigtramp handler breakpoints. */
1278 if (b->type == bp_through_sigtramp)
1280 delete_breakpoint (b);
1284 /* Ditto the exception-handling catchpoints. */
1285 if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
1287 delete_breakpoint (b);
1291 /* Don't delete an exec catchpoint, because else the inferior
1292 won't stop when it ought!
1294 Similarly, we probably ought to keep vfork catchpoints, 'cause
1295 on this target, we may not be able to stop when the vfork is
1296 seen, but only when the subsequent exec is seen. (And because
1297 deleting fork catchpoints here but not vfork catchpoints will
1298 seem mysterious to users, keep those too.)
1300 ??rehrauer: Let's hope that merely clearing out this catchpoint's
1301 target address field, if any, is sufficient to have it be reset
1302 automagically. Certainly on HP-UX that's true.
1304 Jim Blandy <jimb@redhat.com>: Actually, zero is a perfectly
1305 valid code address on some platforms (like the mn10300
1306 simulators). We shouldn't assign any special interpretation to
1307 a breakpoint with a zero address. And in fact, GDB doesn't ---
1308 I can't see what that comment above is talking about. As far
1309 as I can tell, setting the address of a
1310 bp_catch_exec/bp_catch_vfork/bp_catch_fork breakpoint to zero
1311 is meaningless, since those are implemented with HP-UX kernel
1312 hackery, not by storing breakpoint instructions somewhere. */
1313 if ((b->type == bp_catch_exec) ||
1314 (b->type == bp_catch_vfork) ||
1315 (b->type == bp_catch_fork))
1317 b->loc->address = (CORE_ADDR) NULL;
1321 /* bp_finish is a special case. The only way we ought to be able
1322 to see one of these when an exec() has happened, is if the user
1323 caught a vfork, and then said "finish". Ordinarily a finish just
1324 carries them to the call-site of the current callee, by setting
1325 a temporary bp there and resuming. But in this case, the finish
1326 will carry them entirely through the vfork & exec.
1328 We don't want to allow a bp_finish to remain inserted now. But
1329 we can't safely delete it, 'cause finish_command has a handle to
1330 the bp on a bpstat, and will later want to delete it. There's a
1331 chance (and I've seen it happen) that if we delete the bp_finish
1332 here, that its storage will get reused by the time finish_command
1333 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1334 We really must allow finish_command to delete a bp_finish.
1336 In the absense of a general solution for the "how do we know
1337 it's safe to delete something others may have handles to?"
1338 problem, what we'll do here is just uninsert the bp_finish, and
1339 let finish_command delete it.
1341 (We know the bp_finish is "doomed" in the sense that it's
1342 momentary, and will be deleted as soon as finish_command sees
1343 the inferior stopped. So it doesn't matter that the bp's
1344 address is probably bogus in the new a.out, unlike e.g., the
1345 solib breakpoints.) */
1347 if (b->type == bp_finish)
1352 /* Without a symbolic address, we have little hope of the
1353 pre-exec() address meaning the same thing in the post-exec()
1355 if (b->addr_string == NULL)
1357 delete_breakpoint (b);
1361 /* If this breakpoint has survived the above battery of checks, then
1362 it must have a symbolic address. Be sure that it gets reevaluated
1363 to a target address, rather than reusing the old evaluation.
1365 Jim Blandy <jimb@redhat.com>: As explained above in the comment
1366 for bp_catch_exec and friends, I'm pretty sure this is entirely
1367 unnecessary. A call to breakpoint_re_set_one always recomputes
1368 the breakpoint's address from scratch, or deletes it if it can't.
1369 So I think this assignment could be deleted without effect. */
1370 b->loc->address = (CORE_ADDR) NULL;
1372 /* FIXME what about longjmp breakpoints? Re-create them here? */
1373 create_overlay_event_breakpoint ("_ovly_debug_event");
1377 detach_breakpoints (int pid)
1379 struct bp_location *b;
1381 struct cleanup *old_chain = save_inferior_ptid ();
1383 if (pid == PIDGET (inferior_ptid))
1384 error ("Cannot detach breakpoints of inferior_ptid");
1386 /* Set inferior_ptid; remove_breakpoint uses this global. */
1387 inferior_ptid = pid_to_ptid (pid);
1388 ALL_BP_LOCATIONS (b)
1392 val = remove_breakpoint (b, mark_inserted);
1395 do_cleanups (old_chain);
1400 do_cleanups (old_chain);
1405 remove_breakpoint (struct bp_location *b, insertion_state_t is)
1409 if (b->owner->enable_state == bp_permanent)
1410 /* Permanent breakpoints cannot be inserted or removed. */
1413 if (b->owner->type == bp_none)
1414 warning ("attempted to remove apparently deleted breakpoint #%d?",
1417 if (b->loc_type == bp_loc_software_breakpoint
1418 || b->loc_type == bp_loc_hardware_breakpoint)
1420 /* "Normal" instruction breakpoint: either the standard
1421 trap-instruction bp (bp_breakpoint), or a
1422 bp_hardware_breakpoint. */
1424 /* First check to see if we have to handle an overlay. */
1425 if (overlay_debugging == ovly_off
1426 || b->section == NULL
1427 || !(section_is_overlay (b->section)))
1429 /* No overlay handling: just remove the breakpoint. */
1431 if (b->loc_type == bp_loc_hardware_breakpoint)
1432 val = target_remove_hw_breakpoint (b->address,
1433 b->shadow_contents);
1435 val = target_remove_breakpoint (b->address, b->shadow_contents);
1439 /* This breakpoint is in an overlay section.
1440 Did we set a breakpoint at the LMA? */
1441 if (!overlay_events_enabled)
1443 /* Yes -- overlay event support is not active, so we
1444 should have set a breakpoint at the LMA. Remove it.
1446 CORE_ADDR addr = overlay_unmapped_address (b->address,
1448 /* Ignore any failures: if the LMA is in ROM, we will
1449 have already warned when we failed to insert it. */
1450 if (b->loc_type == bp_loc_hardware_breakpoint)
1451 target_remove_hw_breakpoint (addr, b->shadow_contents);
1453 target_remove_breakpoint (addr, b->shadow_contents);
1455 /* Did we set a breakpoint at the VMA?
1456 If so, we will have marked the breakpoint 'inserted'. */
1459 /* Yes -- remove it. Previously we did not bother to
1460 remove the breakpoint if the section had been
1461 unmapped, but let's not rely on that being safe. We
1462 don't know what the overlay manager might do. */
1463 if (b->loc_type == bp_loc_hardware_breakpoint)
1464 val = target_remove_hw_breakpoint (b->address,
1465 b->shadow_contents);
1467 val = target_remove_breakpoint (b->address,
1468 b->shadow_contents);
1472 /* No -- not inserted, so no need to remove. No error. */
1478 b->inserted = (is == mark_inserted);
1480 else if (b->loc_type == bp_loc_hardware_watchpoint
1481 && breakpoint_enabled (b->owner)
1487 b->inserted = (is == mark_inserted);
1488 /* Walk down the saved value chain. */
1489 for (v = b->owner->val_chain; v; v = v->next)
1491 /* For each memory reference remove the watchpoint
1493 if (VALUE_LVAL (v) == lval_memory
1494 && ! VALUE_LAZY (v))
1496 struct type *vtype = check_typedef (VALUE_TYPE (v));
1498 if (v == b->owner->val_chain
1499 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1500 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1505 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1506 len = TYPE_LENGTH (VALUE_TYPE (v));
1508 if (b->owner->type == bp_read_watchpoint)
1510 else if (b->owner->type == bp_access_watchpoint)
1513 val = target_remove_watchpoint (addr, len, type);
1520 /* Failure to remove any of the hardware watchpoints comes here. */
1521 if ((is == mark_uninserted) && (b->inserted))
1522 warning ("Could not remove hardware watchpoint %d.",
1525 else if ((b->owner->type == bp_catch_fork ||
1526 b->owner->type == bp_catch_vfork ||
1527 b->owner->type == bp_catch_exec)
1528 && breakpoint_enabled (b->owner)
1532 switch (b->owner->type)
1535 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
1537 case bp_catch_vfork:
1538 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
1541 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
1544 warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1549 b->inserted = (is == mark_inserted);
1551 else if ((b->owner->type == bp_catch_catch ||
1552 b->owner->type == bp_catch_throw)
1553 && breakpoint_enabled (b->owner)
1557 val = target_remove_breakpoint (b->address, b->shadow_contents);
1560 b->inserted = (is == mark_inserted);
1562 else if (ep_is_exception_catchpoint (b->owner)
1563 && b->inserted /* sometimes previous insert doesn't happen */
1564 && breakpoint_enabled (b->owner)
1568 val = target_remove_breakpoint (b->address, b->shadow_contents);
1572 b->inserted = (is == mark_inserted);
1578 /* Clear the "inserted" flag in all breakpoints. */
1581 mark_breakpoints_out (void)
1583 struct bp_location *bpt;
1585 ALL_BP_LOCATIONS (bpt)
1589 /* Clear the "inserted" flag in all breakpoints and delete any
1590 breakpoints which should go away between runs of the program.
1592 Plus other such housekeeping that has to be done for breakpoints
1595 Note: this function gets called at the end of a run (by
1596 generic_mourn_inferior) and when a run begins (by
1597 init_wait_for_inferior). */
1602 breakpoint_init_inferior (enum inf_context context)
1604 struct breakpoint *b, *temp;
1605 struct bp_location *bpt;
1606 static int warning_needed = 0;
1608 ALL_BP_LOCATIONS (bpt)
1611 ALL_BREAKPOINTS_SAFE (b, temp)
1616 case bp_watchpoint_scope:
1618 /* If the call dummy breakpoint is at the entry point it will
1619 cause problems when the inferior is rerun, so we better
1622 Also get rid of scope breakpoints. */
1623 delete_breakpoint (b);
1627 case bp_hardware_watchpoint:
1628 case bp_read_watchpoint:
1629 case bp_access_watchpoint:
1631 /* Likewise for watchpoints on local expressions. */
1632 if (b->exp_valid_block != NULL)
1633 delete_breakpoint (b);
1634 if (context == inf_starting)
1636 /* Reset val field to force reread of starting value
1637 in insert_breakpoints. */
1639 value_free (b->val);
1644 /* Likewise for exception catchpoints in dynamic-linked
1645 executables where required */
1646 if (ep_is_exception_catchpoint (b)
1647 && deprecated_exception_catchpoints_are_fragile)
1650 delete_breakpoint (b);
1656 if (deprecated_exception_catchpoints_are_fragile)
1657 deprecated_exception_support_initialized = 0;
1659 /* Don't issue the warning unless it's really needed... */
1660 if (warning_needed && (context != inf_exited))
1662 warning ("Exception catchpoints from last run were deleted.");
1663 warning ("You must reinsert them explicitly.");
1668 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1669 exists at PC. It returns ordinary_breakpoint_here if it's an
1670 ordinary breakpoint, or permanent_breakpoint_here if it's a
1671 permanent breakpoint.
1672 - When continuing from a location with an ordinary breakpoint, we
1673 actually single step once before calling insert_breakpoints.
1674 - When continuing from a localion with a permanent breakpoint, we
1675 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1676 the target, to advance the PC past the breakpoint. */
1678 enum breakpoint_here
1679 breakpoint_here_p (CORE_ADDR pc)
1681 struct bp_location *bpt;
1682 int any_breakpoint_here = 0;
1684 ALL_BP_LOCATIONS (bpt)
1686 if (bpt->loc_type != bp_loc_software_breakpoint
1687 && bpt->loc_type != bp_loc_hardware_breakpoint)
1690 if ((breakpoint_enabled (bpt->owner)
1691 || bpt->owner->enable_state == bp_permanent)
1692 && bpt->address == pc) /* bp is enabled and matches pc */
1694 if (overlay_debugging
1695 && section_is_overlay (bpt->section)
1696 && !section_is_mapped (bpt->section))
1697 continue; /* unmapped overlay -- can't be a match */
1698 else if (bpt->owner->enable_state == bp_permanent)
1699 return permanent_breakpoint_here;
1701 any_breakpoint_here = 1;
1705 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1709 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1710 but it only returns true if there is actually a breakpoint inserted
1714 breakpoint_inserted_here_p (CORE_ADDR pc)
1716 struct bp_location *bpt;
1718 ALL_BP_LOCATIONS (bpt)
1720 if (bpt->loc_type != bp_loc_software_breakpoint
1721 && bpt->loc_type != bp_loc_hardware_breakpoint)
1725 && bpt->address == pc) /* bp is inserted and matches pc */
1727 if (overlay_debugging
1728 && section_is_overlay (bpt->section)
1729 && !section_is_mapped (bpt->section))
1730 continue; /* unmapped overlay -- can't be a match */
1739 /* This function returns non-zero iff there is a software breakpoint
1743 software_breakpoint_inserted_here_p (CORE_ADDR pc)
1745 struct bp_location *bpt;
1746 int any_breakpoint_here = 0;
1748 ALL_BP_LOCATIONS (bpt)
1750 if (bpt->loc_type != bp_loc_software_breakpoint)
1753 if ((breakpoint_enabled (bpt->owner)
1754 || bpt->owner->enable_state == bp_permanent)
1756 && bpt->address == pc) /* bp is enabled and matches pc */
1758 if (overlay_debugging
1759 && section_is_overlay (bpt->section)
1760 && !section_is_mapped (bpt->section))
1761 continue; /* unmapped overlay -- can't be a match */
1770 /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
1771 PC is valid for process/thread PTID. */
1774 breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
1776 struct bp_location *bpt;
1779 thread = pid_to_thread_id (ptid);
1781 ALL_BP_LOCATIONS (bpt)
1783 if (bpt->loc_type != bp_loc_software_breakpoint
1784 && bpt->loc_type != bp_loc_hardware_breakpoint)
1787 if ((breakpoint_enabled (bpt->owner)
1788 || bpt->owner->enable_state == bp_permanent)
1789 && bpt->address == pc
1790 && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
1792 if (overlay_debugging
1793 && section_is_overlay (bpt->section)
1794 && !section_is_mapped (bpt->section))
1795 continue; /* unmapped overlay -- can't be a match */
1805 /* bpstat stuff. External routines' interfaces are documented
1809 ep_is_catchpoint (struct breakpoint *ep)
1812 (ep->type == bp_catch_load)
1813 || (ep->type == bp_catch_unload)
1814 || (ep->type == bp_catch_fork)
1815 || (ep->type == bp_catch_vfork)
1816 || (ep->type == bp_catch_exec)
1817 || (ep->type == bp_catch_catch)
1818 || (ep->type == bp_catch_throw);
1820 /* ??rehrauer: Add more kinds here, as are implemented... */
1824 ep_is_shlib_catchpoint (struct breakpoint *ep)
1827 (ep->type == bp_catch_load)
1828 || (ep->type == bp_catch_unload);
1832 ep_is_exception_catchpoint (struct breakpoint *ep)
1835 (ep->type == bp_catch_catch)
1836 || (ep->type == bp_catch_throw);
1839 /* Clear a bpstat so that it says we are not at any breakpoint.
1840 Also free any storage that is part of a bpstat. */
1843 bpstat_clear (bpstat *bsp)
1854 if (p->old_val != NULL)
1855 value_free (p->old_val);
1856 free_command_lines (&p->commands);
1863 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1864 is part of the bpstat is copied as well. */
1867 bpstat_copy (bpstat bs)
1871 bpstat retval = NULL;
1876 for (; bs != NULL; bs = bs->next)
1878 tmp = (bpstat) xmalloc (sizeof (*tmp));
1879 memcpy (tmp, bs, sizeof (*tmp));
1880 if (bs->commands != NULL)
1881 tmp->commands = copy_command_lines (bs->commands);
1882 if (bs->old_val != NULL)
1883 tmp->old_val = value_copy (bs->old_val);
1886 /* This is the first thing in the chain. */
1896 /* Find the bpstat associated with this breakpoint */
1899 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
1904 for (; bsp != NULL; bsp = bsp->next)
1906 if (bsp->breakpoint_at == breakpoint)
1912 /* Find a step_resume breakpoint associated with this bpstat.
1913 (If there are multiple step_resume bp's on the list, this function
1914 will arbitrarily pick one.)
1916 It is an error to use this function if BPSTAT doesn't contain a
1917 step_resume breakpoint.
1919 See wait_for_inferior's use of this function. */
1921 bpstat_find_step_resume_breakpoint (bpstat bsp)
1926 error ("Internal error (bpstat_find_step_resume_breakpoint)");
1928 current_thread = pid_to_thread_id (inferior_ptid);
1930 for (; bsp != NULL; bsp = bsp->next)
1932 if ((bsp->breakpoint_at != NULL) &&
1933 (bsp->breakpoint_at->type == bp_step_resume) &&
1934 (bsp->breakpoint_at->thread == current_thread ||
1935 bsp->breakpoint_at->thread == -1))
1936 return bsp->breakpoint_at;
1939 error ("Internal error (no step_resume breakpoint found)");
1943 /* Return the breakpoint number of the first breakpoint we are stopped
1944 at. *BSP upon return is a bpstat which points to the remaining
1945 breakpoints stopped at (but which is not guaranteed to be good for
1946 anything but further calls to bpstat_num).
1947 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1950 bpstat_num (bpstat *bsp)
1952 struct breakpoint *b;
1955 return 0; /* No more breakpoint values */
1958 b = (*bsp)->breakpoint_at;
1959 *bsp = (*bsp)->next;
1961 return -1; /* breakpoint that's been deleted since */
1963 return b->number; /* We have its number */
1967 /* Modify BS so that the actions will not be performed. */
1970 bpstat_clear_actions (bpstat bs)
1972 for (; bs != NULL; bs = bs->next)
1974 free_command_lines (&bs->commands);
1975 if (bs->old_val != NULL)
1977 value_free (bs->old_val);
1983 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1985 cleanup_executing_breakpoints (void *ignore)
1987 executing_breakpoint_commands = 0;
1990 /* Execute all the commands associated with all the breakpoints at this
1991 location. Any of these commands could cause the process to proceed
1992 beyond this point, etc. We look out for such changes by checking
1993 the global "breakpoint_proceeded" after each command. */
1996 bpstat_do_actions (bpstat *bsp)
1999 struct cleanup *old_chain;
2001 /* Avoid endless recursion if a `source' command is contained
2003 if (executing_breakpoint_commands)
2006 executing_breakpoint_commands = 1;
2007 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
2010 /* Note that (as of this writing), our callers all appear to
2011 be passing us the address of global stop_bpstat. And, if
2012 our calls to execute_control_command cause the inferior to
2013 proceed, that global (and hence, *bsp) will change.
2015 We must be careful to not touch *bsp unless the inferior
2016 has not proceeded. */
2018 /* This pointer will iterate over the list of bpstat's. */
2021 breakpoint_proceeded = 0;
2022 for (; bs != NULL; bs = bs->next)
2024 struct command_line *cmd;
2025 struct cleanup *this_cmd_tree_chain;
2027 /* Take ownership of the BSP's command tree, if it has one.
2029 The command tree could legitimately contain commands like
2030 'step' and 'next', which call clear_proceed_status, which
2031 frees stop_bpstat's command tree. To make sure this doesn't
2032 free the tree we're executing out from under us, we need to
2033 take ownership of the tree ourselves. Since a given bpstat's
2034 commands are only executed once, we don't need to copy it; we
2035 can clear the pointer in the bpstat, and make sure we free
2036 the tree when we're done. */
2039 this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
2043 execute_control_command (cmd);
2045 if (breakpoint_proceeded)
2051 /* We can free this command tree now. */
2052 do_cleanups (this_cmd_tree_chain);
2054 if (breakpoint_proceeded)
2055 /* The inferior is proceeded by the command; bomb out now.
2056 The bpstat chain has been blown away by wait_for_inferior.
2057 But since execution has stopped again, there is a new bpstat
2058 to look at, so start over. */
2061 do_cleanups (old_chain);
2064 /* This is the normal print function for a bpstat. In the future,
2065 much of this logic could (should?) be moved to bpstat_stop_status,
2066 by having it set different print_it values.
2068 Current scheme: When we stop, bpstat_print() is called. It loops
2069 through the bpstat list of things causing this stop, calling the
2070 print_bp_stop_message function on each one. The behavior of the
2071 print_bp_stop_message function depends on the print_it field of
2072 bpstat. If such field so indicates, call this function here.
2074 Return values from this routine (ultimately used by bpstat_print()
2075 and normal_stop() to decide what to do):
2076 PRINT_NOTHING: Means we already printed all we needed to print,
2077 don't print anything else.
2078 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
2079 that something to be followed by a location.
2080 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
2081 that something to be followed by a location.
2082 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
2085 static enum print_stop_action
2086 print_it_typical (bpstat bs)
2088 struct cleanup *old_chain, *ui_out_chain;
2089 struct ui_stream *stb;
2090 stb = ui_out_stream_new (uiout);
2091 old_chain = make_cleanup_ui_out_stream_delete (stb);
2092 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
2093 which has since been deleted. */
2094 if (bs->breakpoint_at == NULL)
2095 return PRINT_UNKNOWN;
2097 switch (bs->breakpoint_at->type)
2100 case bp_hardware_breakpoint:
2101 if (bs->breakpoint_at->loc->address != bs->breakpoint_at->loc->requested_address)
2102 breakpoint_adjustment_warning (bs->breakpoint_at->loc->requested_address,
2103 bs->breakpoint_at->loc->address,
2104 bs->breakpoint_at->number, 1);
2105 annotate_breakpoint (bs->breakpoint_at->number);
2106 ui_out_text (uiout, "\nBreakpoint ");
2107 if (ui_out_is_mi_like_p (uiout))
2108 ui_out_field_string (uiout, "reason", "breakpoint-hit");
2109 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
2110 ui_out_text (uiout, ", ");
2111 return PRINT_SRC_AND_LOC;
2114 case bp_shlib_event:
2115 /* Did we stop because the user set the stop_on_solib_events
2116 variable? (If so, we report this as a generic, "Stopped due
2117 to shlib event" message.) */
2118 printf_filtered ("Stopped due to shared library event\n");
2119 return PRINT_NOTHING;
2122 case bp_thread_event:
2123 /* Not sure how we will get here.
2124 GDB should not stop for these breakpoints. */
2125 printf_filtered ("Thread Event Breakpoint: gdb should not stop!\n");
2126 return PRINT_NOTHING;
2129 case bp_overlay_event:
2130 /* By analogy with the thread event, GDB should not stop for these. */
2131 printf_filtered ("Overlay Event Breakpoint: gdb should not stop!\n");
2132 return PRINT_NOTHING;
2136 annotate_catchpoint (bs->breakpoint_at->number);
2137 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2138 printf_filtered ("loaded");
2139 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
2140 return PRINT_SRC_AND_LOC;
2143 case bp_catch_unload:
2144 annotate_catchpoint (bs->breakpoint_at->number);
2145 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2146 printf_filtered ("unloaded");
2147 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
2148 return PRINT_SRC_AND_LOC;
2152 annotate_catchpoint (bs->breakpoint_at->number);
2153 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2154 printf_filtered ("forked");
2155 printf_filtered (" process %d), ",
2156 bs->breakpoint_at->forked_inferior_pid);
2157 return PRINT_SRC_AND_LOC;
2160 case bp_catch_vfork:
2161 annotate_catchpoint (bs->breakpoint_at->number);
2162 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
2163 printf_filtered ("vforked");
2164 printf_filtered (" process %d), ",
2165 bs->breakpoint_at->forked_inferior_pid);
2166 return PRINT_SRC_AND_LOC;
2170 annotate_catchpoint (bs->breakpoint_at->number);
2171 printf_filtered ("\nCatchpoint %d (exec'd %s), ",
2172 bs->breakpoint_at->number,
2173 bs->breakpoint_at->exec_pathname);
2174 return PRINT_SRC_AND_LOC;
2177 case bp_catch_catch:
2178 if (current_exception_event &&
2179 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
2181 annotate_catchpoint (bs->breakpoint_at->number);
2182 printf_filtered ("\nCatchpoint %d (exception caught), ",
2183 bs->breakpoint_at->number);
2184 printf_filtered ("throw location ");
2185 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2186 printf_filtered ("%s:%d",
2187 CURRENT_EXCEPTION_THROW_FILE,
2188 CURRENT_EXCEPTION_THROW_LINE);
2190 printf_filtered ("unknown");
2192 printf_filtered (", catch location ");
2193 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2194 printf_filtered ("%s:%d",
2195 CURRENT_EXCEPTION_CATCH_FILE,
2196 CURRENT_EXCEPTION_CATCH_LINE);
2198 printf_filtered ("unknown");
2200 printf_filtered ("\n");
2201 /* don't bother to print location frame info */
2202 return PRINT_SRC_ONLY;
2206 /* really throw, some other bpstat will handle it */
2207 return PRINT_UNKNOWN;
2211 case bp_catch_throw:
2212 if (current_exception_event &&
2213 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2215 annotate_catchpoint (bs->breakpoint_at->number);
2216 printf_filtered ("\nCatchpoint %d (exception thrown), ",
2217 bs->breakpoint_at->number);
2218 printf_filtered ("throw location ");
2219 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2220 printf_filtered ("%s:%d",
2221 CURRENT_EXCEPTION_THROW_FILE,
2222 CURRENT_EXCEPTION_THROW_LINE);
2224 printf_filtered ("unknown");
2226 printf_filtered (", catch location ");
2227 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2228 printf_filtered ("%s:%d",
2229 CURRENT_EXCEPTION_CATCH_FILE,
2230 CURRENT_EXCEPTION_CATCH_LINE);
2232 printf_filtered ("unknown");
2234 printf_filtered ("\n");
2235 /* don't bother to print location frame info */
2236 return PRINT_SRC_ONLY;
2240 /* really catch, some other bpstat will handle it */
2241 return PRINT_UNKNOWN;
2246 case bp_hardware_watchpoint:
2247 if (bs->old_val != NULL)
2249 annotate_watchpoint (bs->breakpoint_at->number);
2250 if (ui_out_is_mi_like_p (uiout))
2251 ui_out_field_string (uiout, "reason", "watchpoint-trigger");
2252 mention (bs->breakpoint_at);
2253 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2254 ui_out_text (uiout, "\nOld value = ");
2255 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2256 ui_out_field_stream (uiout, "old", stb);
2257 ui_out_text (uiout, "\nNew value = ");
2258 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2259 ui_out_field_stream (uiout, "new", stb);
2260 do_cleanups (ui_out_chain);
2261 ui_out_text (uiout, "\n");
2262 value_free (bs->old_val);
2265 /* More than one watchpoint may have been triggered. */
2266 return PRINT_UNKNOWN;
2269 case bp_read_watchpoint:
2270 if (ui_out_is_mi_like_p (uiout))
2271 ui_out_field_string (uiout, "reason", "read-watchpoint-trigger");
2272 mention (bs->breakpoint_at);
2273 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2274 ui_out_text (uiout, "\nValue = ");
2275 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2276 ui_out_field_stream (uiout, "value", stb);
2277 do_cleanups (ui_out_chain);
2278 ui_out_text (uiout, "\n");
2279 return PRINT_UNKNOWN;
2282 case bp_access_watchpoint:
2283 if (bs->old_val != NULL)
2285 annotate_watchpoint (bs->breakpoint_at->number);
2286 if (ui_out_is_mi_like_p (uiout))
2287 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2288 mention (bs->breakpoint_at);
2289 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2290 ui_out_text (uiout, "\nOld value = ");
2291 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2292 ui_out_field_stream (uiout, "old", stb);
2293 value_free (bs->old_val);
2295 ui_out_text (uiout, "\nNew value = ");
2299 mention (bs->breakpoint_at);
2300 if (ui_out_is_mi_like_p (uiout))
2301 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2302 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2303 ui_out_text (uiout, "\nValue = ");
2305 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2306 ui_out_field_stream (uiout, "new", stb);
2307 do_cleanups (ui_out_chain);
2308 ui_out_text (uiout, "\n");
2309 return PRINT_UNKNOWN;
2312 /* Fall through, we don't deal with these types of breakpoints
2316 if (ui_out_is_mi_like_p (uiout))
2317 ui_out_field_string (uiout, "reason", "function-finished");
2318 return PRINT_UNKNOWN;
2322 if (ui_out_is_mi_like_p (uiout))
2323 ui_out_field_string (uiout, "reason", "location-reached");
2324 return PRINT_UNKNOWN;
2329 case bp_longjmp_resume:
2330 case bp_step_resume:
2331 case bp_through_sigtramp:
2332 case bp_watchpoint_scope:
2335 return PRINT_UNKNOWN;
2339 /* Generic routine for printing messages indicating why we
2340 stopped. The behavior of this function depends on the value
2341 'print_it' in the bpstat structure. Under some circumstances we
2342 may decide not to print anything here and delegate the task to
2345 static enum print_stop_action
2346 print_bp_stop_message (bpstat bs)
2348 switch (bs->print_it)
2351 /* Nothing should be printed for this bpstat entry. */
2352 return PRINT_UNKNOWN;
2356 /* We still want to print the frame, but we already printed the
2357 relevant messages. */
2358 return PRINT_SRC_AND_LOC;
2361 case print_it_normal:
2362 /* Normal case. Call the breakpoint's print_it method, or
2363 print_it_typical. */
2364 if (bs->breakpoint_at != NULL && bs->breakpoint_at->ops != NULL
2365 && bs->breakpoint_at->ops->print_it != NULL)
2366 return bs->breakpoint_at->ops->print_it (bs->breakpoint_at);
2368 return print_it_typical (bs);
2372 internal_error (__FILE__, __LINE__,
2373 "print_bp_stop_message: unrecognized enum value");
2378 /* Print a message indicating what happened. This is called from
2379 normal_stop(). The input to this routine is the head of the bpstat
2380 list - a list of the eventpoints that caused this stop. This
2381 routine calls the generic print routine for printing a message
2382 about reasons for stopping. This will print (for example) the
2383 "Breakpoint n," part of the output. The return value of this
2386 PRINT_UNKNOWN: Means we printed nothing
2387 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2388 code to print the location. An example is
2389 "Breakpoint 1, " which should be followed by
2391 PRINT_SRC_ONLY: Means we printed something, but there is no need
2392 to also print the location part of the message.
2393 An example is the catch/throw messages, which
2394 don't require a location appended to the end.
2395 PRINT_NOTHING: We have done some printing and we don't need any
2396 further info to be printed.*/
2398 enum print_stop_action
2399 bpstat_print (bpstat bs)
2403 /* Maybe another breakpoint in the chain caused us to stop.
2404 (Currently all watchpoints go on the bpstat whether hit or not.
2405 That probably could (should) be changed, provided care is taken
2406 with respect to bpstat_explains_signal). */
2407 for (; bs; bs = bs->next)
2409 val = print_bp_stop_message (bs);
2410 if (val == PRINT_SRC_ONLY
2411 || val == PRINT_SRC_AND_LOC
2412 || val == PRINT_NOTHING)
2416 /* We reached the end of the chain, or we got a null BS to start
2417 with and nothing was printed. */
2418 return PRINT_UNKNOWN;
2421 /* Evaluate the expression EXP and return 1 if value is zero.
2422 This is used inside a catch_errors to evaluate the breakpoint condition.
2423 The argument is a "struct expression *" that has been cast to char * to
2424 make it pass through catch_errors. */
2427 breakpoint_cond_eval (void *exp)
2429 struct value *mark = value_mark ();
2430 int i = !value_true (evaluate_expression ((struct expression *) exp));
2431 value_free_to_mark (mark);
2435 /* Allocate a new bpstat and chain it to the current one. */
2438 bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
2442 bs = (bpstat) xmalloc (sizeof (*bs));
2444 bs->breakpoint_at = b;
2445 /* If the condition is false, etc., don't do the commands. */
2446 bs->commands = NULL;
2448 bs->print_it = print_it_normal;
2452 /* Possible return values for watchpoint_check (this can't be an enum
2453 because of check_errors). */
2454 /* The watchpoint has been deleted. */
2455 #define WP_DELETED 1
2456 /* The value has changed. */
2457 #define WP_VALUE_CHANGED 2
2458 /* The value has not changed. */
2459 #define WP_VALUE_NOT_CHANGED 3
2461 #define BP_TEMPFLAG 1
2462 #define BP_HARDWAREFLAG 2
2464 /* Check watchpoint condition. */
2467 watchpoint_check (void *p)
2469 bpstat bs = (bpstat) p;
2470 struct breakpoint *b;
2471 struct frame_info *fr;
2472 int within_current_scope;
2474 b = bs->breakpoint_at;
2476 if (b->exp_valid_block == NULL)
2477 within_current_scope = 1;
2480 /* There is no current frame at this moment. If we're going to have
2481 any chance of handling watchpoints on local variables, we'll need
2482 the frame chain (so we can determine if we're in scope). */
2483 reinit_frame_cache ();
2484 fr = frame_find_by_id (b->watchpoint_frame);
2485 within_current_scope = (fr != NULL);
2486 /* in_function_epilogue_p() returns a non-zero value if we're still
2487 in the function but the stack frame has already been invalidated.
2488 Since we can't rely on the values of local variables after the
2489 stack has been destroyed, we are treating the watchpoint in that
2490 state as `not changed' without further checking.
2492 vinschen/2003-09-04: The former implementation left out the case
2493 that the watchpoint frame couldn't be found by frame_find_by_id()
2494 because the current PC is currently in an epilogue. Calling
2495 gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
2496 if ((!within_current_scope || fr == get_current_frame ())
2497 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2498 return WP_VALUE_NOT_CHANGED;
2499 if (fr && within_current_scope)
2500 /* If we end up stopping, the current frame will get selected
2501 in normal_stop. So this call to select_frame won't affect
2506 if (within_current_scope)
2508 /* We use value_{,free_to_}mark because it could be a
2509 *long* time before we return to the command level and
2510 call free_all_values. We can't call free_all_values because
2511 we might be in the middle of evaluating a function call. */
2513 struct value *mark = value_mark ();
2514 struct value *new_val = evaluate_expression (bs->breakpoint_at->exp);
2515 if (!value_equal (b->val, new_val))
2517 release_value (new_val);
2518 value_free_to_mark (mark);
2519 bs->old_val = b->val;
2521 /* We will stop here */
2522 return WP_VALUE_CHANGED;
2526 /* Nothing changed, don't do anything. */
2527 value_free_to_mark (mark);
2528 /* We won't stop here */
2529 return WP_VALUE_NOT_CHANGED;
2534 /* This seems like the only logical thing to do because
2535 if we temporarily ignored the watchpoint, then when
2536 we reenter the block in which it is valid it contains
2537 garbage (in the case of a function, it may have two
2538 garbage values, one before and one after the prologue).
2539 So we can't even detect the first assignment to it and
2540 watch after that (since the garbage may or may not equal
2541 the first value assigned). */
2542 /* We print all the stop information in print_it_typical(), but
2543 in this case, by the time we call print_it_typical() this bp
2544 will be deleted already. So we have no choice but print the
2545 information here. */
2546 if (ui_out_is_mi_like_p (uiout))
2547 ui_out_field_string (uiout, "reason", "watchpoint-scope");
2548 ui_out_text (uiout, "\nWatchpoint ");
2549 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2550 ui_out_text (uiout, " deleted because the program has left the block in\n\
2551 which its expression is valid.\n");
2553 if (b->related_breakpoint)
2554 b->related_breakpoint->disposition = disp_del_at_next_stop;
2555 b->disposition = disp_del_at_next_stop;
2561 /* Get a bpstat associated with having just stopped at address
2562 BP_ADDR in thread PTID. STOPPED_BY_WATCHPOINT is true if the
2563 target thinks we stopped due to a hardware watchpoint. */
2565 /* Determine whether we stopped at a breakpoint, etc, or whether we
2566 don't understand this stop. Result is a chain of bpstat's such that:
2568 if we don't understand the stop, the result is a null pointer.
2570 if we understand why we stopped, the result is not null.
2572 Each element of the chain refers to a particular breakpoint or
2573 watchpoint at which we have stopped. (We may have stopped for
2574 several reasons concurrently.)
2576 Each element of the chain has valid next, breakpoint_at,
2577 commands, FIXME??? fields. */
2580 bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid, int stopped_by_watchpoint)
2582 struct breakpoint *b, *temp;
2583 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2584 int real_breakpoint = 0;
2585 /* Root of the chain of bpstat's */
2586 struct bpstats root_bs[1];
2587 /* Pointer to the last thing in the chain currently. */
2588 bpstat bs = root_bs;
2589 int thread_id = pid_to_thread_id (ptid);
2591 ALL_BREAKPOINTS_SAFE (b, temp)
2593 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
2596 /* Hardware watchpoints are treated as non-existent if the reason we
2597 stopped wasn't a hardware watchpoint (we didn't stop on some data
2598 address). Otherwise gdb won't stop on a break instruction in the code
2599 (not from a breakpoint) when a hardware watchpoint has been defined. */
2600 if (b->type != bp_watchpoint
2601 && !((b->type == bp_hardware_watchpoint
2602 || b->type == bp_read_watchpoint
2603 || b->type == bp_access_watchpoint)
2604 && stopped_by_watchpoint)
2605 && b->type != bp_hardware_breakpoint
2606 && b->type != bp_catch_fork
2607 && b->type != bp_catch_vfork
2608 && b->type != bp_catch_exec
2609 && b->type != bp_catch_catch
2610 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2612 if (b->loc->address != bp_addr) /* address doesn't match */
2614 if (overlay_debugging /* unmapped overlay section */
2615 && section_is_overlay (b->loc->section)
2616 && !section_is_mapped (b->loc->section))
2620 if (b->type == bp_hardware_breakpoint)
2622 if (b->loc->address != bp_addr)
2624 if (overlay_debugging /* unmapped overlay section */
2625 && section_is_overlay (b->loc->section)
2626 && !section_is_mapped (b->loc->section))
2630 /* Is this a catchpoint of a load or unload? If so, did we
2631 get a load or unload of the specified library? If not,
2633 if ((b->type == bp_catch_load)
2634 #if defined(SOLIB_HAVE_LOAD_EVENT)
2635 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2636 || ((b->dll_pathname != NULL)
2637 && (strcmp (b->dll_pathname,
2638 SOLIB_LOADED_LIBRARY_PATHNAME (
2639 PIDGET (inferior_ptid)))
2645 if ((b->type == bp_catch_unload)
2646 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2647 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2648 || ((b->dll_pathname != NULL)
2649 && (strcmp (b->dll_pathname,
2650 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2651 PIDGET (inferior_ptid)))
2657 if ((b->type == bp_catch_fork)
2658 && !inferior_has_forked (PIDGET (inferior_ptid),
2659 &b->forked_inferior_pid))
2662 if ((b->type == bp_catch_vfork)
2663 && !inferior_has_vforked (PIDGET (inferior_ptid),
2664 &b->forked_inferior_pid))
2667 if ((b->type == bp_catch_exec)
2668 && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
2671 if (ep_is_exception_catchpoint (b) &&
2672 !(current_exception_event = target_get_current_exception_event ()))
2675 /* Come here if it's a watchpoint, or if the break address matches */
2677 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2679 /* Watchpoints may change this, if not found to have triggered. */
2683 if (b->type == bp_watchpoint ||
2684 b->type == bp_hardware_watchpoint)
2686 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2688 struct cleanup *cleanups = make_cleanup (xfree, message);
2689 int e = catch_errors (watchpoint_check, bs, message,
2691 do_cleanups (cleanups);
2695 /* We've already printed what needs to be printed. */
2696 /* Actually this is superfluous, because by the time we
2697 call print_it_typical() the wp will be already deleted,
2698 and the function will return immediately. */
2699 bs->print_it = print_it_done;
2702 case WP_VALUE_CHANGED:
2706 case WP_VALUE_NOT_CHANGED:
2708 bs->print_it = print_it_noop;
2715 /* Error from catch_errors. */
2716 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2717 if (b->related_breakpoint)
2718 b->related_breakpoint->disposition = disp_del_at_next_stop;
2719 b->disposition = disp_del_at_next_stop;
2720 /* We've already printed what needs to be printed. */
2721 bs->print_it = print_it_done;
2727 else if (b->type == bp_read_watchpoint ||
2728 b->type == bp_access_watchpoint)
2734 addr = target_stopped_data_address ();
2737 for (v = b->val_chain; v; v = v->next)
2739 if (VALUE_LVAL (v) == lval_memory
2740 && ! VALUE_LAZY (v))
2742 struct type *vtype = check_typedef (VALUE_TYPE (v));
2744 if (v == b->val_chain
2745 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2746 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2750 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2751 /* Exact match not required. Within range is
2753 if (addr >= vaddr &&
2754 addr < vaddr + TYPE_LENGTH (VALUE_TYPE (v)))
2761 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2763 struct cleanup *cleanups = make_cleanup (xfree, message);
2764 int e = catch_errors (watchpoint_check, bs, message,
2766 do_cleanups (cleanups);
2770 /* We've already printed what needs to be printed. */
2771 bs->print_it = print_it_done;
2774 case WP_VALUE_CHANGED:
2775 if (b->type == bp_read_watchpoint)
2777 /* Don't stop: read watchpoints shouldn't fire if
2778 the value has changed. This is for targets
2779 which cannot set read-only watchpoints. */
2780 bs->print_it = print_it_noop;
2786 case WP_VALUE_NOT_CHANGED:
2793 /* Error from catch_errors. */
2794 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2795 if (b->related_breakpoint)
2796 b->related_breakpoint->disposition = disp_del_at_next_stop;
2797 b->disposition = disp_del_at_next_stop;
2798 /* We've already printed what needs to be printed. */
2799 bs->print_it = print_it_done;
2803 else /* found == 0 */
2805 /* This is a case where some watchpoint(s) triggered,
2806 but not at the address of this watchpoint (FOUND
2807 was left zero). So don't print anything for this
2809 bs->print_it = print_it_noop;
2816 /* By definition, an encountered breakpoint is a triggered
2820 real_breakpoint = 1;
2823 if (frame_id_p (b->frame_id)
2824 && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
2828 int value_is_zero = 0;
2832 /* Need to select the frame, with all that implies
2833 so that the conditions will have the right context. */
2834 select_frame (get_current_frame ());
2836 = catch_errors (breakpoint_cond_eval, (b->cond),
2837 "Error in testing breakpoint condition:\n",
2839 /* FIXME-someday, should give breakpoint # */
2842 if (b->cond && value_is_zero)
2845 /* Don't consider this a hit. */
2848 else if (b->thread != -1 && b->thread != thread_id)
2851 /* Don't consider this a hit. */
2854 else if (b->ignore_count > 0)
2857 annotate_ignore_count_change ();
2862 /* We will stop here */
2863 if (b->disposition == disp_disable)
2864 b->enable_state = bp_disabled;
2867 bs->commands = b->commands;
2869 (strcmp ("silent", bs->commands->line) == 0
2870 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
2872 bs->commands = bs->commands->next;
2875 bs->commands = copy_command_lines (bs->commands);
2878 /* Print nothing for this entry if we dont stop or if we dont print. */
2879 if (bs->stop == 0 || bs->print == 0)
2880 bs->print_it = print_it_noop;
2883 bs->next = NULL; /* Terminate the chain */
2884 bs = root_bs->next; /* Re-grab the head of the chain */
2886 /* The value of a hardware watchpoint hasn't changed, but the
2887 intermediate memory locations we are watching may have. */
2888 if (bs && !bs->stop &&
2889 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2890 bs->breakpoint_at->type == bp_read_watchpoint ||
2891 bs->breakpoint_at->type == bp_access_watchpoint))
2893 remove_breakpoints ();
2894 insert_breakpoints ();
2899 /* Tell what to do about this bpstat. */
2901 bpstat_what (bpstat bs)
2903 /* Classify each bpstat as one of the following. */
2906 /* This bpstat element has no effect on the main_action. */
2909 /* There was a watchpoint, stop but don't print. */
2912 /* There was a watchpoint, stop and print. */
2915 /* There was a breakpoint but we're not stopping. */
2918 /* There was a breakpoint, stop but don't print. */
2921 /* There was a breakpoint, stop and print. */
2924 /* We hit the longjmp breakpoint. */
2927 /* We hit the longjmp_resume breakpoint. */
2930 /* We hit the step_resume breakpoint. */
2933 /* We hit the through_sigtramp breakpoint. */
2936 /* We hit the shared library event breakpoint. */
2939 /* We caught a shared library event. */
2942 /* This is just used to count how many enums there are. */
2946 /* Here is the table which drives this routine. So that we can
2947 format it pretty, we define some abbreviations for the
2948 enum bpstat_what codes. */
2949 #define kc BPSTAT_WHAT_KEEP_CHECKING
2950 #define ss BPSTAT_WHAT_STOP_SILENT
2951 #define sn BPSTAT_WHAT_STOP_NOISY
2952 #define sgl BPSTAT_WHAT_SINGLE
2953 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2954 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2955 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2956 #define sr BPSTAT_WHAT_STEP_RESUME
2957 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2958 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2959 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2961 /* "Can't happen." Might want to print an error message.
2962 abort() is not out of the question, but chances are GDB is just
2963 a bit confused, not unusable. */
2964 #define err BPSTAT_WHAT_STOP_NOISY
2966 /* Given an old action and a class, come up with a new action. */
2967 /* One interesting property of this table is that wp_silent is the same
2968 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2969 after stopping, the check for whether to step over a breakpoint
2970 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2971 reference to how we stopped. We retain separate wp_silent and
2972 bp_silent codes in case we want to change that someday.
2974 Another possibly interesting property of this table is that
2975 there's a partial ordering, priority-like, of the actions. Once
2976 you've decided that some action is appropriate, you'll never go
2977 back and decide something of a lower priority is better. The
2980 kc < clr sgl shl shlr slr sn sr ss ts
2981 sgl < clrs shl shlr slr sn sr ss ts
2982 slr < err shl shlr sn sr ss ts
2983 clr < clrs err shl shlr sn sr ss ts
2984 clrs < err shl shlr sn sr ss ts
2985 ss < shl shlr sn sr ts
2992 What I think this means is that we don't need a damned table
2993 here. If you just put the rows and columns in the right order,
2994 it'd look awfully regular. We could simply walk the bpstat list
2995 and choose the highest priority action we find, with a little
2996 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
2997 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
2998 is messy anyway). */
3000 /* step_resume entries: a step resume breakpoint overrides another
3001 breakpoint of signal handling (see comment in wait_for_inferior
3002 at where we set the step_resume breakpoint). */
3003 /* We handle the through_sigtramp_breakpoint the same way; having both
3004 one of those and a step_resume_breakpoint is probably very rare (?). */
3006 static const enum bpstat_what_main_action
3007 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
3010 /* kc ss sn sgl slr clr clrs sr ts shl shlr
3013 {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
3015 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3017 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3019 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
3021 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
3023 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
3025 {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr},
3027 {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
3029 {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
3031 {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
3033 {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
3035 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
3050 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
3051 struct bpstat_what retval;
3053 retval.call_dummy = 0;
3054 for (; bs != NULL; bs = bs->next)
3056 enum class bs_class = no_effect;
3057 if (bs->breakpoint_at == NULL)
3058 /* I suspect this can happen if it was a momentary breakpoint
3059 which has since been deleted. */
3061 switch (bs->breakpoint_at->type)
3067 case bp_hardware_breakpoint:
3073 bs_class = bp_noisy;
3075 bs_class = bp_silent;
3078 bs_class = bp_nostop;
3081 case bp_hardware_watchpoint:
3082 case bp_read_watchpoint:
3083 case bp_access_watchpoint:
3087 bs_class = wp_noisy;
3089 bs_class = wp_silent;
3092 /* There was a watchpoint, but we're not stopping.
3093 This requires no further action. */
3094 bs_class = no_effect;
3097 bs_class = long_jump;
3099 case bp_longjmp_resume:
3100 bs_class = long_resume;
3102 case bp_step_resume:
3105 bs_class = step_resume;
3108 /* It is for the wrong frame. */
3109 bs_class = bp_nostop;
3111 case bp_through_sigtramp:
3112 bs_class = through_sig;
3114 case bp_watchpoint_scope:
3115 bs_class = bp_nostop;
3117 case bp_shlib_event:
3118 bs_class = shlib_event;
3120 case bp_thread_event:
3121 case bp_overlay_event:
3122 bs_class = bp_nostop;
3125 case bp_catch_unload:
3126 /* Only if this catchpoint triggered should we cause the
3127 step-out-of-dld behaviour. Otherwise, we ignore this
3130 bs_class = catch_shlib_event;
3132 bs_class = no_effect;
3135 case bp_catch_vfork:
3140 bs_class = bp_noisy;
3142 bs_class = bp_silent;
3145 /* There was a catchpoint, but we're not stopping.
3146 This requires no further action. */
3147 bs_class = no_effect;
3149 case bp_catch_catch:
3150 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
3151 bs_class = bp_nostop;
3153 bs_class = bs->print ? bp_noisy : bp_silent;
3155 case bp_catch_throw:
3156 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
3157 bs_class = bp_nostop;
3159 bs_class = bs->print ? bp_noisy : bp_silent;
3162 /* Make sure the action is stop (silent or noisy),
3163 so infrun.c pops the dummy frame. */
3164 bs_class = bp_silent;
3165 retval.call_dummy = 1;
3168 current_action = table[(int) bs_class][(int) current_action];
3170 retval.main_action = current_action;
3174 /* Nonzero if we should step constantly (e.g. watchpoints on machines
3175 without hardware support). This isn't related to a specific bpstat,
3176 just to things like whether watchpoints are set. */
3179 bpstat_should_step (void)
3181 struct breakpoint *b;
3183 if (breakpoint_enabled (b) && b->type == bp_watchpoint)
3188 /* Nonzero if there are enabled hardware watchpoints. */
3190 bpstat_have_active_hw_watchpoints (void)
3192 struct bp_location *bpt;
3193 ALL_BP_LOCATIONS (bpt)
3194 if (breakpoint_enabled (bpt->owner)
3196 && bpt->loc_type == bp_loc_hardware_watchpoint)
3202 /* Given a bpstat that records zero or more triggered eventpoints, this
3203 function returns another bpstat which contains only the catchpoints
3204 on that first list, if any. */
3206 bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
3208 struct bpstats root_bs[1];
3209 bpstat bs = root_bs;
3210 struct breakpoint *ep;
3213 bpstat_clear (cp_list);
3214 root_bs->next = NULL;
3216 for (; ep_list != NULL; ep_list = ep_list->next)
3218 /* Is this eventpoint a catchpoint? If not, ignore it. */
3219 ep = ep_list->breakpoint_at;
3222 if ((ep->type != bp_catch_load) &&
3223 (ep->type != bp_catch_unload) &&
3224 (ep->type != bp_catch_catch) &&
3225 (ep->type != bp_catch_throw))
3226 /* pai: (temp) ADD fork/vfork here!! */
3229 /* Yes; add it to the list. */
3230 bs = bpstat_alloc (ep, bs);
3235 #if defined(SOLIB_ADD)
3236 /* Also, for each triggered catchpoint, tag it with the name of
3237 the library that caused this trigger. (We copy the name now,
3238 because it's only guaranteed to be available NOW, when the
3239 catchpoint triggers. Clients who may wish to know the name
3240 later must get it from the catchpoint itself.) */
3241 if (ep->triggered_dll_pathname != NULL)
3242 xfree (ep->triggered_dll_pathname);
3243 if (ep->type == bp_catch_load)
3244 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3245 PIDGET (inferior_ptid));
3247 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3248 PIDGET (inferior_ptid));
3250 dll_pathname = NULL;
3254 ep->triggered_dll_pathname = (char *)
3255 xmalloc (strlen (dll_pathname) + 1);
3256 strcpy (ep->triggered_dll_pathname, dll_pathname);
3259 ep->triggered_dll_pathname = NULL;
3265 /* Print B to gdb_stdout. */
3267 print_one_breakpoint (struct breakpoint *b,
3268 CORE_ADDR *last_addr)
3270 struct command_line *l;
3272 struct ep_type_description
3277 static struct ep_type_description bptypes[] =
3279 {bp_none, "?deleted?"},
3280 {bp_breakpoint, "breakpoint"},
3281 {bp_hardware_breakpoint, "hw breakpoint"},
3282 {bp_until, "until"},
3283 {bp_finish, "finish"},
3284 {bp_watchpoint, "watchpoint"},
3285 {bp_hardware_watchpoint, "hw watchpoint"},
3286 {bp_read_watchpoint, "read watchpoint"},
3287 {bp_access_watchpoint, "acc watchpoint"},
3288 {bp_longjmp, "longjmp"},
3289 {bp_longjmp_resume, "longjmp resume"},
3290 {bp_step_resume, "step resume"},
3291 {bp_through_sigtramp, "sigtramp"},
3292 {bp_watchpoint_scope, "watchpoint scope"},
3293 {bp_call_dummy, "call dummy"},
3294 {bp_shlib_event, "shlib events"},
3295 {bp_thread_event, "thread events"},
3296 {bp_overlay_event, "overlay events"},
3297 {bp_catch_load, "catch load"},
3298 {bp_catch_unload, "catch unload"},
3299 {bp_catch_fork, "catch fork"},
3300 {bp_catch_vfork, "catch vfork"},
3301 {bp_catch_exec, "catch exec"},
3302 {bp_catch_catch, "catch catch"},
3303 {bp_catch_throw, "catch throw"}
3306 static char *bpdisps[] =
3307 {"del", "dstp", "dis", "keep"};
3308 static char bpenables[] = "nynny";
3309 char wrap_indent[80];
3310 struct ui_stream *stb = ui_out_stream_new (uiout);
3311 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3312 struct cleanup *bkpt_chain;
3315 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
3319 ui_out_field_int (uiout, "number", b->number);
3323 if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3324 || ((int) b->type != bptypes[(int) b->type].type))
3325 internal_error (__FILE__, __LINE__,
3326 "bptypes table does not describe type #%d.",
3328 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3332 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
3336 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
3337 ui_out_spaces (uiout, 2);
3340 strcpy (wrap_indent, " ");
3343 if (TARGET_ADDR_BIT <= 32)
3344 strcat (wrap_indent, " ");
3346 strcat (wrap_indent, " ");
3349 if (b->ops != NULL && b->ops->print_one != NULL)
3350 b->ops->print_one (b, last_addr);
3355 internal_error (__FILE__, __LINE__,
3356 "print_one_breakpoint: bp_none encountered\n");
3360 case bp_hardware_watchpoint:
3361 case bp_read_watchpoint:
3362 case bp_access_watchpoint:
3363 /* Field 4, the address, is omitted (which makes the columns
3364 not line up too nicely with the headers, but the effect
3365 is relatively readable). */
3367 ui_out_field_skip (uiout, "addr");
3369 print_expression (b->exp, stb->stream);
3370 ui_out_field_stream (uiout, "what", stb);
3374 case bp_catch_unload:
3375 /* Field 4, the address, is omitted (which makes the columns
3376 not line up too nicely with the headers, but the effect
3377 is relatively readable). */
3379 ui_out_field_skip (uiout, "addr");
3381 if (b->dll_pathname == NULL)
3383 ui_out_field_string (uiout, "what", "<any library>");
3384 ui_out_spaces (uiout, 1);
3388 ui_out_text (uiout, "library \"");
3389 ui_out_field_string (uiout, "what", b->dll_pathname);
3390 ui_out_text (uiout, "\" ");
3395 case bp_catch_vfork:
3396 /* Field 4, the address, is omitted (which makes the columns
3397 not line up too nicely with the headers, but the effect
3398 is relatively readable). */
3400 ui_out_field_skip (uiout, "addr");
3402 if (b->forked_inferior_pid != 0)
3404 ui_out_text (uiout, "process ");
3405 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3406 ui_out_spaces (uiout, 1);
3410 /* Field 4, the address, is omitted (which makes the columns
3411 not line up too nicely with the headers, but the effect
3412 is relatively readable). */
3414 ui_out_field_skip (uiout, "addr");
3416 if (b->exec_pathname != NULL)
3418 ui_out_text (uiout, "program \"");
3419 ui_out_field_string (uiout, "what", b->exec_pathname);
3420 ui_out_text (uiout, "\" ");
3424 case bp_catch_catch:
3425 /* Field 4, the address, is omitted (which makes the columns
3426 not line up too nicely with the headers, but the effect
3427 is relatively readable). */
3429 ui_out_field_skip (uiout, "addr");
3431 ui_out_field_string (uiout, "what", "exception catch");
3432 ui_out_spaces (uiout, 1);
3435 case bp_catch_throw:
3436 /* Field 4, the address, is omitted (which makes the columns
3437 not line up too nicely with the headers, but the effect
3438 is relatively readable). */
3440 ui_out_field_skip (uiout, "addr");
3442 ui_out_field_string (uiout, "what", "exception throw");
3443 ui_out_spaces (uiout, 1);
3447 case bp_hardware_breakpoint:
3451 case bp_longjmp_resume:
3452 case bp_step_resume:
3453 case bp_through_sigtramp:
3454 case bp_watchpoint_scope:
3456 case bp_shlib_event:
3457 case bp_thread_event:
3458 case bp_overlay_event:
3463 ui_out_field_string (uiout, "addr", "<PENDING>");
3465 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3468 *last_addr = b->loc->address;
3471 sym = find_pc_sect_function (b->loc->address, b->loc->section);
3474 ui_out_text (uiout, "in ");
3475 ui_out_field_string (uiout, "func",
3476 SYMBOL_PRINT_NAME (sym));
3477 ui_out_wrap_hint (uiout, wrap_indent);
3478 ui_out_text (uiout, " at ");
3480 ui_out_field_string (uiout, "file", b->source_file);
3481 ui_out_text (uiout, ":");
3482 ui_out_field_int (uiout, "line", b->line_number);
3484 else if (b->pending)
3486 ui_out_field_string (uiout, "pending", b->addr_string);
3490 print_address_symbolic (b->loc->address, stb->stream, demangle, "");
3491 ui_out_field_stream (uiout, "at", stb);
3496 if (b->thread != -1)
3498 /* FIXME: This seems to be redundant and lost here; see the
3499 "stop only in" line a little further down. */
3500 ui_out_text (uiout, " thread ");
3501 ui_out_field_int (uiout, "thread", b->thread);
3504 ui_out_text (uiout, "\n");
3506 if (frame_id_p (b->frame_id))
3509 ui_out_text (uiout, "\tstop only in stack frame at ");
3510 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
3512 ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
3513 ui_out_text (uiout, "\n");
3519 ui_out_text (uiout, "\tstop only if ");
3520 print_expression (b->cond, stb->stream);
3521 ui_out_field_stream (uiout, "cond", stb);
3522 ui_out_text (uiout, "\n");
3525 if (b->pending && b->cond_string)
3528 ui_out_text (uiout, "\tstop only if ");
3529 ui_out_field_string (uiout, "cond", b->cond_string);
3530 ui_out_text (uiout, "\n");
3533 if (b->thread != -1)
3535 /* FIXME should make an annotation for this */
3536 ui_out_text (uiout, "\tstop only in thread ");
3537 ui_out_field_int (uiout, "thread", b->thread);
3538 ui_out_text (uiout, "\n");
3541 if (show_breakpoint_hit_counts && b->hit_count)
3543 /* FIXME should make an annotation for this */
3544 if (ep_is_catchpoint (b))
3545 ui_out_text (uiout, "\tcatchpoint");
3547 ui_out_text (uiout, "\tbreakpoint");
3548 ui_out_text (uiout, " already hit ");
3549 ui_out_field_int (uiout, "times", b->hit_count);
3550 if (b->hit_count == 1)
3551 ui_out_text (uiout, " time\n");
3553 ui_out_text (uiout, " times\n");
3556 /* Output the count also if it is zero, but only if this is
3557 mi. FIXME: Should have a better test for this. */
3558 if (ui_out_is_mi_like_p (uiout))
3559 if (show_breakpoint_hit_counts && b->hit_count == 0)
3560 ui_out_field_int (uiout, "times", b->hit_count);
3562 if (b->ignore_count)
3565 ui_out_text (uiout, "\tignore next ");
3566 ui_out_field_int (uiout, "ignore", b->ignore_count);
3567 ui_out_text (uiout, " hits\n");
3570 if ((l = b->commands))
3572 struct cleanup *script_chain;
3575 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
3576 print_command_lines (uiout, l, 4);
3577 do_cleanups (script_chain);
3579 do_cleanups (bkpt_chain);
3580 do_cleanups (old_chain);
3583 struct captured_breakpoint_query_args
3589 do_captured_breakpoint_query (struct ui_out *uiout, void *data)
3591 struct captured_breakpoint_query_args *args = data;
3592 struct breakpoint *b;
3593 CORE_ADDR dummy_addr = 0;
3596 if (args->bnum == b->number)
3598 print_one_breakpoint (b, &dummy_addr);
3606 gdb_breakpoint_query (struct ui_out *uiout, int bnum)
3608 struct captured_breakpoint_query_args args;
3610 /* For the moment we don't trust print_one_breakpoint() to not throw
3612 return catch_exceptions (uiout, do_captured_breakpoint_query, &args,
3613 NULL, RETURN_MASK_ALL);
3616 /* Return non-zero if B is user settable (breakpoints, watchpoints,
3617 catchpoints, et.al.). */
3620 user_settable_breakpoint (const struct breakpoint *b)
3622 return (b->type == bp_breakpoint
3623 || b->type == bp_catch_load
3624 || b->type == bp_catch_unload
3625 || b->type == bp_catch_fork
3626 || b->type == bp_catch_vfork
3627 || b->type == bp_catch_exec
3628 || b->type == bp_catch_catch
3629 || b->type == bp_catch_throw
3630 || b->type == bp_hardware_breakpoint
3631 || b->type == bp_watchpoint
3632 || b->type == bp_read_watchpoint
3633 || b->type == bp_access_watchpoint
3634 || b->type == bp_hardware_watchpoint);
3637 /* Print information on user settable breakpoint (watchpoint, etc)
3638 number BNUM. If BNUM is -1 print all user settable breakpoints.
3639 If ALLFLAG is non-zero, include non- user settable breakpoints. */
3642 breakpoint_1 (int bnum, int allflag)
3644 struct breakpoint *b;
3645 CORE_ADDR last_addr = (CORE_ADDR) -1;
3646 int nr_printable_breakpoints;
3647 struct cleanup *bkpttbl_chain;
3649 /* Compute the number of rows in the table. */
3650 nr_printable_breakpoints = 0;
3653 || bnum == b->number)
3655 if (allflag || user_settable_breakpoint (b))
3656 nr_printable_breakpoints++;
3661 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
3665 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
3668 if (nr_printable_breakpoints > 0)
3669 annotate_breakpoints_headers ();
3670 if (nr_printable_breakpoints > 0)
3672 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3673 if (nr_printable_breakpoints > 0)
3675 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3676 if (nr_printable_breakpoints > 0)
3678 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3679 if (nr_printable_breakpoints > 0)
3681 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3684 if (nr_printable_breakpoints > 0)
3686 if (TARGET_ADDR_BIT <= 32)
3687 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
3689 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
3691 if (nr_printable_breakpoints > 0)
3693 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3694 ui_out_table_body (uiout);
3695 if (nr_printable_breakpoints > 0)
3696 annotate_breakpoints_table ();
3700 || bnum == b->number)
3702 /* We only print out user settable breakpoints unless the
3704 if (allflag || user_settable_breakpoint (b))
3705 print_one_breakpoint (b, &last_addr);
3708 do_cleanups (bkpttbl_chain);
3710 if (nr_printable_breakpoints == 0)
3713 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3715 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3720 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3721 that a comparison of an unsigned with -1 is always false. */
3722 if (last_addr != (CORE_ADDR) -1)
3723 set_next_address (last_addr);
3726 /* FIXME? Should this be moved up so that it is only called when
3727 there have been breakpoints? */
3728 annotate_breakpoints_table_end ();
3732 breakpoints_info (char *bnum_exp, int from_tty)
3737 bnum = parse_and_eval_long (bnum_exp);
3739 breakpoint_1 (bnum, 0);
3743 maintenance_info_breakpoints (char *bnum_exp, int from_tty)
3748 bnum = parse_and_eval_long (bnum_exp);
3750 breakpoint_1 (bnum, 1);
3753 /* Print a message describing any breakpoints set at PC. */
3756 describe_other_breakpoints (CORE_ADDR pc, asection *section)
3759 struct breakpoint *b;
3762 if (b->loc->address == pc) /* address match / overlay match */
3763 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3767 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3769 if (b->loc->address == pc) /* address match / overlay match */
3770 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3773 printf_filtered ("%d%s%s ",
3775 ((b->enable_state == bp_disabled ||
3776 b->enable_state == bp_shlib_disabled ||
3777 b->enable_state == bp_call_disabled)
3779 : b->enable_state == bp_permanent
3783 : ((others == 1) ? " and" : ""));
3785 printf_filtered ("also set at pc ");
3786 print_address_numeric (pc, 1, gdb_stdout);
3787 printf_filtered (".\n");
3791 /* Set the default place to put a breakpoint
3792 for the `break' command with no arguments. */
3795 set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3798 default_breakpoint_valid = valid;
3799 default_breakpoint_address = addr;
3800 default_breakpoint_symtab = symtab;
3801 default_breakpoint_line = line;
3804 /* Return true iff it is meaningful to use the address member of
3805 BPT. For some breakpoint types, the address member is irrelevant
3806 and it makes no sense to attempt to compare it to other addresses
3807 (or use it for any other purpose either).
3809 More specifically, each of the following breakpoint types will always
3810 have a zero valued address and we don't want check_duplicates() to mark
3811 breakpoints of any of these types to be a duplicate of an actual
3812 breakpoint at address zero:
3815 bp_hardware_watchpoint
3817 bp_access_watchpoint
3824 breakpoint_address_is_meaningful (struct breakpoint *bpt)
3826 enum bptype type = bpt->type;
3828 return (type != bp_watchpoint
3829 && type != bp_hardware_watchpoint
3830 && type != bp_read_watchpoint
3831 && type != bp_access_watchpoint
3832 && type != bp_catch_exec
3833 && type != bp_longjmp_resume
3834 && type != bp_catch_fork
3835 && type != bp_catch_vfork);
3838 /* Rescan breakpoints at the same address and section as BPT,
3839 marking the first one as "first" and any others as "duplicates".
3840 This is so that the bpt instruction is only inserted once.
3841 If we have a permanent breakpoint at the same place as BPT, make
3842 that one the official one, and the rest as duplicates. */
3845 check_duplicates (struct breakpoint *bpt)
3847 struct bp_location *b;
3849 struct bp_location *perm_bp = 0;
3850 CORE_ADDR address = bpt->loc->address;
3851 asection *section = bpt->loc->section;
3853 if (! breakpoint_address_is_meaningful (bpt))
3856 ALL_BP_LOCATIONS (b)
3857 if (b->owner->enable_state != bp_disabled
3858 && b->owner->enable_state != bp_shlib_disabled
3859 && !b->owner->pending
3860 && b->owner->enable_state != bp_call_disabled
3861 && b->address == address /* address / overlay match */
3862 && (!overlay_debugging || b->section == section)
3863 && breakpoint_address_is_meaningful (b->owner))
3865 /* Have we found a permanent breakpoint? */
3866 if (b->owner->enable_state == bp_permanent)
3873 b->duplicate = count > 1;
3876 /* If we found a permanent breakpoint at this address, go over the
3877 list again and declare all the other breakpoints there to be the
3881 perm_bp->duplicate = 0;
3883 /* Permanent breakpoint should always be inserted. */
3884 if (! perm_bp->inserted)
3885 internal_error (__FILE__, __LINE__,
3886 "allegedly permanent breakpoint is not "
3887 "actually inserted");
3889 ALL_BP_LOCATIONS (b)
3892 if (b->owner->enable_state != bp_disabled
3893 && b->owner->enable_state != bp_shlib_disabled
3894 && !b->owner->pending
3895 && b->owner->enable_state != bp_call_disabled
3896 && b->address == address /* address / overlay match */
3897 && (!overlay_debugging || b->section == section)
3898 && breakpoint_address_is_meaningful (b->owner))
3901 internal_error (__FILE__, __LINE__,
3902 "another breakpoint was inserted on top of "
3903 "a permanent breakpoint");
3912 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
3913 int bnum, int have_bnum)
3918 strcpy (astr1, local_hex_string_custom ((unsigned long) from_addr, "08l"));
3919 strcpy (astr2, local_hex_string_custom ((unsigned long) to_addr, "08l"));
3921 warning ("Breakpoint %d address previously adjusted from %s to %s.",
3922 bnum, astr1, astr2);
3924 warning ("Breakpoint address adjusted from %s to %s.", astr1, astr2);
3927 /* Adjust a breakpoint's address to account for architectural constraints
3928 on breakpoint placement. Return the adjusted address. Note: Very
3929 few targets require this kind of adjustment. For most targets,
3930 this function is simply the identity function. */
3933 adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
3935 if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
3937 /* Very few targets need any kind of breakpoint adjustment. */
3940 else if (bptype == bp_watchpoint
3941 || bptype == bp_hardware_watchpoint
3942 || bptype == bp_read_watchpoint
3943 || bptype == bp_access_watchpoint
3944 || bptype == bp_catch_fork
3945 || bptype == bp_catch_vfork
3946 || bptype == bp_catch_exec)
3948 /* Watchpoints and the various bp_catch_* eventpoints should not
3949 have their addresses modified. */
3954 CORE_ADDR adjusted_bpaddr;
3956 /* Some targets have architectural constraints on the placement
3957 of breakpoint instructions. Obtain the adjusted address. */
3958 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
3961 /* An adjusted breakpoint address can significantly alter
3962 a user's expectations. Print a warning if an adjustment
3964 if (adjusted_bpaddr != bpaddr)
3965 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
3967 return adjusted_bpaddr;
3971 /* Allocate a struct bp_location. */
3973 static struct bp_location *
3974 allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
3976 struct bp_location *loc, *loc_p;
3978 loc = xmalloc (sizeof (struct bp_location));
3979 memset (loc, 0, sizeof (*loc));
3989 case bp_longjmp_resume:
3990 case bp_step_resume:
3991 case bp_through_sigtramp:
3992 case bp_watchpoint_scope:
3994 case bp_shlib_event:
3995 case bp_thread_event:
3996 case bp_overlay_event:
3998 case bp_catch_unload:
3999 loc->loc_type = bp_loc_software_breakpoint;
4001 case bp_hardware_breakpoint:
4002 loc->loc_type = bp_loc_hardware_breakpoint;
4004 case bp_hardware_watchpoint:
4005 case bp_read_watchpoint:
4006 case bp_access_watchpoint:
4007 loc->loc_type = bp_loc_hardware_watchpoint;
4011 case bp_catch_vfork:
4013 case bp_catch_catch:
4014 case bp_catch_throw:
4015 loc->loc_type = bp_loc_other;
4018 internal_error (__FILE__, __LINE__, "unknown breakpoint type");
4021 /* Add this breakpoint to the end of the chain. */
4023 loc_p = bp_location_chain;
4025 bp_location_chain = loc;
4029 loc_p = loc_p->next;
4036 /* set_raw_breakpoint() is a low level routine for allocating and
4037 partially initializing a breakpoint of type BPTYPE. The newly
4038 created breakpoint's address, section, source file name, and line
4039 number are provided by SAL. The newly created and partially
4040 initialized breakpoint is added to the breakpoint chain and
4041 is also returned as the value of this function.
4043 It is expected that the caller will complete the initialization of
4044 the newly created breakpoint struct as well as output any status
4045 information regarding the creation of a new breakpoint. In
4046 particular, set_raw_breakpoint() does NOT set the breakpoint
4047 number! Care should be taken to not allow an error() to occur
4048 prior to completing the initialization of the breakpoint. If this
4049 should happen, a bogus breakpoint will be left on the chain. */
4052 set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
4054 struct breakpoint *b, *b1;
4056 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
4057 memset (b, 0, sizeof (*b));
4058 b->loc = allocate_bp_location (b, bptype);
4059 b->loc->requested_address = sal.pc;
4060 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4062 if (sal.symtab == NULL)
4063 b->source_file = NULL;
4065 b->source_file = savestring (sal.symtab->filename,
4066 strlen (sal.symtab->filename));
4067 b->loc->section = sal.section;
4069 b->language = current_language->la_language;
4070 b->input_radix = input_radix;
4072 b->line_number = sal.line;
4073 b->enable_state = bp_enabled;
4076 b->ignore_count = 0;
4078 b->frame_id = null_frame_id;
4079 b->dll_pathname = NULL;
4080 b->triggered_dll_pathname = NULL;
4081 b->forked_inferior_pid = 0;
4082 b->exec_pathname = NULL;
4086 /* Add this breakpoint to the end of the chain
4087 so that a list of breakpoints will come out in order
4088 of increasing numbers. */
4090 b1 = breakpoint_chain;
4092 breakpoint_chain = b;
4100 check_duplicates (b);
4101 breakpoints_changed ();
4107 /* Note that the breakpoint object B describes a permanent breakpoint
4108 instruction, hard-wired into the inferior's code. */
4110 make_breakpoint_permanent (struct breakpoint *b)
4112 b->enable_state = bp_permanent;
4114 /* By definition, permanent breakpoints are already present in the code. */
4115 b->loc->inserted = 1;
4118 static struct breakpoint *
4119 create_internal_breakpoint (CORE_ADDR address, enum bptype type)
4121 static int internal_breakpoint_number = -1;
4122 struct symtab_and_line sal;
4123 struct breakpoint *b;
4125 init_sal (&sal); /* initialize to zeroes */
4128 sal.section = find_pc_overlay (sal.pc);
4130 b = set_raw_breakpoint (sal, type);
4131 b->number = internal_breakpoint_number--;
4132 b->disposition = disp_donttouch;
4139 create_longjmp_breakpoint (char *func_name)
4141 struct breakpoint *b;
4142 struct minimal_symbol *m;
4144 if (func_name == NULL)
4145 b = create_internal_breakpoint (0, bp_longjmp_resume);
4148 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4151 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
4154 b->enable_state = bp_disabled;
4157 b->addr_string = xstrdup (func_name);
4160 /* Call this routine when stepping and nexting to enable a breakpoint
4161 if we do a longjmp(). When we hit that breakpoint, call
4162 set_longjmp_resume_breakpoint() to figure out where we are going. */
4165 enable_longjmp_breakpoint (void)
4167 struct breakpoint *b;
4170 if (b->type == bp_longjmp)
4172 b->enable_state = bp_enabled;
4173 check_duplicates (b);
4178 disable_longjmp_breakpoint (void)
4180 struct breakpoint *b;
4183 if (b->type == bp_longjmp
4184 || b->type == bp_longjmp_resume)
4186 b->enable_state = bp_disabled;
4187 check_duplicates (b);
4192 create_overlay_event_breakpoint (char *func_name)
4194 struct breakpoint *b;
4195 struct minimal_symbol *m;
4197 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4200 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
4202 b->addr_string = xstrdup (func_name);
4204 if (overlay_debugging == ovly_auto)
4206 b->enable_state = bp_enabled;
4207 overlay_events_enabled = 1;
4211 b->enable_state = bp_disabled;
4212 overlay_events_enabled = 0;
4217 enable_overlay_breakpoints (void)
4219 struct breakpoint *b;
4222 if (b->type == bp_overlay_event)
4224 b->enable_state = bp_enabled;
4225 check_duplicates (b);
4226 overlay_events_enabled = 1;
4231 disable_overlay_breakpoints (void)
4233 struct breakpoint *b;
4236 if (b->type == bp_overlay_event)
4238 b->enable_state = bp_disabled;
4239 check_duplicates (b);
4240 overlay_events_enabled = 0;
4245 create_thread_event_breakpoint (CORE_ADDR address)
4247 struct breakpoint *b;
4249 b = create_internal_breakpoint (address, bp_thread_event);
4251 b->enable_state = bp_enabled;
4252 /* addr_string has to be used or breakpoint_re_set will delete me. */
4253 xasprintf (&b->addr_string, "*0x%s", paddr (b->loc->address));
4259 remove_thread_event_breakpoints (void)
4261 struct breakpoint *b, *temp;
4263 ALL_BREAKPOINTS_SAFE (b, temp)
4264 if (b->type == bp_thread_event)
4265 delete_breakpoint (b);
4268 struct captured_parse_breakpoint_args
4271 struct symtabs_and_lines *sals_p;
4272 char ***addr_string_p;
4276 struct lang_and_radix
4282 /* Cleanup helper routine to restore the current language and
4285 do_restore_lang_radix_cleanup (void *old)
4287 struct lang_and_radix *p = old;
4288 set_language (p->lang);
4289 input_radix = p->radix;
4292 /* Try and resolve a pending breakpoint. */
4294 resolve_pending_breakpoint (struct breakpoint *b)
4296 /* Try and reparse the breakpoint in case the shared library
4298 struct symtabs_and_lines sals;
4299 struct symtab_and_line pending_sal;
4300 char **cond_string = (char **) NULL;
4301 char *copy_arg = b->addr_string;
4306 struct ui_file *old_gdb_stderr;
4307 struct lang_and_radix old_lr;
4308 struct cleanup *old_chain;
4310 /* Set language, input-radix, then reissue breakpoint command.
4311 Ensure the language and input-radix are restored afterwards. */
4312 old_lr.lang = current_language->la_language;
4313 old_lr.radix = input_radix;
4314 old_chain = make_cleanup (do_restore_lang_radix_cleanup, &old_lr);
4316 set_language (b->language);
4317 input_radix = b->input_radix;
4318 rc = break_command_1 (b->addr_string, b->flag, b->from_tty, b);
4320 if (rc == GDB_RC_OK)
4321 /* Pending breakpoint has been resolved. */
4322 printf_filtered ("Pending breakpoint \"%s\" resolved\n", b->addr_string);
4324 do_cleanups (old_chain);
4330 remove_solib_event_breakpoints (void)
4332 struct breakpoint *b, *temp;
4334 ALL_BREAKPOINTS_SAFE (b, temp)
4335 if (b->type == bp_shlib_event)
4336 delete_breakpoint (b);
4340 create_solib_event_breakpoint (CORE_ADDR address)
4342 struct breakpoint *b;
4344 b = create_internal_breakpoint (address, bp_shlib_event);
4348 /* Disable any breakpoints that are on code in shared libraries. Only
4349 apply to enabled breakpoints, disabled ones can just stay disabled. */
4352 disable_breakpoints_in_shlibs (int silent)
4354 struct breakpoint *b;
4355 int disabled_shlib_breaks = 0;
4357 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4360 #if defined (PC_SOLIB)
4361 if (((b->type == bp_breakpoint) ||
4362 (b->type == bp_hardware_breakpoint)) &&
4363 breakpoint_enabled (b) &&
4364 !b->loc->duplicate &&
4365 PC_SOLIB (b->loc->address))
4367 b->enable_state = bp_shlib_disabled;
4370 if (!disabled_shlib_breaks)
4372 target_terminal_ours_for_output ();
4373 warning ("Temporarily disabling shared library breakpoints:");
4375 disabled_shlib_breaks = 1;
4376 warning ("breakpoint #%d ", b->number);
4383 /* Try to reenable any breakpoints in shared libraries. */
4385 re_enable_breakpoints_in_shlibs (void)
4387 struct breakpoint *b, *tmp;
4389 ALL_BREAKPOINTS_SAFE (b, tmp)
4391 if (b->enable_state == bp_shlib_disabled)
4395 /* Do not reenable the breakpoint if the shared library
4396 is still not mapped in. */
4397 lib = PC_SOLIB (b->loc->address);
4398 if (lib != NULL && target_read_memory (b->loc->address, buf, 1) == 0)
4399 b->enable_state = bp_enabled;
4401 else if (b->pending && (b->enable_state == bp_enabled))
4403 if (resolve_pending_breakpoint (b) == GDB_RC_OK)
4404 delete_breakpoint (b);
4412 solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4413 char *cond_string, enum bptype bp_kind)
4415 struct breakpoint *b;
4416 struct symtabs_and_lines sals;
4417 struct cleanup *old_chain;
4418 struct cleanup *canonical_strings_chain = NULL;
4419 char *addr_start = hookname;
4420 char *addr_end = NULL;
4421 char **canonical = (char **) NULL;
4422 int thread = -1; /* All threads. */
4424 /* Set a breakpoint on the specified hook. */
4425 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical, NULL);
4426 addr_end = hookname;
4428 if (sals.nelts == 0)
4430 warning ("Unable to set a breakpoint on dynamic linker callback.");
4431 warning ("Suggest linking with /opt/langtools/lib/end.o.");
4432 warning ("GDB will be unable to track shl_load/shl_unload calls");
4435 if (sals.nelts != 1)
4437 warning ("Unable to set unique breakpoint on dynamic linker callback.");
4438 warning ("GDB will be unable to track shl_load/shl_unload calls");
4442 /* Make sure that all storage allocated in decode_line_1 gets freed
4443 in case the following errors out. */
4444 old_chain = make_cleanup (xfree, sals.sals);
4445 if (canonical != (char **) NULL)
4447 make_cleanup (xfree, canonical);
4448 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4449 if (canonical[0] != NULL)
4450 make_cleanup (xfree, canonical[0]);
4453 resolve_sal_pc (&sals.sals[0]);
4455 /* Remove the canonical strings from the cleanup, they are needed below. */
4456 if (canonical != (char **) NULL)
4457 discard_cleanups (canonical_strings_chain);
4459 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4460 set_breakpoint_count (breakpoint_count + 1);
4461 b->number = breakpoint_count;
4463 b->cond_string = (cond_string == NULL) ?
4464 NULL : savestring (cond_string, strlen (cond_string));
4467 if (canonical != (char **) NULL && canonical[0] != NULL)
4468 b->addr_string = canonical[0];
4469 else if (addr_start)
4470 b->addr_string = savestring (addr_start, addr_end - addr_start);
4472 b->enable_state = bp_enabled;
4473 b->disposition = tempflag ? disp_del : disp_donttouch;
4475 if (dll_pathname == NULL)
4476 b->dll_pathname = NULL;
4479 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4480 strcpy (b->dll_pathname, dll_pathname);
4484 do_cleanups (old_chain);
4488 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4489 char *dll_pathname, char *cond_string)
4491 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4492 cond_string, bp_catch_load);
4496 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4497 char *dll_pathname, char *cond_string)
4499 solib_load_unload_1 (hookname,tempflag, dll_pathname,
4500 cond_string, bp_catch_unload);
4504 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4505 enum bptype bp_kind)
4507 struct symtab_and_line sal;
4508 struct breakpoint *b;
4509 int thread = -1; /* All threads. */
4516 b = set_raw_breakpoint (sal, bp_kind);
4517 set_breakpoint_count (breakpoint_count + 1);
4518 b->number = breakpoint_count;
4520 b->cond_string = (cond_string == NULL) ?
4521 NULL : savestring (cond_string, strlen (cond_string));
4523 b->addr_string = NULL;
4524 b->enable_state = bp_enabled;
4525 b->disposition = tempflag ? disp_del : disp_donttouch;
4526 b->forked_inferior_pid = 0;
4532 create_fork_event_catchpoint (int tempflag, char *cond_string)
4534 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4538 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4540 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4544 create_exec_event_catchpoint (int tempflag, char *cond_string)
4546 struct symtab_and_line sal;
4547 struct breakpoint *b;
4548 int thread = -1; /* All threads. */
4555 b = set_raw_breakpoint (sal, bp_catch_exec);
4556 set_breakpoint_count (breakpoint_count + 1);
4557 b->number = breakpoint_count;
4559 b->cond_string = (cond_string == NULL) ?
4560 NULL : savestring (cond_string, strlen (cond_string));
4562 b->addr_string = NULL;
4563 b->enable_state = bp_enabled;
4564 b->disposition = tempflag ? disp_del : disp_donttouch;
4570 hw_breakpoint_used_count (void)
4572 struct breakpoint *b;
4577 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4585 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4587 struct breakpoint *b;
4590 *other_type_used = 0;
4593 if (breakpoint_enabled (b))
4595 if (b->type == type)
4597 else if ((b->type == bp_hardware_watchpoint ||
4598 b->type == bp_read_watchpoint ||
4599 b->type == bp_access_watchpoint))
4600 *other_type_used = 1;
4606 /* Call this after hitting the longjmp() breakpoint. Use this to set
4607 a new breakpoint at the target of the jmp_buf.
4609 FIXME - This ought to be done by setting a temporary breakpoint
4610 that gets deleted automatically... */
4613 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
4615 struct breakpoint *b;
4618 if (b->type == bp_longjmp_resume)
4620 b->loc->requested_address = pc;
4621 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4623 b->enable_state = bp_enabled;
4624 b->frame_id = frame_id;
4625 check_duplicates (b);
4631 disable_watchpoints_before_interactive_call_start (void)
4633 struct breakpoint *b;
4637 if (((b->type == bp_watchpoint)
4638 || (b->type == bp_hardware_watchpoint)
4639 || (b->type == bp_read_watchpoint)
4640 || (b->type == bp_access_watchpoint)
4641 || ep_is_exception_catchpoint (b))
4642 && breakpoint_enabled (b))
4644 b->enable_state = bp_call_disabled;
4645 check_duplicates (b);
4651 enable_watchpoints_after_interactive_call_stop (void)
4653 struct breakpoint *b;
4657 if (((b->type == bp_watchpoint)
4658 || (b->type == bp_hardware_watchpoint)
4659 || (b->type == bp_read_watchpoint)
4660 || (b->type == bp_access_watchpoint)
4661 || ep_is_exception_catchpoint (b))
4662 && (b->enable_state == bp_call_disabled))
4664 b->enable_state = bp_enabled;
4665 check_duplicates (b);
4671 /* Set a breakpoint that will evaporate an end of command
4672 at address specified by SAL.
4673 Restrict it to frame FRAME if FRAME is nonzero. */
4676 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
4679 struct breakpoint *b;
4680 b = set_raw_breakpoint (sal, type);
4681 b->enable_state = bp_enabled;
4682 b->disposition = disp_donttouch;
4683 b->frame_id = frame_id;
4685 /* If we're debugging a multi-threaded program, then we
4686 want momentary breakpoints to be active in only a
4687 single thread of control. */
4688 if (in_thread_list (inferior_ptid))
4689 b->thread = pid_to_thread_id (inferior_ptid);
4695 /* Tell the user we have just set a breakpoint B. */
4698 mention (struct breakpoint *b)
4701 struct cleanup *old_chain, *ui_out_chain;
4702 struct ui_stream *stb;
4704 stb = ui_out_stream_new (uiout);
4705 old_chain = make_cleanup_ui_out_stream_delete (stb);
4707 /* FIXME: This is misplaced; mention() is called by things (like
4708 hitting a watchpoint) other than breakpoint creation. It should
4709 be possible to clean this up and at the same time replace the
4710 random calls to breakpoint_changed with this hook, as has already
4711 been done for deprecated_delete_breakpoint_hook and so on. */
4712 if (deprecated_create_breakpoint_hook)
4713 deprecated_create_breakpoint_hook (b);
4714 breakpoint_create_event (b->number);
4716 if (b->ops != NULL && b->ops->print_mention != NULL)
4717 b->ops->print_mention (b);
4722 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4725 ui_out_text (uiout, "Watchpoint ");
4726 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4727 ui_out_field_int (uiout, "number", b->number);
4728 ui_out_text (uiout, ": ");
4729 print_expression (b->exp, stb->stream);
4730 ui_out_field_stream (uiout, "exp", stb);
4731 do_cleanups (ui_out_chain);
4733 case bp_hardware_watchpoint:
4734 ui_out_text (uiout, "Hardware watchpoint ");
4735 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4736 ui_out_field_int (uiout, "number", b->number);
4737 ui_out_text (uiout, ": ");
4738 print_expression (b->exp, stb->stream);
4739 ui_out_field_stream (uiout, "exp", stb);
4740 do_cleanups (ui_out_chain);
4742 case bp_read_watchpoint:
4743 ui_out_text (uiout, "Hardware read watchpoint ");
4744 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4745 ui_out_field_int (uiout, "number", b->number);
4746 ui_out_text (uiout, ": ");
4747 print_expression (b->exp, stb->stream);
4748 ui_out_field_stream (uiout, "exp", stb);
4749 do_cleanups (ui_out_chain);
4751 case bp_access_watchpoint:
4752 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4753 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4754 ui_out_field_int (uiout, "number", b->number);
4755 ui_out_text (uiout, ": ");
4756 print_expression (b->exp, stb->stream);
4757 ui_out_field_stream (uiout, "exp", stb);
4758 do_cleanups (ui_out_chain);
4761 if (ui_out_is_mi_like_p (uiout))
4766 printf_filtered ("Breakpoint %d", b->number);
4769 case bp_hardware_breakpoint:
4770 if (ui_out_is_mi_like_p (uiout))
4775 printf_filtered ("Hardware assisted breakpoint %d", b->number);
4779 case bp_catch_unload:
4780 printf_filtered ("Catchpoint %d (%s %s)",
4782 (b->type == bp_catch_load) ? "load" : "unload",
4783 (b->dll_pathname != NULL) ?
4784 b->dll_pathname : "<any library>");
4787 case bp_catch_vfork:
4788 printf_filtered ("Catchpoint %d (%s)",
4790 (b->type == bp_catch_fork) ? "fork" : "vfork");
4793 printf_filtered ("Catchpoint %d (exec)",
4796 case bp_catch_catch:
4797 case bp_catch_throw:
4798 printf_filtered ("Catchpoint %d (%s)",
4800 (b->type == bp_catch_catch) ? "catch" : "throw");
4806 case bp_longjmp_resume:
4807 case bp_step_resume:
4808 case bp_through_sigtramp:
4810 case bp_watchpoint_scope:
4811 case bp_shlib_event:
4812 case bp_thread_event:
4813 case bp_overlay_event:
4821 printf_filtered (" (%s) pending.", b->addr_string);
4825 if (addressprint || b->source_file == NULL)
4827 printf_filtered (" at ");
4828 print_address_numeric (b->loc->address, 1, gdb_stdout);
4831 printf_filtered (": file %s, line %d.",
4832 b->source_file, b->line_number);
4835 do_cleanups (old_chain);
4836 if (ui_out_is_mi_like_p (uiout))
4838 printf_filtered ("\n");
4842 /* Add SALS.nelts breakpoints to the breakpoint table. For each
4843 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4844 COND[i] and COND_STRING[i] values.
4846 The parameter PENDING_BP points to a pending breakpoint that is
4847 the basis of the breakpoints currently being created. The pending
4848 breakpoint may contain a separate condition string or commands
4849 that were added after the initial pending breakpoint was created.
4851 NOTE: If the function succeeds, the caller is expected to cleanup
4852 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4853 array contents). If the function fails (error() is called), the
4854 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4855 COND and SALS arrays and each of those arrays contents. */
4858 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4859 struct expression **cond, char **cond_string,
4860 enum bptype type, enum bpdisp disposition,
4861 int thread, int ignore_count, int from_tty,
4862 struct breakpoint *pending_bp)
4864 if (type == bp_hardware_breakpoint)
4866 int i = hw_breakpoint_used_count ();
4867 int target_resources_ok =
4868 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4870 if (target_resources_ok == 0)
4871 error ("No hardware breakpoint support in the target.");
4872 else if (target_resources_ok < 0)
4873 error ("Hardware breakpoints used exceeds limit.");
4876 /* Now set all the breakpoints. */
4879 for (i = 0; i < sals.nelts; i++)
4881 struct breakpoint *b;
4882 struct symtab_and_line sal = sals.sals[i];
4885 describe_other_breakpoints (sal.pc, sal.section);
4887 b = set_raw_breakpoint (sal, type);
4888 set_breakpoint_count (breakpoint_count + 1);
4889 b->number = breakpoint_count;
4893 b->addr_string = addr_string[i];
4895 /* addr_string has to be used or breakpoint_re_set will delete
4897 xasprintf (&b->addr_string, "*0x%s", paddr (b->loc->address));
4898 b->cond_string = cond_string[i];
4899 b->ignore_count = ignore_count;
4900 b->enable_state = bp_enabled;
4901 b->disposition = disposition;
4902 /* If resolving a pending breakpoint, a check must be made to see if
4903 the user has specified a new condition or commands for the
4904 breakpoint. A new condition will override any condition that was
4905 initially specified with the initial breakpoint command. */
4909 if (pending_bp->cond_string)
4911 arg = pending_bp->cond_string;
4912 b->cond_string = savestring (arg, strlen (arg));
4913 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
4915 error ("Junk at end of pending breakpoint condition expression");
4917 /* If there are commands associated with the breakpoint, they should
4919 if (pending_bp->commands)
4920 b->commands = copy_command_lines (pending_bp->commands);
4922 /* We have to copy over the ignore_count and thread as well. */
4923 b->ignore_count = pending_bp->ignore_count;
4924 b->thread = pending_bp->thread;
4931 /* Parse ARG which is assumed to be a SAL specification possibly
4932 followed by conditionals. On return, SALS contains an array of SAL
4933 addresses found. ADDR_STRING contains a vector of (canonical)
4934 address strings. ARG points to the end of the SAL. */
4937 parse_breakpoint_sals (char **address,
4938 struct symtabs_and_lines *sals,
4939 char ***addr_string,
4942 char *addr_start = *address;
4943 *addr_string = NULL;
4944 /* If no arg given, or if first arg is 'if ', use the default
4946 if ((*address) == NULL
4947 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4949 if (default_breakpoint_valid)
4951 struct symtab_and_line sal;
4952 init_sal (&sal); /* initialize to zeroes */
4953 sals->sals = (struct symtab_and_line *)
4954 xmalloc (sizeof (struct symtab_and_line));
4955 sal.pc = default_breakpoint_address;
4956 sal.line = default_breakpoint_line;
4957 sal.symtab = default_breakpoint_symtab;
4958 sal.section = find_pc_overlay (sal.pc);
4959 sals->sals[0] = sal;
4963 error ("No default breakpoint address now.");
4967 /* Force almost all breakpoints to be in terms of the
4968 current_source_symtab (which is decode_line_1's default). This
4969 should produce the results we want almost all of the time while
4970 leaving default_breakpoint_* alone.
4971 ObjC: However, don't match an Objective-C method name which
4972 may have a '+' or '-' succeeded by a '[' */
4974 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
4976 if (default_breakpoint_valid
4978 || ((strchr ("+-", (*address)[0]) != NULL)
4979 && ((*address)[1] != '['))))
4980 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
4981 default_breakpoint_line, addr_string,
4984 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
4985 addr_string, not_found_ptr);
4987 /* For any SAL that didn't have a canonical string, fill one in. */
4988 if (sals->nelts > 0 && *addr_string == NULL)
4989 *addr_string = xcalloc (sals->nelts, sizeof (char **));
4990 if (addr_start != (*address))
4993 for (i = 0; i < sals->nelts; i++)
4995 /* Add the string if not present. */
4996 if ((*addr_string)[i] == NULL)
4997 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
5003 /* Convert each SAL into a real PC. Verify that the PC can be
5004 inserted as a breakpoint. If it can't throw an error. */
5007 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
5011 for (i = 0; i < sals->nelts; i++)
5013 resolve_sal_pc (&sals->sals[i]);
5015 /* It's possible for the PC to be nonzero, but still an illegal
5016 value on some targets.
5018 For example, on HP-UX if you start gdb, and before running the
5019 inferior you try to set a breakpoint on a shared library function
5020 "foo" where the inferior doesn't call "foo" directly but does
5021 pass its address to another function call, then we do find a
5022 minimal symbol for the "foo", but it's address is invalid.
5023 (Appears to be an index into a table that the loader sets up
5024 when the inferior is run.)
5026 Give the target a chance to bless sals.sals[i].pc before we
5027 try to make a breakpoint for it. */
5028 #ifdef DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE
5029 if (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
5031 if (address == NULL)
5032 error ("Cannot break without a running program.");
5034 error ("Cannot break on %s without a running program.",
5042 do_captured_parse_breakpoint (struct ui_out *ui, void *data)
5044 struct captured_parse_breakpoint_args *args = data;
5046 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
5047 args->not_found_ptr);
5052 /* Set a breakpoint according to ARG (function, linenum or *address)
5053 flag: first bit : 0 non-temporary, 1 temporary.
5054 second bit : 0 normal breakpoint, 1 hardware breakpoint.
5056 PENDING_BP is non-NULL when this function is being called to resolve
5057 a pending breakpoint. */
5060 break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp)
5062 int tempflag, hardwareflag;
5063 struct symtabs_and_lines sals;
5064 struct expression **cond = 0;
5065 struct symtab_and_line pending_sal;
5066 char **cond_string = (char **) NULL;
5069 char *addr_start = arg;
5071 struct cleanup *old_chain;
5072 struct cleanup *breakpoint_chain = NULL;
5073 struct captured_parse_breakpoint_args parse_args;
5077 int ignore_count = 0;
5080 hardwareflag = flag & BP_HARDWAREFLAG;
5081 tempflag = flag & BP_TEMPFLAG;
5087 parse_args.arg_p = &arg;
5088 parse_args.sals_p = &sals;
5089 parse_args.addr_string_p = &addr_string;
5090 parse_args.not_found_ptr = ¬_found;
5092 rc = catch_exceptions_with_msg (uiout, do_captured_parse_breakpoint,
5093 &parse_args, NULL, &err_msg,
5096 /* If caller is interested in rc value from parse, set value. */
5098 if (rc != GDB_RC_OK)
5100 /* Check for file or function not found. */
5103 /* If called to resolve pending breakpoint, just return error code. */
5107 error_output_message (NULL, err_msg);
5110 /* If pending breakpoint support is turned off, throw error. */
5112 if (pending_break_support == AUTO_BOOLEAN_FALSE)
5113 throw_exception (RETURN_ERROR);
5115 /* If pending breakpoint support is auto query and the user selects
5116 no, then simply return the error code. */
5117 if (pending_break_support == AUTO_BOOLEAN_AUTO &&
5118 !nquery ("Make breakpoint pending on future shared library load? "))
5121 /* At this point, either the user was queried about setting a
5122 pending breakpoint and selected yes, or pending breakpoint
5123 behavior is on and thus a pending breakpoint is defaulted
5124 on behalf of the user. */
5125 copy_arg = xstrdup (addr_start);
5126 addr_string = ©_arg;
5128 sals.sals = &pending_sal;
5135 else if (!sals.nelts)
5138 /* Create a chain of things that always need to be cleaned up. */
5139 old_chain = make_cleanup (null_cleanup, 0);
5143 /* Make sure that all storage allocated to SALS gets freed. */
5144 make_cleanup (xfree, sals.sals);
5146 /* Cleanup the addr_string array but not its contents. */
5147 make_cleanup (xfree, addr_string);
5150 /* Allocate space for all the cond expressions. */
5151 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5152 make_cleanup (xfree, cond);
5154 /* Allocate space for all the cond strings. */
5155 cond_string = xcalloc (sals.nelts, sizeof (char **));
5156 make_cleanup (xfree, cond_string);
5158 /* ----------------------------- SNIP -----------------------------
5159 Anything added to the cleanup chain beyond this point is assumed
5160 to be part of a breakpoint. If the breakpoint create succeeds
5161 then the memory is not reclaimed. */
5162 breakpoint_chain = make_cleanup (null_cleanup, 0);
5164 /* Mark the contents of the addr_string for cleanup. These go on
5165 the breakpoint_chain and only occure if the breakpoint create
5167 for (i = 0; i < sals.nelts; i++)
5169 if (addr_string[i] != NULL)
5170 make_cleanup (xfree, addr_string[i]);
5173 /* Resolve all line numbers to PC's and verify that the addresses
5174 are ok for the target. */
5176 breakpoint_sals_to_pc (&sals, addr_start);
5178 /* Verify that condition can be parsed, before setting any
5179 breakpoints. Allocate a separate condition expression for each
5181 thread = -1; /* No specific thread yet */
5184 for (i = 0; i < sals.nelts; i++)
5191 char *cond_start = NULL;
5192 char *cond_end = NULL;
5193 while (*tok == ' ' || *tok == '\t')
5198 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5201 toklen = end_tok - tok;
5203 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5205 tok = cond_start = end_tok + 1;
5206 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc),
5208 make_cleanup (xfree, cond[i]);
5210 cond_string[i] = savestring (cond_start,
5211 cond_end - cond_start);
5212 make_cleanup (xfree, cond_string[i]);
5214 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5220 thread = strtol (tok, &tok, 0);
5222 error ("Junk after thread keyword.");
5223 if (!valid_thread_id (thread))
5224 error ("Unknown thread %d\n", thread);
5227 error ("Junk at end of arguments.");
5230 create_breakpoints (sals, addr_string, cond, cond_string,
5231 hardwareflag ? bp_hardware_breakpoint
5233 tempflag ? disp_del : disp_donttouch,
5234 thread, ignore_count, from_tty,
5239 struct symtab_and_line sal;
5240 struct breakpoint *b;
5245 make_cleanup (xfree, copy_arg);
5247 b = set_raw_breakpoint (sal, hardwareflag ? bp_hardware_breakpoint
5249 set_breakpoint_count (breakpoint_count + 1);
5250 b->number = breakpoint_count;
5253 b->addr_string = *addr_string;
5254 b->cond_string = *cond_string;
5255 b->ignore_count = ignore_count;
5257 b->disposition = tempflag ? disp_del : disp_donttouch;
5258 b->from_tty = from_tty;
5265 warning ("Multiple breakpoints were set.");
5266 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
5268 /* That's it. Discard the cleanups for data inserted into the
5270 discard_cleanups (breakpoint_chain);
5271 /* But cleanup everything else. */
5272 do_cleanups (old_chain);
5277 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
5278 linenum or *address) with COND and IGNORE_COUNT. */
5280 struct captured_breakpoint_args
5291 do_captured_breakpoint (void *data)
5293 struct captured_breakpoint_args *args = data;
5294 struct symtabs_and_lines sals;
5295 struct expression **cond;
5296 struct cleanup *old_chain;
5297 struct cleanup *breakpoint_chain = NULL;
5304 /* Parse the source and lines spec. Delay check that the expression
5305 didn't contain trailing garbage until after cleanups are in
5309 address_end = args->address;
5311 parse_breakpoint_sals (&address_end, &sals, &addr_string, 0);
5316 /* Create a chain of things at always need to be cleaned up. */
5317 old_chain = make_cleanup (null_cleanup, 0);
5319 /* Always have a addr_string array, even if it is empty. */
5320 make_cleanup (xfree, addr_string);
5322 /* Make sure that all storage allocated to SALS gets freed. */
5323 make_cleanup (xfree, sals.sals);
5325 /* Allocate space for all the cond expressions. */
5326 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5327 make_cleanup (xfree, cond);
5329 /* Allocate space for all the cond strings. */
5330 cond_string = xcalloc (sals.nelts, sizeof (char **));
5331 make_cleanup (xfree, cond_string);
5333 /* ----------------------------- SNIP -----------------------------
5334 Anything added to the cleanup chain beyond this point is assumed
5335 to be part of a breakpoint. If the breakpoint create goes
5336 through then that memory is not cleaned up. */
5337 breakpoint_chain = make_cleanup (null_cleanup, 0);
5339 /* Mark the contents of the addr_string for cleanup. These go on
5340 the breakpoint_chain and only occure if the breakpoint create
5342 for (i = 0; i < sals.nelts; i++)
5344 if (addr_string[i] != NULL)
5345 make_cleanup (xfree, addr_string[i]);
5348 /* Wait until now before checking for garbage at the end of the
5349 address. That way cleanups can take care of freeing any
5351 if (*address_end != '\0')
5352 error ("Garbage %s following breakpoint address", address_end);
5354 /* Resolve all line numbers to PC's. */
5355 breakpoint_sals_to_pc (&sals, args->address);
5357 /* Verify that conditions can be parsed, before setting any
5359 for (i = 0; i < sals.nelts; i++)
5361 if (args->condition != NULL)
5363 char *tok = args->condition;
5364 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
5366 error ("Garbage %s follows condition", tok);
5367 make_cleanup (xfree, cond[i]);
5368 cond_string[i] = xstrdup (args->condition);
5372 create_breakpoints (sals, addr_string, cond, cond_string,
5373 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
5374 args->tempflag ? disp_del : disp_donttouch,
5375 args->thread, args->ignore_count, 0/*from-tty*/,
5376 NULL/*pending_bp*/);
5378 /* That's it. Discard the cleanups for data inserted into the
5380 discard_cleanups (breakpoint_chain);
5381 /* But cleanup everything else. */
5382 do_cleanups (old_chain);
5387 gdb_breakpoint (char *address, char *condition,
5388 int hardwareflag, int tempflag,
5389 int thread, int ignore_count)
5391 struct captured_breakpoint_args args;
5392 args.address = address;
5393 args.condition = condition;
5394 args.hardwareflag = hardwareflag;
5395 args.tempflag = tempflag;
5396 args.thread = thread;
5397 args.ignore_count = ignore_count;
5398 return catch_errors (do_captured_breakpoint, &args,
5399 NULL, RETURN_MASK_ALL);
5404 break_at_finish_at_depth_command_1 (char *arg, int flag, int from_tty)
5406 struct frame_info *frame;
5407 CORE_ADDR low, high, selected_pc = 0;
5408 char *extra_args = NULL;
5410 int extra_args_len = 0, if_arg = 0;
5413 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5416 if (default_breakpoint_valid)
5418 if (deprecated_selected_frame)
5420 selected_pc = get_frame_pc (deprecated_selected_frame);
5425 error ("No selected frame.");
5428 error ("No default breakpoint address now.");
5432 extra_args = strchr (arg, ' ');
5436 extra_args_len = strlen (extra_args);
5437 level_arg = (char *) xmalloc (extra_args - arg);
5438 strncpy (level_arg, arg, extra_args - arg - 1);
5439 level_arg[extra_args - arg - 1] = '\0';
5443 level_arg = (char *) xmalloc (strlen (arg) + 1);
5444 strcpy (level_arg, arg);
5447 frame = parse_frame_specification (level_arg);
5449 selected_pc = get_frame_pc (frame);
5456 extra_args_len = strlen (arg);
5461 if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
5465 addr_string = xstrprintf ("*0x%s %s", paddr_nz (high), extra_args);
5467 addr_string = xstrprintf ("*0x%s", paddr_nz (high));
5468 break_command_1 (addr_string, flag, from_tty, NULL);
5469 xfree (addr_string);
5472 error ("No function contains the specified address");
5475 error ("Unable to set breakpoint at procedure exit");
5480 break_at_finish_command_1 (char *arg, int flag, int from_tty)
5482 char *addr_string, *break_string, *beg_addr_string;
5483 CORE_ADDR low, high;
5484 struct symtabs_and_lines sals;
5485 struct symtab_and_line sal;
5486 struct cleanup *old_chain;
5487 char *extra_args = NULL;
5488 int extra_args_len = 0;
5492 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5494 if (default_breakpoint_valid)
5496 if (deprecated_selected_frame)
5498 addr_string = xstrprintf ("*0x%s",
5499 paddr_nz (get_frame_pc (deprecated_selected_frame)));
5504 error ("No selected frame.");
5507 error ("No default breakpoint address now.");
5511 addr_string = (char *) xmalloc (strlen (arg) + 1);
5512 strcpy (addr_string, arg);
5518 extra_args_len = strlen (arg);
5522 /* get the stuff after the function name or address */
5523 extra_args = strchr (arg, ' ');
5527 extra_args_len = strlen (extra_args);
5534 beg_addr_string = addr_string;
5535 sals = decode_line_1 (&addr_string, 1, (struct symtab *) NULL, 0,
5536 (char ***) NULL, NULL);
5538 xfree (beg_addr_string);
5539 old_chain = make_cleanup (xfree, sals.sals);
5540 for (i = 0; (i < sals.nelts); i++)
5543 if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
5547 break_string = xstrprintf ("*0x%s %s", paddr_nz (high),
5550 break_string = xstrprintf ("*0x%s", paddr_nz (high));
5551 break_command_1 (break_string, flag, from_tty, NULL);
5552 xfree (break_string);
5555 error ("No function contains the specified address");
5559 warning ("Multiple breakpoints were set.\n");
5560 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
5562 do_cleanups (old_chain);
5566 /* Helper function for break_command_1 and disassemble_command. */
5569 resolve_sal_pc (struct symtab_and_line *sal)
5573 if (sal->pc == 0 && sal->symtab != NULL)
5575 if (!find_line_pc (sal->symtab, sal->line, &pc))
5576 error ("No line %d in file \"%s\".",
5577 sal->line, sal->symtab->filename);
5581 if (sal->section == 0 && sal->symtab != NULL)
5583 struct blockvector *bv;
5588 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5591 b = BLOCKVECTOR_BLOCK (bv, index);
5592 sym = block_function (b);
5595 fixup_symbol_section (sym, sal->symtab->objfile);
5596 sal->section = SYMBOL_BFD_SECTION (sym);
5600 /* It really is worthwhile to have the section, so we'll just
5601 have to look harder. This case can be executed if we have
5602 line numbers but no functions (as can happen in assembly
5605 struct minimal_symbol *msym;
5607 msym = lookup_minimal_symbol_by_pc (sal->pc);
5609 sal->section = SYMBOL_BFD_SECTION (msym);
5616 break_command (char *arg, int from_tty)
5618 break_command_1 (arg, 0, from_tty, NULL);
5622 break_at_finish_command (char *arg, int from_tty)
5624 break_at_finish_command_1 (arg, 0, from_tty);
5628 break_at_finish_at_depth_command (char *arg, int from_tty)
5630 break_at_finish_at_depth_command_1 (arg, 0, from_tty);
5634 tbreak_command (char *arg, int from_tty)
5636 break_command_1 (arg, BP_TEMPFLAG, from_tty, NULL);
5640 tbreak_at_finish_command (char *arg, int from_tty)
5642 break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
5646 hbreak_command (char *arg, int from_tty)
5648 break_command_1 (arg, BP_HARDWAREFLAG, from_tty, NULL);
5652 thbreak_command (char *arg, int from_tty)
5654 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty, NULL);
5658 stop_command (char *arg, int from_tty)
5660 printf_filtered ("Specify the type of breakpoint to set.\n\
5661 Usage: stop in <function | address>\n\
5666 stopin_command (char *arg, int from_tty)
5670 if (arg == (char *) NULL)
5672 else if (*arg != '*')
5677 /* look for a ':'. If this is a line number specification, then
5678 say it is bad, otherwise, it should be an address or
5679 function/method name */
5680 while (*argptr && !hasColon)
5682 hasColon = (*argptr == ':');
5687 badInput = (*argptr != ':'); /* Not a class::method */
5689 badInput = isdigit (*arg); /* a simple line number */
5693 printf_filtered ("Usage: stop in <function | address>\n");
5695 break_command_1 (arg, 0, from_tty, NULL);
5699 stopat_command (char *arg, int from_tty)
5703 if (arg == (char *) NULL || *arg == '*') /* no line number */
5710 /* look for a ':'. If there is a '::' then get out, otherwise
5711 it is probably a line number. */
5712 while (*argptr && !hasColon)
5714 hasColon = (*argptr == ':');
5719 badInput = (*argptr == ':'); /* we have class::method */
5721 badInput = !isdigit (*arg); /* not a line number */
5725 printf_filtered ("Usage: stop at <line>\n");
5727 break_command_1 (arg, 0, from_tty, NULL);
5730 /* accessflag: hw_write: watch write,
5731 hw_read: watch read,
5732 hw_access: watch access (read or write) */
5734 watch_command_1 (char *arg, int accessflag, int from_tty)
5736 struct breakpoint *b;
5737 struct symtab_and_line sal;
5738 struct expression *exp;
5739 struct block *exp_valid_block;
5740 struct value *val, *mark;
5741 struct frame_info *frame;
5742 struct frame_info *prev_frame = NULL;
5743 char *exp_start = NULL;
5744 char *exp_end = NULL;
5745 char *tok, *end_tok;
5747 char *cond_start = NULL;
5748 char *cond_end = NULL;
5749 struct expression *cond = NULL;
5750 int i, other_type_used, target_resources_ok = 0;
5751 enum bptype bp_type;
5754 init_sal (&sal); /* initialize to zeroes */
5756 /* Parse arguments. */
5757 innermost_block = NULL;
5759 exp = parse_exp_1 (&arg, 0, 0);
5761 exp_valid_block = innermost_block;
5762 mark = value_mark ();
5763 val = evaluate_expression (exp);
5764 release_value (val);
5765 if (VALUE_LAZY (val))
5766 value_fetch_lazy (val);
5769 while (*tok == ' ' || *tok == '\t')
5773 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5776 toklen = end_tok - tok;
5777 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5779 tok = cond_start = end_tok + 1;
5780 cond = parse_exp_1 (&tok, 0, 0);
5784 error ("Junk at end of command.");
5786 if (accessflag == hw_read)
5787 bp_type = bp_read_watchpoint;
5788 else if (accessflag == hw_access)
5789 bp_type = bp_access_watchpoint;
5791 bp_type = bp_hardware_watchpoint;
5793 mem_cnt = can_use_hardware_watchpoint (val);
5794 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5795 error ("Expression cannot be implemented with read/access watchpoint.");
5798 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5799 target_resources_ok =
5800 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5802 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5803 error ("Target does not support this type of hardware watchpoint.");
5805 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5806 error ("Target can only support one kind of HW watchpoint at a time.");
5809 #if defined(HPUXHPPA)
5810 /* On HP-UX if you set a h/w
5811 watchpoint before the "run" command, the inferior dies with a e.g.,
5812 SIGILL once you start it. I initially believed this was due to a
5813 bad interaction between page protection traps and the initial
5814 startup sequence by the dynamic linker.
5816 However, I tried avoiding that by having HP-UX's implementation of
5817 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5818 yet, which forced slow watches before a "run" or "attach", and it
5819 still fails somewhere in the startup code.
5821 Until I figure out what's happening, I'm disallowing watches altogether
5822 before the "run" or "attach" command. We'll tell the user they must
5823 set watches after getting the program started. */
5824 if (!target_has_execution)
5826 warning ("can't do that without a running program; try \"break main\", \"run\" first");
5829 #endif /* HPUXHPPA */
5831 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5832 watchpoint could not be set. */
5833 if (!mem_cnt || target_resources_ok <= 0)
5834 bp_type = bp_watchpoint;
5836 /* Now set up the breakpoint. */
5837 b = set_raw_breakpoint (sal, bp_type);
5838 set_breakpoint_count (breakpoint_count + 1);
5839 b->number = breakpoint_count;
5840 b->disposition = disp_donttouch;
5842 b->exp_valid_block = exp_valid_block;
5843 b->exp_string = savestring (exp_start, exp_end - exp_start);
5847 b->cond_string = savestring (cond_start, cond_end - cond_start);
5851 frame = block_innermost_frame (exp_valid_block);
5854 prev_frame = get_prev_frame (frame);
5855 b->watchpoint_frame = get_frame_id (frame);
5859 memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame));
5862 /* If the expression is "local", then set up a "watchpoint scope"
5863 breakpoint at the point where we've left the scope of the watchpoint
5865 if (innermost_block)
5869 struct breakpoint *scope_breakpoint;
5870 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
5871 bp_watchpoint_scope);
5873 scope_breakpoint->enable_state = bp_enabled;
5875 /* Automatically delete the breakpoint when it hits. */
5876 scope_breakpoint->disposition = disp_del;
5878 /* Only break in the proper frame (help with recursion). */
5879 scope_breakpoint->frame_id = get_frame_id (prev_frame);
5881 /* Set the address at which we will stop. */
5882 scope_breakpoint->loc->requested_address
5883 = get_frame_pc (prev_frame);
5884 scope_breakpoint->loc->address
5885 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
5886 scope_breakpoint->type);
5888 /* The scope breakpoint is related to the watchpoint. We
5889 will need to act on them together. */
5890 b->related_breakpoint = scope_breakpoint;
5893 value_free_to_mark (mark);
5897 /* Return count of locations need to be watched and can be handled
5898 in hardware. If the watchpoint can not be handled
5899 in hardware return zero. */
5901 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5902 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5903 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
5907 can_use_hardware_watchpoint (struct value *v)
5909 int found_memory_cnt = 0;
5910 struct value *head = v;
5912 /* Did the user specifically forbid us to use hardware watchpoints? */
5913 if (!can_use_hw_watchpoints)
5916 /* Make sure that the value of the expression depends only upon
5917 memory contents, and values computed from them within GDB. If we
5918 find any register references or function calls, we can't use a
5919 hardware watchpoint.
5921 The idea here is that evaluating an expression generates a series
5922 of values, one holding the value of every subexpression. (The
5923 expression a*b+c has five subexpressions: a, b, a*b, c, and
5924 a*b+c.) GDB's values hold almost enough information to establish
5925 the criteria given above --- they identify memory lvalues,
5926 register lvalues, computed values, etcetera. So we can evaluate
5927 the expression, and then scan the chain of values that leaves
5928 behind to decide whether we can detect any possible change to the
5929 expression's final value using only hardware watchpoints.
5931 However, I don't think that the values returned by inferior
5932 function calls are special in any way. So this function may not
5933 notice that an expression involving an inferior function call
5934 can't be watched with hardware watchpoints. FIXME. */
5935 for (; v; v = v->next)
5937 if (VALUE_LVAL (v) == lval_memory)
5940 /* A lazy memory lvalue is one that GDB never needed to fetch;
5941 we either just used its address (e.g., `a' in `a.b') or
5942 we never needed it at all (e.g., `a' in `a,b'). */
5946 /* Ahh, memory we actually used! Check if we can cover
5947 it with hardware watchpoints. */
5948 struct type *vtype = check_typedef (VALUE_TYPE (v));
5950 /* We only watch structs and arrays if user asked for it
5951 explicitly, never if they just happen to appear in a
5952 middle of some value chain. */
5954 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5955 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5957 CORE_ADDR vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
5958 int len = TYPE_LENGTH (VALUE_TYPE (v));
5960 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5967 else if (v->lval != not_lval && v->modifiable == 0)
5968 return 0; /* ??? What does this represent? */
5969 else if (v->lval == lval_register)
5970 return 0; /* cannot watch a register with a HW watchpoint */
5973 /* The expression itself looks suitable for using a hardware
5974 watchpoint, but give the target machine a chance to reject it. */
5975 return found_memory_cnt;
5979 watch_command_wrapper (char *arg, int from_tty)
5981 watch_command (arg, from_tty);
5985 watch_command (char *arg, int from_tty)
5987 watch_command_1 (arg, hw_write, from_tty);
5991 rwatch_command_wrapper (char *arg, int from_tty)
5993 rwatch_command (arg, from_tty);
5997 rwatch_command (char *arg, int from_tty)
5999 watch_command_1 (arg, hw_read, from_tty);
6003 awatch_command_wrapper (char *arg, int from_tty)
6005 awatch_command (arg, from_tty);
6009 awatch_command (char *arg, int from_tty)
6011 watch_command_1 (arg, hw_access, from_tty);
6015 /* Helper routines for the until_command routine in infcmd.c. Here
6016 because it uses the mechanisms of breakpoints. */
6018 /* This function is called by fetch_inferior_event via the
6019 cmd_continuation pointer, to complete the until command. It takes
6020 care of cleaning up the temporary breakpoints set up by the until
6023 until_break_command_continuation (struct continuation_arg *arg)
6025 struct cleanup *cleanups;
6027 cleanups = (struct cleanup *) arg->data.pointer;
6028 do_exec_cleanups (cleanups);
6032 until_break_command (char *arg, int from_tty, int anywhere)
6034 struct symtabs_and_lines sals;
6035 struct symtab_and_line sal;
6036 struct frame_info *prev_frame = get_prev_frame (deprecated_selected_frame);
6037 struct breakpoint *breakpoint;
6038 struct cleanup *old_chain;
6039 struct continuation_arg *arg1;
6042 clear_proceed_status ();
6044 /* Set a breakpoint where the user wants it and at return from
6047 if (default_breakpoint_valid)
6048 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
6049 default_breakpoint_line, (char ***) NULL, NULL);
6051 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
6052 0, (char ***) NULL, NULL);
6054 if (sals.nelts != 1)
6055 error ("Couldn't get information on specified line.");
6058 xfree (sals.sals); /* malloc'd, so freed */
6061 error ("Junk at end of arguments.");
6063 resolve_sal_pc (&sal);
6066 /* If the user told us to continue until a specified location,
6067 we don't specify a frame at which we need to stop. */
6068 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
6070 /* Otherwise, specify the current frame, because we want to stop only
6071 at the very same frame. */
6072 breakpoint = set_momentary_breakpoint (sal,
6073 get_frame_id (deprecated_selected_frame),
6076 if (!event_loop_p || !target_can_async_p ())
6077 old_chain = make_cleanup_delete_breakpoint (breakpoint);
6079 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
6081 /* If we are running asynchronously, and the target supports async
6082 execution, we are not waiting for the target to stop, in the call
6083 tp proceed, below. This means that we cannot delete the
6084 brekpoints until the target has actually stopped. The only place
6085 where we get a chance to do that is in fetch_inferior_event, so
6086 we must set things up for that. */
6088 if (event_loop_p && target_can_async_p ())
6090 /* In this case the arg for the continuation is just the point
6091 in the exec_cleanups chain from where to start doing
6092 cleanups, because all the continuation does is the cleanups in
6093 the exec_cleanup_chain. */
6095 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
6097 arg1->data.pointer = old_chain;
6099 add_continuation (until_break_command_continuation, arg1);
6102 /* Keep within the current frame, or in frames called by the current
6106 sal = find_pc_line (get_frame_pc (prev_frame), 0);
6107 sal.pc = get_frame_pc (prev_frame);
6108 breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
6110 if (!event_loop_p || !target_can_async_p ())
6111 make_cleanup_delete_breakpoint (breakpoint);
6113 make_exec_cleanup_delete_breakpoint (breakpoint);
6116 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
6117 /* Do the cleanups now, anly if we are not running asynchronously,
6118 of if we are, but the target is still synchronous. */
6119 if (!event_loop_p || !target_can_async_p ())
6120 do_cleanups (old_chain);
6124 ep_skip_leading_whitespace (char **s)
6126 if ((s == NULL) || (*s == NULL))
6128 while (isspace (**s))
6132 /* This function examines a string, and attempts to find a token
6133 that might be an event name in the leading characters. If a
6134 possible match is found, a pointer to the last character of
6135 the token is returned. Else, NULL is returned. */
6138 ep_find_event_name_end (char *arg)
6141 char *event_name_end = NULL;
6143 /* If we could depend upon the presense of strrpbrk, we'd use that... */
6147 /* We break out of the loop when we find a token delimiter.
6148 Basically, we're looking for alphanumerics and underscores;
6149 anything else delimites the token. */
6152 if (!isalnum (*s) && (*s != '_'))
6158 return event_name_end;
6162 /* This function attempts to parse an optional "if <cond>" clause
6163 from the arg string. If one is not found, it returns NULL.
6165 Else, it returns a pointer to the condition string. (It does not
6166 attempt to evaluate the string against a particular block.) And,
6167 it updates arg to point to the first character following the parsed
6168 if clause in the arg string. */
6171 ep_parse_optional_if_clause (char **arg)
6175 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
6178 /* Skip the "if" keyword. */
6181 /* Skip any extra leading whitespace, and record the start of the
6182 condition string. */
6183 ep_skip_leading_whitespace (arg);
6186 /* Assume that the condition occupies the remainder of the arg string. */
6187 (*arg) += strlen (cond_string);
6192 /* This function attempts to parse an optional filename from the arg
6193 string. If one is not found, it returns NULL.
6195 Else, it returns a pointer to the parsed filename. (This function
6196 makes no attempt to verify that a file of that name exists, or is
6197 accessible.) And, it updates arg to point to the first character
6198 following the parsed filename in the arg string.
6200 Note that clients needing to preserve the returned filename for
6201 future access should copy it to their own buffers. */
6203 ep_parse_optional_filename (char **arg)
6205 static char filename[1024];
6210 if ((*arg_p == '\0') || isspace (*arg_p))
6228 /* Commands to deal with catching events, such as signals, exceptions,
6229 process start/exit, etc. */
6233 catch_fork, catch_vfork
6238 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6241 char *cond_string = NULL;
6243 ep_skip_leading_whitespace (&arg);
6245 /* The allowed syntax is:
6247 catch [v]fork if <cond>
6249 First, check if there's an if clause. */
6250 cond_string = ep_parse_optional_if_clause (&arg);
6252 if ((*arg != '\0') && !isspace (*arg))
6253 error ("Junk at end of arguments.");
6255 /* If this target supports it, create a fork or vfork catchpoint
6256 and enable reporting of such events. */
6260 create_fork_event_catchpoint (tempflag, cond_string);
6263 create_vfork_event_catchpoint (tempflag, cond_string);
6266 error ("unsupported or unknown fork kind; cannot catch it");
6272 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6274 char *cond_string = NULL;
6276 ep_skip_leading_whitespace (&arg);
6278 /* The allowed syntax is:
6280 catch exec if <cond>
6282 First, check if there's an if clause. */
6283 cond_string = ep_parse_optional_if_clause (&arg);
6285 if ((*arg != '\0') && !isspace (*arg))
6286 error ("Junk at end of arguments.");
6288 /* If this target supports it, create an exec catchpoint
6289 and enable reporting of such events. */
6290 create_exec_event_catchpoint (tempflag, cond_string);
6294 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6296 char *dll_pathname = NULL;
6297 char *cond_string = NULL;
6299 ep_skip_leading_whitespace (&arg);
6301 /* The allowed syntax is:
6303 catch load if <cond>
6304 catch load <filename>
6305 catch load <filename> if <cond>
6307 The user is not allowed to specify the <filename> after an
6310 We'll ignore the pathological case of a file named "if".
6312 First, check if there's an if clause. If so, then there
6313 cannot be a filename. */
6314 cond_string = ep_parse_optional_if_clause (&arg);
6316 /* If there was an if clause, then there cannot be a filename.
6317 Else, there might be a filename and an if clause. */
6318 if (cond_string == NULL)
6320 dll_pathname = ep_parse_optional_filename (&arg);
6321 ep_skip_leading_whitespace (&arg);
6322 cond_string = ep_parse_optional_if_clause (&arg);
6325 if ((*arg != '\0') && !isspace (*arg))
6326 error ("Junk at end of arguments.");
6328 /* Create a load breakpoint that only triggers when a load of
6329 the specified dll (or any dll, if no pathname was specified)
6331 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6332 dll_pathname, cond_string);
6336 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6338 char *dll_pathname = NULL;
6339 char *cond_string = NULL;
6341 ep_skip_leading_whitespace (&arg);
6343 /* The allowed syntax is:
6345 catch unload if <cond>
6346 catch unload <filename>
6347 catch unload <filename> if <cond>
6349 The user is not allowed to specify the <filename> after an
6352 We'll ignore the pathological case of a file named "if".
6354 First, check if there's an if clause. If so, then there
6355 cannot be a filename. */
6356 cond_string = ep_parse_optional_if_clause (&arg);
6358 /* If there was an if clause, then there cannot be a filename.
6359 Else, there might be a filename and an if clause. */
6360 if (cond_string == NULL)
6362 dll_pathname = ep_parse_optional_filename (&arg);
6363 ep_skip_leading_whitespace (&arg);
6364 cond_string = ep_parse_optional_if_clause (&arg);
6367 if ((*arg != '\0') && !isspace (*arg))
6368 error ("Junk at end of arguments.");
6370 /* Create an unload breakpoint that only triggers when an unload of
6371 the specified dll (or any dll, if no pathname was specified)
6373 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6374 dll_pathname, cond_string);
6377 /* Commands to deal with catching exceptions. */
6379 /* Set a breakpoint at the specified callback routine for an
6380 exception event callback */
6383 create_exception_catchpoint (int tempflag, char *cond_string,
6384 enum exception_event_kind ex_event,
6385 struct symtab_and_line *sal)
6387 struct breakpoint *b;
6388 int thread = -1; /* All threads. */
6391 if (!sal) /* no exception support? */
6396 case EX_EVENT_THROW:
6397 bptype = bp_catch_throw;
6399 case EX_EVENT_CATCH:
6400 bptype = bp_catch_catch;
6402 default: /* error condition */
6403 error ("Internal error -- invalid catchpoint kind");
6406 b = set_raw_breakpoint (*sal, bptype);
6407 set_breakpoint_count (breakpoint_count + 1);
6408 b->number = breakpoint_count;
6410 b->cond_string = (cond_string == NULL) ?
6411 NULL : savestring (cond_string, strlen (cond_string));
6413 b->addr_string = NULL;
6414 b->enable_state = bp_enabled;
6415 b->disposition = tempflag ? disp_del : disp_donttouch;
6419 static enum print_stop_action
6420 print_exception_catchpoint (struct breakpoint *b)
6422 annotate_catchpoint (b->number);
6424 if (strstr (b->addr_string, "throw") != NULL)
6425 printf_filtered ("\nCatchpoint %d (exception thrown)\n",
6428 printf_filtered ("\nCatchpoint %d (exception caught)\n",
6431 return PRINT_SRC_AND_LOC;
6435 print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6440 ui_out_field_core_addr (uiout, "addr", b->loc->address);
6443 *last_addr = b->loc->address;
6444 if (strstr (b->addr_string, "throw") != NULL)
6445 ui_out_field_string (uiout, "what", "exception throw");
6447 ui_out_field_string (uiout, "what", "exception catch");
6451 print_mention_exception_catchpoint (struct breakpoint *b)
6453 if (strstr (b->addr_string, "throw") != NULL)
6454 printf_filtered ("Catchpoint %d (throw)", b->number);
6456 printf_filtered ("Catchpoint %d (catch)", b->number);
6459 static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6460 print_exception_catchpoint,
6461 print_one_exception_catchpoint,
6462 print_mention_exception_catchpoint
6466 handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6467 enum exception_event_kind ex_event, int from_tty)
6469 char *trigger_func_name, *nameptr;
6470 struct symtabs_and_lines sals;
6471 struct breakpoint *b;
6473 if (ex_event == EX_EVENT_CATCH)
6474 trigger_func_name = xstrdup ("__cxa_begin_catch");
6476 trigger_func_name = xstrdup ("__cxa_throw");
6478 nameptr = trigger_func_name;
6479 sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
6480 if (sals.nelts == 0)
6482 xfree (trigger_func_name);
6486 b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
6487 set_breakpoint_count (breakpoint_count + 1);
6488 b->number = breakpoint_count;
6490 b->cond_string = (cond_string == NULL) ?
6491 NULL : savestring (cond_string, strlen (cond_string));
6493 b->addr_string = trigger_func_name;
6494 b->enable_state = bp_enabled;
6495 b->disposition = tempflag ? disp_del : disp_donttouch;
6496 b->ops = &gnu_v3_exception_catchpoint_ops;
6503 /* Deal with "catch catch" and "catch throw" commands */
6506 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6507 int tempflag, int from_tty)
6509 char *cond_string = NULL;
6510 struct symtab_and_line *sal = NULL;
6512 ep_skip_leading_whitespace (&arg);
6514 cond_string = ep_parse_optional_if_clause (&arg);
6516 if ((*arg != '\0') && !isspace (*arg))
6517 error ("Junk at end of arguments.");
6519 if ((ex_event != EX_EVENT_THROW) &&
6520 (ex_event != EX_EVENT_CATCH))
6521 error ("Unsupported or unknown exception event; cannot catch it");
6523 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6526 /* See if we can find a callback routine */
6527 sal = target_enable_exception_callback (ex_event, 1);
6531 /* We have callbacks from the runtime system for exceptions.
6532 Set a breakpoint on the sal found, if no errors */
6533 if (sal != (struct symtab_and_line *) -1)
6534 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6536 return; /* something went wrong with setting up callbacks */
6539 warning ("Unsupported with this platform/compiler combination.");
6542 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6543 inside a catch_errors */
6546 cover_target_enable_exception_callback (void *arg)
6548 args_for_catchpoint_enable *args = arg;
6549 struct symtab_and_line *sal;
6550 sal = target_enable_exception_callback (args->kind, args->enable_p);
6553 else if (sal == (struct symtab_and_line *) -1)
6556 return 1; /*is valid */
6560 catch_command_1 (char *arg, int tempflag, int from_tty)
6563 /* The first argument may be an event name, such as "start" or "load".
6564 If so, then handle it as such. If it doesn't match an event name,
6565 then attempt to interpret it as an exception name. (This latter is
6566 the v4.16-and-earlier GDB meaning of the "catch" command.)
6568 First, try to find the bounds of what might be an event name. */
6569 char *arg1_start = arg;
6573 if (arg1_start == NULL)
6575 /* Old behaviour was to use pre-v-4.16 syntax */
6576 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6578 /* Now, this is not allowed */
6579 error ("Catch requires an event name.");
6582 arg1_end = ep_find_event_name_end (arg1_start);
6583 if (arg1_end == NULL)
6584 error ("catch requires an event");
6585 arg1_length = arg1_end + 1 - arg1_start;
6587 /* Try to match what we found against known event names. */
6588 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6590 error ("Catch of signal not yet implemented");
6592 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6594 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6595 tempflag, from_tty);
6597 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6599 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6600 tempflag, from_tty);
6602 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6604 error ("Catch of thread_start not yet implemented");
6606 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6608 error ("Catch of thread_exit not yet implemented");
6610 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6612 error ("Catch of thread_join not yet implemented");
6614 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6616 error ("Catch of start not yet implemented");
6618 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6620 error ("Catch of exit not yet implemented");
6622 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6624 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6626 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6628 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6630 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6632 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6634 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6636 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6638 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6640 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6642 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6644 error ("Catch of stop not yet implemented");
6647 /* This doesn't appear to be an event name */
6651 /* Pre-v.4.16 behaviour was to treat the argument
6652 as the name of an exception */
6653 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6654 /* Now this is not allowed */
6655 error ("Unknown event kind specified for catch");
6660 /* Used by the gui, could be made a worker for other things. */
6663 set_breakpoint_sal (struct symtab_and_line sal)
6665 struct breakpoint *b;
6666 b = set_raw_breakpoint (sal, bp_breakpoint);
6667 set_breakpoint_count (breakpoint_count + 1);
6668 b->number = breakpoint_count;
6675 catch_command (char *arg, int from_tty)
6677 catch_command_1 (arg, 0, from_tty);
6682 tcatch_command (char *arg, int from_tty)
6684 catch_command_1 (arg, 1, from_tty);
6687 /* Delete breakpoints by address or line. */
6690 clear_command (char *arg, int from_tty)
6692 struct breakpoint *b, *tmp, *prev, *found;
6694 struct symtabs_and_lines sals;
6695 struct symtab_and_line sal;
6700 sals = decode_line_spec (arg, 1);
6705 sals.sals = (struct symtab_and_line *)
6706 xmalloc (sizeof (struct symtab_and_line));
6707 make_cleanup (xfree, sals.sals);
6708 init_sal (&sal); /* initialize to zeroes */
6709 sal.line = default_breakpoint_line;
6710 sal.symtab = default_breakpoint_symtab;
6711 sal.pc = default_breakpoint_address;
6712 if (sal.symtab == 0)
6713 error ("No source file specified.");
6721 /* For each line spec given, delete bps which correspond
6722 to it. Do it in two passes, solely to preserve the current
6723 behavior that from_tty is forced true if we delete more than
6727 for (i = 0; i < sals.nelts; i++)
6729 /* If exact pc given, clear bpts at that pc.
6730 If line given (pc == 0), clear all bpts on specified line.
6731 If defaulting, clear all bpts on default line
6734 defaulting sal.pc != 0 tests to do
6739 1 0 <can't happen> */
6744 /* Find all matching breakpoints, remove them from the
6745 breakpoint chain, and add them to the 'found' chain. */
6746 ALL_BREAKPOINTS_SAFE (b, tmp)
6748 /* Are we going to delete b? */
6749 if (b->type != bp_none
6750 && b->type != bp_watchpoint
6751 && b->type != bp_hardware_watchpoint
6752 && b->type != bp_read_watchpoint
6753 && b->type != bp_access_watchpoint
6754 /* Not if b is a watchpoint of any sort... */
6755 && (((sal.pc && (b->loc->address == sal.pc))
6756 && (!section_is_overlay (b->loc->section)
6757 || b->loc->section == sal.section))
6758 /* Yes, if sal.pc matches b (modulo overlays). */
6759 || ((default_match || (0 == sal.pc))
6760 && b->source_file != NULL
6761 && sal.symtab != NULL
6762 && strcmp (b->source_file, sal.symtab->filename) == 0
6763 && b->line_number == sal.line)))
6764 /* Yes, if sal source file and line matches b. */
6766 /* Remove it from breakpoint_chain... */
6767 if (b == breakpoint_chain)
6769 /* b is at the head of the list */
6770 breakpoint_chain = b->next;
6774 prev->next = b->next;
6776 /* And add it to 'found' chain. */
6782 /* Keep b, and keep a pointer to it. */
6787 /* Now go thru the 'found' chain and delete them. */
6791 error ("No breakpoint at %s.", arg);
6793 error ("No breakpoint at this line.");
6797 from_tty = 1; /* Always report if deleted more than one */
6799 printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6800 breakpoints_changed ();
6804 printf_unfiltered ("%d ", found->number);
6806 delete_breakpoint (found);
6810 putchar_unfiltered ('\n');
6813 /* Delete breakpoint in BS if they are `delete' breakpoints and
6814 all breakpoints that are marked for deletion, whether hit or not.
6815 This is called after any breakpoint is hit, or after errors. */
6818 breakpoint_auto_delete (bpstat bs)
6820 struct breakpoint *b, *temp;
6822 for (; bs; bs = bs->next)
6823 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6825 delete_breakpoint (bs->breakpoint_at);
6827 ALL_BREAKPOINTS_SAFE (b, temp)
6829 if (b->disposition == disp_del_at_next_stop)
6830 delete_breakpoint (b);
6834 /* Delete a breakpoint and clean up all traces of it in the data
6838 delete_breakpoint (struct breakpoint *bpt)
6840 struct breakpoint *b;
6842 struct bp_location *loc;
6845 error ("Internal error (attempted to delete a NULL breakpoint)");
6848 /* Has this bp already been deleted? This can happen because multiple
6849 lists can hold pointers to bp's. bpstat lists are especial culprits.
6851 One example of this happening is a watchpoint's scope bp. When the
6852 scope bp triggers, we notice that the watchpoint is out of scope, and
6853 delete it. We also delete its scope bp. But the scope bp is marked
6854 "auto-deleting", and is already on a bpstat. That bpstat is then
6855 checked for auto-deleting bp's, which are deleted.
6857 A real solution to this problem might involve reference counts in bp's,
6858 and/or giving them pointers back to their referencing bpstat's, and
6859 teaching delete_breakpoint to only free a bp's storage when no more
6860 references were extent. A cheaper bandaid was chosen. */
6861 if (bpt->type == bp_none)
6864 if (deprecated_delete_breakpoint_hook)
6865 deprecated_delete_breakpoint_hook (bpt);
6866 breakpoint_delete_event (bpt->number);
6868 if (bpt->loc->inserted)
6869 remove_breakpoint (bpt->loc, mark_inserted);
6871 free_valchain (bpt->loc);
6873 if (breakpoint_chain == bpt)
6874 breakpoint_chain = bpt->next;
6876 if (bp_location_chain == bpt->loc)
6877 bp_location_chain = bpt->loc->next;
6879 /* If we have callback-style exception catchpoints, don't go through
6880 the adjustments to the C++ runtime library etc. if the inferior
6881 isn't actually running. target_enable_exception_callback for a
6882 null target ops vector gives an undesirable error message, so we
6883 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6884 exceptions are supported in this way, it's OK for now. FIXME */
6885 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6887 /* Format possible error msg */
6888 char *message = xstrprintf ("Error in deleting catchpoint %d:\n",
6890 struct cleanup *cleanups = make_cleanup (xfree, message);
6891 args_for_catchpoint_enable args;
6892 args.kind = bpt->type == bp_catch_catch ?
6893 EX_EVENT_CATCH : EX_EVENT_THROW;
6895 catch_errors (cover_target_enable_exception_callback, &args,
6896 message, RETURN_MASK_ALL);
6897 do_cleanups (cleanups);
6904 b->next = bpt->next;
6908 ALL_BP_LOCATIONS (loc)
6909 if (loc->next == bpt->loc)
6911 loc->next = bpt->loc->next;
6915 check_duplicates (bpt);
6916 /* If this breakpoint was inserted, and there is another breakpoint
6917 at the same address, we need to insert the other breakpoint. */
6918 if (bpt->loc->inserted
6919 && bpt->type != bp_hardware_watchpoint
6920 && bpt->type != bp_read_watchpoint
6921 && bpt->type != bp_access_watchpoint
6922 && bpt->type != bp_catch_fork
6923 && bpt->type != bp_catch_vfork
6924 && bpt->type != bp_catch_exec)
6927 if (b->loc->address == bpt->loc->address
6928 && b->loc->section == bpt->loc->section
6929 && !b->loc->duplicate
6930 && b->enable_state != bp_disabled
6931 && b->enable_state != bp_shlib_disabled
6933 && b->enable_state != bp_call_disabled)
6937 /* We should never reach this point if there is a permanent
6938 breakpoint at the same address as the one being deleted.
6939 If there is a permanent breakpoint somewhere, it should
6940 always be the only one inserted. */
6941 if (b->enable_state == bp_permanent)
6942 internal_error (__FILE__, __LINE__,
6943 "another breakpoint was inserted on top of "
6944 "a permanent breakpoint");
6946 if (b->type == bp_hardware_breakpoint)
6947 val = target_insert_hw_breakpoint (b->loc->address, b->loc->shadow_contents);
6949 val = target_insert_breakpoint (b->loc->address, b->loc->shadow_contents);
6951 /* If there was an error in the insert, print a message, then stop execution. */
6954 struct ui_file *tmp_error_stream = mem_fileopen ();
6955 make_cleanup_ui_file_delete (tmp_error_stream);
6958 if (b->type == bp_hardware_breakpoint)
6960 fprintf_unfiltered (tmp_error_stream,
6961 "Cannot insert hardware breakpoint %d.\n"
6962 "You may have requested too many hardware breakpoints.\n",
6967 fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
6968 fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
6969 print_address_numeric (b->loc->address, 1, tmp_error_stream);
6970 fprintf_filtered (tmp_error_stream, ": %s.\n",
6971 safe_strerror (val));
6974 fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
6975 target_terminal_ours_for_output ();
6976 error_stream(tmp_error_stream);
6979 b->loc->inserted = 1;
6983 free_command_lines (&bpt->commands);
6986 if (bpt->cond_string != NULL)
6987 xfree (bpt->cond_string);
6988 if (bpt->addr_string != NULL)
6989 xfree (bpt->addr_string);
6990 if (bpt->exp != NULL)
6992 if (bpt->exp_string != NULL)
6993 xfree (bpt->exp_string);
6994 if (bpt->val != NULL)
6995 value_free (bpt->val);
6996 if (bpt->source_file != NULL)
6997 xfree (bpt->source_file);
6998 if (bpt->dll_pathname != NULL)
6999 xfree (bpt->dll_pathname);
7000 if (bpt->triggered_dll_pathname != NULL)
7001 xfree (bpt->triggered_dll_pathname);
7002 if (bpt->exec_pathname != NULL)
7003 xfree (bpt->exec_pathname);
7005 /* Be sure no bpstat's are pointing at it after it's been freed. */
7006 /* FIXME, how can we find all bpstat's?
7007 We just check stop_bpstat for now. */
7008 for (bs = stop_bpstat; bs; bs = bs->next)
7009 if (bs->breakpoint_at == bpt)
7011 bs->breakpoint_at = NULL;
7013 /* bs->commands will be freed later. */
7015 /* On the chance that someone will soon try again to delete this same
7016 bp, we mark it as deleted before freeing its storage. */
7017 bpt->type = bp_none;
7024 do_delete_breakpoint_cleanup (void *b)
7026 delete_breakpoint (b);
7030 make_cleanup_delete_breakpoint (struct breakpoint *b)
7032 return make_cleanup (do_delete_breakpoint_cleanup, b);
7036 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
7038 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
7042 delete_command (char *arg, int from_tty)
7044 struct breakpoint *b, *temp;
7050 int breaks_to_delete = 0;
7052 /* Delete all breakpoints if no argument.
7053 Do not delete internal or call-dummy breakpoints, these
7054 have to be deleted with an explicit breakpoint number argument. */
7057 if (b->type != bp_call_dummy &&
7058 b->type != bp_shlib_event &&
7059 b->type != bp_thread_event &&
7060 b->type != bp_overlay_event &&
7062 breaks_to_delete = 1;
7065 /* Ask user only if there are some breakpoints to delete. */
7067 || (breaks_to_delete && query ("Delete all breakpoints? ")))
7069 ALL_BREAKPOINTS_SAFE (b, temp)
7071 if (b->type != bp_call_dummy &&
7072 b->type != bp_shlib_event &&
7073 b->type != bp_thread_event &&
7074 b->type != bp_overlay_event &&
7076 delete_breakpoint (b);
7081 map_breakpoint_numbers (arg, delete_breakpoint);
7084 /* Reset a breakpoint given it's struct breakpoint * BINT.
7085 The value we return ends up being the return value from catch_errors.
7086 Unused in this case. */
7089 breakpoint_re_set_one (void *bint)
7091 /* get past catch_errs */
7092 struct breakpoint *b = (struct breakpoint *) bint;
7095 struct symtabs_and_lines sals;
7097 enum enable_state save_enable;
7102 warning ("attempted to reset apparently deleted breakpoint #%d?",
7106 case bp_hardware_breakpoint:
7108 case bp_catch_unload:
7109 if (b->addr_string == NULL)
7111 /* Anything without a string can't be re-set. */
7112 delete_breakpoint (b);
7115 /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote:
7117 ``And a hack it is, although Apple's Darwin version of GDB
7118 contains an almost identical hack to implement a "future
7119 break" command. It seems to work in many real world cases,
7120 but it is easy to come up with a test case where the patch
7121 doesn't help at all.''
7123 ``It seems that the way GDB implements breakpoints - in -
7124 shared - libraries was designed for a.out shared library
7125 systems (SunOS 4) where shared libraries were loaded at a
7126 fixed address in memory. Since ELF shared libraries can (and
7127 will) be loaded at any address in memory, things break.
7128 Fixing this is not trivial. Therefore, I'm not sure whether
7129 we should add this hack to the branch only. I cannot
7130 guarantee that things will be fixed on the trunk in the near
7133 In case we have a problem, disable this breakpoint. We'll
7134 restore its status if we succeed. Don't disable a
7135 shlib_disabled breakpoint though. There's a fair chance we
7136 can't re-set it if the shared library it's in hasn't been
7142 save_enable = b->enable_state;
7143 if (b->enable_state != bp_shlib_disabled)
7144 b->enable_state = bp_disabled;
7146 set_language (b->language);
7147 input_radix = b->input_radix;
7149 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL, NULL);
7150 for (i = 0; i < sals.nelts; i++)
7152 resolve_sal_pc (&sals.sals[i]);
7154 /* Reparse conditions, they might contain references to the
7156 if (b->cond_string != NULL)
7162 /* Avoid re-freeing b->exp if an error during the call
7166 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7169 /* We need to re-set the breakpoint if the address changes... */
7170 if (b->loc->address != sals.sals[i].pc
7171 /* ...or new and old breakpoints both have source files, and
7172 the source file name or the line number changes... */
7173 || (b->source_file != NULL
7174 && sals.sals[i].symtab != NULL
7175 && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0
7176 || b->line_number != sals.sals[i].line)
7178 /* ...or we switch between having a source file and not having
7180 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7183 if (b->source_file != NULL)
7184 xfree (b->source_file);
7185 if (sals.sals[i].symtab == NULL)
7186 b->source_file = NULL;
7189 savestring (sals.sals[i].symtab->filename,
7190 strlen (sals.sals[i].symtab->filename));
7191 b->line_number = sals.sals[i].line;
7192 b->loc->requested_address = sals.sals[i].pc;
7194 = adjust_breakpoint_address (b->loc->requested_address,
7197 /* Used to check for duplicates here, but that can
7198 cause trouble, as it doesn't check for disabled
7203 /* Might be better to do this just once per breakpoint_re_set,
7204 rather than once for every breakpoint. */
7205 breakpoints_changed ();
7207 b->loc->section = sals.sals[i].section;
7208 b->enable_state = save_enable; /* Restore it, this worked. */
7211 /* Now that this is re-enabled, check_duplicates
7213 check_duplicates (b);
7220 case bp_hardware_watchpoint:
7221 case bp_read_watchpoint:
7222 case bp_access_watchpoint:
7223 innermost_block = NULL;
7224 /* The issue arises of what context to evaluate this in. The
7225 same one as when it was set, but what does that mean when
7226 symbols have been re-read? We could save the filename and
7227 functionname, but if the context is more local than that, the
7228 best we could do would be something like how many levels deep
7229 and which index at that particular level, but that's going to
7230 be less stable than filenames or function names. */
7232 /* So for now, just use a global context. */
7236 /* Avoid re-freeing b->exp if an error during the call to
7237 parse_expression. */
7240 b->exp = parse_expression (b->exp_string);
7241 b->exp_valid_block = innermost_block;
7242 mark = value_mark ();
7245 value_free (b->val);
7246 /* Avoid re-freeing b->val if an error during the call to
7247 evaluate_expression. */
7250 b->val = evaluate_expression (b->exp);
7251 release_value (b->val);
7252 if (VALUE_LAZY (b->val) && breakpoint_enabled (b))
7253 value_fetch_lazy (b->val);
7255 if (b->cond_string != NULL)
7261 /* Avoid re-freeing b->exp if an error during the call
7265 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7267 if (breakpoint_enabled (b))
7269 value_free_to_mark (mark);
7271 case bp_catch_catch:
7272 case bp_catch_throw:
7274 /* We needn't really do anything to reset these, since the mask
7275 that requests them is unaffected by e.g., new libraries being
7278 case bp_catch_vfork:
7283 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
7285 /* Delete longjmp and overlay event breakpoints; they will be
7286 reset later by breakpoint_re_set. */
7288 case bp_longjmp_resume:
7289 case bp_overlay_event:
7290 delete_breakpoint (b);
7293 /* This breakpoint is special, it's set up when the inferior
7294 starts and we really don't want to touch it. */
7295 case bp_shlib_event:
7297 /* Like bp_shlib_event, this breakpoint type is special.
7298 Once it is set up, we do not want to touch it. */
7299 case bp_thread_event:
7301 /* Keep temporary breakpoints, which can be encountered when we step
7302 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7303 Otherwise these should have been blown away via the cleanup chain
7304 or by breakpoint_init_inferior when we rerun the executable. */
7307 case bp_watchpoint_scope:
7309 case bp_step_resume:
7316 /* Re-set all breakpoints after symbols have been re-loaded. */
7318 breakpoint_re_set (void)
7320 struct breakpoint *b, *temp;
7321 enum language save_language;
7322 int save_input_radix;
7324 save_language = current_language->la_language;
7325 save_input_radix = input_radix;
7326 ALL_BREAKPOINTS_SAFE (b, temp)
7328 /* Format possible error msg */
7329 char *message = xstrprintf ("Error in re-setting breakpoint %d:\n",
7331 struct cleanup *cleanups = make_cleanup (xfree, message);
7332 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7333 do_cleanups (cleanups);
7335 set_language (save_language);
7336 input_radix = save_input_radix;
7338 if (GET_LONGJMP_TARGET_P ())
7340 create_longjmp_breakpoint ("longjmp");
7341 create_longjmp_breakpoint ("_longjmp");
7342 create_longjmp_breakpoint ("siglongjmp");
7343 create_longjmp_breakpoint ("_siglongjmp");
7344 create_longjmp_breakpoint (NULL);
7347 create_overlay_event_breakpoint ("_ovly_debug_event");
7350 /* Reset the thread number of this breakpoint:
7352 - If the breakpoint is for all threads, leave it as-is.
7353 - Else, reset it to the current thread for inferior_ptid. */
7355 breakpoint_re_set_thread (struct breakpoint *b)
7357 if (b->thread != -1)
7359 if (in_thread_list (inferior_ptid))
7360 b->thread = pid_to_thread_id (inferior_ptid);
7364 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7365 If from_tty is nonzero, it prints a message to that effect,
7366 which ends with a period (no newline). */
7369 set_ignore_count (int bptnum, int count, int from_tty)
7371 struct breakpoint *b;
7377 if (b->number == bptnum)
7379 b->ignore_count = count;
7383 printf_filtered ("Will stop next time breakpoint %d is reached.",
7385 else if (count == 1)
7386 printf_filtered ("Will ignore next crossing of breakpoint %d.",
7389 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
7392 breakpoints_changed ();
7393 breakpoint_modify_event (b->number);
7397 error ("No breakpoint number %d.", bptnum);
7400 /* Clear the ignore counts of all breakpoints. */
7402 breakpoint_clear_ignore_counts (void)
7404 struct breakpoint *b;
7407 b->ignore_count = 0;
7410 /* Command to set ignore-count of breakpoint N to COUNT. */
7413 ignore_command (char *args, int from_tty)
7419 error_no_arg ("a breakpoint number");
7421 num = get_number (&p);
7423 error ("bad breakpoint number: '%s'", args);
7425 error ("Second argument (specified ignore-count) is missing.");
7427 set_ignore_count (num,
7428 longest_to_int (value_as_long (parse_and_eval (p))),
7431 printf_filtered ("\n");
7434 /* Call FUNCTION on each of the breakpoints
7435 whose numbers are given in ARGS. */
7438 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7443 struct breakpoint *b, *tmp;
7447 error_no_arg ("one or more breakpoint numbers");
7454 num = get_number_or_range (&p1);
7457 warning ("bad breakpoint number at or near '%s'", p);
7461 ALL_BREAKPOINTS_SAFE (b, tmp)
7462 if (b->number == num)
7464 struct breakpoint *related_breakpoint = b->related_breakpoint;
7467 if (related_breakpoint)
7468 function (related_breakpoint);
7472 printf_unfiltered ("No breakpoint number %d.\n", num);
7478 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7479 If from_tty is nonzero, it prints a message to that effect,
7480 which ends with a period (no newline). */
7483 disable_breakpoint (struct breakpoint *bpt)
7485 /* Never disable a watchpoint scope breakpoint; we want to
7486 hit them when we leave scope so we can delete both the
7487 watchpoint and its scope breakpoint at that time. */
7488 if (bpt->type == bp_watchpoint_scope)
7491 /* You can't disable permanent breakpoints. */
7492 if (bpt->enable_state == bp_permanent)
7495 bpt->enable_state = bp_disabled;
7497 check_duplicates (bpt);
7499 if (deprecated_modify_breakpoint_hook)
7500 deprecated_modify_breakpoint_hook (bpt);
7501 breakpoint_modify_event (bpt->number);
7505 disable_command (char *args, int from_tty)
7507 struct breakpoint *bpt;
7509 ALL_BREAKPOINTS (bpt)
7513 warning ("attempted to disable apparently deleted breakpoint #%d?",
7518 case bp_catch_unload:
7520 case bp_catch_vfork:
7522 case bp_catch_catch:
7523 case bp_catch_throw:
7524 case bp_hardware_breakpoint:
7526 case bp_hardware_watchpoint:
7527 case bp_read_watchpoint:
7528 case bp_access_watchpoint:
7529 disable_breakpoint (bpt);
7534 map_breakpoint_numbers (args, disable_breakpoint);
7538 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7540 int target_resources_ok, other_type_used;
7543 if (bpt->type == bp_hardware_breakpoint)
7546 i = hw_breakpoint_used_count ();
7547 target_resources_ok =
7548 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7550 if (target_resources_ok == 0)
7551 error ("No hardware breakpoint support in the target.");
7552 else if (target_resources_ok < 0)
7553 error ("Hardware breakpoints used exceeds limit.");
7558 if (bpt->enable_state != bp_enabled)
7560 /* When enabling a pending breakpoint, we need to check if the breakpoint
7561 is resolvable since shared libraries could have been loaded
7562 after the breakpoint was disabled. */
7563 breakpoints_changed ();
7564 if (resolve_pending_breakpoint (bpt) == GDB_RC_OK)
7566 delete_breakpoint (bpt);
7569 bpt->enable_state = bp_enabled;
7570 bpt->disposition = disposition;
7573 else /* Not a pending breakpoint. */
7575 if (bpt->enable_state != bp_permanent)
7576 bpt->enable_state = bp_enabled;
7577 bpt->disposition = disposition;
7578 check_duplicates (bpt);
7579 breakpoints_changed ();
7581 if (bpt->type == bp_watchpoint ||
7582 bpt->type == bp_hardware_watchpoint ||
7583 bpt->type == bp_read_watchpoint ||
7584 bpt->type == bp_access_watchpoint)
7586 struct frame_id saved_frame_id;
7588 saved_frame_id = get_frame_id (get_selected_frame ());
7589 if (bpt->exp_valid_block != NULL)
7591 struct frame_info *fr =
7592 fr = frame_find_by_id (bpt->watchpoint_frame);
7596 Cannot enable watchpoint %d because the block in which its expression\n\
7597 is valid is not currently in scope.\n", bpt->number);
7598 bpt->enable_state = bp_disabled;
7604 value_free (bpt->val);
7605 mark = value_mark ();
7606 bpt->val = evaluate_expression (bpt->exp);
7607 release_value (bpt->val);
7608 if (VALUE_LAZY (bpt->val))
7609 value_fetch_lazy (bpt->val);
7611 if (bpt->type == bp_hardware_watchpoint ||
7612 bpt->type == bp_read_watchpoint ||
7613 bpt->type == bp_access_watchpoint)
7615 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7616 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7618 /* Hack around 'unused var' error for some targets here */
7620 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7621 bpt->type, i + mem_cnt, other_type_used);
7622 /* we can consider of type is bp_hardware_watchpoint, convert to
7623 bp_watchpoint in the following condition */
7624 if (target_resources_ok < 0)
7627 Cannot enable watchpoint %d because target watch resources\n\
7628 have been allocated for other watchpoints.\n", bpt->number);
7629 bpt->enable_state = bp_disabled;
7630 value_free_to_mark (mark);
7635 select_frame (frame_find_by_id (saved_frame_id));
7636 value_free_to_mark (mark);
7640 if (deprecated_modify_breakpoint_hook)
7641 deprecated_modify_breakpoint_hook (bpt);
7642 breakpoint_modify_event (bpt->number);
7646 enable_breakpoint (struct breakpoint *bpt)
7648 do_enable_breakpoint (bpt, bpt->disposition);
7651 /* The enable command enables the specified breakpoints (or all defined
7652 breakpoints) so they once again become (or continue to be) effective
7653 in stopping the inferior. */
7656 enable_command (char *args, int from_tty)
7658 struct breakpoint *bpt;
7660 ALL_BREAKPOINTS (bpt)
7664 warning ("attempted to enable apparently deleted breakpoint #%d?",
7669 case bp_catch_unload:
7671 case bp_catch_vfork:
7673 case bp_catch_catch:
7674 case bp_catch_throw:
7675 case bp_hardware_breakpoint:
7677 case bp_hardware_watchpoint:
7678 case bp_read_watchpoint:
7679 case bp_access_watchpoint:
7680 enable_breakpoint (bpt);
7685 map_breakpoint_numbers (args, enable_breakpoint);
7689 enable_once_breakpoint (struct breakpoint *bpt)
7691 do_enable_breakpoint (bpt, disp_disable);
7695 enable_once_command (char *args, int from_tty)
7697 map_breakpoint_numbers (args, enable_once_breakpoint);
7701 enable_delete_breakpoint (struct breakpoint *bpt)
7703 do_enable_breakpoint (bpt, disp_del);
7707 enable_delete_command (char *args, int from_tty)
7709 map_breakpoint_numbers (args, enable_delete_breakpoint);
7713 set_breakpoint_cmd (char *args, int from_tty)
7718 show_breakpoint_cmd (char *args, int from_tty)
7722 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7724 struct symtabs_and_lines
7725 decode_line_spec_1 (char *string, int funfirstline)
7727 struct symtabs_and_lines sals;
7729 error ("Empty line specification.");
7730 if (default_breakpoint_valid)
7731 sals = decode_line_1 (&string, funfirstline,
7732 default_breakpoint_symtab,
7733 default_breakpoint_line,
7734 (char ***) NULL, NULL);
7736 sals = decode_line_1 (&string, funfirstline,
7737 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
7739 error ("Junk at end of line specification: %s", string);
7744 _initialize_breakpoint (void)
7746 static struct cmd_list_element *breakpoint_set_cmdlist;
7747 static struct cmd_list_element *breakpoint_show_cmdlist;
7748 struct cmd_list_element *c;
7750 breakpoint_chain = 0;
7751 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7752 before a breakpoint is set. */
7753 breakpoint_count = 0;
7755 add_com ("ignore", class_breakpoint, ignore_command,
7756 "Set ignore-count of breakpoint number N to COUNT.\n\
7757 Usage is `ignore N COUNT'.");
7759 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7761 add_com ("commands", class_breakpoint, commands_command,
7762 "Set commands to be executed when a breakpoint is hit.\n\
7763 Give breakpoint number as argument after \"commands\".\n\
7764 With no argument, the targeted breakpoint is the last one set.\n\
7765 The commands themselves follow starting on the next line.\n\
7766 Type a line containing \"end\" to indicate the end of them.\n\
7767 Give \"silent\" as the first line to make the breakpoint silent;\n\
7768 then no output is printed when it is hit, except what the commands print.");
7770 add_com ("condition", class_breakpoint, condition_command,
7771 "Specify breakpoint number N to break only if COND is true.\n\
7772 Usage is `condition N COND', where N is an integer and COND is an\n\
7773 expression to be evaluated whenever breakpoint N is reached.");
7775 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7776 "Set a temporary breakpoint. Args like \"break\" command.\n\
7777 Like \"break\" except the breakpoint is only temporary,\n\
7778 so it will be deleted when hit. Equivalent to \"break\" followed\n\
7779 by using \"enable delete\" on the breakpoint number.");
7780 set_cmd_completer (c, location_completer);
7782 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7783 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
7784 Like \"break\" except the breakpoint requires hardware support,\n\
7785 some target hardware may not have this support.");
7786 set_cmd_completer (c, location_completer);
7788 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7789 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7790 Like \"hbreak\" except the breakpoint is only temporary,\n\
7791 so it will be deleted when hit.");
7792 set_cmd_completer (c, location_completer);
7794 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7795 "Enable some breakpoints.\n\
7796 Give breakpoint numbers (separated by spaces) as arguments.\n\
7797 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7798 This is used to cancel the effect of the \"disable\" command.\n\
7799 With a subcommand you can enable temporarily.",
7800 &enablelist, "enable ", 1, &cmdlist);
7802 add_com ("ab", class_breakpoint, enable_command,
7803 "Enable some breakpoints.\n\
7804 Give breakpoint numbers (separated by spaces) as arguments.\n\
7805 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7806 This is used to cancel the effect of the \"disable\" command.\n\
7807 With a subcommand you can enable temporarily.");
7809 add_com_alias ("en", "enable", class_breakpoint, 1);
7811 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7812 "Enable some breakpoints.\n\
7813 Give breakpoint numbers (separated by spaces) as arguments.\n\
7814 This is used to cancel the effect of the \"disable\" command.\n\
7815 May be abbreviated to simply \"enable\".\n",
7816 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7818 add_cmd ("once", no_class, enable_once_command,
7819 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7820 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7823 add_cmd ("delete", no_class, enable_delete_command,
7824 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7825 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7828 add_cmd ("delete", no_class, enable_delete_command,
7829 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7830 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7833 add_cmd ("once", no_class, enable_once_command,
7834 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7835 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7838 add_prefix_cmd ("disable", class_breakpoint, disable_command,
7839 "Disable some breakpoints.\n\
7840 Arguments are breakpoint numbers with spaces in between.\n\
7841 To disable all breakpoints, give no argument.\n\
7842 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7843 &disablelist, "disable ", 1, &cmdlist);
7844 add_com_alias ("dis", "disable", class_breakpoint, 1);
7845 add_com_alias ("disa", "disable", class_breakpoint, 1);
7847 add_com ("sb", class_breakpoint, disable_command,
7848 "Disable some breakpoints.\n\
7849 Arguments are breakpoint numbers with spaces in between.\n\
7850 To disable all breakpoints, give no argument.\n\
7851 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7853 add_cmd ("breakpoints", class_alias, disable_command,
7854 "Disable some breakpoints.\n\
7855 Arguments are breakpoint numbers with spaces in between.\n\
7856 To disable all breakpoints, give no argument.\n\
7857 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7858 This command may be abbreviated \"disable\".",
7861 add_prefix_cmd ("delete", class_breakpoint, delete_command,
7862 "Delete some breakpoints or auto-display expressions.\n\
7863 Arguments are breakpoint numbers with spaces in between.\n\
7864 To delete all breakpoints, give no argument.\n\
7866 Also a prefix command for deletion of other GDB objects.\n\
7867 The \"unset\" command is also an alias for \"delete\".",
7868 &deletelist, "delete ", 1, &cmdlist);
7869 add_com_alias ("d", "delete", class_breakpoint, 1);
7871 add_com ("db", class_breakpoint, delete_command,
7872 "Delete some breakpoints.\n\
7873 Arguments are breakpoint numbers with spaces in between.\n\
7874 To delete all breakpoints, give no argument.\n");
7876 add_cmd ("breakpoints", class_alias, delete_command,
7877 "Delete some breakpoints or auto-display expressions.\n\
7878 Arguments are breakpoint numbers with spaces in between.\n\
7879 To delete all breakpoints, give no argument.\n\
7880 This command may be abbreviated \"delete\".",
7883 add_com ("clear", class_breakpoint, clear_command,
7884 concat ("Clear breakpoint at specified line or function.\n\
7885 Argument may be line number, function name, or \"*\" and an address.\n\
7886 If line number is specified, all breakpoints in that line are cleared.\n\
7887 If function is specified, breakpoints at beginning of function are cleared.\n\
7888 If an address is specified, breakpoints at that address are cleared.\n\n",
7889 "With no argument, clears all breakpoints in the line that the selected frame\n\
7892 See also the \"delete\" command which clears breakpoints by number.", NULL));
7894 c = add_com ("break", class_breakpoint, break_command,
7895 concat ("Set breakpoint at specified line or function.\n\
7896 Argument may be line number, function name, or \"*\" and an address.\n\
7897 If line number is specified, break at start of code for that line.\n\
7898 If function is specified, break at start of code for that function.\n\
7899 If an address is specified, break at that exact address.\n",
7900 "With no arg, uses current execution address of selected stack frame.\n\
7901 This is useful for breaking on return to a stack frame.\n\
7903 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7905 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7906 set_cmd_completer (c, location_completer);
7908 add_com_alias ("b", "break", class_run, 1);
7909 add_com_alias ("br", "break", class_run, 1);
7910 add_com_alias ("bre", "break", class_run, 1);
7911 add_com_alias ("brea", "break", class_run, 1);
7915 add_com_alias ("ba", "break", class_breakpoint, 1);
7916 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7921 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7922 "Break in function/address or break at a line in the current file.",
7923 &stoplist, "stop ", 1, &cmdlist);
7924 add_cmd ("in", class_breakpoint, stopin_command,
7925 "Break in function or address.\n", &stoplist);
7926 add_cmd ("at", class_breakpoint, stopat_command,
7927 "Break at a line in the current file.\n", &stoplist);
7928 add_com ("status", class_info, breakpoints_info,
7929 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7930 The \"Type\" column indicates one of:\n\
7931 \tbreakpoint - normal breakpoint\n\
7932 \twatchpoint - watchpoint\n\
7933 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7934 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7935 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7936 address and file/line number respectively.\n\n",
7937 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7938 are set to the address of the last breakpoint listed.\n\n\
7939 Convenience variable \"$bpnum\" contains the number of the last\n\
7940 breakpoint set.", NULL));
7943 add_info ("breakpoints", breakpoints_info,
7944 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7945 The \"Type\" column indicates one of:\n\
7946 \tbreakpoint - normal breakpoint\n\
7947 \twatchpoint - watchpoint\n\
7948 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7949 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7950 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7951 address and file/line number respectively.\n\n",
7952 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7953 are set to the address of the last breakpoint listed.\n\n\
7954 Convenience variable \"$bpnum\" contains the number of the last\n\
7955 breakpoint set.", NULL));
7958 add_com ("lb", class_breakpoint, breakpoints_info,
7959 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7960 The \"Type\" column indicates one of:\n\
7961 \tbreakpoint - normal breakpoint\n\
7962 \twatchpoint - watchpoint\n\
7963 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7964 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7965 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7966 address and file/line number respectively.\n\n",
7967 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7968 are set to the address of the last breakpoint listed.\n\n\
7969 Convenience variable \"$bpnum\" contains the number of the last\n\
7970 breakpoint set.", NULL));
7972 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
7973 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
7974 The \"Type\" column indicates one of:\n\
7975 \tbreakpoint - normal breakpoint\n\
7976 \twatchpoint - watchpoint\n\
7977 \tlongjmp - internal breakpoint used to step through longjmp()\n\
7978 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7979 \tuntil - internal breakpoint used by the \"until\" command\n\
7980 \tfinish - internal breakpoint used by the \"finish\" command\n",
7981 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7982 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7983 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7984 address and file/line number respectively.\n\n",
7985 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7986 are set to the address of the last breakpoint listed.\n\n\
7987 Convenience variable \"$bpnum\" contains the number of the last\n\
7988 breakpoint set.", NULL),
7989 &maintenanceinfolist);
7991 add_com ("catch", class_breakpoint, catch_command,
7992 "Set catchpoints to catch events.\n\
7993 Raised signals may be caught:\n\
7994 \tcatch signal - all signals\n\
7995 \tcatch signal <signame> - a particular signal\n\
7996 Raised exceptions may be caught:\n\
7997 \tcatch throw - all exceptions, when thrown\n\
7998 \tcatch throw <exceptname> - a particular exception, when thrown\n\
7999 \tcatch catch - all exceptions, when caught\n\
8000 \tcatch catch <exceptname> - a particular exception, when caught\n\
8001 Thread or process events may be caught:\n\
8002 \tcatch thread_start - any threads, just after creation\n\
8003 \tcatch thread_exit - any threads, just before expiration\n\
8004 \tcatch thread_join - any threads, just after joins\n\
8005 Process events may be caught:\n\
8006 \tcatch start - any processes, just after creation\n\
8007 \tcatch exit - any processes, just before expiration\n\
8008 \tcatch fork - calls to fork()\n\
8009 \tcatch vfork - calls to vfork()\n\
8010 \tcatch exec - calls to exec()\n\
8011 Dynamically-linked library events may be caught:\n\
8012 \tcatch load - loads of any library\n\
8013 \tcatch load <libname> - loads of a particular library\n\
8014 \tcatch unload - unloads of any library\n\
8015 \tcatch unload <libname> - unloads of a particular library\n\
8016 The act of your program's execution stopping may also be caught:\n\
8018 C++ exceptions may be caught:\n\
8019 \tcatch throw - all exceptions, when thrown\n\
8020 \tcatch catch - all exceptions, when caught\n\
8022 Do \"help set follow-fork-mode\" for info on debugging your program\n\
8023 after a fork or vfork is caught.\n\n\
8024 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
8026 add_com ("tcatch", class_breakpoint, tcatch_command,
8027 "Set temporary catchpoints to catch events.\n\
8028 Args like \"catch\" command.\n\
8029 Like \"catch\" except the catchpoint is only temporary,\n\
8030 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
8031 by using \"enable delete\" on the catchpoint number.");
8033 c = add_com ("watch", class_breakpoint, watch_command,
8034 "Set a watchpoint for an expression.\n\
8035 A watchpoint stops execution of your program whenever the value of\n\
8036 an expression changes.");
8037 set_cmd_completer (c, location_completer);
8039 c = add_com ("rwatch", class_breakpoint, rwatch_command,
8040 "Set a read watchpoint for an expression.\n\
8041 A watchpoint stops execution of your program whenever the value of\n\
8042 an expression is read.");
8043 set_cmd_completer (c, location_completer);
8045 c = add_com ("awatch", class_breakpoint, awatch_command,
8046 "Set a watchpoint for an expression.\n\
8047 A watchpoint stops execution of your program whenever the value of\n\
8048 an expression is either read or written.");
8049 set_cmd_completer (c, location_completer);
8051 add_info ("watchpoints", breakpoints_info,
8052 "Synonym for ``info breakpoints''.");
8055 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
8056 (char *) &can_use_hw_watchpoints,
8057 "Set debugger's willingness to use watchpoint hardware.\n\
8058 If zero, gdb will not use hardware for new watchpoints, even if\n\
8059 such is available. (However, any hardware watchpoints that were\n\
8060 created before setting this to nonzero, will continue to use watchpoint\n\
8063 add_show_from_set (c, &showlist);
8065 can_use_hw_watchpoints = 1;
8067 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, "\
8068 Breakpoint specific settings\n\
8069 Configure various breakpoint-specific variables such as\n\
8070 pending breakpoint behavior",
8071 &breakpoint_set_cmdlist, "set breakpoint ",
8072 0/*allow-unknown*/, &setlist);
8073 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, "\
8074 Breakpoint specific settings\n\
8075 Configure various breakpoint-specific variables such as\n\
8076 pending breakpoint behavior",
8077 &breakpoint_show_cmdlist, "show breakpoint ",
8078 0/*allow-unknown*/, &showlist);
8080 add_setshow_auto_boolean_cmd ("pending", no_class, &pending_break_support, "\
8081 Set debugger's behavior regarding pending breakpoints.\n\
8082 If on, an unrecognized breakpoint location will cause gdb to create a\n\
8083 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
8084 an error. If auto, an unrecognized breakpoint location results in a\n\
8085 user-query to see if a pending breakpoint should be created.","\
8086 Show debugger's behavior regarding pending breakpoints.\n\
8087 If on, an unrecognized breakpoint location will cause gdb to create a\n\
8088 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
8089 an error. If auto, an unrecognized breakpoint location results in a\n\
8090 user-query to see if a pending breakpoint should be created.",
8092 &breakpoint_set_cmdlist,
8093 &breakpoint_show_cmdlist);
8095 pending_break_support = AUTO_BOOLEAN_AUTO;