1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 #include "breakpoint.h"
28 #include "expression.h"
34 #include "gdbthread.h"
37 #include "gdb_string.h"
43 #include "completer.h"
49 #include "gdb-events.h"
51 /* Prototypes for local functions. */
53 static void until_break_command_continuation (struct continuation_arg *arg);
55 static void catch_command_1 (char *, int, int);
57 static void enable_delete_command (char *, int);
59 static void enable_delete_breakpoint (struct breakpoint *);
61 static void enable_once_command (char *, int);
63 static void enable_once_breakpoint (struct breakpoint *);
65 static void disable_command (char *, int);
67 static void enable_command (char *, int);
69 static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
71 static void ignore_command (char *, int);
73 static int breakpoint_re_set_one (PTR);
75 static void clear_command (char *, int);
77 static void catch_command (char *, int);
79 static void handle_gnu_4_16_catch_command (char *, int, int);
81 static struct symtabs_and_lines get_catch_sals (int);
83 static void watch_command (char *, int);
85 static int can_use_hardware_watchpoint (struct value *);
87 static void break_at_finish_command (char *, int);
88 static void break_at_finish_at_depth_command (char *, int);
90 static void tbreak_at_finish_command (char *, int);
92 static void break_command_1 (char *, int, int);
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 describe_other_breakpoints (CORE_ADDR, asection *);
102 static void breakpoints_info (char *, int);
104 static void breakpoint_1 (int, int);
106 static bpstat bpstat_alloc (struct breakpoint *, bpstat);
108 static int breakpoint_cond_eval (PTR);
110 static void cleanup_executing_breakpoints (PTR);
112 static void commands_command (char *, int);
114 static void condition_command (char *, int);
116 static int get_number_trailer (char **, int);
118 void set_breakpoint_count (int);
121 static struct breakpoint *create_temp_exception_breakpoint (CORE_ADDR);
131 static int remove_breakpoint (struct breakpoint *, insertion_state_t);
133 static enum print_stop_action print_it_typical (bpstat);
135 static enum print_stop_action print_bp_stop_message (bpstat bs);
139 enum exception_event_kind kind;
142 args_for_catchpoint_enable;
144 static int watchpoint_check (PTR);
146 static int cover_target_enable_exception_callback (PTR);
148 static void maintenance_info_breakpoints (char *, int);
150 #ifdef GET_LONGJMP_TARGET
151 static void create_longjmp_breakpoint (char *);
154 static int hw_breakpoint_used_count (void);
156 static int hw_watchpoint_used_count (enum bptype, int *);
158 static void hbreak_command (char *, int);
160 static void thbreak_command (char *, int);
162 static void watch_command_1 (char *, int, int);
164 static void rwatch_command (char *, int);
166 static void awatch_command (char *, int);
168 static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
170 static void solib_load_unload_1 (char *hookname,
173 char *cond_string, enum bptype bp_kind);
175 static void create_fork_vfork_event_catchpoint (int tempflag,
177 enum bptype bp_kind);
179 static void break_at_finish_at_depth_command_1 (char *arg,
180 int flag, int from_tty);
182 static void break_at_finish_command_1 (char *arg, int flag, int from_tty);
184 static void stop_command (char *arg, int from_tty);
186 static void stopin_command (char *arg, int from_tty);
188 static void stopat_command (char *arg, int from_tty);
190 static char *ep_find_event_name_end (char *arg);
192 static char *ep_parse_optional_if_clause (char **arg);
194 static char *ep_parse_optional_filename (char **arg);
196 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
197 static void catch_exec_command_1 (char *arg, int tempflag, int from_tty);
200 static void create_exception_catchpoint (int tempflag, char *cond_string,
201 enum exception_event_kind ex_event,
202 struct symtab_and_line *sal);
204 static void catch_exception_command_1 (enum exception_event_kind ex_event,
205 char *arg, int tempflag, int from_tty);
207 static void tcatch_command (char *arg, int from_tty);
209 static void ep_skip_leading_whitespace (char **s);
211 /* Prototypes for exported functions. */
213 /* If FALSE, gdb will not use hardware support for watchpoints, even
214 if such is available. */
215 static int can_use_hw_watchpoints;
217 void _initialize_breakpoint (void);
219 extern int addressprint; /* Print machine addresses? */
221 static int internal_breakpoint_number = -1;
223 /* Are we executing breakpoint commands? */
224 static int executing_breakpoint_commands;
226 /* Walk the following statement or block through all breakpoints.
227 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
230 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
232 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
233 for (B = breakpoint_chain; \
234 B ? (TMP=B->next, 1): 0; \
237 /* True if SHIFT_INST_REGS defined, false otherwise. */
239 int must_shift_inst_regs =
240 #if defined(SHIFT_INST_REGS)
247 /* True if breakpoint hit counts should be displayed in breakpoint info. */
249 int show_breakpoint_hit_counts = 1;
251 /* Chain of all breakpoints defined. */
253 struct breakpoint *breakpoint_chain;
255 /* Number of last breakpoint made. */
257 int breakpoint_count;
259 /* Pointer to current exception event record */
260 static struct exception_event_record *current_exception_event;
262 /* Indicator of whether exception catchpoints should be nuked
263 between runs of a program */
264 int exception_catchpoints_are_fragile = 0;
266 /* Indicator of when exception catchpoints set-up should be
267 reinitialized -- e.g. when program is re-run */
268 int exception_support_initialized = 0;
270 /* This function returns a pointer to the string representation of the
271 pathname of the dynamically-linked library that has just been
274 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
275 or undefined results are guaranteed.
277 This string's contents are only valid immediately after the
278 inferior has stopped in the dynamic linker hook, and becomes
279 invalid as soon as the inferior is continued. Clients should make
280 a copy of this string if they wish to continue the inferior and
281 then access the string. */
283 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
284 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
287 /* This function returns a pointer to the string representation of the
288 pathname of the dynamically-linked library that has just been
291 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
292 TRUE, or undefined results are guaranteed.
294 This string's contents are only valid immediately after the
295 inferior has stopped in the dynamic linker hook, and becomes
296 invalid as soon as the inferior is continued. Clients should make
297 a copy of this string if they wish to continue the inferior and
298 then access the string. */
300 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
301 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
304 /* This function is called by the "catch load" command. It allows the
305 debugger to be notified by the dynamic linker when a specified
306 library file (or any library file, if filename is NULL) is loaded. */
308 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
309 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
310 error ("catch of library loads not yet implemented on this platform")
313 /* This function is called by the "catch unload" command. It allows
314 the debugger to be notified by the dynamic linker when a specified
315 library file (or any library file, if filename is NULL) is
318 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
319 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
320 error ("catch of library unloads not yet implemented on this platform")
323 /* Set breakpoint count to NUM. */
326 set_breakpoint_count (int num)
328 breakpoint_count = num;
329 set_internalvar (lookup_internalvar ("bpnum"),
330 value_from_longest (builtin_type_int, (LONGEST) num));
333 /* Used in run_command to zero the hit count when a new run starts. */
336 clear_breakpoint_hit_counts (void)
338 struct breakpoint *b;
344 /* Default address, symtab and line to put a breakpoint at
345 for "break" command with no arg.
346 if default_breakpoint_valid is zero, the other three are
347 not valid, and "break" with no arg is an error.
349 This set by print_stack_frame, which calls set_default_breakpoint. */
351 int default_breakpoint_valid;
352 CORE_ADDR default_breakpoint_address;
353 struct symtab *default_breakpoint_symtab;
354 int default_breakpoint_line;
356 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
357 Advance *PP after the string and any trailing whitespace.
359 Currently the string can either be a number or "$" followed by the name
360 of a convenience variable. Making it an expression wouldn't work well
361 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
363 TRAILER is a character which can be found after the number; most
364 commonly this is `-'. If you don't want a trailer, use \0. */
366 get_number_trailer (char **pp, int trailer)
368 int retval = 0; /* default */
372 /* Empty line means refer to the last breakpoint. */
373 return breakpoint_count;
376 /* Make a copy of the name, so we can null-terminate it
377 to pass to lookup_internalvar(). */
382 while (isalnum (*p) || *p == '_')
384 varname = (char *) alloca (p - start + 1);
385 strncpy (varname, start, p - start);
386 varname[p - start] = '\0';
387 val = value_of_internalvar (lookup_internalvar (varname));
388 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_INT)
389 retval = (int) value_as_long (val);
392 printf_filtered ("Convenience variable must have integer value.\n");
400 while (*p >= '0' && *p <= '9')
403 /* There is no number here. (e.g. "cond a == b"). */
405 /* Skip non-numeric token */
406 while (*p && !isspace((int) *p))
408 /* Return zero, which caller must interpret as error. */
414 if (!(isspace (*p) || *p == '\0' || *p == trailer))
416 /* Trailing junk: return 0 and let caller print error msg. */
417 while (!(isspace (*p) || *p == '\0' || *p == trailer))
428 /* Like get_number_trailer, but don't allow a trailer. */
430 get_number (char **pp)
432 return get_number_trailer (pp, '\0');
435 /* Parse a number or a range.
436 * A number will be of the form handled by get_number.
437 * A range will be of the form <number1> - <number2>, and
438 * will represent all the integers between number1 and number2,
441 * While processing a range, this fuction is called iteratively;
442 * At each call it will return the next value in the range.
444 * At the beginning of parsing a range, the char pointer PP will
445 * be advanced past <number1> and left pointing at the '-' token.
446 * Subsequent calls will not advance the pointer until the range
447 * is completed. The call that completes the range will advance
448 * pointer PP past <number2>.
452 get_number_or_range (char **pp)
454 static int last_retval, end_value;
455 static char *end_ptr;
456 static int in_range = 0;
460 /* Default case: pp is pointing either to a solo number,
461 or to the first number of a range. */
462 last_retval = get_number_trailer (pp, '-');
467 /* This is the start of a range (<number1> - <number2>).
468 Skip the '-', parse and remember the second number,
469 and also remember the end of the final token. */
473 while (isspace ((int) *end_ptr))
474 end_ptr++; /* skip white space */
475 end_value = get_number (temp);
476 if (end_value < last_retval)
478 error ("inverted range");
480 else if (end_value == last_retval)
482 /* degenerate range (number1 == number2). Advance the
483 token pointer so that the range will be treated as a
492 error ("negative value");
495 /* pp points to the '-' that betokens a range. All
496 number-parsing has already been done. Return the next
497 integer value (one greater than the saved previous value).
498 Do not advance the token pointer 'pp' until the end of range
501 if (++last_retval == end_value)
503 /* End of range reached; advance token pointer. */
513 /* condition N EXP -- set break condition of breakpoint N to EXP. */
516 condition_command (char *arg, int from_tty)
518 register struct breakpoint *b;
523 error_no_arg ("breakpoint number");
526 bnum = get_number (&p);
528 error ("Bad breakpoint argument: '%s'", arg);
531 if (b->number == bnum)
538 if (b->cond_string != NULL)
539 xfree (b->cond_string);
544 b->cond_string = NULL;
546 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
551 /* I don't know if it matters whether this is the string the user
552 typed in or the decompiled expression. */
553 b->cond_string = savestring (arg, strlen (arg));
554 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
556 error ("Junk at end of expression");
558 breakpoints_changed ();
562 error ("No breakpoint number %d.", bnum);
567 commands_command (char *arg, int from_tty)
569 register struct breakpoint *b;
572 struct command_line *l;
574 /* If we allowed this, we would have problems with when to
575 free the storage, if we change the commands currently
578 if (executing_breakpoint_commands)
579 error ("Can't use the \"commands\" command among a breakpoint's commands.");
582 bnum = get_number (&p);
585 error ("Unexpected extra arguments following breakpoint number.");
588 if (b->number == bnum)
592 "Type commands for when breakpoint %d is hit, one per line.",
594 l = read_command_lines (tmpbuf, from_tty);
595 free_command_lines (&b->commands);
597 breakpoints_changed ();
600 error ("No breakpoint number %d.", bnum);
603 /* Like target_read_memory() but if breakpoints are inserted, return
604 the shadow contents instead of the breakpoints themselves.
606 Read "memory data" from whatever target or inferior we have.
607 Returns zero if successful, errno value if not. EIO is used
608 for address out of bounds. If breakpoints are inserted, returns
609 shadow contents, not the breakpoints themselves. From breakpoint.c. */
612 read_memory_nobpt (CORE_ADDR memaddr, char *myaddr, unsigned len)
615 struct breakpoint *b;
616 CORE_ADDR bp_addr = 0;
619 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
620 /* No breakpoints on this machine. */
621 return target_read_memory (memaddr, myaddr, len);
625 if (b->type == bp_none)
626 warning ("reading through apparently deleted breakpoint #%d?",
629 /* memory breakpoint? */
630 if (b->type == bp_watchpoint
631 || b->type == bp_hardware_watchpoint
632 || b->type == bp_read_watchpoint
633 || b->type == bp_access_watchpoint)
638 /* Addresses and length of the part of the breakpoint that
640 /* XXXX The m68k, sh and h8300 have different local and remote
641 breakpoint values. BREAKPOINT_FROM_PC still manages to
642 correctly determine the breakpoints memory address and size
643 for these targets. */
644 bp_addr = b->address;
646 if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
651 if (bp_addr + bp_size <= memaddr)
652 /* The breakpoint is entirely before the chunk of memory we
655 if (bp_addr >= memaddr + len)
656 /* The breakpoint is entirely after the chunk of memory we are
659 /* Copy the breakpoint from the shadow contents, and recurse for
660 the things before and after. */
662 /* Offset within shadow_contents. */
665 if (bp_addr < memaddr)
667 /* Only copy the second part of the breakpoint. */
668 bp_size -= memaddr - bp_addr;
669 bptoffset = memaddr - bp_addr;
673 if (bp_addr + bp_size > memaddr + len)
675 /* Only copy the first part of the breakpoint. */
676 bp_size -= (bp_addr + bp_size) - (memaddr + len);
679 memcpy (myaddr + bp_addr - memaddr,
680 b->shadow_contents + bptoffset, bp_size);
682 if (bp_addr > memaddr)
684 /* Copy the section of memory before the breakpoint. */
685 status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
690 if (bp_addr + bp_size < memaddr + len)
692 /* Copy the section of memory after the breakpoint. */
693 status = read_memory_nobpt (bp_addr + bp_size,
694 myaddr + bp_addr + bp_size - memaddr,
695 memaddr + len - (bp_addr + bp_size));
702 /* Nothing overlaps. Just call read_memory_noerr. */
703 return target_read_memory (memaddr, myaddr, len);
707 /* insert_breakpoints is used when starting or continuing the program.
708 remove_breakpoints is used when the program stops.
709 Both return zero if successful,
710 or an `errno' value if could not write the inferior. */
713 insert_breakpoints (void)
715 register struct breakpoint *b, *temp;
716 int return_val = 0; /* return success code. */
718 int disabled_breaks = 0;
720 static char message1[] = "Error inserting catchpoint %d:\n";
721 static char message[sizeof (message1) + 30];
724 ALL_BREAKPOINTS_SAFE (b, temp)
726 if (b->enable_state == bp_permanent)
727 /* Permanent breakpoints cannot be inserted or removed. */
729 else if (b->type != bp_watchpoint
730 && b->type != bp_hardware_watchpoint
731 && b->type != bp_read_watchpoint
732 && b->type != bp_access_watchpoint
733 && b->type != bp_catch_fork
734 && b->type != bp_catch_vfork
735 && b->type != bp_catch_exec
736 && b->type != bp_catch_throw
737 && b->type != bp_catch_catch
738 && b->enable_state != bp_disabled
739 && b->enable_state != bp_shlib_disabled
740 && b->enable_state != bp_call_disabled
744 if (b->type == bp_hardware_breakpoint)
745 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
748 /* Check to see if breakpoint is in an overlay section;
749 if so, we should set the breakpoint at the LMA address.
750 Only if the section is currently mapped should we ALSO
751 set a break at the VMA address. */
752 if (overlay_debugging && b->section &&
753 section_is_overlay (b->section))
757 addr = overlay_unmapped_address (b->address, b->section);
758 val = target_insert_breakpoint (addr, b->shadow_contents);
759 /* This would be the time to check val, to see if the
760 breakpoint write to the load address succeeded.
761 However, this might be an ordinary occurrance, eg. if
762 the unmapped overlay is in ROM. */
763 val = 0; /* in case unmapped address failed */
764 if (section_is_mapped (b->section))
765 val = target_insert_breakpoint (b->address,
768 else /* ordinary (non-overlay) address */
769 val = target_insert_breakpoint (b->address, b->shadow_contents);
773 /* Can't set the breakpoint. */
774 #if defined (DISABLE_UNSETTABLE_BREAK)
775 if (DISABLE_UNSETTABLE_BREAK (b->address))
777 /* See also: disable_breakpoints_in_shlibs. */
779 b->enable_state = bp_shlib_disabled;
780 if (!disabled_breaks)
782 target_terminal_ours_for_output ();
783 warning ("Cannot insert breakpoint %d:", b->number);
784 warning ("Temporarily disabling shared library breakpoints:");
787 warning ("breakpoint #%d ", b->number);
792 target_terminal_ours_for_output ();
793 warning ("Cannot insert breakpoint %d:", b->number);
794 #ifdef ONE_PROCESS_WRITETEXT
795 warning ("The same program may be running in another process.");
797 memory_error (val, b->address); /* which bombs us out */
804 return_val = val; /* remember failure */
806 else if (ep_is_exception_catchpoint (b)
807 && b->enable_state != bp_disabled
808 && b->enable_state != bp_shlib_disabled
809 && b->enable_state != bp_call_disabled
814 /* If we get here, we must have a callback mechanism for exception
815 events -- with g++ style embedded label support, we insert
816 ordinary breakpoints and not catchpoints. */
817 /* Format possible error message */
818 sprintf (message, message1, b->number);
820 val = target_insert_breakpoint (b->address, b->shadow_contents);
823 /* Couldn't set breakpoint for some reason */
824 target_terminal_ours_for_output ();
825 warning ("Cannot insert catchpoint %d; disabling it.",
827 b->enable_state = bp_disabled;
831 /* Bp set, now make sure callbacks are enabled */
833 args_for_catchpoint_enable args;
834 args.kind = b->type == bp_catch_catch ?
835 EX_EVENT_CATCH : EX_EVENT_THROW;
837 val = catch_errors (cover_target_enable_exception_callback,
839 message, RETURN_MASK_ALL);
840 if (val != 0 && val != -1)
844 /* Check if something went wrong; val == 0 can be ignored */
847 /* something went wrong */
848 target_terminal_ours_for_output ();
849 warning ("Cannot insert catchpoint %d; disabling it.",
851 b->enable_state = bp_disabled;
856 return_val = val; /* remember failure */
859 else if ((b->type == bp_hardware_watchpoint ||
860 b->type == bp_read_watchpoint ||
861 b->type == bp_access_watchpoint)
862 && b->enable_state == bp_enabled
863 && b->disposition != disp_del_at_next_stop
867 struct frame_info *saved_frame;
868 int saved_level, within_current_scope;
869 value_ptr mark = value_mark ();
872 /* Save the current frame and level so we can restore it after
873 evaluating the watchpoint expression on its own frame. */
874 saved_frame = selected_frame;
875 saved_level = selected_frame_level;
877 /* Determine if the watchpoint is within scope. */
878 if (b->exp_valid_block == NULL)
879 within_current_scope = 1;
882 struct frame_info *fi;
884 /* There might be no current frame at this moment if we are
885 resuming from a step over a breakpoint.
886 Set up current frame before trying to find the watchpoint
888 get_current_frame ();
889 fi = find_frame_addr_in_frame_chain (b->watchpoint_frame);
890 within_current_scope = (fi != NULL);
891 if (within_current_scope)
892 select_frame (fi, -1);
895 if (within_current_scope)
897 /* Evaluate the expression and cut the chain of values
898 produced off from the value chain.
900 Make sure the value returned isn't lazy; we use
901 laziness to determine what memory GDB actually needed
902 in order to compute the value of the expression. */
903 v = evaluate_expression (b->exp);
905 value_release_to_mark (mark);
910 /* Look at each value on the value chain. */
911 for (; v; v = v->next)
913 /* If it's a memory location, and GDB actually needed
914 its contents to evaluate the expression, then we
916 if (VALUE_LVAL (v) == lval_memory
919 struct type *vtype = check_typedef (VALUE_TYPE (v));
921 /* We only watch structs and arrays if user asked
922 for it explicitly, never if they just happen to
923 appear in the middle of some value chain. */
924 if (v == b->val_chain
925 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
926 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
931 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
932 len = TYPE_LENGTH (VALUE_TYPE (v));
934 if (b->type == bp_read_watchpoint)
936 else if (b->type == bp_access_watchpoint)
939 val = target_insert_watchpoint (addr, len, type);
942 /* Don't exit the loop, try to insert
943 every value on the value chain. That's
944 because we will be removing all the
945 watches below, and removing a
946 watchpoint we didn't insert could have
954 /* Failure to insert a watchpoint on any memory value in the
955 value chain brings us here. */
958 remove_breakpoint (b, mark_uninserted);
959 warning ("Could not insert hardware watchpoint %d.",
966 printf_filtered ("Hardware watchpoint %d deleted ", b->number);
967 printf_filtered ("because the program has left the block \n");
968 printf_filtered ("in which its expression is valid.\n");
969 if (b->related_breakpoint)
970 b->related_breakpoint->disposition = disp_del_at_next_stop;
971 b->disposition = disp_del_at_next_stop;
974 /* Restore the frame and level. */
975 if ((saved_frame != selected_frame) ||
976 (saved_level != selected_frame_level))
977 select_frame (saved_frame, saved_level);
980 return_val = val; /* remember failure */
982 else if ((b->type == bp_catch_fork
983 || b->type == bp_catch_vfork
984 || b->type == bp_catch_exec)
985 && b->enable_state == bp_enabled
993 val = target_insert_fork_catchpoint (PIDGET (inferior_ptid));
996 val = target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
999 val = target_insert_exec_catchpoint (PIDGET (inferior_ptid));
1002 warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1007 target_terminal_ours_for_output ();
1008 warning ("Cannot insert catchpoint %d.", b->number);
1014 return_val = val; /* remember failure */
1023 remove_breakpoints (void)
1025 register struct breakpoint *b;
1032 val = remove_breakpoint (b, mark_uninserted);
1041 remove_hw_watchpoints (void)
1043 register struct breakpoint *b;
1049 && (b->type == bp_hardware_watchpoint
1050 || b->type == bp_read_watchpoint
1051 || b->type == bp_access_watchpoint))
1053 val = remove_breakpoint (b, mark_uninserted);
1062 reattach_breakpoints (int pid)
1064 register struct breakpoint *b;
1066 struct cleanup *old_chain = save_inferior_ptid ();
1068 /* Set inferior_ptid; remove_breakpoint uses this global. */
1069 inferior_ptid = pid_to_ptid (pid);
1074 remove_breakpoint (b, mark_inserted);
1075 if (b->type == bp_hardware_breakpoint)
1076 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
1078 val = target_insert_breakpoint (b->address, b->shadow_contents);
1081 do_cleanups (old_chain);
1086 do_cleanups (old_chain);
1091 update_breakpoints_after_exec (void)
1093 struct breakpoint *b;
1094 struct breakpoint *temp;
1096 /* Doing this first prevents the badness of having delete_breakpoint()
1097 write a breakpoint's current "shadow contents" to lift the bp. That
1098 shadow is NOT valid after an exec()! */
1099 mark_breakpoints_out ();
1101 ALL_BREAKPOINTS_SAFE (b, temp)
1103 /* Solib breakpoints must be explicitly reset after an exec(). */
1104 if (b->type == bp_shlib_event)
1106 delete_breakpoint (b);
1110 /* Thread event breakpoints must be set anew after an exec(). */
1111 if (b->type == bp_thread_event)
1113 delete_breakpoint (b);
1117 /* Step-resume breakpoints are meaningless after an exec(). */
1118 if (b->type == bp_step_resume)
1120 delete_breakpoint (b);
1124 /* Ditto the sigtramp handler breakpoints. */
1125 if (b->type == bp_through_sigtramp)
1127 delete_breakpoint (b);
1131 /* Ditto the exception-handling catchpoints. */
1132 if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
1134 delete_breakpoint (b);
1138 /* Don't delete an exec catchpoint, because else the inferior
1139 won't stop when it ought!
1141 Similarly, we probably ought to keep vfork catchpoints, 'cause
1142 on this target, we may not be able to stop when the vfork is
1143 seen, but only when the subsequent exec is seen. (And because
1144 deleting fork catchpoints here but not vfork catchpoints will
1145 seem mysterious to users, keep those too.)
1147 ??rehrauer: Let's hope that merely clearing out this catchpoint's
1148 target address field, if any, is sufficient to have it be reset
1149 automagically. Certainly on HP-UX that's true.
1151 Jim Blandy <jimb@redhat.com>: Actually, zero is a perfectly
1152 valid code address on some platforms (like the mn10200 and
1153 mn10300 simulators). We shouldn't assign any special
1154 interpretation to a breakpoint with a zero address. And in
1155 fact, GDB doesn't --- I can't see what that comment above is
1156 talking about. As far as I can tell, setting the address of a
1157 bp_catch_exec/bp_catch_vfork/bp_catch_fork breakpoint to zero
1158 is meaningless, since those are implemented with HP-UX kernel
1159 hackery, not by storing breakpoint instructions somewhere. */
1160 if ((b->type == bp_catch_exec) ||
1161 (b->type == bp_catch_vfork) ||
1162 (b->type == bp_catch_fork))
1164 b->address = (CORE_ADDR) NULL;
1168 /* bp_finish is a special case. The only way we ought to be able
1169 to see one of these when an exec() has happened, is if the user
1170 caught a vfork, and then said "finish". Ordinarily a finish just
1171 carries them to the call-site of the current callee, by setting
1172 a temporary bp there and resuming. But in this case, the finish
1173 will carry them entirely through the vfork & exec.
1175 We don't want to allow a bp_finish to remain inserted now. But
1176 we can't safely delete it, 'cause finish_command has a handle to
1177 the bp on a bpstat, and will later want to delete it. There's a
1178 chance (and I've seen it happen) that if we delete the bp_finish
1179 here, that its storage will get reused by the time finish_command
1180 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1181 We really must allow finish_command to delete a bp_finish.
1183 In the absense of a general solution for the "how do we know
1184 it's safe to delete something others may have handles to?"
1185 problem, what we'll do here is just uninsert the bp_finish, and
1186 let finish_command delete it.
1188 (We know the bp_finish is "doomed" in the sense that it's
1189 momentary, and will be deleted as soon as finish_command sees
1190 the inferior stopped. So it doesn't matter that the bp's
1191 address is probably bogus in the new a.out, unlike e.g., the
1192 solib breakpoints.) */
1194 if (b->type == bp_finish)
1199 /* Without a symbolic address, we have little hope of the
1200 pre-exec() address meaning the same thing in the post-exec()
1202 if (b->addr_string == NULL)
1204 delete_breakpoint (b);
1208 /* If this breakpoint has survived the above battery of checks, then
1209 it must have a symbolic address. Be sure that it gets reevaluated
1210 to a target address, rather than reusing the old evaluation.
1212 Jim Blandy <jimb@redhat.com>: As explained above in the comment
1213 for bp_catch_exec and friends, I'm pretty sure this is entirely
1214 unnecessary. A call to breakpoint_re_set_one always recomputes
1215 the breakpoint's address from scratch, or deletes it if it can't.
1216 So I think this assignment could be deleted without effect. */
1217 b->address = (CORE_ADDR) NULL;
1222 detach_breakpoints (int pid)
1224 register struct breakpoint *b;
1226 struct cleanup *old_chain = save_inferior_ptid ();
1228 if (pid == PIDGET (inferior_ptid))
1229 error ("Cannot detach breakpoints of inferior_ptid");
1231 /* Set inferior_ptid; remove_breakpoint uses this global. */
1232 inferior_ptid = pid_to_ptid (pid);
1237 val = remove_breakpoint (b, mark_inserted);
1240 do_cleanups (old_chain);
1245 do_cleanups (old_chain);
1250 remove_breakpoint (struct breakpoint *b, insertion_state_t is)
1254 if (b->enable_state == bp_permanent)
1255 /* Permanent breakpoints cannot be inserted or removed. */
1258 if (b->type == bp_none)
1259 warning ("attempted to remove apparently deleted breakpoint #%d?",
1262 if (b->type != bp_watchpoint
1263 && b->type != bp_hardware_watchpoint
1264 && b->type != bp_read_watchpoint
1265 && b->type != bp_access_watchpoint
1266 && b->type != bp_catch_fork
1267 && b->type != bp_catch_vfork
1268 && b->type != bp_catch_exec
1269 && b->type != bp_catch_catch
1270 && b->type != bp_catch_throw)
1272 if (b->type == bp_hardware_breakpoint)
1273 val = target_remove_hw_breakpoint (b->address, b->shadow_contents);
1276 /* Check to see if breakpoint is in an overlay section;
1277 if so, we should remove the breakpoint at the LMA address.
1278 If that is not equal to the raw address, then we should
1279 presumably remove the breakpoint there as well. */
1280 if (overlay_debugging && b->section &&
1281 section_is_overlay (b->section))
1285 addr = overlay_unmapped_address (b->address, b->section);
1286 val = target_remove_breakpoint (addr, b->shadow_contents);
1287 /* This would be the time to check val, to see if the
1288 shadow breakpoint write to the load address succeeded.
1289 However, this might be an ordinary occurrance, eg. if
1290 the unmapped overlay is in ROM. */
1291 val = 0; /* in case unmapped address failed */
1292 if (section_is_mapped (b->section))
1293 val = target_remove_breakpoint (b->address,
1294 b->shadow_contents);
1296 else /* ordinary (non-overlay) address */
1297 val = target_remove_breakpoint (b->address, b->shadow_contents);
1301 b->inserted = (is == mark_inserted);
1303 else if ((b->type == bp_hardware_watchpoint ||
1304 b->type == bp_read_watchpoint ||
1305 b->type == bp_access_watchpoint)
1306 && b->enable_state == bp_enabled
1311 b->inserted = (is == mark_inserted);
1312 /* Walk down the saved value chain. */
1313 for (v = b->val_chain; v; v = v->next)
1315 /* For each memory reference remove the watchpoint
1317 if (VALUE_LVAL (v) == lval_memory
1318 && ! VALUE_LAZY (v))
1320 struct type *vtype = check_typedef (VALUE_TYPE (v));
1322 if (v == b->val_chain
1323 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1324 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1329 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1330 len = TYPE_LENGTH (VALUE_TYPE (v));
1332 if (b->type == bp_read_watchpoint)
1334 else if (b->type == bp_access_watchpoint)
1337 val = target_remove_watchpoint (addr, len, type);
1344 /* Failure to remove any of the hardware watchpoints comes here. */
1345 if ((is == mark_uninserted) && (b->inserted))
1346 warning ("Could not remove hardware watchpoint %d.",
1349 /* Free the saved value chain. We will construct a new one
1350 the next time the watchpoint is inserted. */
1351 for (v = b->val_chain; v; v = n)
1356 b->val_chain = NULL;
1358 else if ((b->type == bp_catch_fork ||
1359 b->type == bp_catch_vfork ||
1360 b->type == bp_catch_exec)
1361 && b->enable_state == bp_enabled
1368 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
1370 case bp_catch_vfork:
1371 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
1374 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
1377 warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1382 b->inserted = (is == mark_inserted);
1384 else if ((b->type == bp_catch_catch ||
1385 b->type == bp_catch_throw)
1386 && b->enable_state == bp_enabled
1390 val = target_remove_breakpoint (b->address, b->shadow_contents);
1393 b->inserted = (is == mark_inserted);
1395 else if (ep_is_exception_catchpoint (b)
1396 && b->inserted /* sometimes previous insert doesn't happen */
1397 && b->enable_state == bp_enabled
1401 val = target_remove_breakpoint (b->address, b->shadow_contents);
1405 b->inserted = (is == mark_inserted);
1411 /* Clear the "inserted" flag in all breakpoints. */
1414 mark_breakpoints_out (void)
1416 register struct breakpoint *b;
1422 /* Clear the "inserted" flag in all breakpoints and delete any
1423 breakpoints which should go away between runs of the program.
1425 Plus other such housekeeping that has to be done for breakpoints
1428 Note: this function gets called at the end of a run (by
1429 generic_mourn_inferior) and when a run begins (by
1430 init_wait_for_inferior). */
1435 breakpoint_init_inferior (enum inf_context context)
1437 register struct breakpoint *b, *temp;
1438 static int warning_needed = 0;
1440 ALL_BREAKPOINTS_SAFE (b, temp)
1447 case bp_watchpoint_scope:
1449 /* If the call dummy breakpoint is at the entry point it will
1450 cause problems when the inferior is rerun, so we better
1453 Also get rid of scope breakpoints. */
1454 delete_breakpoint (b);
1458 case bp_hardware_watchpoint:
1459 case bp_read_watchpoint:
1460 case bp_access_watchpoint:
1462 /* Likewise for watchpoints on local expressions. */
1463 if (b->exp_valid_block != NULL)
1464 delete_breakpoint (b);
1467 /* Likewise for exception catchpoints in dynamic-linked
1468 executables where required */
1469 if (ep_is_exception_catchpoint (b) &&
1470 exception_catchpoints_are_fragile)
1473 delete_breakpoint (b);
1479 if (exception_catchpoints_are_fragile)
1480 exception_support_initialized = 0;
1482 /* Don't issue the warning unless it's really needed... */
1483 if (warning_needed && (context != inf_exited))
1485 warning ("Exception catchpoints from last run were deleted.");
1486 warning ("You must reinsert them explicitly.");
1491 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1492 exists at PC. It returns ordinary_breakpoint_here if it's an
1493 ordinary breakpoint, or permanent_breakpoint_here if it's a
1494 permanent breakpoint.
1495 - When continuing from a location with an ordinary breakpoint, we
1496 actually single step once before calling insert_breakpoints.
1497 - When continuing from a localion with a permanent breakpoint, we
1498 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1499 the target, to advance the PC past the breakpoint. */
1501 enum breakpoint_here
1502 breakpoint_here_p (CORE_ADDR pc)
1504 register struct breakpoint *b;
1505 int any_breakpoint_here = 0;
1508 if ((b->enable_state == bp_enabled
1509 || b->enable_state == bp_permanent)
1510 && b->address == pc) /* bp is enabled and matches pc */
1512 if (overlay_debugging &&
1513 section_is_overlay (b->section) &&
1514 !section_is_mapped (b->section))
1515 continue; /* unmapped overlay -- can't be a match */
1516 else if (b->enable_state == bp_permanent)
1517 return permanent_breakpoint_here;
1519 any_breakpoint_here = 1;
1522 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1526 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1527 but it only returns true if there is actually a breakpoint inserted
1531 breakpoint_inserted_here_p (CORE_ADDR pc)
1533 register struct breakpoint *b;
1537 && b->address == pc) /* bp is inserted and matches pc */
1539 if (overlay_debugging &&
1540 section_is_overlay (b->section) &&
1541 !section_is_mapped (b->section))
1542 continue; /* unmapped overlay -- can't be a match */
1550 /* Return nonzero if FRAME is a dummy frame. We can't use
1551 PC_IN_CALL_DUMMY because figuring out the saved SP would take too
1552 much time, at least using get_saved_register on the 68k. This
1553 means that for this function to work right a port must use the
1554 bp_call_dummy breakpoint. */
1557 frame_in_dummy (struct frame_info *frame)
1559 struct breakpoint *b;
1564 if (USE_GENERIC_DUMMY_FRAMES)
1565 return generic_pc_in_call_dummy (frame->pc, frame->frame, frame->frame);
1569 if (b->type == bp_call_dummy
1570 && b->frame == frame->frame
1571 /* We need to check the PC as well as the frame on the sparc,
1572 for signals.exp in the testsuite. */
1575 - SIZEOF_CALL_DUMMY_WORDS / sizeof (LONGEST) * REGISTER_SIZE))
1576 && frame->pc <= b->address)
1582 /* breakpoint_thread_match (PC, PID) returns true if the breakpoint at
1583 PC is valid for process/thread PID. */
1586 breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
1588 struct breakpoint *b;
1591 thread = pid_to_thread_id (ptid);
1594 if (b->enable_state != bp_disabled
1595 && b->enable_state != bp_shlib_disabled
1596 && b->enable_state != bp_call_disabled
1598 && (b->thread == -1 || b->thread == thread))
1600 if (overlay_debugging &&
1601 section_is_overlay (b->section) &&
1602 !section_is_mapped (b->section))
1603 continue; /* unmapped overlay -- can't be a match */
1612 /* bpstat stuff. External routines' interfaces are documented
1616 ep_is_catchpoint (struct breakpoint *ep)
1619 (ep->type == bp_catch_load)
1620 || (ep->type == bp_catch_unload)
1621 || (ep->type == bp_catch_fork)
1622 || (ep->type == bp_catch_vfork)
1623 || (ep->type == bp_catch_exec)
1624 || (ep->type == bp_catch_catch)
1625 || (ep->type == bp_catch_throw);
1627 /* ??rehrauer: Add more kinds here, as are implemented... */
1631 ep_is_shlib_catchpoint (struct breakpoint *ep)
1634 (ep->type == bp_catch_load)
1635 || (ep->type == bp_catch_unload);
1639 ep_is_exception_catchpoint (struct breakpoint *ep)
1642 (ep->type == bp_catch_catch)
1643 || (ep->type == bp_catch_throw);
1646 /* Clear a bpstat so that it says we are not at any breakpoint.
1647 Also free any storage that is part of a bpstat. */
1650 bpstat_clear (bpstat *bsp)
1661 if (p->old_val != NULL)
1662 value_free (p->old_val);
1669 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1670 is part of the bpstat is copied as well. */
1673 bpstat_copy (bpstat bs)
1677 bpstat retval = NULL;
1682 for (; bs != NULL; bs = bs->next)
1684 tmp = (bpstat) xmalloc (sizeof (*tmp));
1685 memcpy (tmp, bs, sizeof (*tmp));
1687 /* This is the first thing in the chain. */
1697 /* Find the bpstat associated with this breakpoint */
1700 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
1705 for (; bsp != NULL; bsp = bsp->next)
1707 if (bsp->breakpoint_at == breakpoint)
1713 /* Find a step_resume breakpoint associated with this bpstat.
1714 (If there are multiple step_resume bp's on the list, this function
1715 will arbitrarily pick one.)
1717 It is an error to use this function if BPSTAT doesn't contain a
1718 step_resume breakpoint.
1720 See wait_for_inferior's use of this function. */
1722 bpstat_find_step_resume_breakpoint (bpstat bsp)
1727 error ("Internal error (bpstat_find_step_resume_breakpoint)");
1729 current_thread = pid_to_thread_id (inferior_ptid);
1731 for (; bsp != NULL; bsp = bsp->next)
1733 if ((bsp->breakpoint_at != NULL) &&
1734 (bsp->breakpoint_at->type == bp_step_resume) &&
1735 (bsp->breakpoint_at->thread == current_thread ||
1736 bsp->breakpoint_at->thread == -1))
1737 return bsp->breakpoint_at;
1740 error ("Internal error (no step_resume breakpoint found)");
1744 /* Return the breakpoint number of the first breakpoint we are stopped
1745 at. *BSP upon return is a bpstat which points to the remaining
1746 breakpoints stopped at (but which is not guaranteed to be good for
1747 anything but further calls to bpstat_num).
1748 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1751 bpstat_num (bpstat *bsp)
1753 struct breakpoint *b;
1756 return 0; /* No more breakpoint values */
1759 b = (*bsp)->breakpoint_at;
1760 *bsp = (*bsp)->next;
1762 return -1; /* breakpoint that's been deleted since */
1764 return b->number; /* We have its number */
1768 /* Modify BS so that the actions will not be performed. */
1771 bpstat_clear_actions (bpstat bs)
1773 for (; bs != NULL; bs = bs->next)
1775 bs->commands = NULL;
1776 if (bs->old_val != NULL)
1778 value_free (bs->old_val);
1784 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1787 cleanup_executing_breakpoints (PTR ignore)
1789 executing_breakpoint_commands = 0;
1792 /* Execute all the commands associated with all the breakpoints at this
1793 location. Any of these commands could cause the process to proceed
1794 beyond this point, etc. We look out for such changes by checking
1795 the global "breakpoint_proceeded" after each command. */
1798 bpstat_do_actions (bpstat *bsp)
1801 struct cleanup *old_chain;
1802 struct command_line *cmd;
1804 /* Avoid endless recursion if a `source' command is contained
1806 if (executing_breakpoint_commands)
1809 executing_breakpoint_commands = 1;
1810 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
1813 /* Note that (as of this writing), our callers all appear to
1814 be passing us the address of global stop_bpstat. And, if
1815 our calls to execute_control_command cause the inferior to
1816 proceed, that global (and hence, *bsp) will change.
1818 We must be careful to not touch *bsp unless the inferior
1819 has not proceeded. */
1821 /* This pointer will iterate over the list of bpstat's. */
1824 breakpoint_proceeded = 0;
1825 for (; bs != NULL; bs = bs->next)
1830 execute_control_command (cmd);
1832 if (breakpoint_proceeded)
1837 if (breakpoint_proceeded)
1838 /* The inferior is proceeded by the command; bomb out now.
1839 The bpstat chain has been blown away by wait_for_inferior.
1840 But since execution has stopped again, there is a new bpstat
1841 to look at, so start over. */
1844 bs->commands = NULL;
1847 executing_breakpoint_commands = 0;
1848 discard_cleanups (old_chain);
1851 /* This is the normal print function for a bpstat. In the future,
1852 much of this logic could (should?) be moved to bpstat_stop_status,
1853 by having it set different print_it values.
1855 Current scheme: When we stop, bpstat_print() is called. It loops
1856 through the bpstat list of things causing this stop, calling the
1857 print_bp_stop_message function on each one. The behavior of the
1858 print_bp_stop_message function depends on the print_it field of
1859 bpstat. If such field so indicates, call this function here.
1861 Return values from this routine (ultimately used by bpstat_print()
1862 and normal_stop() to decide what to do):
1863 PRINT_NOTHING: Means we already printed all we needed to print,
1864 don't print anything else.
1865 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
1866 that something to be followed by a location.
1867 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
1868 that something to be followed by a location.
1869 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
1872 static enum print_stop_action
1873 print_it_typical (bpstat bs)
1876 struct cleanup *old_chain;
1877 struct ui_stream *stb;
1878 stb = ui_out_stream_new (uiout);
1879 old_chain = make_cleanup_ui_out_stream_delete (stb);
1881 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
1882 which has since been deleted. */
1883 if (bs->breakpoint_at == NULL)
1884 return PRINT_UNKNOWN;
1886 switch (bs->breakpoint_at->type)
1889 case bp_hardware_breakpoint:
1891 annotate_breakpoint (bs->breakpoint_at->number);
1892 ui_out_text (uiout, "\nBreakpoint ");
1893 if (ui_out_is_mi_like_p (uiout))
1894 ui_out_field_string (uiout, "reason", "breakpoint-hit");
1895 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
1896 ui_out_text (uiout, ", ");
1897 return PRINT_SRC_AND_LOC;
1899 /* I think the user probably only wants to see one breakpoint
1900 number, not all of them. */
1901 annotate_breakpoint (bs->breakpoint_at->number);
1902 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
1903 return PRINT_SRC_AND_LOC;
1907 case bp_shlib_event:
1908 /* Did we stop because the user set the stop_on_solib_events
1909 variable? (If so, we report this as a generic, "Stopped due
1910 to shlib event" message.) */
1911 printf_filtered ("Stopped due to shared library event\n");
1912 return PRINT_NOTHING;
1915 case bp_thread_event:
1916 /* Not sure how we will get here.
1917 GDB should not stop for these breakpoints. */
1918 printf_filtered ("Thread Event Breakpoint: gdb should not stop!\n");
1919 return PRINT_NOTHING;
1923 annotate_catchpoint (bs->breakpoint_at->number);
1924 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1925 printf_filtered ("loaded");
1926 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1927 return PRINT_SRC_AND_LOC;
1930 case bp_catch_unload:
1931 annotate_catchpoint (bs->breakpoint_at->number);
1932 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1933 printf_filtered ("unloaded");
1934 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1935 return PRINT_SRC_AND_LOC;
1939 annotate_catchpoint (bs->breakpoint_at->number);
1940 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1941 printf_filtered ("forked");
1942 printf_filtered (" process %d), ",
1943 bs->breakpoint_at->forked_inferior_pid);
1944 return PRINT_SRC_AND_LOC;
1947 case bp_catch_vfork:
1948 annotate_catchpoint (bs->breakpoint_at->number);
1949 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1950 printf_filtered ("vforked");
1951 printf_filtered (" process %d), ",
1952 bs->breakpoint_at->forked_inferior_pid);
1953 return PRINT_SRC_AND_LOC;
1957 annotate_catchpoint (bs->breakpoint_at->number);
1958 printf_filtered ("\nCatchpoint %d (exec'd %s), ",
1959 bs->breakpoint_at->number,
1960 bs->breakpoint_at->exec_pathname);
1961 return PRINT_SRC_AND_LOC;
1964 case bp_catch_catch:
1965 if (current_exception_event &&
1966 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
1968 annotate_catchpoint (bs->breakpoint_at->number);
1969 printf_filtered ("\nCatchpoint %d (exception caught), ",
1970 bs->breakpoint_at->number);
1971 printf_filtered ("throw location ");
1972 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
1973 printf_filtered ("%s:%d",
1974 CURRENT_EXCEPTION_THROW_FILE,
1975 CURRENT_EXCEPTION_THROW_LINE);
1977 printf_filtered ("unknown");
1979 printf_filtered (", catch location ");
1980 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
1981 printf_filtered ("%s:%d",
1982 CURRENT_EXCEPTION_CATCH_FILE,
1983 CURRENT_EXCEPTION_CATCH_LINE);
1985 printf_filtered ("unknown");
1987 printf_filtered ("\n");
1988 /* don't bother to print location frame info */
1989 return PRINT_SRC_ONLY;
1993 /* really throw, some other bpstat will handle it */
1994 return PRINT_UNKNOWN;
1998 case bp_catch_throw:
1999 if (current_exception_event &&
2000 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2002 annotate_catchpoint (bs->breakpoint_at->number);
2003 printf_filtered ("\nCatchpoint %d (exception thrown), ",
2004 bs->breakpoint_at->number);
2005 printf_filtered ("throw location ");
2006 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2007 printf_filtered ("%s:%d",
2008 CURRENT_EXCEPTION_THROW_FILE,
2009 CURRENT_EXCEPTION_THROW_LINE);
2011 printf_filtered ("unknown");
2013 printf_filtered (", catch location ");
2014 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2015 printf_filtered ("%s:%d",
2016 CURRENT_EXCEPTION_CATCH_FILE,
2017 CURRENT_EXCEPTION_CATCH_LINE);
2019 printf_filtered ("unknown");
2021 printf_filtered ("\n");
2022 /* don't bother to print location frame info */
2023 return PRINT_SRC_ONLY;
2027 /* really catch, some other bpstat will handle it */
2028 return PRINT_UNKNOWN;
2033 case bp_hardware_watchpoint:
2034 if (bs->old_val != NULL)
2036 annotate_watchpoint (bs->breakpoint_at->number);
2038 if (ui_out_is_mi_like_p (uiout))
2039 ui_out_field_string (uiout, "reason", "watchpoint-trigger");
2040 mention (bs->breakpoint_at);
2041 ui_out_tuple_begin (uiout, "value");
2042 ui_out_text (uiout, "\nOld value = ");
2043 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2044 ui_out_field_stream (uiout, "old", stb);
2045 ui_out_text (uiout, "\nNew value = ");
2046 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2047 ui_out_field_stream (uiout, "new", stb);
2048 ui_out_tuple_end (uiout);
2049 ui_out_text (uiout, "\n");
2051 mention (bs->breakpoint_at);
2052 printf_filtered ("\nOld value = ");
2053 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2054 printf_filtered ("\nNew value = ");
2055 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2056 Val_pretty_default);
2057 printf_filtered ("\n");
2059 value_free (bs->old_val);
2062 /* More than one watchpoint may have been triggered. */
2063 return PRINT_UNKNOWN;
2066 case bp_read_watchpoint:
2068 if (ui_out_is_mi_like_p (uiout))
2069 ui_out_field_string (uiout, "reason", "read-watchpoint-trigger");
2070 mention (bs->breakpoint_at);
2071 ui_out_tuple_begin (uiout, "value");
2072 ui_out_text (uiout, "\nValue = ");
2073 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2074 ui_out_field_stream (uiout, "value", stb);
2075 ui_out_tuple_end (uiout);
2076 ui_out_text (uiout, "\n");
2078 mention (bs->breakpoint_at);
2079 printf_filtered ("\nValue = ");
2080 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2081 Val_pretty_default);
2082 printf_filtered ("\n");
2084 return PRINT_UNKNOWN;
2087 case bp_access_watchpoint:
2089 if (bs->old_val != NULL)
2091 annotate_watchpoint (bs->breakpoint_at->number);
2092 if (ui_out_is_mi_like_p (uiout))
2093 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2094 mention (bs->breakpoint_at);
2095 ui_out_tuple_begin (uiout, "value");
2096 ui_out_text (uiout, "\nOld value = ");
2097 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2098 ui_out_field_stream (uiout, "old", stb);
2099 value_free (bs->old_val);
2101 ui_out_text (uiout, "\nNew value = ");
2105 mention (bs->breakpoint_at);
2106 if (ui_out_is_mi_like_p (uiout))
2107 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2108 ui_out_tuple_begin (uiout, "value");
2109 ui_out_text (uiout, "\nValue = ");
2111 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2112 ui_out_field_stream (uiout, "new", stb);
2113 ui_out_tuple_end (uiout);
2114 ui_out_text (uiout, "\n");
2116 if (bs->old_val != NULL)
2118 annotate_watchpoint (bs->breakpoint_at->number);
2119 mention (bs->breakpoint_at);
2120 printf_filtered ("\nOld value = ");
2121 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2122 value_free (bs->old_val);
2124 printf_filtered ("\nNew value = ");
2128 mention (bs->breakpoint_at);
2129 printf_filtered ("\nValue = ");
2131 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2132 Val_pretty_default);
2133 printf_filtered ("\n");
2135 return PRINT_UNKNOWN;
2138 /* Fall through, we don't deal with these types of breakpoints
2143 if (ui_out_is_mi_like_p (uiout))
2144 ui_out_field_string (uiout, "reason", "function-finished");
2146 return PRINT_UNKNOWN;
2151 if (ui_out_is_mi_like_p (uiout))
2152 ui_out_field_string (uiout, "reason", "location-reached");
2154 return PRINT_UNKNOWN;
2159 case bp_longjmp_resume:
2160 case bp_step_resume:
2161 case bp_through_sigtramp:
2162 case bp_watchpoint_scope:
2165 return PRINT_UNKNOWN;
2169 /* Generic routine for printing messages indicating why we
2170 stopped. The behavior of this function depends on the value
2171 'print_it' in the bpstat structure. Under some circumstances we
2172 may decide not to print anything here and delegate the task to
2175 static enum print_stop_action
2176 print_bp_stop_message (bpstat bs)
2178 switch (bs->print_it)
2181 /* Nothing should be printed for this bpstat entry. */
2182 return PRINT_UNKNOWN;
2186 /* We still want to print the frame, but we already printed the
2187 relevant messages. */
2188 return PRINT_SRC_AND_LOC;
2191 case print_it_normal:
2192 /* Normal case, we handle everything in print_it_typical. */
2193 return print_it_typical (bs);
2196 internal_error (__FILE__, __LINE__,
2197 "print_bp_stop_message: unrecognized enum value");
2202 /* Print a message indicating what happened. This is called from
2203 normal_stop(). The input to this routine is the head of the bpstat
2204 list - a list of the eventpoints that caused this stop. This
2205 routine calls the generic print routine for printing a message
2206 about reasons for stopping. This will print (for example) the
2207 "Breakpoint n," part of the output. The return value of this
2210 PRINT_UNKNOWN: Means we printed nothing
2211 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2212 code to print the location. An example is
2213 "Breakpoint 1, " which should be followed by
2215 PRINT_SRC_ONLY: Means we printed something, but there is no need
2216 to also print the location part of the message.
2217 An example is the catch/throw messages, which
2218 don't require a location appended to the end.
2219 PRINT_NOTHING: We have done some printing and we don't need any
2220 further info to be printed.*/
2222 enum print_stop_action
2223 bpstat_print (bpstat bs)
2227 /* Maybe another breakpoint in the chain caused us to stop.
2228 (Currently all watchpoints go on the bpstat whether hit or not.
2229 That probably could (should) be changed, provided care is taken
2230 with respect to bpstat_explains_signal). */
2231 for (; bs; bs = bs->next)
2233 val = print_bp_stop_message (bs);
2234 if (val == PRINT_SRC_ONLY
2235 || val == PRINT_SRC_AND_LOC
2236 || val == PRINT_NOTHING)
2240 /* We reached the end of the chain, or we got a null BS to start
2241 with and nothing was printed. */
2242 return PRINT_UNKNOWN;
2245 /* Evaluate the expression EXP and return 1 if value is zero.
2246 This is used inside a catch_errors to evaluate the breakpoint condition.
2247 The argument is a "struct expression *" that has been cast to char * to
2248 make it pass through catch_errors. */
2251 breakpoint_cond_eval (PTR exp)
2253 value_ptr mark = value_mark ();
2254 int i = !value_true (evaluate_expression ((struct expression *) exp));
2255 value_free_to_mark (mark);
2259 /* Allocate a new bpstat and chain it to the current one. */
2262 bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
2266 bs = (bpstat) xmalloc (sizeof (*bs));
2268 bs->breakpoint_at = b;
2269 /* If the condition is false, etc., don't do the commands. */
2270 bs->commands = NULL;
2272 bs->print_it = print_it_normal;
2276 /* Possible return values for watchpoint_check (this can't be an enum
2277 because of check_errors). */
2278 /* The watchpoint has been deleted. */
2279 #define WP_DELETED 1
2280 /* The value has changed. */
2281 #define WP_VALUE_CHANGED 2
2282 /* The value has not changed. */
2283 #define WP_VALUE_NOT_CHANGED 3
2285 #define BP_TEMPFLAG 1
2286 #define BP_HARDWAREFLAG 2
2288 /* Check watchpoint condition. */
2291 watchpoint_check (PTR p)
2293 bpstat bs = (bpstat) p;
2294 struct breakpoint *b;
2295 struct frame_info *fr;
2296 int within_current_scope;
2298 b = bs->breakpoint_at;
2300 if (b->exp_valid_block == NULL)
2301 within_current_scope = 1;
2304 /* There is no current frame at this moment. If we're going to have
2305 any chance of handling watchpoints on local variables, we'll need
2306 the frame chain (so we can determine if we're in scope). */
2307 reinit_frame_cache ();
2308 fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
2309 within_current_scope = (fr != NULL);
2310 if (within_current_scope)
2311 /* If we end up stopping, the current frame will get selected
2312 in normal_stop. So this call to select_frame won't affect
2314 select_frame (fr, -1);
2317 if (within_current_scope)
2319 /* We use value_{,free_to_}mark because it could be a
2320 *long* time before we return to the command level and
2321 call free_all_values. We can't call free_all_values because
2322 we might be in the middle of evaluating a function call. */
2324 value_ptr mark = value_mark ();
2325 value_ptr new_val = evaluate_expression (bs->breakpoint_at->exp);
2326 if (!value_equal (b->val, new_val))
2328 release_value (new_val);
2329 value_free_to_mark (mark);
2330 bs->old_val = b->val;
2332 /* We will stop here */
2333 return WP_VALUE_CHANGED;
2337 /* Nothing changed, don't do anything. */
2338 value_free_to_mark (mark);
2339 /* We won't stop here */
2340 return WP_VALUE_NOT_CHANGED;
2345 /* This seems like the only logical thing to do because
2346 if we temporarily ignored the watchpoint, then when
2347 we reenter the block in which it is valid it contains
2348 garbage (in the case of a function, it may have two
2349 garbage values, one before and one after the prologue).
2350 So we can't even detect the first assignment to it and
2351 watch after that (since the garbage may or may not equal
2352 the first value assigned). */
2353 /* We print all the stop information in print_it_typical(), but
2354 in this case, by the time we call print_it_typical() this bp
2355 will be deleted already. So we have no choice but print the
2356 information here. */
2358 if (ui_out_is_mi_like_p (uiout))
2359 ui_out_field_string (uiout, "reason", "watchpoint-scope");
2360 ui_out_text (uiout, "\nWatchpoint ");
2361 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2362 ui_out_text (uiout, " deleted because the program has left the block in\n\
2363 which its expression is valid.\n");
2366 Watchpoint %d deleted because the program has left the block in\n\
2367 which its expression is valid.\n", bs->breakpoint_at->number);
2370 if (b->related_breakpoint)
2371 b->related_breakpoint->disposition = disp_del_at_next_stop;
2372 b->disposition = disp_del_at_next_stop;
2378 /* Get a bpstat associated with having just stopped at address *PC
2379 and frame address CORE_ADDRESS. Update *PC to point at the
2380 breakpoint (if we hit a breakpoint). NOT_A_BREAKPOINT is nonzero
2381 if this is known to not be a real breakpoint (it could still be a
2382 watchpoint, though). */
2384 /* Determine whether we stopped at a breakpoint, etc, or whether we
2385 don't understand this stop. Result is a chain of bpstat's such that:
2387 if we don't understand the stop, the result is a null pointer.
2389 if we understand why we stopped, the result is not null.
2391 Each element of the chain refers to a particular breakpoint or
2392 watchpoint at which we have stopped. (We may have stopped for
2393 several reasons concurrently.)
2395 Each element of the chain has valid next, breakpoint_at,
2396 commands, FIXME??? fields. */
2399 bpstat_stop_status (CORE_ADDR *pc, int not_a_breakpoint)
2401 register struct breakpoint *b, *temp;
2403 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2404 int real_breakpoint = 0;
2405 /* Root of the chain of bpstat's */
2406 struct bpstats root_bs[1];
2407 /* Pointer to the last thing in the chain currently. */
2408 bpstat bs = root_bs;
2409 static char message1[] =
2410 "Error evaluating expression for watchpoint %d\n";
2411 char message[sizeof (message1) + 30 /* slop */ ];
2413 /* Get the address where the breakpoint would have been.
2414 The "not_a_breakpoint" argument is meant to distinguish
2415 between a breakpoint trap event and a trace/singlestep
2416 trap event. For a trace/singlestep trap event, we would
2417 not want to subtract DECR_PC_AFTER_BREAK from the PC. */
2419 bp_addr = *pc - (not_a_breakpoint && !SOFTWARE_SINGLE_STEP_P () ?
2420 0 : DECR_PC_AFTER_BREAK);
2422 ALL_BREAKPOINTS_SAFE (b, temp)
2424 if (b->enable_state == bp_disabled
2425 || b->enable_state == bp_shlib_disabled
2426 || b->enable_state == bp_call_disabled)
2429 if (b->type != bp_watchpoint
2430 && b->type != bp_hardware_watchpoint
2431 && b->type != bp_read_watchpoint
2432 && b->type != bp_access_watchpoint
2433 && b->type != bp_hardware_breakpoint
2434 && b->type != bp_catch_fork
2435 && b->type != bp_catch_vfork
2436 && b->type != bp_catch_exec
2437 && b->type != bp_catch_catch
2438 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2439 if (b->address != bp_addr || /* address doesn't match or */
2440 (overlay_debugging && /* overlay doesn't match */
2441 section_is_overlay (b->section) &&
2442 !section_is_mapped (b->section)))
2445 if (b->type == bp_hardware_breakpoint
2446 && b->address != (*pc - DECR_PC_AFTER_HW_BREAK))
2449 /* Is this a catchpoint of a load or unload? If so, did we
2450 get a load or unload of the specified library? If not,
2452 if ((b->type == bp_catch_load)
2453 #if defined(SOLIB_HAVE_LOAD_EVENT)
2454 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2455 || ((b->dll_pathname != NULL)
2456 && (strcmp (b->dll_pathname,
2457 SOLIB_LOADED_LIBRARY_PATHNAME (
2458 PIDGET (inferior_ptid)))
2464 if ((b->type == bp_catch_unload)
2465 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2466 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2467 || ((b->dll_pathname != NULL)
2468 && (strcmp (b->dll_pathname,
2469 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2470 PIDGET (inferior_ptid)))
2476 if ((b->type == bp_catch_fork)
2477 && !target_has_forked (PIDGET (inferior_ptid),
2478 &b->forked_inferior_pid))
2481 if ((b->type == bp_catch_vfork)
2482 && !target_has_vforked (PIDGET (inferior_ptid),
2483 &b->forked_inferior_pid))
2486 if ((b->type == bp_catch_exec)
2487 && !target_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
2490 if (ep_is_exception_catchpoint (b) &&
2491 !(current_exception_event = target_get_current_exception_event ()))
2494 /* Come here if it's a watchpoint, or if the break address matches */
2496 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2498 /* Watchpoints may change this, if not found to have triggered. */
2502 sprintf (message, message1, b->number);
2503 if (b->type == bp_watchpoint ||
2504 b->type == bp_hardware_watchpoint)
2506 switch (catch_errors (watchpoint_check, bs, message,
2510 /* We've already printed what needs to be printed. */
2511 /* Actually this is superfluous, because by the time we
2512 call print_it_typical() the wp will be already deleted,
2513 and the function will return immediately. */
2514 bs->print_it = print_it_done;
2517 case WP_VALUE_CHANGED:
2521 case WP_VALUE_NOT_CHANGED:
2523 bs->print_it = print_it_noop;
2530 /* Error from catch_errors. */
2531 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2532 if (b->related_breakpoint)
2533 b->related_breakpoint->disposition = disp_del_at_next_stop;
2534 b->disposition = disp_del_at_next_stop;
2535 /* We've already printed what needs to be printed. */
2536 bs->print_it = print_it_done;
2542 else if (b->type == bp_read_watchpoint ||
2543 b->type == bp_access_watchpoint)
2549 addr = target_stopped_data_address ();
2552 for (v = b->val_chain; v; v = v->next)
2554 if (VALUE_LVAL (v) == lval_memory
2555 && ! VALUE_LAZY (v))
2557 struct type *vtype = check_typedef (VALUE_TYPE (v));
2559 if (v == b->val_chain
2560 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2561 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2565 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2566 /* Exact match not required. Within range is
2568 if (addr >= vaddr &&
2569 addr < vaddr + TYPE_LENGTH (VALUE_TYPE (v)))
2575 switch (catch_errors (watchpoint_check, bs, message,
2579 /* We've already printed what needs to be printed. */
2580 bs->print_it = print_it_done;
2583 case WP_VALUE_CHANGED:
2584 if (b->type == bp_read_watchpoint)
2586 /* Don't stop: read watchpoints shouldn't fire if
2587 the value has changed. This is for targets which
2588 cannot set read-only watchpoints. */
2589 bs->print_it = print_it_noop;
2595 case WP_VALUE_NOT_CHANGED:
2602 /* Error from catch_errors. */
2603 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2604 if (b->related_breakpoint)
2605 b->related_breakpoint->disposition = disp_del_at_next_stop;
2606 b->disposition = disp_del_at_next_stop;
2607 /* We've already printed what needs to be printed. */
2608 bs->print_it = print_it_done;
2611 else /* found == 0 */
2613 /* This is a case where some watchpoint(s) triggered,
2614 but not at the address of this watchpoint (FOUND
2615 was left zero). So don't print anything for this
2617 bs->print_it = print_it_noop;
2624 /* By definition, an encountered breakpoint is a triggered
2628 real_breakpoint = 1;
2632 b->frame != (get_current_frame ())->frame)
2636 int value_is_zero = 0;
2640 /* Need to select the frame, with all that implies
2641 so that the conditions will have the right context. */
2642 select_frame (get_current_frame (), 0);
2644 = catch_errors (breakpoint_cond_eval, (b->cond),
2645 "Error in testing breakpoint condition:\n",
2647 /* FIXME-someday, should give breakpoint # */
2650 if (b->cond && value_is_zero)
2653 /* Don't consider this a hit. */
2656 else if (b->ignore_count > 0)
2659 annotate_ignore_count_change ();
2664 /* We will stop here */
2665 if (b->disposition == disp_disable)
2666 b->enable_state = bp_disabled;
2667 bs->commands = b->commands;
2671 (STREQ ("silent", bs->commands->line) ||
2672 (xdb_commands && STREQ ("Q", bs->commands->line))))
2674 bs->commands = bs->commands->next;
2679 /* Print nothing for this entry if we dont stop or if we dont print. */
2680 if (bs->stop == 0 || bs->print == 0)
2681 bs->print_it = print_it_noop;
2684 bs->next = NULL; /* Terminate the chain */
2685 bs = root_bs->next; /* Re-grab the head of the chain */
2687 if (real_breakpoint && bs)
2689 if (bs->breakpoint_at->type == bp_hardware_breakpoint)
2691 if (DECR_PC_AFTER_HW_BREAK != 0)
2693 *pc = *pc - DECR_PC_AFTER_HW_BREAK;
2699 if (DECR_PC_AFTER_BREAK != 0 || must_shift_inst_regs)
2702 #if defined (SHIFT_INST_REGS)
2704 #else /* No SHIFT_INST_REGS. */
2706 #endif /* No SHIFT_INST_REGS. */
2711 /* The value of a hardware watchpoint hasn't changed, but the
2712 intermediate memory locations we are watching may have. */
2713 if (bs && !bs->stop &&
2714 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2715 bs->breakpoint_at->type == bp_read_watchpoint ||
2716 bs->breakpoint_at->type == bp_access_watchpoint))
2718 remove_breakpoints ();
2719 insert_breakpoints ();
2724 /* Tell what to do about this bpstat. */
2726 bpstat_what (bpstat bs)
2728 /* Classify each bpstat as one of the following. */
2731 /* This bpstat element has no effect on the main_action. */
2734 /* There was a watchpoint, stop but don't print. */
2737 /* There was a watchpoint, stop and print. */
2740 /* There was a breakpoint but we're not stopping. */
2743 /* There was a breakpoint, stop but don't print. */
2746 /* There was a breakpoint, stop and print. */
2749 /* We hit the longjmp breakpoint. */
2752 /* We hit the longjmp_resume breakpoint. */
2755 /* We hit the step_resume breakpoint. */
2758 /* We hit the through_sigtramp breakpoint. */
2761 /* We hit the shared library event breakpoint. */
2764 /* We caught a shared library event. */
2767 /* This is just used to count how many enums there are. */
2771 /* Here is the table which drives this routine. So that we can
2772 format it pretty, we define some abbreviations for the
2773 enum bpstat_what codes. */
2774 #define kc BPSTAT_WHAT_KEEP_CHECKING
2775 #define ss BPSTAT_WHAT_STOP_SILENT
2776 #define sn BPSTAT_WHAT_STOP_NOISY
2777 #define sgl BPSTAT_WHAT_SINGLE
2778 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2779 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2780 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2781 #define sr BPSTAT_WHAT_STEP_RESUME
2782 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2783 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2784 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2786 /* "Can't happen." Might want to print an error message.
2787 abort() is not out of the question, but chances are GDB is just
2788 a bit confused, not unusable. */
2789 #define err BPSTAT_WHAT_STOP_NOISY
2791 /* Given an old action and a class, come up with a new action. */
2792 /* One interesting property of this table is that wp_silent is the same
2793 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2794 after stopping, the check for whether to step over a breakpoint
2795 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2796 reference to how we stopped. We retain separate wp_silent and
2797 bp_silent codes in case we want to change that someday.
2799 Another possibly interesting property of this table is that
2800 there's a partial ordering, priority-like, of the actions. Once
2801 you've decided that some action is appropriate, you'll never go
2802 back and decide something of a lower priority is better. The
2805 kc < clr sgl shl shlr slr sn sr ss ts
2806 sgl < clrs shl shlr slr sn sr ss ts
2807 slr < err shl shlr sn sr ss ts
2808 clr < clrs err shl shlr sn sr ss ts
2809 clrs < err shl shlr sn sr ss ts
2810 ss < shl shlr sn sr ts
2817 What I think this means is that we don't need a damned table
2818 here. If you just put the rows and columns in the right order,
2819 it'd look awfully regular. We could simply walk the bpstat list
2820 and choose the highest priority action we find, with a little
2821 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
2822 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
2823 is messy anyway). */
2825 /* step_resume entries: a step resume breakpoint overrides another
2826 breakpoint of signal handling (see comment in wait_for_inferior
2827 at first IN_SIGTRAMP where we set the step_resume breakpoint). */
2828 /* We handle the through_sigtramp_breakpoint the same way; having both
2829 one of those and a step_resume_breakpoint is probably very rare (?). */
2831 static const enum bpstat_what_main_action
2832 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
2835 /* kc ss sn sgl slr clr clrs sr ts shl shlr
2838 {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
2840 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2842 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2844 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
2846 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2848 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2850 {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr},
2852 {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
2854 {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
2856 {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
2858 {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
2860 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
2875 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
2876 struct bpstat_what retval;
2878 retval.call_dummy = 0;
2879 for (; bs != NULL; bs = bs->next)
2881 enum class bs_class = no_effect;
2882 if (bs->breakpoint_at == NULL)
2883 /* I suspect this can happen if it was a momentary breakpoint
2884 which has since been deleted. */
2886 switch (bs->breakpoint_at->type)
2892 case bp_hardware_breakpoint:
2898 bs_class = bp_noisy;
2900 bs_class = bp_silent;
2903 bs_class = bp_nostop;
2906 case bp_hardware_watchpoint:
2907 case bp_read_watchpoint:
2908 case bp_access_watchpoint:
2912 bs_class = wp_noisy;
2914 bs_class = wp_silent;
2917 /* There was a watchpoint, but we're not stopping.
2918 This requires no further action. */
2919 bs_class = no_effect;
2922 bs_class = long_jump;
2924 case bp_longjmp_resume:
2925 bs_class = long_resume;
2927 case bp_step_resume:
2930 bs_class = step_resume;
2933 /* It is for the wrong frame. */
2934 bs_class = bp_nostop;
2936 case bp_through_sigtramp:
2937 bs_class = through_sig;
2939 case bp_watchpoint_scope:
2940 bs_class = bp_nostop;
2942 case bp_shlib_event:
2943 bs_class = shlib_event;
2945 case bp_thread_event:
2946 bs_class = bp_nostop;
2949 case bp_catch_unload:
2950 /* Only if this catchpoint triggered should we cause the
2951 step-out-of-dld behaviour. Otherwise, we ignore this
2954 bs_class = catch_shlib_event;
2956 bs_class = no_effect;
2959 case bp_catch_vfork:
2964 bs_class = bp_noisy;
2966 bs_class = bp_silent;
2969 /* There was a catchpoint, but we're not stopping.
2970 This requires no further action. */
2971 bs_class = no_effect;
2973 case bp_catch_catch:
2974 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
2975 bs_class = bp_nostop;
2977 bs_class = bs->print ? bp_noisy : bp_silent;
2979 case bp_catch_throw:
2980 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
2981 bs_class = bp_nostop;
2983 bs_class = bs->print ? bp_noisy : bp_silent;
2986 /* Make sure the action is stop (silent or noisy),
2987 so infrun.c pops the dummy frame. */
2988 bs_class = bp_silent;
2989 retval.call_dummy = 1;
2992 current_action = table[(int) bs_class][(int) current_action];
2994 retval.main_action = current_action;
2998 /* Nonzero if we should step constantly (e.g. watchpoints on machines
2999 without hardware support). This isn't related to a specific bpstat,
3000 just to things like whether watchpoints are set. */
3003 bpstat_should_step (void)
3005 struct breakpoint *b;
3007 if (b->enable_state == bp_enabled && b->type == bp_watchpoint)
3012 /* Nonzero if there are enabled hardware watchpoints. */
3014 bpstat_have_active_hw_watchpoints (void)
3016 struct breakpoint *b;
3018 if ((b->enable_state == bp_enabled) &&
3020 ((b->type == bp_hardware_watchpoint) ||
3021 (b->type == bp_read_watchpoint) ||
3022 (b->type == bp_access_watchpoint)))
3028 /* Given a bpstat that records zero or more triggered eventpoints, this
3029 function returns another bpstat which contains only the catchpoints
3030 on that first list, if any. */
3032 bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
3034 struct bpstats root_bs[1];
3035 bpstat bs = root_bs;
3036 struct breakpoint *ep;
3039 bpstat_clear (cp_list);
3040 root_bs->next = NULL;
3042 for (; ep_list != NULL; ep_list = ep_list->next)
3044 /* Is this eventpoint a catchpoint? If not, ignore it. */
3045 ep = ep_list->breakpoint_at;
3048 if ((ep->type != bp_catch_load) &&
3049 (ep->type != bp_catch_unload) &&
3050 (ep->type != bp_catch_catch) &&
3051 (ep->type != bp_catch_throw))
3052 /* pai: (temp) ADD fork/vfork here!! */
3055 /* Yes; add it to the list. */
3056 bs = bpstat_alloc (ep, bs);
3061 #if defined(SOLIB_ADD)
3062 /* Also, for each triggered catchpoint, tag it with the name of
3063 the library that caused this trigger. (We copy the name now,
3064 because it's only guaranteed to be available NOW, when the
3065 catchpoint triggers. Clients who may wish to know the name
3066 later must get it from the catchpoint itself.) */
3067 if (ep->triggered_dll_pathname != NULL)
3068 xfree (ep->triggered_dll_pathname);
3069 if (ep->type == bp_catch_load)
3070 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3071 PIDGET (inferior_ptid));
3073 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3074 PIDGET (inferior_ptid));
3076 dll_pathname = NULL;
3080 ep->triggered_dll_pathname = (char *)
3081 xmalloc (strlen (dll_pathname) + 1);
3082 strcpy (ep->triggered_dll_pathname, dll_pathname);
3085 ep->triggered_dll_pathname = NULL;
3091 /* Print B to gdb_stdout. */
3093 print_one_breakpoint (struct breakpoint *b,
3094 CORE_ADDR *last_addr)
3096 register struct command_line *l;
3097 register struct symbol *sym;
3098 struct ep_type_description
3103 static struct ep_type_description bptypes[] =
3105 {bp_none, "?deleted?"},
3106 {bp_breakpoint, "breakpoint"},
3107 {bp_hardware_breakpoint, "hw breakpoint"},
3108 {bp_until, "until"},
3109 {bp_finish, "finish"},
3110 {bp_watchpoint, "watchpoint"},
3111 {bp_hardware_watchpoint, "hw watchpoint"},
3112 {bp_read_watchpoint, "read watchpoint"},
3113 {bp_access_watchpoint, "acc watchpoint"},
3114 {bp_longjmp, "longjmp"},
3115 {bp_longjmp_resume, "longjmp resume"},
3116 {bp_step_resume, "step resume"},
3117 {bp_through_sigtramp, "sigtramp"},
3118 {bp_watchpoint_scope, "watchpoint scope"},
3119 {bp_call_dummy, "call dummy"},
3120 {bp_shlib_event, "shlib events"},
3121 {bp_thread_event, "thread events"},
3122 {bp_catch_load, "catch load"},
3123 {bp_catch_unload, "catch unload"},
3124 {bp_catch_fork, "catch fork"},
3125 {bp_catch_vfork, "catch vfork"},
3126 {bp_catch_exec, "catch exec"},
3127 {bp_catch_catch, "catch catch"},
3128 {bp_catch_throw, "catch throw"}
3131 static char *bpdisps[] =
3132 {"del", "dstp", "dis", "keep"};
3133 static char bpenables[] = "nynny";
3134 char wrap_indent[80];
3136 struct ui_stream *stb = ui_out_stream_new (uiout);
3137 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3142 ui_out_tuple_begin (uiout, "bkpt");
3148 ui_out_field_int (uiout, "number", b->number);
3150 printf_filtered ("%-3d ", b->number);
3155 if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3156 || ((int) b->type != bptypes[(int) b->type].type))
3157 internal_error (__FILE__, __LINE__,
3158 "bptypes table does not describe type #%d.",
3161 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3163 printf_filtered ("%-14s ", bptypes[(int) b->type].description);
3169 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
3171 printf_filtered ("%-4s ", bpdisps[(int) b->disposition]);
3177 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
3178 ui_out_spaces (uiout, 2);
3180 printf_filtered ("%-3c ", bpenables[(int) b->enable_state]);
3184 strcpy (wrap_indent, " ");
3187 if (TARGET_ADDR_BIT <= 32)
3188 strcat (wrap_indent, " ");
3190 strcat (wrap_indent, " ");
3195 internal_error (__FILE__, __LINE__,
3196 "print_one_breakpoint: bp_none encountered\n");
3200 case bp_hardware_watchpoint:
3201 case bp_read_watchpoint:
3202 case bp_access_watchpoint:
3203 /* Field 4, the address, is omitted (which makes the columns
3204 not line up too nicely with the headers, but the effect
3205 is relatively readable). */
3208 ui_out_field_skip (uiout, "addr");
3210 print_expression (b->exp, stb->stream);
3211 ui_out_field_stream (uiout, "what", stb);
3214 print_expression (b->exp, gdb_stdout);
3219 case bp_catch_unload:
3220 /* Field 4, the address, is omitted (which makes the columns
3221 not line up too nicely with the headers, but the effect
3222 is relatively readable). */
3225 ui_out_field_skip (uiout, "addr");
3227 if (b->dll_pathname == NULL)
3229 ui_out_field_string (uiout, "what", "<any library>");
3230 ui_out_spaces (uiout, 1);
3234 ui_out_text (uiout, "library \"");
3235 ui_out_field_string (uiout, "what", b->dll_pathname);
3236 ui_out_text (uiout, "\" ");
3240 if (b->dll_pathname == NULL)
3241 printf_filtered ("<any library> ");
3243 printf_filtered ("library \"%s\" ", b->dll_pathname);
3248 case bp_catch_vfork:
3249 /* Field 4, the address, is omitted (which makes the columns
3250 not line up too nicely with the headers, but the effect
3251 is relatively readable). */
3254 ui_out_field_skip (uiout, "addr");
3256 if (b->forked_inferior_pid != 0)
3258 ui_out_text (uiout, "process ");
3259 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3260 ui_out_spaces (uiout, 1);
3264 if (b->forked_inferior_pid != 0)
3265 printf_filtered ("process %d ", b->forked_inferior_pid);
3270 /* Field 4, the address, is omitted (which makes the columns
3271 not line up too nicely with the headers, but the effect
3272 is relatively readable). */
3275 ui_out_field_skip (uiout, "addr");
3277 if (b->exec_pathname != NULL)
3279 ui_out_text (uiout, "program \"");
3280 ui_out_field_string (uiout, "what", b->exec_pathname);
3281 ui_out_text (uiout, "\" ");
3285 if (b->exec_pathname != NULL)
3286 printf_filtered ("program \"%s\" ", b->exec_pathname);
3290 case bp_catch_catch:
3291 /* Field 4, the address, is omitted (which makes the columns
3292 not line up too nicely with the headers, but the effect
3293 is relatively readable). */
3296 ui_out_field_skip (uiout, "addr");
3298 ui_out_field_string (uiout, "what", "exception catch");
3299 ui_out_spaces (uiout, 1);
3302 printf_filtered ("exception catch ");
3306 case bp_catch_throw:
3307 /* Field 4, the address, is omitted (which makes the columns
3308 not line up too nicely with the headers, but the effect
3309 is relatively readable). */
3312 ui_out_field_skip (uiout, "addr");
3314 ui_out_field_string (uiout, "what", "exception throw");
3315 ui_out_spaces (uiout, 1);
3318 printf_filtered ("exception throw ");
3323 case bp_hardware_breakpoint:
3327 case bp_longjmp_resume:
3328 case bp_step_resume:
3329 case bp_through_sigtramp:
3330 case bp_watchpoint_scope:
3332 case bp_shlib_event:
3333 case bp_thread_event:
3338 ui_out_field_core_addr (uiout, "addr", b->address);
3341 *last_addr = b->address;
3344 sym = find_pc_sect_function (b->address, b->section);
3347 ui_out_text (uiout, "in ");
3348 ui_out_field_string (uiout, "func",
3349 SYMBOL_SOURCE_NAME (sym));
3350 ui_out_wrap_hint (uiout, wrap_indent);
3351 ui_out_text (uiout, " at ");
3353 ui_out_field_string (uiout, "file", b->source_file);
3354 ui_out_text (uiout, ":");
3355 ui_out_field_int (uiout, "line", b->line_number);
3359 print_address_symbolic (b->address, stb->stream, demangle, "");
3360 ui_out_field_stream (uiout, "at", stb);
3369 if (TARGET_ADDR_BIT <= 32)
3370 tmp = longest_local_hex_string_custom (b->address
3371 & (CORE_ADDR) 0xffffffff,
3374 tmp = longest_local_hex_string_custom (b->address, "016l");
3376 printf_filtered ("%s ", tmp);
3379 *last_addr = b->address;
3382 sym = find_pc_sect_function (b->address, b->section);
3385 fputs_filtered ("in ", gdb_stdout);
3386 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
3387 wrap_here (wrap_indent);
3388 fputs_filtered (" at ", gdb_stdout);
3390 fputs_filtered (b->source_file, gdb_stdout);
3391 printf_filtered (":%d", b->line_number);
3394 print_address_symbolic (b->address, gdb_stdout, demangle, " ");
3399 if (b->thread != -1)
3402 /* FIXME: This seems to be redundant and lost here; see the
3403 "stop only in" line a little further down. */
3404 ui_out_text (uiout, " thread ");
3405 ui_out_field_int (uiout, "thread", b->thread);
3407 printf_filtered (" thread %d", b->thread);
3412 ui_out_text (uiout, "\n");
3414 printf_filtered ("\n");
3421 ui_out_text (uiout, "\tstop only in stack frame at ");
3422 ui_out_field_core_addr (uiout, "frame", b->frame);
3423 ui_out_text (uiout, "\n");
3425 printf_filtered ("\tstop only in stack frame at ");
3426 print_address_numeric (b->frame, 1, gdb_stdout);
3427 printf_filtered ("\n");
3435 ui_out_text (uiout, "\tstop only if ");
3436 print_expression (b->cond, stb->stream);
3437 ui_out_field_stream (uiout, "cond", stb);
3438 ui_out_text (uiout, "\n");
3440 printf_filtered ("\tstop only if ");
3441 print_expression (b->cond, gdb_stdout);
3442 printf_filtered ("\n");
3446 if (b->thread != -1)
3448 /* FIXME should make an annotation for this */
3450 ui_out_text (uiout, "\tstop only in thread ");
3451 ui_out_field_int (uiout, "thread", b->thread);
3452 ui_out_text (uiout, "\n");
3454 printf_filtered ("\tstop only in thread %d\n", b->thread);
3458 if (show_breakpoint_hit_counts && b->hit_count)
3460 /* FIXME should make an annotation for this */
3462 if (ep_is_catchpoint (b))
3463 ui_out_text (uiout, "\tcatchpoint");
3465 ui_out_text (uiout, "\tbreakpoint");
3466 ui_out_text (uiout, " already hit ");
3467 ui_out_field_int (uiout, "times", b->hit_count);
3468 if (b->hit_count == 1)
3469 ui_out_text (uiout, " time\n");
3471 ui_out_text (uiout, " times\n");
3473 if (ep_is_catchpoint (b))
3474 printf_filtered ("\tcatchpoint");
3476 printf_filtered ("\tbreakpoint");
3477 printf_filtered (" already hit %d time%s\n",
3478 b->hit_count, (b->hit_count == 1 ? "" : "s"));
3483 /* Output the count also if it is zero, but only if this is
3484 mi. FIXME: Should have a better test for this. */
3485 if (ui_out_is_mi_like_p (uiout))
3486 if (show_breakpoint_hit_counts && b->hit_count == 0)
3487 ui_out_field_int (uiout, "times", b->hit_count);
3490 if (b->ignore_count)
3494 ui_out_text (uiout, "\tignore next ");
3495 ui_out_field_int (uiout, "ignore", b->ignore_count);
3496 ui_out_text (uiout, " hits\n");
3498 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
3502 if ((l = b->commands))
3506 ui_out_tuple_begin (uiout, "script");
3507 print_command_lines (uiout, l, 4);
3508 ui_out_tuple_end (uiout);
3512 print_command_line (l, 4, gdb_stdout);
3518 ui_out_tuple_end (uiout);
3519 do_cleanups (old_chain);
3523 struct captured_breakpoint_query_args
3529 do_captured_breakpoint_query (void *data)
3531 struct captured_breakpoint_query_args *args = data;
3532 register struct breakpoint *b;
3533 CORE_ADDR dummy_addr = 0;
3536 if (args->bnum == b->number)
3538 print_one_breakpoint (b, &dummy_addr);
3546 gdb_breakpoint_query (/* output object, */ int bnum)
3548 struct captured_breakpoint_query_args args;
3550 /* For the moment we don't trust print_one_breakpoint() to not throw
3552 return catch_errors (do_captured_breakpoint_query, &args,
3553 NULL, RETURN_MASK_ALL);
3556 /* Return non-zero if B is user settable (breakpoints, watchpoints,
3557 catchpoints, et.al.). */
3560 user_settable_breakpoint (const struct breakpoint *b)
3562 return (b->type == bp_breakpoint
3563 || b->type == bp_catch_load
3564 || b->type == bp_catch_unload
3565 || b->type == bp_catch_fork
3566 || b->type == bp_catch_vfork
3567 || b->type == bp_catch_exec
3568 || b->type == bp_catch_catch
3569 || b->type == bp_catch_throw
3570 || b->type == bp_hardware_breakpoint
3571 || b->type == bp_watchpoint
3572 || b->type == bp_read_watchpoint
3573 || b->type == bp_access_watchpoint
3574 || b->type == bp_hardware_watchpoint);
3577 /* Print information on user settable breakpoint (watchpoint, etc)
3578 number BNUM. If BNUM is -1 print all user settable breakpoints.
3579 If ALLFLAG is non-zero, include non- user settable breakpoints. */
3582 breakpoint_1 (int bnum, int allflag)
3584 register struct breakpoint *b;
3585 CORE_ADDR last_addr = (CORE_ADDR) -1;
3586 int nr_printable_breakpoints;
3588 /* Compute the number of rows in the table. */
3589 nr_printable_breakpoints = 0;
3592 || bnum == b->number)
3594 if (allflag || user_settable_breakpoint (b))
3595 nr_printable_breakpoints++;
3600 ui_out_table_begin (uiout, 6, nr_printable_breakpoints, "BreakpointTable");
3602 ui_out_table_begin (uiout, 5, nr_printable_breakpoints, "BreakpointTable");
3606 if (nr_printable_breakpoints > 0)
3607 annotate_breakpoints_headers ();
3608 if (nr_printable_breakpoints > 0)
3610 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3611 if (nr_printable_breakpoints > 0)
3613 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3614 if (nr_printable_breakpoints > 0)
3616 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3617 if (nr_printable_breakpoints > 0)
3619 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3622 if (nr_printable_breakpoints > 0)
3624 if (TARGET_ADDR_BIT <= 32)
3625 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
3627 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
3629 if (nr_printable_breakpoints > 0)
3631 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3632 ui_out_table_body (uiout);
3633 if (nr_printable_breakpoints > 0)
3634 annotate_breakpoints_table ();
3636 if (nr_printable_breakpoints > 0)
3638 annotate_breakpoints_headers ();
3640 printf_filtered ("Num ");
3642 printf_filtered ("Type ");
3644 printf_filtered ("Disp ");
3646 printf_filtered ("Enb ");
3650 if (TARGET_ADDR_BIT <= 32)
3651 printf_filtered ("Address ");
3653 printf_filtered ("Address ");
3656 printf_filtered ("What\n");
3657 annotate_breakpoints_table ();
3663 || bnum == b->number)
3665 /* We only print out user settable breakpoints unless the
3667 if (allflag || user_settable_breakpoint (b))
3668 print_one_breakpoint (b, &last_addr);
3673 ui_out_table_end (uiout);
3676 if (nr_printable_breakpoints == 0)
3680 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3682 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3686 printf_filtered ("No breakpoints or watchpoints.\n");
3688 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
3693 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3694 that a comparison of an unsigned with -1 is always false. */
3695 if (last_addr != (CORE_ADDR) -1)
3696 set_next_address (last_addr);
3699 /* FIXME? Should this be moved up so that it is only called when
3700 there have been breakpoints? */
3701 annotate_breakpoints_table_end ();
3706 breakpoints_info (char *bnum_exp, int from_tty)
3711 bnum = parse_and_eval_long (bnum_exp);
3713 breakpoint_1 (bnum, 0);
3718 maintenance_info_breakpoints (char *bnum_exp, int from_tty)
3723 bnum = parse_and_eval_long (bnum_exp);
3725 breakpoint_1 (bnum, 1);
3728 /* Print a message describing any breakpoints set at PC. */
3731 describe_other_breakpoints (CORE_ADDR pc, asection *section)
3733 register int others = 0;
3734 register struct breakpoint *b;
3737 if (b->address == pc)
3738 if (overlay_debugging == 0 ||
3739 b->section == section)
3743 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3745 if (b->address == pc)
3746 if (overlay_debugging == 0 ||
3747 b->section == section)
3750 printf_filtered ("%d%s%s ",
3752 ((b->enable_state == bp_disabled ||
3753 b->enable_state == bp_shlib_disabled ||
3754 b->enable_state == bp_call_disabled) ? " (disabled)"
3755 : b->enable_state == bp_permanent ? " (permanent)"
3758 : ((others == 1) ? " and" : ""));
3760 printf_filtered ("also set at pc ");
3761 print_address_numeric (pc, 1, gdb_stdout);
3762 printf_filtered (".\n");
3766 /* Set the default place to put a breakpoint
3767 for the `break' command with no arguments. */
3770 set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3773 default_breakpoint_valid = valid;
3774 default_breakpoint_address = addr;
3775 default_breakpoint_symtab = symtab;
3776 default_breakpoint_line = line;
3779 /* Return true iff it is meaningful to use the address member of
3780 BPT. For some breakpoint types, the address member is irrelevant
3781 and it makes no sense to attempt to compare it to other addresses
3782 (or use it for any other purpose either).
3784 More specifically, each of the following breakpoint types will always
3785 have a zero valued address and we don't want check_duplicates() to mark
3786 breakpoints of any of these types to be a duplicate of an actual
3787 breakpoint at address zero:
3790 bp_hardware_watchpoint
3792 bp_access_watchpoint
3799 breakpoint_address_is_meaningful (struct breakpoint *bpt)
3801 enum bptype type = bpt->type;
3803 return (type != bp_watchpoint
3804 && type != bp_hardware_watchpoint
3805 && type != bp_read_watchpoint
3806 && type != bp_access_watchpoint
3807 && type != bp_catch_exec
3808 && type != bp_longjmp_resume
3809 && type != bp_catch_fork
3810 && type != bp_catch_vfork);
3813 /* Rescan breakpoints at the same address and section as BPT,
3814 marking the first one as "first" and any others as "duplicates".
3815 This is so that the bpt instruction is only inserted once.
3816 If we have a permanent breakpoint at the same place as BPT, make
3817 that one the official one, and the rest as duplicates. */
3820 check_duplicates (struct breakpoint *bpt)
3822 register struct breakpoint *b;
3823 register int count = 0;
3824 struct breakpoint *perm_bp = 0;
3825 CORE_ADDR address = bpt->address;
3826 asection *section = bpt->section;
3828 if (! breakpoint_address_is_meaningful (bpt))
3832 if (b->enable_state != bp_disabled
3833 && b->enable_state != bp_shlib_disabled
3834 && b->enable_state != bp_call_disabled
3835 && b->address == address
3836 && (overlay_debugging == 0 || b->section == section)
3837 && breakpoint_address_is_meaningful (b))
3839 /* Have we found a permanent breakpoint? */
3840 if (b->enable_state == bp_permanent)
3847 b->duplicate = count > 1;
3850 /* If we found a permanent breakpoint at this address, go over the
3851 list again and declare all the other breakpoints there to be the
3855 perm_bp->duplicate = 0;
3857 /* Permanent breakpoint should always be inserted. */
3858 if (! perm_bp->inserted)
3859 internal_error (__FILE__, __LINE__,
3860 "allegedly permanent breakpoint is not "
3861 "actually inserted");
3867 internal_error (__FILE__, __LINE__,
3868 "another breakpoint was inserted on top of "
3869 "a permanent breakpoint");
3871 if (b->enable_state != bp_disabled
3872 && b->enable_state != bp_shlib_disabled
3873 && b->enable_state != bp_call_disabled
3874 && b->address == address
3875 && (overlay_debugging == 0 || b->section == section)
3876 && breakpoint_address_is_meaningful (b))
3882 /* set_raw_breakpoint() is a low level routine for allocating and
3883 partially initializing a breakpoint of type BPTYPE. The newly
3884 created breakpoint's address, section, source file name, and line
3885 number are provided by SAL. The newly created and partially
3886 initialized breakpoint is added to the breakpoint chain and
3887 is also returned as the value of this function.
3889 It is expected that the caller will complete the initialization of
3890 the newly created breakpoint struct as well as output any status
3891 information regarding the creation of a new breakpoint. In
3892 particular, set_raw_breakpoint() does NOT set the breakpoint
3893 number! Care should be taken to not allow an error() to occur
3894 prior to completing the initialization of the breakpoint. If this
3895 should happen, a bogus breakpoint will be left on the chain. */
3898 set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
3900 register struct breakpoint *b, *b1;
3902 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
3903 memset (b, 0, sizeof (*b));
3904 b->address = sal.pc;
3905 if (sal.symtab == NULL)
3906 b->source_file = NULL;
3908 b->source_file = savestring (sal.symtab->filename,
3909 strlen (sal.symtab->filename));
3910 b->section = sal.section;
3912 b->language = current_language->la_language;
3913 b->input_radix = input_radix;
3915 b->line_number = sal.line;
3916 b->enable_state = bp_enabled;
3919 b->ignore_count = 0;
3922 b->dll_pathname = NULL;
3923 b->triggered_dll_pathname = NULL;
3924 b->forked_inferior_pid = 0;
3925 b->exec_pathname = NULL;
3927 /* Add this breakpoint to the end of the chain
3928 so that a list of breakpoints will come out in order
3929 of increasing numbers. */
3931 b1 = breakpoint_chain;
3933 breakpoint_chain = b;
3941 check_duplicates (b);
3942 breakpoints_changed ();
3948 /* Note that the breakpoint object B describes a permanent breakpoint
3949 instruction, hard-wired into the inferior's code. */
3951 make_breakpoint_permanent (struct breakpoint *b)
3953 b->enable_state = bp_permanent;
3955 /* By definition, permanent breakpoints are already present in the code. */
3959 #ifdef GET_LONGJMP_TARGET
3962 create_longjmp_breakpoint (char *func_name)
3964 struct symtab_and_line sal;
3965 struct breakpoint *b;
3967 INIT_SAL (&sal); /* initialize to zeroes */
3968 if (func_name != NULL)
3970 struct minimal_symbol *m;
3972 m = lookup_minimal_symbol_text (func_name, NULL,
3973 (struct objfile *) NULL);
3975 sal.pc = SYMBOL_VALUE_ADDRESS (m);
3979 sal.section = find_pc_overlay (sal.pc);
3980 b = set_raw_breakpoint (sal,
3981 func_name != NULL ? bp_longjmp : bp_longjmp_resume);
3983 b->disposition = disp_donttouch;
3984 b->enable_state = bp_disabled;
3987 b->addr_string = xstrdup (func_name);
3988 b->number = internal_breakpoint_number--;
3991 #endif /* #ifdef GET_LONGJMP_TARGET */
3993 /* Call this routine when stepping and nexting to enable a breakpoint
3994 if we do a longjmp(). When we hit that breakpoint, call
3995 set_longjmp_resume_breakpoint() to figure out where we are going. */
3998 enable_longjmp_breakpoint (void)
4000 register struct breakpoint *b;
4003 if (b->type == bp_longjmp)
4005 b->enable_state = bp_enabled;
4006 check_duplicates (b);
4011 disable_longjmp_breakpoint (void)
4013 register struct breakpoint *b;
4016 if (b->type == bp_longjmp
4017 || b->type == bp_longjmp_resume)
4019 b->enable_state = bp_disabled;
4020 check_duplicates (b);
4025 create_thread_event_breakpoint (CORE_ADDR address)
4027 struct breakpoint *b;
4028 struct symtab_and_line sal;
4029 char addr_string[80]; /* Surely an addr can't be longer than that. */
4031 INIT_SAL (&sal); /* initialize to zeroes */
4033 sal.section = find_pc_overlay (sal.pc);
4034 b = set_raw_breakpoint (sal, bp_thread_event);
4036 b->number = internal_breakpoint_number--;
4037 b->disposition = disp_donttouch;
4038 b->enable_state = bp_enabled;
4039 /* addr_string has to be used or breakpoint_re_set will delete me. */
4040 sprintf (addr_string, "*0x%s", paddr (b->address));
4041 b->addr_string = xstrdup (addr_string);
4047 remove_thread_event_breakpoints (void)
4049 struct breakpoint *b, *temp;
4051 ALL_BREAKPOINTS_SAFE (b, temp)
4052 if (b->type == bp_thread_event)
4053 delete_breakpoint (b);
4058 remove_solib_event_breakpoints (void)
4060 register struct breakpoint *b, *temp;
4062 ALL_BREAKPOINTS_SAFE (b, temp)
4063 if (b->type == bp_shlib_event)
4064 delete_breakpoint (b);
4068 create_solib_event_breakpoint (CORE_ADDR address)
4070 struct breakpoint *b;
4071 struct symtab_and_line sal;
4073 INIT_SAL (&sal); /* initialize to zeroes */
4075 sal.section = find_pc_overlay (sal.pc);
4076 b = set_raw_breakpoint (sal, bp_shlib_event);
4077 b->number = internal_breakpoint_number--;
4078 b->disposition = disp_donttouch;
4083 /* Disable any breakpoints that are on code in shared libraries. Only
4084 apply to enabled breakpoints, disabled ones can just stay disabled. */
4087 disable_breakpoints_in_shlibs (int silent)
4089 struct breakpoint *b;
4090 int disabled_shlib_breaks = 0;
4092 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4095 #if defined (PC_SOLIB)
4096 if (((b->type == bp_breakpoint) ||
4097 (b->type == bp_hardware_breakpoint)) &&
4098 b->enable_state == bp_enabled &&
4100 PC_SOLIB (b->address))
4102 b->enable_state = bp_shlib_disabled;
4105 if (!disabled_shlib_breaks)
4107 target_terminal_ours_for_output ();
4108 warning ("Temporarily disabling shared library breakpoints:");
4110 disabled_shlib_breaks = 1;
4111 warning ("breakpoint #%d ", b->number);
4118 /* Try to reenable any breakpoints in shared libraries. */
4120 re_enable_breakpoints_in_shlibs (void)
4122 struct breakpoint *b;
4125 if (b->enable_state == bp_shlib_disabled)
4129 /* Do not reenable the breakpoint if the shared library
4130 is still not mapped in. */
4131 if (target_read_memory (b->address, buf, 1) == 0)
4132 b->enable_state = bp_enabled;
4139 solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4140 char *cond_string, enum bptype bp_kind)
4142 struct breakpoint *b;
4143 struct symtabs_and_lines sals;
4144 struct cleanup *old_chain;
4145 struct cleanup *canonical_strings_chain = NULL;
4146 char *addr_start = hookname;
4147 char *addr_end = NULL;
4148 char **canonical = (char **) NULL;
4149 int thread = -1; /* All threads. */
4151 /* Set a breakpoint on the specified hook. */
4152 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical);
4153 addr_end = hookname;
4155 if (sals.nelts == 0)
4157 warning ("Unable to set a breakpoint on dynamic linker callback.");
4158 warning ("Suggest linking with /opt/langtools/lib/end.o.");
4159 warning ("GDB will be unable to track shl_load/shl_unload calls");
4162 if (sals.nelts != 1)
4164 warning ("Unable to set unique breakpoint on dynamic linker callback.");
4165 warning ("GDB will be unable to track shl_load/shl_unload calls");
4169 /* Make sure that all storage allocated in decode_line_1 gets freed
4170 in case the following errors out. */
4171 old_chain = make_cleanup (xfree, sals.sals);
4172 if (canonical != (char **) NULL)
4174 make_cleanup (xfree, canonical);
4175 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4176 if (canonical[0] != NULL)
4177 make_cleanup (xfree, canonical[0]);
4180 resolve_sal_pc (&sals.sals[0]);
4182 /* Remove the canonical strings from the cleanup, they are needed below. */
4183 if (canonical != (char **) NULL)
4184 discard_cleanups (canonical_strings_chain);
4186 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4187 set_breakpoint_count (breakpoint_count + 1);
4188 b->number = breakpoint_count;
4190 b->cond_string = (cond_string == NULL) ?
4191 NULL : savestring (cond_string, strlen (cond_string));
4194 if (canonical != (char **) NULL && canonical[0] != NULL)
4195 b->addr_string = canonical[0];
4196 else if (addr_start)
4197 b->addr_string = savestring (addr_start, addr_end - addr_start);
4199 b->enable_state = bp_enabled;
4200 b->disposition = tempflag ? disp_del : disp_donttouch;
4202 if (dll_pathname == NULL)
4203 b->dll_pathname = NULL;
4206 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4207 strcpy (b->dll_pathname, dll_pathname);
4211 do_cleanups (old_chain);
4215 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4216 char *dll_pathname, char *cond_string)
4218 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4219 cond_string, bp_catch_load);
4223 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4224 char *dll_pathname, char *cond_string)
4226 solib_load_unload_1 (hookname,tempflag, dll_pathname,
4227 cond_string, bp_catch_unload);
4231 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4232 enum bptype bp_kind)
4234 struct symtab_and_line sal;
4235 struct breakpoint *b;
4236 int thread = -1; /* All threads. */
4243 b = set_raw_breakpoint (sal, bp_kind);
4244 set_breakpoint_count (breakpoint_count + 1);
4245 b->number = breakpoint_count;
4247 b->cond_string = (cond_string == NULL) ?
4248 NULL : savestring (cond_string, strlen (cond_string));
4250 b->addr_string = NULL;
4251 b->enable_state = bp_enabled;
4252 b->disposition = tempflag ? disp_del : disp_donttouch;
4253 b->forked_inferior_pid = 0;
4259 create_fork_event_catchpoint (int tempflag, char *cond_string)
4261 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4265 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4267 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4271 create_exec_event_catchpoint (int tempflag, char *cond_string)
4273 struct symtab_and_line sal;
4274 struct breakpoint *b;
4275 int thread = -1; /* All threads. */
4282 b = set_raw_breakpoint (sal, bp_catch_exec);
4283 set_breakpoint_count (breakpoint_count + 1);
4284 b->number = breakpoint_count;
4286 b->cond_string = (cond_string == NULL) ?
4287 NULL : savestring (cond_string, strlen (cond_string));
4289 b->addr_string = NULL;
4290 b->enable_state = bp_enabled;
4291 b->disposition = tempflag ? disp_del : disp_donttouch;
4297 hw_breakpoint_used_count (void)
4299 register struct breakpoint *b;
4304 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4312 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4314 register struct breakpoint *b;
4317 *other_type_used = 0;
4320 if (b->enable_state == bp_enabled)
4322 if (b->type == type)
4324 else if ((b->type == bp_hardware_watchpoint ||
4325 b->type == bp_read_watchpoint ||
4326 b->type == bp_access_watchpoint)
4327 && b->enable_state == bp_enabled)
4328 *other_type_used = 1;
4334 /* Call this after hitting the longjmp() breakpoint. Use this to set
4335 a new breakpoint at the target of the jmp_buf.
4337 FIXME - This ought to be done by setting a temporary breakpoint
4338 that gets deleted automatically... */
4341 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_info *frame)
4343 register struct breakpoint *b;
4346 if (b->type == bp_longjmp_resume)
4349 b->enable_state = bp_enabled;
4351 b->frame = frame->frame;
4354 check_duplicates (b);
4360 disable_watchpoints_before_interactive_call_start (void)
4362 struct breakpoint *b;
4366 if (((b->type == bp_watchpoint)
4367 || (b->type == bp_hardware_watchpoint)
4368 || (b->type == bp_read_watchpoint)
4369 || (b->type == bp_access_watchpoint)
4370 || ep_is_exception_catchpoint (b))
4371 && (b->enable_state == bp_enabled))
4373 b->enable_state = bp_call_disabled;
4374 check_duplicates (b);
4380 enable_watchpoints_after_interactive_call_stop (void)
4382 struct breakpoint *b;
4386 if (((b->type == bp_watchpoint)
4387 || (b->type == bp_hardware_watchpoint)
4388 || (b->type == bp_read_watchpoint)
4389 || (b->type == bp_access_watchpoint)
4390 || ep_is_exception_catchpoint (b))
4391 && (b->enable_state == bp_call_disabled))
4393 b->enable_state = bp_enabled;
4394 check_duplicates (b);
4400 /* Set a breakpoint that will evaporate an end of command
4401 at address specified by SAL.
4402 Restrict it to frame FRAME if FRAME is nonzero. */
4405 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_info *frame,
4408 register struct breakpoint *b;
4409 b = set_raw_breakpoint (sal, type);
4410 b->enable_state = bp_enabled;
4411 b->disposition = disp_donttouch;
4412 b->frame = (frame ? frame->frame : 0);
4414 /* If we're debugging a multi-threaded program, then we
4415 want momentary breakpoints to be active in only a
4416 single thread of control. */
4417 if (in_thread_list (inferior_ptid))
4418 b->thread = pid_to_thread_id (inferior_ptid);
4424 /* Tell the user we have just set a breakpoint B. */
4427 mention (struct breakpoint *b)
4431 struct cleanup *old_chain;
4432 struct ui_stream *stb;
4434 stb = ui_out_stream_new (uiout);
4435 old_chain = make_cleanup_ui_out_stream_delete (stb);
4438 /* FIXME: This is misplaced; mention() is called by things (like hitting a
4439 watchpoint) other than breakpoint creation. It should be possible to
4440 clean this up and at the same time replace the random calls to
4441 breakpoint_changed with this hook, as has already been done for
4442 delete_breakpoint_hook and so on. */
4443 if (create_breakpoint_hook)
4444 create_breakpoint_hook (b);
4445 breakpoint_create_event (b->number);
4450 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4454 ui_out_text (uiout, "Watchpoint ");
4455 ui_out_tuple_begin (uiout, "wpt");
4456 ui_out_field_int (uiout, "number", b->number);
4457 ui_out_text (uiout, ": ");
4458 print_expression (b->exp, stb->stream);
4459 ui_out_field_stream (uiout, "exp", stb);
4460 ui_out_tuple_end (uiout);
4462 case bp_hardware_watchpoint:
4463 ui_out_text (uiout, "Hardware watchpoint ");
4464 ui_out_tuple_begin (uiout, "wpt");
4465 ui_out_field_int (uiout, "number", b->number);
4466 ui_out_text (uiout, ": ");
4467 print_expression (b->exp, stb->stream);
4468 ui_out_field_stream (uiout, "exp", stb);
4469 ui_out_tuple_end (uiout);
4473 printf_filtered ("Watchpoint %d: ", b->number);
4474 print_expression (b->exp, gdb_stdout);
4476 case bp_hardware_watchpoint:
4477 printf_filtered ("Hardware watchpoint %d: ", b->number);
4478 print_expression (b->exp, gdb_stdout);
4482 case bp_read_watchpoint:
4483 ui_out_text (uiout, "Hardware read watchpoint ");
4484 ui_out_tuple_begin (uiout, "hw-rwpt");
4485 ui_out_field_int (uiout, "number", b->number);
4486 ui_out_text (uiout, ": ");
4487 print_expression (b->exp, stb->stream);
4488 ui_out_field_stream (uiout, "exp", stb);
4489 ui_out_tuple_end (uiout);
4491 case bp_access_watchpoint:
4492 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4493 ui_out_tuple_begin (uiout, "hw-awpt");
4494 ui_out_field_int (uiout, "number", b->number);
4495 ui_out_text (uiout, ": ");
4496 print_expression (b->exp, stb->stream);
4497 ui_out_field_stream (uiout, "exp", stb);
4498 ui_out_tuple_end (uiout);
4501 case bp_read_watchpoint:
4502 printf_filtered ("Hardware read watchpoint %d: ", b->number);
4503 print_expression (b->exp, gdb_stdout);
4505 case bp_access_watchpoint:
4506 printf_filtered ("Hardware access (read/write) watchpoint %d: ",
4508 print_expression (b->exp, gdb_stdout);
4513 if (ui_out_is_mi_like_p (uiout))
4519 printf_filtered ("Breakpoint %d", b->number);
4522 case bp_hardware_breakpoint:
4524 if (ui_out_is_mi_like_p (uiout))
4530 printf_filtered ("Hardware assisted breakpoint %d", b->number);
4534 case bp_catch_unload:
4535 printf_filtered ("Catchpoint %d (%s %s)",
4537 (b->type == bp_catch_load) ? "load" : "unload",
4538 (b->dll_pathname != NULL) ?
4539 b->dll_pathname : "<any library>");
4542 case bp_catch_vfork:
4543 printf_filtered ("Catchpoint %d (%s)",
4545 (b->type == bp_catch_fork) ? "fork" : "vfork");
4548 printf_filtered ("Catchpoint %d (exec)",
4551 case bp_catch_catch:
4552 case bp_catch_throw:
4553 printf_filtered ("Catchpoint %d (%s)",
4555 (b->type == bp_catch_catch) ? "catch" : "throw");
4561 case bp_longjmp_resume:
4562 case bp_step_resume:
4563 case bp_through_sigtramp:
4565 case bp_watchpoint_scope:
4566 case bp_shlib_event:
4567 case bp_thread_event:
4572 if (addressprint || b->source_file == NULL)
4574 printf_filtered (" at ");
4575 print_address_numeric (b->address, 1, gdb_stdout);
4578 printf_filtered (": file %s, line %d.",
4579 b->source_file, b->line_number);
4582 do_cleanups (old_chain);
4585 if (ui_out_is_mi_like_p (uiout))
4588 printf_filtered ("\n");
4592 /* Add SALS.nelts breakpoints to the breakpoint table. For each
4593 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4594 COND[i] and COND_STRING[i] values.
4596 NOTE: If the function succeeds, the caller is expected to cleanup
4597 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4598 array contents). If the function fails (error() is called), the
4599 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4600 COND and SALS arrays and each of those arrays contents. */
4603 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4604 struct expression **cond, char **cond_string,
4605 enum bptype type, enum bpdisp disposition,
4606 int thread, int ignore_count, int from_tty)
4608 if (type == bp_hardware_breakpoint)
4610 int i = hw_breakpoint_used_count ();
4611 int target_resources_ok =
4612 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4614 if (target_resources_ok == 0)
4615 error ("No hardware breakpoint support in the target.");
4616 else if (target_resources_ok < 0)
4617 error ("Hardware breakpoints used exceeds limit.");
4620 /* Now set all the breakpoints. */
4623 for (i = 0; i < sals.nelts; i++)
4625 struct breakpoint *b;
4626 struct symtab_and_line sal = sals.sals[i];
4629 describe_other_breakpoints (sal.pc, sal.section);
4631 b = set_raw_breakpoint (sal, type);
4632 set_breakpoint_count (breakpoint_count + 1);
4633 b->number = breakpoint_count;
4636 b->addr_string = addr_string[i];
4637 b->cond_string = cond_string[i];
4638 b->ignore_count = ignore_count;
4639 b->enable_state = bp_enabled;
4640 b->disposition = disposition;
4646 /* Parse ARG which is assumed to be a SAL specification possibly
4647 followed by conditionals. On return, SALS contains an array of SAL
4648 addresses found. ADDR_STRING contains a vector of (canonical)
4649 address strings. ARG points to the end of the SAL. */
4652 parse_breakpoint_sals (char **address,
4653 struct symtabs_and_lines *sals,
4654 char ***addr_string)
4656 char *addr_start = *address;
4657 *addr_string = NULL;
4658 /* If no arg given, or if first arg is 'if ', use the default
4660 if ((*address) == NULL
4661 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4663 if (default_breakpoint_valid)
4665 struct symtab_and_line sal;
4666 INIT_SAL (&sal); /* initialize to zeroes */
4667 sals->sals = (struct symtab_and_line *)
4668 xmalloc (sizeof (struct symtab_and_line));
4669 sal.pc = default_breakpoint_address;
4670 sal.line = default_breakpoint_line;
4671 sal.symtab = default_breakpoint_symtab;
4672 sal.section = find_pc_overlay (sal.pc);
4673 sals->sals[0] = sal;
4677 error ("No default breakpoint address now.");
4681 /* Force almost all breakpoints to be in terms of the
4682 current_source_symtab (which is decode_line_1's default). This
4683 should produce the results we want almost all of the time while
4684 leaving default_breakpoint_* alone. */
4685 if (default_breakpoint_valid
4686 && (!current_source_symtab
4687 || (strchr ("+-", (*address)[0]) != NULL)))
4688 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
4689 default_breakpoint_line, addr_string);
4691 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0, addr_string);
4693 /* For any SAL that didn't have a canonical string, fill one in. */
4694 if (sals->nelts > 0 && *addr_string == NULL)
4695 *addr_string = xcalloc (sals->nelts, sizeof (char **));
4696 if (addr_start != (*address))
4699 for (i = 0; i < sals->nelts; i++)
4701 /* Add the string if not present. */
4702 if ((*addr_string)[i] == NULL)
4703 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
4709 /* Convert each SAL into a real PC. Verify that the PC can be
4710 inserted as a breakpoint. If it can't throw an error. */
4713 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
4717 for (i = 0; i < sals->nelts; i++)
4719 resolve_sal_pc (&sals->sals[i]);
4721 /* It's possible for the PC to be nonzero, but still an illegal
4722 value on some targets.
4724 For example, on HP-UX if you start gdb, and before running the
4725 inferior you try to set a breakpoint on a shared library function
4726 "foo" where the inferior doesn't call "foo" directly but does
4727 pass its address to another function call, then we do find a
4728 minimal symbol for the "foo", but it's address is invalid.
4729 (Appears to be an index into a table that the loader sets up
4730 when the inferior is run.)
4732 Give the target a chance to bless sals.sals[i].pc before we
4733 try to make a breakpoint for it. */
4734 if (PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
4736 if (address == NULL)
4737 error ("Cannot break without a running program.");
4739 error ("Cannot break on %s without a running program.",
4745 /* Set a breakpoint according to ARG (function, linenum or *address)
4746 flag: first bit : 0 non-temporary, 1 temporary.
4747 second bit : 0 normal breakpoint, 1 hardware breakpoint. */
4750 break_command_1 (char *arg, int flag, int from_tty)
4752 int tempflag, hardwareflag;
4753 struct symtabs_and_lines sals;
4754 register struct expression **cond = 0;
4755 /* Pointers in arg to the start, and one past the end, of the
4757 char **cond_string = (char **) NULL;
4758 char *addr_start = arg;
4760 struct cleanup *old_chain;
4761 struct cleanup *breakpoint_chain = NULL;
4764 int ignore_count = 0;
4766 hardwareflag = flag & BP_HARDWAREFLAG;
4767 tempflag = flag & BP_TEMPFLAG;
4772 parse_breakpoint_sals (&arg, &sals, &addr_string);
4777 /* Create a chain of things that always need to be cleaned up. */
4778 old_chain = make_cleanup (null_cleanup, 0);
4780 /* Make sure that all storage allocated to SALS gets freed. */
4781 make_cleanup (xfree, sals.sals);
4783 /* Cleanup the addr_string array but not its contents. */
4784 make_cleanup (xfree, addr_string);
4786 /* Allocate space for all the cond expressions. */
4787 cond = xcalloc (sals.nelts, sizeof (struct expression *));
4788 make_cleanup (xfree, cond);
4790 /* Allocate space for all the cond strings. */
4791 cond_string = xcalloc (sals.nelts, sizeof (char **));
4792 make_cleanup (xfree, cond_string);
4794 /* ----------------------------- SNIP -----------------------------
4795 Anything added to the cleanup chain beyond this point is assumed
4796 to be part of a breakpoint. If the breakpoint create succeeds
4797 then the memory is not reclaimed. */
4798 breakpoint_chain = make_cleanup (null_cleanup, 0);
4800 /* Mark the contents of the addr_string for cleanup. These go on
4801 the breakpoint_chain and only occure if the breakpoint create
4803 for (i = 0; i < sals.nelts; i++)
4805 if (addr_string[i] != NULL)
4806 make_cleanup (xfree, addr_string[i]);
4809 /* Resolve all line numbers to PC's and verify that the addresses
4810 are ok for the target. */
4811 breakpoint_sals_to_pc (&sals, addr_start);
4813 /* Verify that condition can be parsed, before setting any
4814 breakpoints. Allocate a separate condition expression for each
4816 thread = -1; /* No specific thread yet */
4817 for (i = 0; i < sals.nelts; i++)
4824 char *cond_start = NULL;
4825 char *cond_end = NULL;
4826 while (*tok == ' ' || *tok == '\t')
4831 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4834 toklen = end_tok - tok;
4836 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4838 tok = cond_start = end_tok + 1;
4839 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4840 make_cleanup (xfree, cond[i]);
4842 cond_string[i] = savestring (cond_start, cond_end - cond_start);
4843 make_cleanup (xfree, cond_string[i]);
4845 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
4851 thread = strtol (tok, &tok, 0);
4853 error ("Junk after thread keyword.");
4854 if (!valid_thread_id (thread))
4855 error ("Unknown thread %d\n", thread);
4858 error ("Junk at end of arguments.");
4862 create_breakpoints (sals, addr_string, cond, cond_string,
4863 hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4864 tempflag ? disp_del : disp_donttouch,
4865 thread, ignore_count, from_tty);
4869 warning ("Multiple breakpoints were set.");
4870 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
4872 /* That's it. Discard the cleanups for data inserted into the
4874 discard_cleanups (breakpoint_chain);
4875 /* But cleanup everything else. */
4876 do_cleanups (old_chain);
4879 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
4880 linenum or *address) with COND and IGNORE_COUNT. */
4882 struct captured_breakpoint_args
4893 do_captured_breakpoint (void *data)
4895 struct captured_breakpoint_args *args = data;
4896 struct symtabs_and_lines sals;
4897 register struct expression **cond;
4898 struct cleanup *old_chain;
4899 struct cleanup *breakpoint_chain = NULL;
4906 /* Parse the source and lines spec. Delay check that the expression
4907 didn't contain trailing garbage until after cleanups are in
4911 address_end = args->address;
4913 parse_breakpoint_sals (&address_end, &sals, &addr_string);
4918 /* Create a chain of things at always need to be cleaned up. */
4919 old_chain = make_cleanup (null_cleanup, 0);
4921 /* Always have a addr_string array, even if it is empty. */
4922 make_cleanup (xfree, addr_string);
4924 /* Make sure that all storage allocated to SALS gets freed. */
4925 make_cleanup (xfree, sals.sals);
4927 /* Allocate space for all the cond expressions. */
4928 cond = xcalloc (sals.nelts, sizeof (struct expression *));
4929 make_cleanup (xfree, cond);
4931 /* Allocate space for all the cond strings. */
4932 cond_string = xcalloc (sals.nelts, sizeof (char **));
4933 make_cleanup (xfree, cond_string);
4935 /* ----------------------------- SNIP -----------------------------
4936 Anything added to the cleanup chain beyond this point is assumed
4937 to be part of a breakpoint. If the breakpoint create goes
4938 through then that memory is not cleaned up. */
4939 breakpoint_chain = make_cleanup (null_cleanup, 0);
4941 /* Mark the contents of the addr_string for cleanup. These go on
4942 the breakpoint_chain and only occure if the breakpoint create
4944 for (i = 0; i < sals.nelts; i++)
4946 if (addr_string[i] != NULL)
4947 make_cleanup (xfree, addr_string[i]);
4950 /* Wait until now before checking for garbage at the end of the
4951 address. That way cleanups can take care of freeing any
4953 if (*address_end != '\0')
4954 error ("Garbage %s following breakpoint address", address_end);
4956 /* Resolve all line numbers to PC's. */
4957 breakpoint_sals_to_pc (&sals, args->address);
4959 /* Verify that conditions can be parsed, before setting any
4961 for (i = 0; i < sals.nelts; i++)
4963 if (args->condition != NULL)
4965 char *tok = args->condition;
4966 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4968 error ("Garbage %s follows condition", tok);
4969 make_cleanup (xfree, cond[i]);
4970 cond_string[i] = xstrdup (args->condition);
4974 create_breakpoints (sals, addr_string, cond, cond_string,
4975 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4976 args->tempflag ? disp_del : disp_donttouch,
4977 args->thread, args->ignore_count, 0/*from-tty*/);
4979 /* That's it. Discard the cleanups for data inserted into the
4981 discard_cleanups (breakpoint_chain);
4982 /* But cleanup everything else. */
4983 do_cleanups (old_chain);
4988 gdb_breakpoint (char *address, char *condition,
4989 int hardwareflag, int tempflag,
4990 int thread, int ignore_count)
4992 struct captured_breakpoint_args args;
4993 args.address = address;
4994 args.condition = condition;
4995 args.hardwareflag = hardwareflag;
4996 args.tempflag = tempflag;
4997 args.thread = thread;
4998 args.ignore_count = ignore_count;
4999 return catch_errors (do_captured_breakpoint, &args,
5000 NULL, RETURN_MASK_ALL);
5005 break_at_finish_at_depth_command_1 (char *arg, int flag, int from_tty)
5007 struct frame_info *frame;
5008 CORE_ADDR low, high, selected_pc = 0;
5009 char *extra_args = NULL;
5012 int extra_args_len = 0, if_arg = 0;
5015 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5018 if (default_breakpoint_valid)
5022 selected_pc = selected_frame->pc;
5027 error ("No selected frame.");
5030 error ("No default breakpoint address now.");
5034 extra_args = strchr (arg, ' ');
5038 extra_args_len = strlen (extra_args);
5039 level_arg = (char *) xmalloc (extra_args - arg);
5040 strncpy (level_arg, arg, extra_args - arg - 1);
5041 level_arg[extra_args - arg - 1] = '\0';
5045 level_arg = (char *) xmalloc (strlen (arg) + 1);
5046 strcpy (level_arg, arg);
5049 frame = parse_frame_specification (level_arg);
5051 selected_pc = frame->pc;
5058 extra_args_len = strlen (arg);
5063 if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
5065 addr_string = (char *) xmalloc (26 + extra_args_len);
5067 sprintf (addr_string, "*0x%s %s", paddr_nz (high), extra_args);
5069 sprintf (addr_string, "*0x%s", paddr_nz (high));
5070 break_command_1 (addr_string, flag, from_tty);
5071 xfree (addr_string);
5074 error ("No function contains the specified address");
5077 error ("Unable to set breakpoint at procedure exit");
5082 break_at_finish_command_1 (char *arg, int flag, int from_tty)
5084 char *addr_string, *break_string, *beg_addr_string;
5085 CORE_ADDR low, high;
5086 struct symtabs_and_lines sals;
5087 struct symtab_and_line sal;
5088 struct cleanup *old_chain;
5089 char *extra_args = NULL;
5090 int extra_args_len = 0;
5094 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5096 if (default_breakpoint_valid)
5100 addr_string = (char *) xmalloc (15);
5101 sprintf (addr_string, "*0x%s", paddr_nz (selected_frame->pc));
5106 error ("No selected frame.");
5109 error ("No default breakpoint address now.");
5113 addr_string = (char *) xmalloc (strlen (arg) + 1);
5114 strcpy (addr_string, arg);
5120 extra_args_len = strlen (arg);
5124 /* get the stuff after the function name or address */
5125 extra_args = strchr (arg, ' ');
5129 extra_args_len = strlen (extra_args);
5136 beg_addr_string = addr_string;
5137 sals = decode_line_1 (&addr_string, 1, (struct symtab *) NULL, 0,
5140 xfree (beg_addr_string);
5141 old_chain = make_cleanup (xfree, sals.sals);
5142 for (i = 0; (i < sals.nelts); i++)
5145 if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
5147 break_string = (char *) xmalloc (extra_args_len + 26);
5149 sprintf (break_string, "*0x%s %s", paddr_nz (high), extra_args);
5151 sprintf (break_string, "*0x%s", paddr_nz (high));
5152 break_command_1 (break_string, flag, from_tty);
5153 xfree (break_string);
5156 error ("No function contains the specified address");
5160 warning ("Multiple breakpoints were set.\n");
5161 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
5163 do_cleanups (old_chain);
5167 /* Helper function for break_command_1 and disassemble_command. */
5170 resolve_sal_pc (struct symtab_and_line *sal)
5174 if (sal->pc == 0 && sal->symtab != NULL)
5176 if (!find_line_pc (sal->symtab, sal->line, &pc))
5177 error ("No line %d in file \"%s\".",
5178 sal->line, sal->symtab->filename);
5182 if (sal->section == 0 && sal->symtab != NULL)
5184 struct blockvector *bv;
5189 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5192 b = BLOCKVECTOR_BLOCK (bv, index);
5193 sym = block_function (b);
5196 fixup_symbol_section (sym, sal->symtab->objfile);
5197 sal->section = SYMBOL_BFD_SECTION (sym);
5201 /* It really is worthwhile to have the section, so we'll just
5202 have to look harder. This case can be executed if we have
5203 line numbers but no functions (as can happen in assembly
5206 struct minimal_symbol *msym;
5208 msym = lookup_minimal_symbol_by_pc (sal->pc);
5210 sal->section = SYMBOL_BFD_SECTION (msym);
5217 break_command (char *arg, int from_tty)
5219 break_command_1 (arg, 0, from_tty);
5223 break_at_finish_command (char *arg, int from_tty)
5225 break_at_finish_command_1 (arg, 0, from_tty);
5229 break_at_finish_at_depth_command (char *arg, int from_tty)
5231 break_at_finish_at_depth_command_1 (arg, 0, from_tty);
5235 tbreak_command (char *arg, int from_tty)
5237 break_command_1 (arg, BP_TEMPFLAG, from_tty);
5241 tbreak_at_finish_command (char *arg, int from_tty)
5243 break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
5247 hbreak_command (char *arg, int from_tty)
5249 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
5253 thbreak_command (char *arg, int from_tty)
5255 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
5259 stop_command (char *arg, int from_tty)
5261 printf_filtered ("Specify the type of breakpoint to set.\n\
5262 Usage: stop in <function | address>\n\
5267 stopin_command (char *arg, int from_tty)
5271 if (arg == (char *) NULL)
5273 else if (*arg != '*')
5278 /* look for a ':'. If this is a line number specification, then
5279 say it is bad, otherwise, it should be an address or
5280 function/method name */
5281 while (*argptr && !hasColon)
5283 hasColon = (*argptr == ':');
5288 badInput = (*argptr != ':'); /* Not a class::method */
5290 badInput = isdigit (*arg); /* a simple line number */
5294 printf_filtered ("Usage: stop in <function | address>\n");
5296 break_command_1 (arg, 0, from_tty);
5300 stopat_command (char *arg, int from_tty)
5304 if (arg == (char *) NULL || *arg == '*') /* no line number */
5311 /* look for a ':'. If there is a '::' then get out, otherwise
5312 it is probably a line number. */
5313 while (*argptr && !hasColon)
5315 hasColon = (*argptr == ':');
5320 badInput = (*argptr == ':'); /* we have class::method */
5322 badInput = !isdigit (*arg); /* not a line number */
5326 printf_filtered ("Usage: stop at <line>\n");
5328 break_command_1 (arg, 0, from_tty);
5332 /* accessflag: hw_write: watch write,
5333 hw_read: watch read,
5334 hw_access: watch access (read or write) */
5336 watch_command_1 (char *arg, int accessflag, int from_tty)
5338 struct breakpoint *b;
5339 struct symtab_and_line sal;
5340 struct expression *exp;
5341 struct block *exp_valid_block;
5342 struct value *val, *mark;
5343 struct frame_info *frame;
5344 struct frame_info *prev_frame = NULL;
5345 char *exp_start = NULL;
5346 char *exp_end = NULL;
5347 char *tok, *end_tok;
5349 char *cond_start = NULL;
5350 char *cond_end = NULL;
5351 struct expression *cond = NULL;
5352 int i, other_type_used, target_resources_ok = 0;
5353 enum bptype bp_type;
5356 INIT_SAL (&sal); /* initialize to zeroes */
5358 /* Parse arguments. */
5359 innermost_block = NULL;
5361 exp = parse_exp_1 (&arg, 0, 0);
5363 exp_valid_block = innermost_block;
5364 mark = value_mark ();
5365 val = evaluate_expression (exp);
5366 release_value (val);
5367 if (VALUE_LAZY (val))
5368 value_fetch_lazy (val);
5371 while (*tok == ' ' || *tok == '\t')
5375 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5378 toklen = end_tok - tok;
5379 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5381 tok = cond_start = end_tok + 1;
5382 cond = parse_exp_1 (&tok, 0, 0);
5386 error ("Junk at end of command.");
5388 if (accessflag == hw_read)
5389 bp_type = bp_read_watchpoint;
5390 else if (accessflag == hw_access)
5391 bp_type = bp_access_watchpoint;
5393 bp_type = bp_hardware_watchpoint;
5395 mem_cnt = can_use_hardware_watchpoint (val);
5396 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5397 error ("Expression cannot be implemented with read/access watchpoint.");
5400 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5401 target_resources_ok =
5402 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5404 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5405 error ("Target does not support this type of hardware watchpoint.");
5407 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5408 error ("Target can only support one kind of HW watchpoint at a time.");
5411 #if defined(HPUXHPPA)
5412 /* On HP-UX if you set a h/w
5413 watchpoint before the "run" command, the inferior dies with a e.g.,
5414 SIGILL once you start it. I initially believed this was due to a
5415 bad interaction between page protection traps and the initial
5416 startup sequence by the dynamic linker.
5418 However, I tried avoiding that by having HP-UX's implementation of
5419 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5420 yet, which forced slow watches before a "run" or "attach", and it
5421 still fails somewhere in the startup code.
5423 Until I figure out what's happening, I'm disallowing watches altogether
5424 before the "run" or "attach" command. We'll tell the user they must
5425 set watches after getting the program started. */
5426 if (!target_has_execution)
5428 warning ("can't do that without a running program; try \"break main\", \"run\" first");
5431 #endif /* HPUXHPPA */
5433 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5434 watchpoint could not be set. */
5435 if (!mem_cnt || target_resources_ok <= 0)
5436 bp_type = bp_watchpoint;
5438 /* Now set up the breakpoint. */
5439 b = set_raw_breakpoint (sal, bp_type);
5440 set_breakpoint_count (breakpoint_count + 1);
5441 b->number = breakpoint_count;
5442 b->disposition = disp_donttouch;
5444 b->exp_valid_block = exp_valid_block;
5445 b->exp_string = savestring (exp_start, exp_end - exp_start);
5449 b->cond_string = savestring (cond_start, cond_end - cond_start);
5453 frame = block_innermost_frame (exp_valid_block);
5456 prev_frame = get_prev_frame (frame);
5457 b->watchpoint_frame = frame->frame;
5460 b->watchpoint_frame = (CORE_ADDR) 0;
5462 /* If the expression is "local", then set up a "watchpoint scope"
5463 breakpoint at the point where we've left the scope of the watchpoint
5465 if (innermost_block)
5469 struct breakpoint *scope_breakpoint;
5470 struct symtab_and_line scope_sal;
5472 INIT_SAL (&scope_sal); /* initialize to zeroes */
5473 scope_sal.pc = get_frame_pc (prev_frame);
5474 scope_sal.section = find_pc_overlay (scope_sal.pc);
5476 scope_breakpoint = set_raw_breakpoint (scope_sal,
5477 bp_watchpoint_scope);
5478 set_breakpoint_count (breakpoint_count + 1);
5479 scope_breakpoint->number = breakpoint_count;
5481 scope_breakpoint->enable_state = bp_enabled;
5483 /* Automatically delete the breakpoint when it hits. */
5484 scope_breakpoint->disposition = disp_del;
5486 /* Only break in the proper frame (help with recursion). */
5487 scope_breakpoint->frame = prev_frame->frame;
5489 /* Set the address at which we will stop. */
5490 scope_breakpoint->address = get_frame_pc (prev_frame);
5492 /* The scope breakpoint is related to the watchpoint. We
5493 will need to act on them together. */
5494 b->related_breakpoint = scope_breakpoint;
5497 value_free_to_mark (mark);
5501 /* Return count of locations need to be watched and can be handled
5502 in hardware. If the watchpoint can not be handled
5503 in hardware return zero. */
5505 #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
5506 #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(BYTE_SIZE) \
5507 ((BYTE_SIZE) <= (REGISTER_SIZE))
5510 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5511 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5512 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
5516 can_use_hardware_watchpoint (struct value *v)
5518 int found_memory_cnt = 0;
5519 struct value *head = v;
5521 /* Did the user specifically forbid us to use hardware watchpoints? */
5522 if (!can_use_hw_watchpoints)
5525 /* Make sure that the value of the expression depends only upon
5526 memory contents, and values computed from them within GDB. If we
5527 find any register references or function calls, we can't use a
5528 hardware watchpoint.
5530 The idea here is that evaluating an expression generates a series
5531 of values, one holding the value of every subexpression. (The
5532 expression a*b+c has five subexpressions: a, b, a*b, c, and
5533 a*b+c.) GDB's values hold almost enough information to establish
5534 the criteria given above --- they identify memory lvalues,
5535 register lvalues, computed values, etcetera. So we can evaluate
5536 the expression, and then scan the chain of values that leaves
5537 behind to decide whether we can detect any possible change to the
5538 expression's final value using only hardware watchpoints.
5540 However, I don't think that the values returned by inferior
5541 function calls are special in any way. So this function may not
5542 notice that an expression involving an inferior function call
5543 can't be watched with hardware watchpoints. FIXME. */
5544 for (; v; v = v->next)
5546 if (VALUE_LVAL (v) == lval_memory)
5549 /* A lazy memory lvalue is one that GDB never needed to fetch;
5550 we either just used its address (e.g., `a' in `a.b') or
5551 we never needed it at all (e.g., `a' in `a,b'). */
5555 /* Ahh, memory we actually used! Check if we can cover
5556 it with hardware watchpoints. */
5557 struct type *vtype = check_typedef (VALUE_TYPE (v));
5559 /* We only watch structs and arrays if user asked for it
5560 explicitly, never if they just happen to appear in a
5561 middle of some value chain. */
5563 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5564 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5566 CORE_ADDR vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
5567 int len = TYPE_LENGTH (VALUE_TYPE (v));
5569 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5576 else if (v->lval != not_lval && v->modifiable == 0)
5577 return 0; /* ??? What does this represent? */
5578 else if (v->lval == lval_register)
5579 return 0; /* cannot watch a register with a HW watchpoint */
5582 /* The expression itself looks suitable for using a hardware
5583 watchpoint, but give the target machine a chance to reject it. */
5584 return found_memory_cnt;
5589 watch_command_wrapper (char *arg, int from_tty)
5591 watch_command (arg, from_tty);
5595 watch_command (char *arg, int from_tty)
5597 watch_command_1 (arg, hw_write, from_tty);
5602 rwatch_command_wrapper (char *arg, int from_tty)
5604 rwatch_command (arg, from_tty);
5608 rwatch_command (char *arg, int from_tty)
5610 watch_command_1 (arg, hw_read, from_tty);
5615 awatch_command_wrapper (char *arg, int from_tty)
5617 awatch_command (arg, from_tty);
5621 awatch_command (char *arg, int from_tty)
5623 watch_command_1 (arg, hw_access, from_tty);
5627 /* Helper routines for the until_command routine in infcmd.c. Here
5628 because it uses the mechanisms of breakpoints. */
5630 /* This function is called by fetch_inferior_event via the
5631 cmd_continuation pointer, to complete the until command. It takes
5632 care of cleaning up the temporary breakpoints set up by the until
5635 until_break_command_continuation (struct continuation_arg *arg)
5637 struct cleanup *cleanups;
5639 cleanups = (struct cleanup *) arg->data.pointer;
5640 do_exec_cleanups (cleanups);
5645 until_break_command (char *arg, int from_tty)
5647 struct symtabs_and_lines sals;
5648 struct symtab_and_line sal;
5649 struct frame_info *prev_frame = get_prev_frame (selected_frame);
5650 struct breakpoint *breakpoint;
5651 struct cleanup *old_chain;
5652 struct continuation_arg *arg1;
5655 clear_proceed_status ();
5657 /* Set a breakpoint where the user wants it and at return from
5660 if (default_breakpoint_valid)
5661 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
5662 default_breakpoint_line, (char ***) NULL);
5664 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
5665 0, (char ***) NULL);
5667 if (sals.nelts != 1)
5668 error ("Couldn't get information on specified line.");
5671 xfree (sals.sals); /* malloc'd, so freed */
5674 error ("Junk at end of arguments.");
5676 resolve_sal_pc (&sal);
5678 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
5680 if (!event_loop_p || !target_can_async_p ())
5681 old_chain = make_cleanup_delete_breakpoint (breakpoint);
5683 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
5685 /* If we are running asynchronously, and the target supports async
5686 execution, we are not waiting for the target to stop, in the call
5687 tp proceed, below. This means that we cannot delete the
5688 brekpoints until the target has actually stopped. The only place
5689 where we get a chance to do that is in fetch_inferior_event, so
5690 we must set things up for that. */
5692 if (event_loop_p && target_can_async_p ())
5694 /* In this case the arg for the continuation is just the point
5695 in the exec_cleanups chain from where to start doing
5696 cleanups, because all the continuation does is the cleanups in
5697 the exec_cleanup_chain. */
5699 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
5701 arg1->data.pointer = old_chain;
5703 add_continuation (until_break_command_continuation, arg1);
5706 /* Keep within the current frame */
5710 sal = find_pc_line (prev_frame->pc, 0);
5711 sal.pc = prev_frame->pc;
5712 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
5713 if (!event_loop_p || !target_can_async_p ())
5714 make_cleanup_delete_breakpoint (breakpoint);
5716 make_exec_cleanup_delete_breakpoint (breakpoint);
5719 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
5720 /* Do the cleanups now, anly if we are not running asynchronously,
5721 of if we are, but the target is still synchronous. */
5722 if (!event_loop_p || !target_can_async_p ())
5723 do_cleanups (old_chain);
5727 /* These aren't used; I don't konw what they were for. */
5728 /* Set a breakpoint at the catch clause for NAME. */
5730 catch_breakpoint (char *name)
5735 disable_catch_breakpoint (void)
5740 delete_catch_breakpoint (void)
5745 enable_catch_breakpoint (void)
5752 struct sal_chain *next;
5753 struct symtab_and_line sal;
5757 /* Not really used -- invocation in handle_gnu_4_16_catch_command
5758 had been commented out in the v.4.16 sources, and stays
5759 disabled there now because "catch NAME" syntax isn't allowed.
5761 /* This isn't used; I don't know what it was for. */
5762 /* For each catch clause identified in ARGS, run FUNCTION
5763 with that clause as an argument. */
5764 static struct symtabs_and_lines
5765 map_catch_names (char *args, int (*function) ())
5767 register char *p = args;
5769 struct symtabs_and_lines sals;
5771 struct sal_chain *sal_chain = 0;
5775 error_no_arg ("one or more catch names");
5783 /* Don't swallow conditional part. */
5784 if (p1[0] == 'i' && p1[1] == 'f'
5785 && (p1[2] == ' ' || p1[2] == '\t'))
5791 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
5795 if (*p1 && *p1 != ' ' && *p1 != '\t')
5796 error ("Arguments must be catch names.");
5802 struct sal_chain *next = (struct sal_chain *)
5803 alloca (sizeof (struct sal_chain));
5804 next->next = sal_chain;
5805 next->sal = get_catch_sal (p);
5810 printf_unfiltered ("No catch clause for exception %s.\n", p);
5815 while (*p == ' ' || *p == '\t')
5821 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
5823 static struct symtabs_and_lines
5824 get_catch_sals (int this_level_only)
5826 register struct blockvector *bl;
5827 register struct block *block;
5828 int index, have_default = 0;
5830 struct symtabs_and_lines sals;
5831 struct sal_chain *sal_chain = 0;
5832 char *blocks_searched;
5834 /* Not sure whether an error message is always the correct response,
5835 but it's better than a core dump. */
5836 if (selected_frame == NULL)
5837 error ("No selected frame.");
5838 block = get_frame_block (selected_frame);
5839 pc = selected_frame->pc;
5845 error ("No symbol table info available.\n");
5847 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
5848 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5849 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5853 CORE_ADDR end = BLOCK_END (block) - 4;
5856 if (bl != blockvector_for_pc (end, &index))
5857 error ("blockvector blotch");
5858 if (BLOCKVECTOR_BLOCK (bl, index) != block)
5859 error ("blockvector botch");
5860 last_index = BLOCKVECTOR_NBLOCKS (bl);
5863 /* Don't print out blocks that have gone by. */
5864 while (index < last_index
5865 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
5868 while (index < last_index
5869 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
5871 if (blocks_searched[index] == 0)
5873 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
5876 register struct symbol *sym;
5878 nsyms = BLOCK_NSYMS (b);
5880 for (i = 0; i < nsyms; i++)
5882 sym = BLOCK_SYM (b, i);
5883 if (STREQ (SYMBOL_NAME (sym), "default"))
5889 if (SYMBOL_CLASS (sym) == LOC_LABEL)
5891 struct sal_chain *next = (struct sal_chain *)
5892 alloca (sizeof (struct sal_chain));
5893 next->next = sal_chain;
5894 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym),
5899 blocks_searched[index] = 1;
5905 if (sal_chain && this_level_only)
5908 /* After handling the function's top-level block, stop.
5909 Don't continue to its superblock, the block of
5910 per-file symbols. */
5911 if (BLOCK_FUNCTION (block))
5913 block = BLOCK_SUPERBLOCK (block);
5918 struct sal_chain *tmp_chain;
5920 /* Count the number of entries. */
5921 for (index = 0, tmp_chain = sal_chain; tmp_chain;
5922 tmp_chain = tmp_chain->next)
5926 sals.sals = (struct symtab_and_line *)
5927 xmalloc (index * sizeof (struct symtab_and_line));
5928 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
5929 sals.sals[index] = sal_chain->sal;
5936 ep_skip_leading_whitespace (char **s)
5938 if ((s == NULL) || (*s == NULL))
5940 while (isspace (**s))
5944 /* This function examines a string, and attempts to find a token
5945 that might be an event name in the leading characters. If a
5946 possible match is found, a pointer to the last character of
5947 the token is returned. Else, NULL is returned. */
5950 ep_find_event_name_end (char *arg)
5953 char *event_name_end = NULL;
5955 /* If we could depend upon the presense of strrpbrk, we'd use that... */
5959 /* We break out of the loop when we find a token delimiter.
5960 Basically, we're looking for alphanumerics and underscores;
5961 anything else delimites the token. */
5964 if (!isalnum (*s) && (*s != '_'))
5970 return event_name_end;
5974 /* This function attempts to parse an optional "if <cond>" clause
5975 from the arg string. If one is not found, it returns NULL.
5977 Else, it returns a pointer to the condition string. (It does not
5978 attempt to evaluate the string against a particular block.) And,
5979 it updates arg to point to the first character following the parsed
5980 if clause in the arg string. */
5983 ep_parse_optional_if_clause (char **arg)
5987 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
5990 /* Skip the "if" keyword. */
5993 /* Skip any extra leading whitespace, and record the start of the
5994 condition string. */
5995 ep_skip_leading_whitespace (arg);
5998 /* Assume that the condition occupies the remainder of the arg string. */
5999 (*arg) += strlen (cond_string);
6004 /* This function attempts to parse an optional filename from the arg
6005 string. If one is not found, it returns NULL.
6007 Else, it returns a pointer to the parsed filename. (This function
6008 makes no attempt to verify that a file of that name exists, or is
6009 accessible.) And, it updates arg to point to the first character
6010 following the parsed filename in the arg string.
6012 Note that clients needing to preserve the returned filename for
6013 future access should copy it to their own buffers. */
6015 ep_parse_optional_filename (char **arg)
6017 static char filename[1024];
6022 if ((*arg_p == '\0') || isspace (*arg_p))
6040 /* Commands to deal with catching events, such as signals, exceptions,
6041 process start/exit, etc. */
6045 catch_fork, catch_vfork
6049 #if defined(CHILD_INSERT_FORK_CATCHPOINT) || defined(CHILD_INSERT_VFORK_CATCHPOINT)
6050 static void catch_fork_command_1 (catch_fork_kind fork_kind,
6051 char *arg, int tempflag, int from_tty);
6054 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6057 char *cond_string = NULL;
6059 ep_skip_leading_whitespace (&arg);
6061 /* The allowed syntax is:
6063 catch [v]fork if <cond>
6065 First, check if there's an if clause. */
6066 cond_string = ep_parse_optional_if_clause (&arg);
6068 if ((*arg != '\0') && !isspace (*arg))
6069 error ("Junk at end of arguments.");
6071 /* If this target supports it, create a fork or vfork catchpoint
6072 and enable reporting of such events. */
6076 create_fork_event_catchpoint (tempflag, cond_string);
6079 create_vfork_event_catchpoint (tempflag, cond_string);
6082 error ("unsupported or unknown fork kind; cannot catch it");
6088 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
6090 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6092 char *cond_string = NULL;
6094 ep_skip_leading_whitespace (&arg);
6096 /* The allowed syntax is:
6098 catch exec if <cond>
6100 First, check if there's an if clause. */
6101 cond_string = ep_parse_optional_if_clause (&arg);
6103 if ((*arg != '\0') && !isspace (*arg))
6104 error ("Junk at end of arguments.");
6106 /* If this target supports it, create an exec catchpoint
6107 and enable reporting of such events. */
6108 create_exec_event_catchpoint (tempflag, cond_string);
6112 #if defined(SOLIB_ADD)
6114 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6116 char *dll_pathname = NULL;
6117 char *cond_string = NULL;
6119 ep_skip_leading_whitespace (&arg);
6121 /* The allowed syntax is:
6123 catch load if <cond>
6124 catch load <filename>
6125 catch load <filename> if <cond>
6127 The user is not allowed to specify the <filename> after an
6130 We'll ignore the pathological case of a file named "if".
6132 First, check if there's an if clause. If so, then there
6133 cannot be a filename. */
6134 cond_string = ep_parse_optional_if_clause (&arg);
6136 /* If there was an if clause, then there cannot be a filename.
6137 Else, there might be a filename and an if clause. */
6138 if (cond_string == NULL)
6140 dll_pathname = ep_parse_optional_filename (&arg);
6141 ep_skip_leading_whitespace (&arg);
6142 cond_string = ep_parse_optional_if_clause (&arg);
6145 if ((*arg != '\0') && !isspace (*arg))
6146 error ("Junk at end of arguments.");
6148 /* Create a load breakpoint that only triggers when a load of
6149 the specified dll (or any dll, if no pathname was specified)
6151 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6152 dll_pathname, cond_string);
6156 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6158 char *dll_pathname = NULL;
6159 char *cond_string = NULL;
6161 ep_skip_leading_whitespace (&arg);
6163 /* The allowed syntax is:
6165 catch unload if <cond>
6166 catch unload <filename>
6167 catch unload <filename> if <cond>
6169 The user is not allowed to specify the <filename> after an
6172 We'll ignore the pathological case of a file named "if".
6174 First, check if there's an if clause. If so, then there
6175 cannot be a filename. */
6176 cond_string = ep_parse_optional_if_clause (&arg);
6178 /* If there was an if clause, then there cannot be a filename.
6179 Else, there might be a filename and an if clause. */
6180 if (cond_string == NULL)
6182 dll_pathname = ep_parse_optional_filename (&arg);
6183 ep_skip_leading_whitespace (&arg);
6184 cond_string = ep_parse_optional_if_clause (&arg);
6187 if ((*arg != '\0') && !isspace (*arg))
6188 error ("Junk at end of arguments.");
6190 /* Create an unload breakpoint that only triggers when an unload of
6191 the specified dll (or any dll, if no pathname was specified)
6193 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6194 dll_pathname, cond_string);
6196 #endif /* SOLIB_ADD */
6198 /* Commands to deal with catching exceptions. */
6200 /* Set a breakpoint at the specified callback routine for an
6201 exception event callback */
6204 create_exception_catchpoint (int tempflag, char *cond_string,
6205 enum exception_event_kind ex_event,
6206 struct symtab_and_line *sal)
6208 struct breakpoint *b;
6209 int thread = -1; /* All threads. */
6212 if (!sal) /* no exception support? */
6217 case EX_EVENT_THROW:
6218 bptype = bp_catch_throw;
6220 case EX_EVENT_CATCH:
6221 bptype = bp_catch_catch;
6223 default: /* error condition */
6224 error ("Internal error -- invalid catchpoint kind");
6227 b = set_raw_breakpoint (*sal, bptype);
6228 set_breakpoint_count (breakpoint_count + 1);
6229 b->number = breakpoint_count;
6231 b->cond_string = (cond_string == NULL) ?
6232 NULL : savestring (cond_string, strlen (cond_string));
6234 b->addr_string = NULL;
6235 b->enable_state = bp_enabled;
6236 b->disposition = tempflag ? disp_del : disp_donttouch;
6240 /* Deal with "catch catch" and "catch throw" commands */
6243 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6244 int tempflag, int from_tty)
6246 char *cond_string = NULL;
6247 struct symtab_and_line *sal = NULL;
6249 ep_skip_leading_whitespace (&arg);
6251 cond_string = ep_parse_optional_if_clause (&arg);
6253 if ((*arg != '\0') && !isspace (*arg))
6254 error ("Junk at end of arguments.");
6256 if ((ex_event != EX_EVENT_THROW) &&
6257 (ex_event != EX_EVENT_CATCH))
6258 error ("Unsupported or unknown exception event; cannot catch it");
6260 /* See if we can find a callback routine */
6261 sal = target_enable_exception_callback (ex_event, 1);
6265 /* We have callbacks from the runtime system for exceptions.
6266 Set a breakpoint on the sal found, if no errors */
6267 if (sal != (struct symtab_and_line *) -1)
6268 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6270 return; /* something went wrong with setting up callbacks */
6274 /* No callbacks from runtime system for exceptions.
6275 Try GNU C++ exception breakpoints using labels in debug info. */
6276 if (ex_event == EX_EVENT_CATCH)
6278 handle_gnu_4_16_catch_command (arg, tempflag, from_tty);
6280 else if (ex_event == EX_EVENT_THROW)
6282 /* Set a breakpoint on __raise_exception () */
6284 warning ("Unsupported with this platform/compiler combination.");
6285 warning ("Perhaps you can achieve the effect you want by setting");
6286 warning ("a breakpoint on __raise_exception().");
6291 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6292 inside a catch_errors */
6295 cover_target_enable_exception_callback (PTR arg)
6297 args_for_catchpoint_enable *args = arg;
6298 struct symtab_and_line *sal;
6299 sal = target_enable_exception_callback (args->kind, args->enable_p);
6302 else if (sal == (struct symtab_and_line *) -1)
6305 return 1; /*is valid */
6310 /* This is the original v.4.16 and earlier version of the
6311 catch_command_1() function. Now that other flavours of "catch"
6312 have been introduced, and since exception handling can be handled
6313 in other ways (through target ops) also, this is used only for the
6314 GNU C++ exception handling system.
6315 Note: Only the "catch" flavour of GDB 4.16 is handled here. The
6316 "catch NAME" is now no longer allowed in catch_command_1(). Also,
6317 there was no code in GDB 4.16 for "catch throw".
6319 Called from catch_exception_command_1 () */
6323 handle_gnu_4_16_catch_command (char *arg, int tempflag, int from_tty)
6325 /* First, translate ARG into something we can deal with in terms
6328 struct symtabs_and_lines sals;
6329 struct symtab_and_line sal;
6330 register struct expression *cond = 0;
6331 register struct breakpoint *b;
6335 INIT_SAL (&sal); /* initialize to zeroes */
6337 /* If no arg given, or if first arg is 'if ', all active catch clauses
6338 are breakpointed. */
6340 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
6341 && (arg[2] == ' ' || arg[2] == '\t')))
6343 /* Grab all active catch clauses. */
6344 sals = get_catch_sals (0);
6348 /* Grab selected catch clauses. */
6349 error ("catch NAME not implemented");
6352 /* Not sure why this code has been disabled. I'm leaving
6353 it disabled. We can never come here now anyway
6354 since we don't allow the "catch NAME" syntax.
6357 /* This isn't used; I don't know what it was for. */
6358 sals = map_catch_names (arg, catch_breakpoint);
6366 for (i = 0; i < sals.nelts; i++)
6368 resolve_sal_pc (&sals.sals[i]);
6372 if (arg[0] == 'i' && arg[1] == 'f'
6373 && (arg[2] == ' ' || arg[2] == '\t'))
6374 cond = parse_exp_1 ((arg += 2, &arg),
6375 block_for_pc (sals.sals[i].pc), 0);
6377 error ("Junk at end of arguments.");
6382 for (i = 0; i < sals.nelts; i++)
6387 describe_other_breakpoints (sal.pc, sal.section);
6389 /* Important -- this is an ordinary breakpoint. For platforms
6390 with callback support for exceptions,
6391 create_exception_catchpoint() will create special bp types
6392 (bp_catch_catch and bp_catch_throw), and there is code in
6393 insert_breakpoints() and elsewhere that depends on that. */
6394 b = set_raw_breakpoint (sal, bp_breakpoint);
6395 set_breakpoint_count (breakpoint_count + 1);
6396 b->number = breakpoint_count;
6399 b->enable_state = bp_enabled;
6400 b->disposition = tempflag ? disp_del : disp_donttouch;
6407 warning ("Multiple breakpoints were set.");
6408 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
6414 /* This creates a temporary internal breakpoint
6415 just to placate infrun */
6416 static struct breakpoint *
6417 create_temp_exception_breakpoint (CORE_ADDR pc)
6419 struct symtab_and_line sal;
6420 struct breakpoint *b;
6427 b = set_raw_breakpoint (sal, bp_breakpoint);
6429 b->disposition = disp_del;
6430 b->enable_state = bp_enabled;
6432 b->number = internal_breakpoint_number--;
6438 catch_command_1 (char *arg, int tempflag, int from_tty)
6441 /* The first argument may be an event name, such as "start" or "load".
6442 If so, then handle it as such. If it doesn't match an event name,
6443 then attempt to interpret it as an exception name. (This latter is
6444 the v4.16-and-earlier GDB meaning of the "catch" command.)
6446 First, try to find the bounds of what might be an event name. */
6447 char *arg1_start = arg;
6451 if (arg1_start == NULL)
6453 /* Old behaviour was to use pre-v-4.16 syntax */
6454 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6456 /* Now, this is not allowed */
6457 error ("Catch requires an event name.");
6460 arg1_end = ep_find_event_name_end (arg1_start);
6461 if (arg1_end == NULL)
6462 error ("catch requires an event");
6463 arg1_length = arg1_end + 1 - arg1_start;
6465 /* Try to match what we found against known event names. */
6466 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6468 error ("Catch of signal not yet implemented");
6470 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6472 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6473 tempflag, from_tty);
6475 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6477 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6478 tempflag, from_tty);
6480 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6482 error ("Catch of thread_start not yet implemented");
6484 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6486 error ("Catch of thread_exit not yet implemented");
6488 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6490 error ("Catch of thread_join not yet implemented");
6492 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6494 error ("Catch of start not yet implemented");
6496 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6498 error ("Catch of exit not yet implemented");
6500 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6502 #if defined(CHILD_INSERT_FORK_CATCHPOINT)
6503 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6505 error ("Catch of fork not yet implemented");
6508 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6510 #if defined(CHILD_INSERT_VFORK_CATCHPOINT)
6511 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6513 error ("Catch of vfork not yet implemented");
6516 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6518 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
6519 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6521 error ("Catch of exec not yet implemented");
6524 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6526 #if defined(SOLIB_ADD)
6527 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6529 error ("Catch of load not implemented");
6532 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6534 #if defined(SOLIB_ADD)
6535 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6537 error ("Catch of load not implemented");
6540 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6542 error ("Catch of stop not yet implemented");
6545 /* This doesn't appear to be an event name */
6549 /* Pre-v.4.16 behaviour was to treat the argument
6550 as the name of an exception */
6551 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6552 /* Now this is not allowed */
6553 error ("Unknown event kind specified for catch");
6558 /* Used by the gui, could be made a worker for other things. */
6561 set_breakpoint_sal (struct symtab_and_line sal)
6563 struct breakpoint *b;
6564 b = set_raw_breakpoint (sal, bp_breakpoint);
6565 set_breakpoint_count (breakpoint_count + 1);
6566 b->number = breakpoint_count;
6573 /* These aren't used; I don't know what they were for. */
6574 /* Disable breakpoints on all catch clauses described in ARGS. */
6576 disable_catch (char *args)
6578 /* Map the disable command to catch clauses described in ARGS. */
6581 /* Enable breakpoints on all catch clauses described in ARGS. */
6583 enable_catch (char *args)
6585 /* Map the disable command to catch clauses described in ARGS. */
6588 /* Delete breakpoints on all catch clauses in the active scope. */
6590 delete_catch (char *args)
6592 /* Map the delete command to catch clauses described in ARGS. */
6597 catch_command (char *arg, int from_tty)
6599 catch_command_1 (arg, 0, from_tty);
6604 tcatch_command (char *arg, int from_tty)
6606 catch_command_1 (arg, 1, from_tty);
6611 clear_command (char *arg, int from_tty)
6613 register struct breakpoint *b, *b1;
6615 struct symtabs_and_lines sals;
6616 struct symtab_and_line sal;
6617 register struct breakpoint *found;
6622 sals = decode_line_spec (arg, 1);
6627 sals.sals = (struct symtab_and_line *)
6628 xmalloc (sizeof (struct symtab_and_line));
6629 INIT_SAL (&sal); /* initialize to zeroes */
6630 sal.line = default_breakpoint_line;
6631 sal.symtab = default_breakpoint_symtab;
6632 sal.pc = default_breakpoint_address;
6633 if (sal.symtab == 0)
6634 error ("No source file specified.");
6642 /* For each line spec given, delete bps which correspond
6643 to it. We do this in two loops: the first loop looks at
6644 the initial bp(s) in the chain which should be deleted,
6645 the second goes down the rest of the chain looking ahead
6646 one so it can take those bps off the chain without messing
6650 for (i = 0; i < sals.nelts; i++)
6652 /* If exact pc given, clear bpts at that pc.
6653 If line given (pc == 0), clear all bpts on specified line.
6654 If defaulting, clear all bpts on default line
6657 defaulting sal.pc != 0 tests to do
6662 1 0 <can't happen> */
6665 found = (struct breakpoint *) 0;
6668 while (breakpoint_chain
6669 /* Why don't we check here that this is not
6670 a watchpoint, etc., as we do below?
6671 I can't make it fail, but don't know
6672 what's stopping the failure: a watchpoint
6673 of the same address as "sal.pc" should
6674 wind up being deleted. */
6676 && (((sal.pc && (breakpoint_chain->address == sal.pc)) &&
6677 (overlay_debugging == 0 ||
6678 breakpoint_chain->section == sal.section))
6679 || ((default_match || (0 == sal.pc))
6680 && breakpoint_chain->source_file != NULL
6681 && sal.symtab != NULL
6682 && STREQ (breakpoint_chain->source_file, sal.symtab->filename)
6683 && breakpoint_chain->line_number == sal.line)))
6686 b1 = breakpoint_chain;
6687 breakpoint_chain = b1->next;
6695 && b->next->type != bp_none
6696 && b->next->type != bp_watchpoint
6697 && b->next->type != bp_hardware_watchpoint
6698 && b->next->type != bp_read_watchpoint
6699 && b->next->type != bp_access_watchpoint
6700 && (((sal.pc && (b->next->address == sal.pc)) &&
6701 (overlay_debugging == 0 ||
6702 b->next->section == sal.section))
6703 || ((default_match || (0 == sal.pc))
6704 && b->next->source_file != NULL
6705 && sal.symtab != NULL
6706 && STREQ (b->next->source_file, sal.symtab->filename)
6707 && b->next->line_number == sal.line)))
6720 error ("No breakpoint at %s.", arg);
6722 error ("No breakpoint at this line.");
6726 from_tty = 1; /* Always report if deleted more than one */
6728 printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6729 breakpoints_changed ();
6733 printf_unfiltered ("%d ", found->number);
6735 delete_breakpoint (found);
6739 putchar_unfiltered ('\n');
6744 /* Delete breakpoint in BS if they are `delete' breakpoints and
6745 all breakpoints that are marked for deletion, whether hit or not.
6746 This is called after any breakpoint is hit, or after errors. */
6749 breakpoint_auto_delete (bpstat bs)
6751 struct breakpoint *b, *temp;
6753 for (; bs; bs = bs->next)
6754 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6756 delete_breakpoint (bs->breakpoint_at);
6758 ALL_BREAKPOINTS_SAFE (b, temp)
6760 if (b->disposition == disp_del_at_next_stop)
6761 delete_breakpoint (b);
6765 /* Delete a breakpoint and clean up all traces of it in the data
6769 delete_breakpoint (struct breakpoint *bpt)
6771 register struct breakpoint *b;
6775 error ("Internal error (attempted to delete a NULL breakpoint)");
6778 /* Has this bp already been deleted? This can happen because multiple
6779 lists can hold pointers to bp's. bpstat lists are especial culprits.
6781 One example of this happening is a watchpoint's scope bp. When the
6782 scope bp triggers, we notice that the watchpoint is out of scope, and
6783 delete it. We also delete its scope bp. But the scope bp is marked
6784 "auto-deleting", and is already on a bpstat. That bpstat is then
6785 checked for auto-deleting bp's, which are deleted.
6787 A real solution to this problem might involve reference counts in bp's,
6788 and/or giving them pointers back to their referencing bpstat's, and
6789 teaching delete_breakpoint to only free a bp's storage when no more
6790 references were extent. A cheaper bandaid was chosen. */
6791 if (bpt->type == bp_none)
6794 if (delete_breakpoint_hook)
6795 delete_breakpoint_hook (bpt);
6796 breakpoint_delete_event (bpt->number);
6799 remove_breakpoint (bpt, mark_inserted);
6801 if (breakpoint_chain == bpt)
6802 breakpoint_chain = bpt->next;
6804 /* If we have callback-style exception catchpoints, don't go through
6805 the adjustments to the C++ runtime library etc. if the inferior
6806 isn't actually running. target_enable_exception_callback for a
6807 null target ops vector gives an undesirable error message, so we
6808 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6809 exceptions are supported in this way, it's OK for now. FIXME */
6810 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6812 static char message1[] = "Error in deleting catchpoint %d:\n";
6813 static char message[sizeof (message1) + 30];
6814 args_for_catchpoint_enable args;
6816 /* Format possible error msg */
6817 sprintf (message, message1, bpt->number);
6818 args.kind = bpt->type == bp_catch_catch ?
6819 EX_EVENT_CATCH : EX_EVENT_THROW;
6821 catch_errors (cover_target_enable_exception_callback, &args,
6822 message, RETURN_MASK_ALL);
6829 b->next = bpt->next;
6833 check_duplicates (bpt);
6834 /* If this breakpoint was inserted, and there is another breakpoint
6835 at the same address, we need to insert the other breakpoint. */
6837 && bpt->type != bp_hardware_watchpoint
6838 && bpt->type != bp_read_watchpoint
6839 && bpt->type != bp_access_watchpoint
6840 && bpt->type != bp_catch_fork
6841 && bpt->type != bp_catch_vfork
6842 && bpt->type != bp_catch_exec)
6845 if (b->address == bpt->address
6846 && b->section == bpt->section
6848 && b->enable_state != bp_disabled
6849 && b->enable_state != bp_shlib_disabled
6850 && b->enable_state != bp_call_disabled)
6854 /* We should never reach this point if there is a permanent
6855 breakpoint at the same address as the one being deleted.
6856 If there is a permanent breakpoint somewhere, it should
6857 always be the only one inserted. */
6858 if (b->enable_state == bp_permanent)
6859 internal_error (__FILE__, __LINE__,
6860 "another breakpoint was inserted on top of "
6861 "a permanent breakpoint");
6863 if (b->type == bp_hardware_breakpoint)
6864 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
6866 val = target_insert_breakpoint (b->address, b->shadow_contents);
6870 target_terminal_ours_for_output ();
6871 warning ("Cannot insert breakpoint %d:", b->number);
6872 memory_error (val, b->address); /* which bombs us out */
6879 free_command_lines (&bpt->commands);
6882 if (bpt->cond_string != NULL)
6883 xfree (bpt->cond_string);
6884 if (bpt->addr_string != NULL)
6885 xfree (bpt->addr_string);
6886 if (bpt->exp != NULL)
6888 if (bpt->exp_string != NULL)
6889 xfree (bpt->exp_string);
6890 if (bpt->val != NULL)
6891 value_free (bpt->val);
6892 if (bpt->source_file != NULL)
6893 xfree (bpt->source_file);
6894 if (bpt->dll_pathname != NULL)
6895 xfree (bpt->dll_pathname);
6896 if (bpt->triggered_dll_pathname != NULL)
6897 xfree (bpt->triggered_dll_pathname);
6898 if (bpt->exec_pathname != NULL)
6899 xfree (bpt->exec_pathname);
6901 /* Be sure no bpstat's are pointing at it after it's been freed. */
6902 /* FIXME, how can we find all bpstat's?
6903 We just check stop_bpstat for now. */
6904 for (bs = stop_bpstat; bs; bs = bs->next)
6905 if (bs->breakpoint_at == bpt)
6907 bs->breakpoint_at = NULL;
6909 /* we'd call bpstat_clear_actions, but that free's stuff and due
6910 to the multiple pointers pointing to one item with no
6911 reference counts found anywhere through out the bpstat's (how
6912 do you spell fragile?), we don't want to free things twice --
6913 better a memory leak than a corrupt malloc pool! */
6914 bs->commands = NULL;
6917 /* On the chance that someone will soon try again to delete this same
6918 bp, we mark it as deleted before freeing its storage. */
6919 bpt->type = bp_none;
6925 do_delete_breakpoint_cleanup (void *b)
6927 delete_breakpoint (b);
6931 make_cleanup_delete_breakpoint (struct breakpoint *b)
6933 return make_cleanup (do_delete_breakpoint_cleanup, b);
6937 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
6939 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
6943 delete_command (char *arg, int from_tty)
6945 struct breakpoint *b, *temp;
6949 int breaks_to_delete = 0;
6951 /* Delete all breakpoints if no argument.
6952 Do not delete internal or call-dummy breakpoints, these
6953 have to be deleted with an explicit breakpoint number argument. */
6956 if (b->type != bp_call_dummy &&
6957 b->type != bp_shlib_event &&
6958 b->type != bp_thread_event &&
6960 breaks_to_delete = 1;
6963 /* Ask user only if there are some breakpoints to delete. */
6965 || (breaks_to_delete && query ("Delete all breakpoints? ")))
6967 ALL_BREAKPOINTS_SAFE (b, temp)
6969 if (b->type != bp_call_dummy &&
6970 b->type != bp_shlib_event &&
6971 b->type != bp_thread_event &&
6973 delete_breakpoint (b);
6978 map_breakpoint_numbers (arg, delete_breakpoint);
6981 /* Reset a breakpoint given it's struct breakpoint * BINT.
6982 The value we return ends up being the return value from catch_errors.
6983 Unused in this case. */
6986 breakpoint_re_set_one (PTR bint)
6988 /* get past catch_errs */
6989 struct breakpoint *b = (struct breakpoint *) bint;
6992 struct symtabs_and_lines sals;
6994 enum enable_state save_enable;
6999 warning ("attempted to reset apparently deleted breakpoint #%d?",
7003 case bp_hardware_breakpoint:
7005 case bp_catch_unload:
7006 if (b->addr_string == NULL)
7008 /* Anything without a string can't be re-set. */
7009 delete_breakpoint (b);
7012 /* In case we have a problem, disable this breakpoint. We'll restore
7013 its status if we succeed. */
7014 save_enable = b->enable_state;
7015 b->enable_state = bp_disabled;
7017 set_language (b->language);
7018 input_radix = b->input_radix;
7020 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL);
7021 for (i = 0; i < sals.nelts; i++)
7023 resolve_sal_pc (&sals.sals[i]);
7025 /* Reparse conditions, they might contain references to the
7027 if (b->cond_string != NULL)
7032 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7035 /* We need to re-set the breakpoint if the address changes... */
7036 if (b->address != sals.sals[i].pc
7037 /* ...or new and old breakpoints both have source files, and
7038 the source file name or the line number changes... */
7039 || (b->source_file != NULL
7040 && sals.sals[i].symtab != NULL
7041 && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
7042 || b->line_number != sals.sals[i].line)
7044 /* ...or we switch between having a source file and not having
7046 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7049 if (b->source_file != NULL)
7050 xfree (b->source_file);
7051 if (sals.sals[i].symtab == NULL)
7052 b->source_file = NULL;
7055 savestring (sals.sals[i].symtab->filename,
7056 strlen (sals.sals[i].symtab->filename));
7057 b->line_number = sals.sals[i].line;
7058 b->address = sals.sals[i].pc;
7060 /* Used to check for duplicates here, but that can
7061 cause trouble, as it doesn't check for disable
7066 /* Might be better to do this just once per breakpoint_re_set,
7067 rather than once for every breakpoint. */
7068 breakpoints_changed ();
7070 b->section = sals.sals[i].section;
7071 b->enable_state = save_enable; /* Restore it, this worked. */
7074 /* Now that this is re-enabled, check_duplicates
7076 check_duplicates (b);
7083 case bp_hardware_watchpoint:
7084 case bp_read_watchpoint:
7085 case bp_access_watchpoint:
7086 innermost_block = NULL;
7087 /* The issue arises of what context to evaluate this in. The
7088 same one as when it was set, but what does that mean when
7089 symbols have been re-read? We could save the filename and
7090 functionname, but if the context is more local than that, the
7091 best we could do would be something like how many levels deep
7092 and which index at that particular level, but that's going to
7093 be less stable than filenames or function names. */
7095 /* So for now, just use a global context. */
7098 b->exp = parse_expression (b->exp_string);
7099 b->exp_valid_block = innermost_block;
7100 mark = value_mark ();
7102 value_free (b->val);
7103 b->val = evaluate_expression (b->exp);
7104 release_value (b->val);
7105 if (VALUE_LAZY (b->val))
7106 value_fetch_lazy (b->val);
7108 if (b->cond_string != NULL)
7113 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7115 if (b->enable_state == bp_enabled)
7117 value_free_to_mark (mark);
7119 case bp_catch_catch:
7120 case bp_catch_throw:
7122 /* We needn't really do anything to reset these, since the mask
7123 that requests them is unaffected by e.g., new libraries being
7126 case bp_catch_vfork:
7131 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
7133 /* Delete longjmp breakpoints, they will be reset later by
7134 breakpoint_re_set. */
7136 case bp_longjmp_resume:
7137 delete_breakpoint (b);
7140 /* This breakpoint is special, it's set up when the inferior
7141 starts and we really don't want to touch it. */
7142 case bp_shlib_event:
7144 /* Like bp_shlib_event, this breakpoint type is special.
7145 Once it is set up, we do not want to touch it. */
7146 case bp_thread_event:
7148 /* Keep temporary breakpoints, which can be encountered when we step
7149 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7150 Otherwise these should have been blown away via the cleanup chain
7151 or by breakpoint_init_inferior when we rerun the executable. */
7154 case bp_watchpoint_scope:
7156 case bp_step_resume:
7163 /* Re-set all breakpoints after symbols have been re-loaded. */
7165 breakpoint_re_set (void)
7167 struct breakpoint *b, *temp;
7168 enum language save_language;
7169 int save_input_radix;
7170 static char message1[] = "Error in re-setting breakpoint %d:\n";
7171 char message[sizeof (message1) + 30 /* slop */ ];
7173 save_language = current_language->la_language;
7174 save_input_radix = input_radix;
7175 ALL_BREAKPOINTS_SAFE (b, temp)
7177 /* Format possible error msg */
7178 sprintf (message, message1, b->number);
7179 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7181 set_language (save_language);
7182 input_radix = save_input_radix;
7184 #ifdef GET_LONGJMP_TARGET
7185 create_longjmp_breakpoint ("longjmp");
7186 create_longjmp_breakpoint ("_longjmp");
7187 create_longjmp_breakpoint ("siglongjmp");
7188 create_longjmp_breakpoint ("_siglongjmp");
7189 create_longjmp_breakpoint (NULL);
7193 /* Took this out (temporarily at least), since it produces an extra
7194 blank line at startup. This messes up the gdbtests. -PB */
7195 /* Blank line to finish off all those mention() messages we just printed. */
7196 printf_filtered ("\n");
7200 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7201 If from_tty is nonzero, it prints a message to that effect,
7202 which ends with a period (no newline). */
7204 /* Reset the thread number of this breakpoint:
7206 - If the breakpoint is for all threads, leave it as-is.
7207 - Else, reset it to the current thread for inferior_ptid. */
7209 breakpoint_re_set_thread (struct breakpoint *b)
7211 if (b->thread != -1)
7213 if (in_thread_list (inferior_ptid))
7214 b->thread = pid_to_thread_id (inferior_ptid);
7219 set_ignore_count (int bptnum, int count, int from_tty)
7221 register struct breakpoint *b;
7227 if (b->number == bptnum)
7229 b->ignore_count = count;
7232 else if (count == 0)
7233 printf_filtered ("Will stop next time breakpoint %d is reached.",
7235 else if (count == 1)
7236 printf_filtered ("Will ignore next crossing of breakpoint %d.",
7239 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
7241 breakpoints_changed ();
7245 error ("No breakpoint number %d.", bptnum);
7248 /* Clear the ignore counts of all breakpoints. */
7250 breakpoint_clear_ignore_counts (void)
7252 struct breakpoint *b;
7255 b->ignore_count = 0;
7258 /* Command to set ignore-count of breakpoint N to COUNT. */
7261 ignore_command (char *args, int from_tty)
7267 error_no_arg ("a breakpoint number");
7269 num = get_number (&p);
7271 error ("bad breakpoint number: '%s'", args);
7273 error ("Second argument (specified ignore-count) is missing.");
7275 set_ignore_count (num,
7276 longest_to_int (value_as_long (parse_and_eval (p))),
7278 printf_filtered ("\n");
7279 breakpoints_changed ();
7282 /* Call FUNCTION on each of the breakpoints
7283 whose numbers are given in ARGS. */
7286 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7288 register char *p = args;
7291 register struct breakpoint *b, *tmp;
7295 error_no_arg ("one or more breakpoint numbers");
7302 num = get_number_or_range (&p1);
7305 warning ("bad breakpoint number at or near '%s'", p);
7309 ALL_BREAKPOINTS_SAFE (b, tmp)
7310 if (b->number == num)
7312 struct breakpoint *related_breakpoint = b->related_breakpoint;
7315 if (related_breakpoint)
7316 function (related_breakpoint);
7320 printf_unfiltered ("No breakpoint number %d.\n", num);
7327 disable_breakpoint (struct breakpoint *bpt)
7329 /* Never disable a watchpoint scope breakpoint; we want to
7330 hit them when we leave scope so we can delete both the
7331 watchpoint and its scope breakpoint at that time. */
7332 if (bpt->type == bp_watchpoint_scope)
7335 /* You can't disable permanent breakpoints. */
7336 if (bpt->enable_state == bp_permanent)
7339 bpt->enable_state = bp_disabled;
7341 check_duplicates (bpt);
7343 if (modify_breakpoint_hook)
7344 modify_breakpoint_hook (bpt);
7345 breakpoint_modify_event (bpt->number);
7350 disable_command (char *args, int from_tty)
7352 register struct breakpoint *bpt;
7354 ALL_BREAKPOINTS (bpt)
7358 warning ("attempted to disable apparently deleted breakpoint #%d?",
7363 case bp_catch_unload:
7365 case bp_catch_vfork:
7367 case bp_catch_catch:
7368 case bp_catch_throw:
7369 case bp_hardware_breakpoint:
7371 case bp_hardware_watchpoint:
7372 case bp_read_watchpoint:
7373 case bp_access_watchpoint:
7374 disable_breakpoint (bpt);
7379 map_breakpoint_numbers (args, disable_breakpoint);
7383 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7385 struct frame_info *save_selected_frame = NULL;
7386 int save_selected_frame_level = -1;
7387 int target_resources_ok, other_type_used;
7390 if (bpt->type == bp_hardware_breakpoint)
7393 i = hw_breakpoint_used_count ();
7394 target_resources_ok =
7395 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7397 if (target_resources_ok == 0)
7398 error ("No hardware breakpoint support in the target.");
7399 else if (target_resources_ok < 0)
7400 error ("Hardware breakpoints used exceeds limit.");
7403 if (bpt->enable_state != bp_permanent)
7404 bpt->enable_state = bp_enabled;
7405 bpt->disposition = disposition;
7406 check_duplicates (bpt);
7407 breakpoints_changed ();
7409 if (bpt->type == bp_watchpoint ||
7410 bpt->type == bp_hardware_watchpoint ||
7411 bpt->type == bp_read_watchpoint ||
7412 bpt->type == bp_access_watchpoint)
7414 if (bpt->exp_valid_block != NULL)
7416 struct frame_info *fr =
7418 /* Ensure that we have the current frame. Else, this
7419 next query may pessimistically be answered as, "No,
7420 not within current scope". */
7421 get_current_frame ();
7422 fr = find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
7426 Cannot enable watchpoint %d because the block in which its expression\n\
7427 is valid is not currently in scope.\n", bpt->number);
7428 bpt->enable_state = bp_disabled;
7432 save_selected_frame = selected_frame;
7433 save_selected_frame_level = selected_frame_level;
7434 select_frame (fr, -1);
7437 value_free (bpt->val);
7438 mark = value_mark ();
7439 bpt->val = evaluate_expression (bpt->exp);
7440 release_value (bpt->val);
7441 if (VALUE_LAZY (bpt->val))
7442 value_fetch_lazy (bpt->val);
7444 if (bpt->type == bp_hardware_watchpoint ||
7445 bpt->type == bp_read_watchpoint ||
7446 bpt->type == bp_access_watchpoint)
7448 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7449 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7451 /* Hack around 'unused var' error for some targets here */
7453 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7454 bpt->type, i + mem_cnt, other_type_used);
7455 /* we can consider of type is bp_hardware_watchpoint, convert to
7456 bp_watchpoint in the following condition */
7457 if (target_resources_ok < 0)
7460 Cannot enable watchpoint %d because target watch resources\n\
7461 have been allocated for other watchpoints.\n", bpt->number);
7462 bpt->enable_state = bp_disabled;
7463 value_free_to_mark (mark);
7468 if (save_selected_frame_level >= 0)
7469 select_frame (save_selected_frame, save_selected_frame_level);
7470 value_free_to_mark (mark);
7472 if (modify_breakpoint_hook)
7473 modify_breakpoint_hook (bpt);
7474 breakpoint_modify_event (bpt->number);
7478 enable_breakpoint (struct breakpoint *bpt)
7480 do_enable_breakpoint (bpt, bpt->disposition);
7483 /* The enable command enables the specified breakpoints (or all defined
7484 breakpoints) so they once again become (or continue to be) effective
7485 in stopping the inferior. */
7489 enable_command (char *args, int from_tty)
7491 register struct breakpoint *bpt;
7493 ALL_BREAKPOINTS (bpt)
7497 warning ("attempted to enable apparently deleted breakpoint #%d?",
7502 case bp_catch_unload:
7504 case bp_catch_vfork:
7506 case bp_catch_catch:
7507 case bp_catch_throw:
7508 case bp_hardware_breakpoint:
7510 case bp_hardware_watchpoint:
7511 case bp_read_watchpoint:
7512 case bp_access_watchpoint:
7513 enable_breakpoint (bpt);
7518 map_breakpoint_numbers (args, enable_breakpoint);
7522 enable_once_breakpoint (struct breakpoint *bpt)
7524 do_enable_breakpoint (bpt, disp_disable);
7529 enable_once_command (char *args, int from_tty)
7531 map_breakpoint_numbers (args, enable_once_breakpoint);
7535 enable_delete_breakpoint (struct breakpoint *bpt)
7537 do_enable_breakpoint (bpt, disp_del);
7542 enable_delete_command (char *args, int from_tty)
7544 map_breakpoint_numbers (args, enable_delete_breakpoint);
7547 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7549 struct symtabs_and_lines
7550 decode_line_spec_1 (char *string, int funfirstline)
7552 struct symtabs_and_lines sals;
7554 error ("Empty line specification.");
7555 if (default_breakpoint_valid)
7556 sals = decode_line_1 (&string, funfirstline,
7557 default_breakpoint_symtab,
7558 default_breakpoint_line,
7561 sals = decode_line_1 (&string, funfirstline,
7562 (struct symtab *) NULL, 0, (char ***) NULL);
7564 error ("Junk at end of line specification: %s", string);
7569 _initialize_breakpoint (void)
7571 struct cmd_list_element *c;
7573 breakpoint_chain = 0;
7574 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7575 before a breakpoint is set. */
7576 breakpoint_count = 0;
7578 add_com ("ignore", class_breakpoint, ignore_command,
7579 "Set ignore-count of breakpoint number N to COUNT.\n\
7580 Usage is `ignore N COUNT'.");
7582 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7584 add_com ("commands", class_breakpoint, commands_command,
7585 "Set commands to be executed when a breakpoint is hit.\n\
7586 Give breakpoint number as argument after \"commands\".\n\
7587 With no argument, the targeted breakpoint is the last one set.\n\
7588 The commands themselves follow starting on the next line.\n\
7589 Type a line containing \"end\" to indicate the end of them.\n\
7590 Give \"silent\" as the first line to make the breakpoint silent;\n\
7591 then no output is printed when it is hit, except what the commands print.");
7593 add_com ("condition", class_breakpoint, condition_command,
7594 "Specify breakpoint number N to break only if COND is true.\n\
7595 Usage is `condition N COND', where N is an integer and COND is an\n\
7596 expression to be evaluated whenever breakpoint N is reached. ");
7598 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7599 "Set a temporary breakpoint. Args like \"break\" command.\n\
7600 Like \"break\" except the breakpoint is only temporary,\n\
7601 so it will be deleted when hit. Equivalent to \"break\" followed\n\
7602 by using \"enable delete\" on the breakpoint number.");
7603 c->completer = location_completer;
7605 c = add_com ("txbreak", class_breakpoint, tbreak_at_finish_command,
7606 "Set temporary breakpoint at procedure exit. Either there should\n\
7607 be no argument or the argument must be a depth.\n");
7608 c->completer = location_completer;
7610 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7611 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
7612 Like \"break\" except the breakpoint requires hardware support,\n\
7613 some target hardware may not have this support.");
7614 c->completer = location_completer;
7616 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7617 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7618 Like \"hbreak\" except the breakpoint is only temporary,\n\
7619 so it will be deleted when hit.");
7620 c->completer = location_completer;
7622 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7623 "Enable some breakpoints.\n\
7624 Give breakpoint numbers (separated by spaces) as arguments.\n\
7625 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7626 This is used to cancel the effect of the \"disable\" command.\n\
7627 With a subcommand you can enable temporarily.",
7628 &enablelist, "enable ", 1, &cmdlist);
7630 add_com ("ab", class_breakpoint, enable_command,
7631 "Enable some breakpoints.\n\
7632 Give breakpoint numbers (separated by spaces) as arguments.\n\
7633 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7634 This is used to cancel the effect of the \"disable\" command.\n\
7635 With a subcommand you can enable temporarily.");
7637 add_com_alias ("en", "enable", class_breakpoint, 1);
7639 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7640 "Enable some breakpoints.\n\
7641 Give breakpoint numbers (separated by spaces) as arguments.\n\
7642 This is used to cancel the effect of the \"disable\" command.\n\
7643 May be abbreviated to simply \"enable\".\n",
7644 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7646 add_cmd ("once", no_class, enable_once_command,
7647 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7648 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7651 add_cmd ("delete", no_class, enable_delete_command,
7652 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7653 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7656 add_cmd ("delete", no_class, enable_delete_command,
7657 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7658 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7661 add_cmd ("once", no_class, enable_once_command,
7662 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7663 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7666 add_prefix_cmd ("disable", class_breakpoint, disable_command,
7667 "Disable some breakpoints.\n\
7668 Arguments are breakpoint numbers with spaces in between.\n\
7669 To disable all breakpoints, give no argument.\n\
7670 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7671 &disablelist, "disable ", 1, &cmdlist);
7672 add_com_alias ("dis", "disable", class_breakpoint, 1);
7673 add_com_alias ("disa", "disable", class_breakpoint, 1);
7675 add_com ("sb", class_breakpoint, disable_command,
7676 "Disable some breakpoints.\n\
7677 Arguments are breakpoint numbers with spaces in between.\n\
7678 To disable all breakpoints, give no argument.\n\
7679 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7681 add_cmd ("breakpoints", class_alias, disable_command,
7682 "Disable some breakpoints.\n\
7683 Arguments are breakpoint numbers with spaces in between.\n\
7684 To disable all breakpoints, give no argument.\n\
7685 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7686 This command may be abbreviated \"disable\".",
7689 add_prefix_cmd ("delete", class_breakpoint, delete_command,
7690 "Delete some breakpoints or auto-display expressions.\n\
7691 Arguments are breakpoint numbers with spaces in between.\n\
7692 To delete all breakpoints, give no argument.\n\
7694 Also a prefix command for deletion of other GDB objects.\n\
7695 The \"unset\" command is also an alias for \"delete\".",
7696 &deletelist, "delete ", 1, &cmdlist);
7697 add_com_alias ("d", "delete", class_breakpoint, 1);
7699 add_com ("db", class_breakpoint, delete_command,
7700 "Delete some breakpoints.\n\
7701 Arguments are breakpoint numbers with spaces in between.\n\
7702 To delete all breakpoints, give no argument.\n");
7704 add_cmd ("breakpoints", class_alias, delete_command,
7705 "Delete some breakpoints or auto-display expressions.\n\
7706 Arguments are breakpoint numbers with spaces in between.\n\
7707 To delete all breakpoints, give no argument.\n\
7708 This command may be abbreviated \"delete\".",
7711 add_com ("clear", class_breakpoint, clear_command,
7712 concat ("Clear breakpoint at specified line or function.\n\
7713 Argument may be line number, function name, or \"*\" and an address.\n\
7714 If line number is specified, all breakpoints in that line are cleared.\n\
7715 If function is specified, breakpoints at beginning of function are cleared.\n\
7716 If an address is specified, breakpoints at that address are cleared.\n\n",
7717 "With no argument, clears all breakpoints in the line that the selected frame\n\
7720 See also the \"delete\" command which clears breakpoints by number.", NULL));
7722 c = add_com ("break", class_breakpoint, break_command,
7723 concat ("Set breakpoint at specified line or function.\n\
7724 Argument may be line number, function name, or \"*\" and an address.\n\
7725 If line number is specified, break at start of code for that line.\n\
7726 If function is specified, break at start of code for that function.\n\
7727 If an address is specified, break at that exact address.\n",
7728 "With no arg, uses current execution address of selected stack frame.\n\
7729 This is useful for breaking on return to a stack frame.\n\
7731 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7733 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7734 c->completer = location_completer;
7736 add_com_alias ("b", "break", class_run, 1);
7737 add_com_alias ("br", "break", class_run, 1);
7738 add_com_alias ("bre", "break", class_run, 1);
7739 add_com_alias ("brea", "break", class_run, 1);
7741 add_com ("xbreak", class_breakpoint, break_at_finish_command,
7742 concat ("Set breakpoint at procedure exit. \n\
7743 Argument may be function name, or \"*\" and an address.\n\
7744 If function is specified, break at end of code for that function.\n\
7745 If an address is specified, break at the end of the function that contains \n\
7746 that exact address.\n",
7747 "With no arg, uses current execution address of selected stack frame.\n\
7748 This is useful for breaking on return to a stack frame.\n\
7750 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7752 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7753 add_com_alias ("xb", "xbreak", class_breakpoint, 1);
7754 add_com_alias ("xbr", "xbreak", class_breakpoint, 1);
7755 add_com_alias ("xbre", "xbreak", class_breakpoint, 1);
7756 add_com_alias ("xbrea", "xbreak", class_breakpoint, 1);
7760 add_com_alias ("ba", "break", class_breakpoint, 1);
7761 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7762 add_com ("bx", class_breakpoint, break_at_finish_at_depth_command,
7763 "Set breakpoint at procedure exit. Either there should\n\
7764 be no argument or the argument must be a depth.\n");
7769 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7770 "Break in function/address or break at a line in the current file.",
7771 &stoplist, "stop ", 1, &cmdlist);
7772 add_cmd ("in", class_breakpoint, stopin_command,
7773 "Break in function or address.\n", &stoplist);
7774 add_cmd ("at", class_breakpoint, stopat_command,
7775 "Break at a line in the current file.\n", &stoplist);
7776 add_com ("status", class_info, breakpoints_info,
7777 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7778 The \"Type\" column indicates one of:\n\
7779 \tbreakpoint - normal breakpoint\n\
7780 \twatchpoint - watchpoint\n\
7781 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7782 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7783 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7784 address and file/line number respectively.\n\n",
7785 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7786 are set to the address of the last breakpoint listed.\n\n\
7787 Convenience variable \"$bpnum\" contains the number of the last\n\
7788 breakpoint set.", NULL));
7791 add_info ("breakpoints", breakpoints_info,
7792 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7793 The \"Type\" column indicates one of:\n\
7794 \tbreakpoint - normal breakpoint\n\
7795 \twatchpoint - watchpoint\n\
7796 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7797 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7798 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7799 address and file/line number respectively.\n\n",
7800 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7801 are set to the address of the last breakpoint listed.\n\n\
7802 Convenience variable \"$bpnum\" contains the number of the last\n\
7803 breakpoint set.", NULL));
7806 add_com ("lb", class_breakpoint, breakpoints_info,
7807 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7808 The \"Type\" column indicates one of:\n\
7809 \tbreakpoint - normal breakpoint\n\
7810 \twatchpoint - watchpoint\n\
7811 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7812 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7813 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7814 address and file/line number respectively.\n\n",
7815 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7816 are set to the address of the last breakpoint listed.\n\n\
7817 Convenience variable \"$bpnum\" contains the number of the last\n\
7818 breakpoint set.", NULL));
7820 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
7821 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
7822 The \"Type\" column indicates one of:\n\
7823 \tbreakpoint - normal breakpoint\n\
7824 \twatchpoint - watchpoint\n\
7825 \tlongjmp - internal breakpoint used to step through longjmp()\n\
7826 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7827 \tuntil - internal breakpoint used by the \"until\" command\n\
7828 \tfinish - internal breakpoint used by the \"finish\" command\n",
7829 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7830 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7831 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7832 address and file/line number respectively.\n\n",
7833 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7834 are set to the address of the last breakpoint listed.\n\n\
7835 Convenience variable \"$bpnum\" contains the number of the last\n\
7836 breakpoint set.", NULL),
7837 &maintenanceinfolist);
7839 add_com ("catch", class_breakpoint, catch_command,
7840 "Set catchpoints to catch events.\n\
7841 Raised signals may be caught:\n\
7842 \tcatch signal - all signals\n\
7843 \tcatch signal <signame> - a particular signal\n\
7844 Raised exceptions may be caught:\n\
7845 \tcatch throw - all exceptions, when thrown\n\
7846 \tcatch throw <exceptname> - a particular exception, when thrown\n\
7847 \tcatch catch - all exceptions, when caught\n\
7848 \tcatch catch <exceptname> - a particular exception, when caught\n\
7849 Thread or process events may be caught:\n\
7850 \tcatch thread_start - any threads, just after creation\n\
7851 \tcatch thread_exit - any threads, just before expiration\n\
7852 \tcatch thread_join - any threads, just after joins\n\
7853 Process events may be caught:\n\
7854 \tcatch start - any processes, just after creation\n\
7855 \tcatch exit - any processes, just before expiration\n\
7856 \tcatch fork - calls to fork()\n\
7857 \tcatch vfork - calls to vfork()\n\
7858 \tcatch exec - calls to exec()\n\
7859 Dynamically-linked library events may be caught:\n\
7860 \tcatch load - loads of any library\n\
7861 \tcatch load <libname> - loads of a particular library\n\
7862 \tcatch unload - unloads of any library\n\
7863 \tcatch unload <libname> - unloads of a particular library\n\
7864 The act of your program's execution stopping may also be caught:\n\
7866 C++ exceptions may be caught:\n\
7867 \tcatch throw - all exceptions, when thrown\n\
7868 \tcatch catch - all exceptions, when caught\n\
7870 Do \"help set follow-fork-mode\" for info on debugging your program\n\
7871 after a fork or vfork is caught.\n\n\
7872 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
7874 add_com ("tcatch", class_breakpoint, tcatch_command,
7875 "Set temporary catchpoints to catch events.\n\
7876 Args like \"catch\" command.\n\
7877 Like \"catch\" except the catchpoint is only temporary,\n\
7878 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
7879 by using \"enable delete\" on the catchpoint number.");
7881 c = add_com ("watch", class_breakpoint, watch_command,
7882 "Set a watchpoint for an expression.\n\
7883 A watchpoint stops execution of your program whenever the value of\n\
7884 an expression changes.");
7885 c->completer = location_completer;
7887 c = add_com ("rwatch", class_breakpoint, rwatch_command,
7888 "Set a read watchpoint for an expression.\n\
7889 A watchpoint stops execution of your program whenever the value of\n\
7890 an expression is read.");
7891 c->completer = location_completer;
7893 c = add_com ("awatch", class_breakpoint, awatch_command,
7894 "Set a watchpoint for an expression.\n\
7895 A watchpoint stops execution of your program whenever the value of\n\
7896 an expression is either read or written.");
7897 c->completer = location_completer;
7899 add_info ("watchpoints", breakpoints_info,
7900 "Synonym for ``info breakpoints''.");
7903 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
7904 (char *) &can_use_hw_watchpoints,
7905 "Set debugger's willingness to use watchpoint hardware.\n\
7906 If zero, gdb will not use hardware for new watchpoints, even if\n\
7907 such is available. (However, any hardware watchpoints that were\n\
7908 created before setting this to nonzero, will continue to use watchpoint\n\
7911 add_show_from_set (c, &showlist);
7913 can_use_hw_watchpoints = 1;