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 struct value *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.
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.
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
1312 b->inserted = (is == mark_inserted);
1313 /* Walk down the saved value chain. */
1314 for (v = b->val_chain; v; v = v->next)
1316 /* For each memory reference remove the watchpoint
1318 if (VALUE_LVAL (v) == lval_memory
1319 && ! VALUE_LAZY (v))
1321 struct type *vtype = check_typedef (VALUE_TYPE (v));
1323 if (v == b->val_chain
1324 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1325 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1330 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1331 len = TYPE_LENGTH (VALUE_TYPE (v));
1333 if (b->type == bp_read_watchpoint)
1335 else if (b->type == bp_access_watchpoint)
1338 val = target_remove_watchpoint (addr, len, type);
1345 /* Failure to remove any of the hardware watchpoints comes here. */
1346 if ((is == mark_uninserted) && (b->inserted))
1347 warning ("Could not remove hardware watchpoint %d.",
1350 /* Free the saved value chain. We will construct a new one
1351 the next time the watchpoint is inserted. */
1352 for (v = b->val_chain; v; v = n)
1357 b->val_chain = NULL;
1359 else if ((b->type == bp_catch_fork ||
1360 b->type == bp_catch_vfork ||
1361 b->type == bp_catch_exec)
1362 && b->enable_state == bp_enabled
1369 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
1371 case bp_catch_vfork:
1372 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
1375 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
1378 warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1383 b->inserted = (is == mark_inserted);
1385 else if ((b->type == bp_catch_catch ||
1386 b->type == bp_catch_throw)
1387 && b->enable_state == bp_enabled
1391 val = target_remove_breakpoint (b->address, b->shadow_contents);
1394 b->inserted = (is == mark_inserted);
1396 else if (ep_is_exception_catchpoint (b)
1397 && b->inserted /* sometimes previous insert doesn't happen */
1398 && b->enable_state == bp_enabled
1402 val = target_remove_breakpoint (b->address, b->shadow_contents);
1406 b->inserted = (is == mark_inserted);
1412 /* Clear the "inserted" flag in all breakpoints. */
1415 mark_breakpoints_out (void)
1417 register struct breakpoint *b;
1423 /* Clear the "inserted" flag in all breakpoints and delete any
1424 breakpoints which should go away between runs of the program.
1426 Plus other such housekeeping that has to be done for breakpoints
1429 Note: this function gets called at the end of a run (by
1430 generic_mourn_inferior) and when a run begins (by
1431 init_wait_for_inferior). */
1436 breakpoint_init_inferior (enum inf_context context)
1438 register struct breakpoint *b, *temp;
1439 static int warning_needed = 0;
1441 ALL_BREAKPOINTS_SAFE (b, temp)
1448 case bp_watchpoint_scope:
1450 /* If the call dummy breakpoint is at the entry point it will
1451 cause problems when the inferior is rerun, so we better
1454 Also get rid of scope breakpoints. */
1455 delete_breakpoint (b);
1459 case bp_hardware_watchpoint:
1460 case bp_read_watchpoint:
1461 case bp_access_watchpoint:
1463 /* Likewise for watchpoints on local expressions. */
1464 if (b->exp_valid_block != NULL)
1465 delete_breakpoint (b);
1468 /* Likewise for exception catchpoints in dynamic-linked
1469 executables where required */
1470 if (ep_is_exception_catchpoint (b) &&
1471 exception_catchpoints_are_fragile)
1474 delete_breakpoint (b);
1480 if (exception_catchpoints_are_fragile)
1481 exception_support_initialized = 0;
1483 /* Don't issue the warning unless it's really needed... */
1484 if (warning_needed && (context != inf_exited))
1486 warning ("Exception catchpoints from last run were deleted.");
1487 warning ("You must reinsert them explicitly.");
1492 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1493 exists at PC. It returns ordinary_breakpoint_here if it's an
1494 ordinary breakpoint, or permanent_breakpoint_here if it's a
1495 permanent breakpoint.
1496 - When continuing from a location with an ordinary breakpoint, we
1497 actually single step once before calling insert_breakpoints.
1498 - When continuing from a localion with a permanent breakpoint, we
1499 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1500 the target, to advance the PC past the breakpoint. */
1502 enum breakpoint_here
1503 breakpoint_here_p (CORE_ADDR pc)
1505 register struct breakpoint *b;
1506 int any_breakpoint_here = 0;
1509 if ((b->enable_state == bp_enabled
1510 || b->enable_state == bp_permanent)
1511 && b->address == pc) /* bp is enabled and matches pc */
1513 if (overlay_debugging &&
1514 section_is_overlay (b->section) &&
1515 !section_is_mapped (b->section))
1516 continue; /* unmapped overlay -- can't be a match */
1517 else if (b->enable_state == bp_permanent)
1518 return permanent_breakpoint_here;
1520 any_breakpoint_here = 1;
1523 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1527 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1528 but it only returns true if there is actually a breakpoint inserted
1532 breakpoint_inserted_here_p (CORE_ADDR pc)
1534 register struct breakpoint *b;
1538 && b->address == pc) /* bp is inserted and matches pc */
1540 if (overlay_debugging &&
1541 section_is_overlay (b->section) &&
1542 !section_is_mapped (b->section))
1543 continue; /* unmapped overlay -- can't be a match */
1551 /* Return nonzero if FRAME is a dummy frame. We can't use
1552 PC_IN_CALL_DUMMY because figuring out the saved SP would take too
1553 much time, at least using get_saved_register on the 68k. This
1554 means that for this function to work right a port must use the
1555 bp_call_dummy breakpoint. */
1558 frame_in_dummy (struct frame_info *frame)
1560 struct breakpoint *b;
1565 if (USE_GENERIC_DUMMY_FRAMES)
1566 return generic_pc_in_call_dummy (frame->pc, frame->frame, frame->frame);
1570 if (b->type == bp_call_dummy
1571 && b->frame == frame->frame
1572 /* We need to check the PC as well as the frame on the sparc,
1573 for signals.exp in the testsuite. */
1576 - SIZEOF_CALL_DUMMY_WORDS / sizeof (LONGEST) * REGISTER_SIZE))
1577 && frame->pc <= b->address)
1583 /* breakpoint_thread_match (PC, PID) returns true if the breakpoint at
1584 PC is valid for process/thread PID. */
1587 breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
1589 struct breakpoint *b;
1592 thread = pid_to_thread_id (ptid);
1595 if (b->enable_state != bp_disabled
1596 && b->enable_state != bp_shlib_disabled
1597 && b->enable_state != bp_call_disabled
1599 && (b->thread == -1 || b->thread == thread))
1601 if (overlay_debugging &&
1602 section_is_overlay (b->section) &&
1603 !section_is_mapped (b->section))
1604 continue; /* unmapped overlay -- can't be a match */
1613 /* bpstat stuff. External routines' interfaces are documented
1617 ep_is_catchpoint (struct breakpoint *ep)
1620 (ep->type == bp_catch_load)
1621 || (ep->type == bp_catch_unload)
1622 || (ep->type == bp_catch_fork)
1623 || (ep->type == bp_catch_vfork)
1624 || (ep->type == bp_catch_exec)
1625 || (ep->type == bp_catch_catch)
1626 || (ep->type == bp_catch_throw);
1628 /* ??rehrauer: Add more kinds here, as are implemented... */
1632 ep_is_shlib_catchpoint (struct breakpoint *ep)
1635 (ep->type == bp_catch_load)
1636 || (ep->type == bp_catch_unload);
1640 ep_is_exception_catchpoint (struct breakpoint *ep)
1643 (ep->type == bp_catch_catch)
1644 || (ep->type == bp_catch_throw);
1647 /* Clear a bpstat so that it says we are not at any breakpoint.
1648 Also free any storage that is part of a bpstat. */
1651 bpstat_clear (bpstat *bsp)
1662 if (p->old_val != NULL)
1663 value_free (p->old_val);
1670 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
1671 is part of the bpstat is copied as well. */
1674 bpstat_copy (bpstat bs)
1678 bpstat retval = NULL;
1683 for (; bs != NULL; bs = bs->next)
1685 tmp = (bpstat) xmalloc (sizeof (*tmp));
1686 memcpy (tmp, bs, sizeof (*tmp));
1688 /* This is the first thing in the chain. */
1698 /* Find the bpstat associated with this breakpoint */
1701 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
1706 for (; bsp != NULL; bsp = bsp->next)
1708 if (bsp->breakpoint_at == breakpoint)
1714 /* Find a step_resume breakpoint associated with this bpstat.
1715 (If there are multiple step_resume bp's on the list, this function
1716 will arbitrarily pick one.)
1718 It is an error to use this function if BPSTAT doesn't contain a
1719 step_resume breakpoint.
1721 See wait_for_inferior's use of this function. */
1723 bpstat_find_step_resume_breakpoint (bpstat bsp)
1728 error ("Internal error (bpstat_find_step_resume_breakpoint)");
1730 current_thread = pid_to_thread_id (inferior_ptid);
1732 for (; bsp != NULL; bsp = bsp->next)
1734 if ((bsp->breakpoint_at != NULL) &&
1735 (bsp->breakpoint_at->type == bp_step_resume) &&
1736 (bsp->breakpoint_at->thread == current_thread ||
1737 bsp->breakpoint_at->thread == -1))
1738 return bsp->breakpoint_at;
1741 error ("Internal error (no step_resume breakpoint found)");
1745 /* Return the breakpoint number of the first breakpoint we are stopped
1746 at. *BSP upon return is a bpstat which points to the remaining
1747 breakpoints stopped at (but which is not guaranteed to be good for
1748 anything but further calls to bpstat_num).
1749 Return 0 if passed a bpstat which does not indicate any breakpoints. */
1752 bpstat_num (bpstat *bsp)
1754 struct breakpoint *b;
1757 return 0; /* No more breakpoint values */
1760 b = (*bsp)->breakpoint_at;
1761 *bsp = (*bsp)->next;
1763 return -1; /* breakpoint that's been deleted since */
1765 return b->number; /* We have its number */
1769 /* Modify BS so that the actions will not be performed. */
1772 bpstat_clear_actions (bpstat bs)
1774 for (; bs != NULL; bs = bs->next)
1776 bs->commands = NULL;
1777 if (bs->old_val != NULL)
1779 value_free (bs->old_val);
1785 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1788 cleanup_executing_breakpoints (PTR ignore)
1790 executing_breakpoint_commands = 0;
1793 /* Execute all the commands associated with all the breakpoints at this
1794 location. Any of these commands could cause the process to proceed
1795 beyond this point, etc. We look out for such changes by checking
1796 the global "breakpoint_proceeded" after each command. */
1799 bpstat_do_actions (bpstat *bsp)
1802 struct cleanup *old_chain;
1803 struct command_line *cmd;
1805 /* Avoid endless recursion if a `source' command is contained
1807 if (executing_breakpoint_commands)
1810 executing_breakpoint_commands = 1;
1811 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
1814 /* Note that (as of this writing), our callers all appear to
1815 be passing us the address of global stop_bpstat. And, if
1816 our calls to execute_control_command cause the inferior to
1817 proceed, that global (and hence, *bsp) will change.
1819 We must be careful to not touch *bsp unless the inferior
1820 has not proceeded. */
1822 /* This pointer will iterate over the list of bpstat's. */
1825 breakpoint_proceeded = 0;
1826 for (; bs != NULL; bs = bs->next)
1831 execute_control_command (cmd);
1833 if (breakpoint_proceeded)
1838 if (breakpoint_proceeded)
1839 /* The inferior is proceeded by the command; bomb out now.
1840 The bpstat chain has been blown away by wait_for_inferior.
1841 But since execution has stopped again, there is a new bpstat
1842 to look at, so start over. */
1845 bs->commands = NULL;
1848 executing_breakpoint_commands = 0;
1849 discard_cleanups (old_chain);
1852 /* This is the normal print function for a bpstat. In the future,
1853 much of this logic could (should?) be moved to bpstat_stop_status,
1854 by having it set different print_it values.
1856 Current scheme: When we stop, bpstat_print() is called. It loops
1857 through the bpstat list of things causing this stop, calling the
1858 print_bp_stop_message function on each one. The behavior of the
1859 print_bp_stop_message function depends on the print_it field of
1860 bpstat. If such field so indicates, call this function here.
1862 Return values from this routine (ultimately used by bpstat_print()
1863 and normal_stop() to decide what to do):
1864 PRINT_NOTHING: Means we already printed all we needed to print,
1865 don't print anything else.
1866 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
1867 that something to be followed by a location.
1868 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
1869 that something to be followed by a location.
1870 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
1873 static enum print_stop_action
1874 print_it_typical (bpstat bs)
1877 struct cleanup *old_chain;
1878 struct ui_stream *stb;
1879 stb = ui_out_stream_new (uiout);
1880 old_chain = make_cleanup_ui_out_stream_delete (stb);
1882 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
1883 which has since been deleted. */
1884 if (bs->breakpoint_at == NULL)
1885 return PRINT_UNKNOWN;
1887 switch (bs->breakpoint_at->type)
1890 case bp_hardware_breakpoint:
1892 annotate_breakpoint (bs->breakpoint_at->number);
1893 ui_out_text (uiout, "\nBreakpoint ");
1894 if (ui_out_is_mi_like_p (uiout))
1895 ui_out_field_string (uiout, "reason", "breakpoint-hit");
1896 ui_out_field_int (uiout, "bkptno", bs->breakpoint_at->number);
1897 ui_out_text (uiout, ", ");
1898 return PRINT_SRC_AND_LOC;
1900 /* I think the user probably only wants to see one breakpoint
1901 number, not all of them. */
1902 annotate_breakpoint (bs->breakpoint_at->number);
1903 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
1904 return PRINT_SRC_AND_LOC;
1908 case bp_shlib_event:
1909 /* Did we stop because the user set the stop_on_solib_events
1910 variable? (If so, we report this as a generic, "Stopped due
1911 to shlib event" message.) */
1912 printf_filtered ("Stopped due to shared library event\n");
1913 return PRINT_NOTHING;
1916 case bp_thread_event:
1917 /* Not sure how we will get here.
1918 GDB should not stop for these breakpoints. */
1919 printf_filtered ("Thread Event Breakpoint: gdb should not stop!\n");
1920 return PRINT_NOTHING;
1924 annotate_catchpoint (bs->breakpoint_at->number);
1925 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1926 printf_filtered ("loaded");
1927 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1928 return PRINT_SRC_AND_LOC;
1931 case bp_catch_unload:
1932 annotate_catchpoint (bs->breakpoint_at->number);
1933 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1934 printf_filtered ("unloaded");
1935 printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1936 return PRINT_SRC_AND_LOC;
1940 annotate_catchpoint (bs->breakpoint_at->number);
1941 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1942 printf_filtered ("forked");
1943 printf_filtered (" process %d), ",
1944 bs->breakpoint_at->forked_inferior_pid);
1945 return PRINT_SRC_AND_LOC;
1948 case bp_catch_vfork:
1949 annotate_catchpoint (bs->breakpoint_at->number);
1950 printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1951 printf_filtered ("vforked");
1952 printf_filtered (" process %d), ",
1953 bs->breakpoint_at->forked_inferior_pid);
1954 return PRINT_SRC_AND_LOC;
1958 annotate_catchpoint (bs->breakpoint_at->number);
1959 printf_filtered ("\nCatchpoint %d (exec'd %s), ",
1960 bs->breakpoint_at->number,
1961 bs->breakpoint_at->exec_pathname);
1962 return PRINT_SRC_AND_LOC;
1965 case bp_catch_catch:
1966 if (current_exception_event &&
1967 (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
1969 annotate_catchpoint (bs->breakpoint_at->number);
1970 printf_filtered ("\nCatchpoint %d (exception caught), ",
1971 bs->breakpoint_at->number);
1972 printf_filtered ("throw location ");
1973 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
1974 printf_filtered ("%s:%d",
1975 CURRENT_EXCEPTION_THROW_FILE,
1976 CURRENT_EXCEPTION_THROW_LINE);
1978 printf_filtered ("unknown");
1980 printf_filtered (", catch location ");
1981 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
1982 printf_filtered ("%s:%d",
1983 CURRENT_EXCEPTION_CATCH_FILE,
1984 CURRENT_EXCEPTION_CATCH_LINE);
1986 printf_filtered ("unknown");
1988 printf_filtered ("\n");
1989 /* don't bother to print location frame info */
1990 return PRINT_SRC_ONLY;
1994 /* really throw, some other bpstat will handle it */
1995 return PRINT_UNKNOWN;
1999 case bp_catch_throw:
2000 if (current_exception_event &&
2001 (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2003 annotate_catchpoint (bs->breakpoint_at->number);
2004 printf_filtered ("\nCatchpoint %d (exception thrown), ",
2005 bs->breakpoint_at->number);
2006 printf_filtered ("throw location ");
2007 if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2008 printf_filtered ("%s:%d",
2009 CURRENT_EXCEPTION_THROW_FILE,
2010 CURRENT_EXCEPTION_THROW_LINE);
2012 printf_filtered ("unknown");
2014 printf_filtered (", catch location ");
2015 if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2016 printf_filtered ("%s:%d",
2017 CURRENT_EXCEPTION_CATCH_FILE,
2018 CURRENT_EXCEPTION_CATCH_LINE);
2020 printf_filtered ("unknown");
2022 printf_filtered ("\n");
2023 /* don't bother to print location frame info */
2024 return PRINT_SRC_ONLY;
2028 /* really catch, some other bpstat will handle it */
2029 return PRINT_UNKNOWN;
2034 case bp_hardware_watchpoint:
2035 if (bs->old_val != NULL)
2037 annotate_watchpoint (bs->breakpoint_at->number);
2039 if (ui_out_is_mi_like_p (uiout))
2040 ui_out_field_string (uiout, "reason", "watchpoint-trigger");
2041 mention (bs->breakpoint_at);
2042 ui_out_tuple_begin (uiout, "value");
2043 ui_out_text (uiout, "\nOld value = ");
2044 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2045 ui_out_field_stream (uiout, "old", stb);
2046 ui_out_text (uiout, "\nNew value = ");
2047 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2048 ui_out_field_stream (uiout, "new", stb);
2049 ui_out_tuple_end (uiout);
2050 ui_out_text (uiout, "\n");
2052 mention (bs->breakpoint_at);
2053 printf_filtered ("\nOld value = ");
2054 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2055 printf_filtered ("\nNew value = ");
2056 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2057 Val_pretty_default);
2058 printf_filtered ("\n");
2060 value_free (bs->old_val);
2063 /* More than one watchpoint may have been triggered. */
2064 return PRINT_UNKNOWN;
2067 case bp_read_watchpoint:
2069 if (ui_out_is_mi_like_p (uiout))
2070 ui_out_field_string (uiout, "reason", "read-watchpoint-trigger");
2071 mention (bs->breakpoint_at);
2072 ui_out_tuple_begin (uiout, "value");
2073 ui_out_text (uiout, "\nValue = ");
2074 value_print (bs->breakpoint_at->val, stb->stream, 0, Val_pretty_default);
2075 ui_out_field_stream (uiout, "value", stb);
2076 ui_out_tuple_end (uiout);
2077 ui_out_text (uiout, "\n");
2079 mention (bs->breakpoint_at);
2080 printf_filtered ("\nValue = ");
2081 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2082 Val_pretty_default);
2083 printf_filtered ("\n");
2085 return PRINT_UNKNOWN;
2088 case bp_access_watchpoint:
2090 if (bs->old_val != NULL)
2092 annotate_watchpoint (bs->breakpoint_at->number);
2093 if (ui_out_is_mi_like_p (uiout))
2094 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2095 mention (bs->breakpoint_at);
2096 ui_out_tuple_begin (uiout, "value");
2097 ui_out_text (uiout, "\nOld value = ");
2098 value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
2099 ui_out_field_stream (uiout, "old", stb);
2100 value_free (bs->old_val);
2102 ui_out_text (uiout, "\nNew value = ");
2106 mention (bs->breakpoint_at);
2107 if (ui_out_is_mi_like_p (uiout))
2108 ui_out_field_string (uiout, "reason", "access-watchpoint-trigger");
2109 ui_out_tuple_begin (uiout, "value");
2110 ui_out_text (uiout, "\nValue = ");
2112 value_print (bs->breakpoint_at->val, stb->stream, 0,Val_pretty_default);
2113 ui_out_field_stream (uiout, "new", stb);
2114 ui_out_tuple_end (uiout);
2115 ui_out_text (uiout, "\n");
2117 if (bs->old_val != NULL)
2119 annotate_watchpoint (bs->breakpoint_at->number);
2120 mention (bs->breakpoint_at);
2121 printf_filtered ("\nOld value = ");
2122 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2123 value_free (bs->old_val);
2125 printf_filtered ("\nNew value = ");
2129 mention (bs->breakpoint_at);
2130 printf_filtered ("\nValue = ");
2132 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2133 Val_pretty_default);
2134 printf_filtered ("\n");
2136 return PRINT_UNKNOWN;
2139 /* Fall through, we don't deal with these types of breakpoints
2144 if (ui_out_is_mi_like_p (uiout))
2145 ui_out_field_string (uiout, "reason", "function-finished");
2147 return PRINT_UNKNOWN;
2152 if (ui_out_is_mi_like_p (uiout))
2153 ui_out_field_string (uiout, "reason", "location-reached");
2155 return PRINT_UNKNOWN;
2160 case bp_longjmp_resume:
2161 case bp_step_resume:
2162 case bp_through_sigtramp:
2163 case bp_watchpoint_scope:
2166 return PRINT_UNKNOWN;
2170 /* Generic routine for printing messages indicating why we
2171 stopped. The behavior of this function depends on the value
2172 'print_it' in the bpstat structure. Under some circumstances we
2173 may decide not to print anything here and delegate the task to
2176 static enum print_stop_action
2177 print_bp_stop_message (bpstat bs)
2179 switch (bs->print_it)
2182 /* Nothing should be printed for this bpstat entry. */
2183 return PRINT_UNKNOWN;
2187 /* We still want to print the frame, but we already printed the
2188 relevant messages. */
2189 return PRINT_SRC_AND_LOC;
2192 case print_it_normal:
2193 /* Normal case, we handle everything in print_it_typical. */
2194 return print_it_typical (bs);
2197 internal_error (__FILE__, __LINE__,
2198 "print_bp_stop_message: unrecognized enum value");
2203 /* Print a message indicating what happened. This is called from
2204 normal_stop(). The input to this routine is the head of the bpstat
2205 list - a list of the eventpoints that caused this stop. This
2206 routine calls the generic print routine for printing a message
2207 about reasons for stopping. This will print (for example) the
2208 "Breakpoint n," part of the output. The return value of this
2211 PRINT_UNKNOWN: Means we printed nothing
2212 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2213 code to print the location. An example is
2214 "Breakpoint 1, " which should be followed by
2216 PRINT_SRC_ONLY: Means we printed something, but there is no need
2217 to also print the location part of the message.
2218 An example is the catch/throw messages, which
2219 don't require a location appended to the end.
2220 PRINT_NOTHING: We have done some printing and we don't need any
2221 further info to be printed.*/
2223 enum print_stop_action
2224 bpstat_print (bpstat bs)
2228 /* Maybe another breakpoint in the chain caused us to stop.
2229 (Currently all watchpoints go on the bpstat whether hit or not.
2230 That probably could (should) be changed, provided care is taken
2231 with respect to bpstat_explains_signal). */
2232 for (; bs; bs = bs->next)
2234 val = print_bp_stop_message (bs);
2235 if (val == PRINT_SRC_ONLY
2236 || val == PRINT_SRC_AND_LOC
2237 || val == PRINT_NOTHING)
2241 /* We reached the end of the chain, or we got a null BS to start
2242 with and nothing was printed. */
2243 return PRINT_UNKNOWN;
2246 /* Evaluate the expression EXP and return 1 if value is zero.
2247 This is used inside a catch_errors to evaluate the breakpoint condition.
2248 The argument is a "struct expression *" that has been cast to char * to
2249 make it pass through catch_errors. */
2252 breakpoint_cond_eval (PTR exp)
2254 struct value *mark = value_mark ();
2255 int i = !value_true (evaluate_expression ((struct expression *) exp));
2256 value_free_to_mark (mark);
2260 /* Allocate a new bpstat and chain it to the current one. */
2263 bpstat_alloc (struct breakpoint *b, bpstat cbs /* Current "bs" value */ )
2267 bs = (bpstat) xmalloc (sizeof (*bs));
2269 bs->breakpoint_at = b;
2270 /* If the condition is false, etc., don't do the commands. */
2271 bs->commands = NULL;
2273 bs->print_it = print_it_normal;
2277 /* Possible return values for watchpoint_check (this can't be an enum
2278 because of check_errors). */
2279 /* The watchpoint has been deleted. */
2280 #define WP_DELETED 1
2281 /* The value has changed. */
2282 #define WP_VALUE_CHANGED 2
2283 /* The value has not changed. */
2284 #define WP_VALUE_NOT_CHANGED 3
2286 #define BP_TEMPFLAG 1
2287 #define BP_HARDWAREFLAG 2
2289 /* Check watchpoint condition. */
2292 watchpoint_check (PTR p)
2294 bpstat bs = (bpstat) p;
2295 struct breakpoint *b;
2296 struct frame_info *fr;
2297 int within_current_scope;
2299 b = bs->breakpoint_at;
2301 if (b->exp_valid_block == NULL)
2302 within_current_scope = 1;
2305 /* There is no current frame at this moment. If we're going to have
2306 any chance of handling watchpoints on local variables, we'll need
2307 the frame chain (so we can determine if we're in scope). */
2308 reinit_frame_cache ();
2309 fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
2310 within_current_scope = (fr != NULL);
2311 /* in_function_epilogue_p() returns a non-zero value if we're still
2312 in the function but the stack frame has already been invalidated.
2313 Since we can't rely on the values of local variables after the
2314 stack has been destroyed, we are treating the watchpoint in that
2315 state as `not changed' without further checking. */
2316 if (within_current_scope && fr == get_current_frame ()
2317 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2318 return WP_VALUE_NOT_CHANGED;
2319 if (within_current_scope)
2320 /* If we end up stopping, the current frame will get selected
2321 in normal_stop. So this call to select_frame won't affect
2323 select_frame (fr, -1);
2326 if (within_current_scope)
2328 /* We use value_{,free_to_}mark because it could be a
2329 *long* time before we return to the command level and
2330 call free_all_values. We can't call free_all_values because
2331 we might be in the middle of evaluating a function call. */
2333 struct value *mark = value_mark ();
2334 struct value *new_val = evaluate_expression (bs->breakpoint_at->exp);
2335 if (!value_equal (b->val, new_val))
2337 release_value (new_val);
2338 value_free_to_mark (mark);
2339 bs->old_val = b->val;
2341 /* We will stop here */
2342 return WP_VALUE_CHANGED;
2346 /* Nothing changed, don't do anything. */
2347 value_free_to_mark (mark);
2348 /* We won't stop here */
2349 return WP_VALUE_NOT_CHANGED;
2354 /* This seems like the only logical thing to do because
2355 if we temporarily ignored the watchpoint, then when
2356 we reenter the block in which it is valid it contains
2357 garbage (in the case of a function, it may have two
2358 garbage values, one before and one after the prologue).
2359 So we can't even detect the first assignment to it and
2360 watch after that (since the garbage may or may not equal
2361 the first value assigned). */
2362 /* We print all the stop information in print_it_typical(), but
2363 in this case, by the time we call print_it_typical() this bp
2364 will be deleted already. So we have no choice but print the
2365 information here. */
2367 if (ui_out_is_mi_like_p (uiout))
2368 ui_out_field_string (uiout, "reason", "watchpoint-scope");
2369 ui_out_text (uiout, "\nWatchpoint ");
2370 ui_out_field_int (uiout, "wpnum", bs->breakpoint_at->number);
2371 ui_out_text (uiout, " deleted because the program has left the block in\n\
2372 which its expression is valid.\n");
2375 Watchpoint %d deleted because the program has left the block in\n\
2376 which its expression is valid.\n", bs->breakpoint_at->number);
2379 if (b->related_breakpoint)
2380 b->related_breakpoint->disposition = disp_del_at_next_stop;
2381 b->disposition = disp_del_at_next_stop;
2387 /* Get a bpstat associated with having just stopped at address *PC
2388 and frame address CORE_ADDRESS. Update *PC to point at the
2389 breakpoint (if we hit a breakpoint). NOT_A_BREAKPOINT is nonzero
2390 if this is known to not be a real breakpoint (it could still be a
2391 watchpoint, though). */
2393 /* Determine whether we stopped at a breakpoint, etc, or whether we
2394 don't understand this stop. Result is a chain of bpstat's such that:
2396 if we don't understand the stop, the result is a null pointer.
2398 if we understand why we stopped, the result is not null.
2400 Each element of the chain refers to a particular breakpoint or
2401 watchpoint at which we have stopped. (We may have stopped for
2402 several reasons concurrently.)
2404 Each element of the chain has valid next, breakpoint_at,
2405 commands, FIXME??? fields. */
2408 bpstat_stop_status (CORE_ADDR *pc, int not_a_breakpoint)
2410 register struct breakpoint *b, *temp;
2412 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
2413 int real_breakpoint = 0;
2414 /* Root of the chain of bpstat's */
2415 struct bpstats root_bs[1];
2416 /* Pointer to the last thing in the chain currently. */
2417 bpstat bs = root_bs;
2418 static char message1[] =
2419 "Error evaluating expression for watchpoint %d\n";
2420 char message[sizeof (message1) + 30 /* slop */ ];
2422 /* Get the address where the breakpoint would have been.
2423 The "not_a_breakpoint" argument is meant to distinguish
2424 between a breakpoint trap event and a trace/singlestep
2425 trap event. For a trace/singlestep trap event, we would
2426 not want to subtract DECR_PC_AFTER_BREAK from the PC. */
2428 bp_addr = *pc - (not_a_breakpoint && !SOFTWARE_SINGLE_STEP_P () ?
2429 0 : DECR_PC_AFTER_BREAK);
2431 ALL_BREAKPOINTS_SAFE (b, temp)
2433 if (b->enable_state == bp_disabled
2434 || b->enable_state == bp_shlib_disabled
2435 || b->enable_state == bp_call_disabled)
2438 if (b->type != bp_watchpoint
2439 && b->type != bp_hardware_watchpoint
2440 && b->type != bp_read_watchpoint
2441 && b->type != bp_access_watchpoint
2442 && b->type != bp_hardware_breakpoint
2443 && b->type != bp_catch_fork
2444 && b->type != bp_catch_vfork
2445 && b->type != bp_catch_exec
2446 && b->type != bp_catch_catch
2447 && b->type != bp_catch_throw) /* a non-watchpoint bp */
2448 if (b->address != bp_addr || /* address doesn't match or */
2449 (overlay_debugging && /* overlay doesn't match */
2450 section_is_overlay (b->section) &&
2451 !section_is_mapped (b->section)))
2454 if (b->type == bp_hardware_breakpoint
2455 && b->address != (*pc - DECR_PC_AFTER_HW_BREAK))
2458 /* Is this a catchpoint of a load or unload? If so, did we
2459 get a load or unload of the specified library? If not,
2461 if ((b->type == bp_catch_load)
2462 #if defined(SOLIB_HAVE_LOAD_EVENT)
2463 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2464 || ((b->dll_pathname != NULL)
2465 && (strcmp (b->dll_pathname,
2466 SOLIB_LOADED_LIBRARY_PATHNAME (
2467 PIDGET (inferior_ptid)))
2473 if ((b->type == bp_catch_unload)
2474 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2475 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2476 || ((b->dll_pathname != NULL)
2477 && (strcmp (b->dll_pathname,
2478 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2479 PIDGET (inferior_ptid)))
2485 if ((b->type == bp_catch_fork)
2486 && !target_has_forked (PIDGET (inferior_ptid),
2487 &b->forked_inferior_pid))
2490 if ((b->type == bp_catch_vfork)
2491 && !target_has_vforked (PIDGET (inferior_ptid),
2492 &b->forked_inferior_pid))
2495 if ((b->type == bp_catch_exec)
2496 && !target_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
2499 if (ep_is_exception_catchpoint (b) &&
2500 !(current_exception_event = target_get_current_exception_event ()))
2503 /* Come here if it's a watchpoint, or if the break address matches */
2505 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
2507 /* Watchpoints may change this, if not found to have triggered. */
2511 sprintf (message, message1, b->number);
2512 if (b->type == bp_watchpoint ||
2513 b->type == bp_hardware_watchpoint)
2515 switch (catch_errors (watchpoint_check, bs, message,
2519 /* We've already printed what needs to be printed. */
2520 /* Actually this is superfluous, because by the time we
2521 call print_it_typical() the wp will be already deleted,
2522 and the function will return immediately. */
2523 bs->print_it = print_it_done;
2526 case WP_VALUE_CHANGED:
2530 case WP_VALUE_NOT_CHANGED:
2532 bs->print_it = print_it_noop;
2539 /* Error from catch_errors. */
2540 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2541 if (b->related_breakpoint)
2542 b->related_breakpoint->disposition = disp_del_at_next_stop;
2543 b->disposition = disp_del_at_next_stop;
2544 /* We've already printed what needs to be printed. */
2545 bs->print_it = print_it_done;
2551 else if (b->type == bp_read_watchpoint ||
2552 b->type == bp_access_watchpoint)
2558 addr = target_stopped_data_address ();
2561 for (v = b->val_chain; v; v = v->next)
2563 if (VALUE_LVAL (v) == lval_memory
2564 && ! VALUE_LAZY (v))
2566 struct type *vtype = check_typedef (VALUE_TYPE (v));
2568 if (v == b->val_chain
2569 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2570 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2574 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2575 /* Exact match not required. Within range is
2577 if (addr >= vaddr &&
2578 addr < vaddr + TYPE_LENGTH (VALUE_TYPE (v)))
2584 switch (catch_errors (watchpoint_check, bs, message,
2588 /* We've already printed what needs to be printed. */
2589 bs->print_it = print_it_done;
2592 case WP_VALUE_CHANGED:
2593 if (b->type == bp_read_watchpoint)
2595 /* Don't stop: read watchpoints shouldn't fire if
2596 the value has changed. This is for targets which
2597 cannot set read-only watchpoints. */
2598 bs->print_it = print_it_noop;
2604 case WP_VALUE_NOT_CHANGED:
2611 /* Error from catch_errors. */
2612 printf_filtered ("Watchpoint %d deleted.\n", b->number);
2613 if (b->related_breakpoint)
2614 b->related_breakpoint->disposition = disp_del_at_next_stop;
2615 b->disposition = disp_del_at_next_stop;
2616 /* We've already printed what needs to be printed. */
2617 bs->print_it = print_it_done;
2620 else /* found == 0 */
2622 /* This is a case where some watchpoint(s) triggered,
2623 but not at the address of this watchpoint (FOUND
2624 was left zero). So don't print anything for this
2626 bs->print_it = print_it_noop;
2633 /* By definition, an encountered breakpoint is a triggered
2637 real_breakpoint = 1;
2641 b->frame != (get_current_frame ())->frame)
2645 int value_is_zero = 0;
2649 /* Need to select the frame, with all that implies
2650 so that the conditions will have the right context. */
2651 select_frame (get_current_frame (), 0);
2653 = catch_errors (breakpoint_cond_eval, (b->cond),
2654 "Error in testing breakpoint condition:\n",
2656 /* FIXME-someday, should give breakpoint # */
2659 if (b->cond && value_is_zero)
2662 /* Don't consider this a hit. */
2665 else if (b->ignore_count > 0)
2668 annotate_ignore_count_change ();
2673 /* We will stop here */
2674 if (b->disposition == disp_disable)
2675 b->enable_state = bp_disabled;
2676 bs->commands = b->commands;
2680 (STREQ ("silent", bs->commands->line) ||
2681 (xdb_commands && STREQ ("Q", bs->commands->line))))
2683 bs->commands = bs->commands->next;
2688 /* Print nothing for this entry if we dont stop or if we dont print. */
2689 if (bs->stop == 0 || bs->print == 0)
2690 bs->print_it = print_it_noop;
2693 bs->next = NULL; /* Terminate the chain */
2694 bs = root_bs->next; /* Re-grab the head of the chain */
2696 if (real_breakpoint && bs)
2698 if (bs->breakpoint_at->type == bp_hardware_breakpoint)
2700 if (DECR_PC_AFTER_HW_BREAK != 0)
2702 *pc = *pc - DECR_PC_AFTER_HW_BREAK;
2708 if (DECR_PC_AFTER_BREAK != 0 || must_shift_inst_regs)
2711 #if defined (SHIFT_INST_REGS)
2713 #else /* No SHIFT_INST_REGS. */
2715 #endif /* No SHIFT_INST_REGS. */
2720 /* The value of a hardware watchpoint hasn't changed, but the
2721 intermediate memory locations we are watching may have. */
2722 if (bs && !bs->stop &&
2723 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2724 bs->breakpoint_at->type == bp_read_watchpoint ||
2725 bs->breakpoint_at->type == bp_access_watchpoint))
2727 remove_breakpoints ();
2728 insert_breakpoints ();
2733 /* Tell what to do about this bpstat. */
2735 bpstat_what (bpstat bs)
2737 /* Classify each bpstat as one of the following. */
2740 /* This bpstat element has no effect on the main_action. */
2743 /* There was a watchpoint, stop but don't print. */
2746 /* There was a watchpoint, stop and print. */
2749 /* There was a breakpoint but we're not stopping. */
2752 /* There was a breakpoint, stop but don't print. */
2755 /* There was a breakpoint, stop and print. */
2758 /* We hit the longjmp breakpoint. */
2761 /* We hit the longjmp_resume breakpoint. */
2764 /* We hit the step_resume breakpoint. */
2767 /* We hit the through_sigtramp breakpoint. */
2770 /* We hit the shared library event breakpoint. */
2773 /* We caught a shared library event. */
2776 /* This is just used to count how many enums there are. */
2780 /* Here is the table which drives this routine. So that we can
2781 format it pretty, we define some abbreviations for the
2782 enum bpstat_what codes. */
2783 #define kc BPSTAT_WHAT_KEEP_CHECKING
2784 #define ss BPSTAT_WHAT_STOP_SILENT
2785 #define sn BPSTAT_WHAT_STOP_NOISY
2786 #define sgl BPSTAT_WHAT_SINGLE
2787 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2788 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2789 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2790 #define sr BPSTAT_WHAT_STEP_RESUME
2791 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2792 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2793 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2795 /* "Can't happen." Might want to print an error message.
2796 abort() is not out of the question, but chances are GDB is just
2797 a bit confused, not unusable. */
2798 #define err BPSTAT_WHAT_STOP_NOISY
2800 /* Given an old action and a class, come up with a new action. */
2801 /* One interesting property of this table is that wp_silent is the same
2802 as bp_silent and wp_noisy is the same as bp_noisy. That is because
2803 after stopping, the check for whether to step over a breakpoint
2804 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2805 reference to how we stopped. We retain separate wp_silent and
2806 bp_silent codes in case we want to change that someday.
2808 Another possibly interesting property of this table is that
2809 there's a partial ordering, priority-like, of the actions. Once
2810 you've decided that some action is appropriate, you'll never go
2811 back and decide something of a lower priority is better. The
2814 kc < clr sgl shl shlr slr sn sr ss ts
2815 sgl < clrs shl shlr slr sn sr ss ts
2816 slr < err shl shlr sn sr ss ts
2817 clr < clrs err shl shlr sn sr ss ts
2818 clrs < err shl shlr sn sr ss ts
2819 ss < shl shlr sn sr ts
2826 What I think this means is that we don't need a damned table
2827 here. If you just put the rows and columns in the right order,
2828 it'd look awfully regular. We could simply walk the bpstat list
2829 and choose the highest priority action we find, with a little
2830 logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
2831 CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
2832 is messy anyway). */
2834 /* step_resume entries: a step resume breakpoint overrides another
2835 breakpoint of signal handling (see comment in wait_for_inferior
2836 at first IN_SIGTRAMP where we set the step_resume breakpoint). */
2837 /* We handle the through_sigtramp_breakpoint the same way; having both
2838 one of those and a step_resume_breakpoint is probably very rare (?). */
2840 static const enum bpstat_what_main_action
2841 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
2844 /* kc ss sn sgl slr clr clrs sr ts shl shlr
2847 {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
2849 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2851 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2853 {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
2855 {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2857 {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2859 {slr, ss, sn, slr, slr, err, err, sr, ts, shl, shlr},
2861 {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
2863 {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
2865 {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
2867 {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
2869 {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
2884 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
2885 struct bpstat_what retval;
2887 retval.call_dummy = 0;
2888 for (; bs != NULL; bs = bs->next)
2890 enum class bs_class = no_effect;
2891 if (bs->breakpoint_at == NULL)
2892 /* I suspect this can happen if it was a momentary breakpoint
2893 which has since been deleted. */
2895 switch (bs->breakpoint_at->type)
2901 case bp_hardware_breakpoint:
2907 bs_class = bp_noisy;
2909 bs_class = bp_silent;
2912 bs_class = bp_nostop;
2915 case bp_hardware_watchpoint:
2916 case bp_read_watchpoint:
2917 case bp_access_watchpoint:
2921 bs_class = wp_noisy;
2923 bs_class = wp_silent;
2926 /* There was a watchpoint, but we're not stopping.
2927 This requires no further action. */
2928 bs_class = no_effect;
2931 bs_class = long_jump;
2933 case bp_longjmp_resume:
2934 bs_class = long_resume;
2936 case bp_step_resume:
2939 bs_class = step_resume;
2942 /* It is for the wrong frame. */
2943 bs_class = bp_nostop;
2945 case bp_through_sigtramp:
2946 bs_class = through_sig;
2948 case bp_watchpoint_scope:
2949 bs_class = bp_nostop;
2951 case bp_shlib_event:
2952 bs_class = shlib_event;
2954 case bp_thread_event:
2955 bs_class = bp_nostop;
2958 case bp_catch_unload:
2959 /* Only if this catchpoint triggered should we cause the
2960 step-out-of-dld behaviour. Otherwise, we ignore this
2963 bs_class = catch_shlib_event;
2965 bs_class = no_effect;
2968 case bp_catch_vfork:
2973 bs_class = bp_noisy;
2975 bs_class = bp_silent;
2978 /* There was a catchpoint, but we're not stopping.
2979 This requires no further action. */
2980 bs_class = no_effect;
2982 case bp_catch_catch:
2983 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
2984 bs_class = bp_nostop;
2986 bs_class = bs->print ? bp_noisy : bp_silent;
2988 case bp_catch_throw:
2989 if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
2990 bs_class = bp_nostop;
2992 bs_class = bs->print ? bp_noisy : bp_silent;
2995 /* Make sure the action is stop (silent or noisy),
2996 so infrun.c pops the dummy frame. */
2997 bs_class = bp_silent;
2998 retval.call_dummy = 1;
3001 current_action = table[(int) bs_class][(int) current_action];
3003 retval.main_action = current_action;
3007 /* Nonzero if we should step constantly (e.g. watchpoints on machines
3008 without hardware support). This isn't related to a specific bpstat,
3009 just to things like whether watchpoints are set. */
3012 bpstat_should_step (void)
3014 struct breakpoint *b;
3016 if (b->enable_state == bp_enabled && b->type == bp_watchpoint)
3021 /* Nonzero if there are enabled hardware watchpoints. */
3023 bpstat_have_active_hw_watchpoints (void)
3025 struct breakpoint *b;
3027 if ((b->enable_state == bp_enabled) &&
3029 ((b->type == bp_hardware_watchpoint) ||
3030 (b->type == bp_read_watchpoint) ||
3031 (b->type == bp_access_watchpoint)))
3037 /* Given a bpstat that records zero or more triggered eventpoints, this
3038 function returns another bpstat which contains only the catchpoints
3039 on that first list, if any. */
3041 bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
3043 struct bpstats root_bs[1];
3044 bpstat bs = root_bs;
3045 struct breakpoint *ep;
3048 bpstat_clear (cp_list);
3049 root_bs->next = NULL;
3051 for (; ep_list != NULL; ep_list = ep_list->next)
3053 /* Is this eventpoint a catchpoint? If not, ignore it. */
3054 ep = ep_list->breakpoint_at;
3057 if ((ep->type != bp_catch_load) &&
3058 (ep->type != bp_catch_unload) &&
3059 (ep->type != bp_catch_catch) &&
3060 (ep->type != bp_catch_throw))
3061 /* pai: (temp) ADD fork/vfork here!! */
3064 /* Yes; add it to the list. */
3065 bs = bpstat_alloc (ep, bs);
3070 #if defined(SOLIB_ADD)
3071 /* Also, for each triggered catchpoint, tag it with the name of
3072 the library that caused this trigger. (We copy the name now,
3073 because it's only guaranteed to be available NOW, when the
3074 catchpoint triggers. Clients who may wish to know the name
3075 later must get it from the catchpoint itself.) */
3076 if (ep->triggered_dll_pathname != NULL)
3077 xfree (ep->triggered_dll_pathname);
3078 if (ep->type == bp_catch_load)
3079 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3080 PIDGET (inferior_ptid));
3082 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3083 PIDGET (inferior_ptid));
3085 dll_pathname = NULL;
3089 ep->triggered_dll_pathname = (char *)
3090 xmalloc (strlen (dll_pathname) + 1);
3091 strcpy (ep->triggered_dll_pathname, dll_pathname);
3094 ep->triggered_dll_pathname = NULL;
3100 /* Print B to gdb_stdout. */
3102 print_one_breakpoint (struct breakpoint *b,
3103 CORE_ADDR *last_addr)
3105 register struct command_line *l;
3106 register struct symbol *sym;
3107 struct ep_type_description
3112 static struct ep_type_description bptypes[] =
3114 {bp_none, "?deleted?"},
3115 {bp_breakpoint, "breakpoint"},
3116 {bp_hardware_breakpoint, "hw breakpoint"},
3117 {bp_until, "until"},
3118 {bp_finish, "finish"},
3119 {bp_watchpoint, "watchpoint"},
3120 {bp_hardware_watchpoint, "hw watchpoint"},
3121 {bp_read_watchpoint, "read watchpoint"},
3122 {bp_access_watchpoint, "acc watchpoint"},
3123 {bp_longjmp, "longjmp"},
3124 {bp_longjmp_resume, "longjmp resume"},
3125 {bp_step_resume, "step resume"},
3126 {bp_through_sigtramp, "sigtramp"},
3127 {bp_watchpoint_scope, "watchpoint scope"},
3128 {bp_call_dummy, "call dummy"},
3129 {bp_shlib_event, "shlib events"},
3130 {bp_thread_event, "thread events"},
3131 {bp_catch_load, "catch load"},
3132 {bp_catch_unload, "catch unload"},
3133 {bp_catch_fork, "catch fork"},
3134 {bp_catch_vfork, "catch vfork"},
3135 {bp_catch_exec, "catch exec"},
3136 {bp_catch_catch, "catch catch"},
3137 {bp_catch_throw, "catch throw"}
3140 static char *bpdisps[] =
3141 {"del", "dstp", "dis", "keep"};
3142 static char bpenables[] = "nynny";
3143 char wrap_indent[80];
3145 struct ui_stream *stb = ui_out_stream_new (uiout);
3146 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3151 ui_out_tuple_begin (uiout, "bkpt");
3157 ui_out_field_int (uiout, "number", b->number);
3159 printf_filtered ("%-3d ", b->number);
3164 if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3165 || ((int) b->type != bptypes[(int) b->type].type))
3166 internal_error (__FILE__, __LINE__,
3167 "bptypes table does not describe type #%d.",
3170 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3172 printf_filtered ("%-14s ", bptypes[(int) b->type].description);
3178 ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
3180 printf_filtered ("%-4s ", bpdisps[(int) b->disposition]);
3186 ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int) b->enable_state]);
3187 ui_out_spaces (uiout, 2);
3189 printf_filtered ("%-3c ", bpenables[(int) b->enable_state]);
3193 strcpy (wrap_indent, " ");
3196 if (TARGET_ADDR_BIT <= 32)
3197 strcat (wrap_indent, " ");
3199 strcat (wrap_indent, " ");
3204 internal_error (__FILE__, __LINE__,
3205 "print_one_breakpoint: bp_none encountered\n");
3209 case bp_hardware_watchpoint:
3210 case bp_read_watchpoint:
3211 case bp_access_watchpoint:
3212 /* Field 4, the address, is omitted (which makes the columns
3213 not line up too nicely with the headers, but the effect
3214 is relatively readable). */
3217 ui_out_field_skip (uiout, "addr");
3219 print_expression (b->exp, stb->stream);
3220 ui_out_field_stream (uiout, "what", stb);
3223 print_expression (b->exp, gdb_stdout);
3228 case bp_catch_unload:
3229 /* Field 4, the address, is omitted (which makes the columns
3230 not line up too nicely with the headers, but the effect
3231 is relatively readable). */
3234 ui_out_field_skip (uiout, "addr");
3236 if (b->dll_pathname == NULL)
3238 ui_out_field_string (uiout, "what", "<any library>");
3239 ui_out_spaces (uiout, 1);
3243 ui_out_text (uiout, "library \"");
3244 ui_out_field_string (uiout, "what", b->dll_pathname);
3245 ui_out_text (uiout, "\" ");
3249 if (b->dll_pathname == NULL)
3250 printf_filtered ("<any library> ");
3252 printf_filtered ("library \"%s\" ", b->dll_pathname);
3257 case bp_catch_vfork:
3258 /* Field 4, the address, is omitted (which makes the columns
3259 not line up too nicely with the headers, but the effect
3260 is relatively readable). */
3263 ui_out_field_skip (uiout, "addr");
3265 if (b->forked_inferior_pid != 0)
3267 ui_out_text (uiout, "process ");
3268 ui_out_field_int (uiout, "what", b->forked_inferior_pid);
3269 ui_out_spaces (uiout, 1);
3273 if (b->forked_inferior_pid != 0)
3274 printf_filtered ("process %d ", b->forked_inferior_pid);
3279 /* Field 4, the address, is omitted (which makes the columns
3280 not line up too nicely with the headers, but the effect
3281 is relatively readable). */
3284 ui_out_field_skip (uiout, "addr");
3286 if (b->exec_pathname != NULL)
3288 ui_out_text (uiout, "program \"");
3289 ui_out_field_string (uiout, "what", b->exec_pathname);
3290 ui_out_text (uiout, "\" ");
3294 if (b->exec_pathname != NULL)
3295 printf_filtered ("program \"%s\" ", b->exec_pathname);
3299 case bp_catch_catch:
3300 /* Field 4, the address, is omitted (which makes the columns
3301 not line up too nicely with the headers, but the effect
3302 is relatively readable). */
3305 ui_out_field_skip (uiout, "addr");
3307 ui_out_field_string (uiout, "what", "exception catch");
3308 ui_out_spaces (uiout, 1);
3311 printf_filtered ("exception catch ");
3315 case bp_catch_throw:
3316 /* Field 4, the address, is omitted (which makes the columns
3317 not line up too nicely with the headers, but the effect
3318 is relatively readable). */
3321 ui_out_field_skip (uiout, "addr");
3323 ui_out_field_string (uiout, "what", "exception throw");
3324 ui_out_spaces (uiout, 1);
3327 printf_filtered ("exception throw ");
3332 case bp_hardware_breakpoint:
3336 case bp_longjmp_resume:
3337 case bp_step_resume:
3338 case bp_through_sigtramp:
3339 case bp_watchpoint_scope:
3341 case bp_shlib_event:
3342 case bp_thread_event:
3347 ui_out_field_core_addr (uiout, "addr", b->address);
3350 *last_addr = b->address;
3353 sym = find_pc_sect_function (b->address, b->section);
3356 ui_out_text (uiout, "in ");
3357 ui_out_field_string (uiout, "func",
3358 SYMBOL_SOURCE_NAME (sym));
3359 ui_out_wrap_hint (uiout, wrap_indent);
3360 ui_out_text (uiout, " at ");
3362 ui_out_field_string (uiout, "file", b->source_file);
3363 ui_out_text (uiout, ":");
3364 ui_out_field_int (uiout, "line", b->line_number);
3368 print_address_symbolic (b->address, stb->stream, demangle, "");
3369 ui_out_field_stream (uiout, "at", stb);
3378 if (TARGET_ADDR_BIT <= 32)
3379 tmp = longest_local_hex_string_custom (b->address
3380 & (CORE_ADDR) 0xffffffff,
3383 tmp = longest_local_hex_string_custom (b->address, "016l");
3385 printf_filtered ("%s ", tmp);
3388 *last_addr = b->address;
3391 sym = find_pc_sect_function (b->address, b->section);
3394 fputs_filtered ("in ", gdb_stdout);
3395 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
3396 wrap_here (wrap_indent);
3397 fputs_filtered (" at ", gdb_stdout);
3399 fputs_filtered (b->source_file, gdb_stdout);
3400 printf_filtered (":%d", b->line_number);
3403 print_address_symbolic (b->address, gdb_stdout, demangle, " ");
3408 if (b->thread != -1)
3411 /* FIXME: This seems to be redundant and lost here; see the
3412 "stop only in" line a little further down. */
3413 ui_out_text (uiout, " thread ");
3414 ui_out_field_int (uiout, "thread", b->thread);
3416 printf_filtered (" thread %d", b->thread);
3421 ui_out_text (uiout, "\n");
3423 printf_filtered ("\n");
3430 ui_out_text (uiout, "\tstop only in stack frame at ");
3431 ui_out_field_core_addr (uiout, "frame", b->frame);
3432 ui_out_text (uiout, "\n");
3434 printf_filtered ("\tstop only in stack frame at ");
3435 print_address_numeric (b->frame, 1, gdb_stdout);
3436 printf_filtered ("\n");
3444 ui_out_text (uiout, "\tstop only if ");
3445 print_expression (b->cond, stb->stream);
3446 ui_out_field_stream (uiout, "cond", stb);
3447 ui_out_text (uiout, "\n");
3449 printf_filtered ("\tstop only if ");
3450 print_expression (b->cond, gdb_stdout);
3451 printf_filtered ("\n");
3455 if (b->thread != -1)
3457 /* FIXME should make an annotation for this */
3459 ui_out_text (uiout, "\tstop only in thread ");
3460 ui_out_field_int (uiout, "thread", b->thread);
3461 ui_out_text (uiout, "\n");
3463 printf_filtered ("\tstop only in thread %d\n", b->thread);
3467 if (show_breakpoint_hit_counts && b->hit_count)
3469 /* FIXME should make an annotation for this */
3471 if (ep_is_catchpoint (b))
3472 ui_out_text (uiout, "\tcatchpoint");
3474 ui_out_text (uiout, "\tbreakpoint");
3475 ui_out_text (uiout, " already hit ");
3476 ui_out_field_int (uiout, "times", b->hit_count);
3477 if (b->hit_count == 1)
3478 ui_out_text (uiout, " time\n");
3480 ui_out_text (uiout, " times\n");
3482 if (ep_is_catchpoint (b))
3483 printf_filtered ("\tcatchpoint");
3485 printf_filtered ("\tbreakpoint");
3486 printf_filtered (" already hit %d time%s\n",
3487 b->hit_count, (b->hit_count == 1 ? "" : "s"));
3492 /* Output the count also if it is zero, but only if this is
3493 mi. FIXME: Should have a better test for this. */
3494 if (ui_out_is_mi_like_p (uiout))
3495 if (show_breakpoint_hit_counts && b->hit_count == 0)
3496 ui_out_field_int (uiout, "times", b->hit_count);
3499 if (b->ignore_count)
3503 ui_out_text (uiout, "\tignore next ");
3504 ui_out_field_int (uiout, "ignore", b->ignore_count);
3505 ui_out_text (uiout, " hits\n");
3507 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
3511 if ((l = b->commands))
3515 ui_out_tuple_begin (uiout, "script");
3516 print_command_lines (uiout, l, 4);
3517 ui_out_tuple_end (uiout);
3521 print_command_line (l, 4, gdb_stdout);
3527 ui_out_tuple_end (uiout);
3528 do_cleanups (old_chain);
3532 struct captured_breakpoint_query_args
3538 do_captured_breakpoint_query (struct ui_out *uiout, void *data)
3540 struct captured_breakpoint_query_args *args = data;
3541 register struct breakpoint *b;
3542 CORE_ADDR dummy_addr = 0;
3545 if (args->bnum == b->number)
3547 print_one_breakpoint (b, &dummy_addr);
3555 gdb_breakpoint_query (struct ui_out *uiout, int bnum)
3557 struct captured_breakpoint_query_args args;
3559 /* For the moment we don't trust print_one_breakpoint() to not throw
3561 return catch_exceptions (uiout, do_captured_breakpoint_query, &args,
3562 NULL, RETURN_MASK_ALL);
3565 /* Return non-zero if B is user settable (breakpoints, watchpoints,
3566 catchpoints, et.al.). */
3569 user_settable_breakpoint (const struct breakpoint *b)
3571 return (b->type == bp_breakpoint
3572 || b->type == bp_catch_load
3573 || b->type == bp_catch_unload
3574 || b->type == bp_catch_fork
3575 || b->type == bp_catch_vfork
3576 || b->type == bp_catch_exec
3577 || b->type == bp_catch_catch
3578 || b->type == bp_catch_throw
3579 || b->type == bp_hardware_breakpoint
3580 || b->type == bp_watchpoint
3581 || b->type == bp_read_watchpoint
3582 || b->type == bp_access_watchpoint
3583 || b->type == bp_hardware_watchpoint);
3586 /* Print information on user settable breakpoint (watchpoint, etc)
3587 number BNUM. If BNUM is -1 print all user settable breakpoints.
3588 If ALLFLAG is non-zero, include non- user settable breakpoints. */
3591 breakpoint_1 (int bnum, int allflag)
3593 register struct breakpoint *b;
3594 CORE_ADDR last_addr = (CORE_ADDR) -1;
3595 int nr_printable_breakpoints;
3597 /* Compute the number of rows in the table. */
3598 nr_printable_breakpoints = 0;
3601 || bnum == b->number)
3603 if (allflag || user_settable_breakpoint (b))
3604 nr_printable_breakpoints++;
3609 ui_out_table_begin (uiout, 6, nr_printable_breakpoints, "BreakpointTable");
3611 ui_out_table_begin (uiout, 5, nr_printable_breakpoints, "BreakpointTable");
3615 if (nr_printable_breakpoints > 0)
3616 annotate_breakpoints_headers ();
3617 if (nr_printable_breakpoints > 0)
3619 ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
3620 if (nr_printable_breakpoints > 0)
3622 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3623 if (nr_printable_breakpoints > 0)
3625 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3626 if (nr_printable_breakpoints > 0)
3628 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
3631 if (nr_printable_breakpoints > 0)
3633 if (TARGET_ADDR_BIT <= 32)
3634 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
3636 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
3638 if (nr_printable_breakpoints > 0)
3640 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
3641 ui_out_table_body (uiout);
3642 if (nr_printable_breakpoints > 0)
3643 annotate_breakpoints_table ();
3645 if (nr_printable_breakpoints > 0)
3647 annotate_breakpoints_headers ();
3649 printf_filtered ("Num ");
3651 printf_filtered ("Type ");
3653 printf_filtered ("Disp ");
3655 printf_filtered ("Enb ");
3659 if (TARGET_ADDR_BIT <= 32)
3660 printf_filtered ("Address ");
3662 printf_filtered ("Address ");
3665 printf_filtered ("What\n");
3666 annotate_breakpoints_table ();
3672 || bnum == b->number)
3674 /* We only print out user settable breakpoints unless the
3676 if (allflag || user_settable_breakpoint (b))
3677 print_one_breakpoint (b, &last_addr);
3682 ui_out_table_end (uiout);
3685 if (nr_printable_breakpoints == 0)
3689 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
3691 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
3695 printf_filtered ("No breakpoints or watchpoints.\n");
3697 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
3702 /* Compare against (CORE_ADDR)-1 in case some compiler decides
3703 that a comparison of an unsigned with -1 is always false. */
3704 if (last_addr != (CORE_ADDR) -1)
3705 set_next_address (last_addr);
3708 /* FIXME? Should this be moved up so that it is only called when
3709 there have been breakpoints? */
3710 annotate_breakpoints_table_end ();
3715 breakpoints_info (char *bnum_exp, int from_tty)
3720 bnum = parse_and_eval_long (bnum_exp);
3722 breakpoint_1 (bnum, 0);
3727 maintenance_info_breakpoints (char *bnum_exp, int from_tty)
3732 bnum = parse_and_eval_long (bnum_exp);
3734 breakpoint_1 (bnum, 1);
3737 /* Print a message describing any breakpoints set at PC. */
3740 describe_other_breakpoints (CORE_ADDR pc, asection *section)
3742 register int others = 0;
3743 register struct breakpoint *b;
3746 if (b->address == pc)
3747 if (overlay_debugging == 0 ||
3748 b->section == section)
3752 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3754 if (b->address == pc)
3755 if (overlay_debugging == 0 ||
3756 b->section == section)
3759 printf_filtered ("%d%s%s ",
3761 ((b->enable_state == bp_disabled ||
3762 b->enable_state == bp_shlib_disabled ||
3763 b->enable_state == bp_call_disabled) ? " (disabled)"
3764 : b->enable_state == bp_permanent ? " (permanent)"
3767 : ((others == 1) ? " and" : ""));
3769 printf_filtered ("also set at pc ");
3770 print_address_numeric (pc, 1, gdb_stdout);
3771 printf_filtered (".\n");
3775 /* Set the default place to put a breakpoint
3776 for the `break' command with no arguments. */
3779 set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
3782 default_breakpoint_valid = valid;
3783 default_breakpoint_address = addr;
3784 default_breakpoint_symtab = symtab;
3785 default_breakpoint_line = line;
3788 /* Return true iff it is meaningful to use the address member of
3789 BPT. For some breakpoint types, the address member is irrelevant
3790 and it makes no sense to attempt to compare it to other addresses
3791 (or use it for any other purpose either).
3793 More specifically, each of the following breakpoint types will always
3794 have a zero valued address and we don't want check_duplicates() to mark
3795 breakpoints of any of these types to be a duplicate of an actual
3796 breakpoint at address zero:
3799 bp_hardware_watchpoint
3801 bp_access_watchpoint
3808 breakpoint_address_is_meaningful (struct breakpoint *bpt)
3810 enum bptype type = bpt->type;
3812 return (type != bp_watchpoint
3813 && type != bp_hardware_watchpoint
3814 && type != bp_read_watchpoint
3815 && type != bp_access_watchpoint
3816 && type != bp_catch_exec
3817 && type != bp_longjmp_resume
3818 && type != bp_catch_fork
3819 && type != bp_catch_vfork);
3822 /* Rescan breakpoints at the same address and section as BPT,
3823 marking the first one as "first" and any others as "duplicates".
3824 This is so that the bpt instruction is only inserted once.
3825 If we have a permanent breakpoint at the same place as BPT, make
3826 that one the official one, and the rest as duplicates. */
3829 check_duplicates (struct breakpoint *bpt)
3831 register struct breakpoint *b;
3832 register int count = 0;
3833 struct breakpoint *perm_bp = 0;
3834 CORE_ADDR address = bpt->address;
3835 asection *section = bpt->section;
3837 if (! breakpoint_address_is_meaningful (bpt))
3841 if (b->enable_state != bp_disabled
3842 && b->enable_state != bp_shlib_disabled
3843 && b->enable_state != bp_call_disabled
3844 && b->address == address
3845 && (overlay_debugging == 0 || b->section == section)
3846 && breakpoint_address_is_meaningful (b))
3848 /* Have we found a permanent breakpoint? */
3849 if (b->enable_state == bp_permanent)
3856 b->duplicate = count > 1;
3859 /* If we found a permanent breakpoint at this address, go over the
3860 list again and declare all the other breakpoints there to be the
3864 perm_bp->duplicate = 0;
3866 /* Permanent breakpoint should always be inserted. */
3867 if (! perm_bp->inserted)
3868 internal_error (__FILE__, __LINE__,
3869 "allegedly permanent breakpoint is not "
3870 "actually inserted");
3876 internal_error (__FILE__, __LINE__,
3877 "another breakpoint was inserted on top of "
3878 "a permanent breakpoint");
3880 if (b->enable_state != bp_disabled
3881 && b->enable_state != bp_shlib_disabled
3882 && b->enable_state != bp_call_disabled
3883 && b->address == address
3884 && (overlay_debugging == 0 || b->section == section)
3885 && breakpoint_address_is_meaningful (b))
3891 /* set_raw_breakpoint() is a low level routine for allocating and
3892 partially initializing a breakpoint of type BPTYPE. The newly
3893 created breakpoint's address, section, source file name, and line
3894 number are provided by SAL. The newly created and partially
3895 initialized breakpoint is added to the breakpoint chain and
3896 is also returned as the value of this function.
3898 It is expected that the caller will complete the initialization of
3899 the newly created breakpoint struct as well as output any status
3900 information regarding the creation of a new breakpoint. In
3901 particular, set_raw_breakpoint() does NOT set the breakpoint
3902 number! Care should be taken to not allow an error() to occur
3903 prior to completing the initialization of the breakpoint. If this
3904 should happen, a bogus breakpoint will be left on the chain. */
3907 set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
3909 register struct breakpoint *b, *b1;
3911 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
3912 memset (b, 0, sizeof (*b));
3913 b->address = sal.pc;
3914 if (sal.symtab == NULL)
3915 b->source_file = NULL;
3917 b->source_file = savestring (sal.symtab->filename,
3918 strlen (sal.symtab->filename));
3919 b->section = sal.section;
3921 b->language = current_language->la_language;
3922 b->input_radix = input_radix;
3924 b->line_number = sal.line;
3925 b->enable_state = bp_enabled;
3928 b->ignore_count = 0;
3931 b->dll_pathname = NULL;
3932 b->triggered_dll_pathname = NULL;
3933 b->forked_inferior_pid = 0;
3934 b->exec_pathname = NULL;
3936 /* Add this breakpoint to the end of the chain
3937 so that a list of breakpoints will come out in order
3938 of increasing numbers. */
3940 b1 = breakpoint_chain;
3942 breakpoint_chain = b;
3950 check_duplicates (b);
3951 breakpoints_changed ();
3957 /* Note that the breakpoint object B describes a permanent breakpoint
3958 instruction, hard-wired into the inferior's code. */
3960 make_breakpoint_permanent (struct breakpoint *b)
3962 b->enable_state = bp_permanent;
3964 /* By definition, permanent breakpoints are already present in the code. */
3968 #ifdef GET_LONGJMP_TARGET
3971 create_longjmp_breakpoint (char *func_name)
3973 struct symtab_and_line sal;
3974 struct breakpoint *b;
3976 INIT_SAL (&sal); /* initialize to zeroes */
3977 if (func_name != NULL)
3979 struct minimal_symbol *m;
3981 m = lookup_minimal_symbol_text (func_name, NULL,
3982 (struct objfile *) NULL);
3984 sal.pc = SYMBOL_VALUE_ADDRESS (m);
3988 sal.section = find_pc_overlay (sal.pc);
3989 b = set_raw_breakpoint (sal,
3990 func_name != NULL ? bp_longjmp : bp_longjmp_resume);
3992 b->disposition = disp_donttouch;
3993 b->enable_state = bp_disabled;
3996 b->addr_string = xstrdup (func_name);
3997 b->number = internal_breakpoint_number--;
4000 #endif /* #ifdef GET_LONGJMP_TARGET */
4002 /* Call this routine when stepping and nexting to enable a breakpoint
4003 if we do a longjmp(). When we hit that breakpoint, call
4004 set_longjmp_resume_breakpoint() to figure out where we are going. */
4007 enable_longjmp_breakpoint (void)
4009 register struct breakpoint *b;
4012 if (b->type == bp_longjmp)
4014 b->enable_state = bp_enabled;
4015 check_duplicates (b);
4020 disable_longjmp_breakpoint (void)
4022 register struct breakpoint *b;
4025 if (b->type == bp_longjmp
4026 || b->type == bp_longjmp_resume)
4028 b->enable_state = bp_disabled;
4029 check_duplicates (b);
4034 create_thread_event_breakpoint (CORE_ADDR address)
4036 struct breakpoint *b;
4037 struct symtab_and_line sal;
4038 char addr_string[80]; /* Surely an addr can't be longer than that. */
4040 INIT_SAL (&sal); /* initialize to zeroes */
4042 sal.section = find_pc_overlay (sal.pc);
4043 b = set_raw_breakpoint (sal, bp_thread_event);
4045 b->number = internal_breakpoint_number--;
4046 b->disposition = disp_donttouch;
4047 b->enable_state = bp_enabled;
4048 /* addr_string has to be used or breakpoint_re_set will delete me. */
4049 sprintf (addr_string, "*0x%s", paddr (b->address));
4050 b->addr_string = xstrdup (addr_string);
4056 remove_thread_event_breakpoints (void)
4058 struct breakpoint *b, *temp;
4060 ALL_BREAKPOINTS_SAFE (b, temp)
4061 if (b->type == bp_thread_event)
4062 delete_breakpoint (b);
4067 remove_solib_event_breakpoints (void)
4069 register struct breakpoint *b, *temp;
4071 ALL_BREAKPOINTS_SAFE (b, temp)
4072 if (b->type == bp_shlib_event)
4073 delete_breakpoint (b);
4077 create_solib_event_breakpoint (CORE_ADDR address)
4079 struct breakpoint *b;
4080 struct symtab_and_line sal;
4082 INIT_SAL (&sal); /* initialize to zeroes */
4084 sal.section = find_pc_overlay (sal.pc);
4085 b = set_raw_breakpoint (sal, bp_shlib_event);
4086 b->number = internal_breakpoint_number--;
4087 b->disposition = disp_donttouch;
4092 /* Disable any breakpoints that are on code in shared libraries. Only
4093 apply to enabled breakpoints, disabled ones can just stay disabled. */
4096 disable_breakpoints_in_shlibs (int silent)
4098 struct breakpoint *b;
4099 int disabled_shlib_breaks = 0;
4101 /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
4104 #if defined (PC_SOLIB)
4105 if (((b->type == bp_breakpoint) ||
4106 (b->type == bp_hardware_breakpoint)) &&
4107 b->enable_state == bp_enabled &&
4109 PC_SOLIB (b->address))
4111 b->enable_state = bp_shlib_disabled;
4114 if (!disabled_shlib_breaks)
4116 target_terminal_ours_for_output ();
4117 warning ("Temporarily disabling shared library breakpoints:");
4119 disabled_shlib_breaks = 1;
4120 warning ("breakpoint #%d ", b->number);
4127 /* Try to reenable any breakpoints in shared libraries. */
4129 re_enable_breakpoints_in_shlibs (void)
4131 struct breakpoint *b;
4134 if (b->enable_state == bp_shlib_disabled)
4138 /* Do not reenable the breakpoint if the shared library
4139 is still not mapped in. */
4140 if (target_read_memory (b->address, buf, 1) == 0)
4141 b->enable_state = bp_enabled;
4148 solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
4149 char *cond_string, enum bptype bp_kind)
4151 struct breakpoint *b;
4152 struct symtabs_and_lines sals;
4153 struct cleanup *old_chain;
4154 struct cleanup *canonical_strings_chain = NULL;
4155 char *addr_start = hookname;
4156 char *addr_end = NULL;
4157 char **canonical = (char **) NULL;
4158 int thread = -1; /* All threads. */
4160 /* Set a breakpoint on the specified hook. */
4161 sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical);
4162 addr_end = hookname;
4164 if (sals.nelts == 0)
4166 warning ("Unable to set a breakpoint on dynamic linker callback.");
4167 warning ("Suggest linking with /opt/langtools/lib/end.o.");
4168 warning ("GDB will be unable to track shl_load/shl_unload calls");
4171 if (sals.nelts != 1)
4173 warning ("Unable to set unique breakpoint on dynamic linker callback.");
4174 warning ("GDB will be unable to track shl_load/shl_unload calls");
4178 /* Make sure that all storage allocated in decode_line_1 gets freed
4179 in case the following errors out. */
4180 old_chain = make_cleanup (xfree, sals.sals);
4181 if (canonical != (char **) NULL)
4183 make_cleanup (xfree, canonical);
4184 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4185 if (canonical[0] != NULL)
4186 make_cleanup (xfree, canonical[0]);
4189 resolve_sal_pc (&sals.sals[0]);
4191 /* Remove the canonical strings from the cleanup, they are needed below. */
4192 if (canonical != (char **) NULL)
4193 discard_cleanups (canonical_strings_chain);
4195 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4196 set_breakpoint_count (breakpoint_count + 1);
4197 b->number = breakpoint_count;
4199 b->cond_string = (cond_string == NULL) ?
4200 NULL : savestring (cond_string, strlen (cond_string));
4203 if (canonical != (char **) NULL && canonical[0] != NULL)
4204 b->addr_string = canonical[0];
4205 else if (addr_start)
4206 b->addr_string = savestring (addr_start, addr_end - addr_start);
4208 b->enable_state = bp_enabled;
4209 b->disposition = tempflag ? disp_del : disp_donttouch;
4211 if (dll_pathname == NULL)
4212 b->dll_pathname = NULL;
4215 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4216 strcpy (b->dll_pathname, dll_pathname);
4220 do_cleanups (old_chain);
4224 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4225 char *dll_pathname, char *cond_string)
4227 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4228 cond_string, bp_catch_load);
4232 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4233 char *dll_pathname, char *cond_string)
4235 solib_load_unload_1 (hookname,tempflag, dll_pathname,
4236 cond_string, bp_catch_unload);
4240 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4241 enum bptype bp_kind)
4243 struct symtab_and_line sal;
4244 struct breakpoint *b;
4245 int thread = -1; /* All threads. */
4252 b = set_raw_breakpoint (sal, bp_kind);
4253 set_breakpoint_count (breakpoint_count + 1);
4254 b->number = breakpoint_count;
4256 b->cond_string = (cond_string == NULL) ?
4257 NULL : savestring (cond_string, strlen (cond_string));
4259 b->addr_string = NULL;
4260 b->enable_state = bp_enabled;
4261 b->disposition = tempflag ? disp_del : disp_donttouch;
4262 b->forked_inferior_pid = 0;
4268 create_fork_event_catchpoint (int tempflag, char *cond_string)
4270 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4274 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4276 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4280 create_exec_event_catchpoint (int tempflag, char *cond_string)
4282 struct symtab_and_line sal;
4283 struct breakpoint *b;
4284 int thread = -1; /* All threads. */
4291 b = set_raw_breakpoint (sal, bp_catch_exec);
4292 set_breakpoint_count (breakpoint_count + 1);
4293 b->number = breakpoint_count;
4295 b->cond_string = (cond_string == NULL) ?
4296 NULL : savestring (cond_string, strlen (cond_string));
4298 b->addr_string = NULL;
4299 b->enable_state = bp_enabled;
4300 b->disposition = tempflag ? disp_del : disp_donttouch;
4306 hw_breakpoint_used_count (void)
4308 register struct breakpoint *b;
4313 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4321 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4323 register struct breakpoint *b;
4326 *other_type_used = 0;
4329 if (b->enable_state == bp_enabled)
4331 if (b->type == type)
4333 else if ((b->type == bp_hardware_watchpoint ||
4334 b->type == bp_read_watchpoint ||
4335 b->type == bp_access_watchpoint)
4336 && b->enable_state == bp_enabled)
4337 *other_type_used = 1;
4343 /* Call this after hitting the longjmp() breakpoint. Use this to set
4344 a new breakpoint at the target of the jmp_buf.
4346 FIXME - This ought to be done by setting a temporary breakpoint
4347 that gets deleted automatically... */
4350 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_info *frame)
4352 register struct breakpoint *b;
4355 if (b->type == bp_longjmp_resume)
4358 b->enable_state = bp_enabled;
4360 b->frame = frame->frame;
4363 check_duplicates (b);
4369 disable_watchpoints_before_interactive_call_start (void)
4371 struct breakpoint *b;
4375 if (((b->type == bp_watchpoint)
4376 || (b->type == bp_hardware_watchpoint)
4377 || (b->type == bp_read_watchpoint)
4378 || (b->type == bp_access_watchpoint)
4379 || ep_is_exception_catchpoint (b))
4380 && (b->enable_state == bp_enabled))
4382 b->enable_state = bp_call_disabled;
4383 check_duplicates (b);
4389 enable_watchpoints_after_interactive_call_stop (void)
4391 struct breakpoint *b;
4395 if (((b->type == bp_watchpoint)
4396 || (b->type == bp_hardware_watchpoint)
4397 || (b->type == bp_read_watchpoint)
4398 || (b->type == bp_access_watchpoint)
4399 || ep_is_exception_catchpoint (b))
4400 && (b->enable_state == bp_call_disabled))
4402 b->enable_state = bp_enabled;
4403 check_duplicates (b);
4409 /* Set a breakpoint that will evaporate an end of command
4410 at address specified by SAL.
4411 Restrict it to frame FRAME if FRAME is nonzero. */
4414 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_info *frame,
4417 register struct breakpoint *b;
4418 b = set_raw_breakpoint (sal, type);
4419 b->enable_state = bp_enabled;
4420 b->disposition = disp_donttouch;
4421 b->frame = (frame ? frame->frame : 0);
4423 /* If we're debugging a multi-threaded program, then we
4424 want momentary breakpoints to be active in only a
4425 single thread of control. */
4426 if (in_thread_list (inferior_ptid))
4427 b->thread = pid_to_thread_id (inferior_ptid);
4433 /* Tell the user we have just set a breakpoint B. */
4436 mention (struct breakpoint *b)
4440 struct cleanup *old_chain;
4441 struct ui_stream *stb;
4443 stb = ui_out_stream_new (uiout);
4444 old_chain = make_cleanup_ui_out_stream_delete (stb);
4447 /* FIXME: This is misplaced; mention() is called by things (like hitting a
4448 watchpoint) other than breakpoint creation. It should be possible to
4449 clean this up and at the same time replace the random calls to
4450 breakpoint_changed with this hook, as has already been done for
4451 delete_breakpoint_hook and so on. */
4452 if (create_breakpoint_hook)
4453 create_breakpoint_hook (b);
4454 breakpoint_create_event (b->number);
4459 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4463 ui_out_text (uiout, "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);
4471 case bp_hardware_watchpoint:
4472 ui_out_text (uiout, "Hardware watchpoint ");
4473 ui_out_tuple_begin (uiout, "wpt");
4474 ui_out_field_int (uiout, "number", b->number);
4475 ui_out_text (uiout, ": ");
4476 print_expression (b->exp, stb->stream);
4477 ui_out_field_stream (uiout, "exp", stb);
4478 ui_out_tuple_end (uiout);
4482 printf_filtered ("Watchpoint %d: ", b->number);
4483 print_expression (b->exp, gdb_stdout);
4485 case bp_hardware_watchpoint:
4486 printf_filtered ("Hardware watchpoint %d: ", b->number);
4487 print_expression (b->exp, gdb_stdout);
4491 case bp_read_watchpoint:
4492 ui_out_text (uiout, "Hardware read watchpoint ");
4493 ui_out_tuple_begin (uiout, "hw-rwpt");
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);
4500 case bp_access_watchpoint:
4501 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4502 ui_out_tuple_begin (uiout, "hw-awpt");
4503 ui_out_field_int (uiout, "number", b->number);
4504 ui_out_text (uiout, ": ");
4505 print_expression (b->exp, stb->stream);
4506 ui_out_field_stream (uiout, "exp", stb);
4507 ui_out_tuple_end (uiout);
4510 case bp_read_watchpoint:
4511 printf_filtered ("Hardware read watchpoint %d: ", b->number);
4512 print_expression (b->exp, gdb_stdout);
4514 case bp_access_watchpoint:
4515 printf_filtered ("Hardware access (read/write) watchpoint %d: ",
4517 print_expression (b->exp, gdb_stdout);
4522 if (ui_out_is_mi_like_p (uiout))
4528 printf_filtered ("Breakpoint %d", b->number);
4531 case bp_hardware_breakpoint:
4533 if (ui_out_is_mi_like_p (uiout))
4539 printf_filtered ("Hardware assisted breakpoint %d", b->number);
4543 case bp_catch_unload:
4544 printf_filtered ("Catchpoint %d (%s %s)",
4546 (b->type == bp_catch_load) ? "load" : "unload",
4547 (b->dll_pathname != NULL) ?
4548 b->dll_pathname : "<any library>");
4551 case bp_catch_vfork:
4552 printf_filtered ("Catchpoint %d (%s)",
4554 (b->type == bp_catch_fork) ? "fork" : "vfork");
4557 printf_filtered ("Catchpoint %d (exec)",
4560 case bp_catch_catch:
4561 case bp_catch_throw:
4562 printf_filtered ("Catchpoint %d (%s)",
4564 (b->type == bp_catch_catch) ? "catch" : "throw");
4570 case bp_longjmp_resume:
4571 case bp_step_resume:
4572 case bp_through_sigtramp:
4574 case bp_watchpoint_scope:
4575 case bp_shlib_event:
4576 case bp_thread_event:
4581 if (addressprint || b->source_file == NULL)
4583 printf_filtered (" at ");
4584 print_address_numeric (b->address, 1, gdb_stdout);
4587 printf_filtered (": file %s, line %d.",
4588 b->source_file, b->line_number);
4591 do_cleanups (old_chain);
4594 if (ui_out_is_mi_like_p (uiout))
4597 printf_filtered ("\n");
4601 /* Add SALS.nelts breakpoints to the breakpoint table. For each
4602 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4603 COND[i] and COND_STRING[i] values.
4605 NOTE: If the function succeeds, the caller is expected to cleanup
4606 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4607 array contents). If the function fails (error() is called), the
4608 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4609 COND and SALS arrays and each of those arrays contents. */
4612 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4613 struct expression **cond, char **cond_string,
4614 enum bptype type, enum bpdisp disposition,
4615 int thread, int ignore_count, int from_tty)
4617 if (type == bp_hardware_breakpoint)
4619 int i = hw_breakpoint_used_count ();
4620 int target_resources_ok =
4621 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4623 if (target_resources_ok == 0)
4624 error ("No hardware breakpoint support in the target.");
4625 else if (target_resources_ok < 0)
4626 error ("Hardware breakpoints used exceeds limit.");
4629 /* Now set all the breakpoints. */
4632 for (i = 0; i < sals.nelts; i++)
4634 struct breakpoint *b;
4635 struct symtab_and_line sal = sals.sals[i];
4638 describe_other_breakpoints (sal.pc, sal.section);
4640 b = set_raw_breakpoint (sal, type);
4641 set_breakpoint_count (breakpoint_count + 1);
4642 b->number = breakpoint_count;
4645 b->addr_string = addr_string[i];
4646 b->cond_string = cond_string[i];
4647 b->ignore_count = ignore_count;
4648 b->enable_state = bp_enabled;
4649 b->disposition = disposition;
4655 /* Parse ARG which is assumed to be a SAL specification possibly
4656 followed by conditionals. On return, SALS contains an array of SAL
4657 addresses found. ADDR_STRING contains a vector of (canonical)
4658 address strings. ARG points to the end of the SAL. */
4661 parse_breakpoint_sals (char **address,
4662 struct symtabs_and_lines *sals,
4663 char ***addr_string)
4665 char *addr_start = *address;
4666 *addr_string = NULL;
4667 /* If no arg given, or if first arg is 'if ', use the default
4669 if ((*address) == NULL
4670 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4672 if (default_breakpoint_valid)
4674 struct symtab_and_line sal;
4675 INIT_SAL (&sal); /* initialize to zeroes */
4676 sals->sals = (struct symtab_and_line *)
4677 xmalloc (sizeof (struct symtab_and_line));
4678 sal.pc = default_breakpoint_address;
4679 sal.line = default_breakpoint_line;
4680 sal.symtab = default_breakpoint_symtab;
4681 sal.section = find_pc_overlay (sal.pc);
4682 sals->sals[0] = sal;
4686 error ("No default breakpoint address now.");
4690 /* Force almost all breakpoints to be in terms of the
4691 current_source_symtab (which is decode_line_1's default). This
4692 should produce the results we want almost all of the time while
4693 leaving default_breakpoint_* alone. */
4694 if (default_breakpoint_valid
4695 && (!current_source_symtab
4696 || (strchr ("+-", (*address)[0]) != NULL)))
4697 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
4698 default_breakpoint_line, addr_string);
4700 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0, addr_string);
4702 /* For any SAL that didn't have a canonical string, fill one in. */
4703 if (sals->nelts > 0 && *addr_string == NULL)
4704 *addr_string = xcalloc (sals->nelts, sizeof (char **));
4705 if (addr_start != (*address))
4708 for (i = 0; i < sals->nelts; i++)
4710 /* Add the string if not present. */
4711 if ((*addr_string)[i] == NULL)
4712 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
4718 /* Convert each SAL into a real PC. Verify that the PC can be
4719 inserted as a breakpoint. If it can't throw an error. */
4722 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
4726 for (i = 0; i < sals->nelts; i++)
4728 resolve_sal_pc (&sals->sals[i]);
4730 /* It's possible for the PC to be nonzero, but still an illegal
4731 value on some targets.
4733 For example, on HP-UX if you start gdb, and before running the
4734 inferior you try to set a breakpoint on a shared library function
4735 "foo" where the inferior doesn't call "foo" directly but does
4736 pass its address to another function call, then we do find a
4737 minimal symbol for the "foo", but it's address is invalid.
4738 (Appears to be an index into a table that the loader sets up
4739 when the inferior is run.)
4741 Give the target a chance to bless sals.sals[i].pc before we
4742 try to make a breakpoint for it. */
4743 if (PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
4745 if (address == NULL)
4746 error ("Cannot break without a running program.");
4748 error ("Cannot break on %s without a running program.",
4754 /* Set a breakpoint according to ARG (function, linenum or *address)
4755 flag: first bit : 0 non-temporary, 1 temporary.
4756 second bit : 0 normal breakpoint, 1 hardware breakpoint. */
4759 break_command_1 (char *arg, int flag, int from_tty)
4761 int tempflag, hardwareflag;
4762 struct symtabs_and_lines sals;
4763 register struct expression **cond = 0;
4764 /* Pointers in arg to the start, and one past the end, of the
4766 char **cond_string = (char **) NULL;
4767 char *addr_start = arg;
4769 struct cleanup *old_chain;
4770 struct cleanup *breakpoint_chain = NULL;
4773 int ignore_count = 0;
4775 hardwareflag = flag & BP_HARDWAREFLAG;
4776 tempflag = flag & BP_TEMPFLAG;
4781 parse_breakpoint_sals (&arg, &sals, &addr_string);
4786 /* Create a chain of things that always need to be cleaned up. */
4787 old_chain = make_cleanup (null_cleanup, 0);
4789 /* Make sure that all storage allocated to SALS gets freed. */
4790 make_cleanup (xfree, sals.sals);
4792 /* Cleanup the addr_string array but not its contents. */
4793 make_cleanup (xfree, addr_string);
4795 /* Allocate space for all the cond expressions. */
4796 cond = xcalloc (sals.nelts, sizeof (struct expression *));
4797 make_cleanup (xfree, cond);
4799 /* Allocate space for all the cond strings. */
4800 cond_string = xcalloc (sals.nelts, sizeof (char **));
4801 make_cleanup (xfree, cond_string);
4803 /* ----------------------------- SNIP -----------------------------
4804 Anything added to the cleanup chain beyond this point is assumed
4805 to be part of a breakpoint. If the breakpoint create succeeds
4806 then the memory is not reclaimed. */
4807 breakpoint_chain = make_cleanup (null_cleanup, 0);
4809 /* Mark the contents of the addr_string for cleanup. These go on
4810 the breakpoint_chain and only occure if the breakpoint create
4812 for (i = 0; i < sals.nelts; i++)
4814 if (addr_string[i] != NULL)
4815 make_cleanup (xfree, addr_string[i]);
4818 /* Resolve all line numbers to PC's and verify that the addresses
4819 are ok for the target. */
4820 breakpoint_sals_to_pc (&sals, addr_start);
4822 /* Verify that condition can be parsed, before setting any
4823 breakpoints. Allocate a separate condition expression for each
4825 thread = -1; /* No specific thread yet */
4826 for (i = 0; i < sals.nelts; i++)
4833 char *cond_start = NULL;
4834 char *cond_end = NULL;
4835 while (*tok == ' ' || *tok == '\t')
4840 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4843 toklen = end_tok - tok;
4845 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4847 tok = cond_start = end_tok + 1;
4848 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4849 make_cleanup (xfree, cond[i]);
4851 cond_string[i] = savestring (cond_start, cond_end - cond_start);
4852 make_cleanup (xfree, cond_string[i]);
4854 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
4860 thread = strtol (tok, &tok, 0);
4862 error ("Junk after thread keyword.");
4863 if (!valid_thread_id (thread))
4864 error ("Unknown thread %d\n", thread);
4867 error ("Junk at end of arguments.");
4871 create_breakpoints (sals, addr_string, cond, cond_string,
4872 hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4873 tempflag ? disp_del : disp_donttouch,
4874 thread, ignore_count, from_tty);
4878 warning ("Multiple breakpoints were set.");
4879 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
4881 /* That's it. Discard the cleanups for data inserted into the
4883 discard_cleanups (breakpoint_chain);
4884 /* But cleanup everything else. */
4885 do_cleanups (old_chain);
4888 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
4889 linenum or *address) with COND and IGNORE_COUNT. */
4891 struct captured_breakpoint_args
4902 do_captured_breakpoint (void *data)
4904 struct captured_breakpoint_args *args = data;
4905 struct symtabs_and_lines sals;
4906 register struct expression **cond;
4907 struct cleanup *old_chain;
4908 struct cleanup *breakpoint_chain = NULL;
4915 /* Parse the source and lines spec. Delay check that the expression
4916 didn't contain trailing garbage until after cleanups are in
4920 address_end = args->address;
4922 parse_breakpoint_sals (&address_end, &sals, &addr_string);
4927 /* Create a chain of things at always need to be cleaned up. */
4928 old_chain = make_cleanup (null_cleanup, 0);
4930 /* Always have a addr_string array, even if it is empty. */
4931 make_cleanup (xfree, addr_string);
4933 /* Make sure that all storage allocated to SALS gets freed. */
4934 make_cleanup (xfree, sals.sals);
4936 /* Allocate space for all the cond expressions. */
4937 cond = xcalloc (sals.nelts, sizeof (struct expression *));
4938 make_cleanup (xfree, cond);
4940 /* Allocate space for all the cond strings. */
4941 cond_string = xcalloc (sals.nelts, sizeof (char **));
4942 make_cleanup (xfree, cond_string);
4944 /* ----------------------------- SNIP -----------------------------
4945 Anything added to the cleanup chain beyond this point is assumed
4946 to be part of a breakpoint. If the breakpoint create goes
4947 through then that memory is not cleaned up. */
4948 breakpoint_chain = make_cleanup (null_cleanup, 0);
4950 /* Mark the contents of the addr_string for cleanup. These go on
4951 the breakpoint_chain and only occure if the breakpoint create
4953 for (i = 0; i < sals.nelts; i++)
4955 if (addr_string[i] != NULL)
4956 make_cleanup (xfree, addr_string[i]);
4959 /* Wait until now before checking for garbage at the end of the
4960 address. That way cleanups can take care of freeing any
4962 if (*address_end != '\0')
4963 error ("Garbage %s following breakpoint address", address_end);
4965 /* Resolve all line numbers to PC's. */
4966 breakpoint_sals_to_pc (&sals, args->address);
4968 /* Verify that conditions can be parsed, before setting any
4970 for (i = 0; i < sals.nelts; i++)
4972 if (args->condition != NULL)
4974 char *tok = args->condition;
4975 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4977 error ("Garbage %s follows condition", tok);
4978 make_cleanup (xfree, cond[i]);
4979 cond_string[i] = xstrdup (args->condition);
4983 create_breakpoints (sals, addr_string, cond, cond_string,
4984 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4985 args->tempflag ? disp_del : disp_donttouch,
4986 args->thread, args->ignore_count, 0/*from-tty*/);
4988 /* That's it. Discard the cleanups for data inserted into the
4990 discard_cleanups (breakpoint_chain);
4991 /* But cleanup everything else. */
4992 do_cleanups (old_chain);
4997 gdb_breakpoint (char *address, char *condition,
4998 int hardwareflag, int tempflag,
4999 int thread, int ignore_count)
5001 struct captured_breakpoint_args args;
5002 args.address = address;
5003 args.condition = condition;
5004 args.hardwareflag = hardwareflag;
5005 args.tempflag = tempflag;
5006 args.thread = thread;
5007 args.ignore_count = ignore_count;
5008 return catch_errors (do_captured_breakpoint, &args,
5009 NULL, RETURN_MASK_ALL);
5014 break_at_finish_at_depth_command_1 (char *arg, int flag, int from_tty)
5016 struct frame_info *frame;
5017 CORE_ADDR low, high, selected_pc = 0;
5018 char *extra_args = NULL;
5021 int extra_args_len = 0, if_arg = 0;
5024 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5027 if (default_breakpoint_valid)
5031 selected_pc = selected_frame->pc;
5036 error ("No selected frame.");
5039 error ("No default breakpoint address now.");
5043 extra_args = strchr (arg, ' ');
5047 extra_args_len = strlen (extra_args);
5048 level_arg = (char *) xmalloc (extra_args - arg);
5049 strncpy (level_arg, arg, extra_args - arg - 1);
5050 level_arg[extra_args - arg - 1] = '\0';
5054 level_arg = (char *) xmalloc (strlen (arg) + 1);
5055 strcpy (level_arg, arg);
5058 frame = parse_frame_specification (level_arg);
5060 selected_pc = frame->pc;
5067 extra_args_len = strlen (arg);
5072 if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
5074 addr_string = (char *) xmalloc (26 + extra_args_len);
5076 sprintf (addr_string, "*0x%s %s", paddr_nz (high), extra_args);
5078 sprintf (addr_string, "*0x%s", paddr_nz (high));
5079 break_command_1 (addr_string, flag, from_tty);
5080 xfree (addr_string);
5083 error ("No function contains the specified address");
5086 error ("Unable to set breakpoint at procedure exit");
5091 break_at_finish_command_1 (char *arg, int flag, int from_tty)
5093 char *addr_string, *break_string, *beg_addr_string;
5094 CORE_ADDR low, high;
5095 struct symtabs_and_lines sals;
5096 struct symtab_and_line sal;
5097 struct cleanup *old_chain;
5098 char *extra_args = NULL;
5099 int extra_args_len = 0;
5103 (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
5105 if (default_breakpoint_valid)
5109 addr_string = (char *) xmalloc (15);
5110 sprintf (addr_string, "*0x%s", paddr_nz (selected_frame->pc));
5115 error ("No selected frame.");
5118 error ("No default breakpoint address now.");
5122 addr_string = (char *) xmalloc (strlen (arg) + 1);
5123 strcpy (addr_string, arg);
5129 extra_args_len = strlen (arg);
5133 /* get the stuff after the function name or address */
5134 extra_args = strchr (arg, ' ');
5138 extra_args_len = strlen (extra_args);
5145 beg_addr_string = addr_string;
5146 sals = decode_line_1 (&addr_string, 1, (struct symtab *) NULL, 0,
5149 xfree (beg_addr_string);
5150 old_chain = make_cleanup (xfree, sals.sals);
5151 for (i = 0; (i < sals.nelts); i++)
5154 if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
5156 break_string = (char *) xmalloc (extra_args_len + 26);
5158 sprintf (break_string, "*0x%s %s", paddr_nz (high), extra_args);
5160 sprintf (break_string, "*0x%s", paddr_nz (high));
5161 break_command_1 (break_string, flag, from_tty);
5162 xfree (break_string);
5165 error ("No function contains the specified address");
5169 warning ("Multiple breakpoints were set.\n");
5170 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
5172 do_cleanups (old_chain);
5176 /* Helper function for break_command_1 and disassemble_command. */
5179 resolve_sal_pc (struct symtab_and_line *sal)
5183 if (sal->pc == 0 && sal->symtab != NULL)
5185 if (!find_line_pc (sal->symtab, sal->line, &pc))
5186 error ("No line %d in file \"%s\".",
5187 sal->line, sal->symtab->filename);
5191 if (sal->section == 0 && sal->symtab != NULL)
5193 struct blockvector *bv;
5198 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5201 b = BLOCKVECTOR_BLOCK (bv, index);
5202 sym = block_function (b);
5205 fixup_symbol_section (sym, sal->symtab->objfile);
5206 sal->section = SYMBOL_BFD_SECTION (sym);
5210 /* It really is worthwhile to have the section, so we'll just
5211 have to look harder. This case can be executed if we have
5212 line numbers but no functions (as can happen in assembly
5215 struct minimal_symbol *msym;
5217 msym = lookup_minimal_symbol_by_pc (sal->pc);
5219 sal->section = SYMBOL_BFD_SECTION (msym);
5226 break_command (char *arg, int from_tty)
5228 break_command_1 (arg, 0, from_tty);
5232 break_at_finish_command (char *arg, int from_tty)
5234 break_at_finish_command_1 (arg, 0, from_tty);
5238 break_at_finish_at_depth_command (char *arg, int from_tty)
5240 break_at_finish_at_depth_command_1 (arg, 0, from_tty);
5244 tbreak_command (char *arg, int from_tty)
5246 break_command_1 (arg, BP_TEMPFLAG, from_tty);
5250 tbreak_at_finish_command (char *arg, int from_tty)
5252 break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
5256 hbreak_command (char *arg, int from_tty)
5258 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
5262 thbreak_command (char *arg, int from_tty)
5264 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
5268 stop_command (char *arg, int from_tty)
5270 printf_filtered ("Specify the type of breakpoint to set.\n\
5271 Usage: stop in <function | address>\n\
5276 stopin_command (char *arg, int from_tty)
5280 if (arg == (char *) NULL)
5282 else if (*arg != '*')
5287 /* look for a ':'. If this is a line number specification, then
5288 say it is bad, otherwise, it should be an address or
5289 function/method name */
5290 while (*argptr && !hasColon)
5292 hasColon = (*argptr == ':');
5297 badInput = (*argptr != ':'); /* Not a class::method */
5299 badInput = isdigit (*arg); /* a simple line number */
5303 printf_filtered ("Usage: stop in <function | address>\n");
5305 break_command_1 (arg, 0, from_tty);
5309 stopat_command (char *arg, int from_tty)
5313 if (arg == (char *) NULL || *arg == '*') /* no line number */
5320 /* look for a ':'. If there is a '::' then get out, otherwise
5321 it is probably a line number. */
5322 while (*argptr && !hasColon)
5324 hasColon = (*argptr == ':');
5329 badInput = (*argptr == ':'); /* we have class::method */
5331 badInput = !isdigit (*arg); /* not a line number */
5335 printf_filtered ("Usage: stop at <line>\n");
5337 break_command_1 (arg, 0, from_tty);
5341 /* accessflag: hw_write: watch write,
5342 hw_read: watch read,
5343 hw_access: watch access (read or write) */
5345 watch_command_1 (char *arg, int accessflag, int from_tty)
5347 struct breakpoint *b;
5348 struct symtab_and_line sal;
5349 struct expression *exp;
5350 struct block *exp_valid_block;
5351 struct value *val, *mark;
5352 struct frame_info *frame;
5353 struct frame_info *prev_frame = NULL;
5354 char *exp_start = NULL;
5355 char *exp_end = NULL;
5356 char *tok, *end_tok;
5358 char *cond_start = NULL;
5359 char *cond_end = NULL;
5360 struct expression *cond = NULL;
5361 int i, other_type_used, target_resources_ok = 0;
5362 enum bptype bp_type;
5365 INIT_SAL (&sal); /* initialize to zeroes */
5367 /* Parse arguments. */
5368 innermost_block = NULL;
5370 exp = parse_exp_1 (&arg, 0, 0);
5372 exp_valid_block = innermost_block;
5373 mark = value_mark ();
5374 val = evaluate_expression (exp);
5375 release_value (val);
5376 if (VALUE_LAZY (val))
5377 value_fetch_lazy (val);
5380 while (*tok == ' ' || *tok == '\t')
5384 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5387 toklen = end_tok - tok;
5388 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5390 tok = cond_start = end_tok + 1;
5391 cond = parse_exp_1 (&tok, 0, 0);
5395 error ("Junk at end of command.");
5397 if (accessflag == hw_read)
5398 bp_type = bp_read_watchpoint;
5399 else if (accessflag == hw_access)
5400 bp_type = bp_access_watchpoint;
5402 bp_type = bp_hardware_watchpoint;
5404 mem_cnt = can_use_hardware_watchpoint (val);
5405 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5406 error ("Expression cannot be implemented with read/access watchpoint.");
5409 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5410 target_resources_ok =
5411 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5413 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5414 error ("Target does not support this type of hardware watchpoint.");
5416 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5417 error ("Target can only support one kind of HW watchpoint at a time.");
5420 #if defined(HPUXHPPA)
5421 /* On HP-UX if you set a h/w
5422 watchpoint before the "run" command, the inferior dies with a e.g.,
5423 SIGILL once you start it. I initially believed this was due to a
5424 bad interaction between page protection traps and the initial
5425 startup sequence by the dynamic linker.
5427 However, I tried avoiding that by having HP-UX's implementation of
5428 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5429 yet, which forced slow watches before a "run" or "attach", and it
5430 still fails somewhere in the startup code.
5432 Until I figure out what's happening, I'm disallowing watches altogether
5433 before the "run" or "attach" command. We'll tell the user they must
5434 set watches after getting the program started. */
5435 if (!target_has_execution)
5437 warning ("can't do that without a running program; try \"break main\", \"run\" first");
5440 #endif /* HPUXHPPA */
5442 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5443 watchpoint could not be set. */
5444 if (!mem_cnt || target_resources_ok <= 0)
5445 bp_type = bp_watchpoint;
5447 /* Now set up the breakpoint. */
5448 b = set_raw_breakpoint (sal, bp_type);
5449 set_breakpoint_count (breakpoint_count + 1);
5450 b->number = breakpoint_count;
5451 b->disposition = disp_donttouch;
5453 b->exp_valid_block = exp_valid_block;
5454 b->exp_string = savestring (exp_start, exp_end - exp_start);
5458 b->cond_string = savestring (cond_start, cond_end - cond_start);
5462 frame = block_innermost_frame (exp_valid_block);
5465 prev_frame = get_prev_frame (frame);
5466 b->watchpoint_frame = frame->frame;
5469 b->watchpoint_frame = (CORE_ADDR) 0;
5471 /* If the expression is "local", then set up a "watchpoint scope"
5472 breakpoint at the point where we've left the scope of the watchpoint
5474 if (innermost_block)
5478 struct breakpoint *scope_breakpoint;
5479 struct symtab_and_line scope_sal;
5481 INIT_SAL (&scope_sal); /* initialize to zeroes */
5482 scope_sal.pc = get_frame_pc (prev_frame);
5483 scope_sal.section = find_pc_overlay (scope_sal.pc);
5485 scope_breakpoint = set_raw_breakpoint (scope_sal,
5486 bp_watchpoint_scope);
5487 set_breakpoint_count (breakpoint_count + 1);
5488 scope_breakpoint->number = breakpoint_count;
5490 scope_breakpoint->enable_state = bp_enabled;
5492 /* Automatically delete the breakpoint when it hits. */
5493 scope_breakpoint->disposition = disp_del;
5495 /* Only break in the proper frame (help with recursion). */
5496 scope_breakpoint->frame = prev_frame->frame;
5498 /* Set the address at which we will stop. */
5499 scope_breakpoint->address = get_frame_pc (prev_frame);
5501 /* The scope breakpoint is related to the watchpoint. We
5502 will need to act on them together. */
5503 b->related_breakpoint = scope_breakpoint;
5506 value_free_to_mark (mark);
5510 /* Return count of locations need to be watched and can be handled
5511 in hardware. If the watchpoint can not be handled
5512 in hardware return zero. */
5514 #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
5515 #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(BYTE_SIZE) \
5516 ((BYTE_SIZE) <= (REGISTER_SIZE))
5519 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5520 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5521 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
5525 can_use_hardware_watchpoint (struct value *v)
5527 int found_memory_cnt = 0;
5528 struct value *head = v;
5530 /* Did the user specifically forbid us to use hardware watchpoints? */
5531 if (!can_use_hw_watchpoints)
5534 /* Make sure that the value of the expression depends only upon
5535 memory contents, and values computed from them within GDB. If we
5536 find any register references or function calls, we can't use a
5537 hardware watchpoint.
5539 The idea here is that evaluating an expression generates a series
5540 of values, one holding the value of every subexpression. (The
5541 expression a*b+c has five subexpressions: a, b, a*b, c, and
5542 a*b+c.) GDB's values hold almost enough information to establish
5543 the criteria given above --- they identify memory lvalues,
5544 register lvalues, computed values, etcetera. So we can evaluate
5545 the expression, and then scan the chain of values that leaves
5546 behind to decide whether we can detect any possible change to the
5547 expression's final value using only hardware watchpoints.
5549 However, I don't think that the values returned by inferior
5550 function calls are special in any way. So this function may not
5551 notice that an expression involving an inferior function call
5552 can't be watched with hardware watchpoints. FIXME. */
5553 for (; v; v = v->next)
5555 if (VALUE_LVAL (v) == lval_memory)
5558 /* A lazy memory lvalue is one that GDB never needed to fetch;
5559 we either just used its address (e.g., `a' in `a.b') or
5560 we never needed it at all (e.g., `a' in `a,b'). */
5564 /* Ahh, memory we actually used! Check if we can cover
5565 it with hardware watchpoints. */
5566 struct type *vtype = check_typedef (VALUE_TYPE (v));
5568 /* We only watch structs and arrays if user asked for it
5569 explicitly, never if they just happen to appear in a
5570 middle of some value chain. */
5572 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5573 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5575 CORE_ADDR vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
5576 int len = TYPE_LENGTH (VALUE_TYPE (v));
5578 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5585 else if (v->lval != not_lval && v->modifiable == 0)
5586 return 0; /* ??? What does this represent? */
5587 else if (v->lval == lval_register)
5588 return 0; /* cannot watch a register with a HW watchpoint */
5591 /* The expression itself looks suitable for using a hardware
5592 watchpoint, but give the target machine a chance to reject it. */
5593 return found_memory_cnt;
5598 watch_command_wrapper (char *arg, int from_tty)
5600 watch_command (arg, from_tty);
5604 watch_command (char *arg, int from_tty)
5606 watch_command_1 (arg, hw_write, from_tty);
5611 rwatch_command_wrapper (char *arg, int from_tty)
5613 rwatch_command (arg, from_tty);
5617 rwatch_command (char *arg, int from_tty)
5619 watch_command_1 (arg, hw_read, from_tty);
5624 awatch_command_wrapper (char *arg, int from_tty)
5626 awatch_command (arg, from_tty);
5630 awatch_command (char *arg, int from_tty)
5632 watch_command_1 (arg, hw_access, from_tty);
5636 /* Helper routines for the until_command routine in infcmd.c. Here
5637 because it uses the mechanisms of breakpoints. */
5639 /* This function is called by fetch_inferior_event via the
5640 cmd_continuation pointer, to complete the until command. It takes
5641 care of cleaning up the temporary breakpoints set up by the until
5644 until_break_command_continuation (struct continuation_arg *arg)
5646 struct cleanup *cleanups;
5648 cleanups = (struct cleanup *) arg->data.pointer;
5649 do_exec_cleanups (cleanups);
5654 until_break_command (char *arg, int from_tty)
5656 struct symtabs_and_lines sals;
5657 struct symtab_and_line sal;
5658 struct frame_info *prev_frame = get_prev_frame (selected_frame);
5659 struct breakpoint *breakpoint;
5660 struct cleanup *old_chain;
5661 struct continuation_arg *arg1;
5664 clear_proceed_status ();
5666 /* Set a breakpoint where the user wants it and at return from
5669 if (default_breakpoint_valid)
5670 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
5671 default_breakpoint_line, (char ***) NULL);
5673 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
5674 0, (char ***) NULL);
5676 if (sals.nelts != 1)
5677 error ("Couldn't get information on specified line.");
5680 xfree (sals.sals); /* malloc'd, so freed */
5683 error ("Junk at end of arguments.");
5685 resolve_sal_pc (&sal);
5687 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
5689 if (!event_loop_p || !target_can_async_p ())
5690 old_chain = make_cleanup_delete_breakpoint (breakpoint);
5692 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
5694 /* If we are running asynchronously, and the target supports async
5695 execution, we are not waiting for the target to stop, in the call
5696 tp proceed, below. This means that we cannot delete the
5697 brekpoints until the target has actually stopped. The only place
5698 where we get a chance to do that is in fetch_inferior_event, so
5699 we must set things up for that. */
5701 if (event_loop_p && target_can_async_p ())
5703 /* In this case the arg for the continuation is just the point
5704 in the exec_cleanups chain from where to start doing
5705 cleanups, because all the continuation does is the cleanups in
5706 the exec_cleanup_chain. */
5708 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
5710 arg1->data.pointer = old_chain;
5712 add_continuation (until_break_command_continuation, arg1);
5715 /* Keep within the current frame */
5719 sal = find_pc_line (prev_frame->pc, 0);
5720 sal.pc = prev_frame->pc;
5721 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
5722 if (!event_loop_p || !target_can_async_p ())
5723 make_cleanup_delete_breakpoint (breakpoint);
5725 make_exec_cleanup_delete_breakpoint (breakpoint);
5728 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
5729 /* Do the cleanups now, anly if we are not running asynchronously,
5730 of if we are, but the target is still synchronous. */
5731 if (!event_loop_p || !target_can_async_p ())
5732 do_cleanups (old_chain);
5736 /* These aren't used; I don't konw what they were for. */
5737 /* Set a breakpoint at the catch clause for NAME. */
5739 catch_breakpoint (char *name)
5744 disable_catch_breakpoint (void)
5749 delete_catch_breakpoint (void)
5754 enable_catch_breakpoint (void)
5761 struct sal_chain *next;
5762 struct symtab_and_line sal;
5766 /* Not really used -- invocation in handle_gnu_4_16_catch_command
5767 had been commented out in the v.4.16 sources, and stays
5768 disabled there now because "catch NAME" syntax isn't allowed.
5770 /* This isn't used; I don't know what it was for. */
5771 /* For each catch clause identified in ARGS, run FUNCTION
5772 with that clause as an argument. */
5773 static struct symtabs_and_lines
5774 map_catch_names (char *args, int (*function) ())
5776 register char *p = args;
5778 struct symtabs_and_lines sals;
5780 struct sal_chain *sal_chain = 0;
5784 error_no_arg ("one or more catch names");
5792 /* Don't swallow conditional part. */
5793 if (p1[0] == 'i' && p1[1] == 'f'
5794 && (p1[2] == ' ' || p1[2] == '\t'))
5800 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
5804 if (*p1 && *p1 != ' ' && *p1 != '\t')
5805 error ("Arguments must be catch names.");
5811 struct sal_chain *next = (struct sal_chain *)
5812 alloca (sizeof (struct sal_chain));
5813 next->next = sal_chain;
5814 next->sal = get_catch_sal (p);
5819 printf_unfiltered ("No catch clause for exception %s.\n", p);
5824 while (*p == ' ' || *p == '\t')
5830 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
5832 static struct symtabs_and_lines
5833 get_catch_sals (int this_level_only)
5835 register struct blockvector *bl;
5836 register struct block *block;
5837 int index, have_default = 0;
5839 struct symtabs_and_lines sals;
5840 struct sal_chain *sal_chain = 0;
5841 char *blocks_searched;
5843 /* Not sure whether an error message is always the correct response,
5844 but it's better than a core dump. */
5845 if (selected_frame == NULL)
5846 error ("No selected frame.");
5847 block = get_frame_block (selected_frame);
5848 pc = selected_frame->pc;
5854 error ("No symbol table info available.\n");
5856 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
5857 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5858 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5862 CORE_ADDR end = BLOCK_END (block) - 4;
5865 if (bl != blockvector_for_pc (end, &index))
5866 error ("blockvector blotch");
5867 if (BLOCKVECTOR_BLOCK (bl, index) != block)
5868 error ("blockvector botch");
5869 last_index = BLOCKVECTOR_NBLOCKS (bl);
5872 /* Don't print out blocks that have gone by. */
5873 while (index < last_index
5874 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
5877 while (index < last_index
5878 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
5880 if (blocks_searched[index] == 0)
5882 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
5884 register struct symbol *sym;
5886 ALL_BLOCK_SYMBOLS (b, i, sym)
5888 if (STREQ (SYMBOL_NAME (sym), "default"))
5894 if (SYMBOL_CLASS (sym) == LOC_LABEL)
5896 struct sal_chain *next = (struct sal_chain *)
5897 alloca (sizeof (struct sal_chain));
5898 next->next = sal_chain;
5899 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym),
5904 blocks_searched[index] = 1;
5910 if (sal_chain && this_level_only)
5913 /* After handling the function's top-level block, stop.
5914 Don't continue to its superblock, the block of
5915 per-file symbols. */
5916 if (BLOCK_FUNCTION (block))
5918 block = BLOCK_SUPERBLOCK (block);
5923 struct sal_chain *tmp_chain;
5925 /* Count the number of entries. */
5926 for (index = 0, tmp_chain = sal_chain; tmp_chain;
5927 tmp_chain = tmp_chain->next)
5931 sals.sals = (struct symtab_and_line *)
5932 xmalloc (index * sizeof (struct symtab_and_line));
5933 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
5934 sals.sals[index] = sal_chain->sal;
5941 ep_skip_leading_whitespace (char **s)
5943 if ((s == NULL) || (*s == NULL))
5945 while (isspace (**s))
5949 /* This function examines a string, and attempts to find a token
5950 that might be an event name in the leading characters. If a
5951 possible match is found, a pointer to the last character of
5952 the token is returned. Else, NULL is returned. */
5955 ep_find_event_name_end (char *arg)
5958 char *event_name_end = NULL;
5960 /* If we could depend upon the presense of strrpbrk, we'd use that... */
5964 /* We break out of the loop when we find a token delimiter.
5965 Basically, we're looking for alphanumerics and underscores;
5966 anything else delimites the token. */
5969 if (!isalnum (*s) && (*s != '_'))
5975 return event_name_end;
5979 /* This function attempts to parse an optional "if <cond>" clause
5980 from the arg string. If one is not found, it returns NULL.
5982 Else, it returns a pointer to the condition string. (It does not
5983 attempt to evaluate the string against a particular block.) And,
5984 it updates arg to point to the first character following the parsed
5985 if clause in the arg string. */
5988 ep_parse_optional_if_clause (char **arg)
5992 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
5995 /* Skip the "if" keyword. */
5998 /* Skip any extra leading whitespace, and record the start of the
5999 condition string. */
6000 ep_skip_leading_whitespace (arg);
6003 /* Assume that the condition occupies the remainder of the arg string. */
6004 (*arg) += strlen (cond_string);
6009 /* This function attempts to parse an optional filename from the arg
6010 string. If one is not found, it returns NULL.
6012 Else, it returns a pointer to the parsed filename. (This function
6013 makes no attempt to verify that a file of that name exists, or is
6014 accessible.) And, it updates arg to point to the first character
6015 following the parsed filename in the arg string.
6017 Note that clients needing to preserve the returned filename for
6018 future access should copy it to their own buffers. */
6020 ep_parse_optional_filename (char **arg)
6022 static char filename[1024];
6027 if ((*arg_p == '\0') || isspace (*arg_p))
6045 /* Commands to deal with catching events, such as signals, exceptions,
6046 process start/exit, etc. */
6050 catch_fork, catch_vfork
6054 #if defined(CHILD_INSERT_FORK_CATCHPOINT) || defined(CHILD_INSERT_VFORK_CATCHPOINT)
6055 static void catch_fork_command_1 (catch_fork_kind fork_kind,
6056 char *arg, int tempflag, int from_tty);
6059 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6062 char *cond_string = NULL;
6064 ep_skip_leading_whitespace (&arg);
6066 /* The allowed syntax is:
6068 catch [v]fork if <cond>
6070 First, check if there's an if clause. */
6071 cond_string = ep_parse_optional_if_clause (&arg);
6073 if ((*arg != '\0') && !isspace (*arg))
6074 error ("Junk at end of arguments.");
6076 /* If this target supports it, create a fork or vfork catchpoint
6077 and enable reporting of such events. */
6081 create_fork_event_catchpoint (tempflag, cond_string);
6084 create_vfork_event_catchpoint (tempflag, cond_string);
6087 error ("unsupported or unknown fork kind; cannot catch it");
6093 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
6095 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6097 char *cond_string = NULL;
6099 ep_skip_leading_whitespace (&arg);
6101 /* The allowed syntax is:
6103 catch exec if <cond>
6105 First, check if there's an if clause. */
6106 cond_string = ep_parse_optional_if_clause (&arg);
6108 if ((*arg != '\0') && !isspace (*arg))
6109 error ("Junk at end of arguments.");
6111 /* If this target supports it, create an exec catchpoint
6112 and enable reporting of such events. */
6113 create_exec_event_catchpoint (tempflag, cond_string);
6117 #if defined(SOLIB_ADD)
6119 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6121 char *dll_pathname = NULL;
6122 char *cond_string = NULL;
6124 ep_skip_leading_whitespace (&arg);
6126 /* The allowed syntax is:
6128 catch load if <cond>
6129 catch load <filename>
6130 catch load <filename> if <cond>
6132 The user is not allowed to specify the <filename> after an
6135 We'll ignore the pathological case of a file named "if".
6137 First, check if there's an if clause. If so, then there
6138 cannot be a filename. */
6139 cond_string = ep_parse_optional_if_clause (&arg);
6141 /* If there was an if clause, then there cannot be a filename.
6142 Else, there might be a filename and an if clause. */
6143 if (cond_string == NULL)
6145 dll_pathname = ep_parse_optional_filename (&arg);
6146 ep_skip_leading_whitespace (&arg);
6147 cond_string = ep_parse_optional_if_clause (&arg);
6150 if ((*arg != '\0') && !isspace (*arg))
6151 error ("Junk at end of arguments.");
6153 /* Create a load breakpoint that only triggers when a load of
6154 the specified dll (or any dll, if no pathname was specified)
6156 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6157 dll_pathname, cond_string);
6161 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6163 char *dll_pathname = NULL;
6164 char *cond_string = NULL;
6166 ep_skip_leading_whitespace (&arg);
6168 /* The allowed syntax is:
6170 catch unload if <cond>
6171 catch unload <filename>
6172 catch unload <filename> if <cond>
6174 The user is not allowed to specify the <filename> after an
6177 We'll ignore the pathological case of a file named "if".
6179 First, check if there's an if clause. If so, then there
6180 cannot be a filename. */
6181 cond_string = ep_parse_optional_if_clause (&arg);
6183 /* If there was an if clause, then there cannot be a filename.
6184 Else, there might be a filename and an if clause. */
6185 if (cond_string == NULL)
6187 dll_pathname = ep_parse_optional_filename (&arg);
6188 ep_skip_leading_whitespace (&arg);
6189 cond_string = ep_parse_optional_if_clause (&arg);
6192 if ((*arg != '\0') && !isspace (*arg))
6193 error ("Junk at end of arguments.");
6195 /* Create an unload breakpoint that only triggers when an unload of
6196 the specified dll (or any dll, if no pathname was specified)
6198 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6199 dll_pathname, cond_string);
6201 #endif /* SOLIB_ADD */
6203 /* Commands to deal with catching exceptions. */
6205 /* Set a breakpoint at the specified callback routine for an
6206 exception event callback */
6209 create_exception_catchpoint (int tempflag, char *cond_string,
6210 enum exception_event_kind ex_event,
6211 struct symtab_and_line *sal)
6213 struct breakpoint *b;
6214 int thread = -1; /* All threads. */
6217 if (!sal) /* no exception support? */
6222 case EX_EVENT_THROW:
6223 bptype = bp_catch_throw;
6225 case EX_EVENT_CATCH:
6226 bptype = bp_catch_catch;
6228 default: /* error condition */
6229 error ("Internal error -- invalid catchpoint kind");
6232 b = set_raw_breakpoint (*sal, bptype);
6233 set_breakpoint_count (breakpoint_count + 1);
6234 b->number = breakpoint_count;
6236 b->cond_string = (cond_string == NULL) ?
6237 NULL : savestring (cond_string, strlen (cond_string));
6239 b->addr_string = NULL;
6240 b->enable_state = bp_enabled;
6241 b->disposition = tempflag ? disp_del : disp_donttouch;
6245 /* Deal with "catch catch" and "catch throw" commands */
6248 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6249 int tempflag, int from_tty)
6251 char *cond_string = NULL;
6252 struct symtab_and_line *sal = NULL;
6254 ep_skip_leading_whitespace (&arg);
6256 cond_string = ep_parse_optional_if_clause (&arg);
6258 if ((*arg != '\0') && !isspace (*arg))
6259 error ("Junk at end of arguments.");
6261 if ((ex_event != EX_EVENT_THROW) &&
6262 (ex_event != EX_EVENT_CATCH))
6263 error ("Unsupported or unknown exception event; cannot catch it");
6265 /* See if we can find a callback routine */
6266 sal = target_enable_exception_callback (ex_event, 1);
6270 /* We have callbacks from the runtime system for exceptions.
6271 Set a breakpoint on the sal found, if no errors */
6272 if (sal != (struct symtab_and_line *) -1)
6273 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6275 return; /* something went wrong with setting up callbacks */
6279 /* No callbacks from runtime system for exceptions.
6280 Try GNU C++ exception breakpoints using labels in debug info. */
6281 if (ex_event == EX_EVENT_CATCH)
6283 handle_gnu_4_16_catch_command (arg, tempflag, from_tty);
6285 else if (ex_event == EX_EVENT_THROW)
6287 /* Set a breakpoint on __raise_exception () */
6289 warning ("Unsupported with this platform/compiler combination.");
6290 warning ("Perhaps you can achieve the effect you want by setting");
6291 warning ("a breakpoint on __raise_exception().");
6296 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6297 inside a catch_errors */
6300 cover_target_enable_exception_callback (PTR arg)
6302 args_for_catchpoint_enable *args = arg;
6303 struct symtab_and_line *sal;
6304 sal = target_enable_exception_callback (args->kind, args->enable_p);
6307 else if (sal == (struct symtab_and_line *) -1)
6310 return 1; /*is valid */
6315 /* This is the original v.4.16 and earlier version of the
6316 catch_command_1() function. Now that other flavours of "catch"
6317 have been introduced, and since exception handling can be handled
6318 in other ways (through target ops) also, this is used only for the
6319 GNU C++ exception handling system.
6320 Note: Only the "catch" flavour of GDB 4.16 is handled here. The
6321 "catch NAME" is now no longer allowed in catch_command_1(). Also,
6322 there was no code in GDB 4.16 for "catch throw".
6324 Called from catch_exception_command_1 () */
6328 handle_gnu_4_16_catch_command (char *arg, int tempflag, int from_tty)
6330 /* First, translate ARG into something we can deal with in terms
6333 struct symtabs_and_lines sals;
6334 struct symtab_and_line sal;
6335 register struct expression *cond = 0;
6336 register struct breakpoint *b;
6340 INIT_SAL (&sal); /* initialize to zeroes */
6342 /* If no arg given, or if first arg is 'if ', all active catch clauses
6343 are breakpointed. */
6345 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
6346 && (arg[2] == ' ' || arg[2] == '\t')))
6348 /* Grab all active catch clauses. */
6349 sals = get_catch_sals (0);
6353 /* Grab selected catch clauses. */
6354 error ("catch NAME not implemented");
6357 /* Not sure why this code has been disabled. I'm leaving
6358 it disabled. We can never come here now anyway
6359 since we don't allow the "catch NAME" syntax.
6362 /* This isn't used; I don't know what it was for. */
6363 sals = map_catch_names (arg, catch_breakpoint);
6371 for (i = 0; i < sals.nelts; i++)
6373 resolve_sal_pc (&sals.sals[i]);
6377 if (arg[0] == 'i' && arg[1] == 'f'
6378 && (arg[2] == ' ' || arg[2] == '\t'))
6379 cond = parse_exp_1 ((arg += 2, &arg),
6380 block_for_pc (sals.sals[i].pc), 0);
6382 error ("Junk at end of arguments.");
6387 for (i = 0; i < sals.nelts; i++)
6392 describe_other_breakpoints (sal.pc, sal.section);
6394 /* Important -- this is an ordinary breakpoint. For platforms
6395 with callback support for exceptions,
6396 create_exception_catchpoint() will create special bp types
6397 (bp_catch_catch and bp_catch_throw), and there is code in
6398 insert_breakpoints() and elsewhere that depends on that. */
6399 b = set_raw_breakpoint (sal, bp_breakpoint);
6400 set_breakpoint_count (breakpoint_count + 1);
6401 b->number = breakpoint_count;
6404 b->enable_state = bp_enabled;
6405 b->disposition = tempflag ? disp_del : disp_donttouch;
6412 warning ("Multiple breakpoints were set.");
6413 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
6419 /* This creates a temporary internal breakpoint
6420 just to placate infrun */
6421 static struct breakpoint *
6422 create_temp_exception_breakpoint (CORE_ADDR pc)
6424 struct symtab_and_line sal;
6425 struct breakpoint *b;
6432 b = set_raw_breakpoint (sal, bp_breakpoint);
6434 b->disposition = disp_del;
6435 b->enable_state = bp_enabled;
6437 b->number = internal_breakpoint_number--;
6443 catch_command_1 (char *arg, int tempflag, int from_tty)
6446 /* The first argument may be an event name, such as "start" or "load".
6447 If so, then handle it as such. If it doesn't match an event name,
6448 then attempt to interpret it as an exception name. (This latter is
6449 the v4.16-and-earlier GDB meaning of the "catch" command.)
6451 First, try to find the bounds of what might be an event name. */
6452 char *arg1_start = arg;
6456 if (arg1_start == NULL)
6458 /* Old behaviour was to use pre-v-4.16 syntax */
6459 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6461 /* Now, this is not allowed */
6462 error ("Catch requires an event name.");
6465 arg1_end = ep_find_event_name_end (arg1_start);
6466 if (arg1_end == NULL)
6467 error ("catch requires an event");
6468 arg1_length = arg1_end + 1 - arg1_start;
6470 /* Try to match what we found against known event names. */
6471 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6473 error ("Catch of signal not yet implemented");
6475 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6477 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6478 tempflag, from_tty);
6480 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6482 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6483 tempflag, from_tty);
6485 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6487 error ("Catch of thread_start not yet implemented");
6489 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6491 error ("Catch of thread_exit not yet implemented");
6493 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6495 error ("Catch of thread_join not yet implemented");
6497 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6499 error ("Catch of start not yet implemented");
6501 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6503 error ("Catch of exit not yet implemented");
6505 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6507 #if defined(CHILD_INSERT_FORK_CATCHPOINT)
6508 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6510 error ("Catch of fork not yet implemented");
6513 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6515 #if defined(CHILD_INSERT_VFORK_CATCHPOINT)
6516 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6518 error ("Catch of vfork not yet implemented");
6521 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6523 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
6524 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6526 error ("Catch of exec not yet implemented");
6529 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6531 #if defined(SOLIB_ADD)
6532 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6534 error ("Catch of load not implemented");
6537 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6539 #if defined(SOLIB_ADD)
6540 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6542 error ("Catch of load not implemented");
6545 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6547 error ("Catch of stop not yet implemented");
6550 /* This doesn't appear to be an event name */
6554 /* Pre-v.4.16 behaviour was to treat the argument
6555 as the name of an exception */
6556 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6557 /* Now this is not allowed */
6558 error ("Unknown event kind specified for catch");
6563 /* Used by the gui, could be made a worker for other things. */
6566 set_breakpoint_sal (struct symtab_and_line sal)
6568 struct breakpoint *b;
6569 b = set_raw_breakpoint (sal, bp_breakpoint);
6570 set_breakpoint_count (breakpoint_count + 1);
6571 b->number = breakpoint_count;
6578 /* These aren't used; I don't know what they were for. */
6579 /* Disable breakpoints on all catch clauses described in ARGS. */
6581 disable_catch (char *args)
6583 /* Map the disable command to catch clauses described in ARGS. */
6586 /* Enable breakpoints on all catch clauses described in ARGS. */
6588 enable_catch (char *args)
6590 /* Map the disable command to catch clauses described in ARGS. */
6593 /* Delete breakpoints on all catch clauses in the active scope. */
6595 delete_catch (char *args)
6597 /* Map the delete command to catch clauses described in ARGS. */
6602 catch_command (char *arg, int from_tty)
6604 catch_command_1 (arg, 0, from_tty);
6609 tcatch_command (char *arg, int from_tty)
6611 catch_command_1 (arg, 1, from_tty);
6616 clear_command (char *arg, int from_tty)
6618 register struct breakpoint *b, *b1;
6620 struct symtabs_and_lines sals;
6621 struct symtab_and_line sal;
6622 register struct breakpoint *found;
6627 sals = decode_line_spec (arg, 1);
6632 sals.sals = (struct symtab_and_line *)
6633 xmalloc (sizeof (struct symtab_and_line));
6634 INIT_SAL (&sal); /* initialize to zeroes */
6635 sal.line = default_breakpoint_line;
6636 sal.symtab = default_breakpoint_symtab;
6637 sal.pc = default_breakpoint_address;
6638 if (sal.symtab == 0)
6639 error ("No source file specified.");
6647 /* For each line spec given, delete bps which correspond
6648 to it. We do this in two loops: the first loop looks at
6649 the initial bp(s) in the chain which should be deleted,
6650 the second goes down the rest of the chain looking ahead
6651 one so it can take those bps off the chain without messing
6655 for (i = 0; i < sals.nelts; i++)
6657 /* If exact pc given, clear bpts at that pc.
6658 If line given (pc == 0), clear all bpts on specified line.
6659 If defaulting, clear all bpts on default line
6662 defaulting sal.pc != 0 tests to do
6667 1 0 <can't happen> */
6670 found = (struct breakpoint *) 0;
6673 while (breakpoint_chain
6674 /* Why don't we check here that this is not
6675 a watchpoint, etc., as we do below?
6676 I can't make it fail, but don't know
6677 what's stopping the failure: a watchpoint
6678 of the same address as "sal.pc" should
6679 wind up being deleted. */
6681 && (((sal.pc && (breakpoint_chain->address == sal.pc)) &&
6682 (overlay_debugging == 0 ||
6683 breakpoint_chain->section == sal.section))
6684 || ((default_match || (0 == sal.pc))
6685 && breakpoint_chain->source_file != NULL
6686 && sal.symtab != NULL
6687 && STREQ (breakpoint_chain->source_file, sal.symtab->filename)
6688 && breakpoint_chain->line_number == sal.line)))
6691 b1 = breakpoint_chain;
6692 breakpoint_chain = b1->next;
6700 && b->next->type != bp_none
6701 && b->next->type != bp_watchpoint
6702 && b->next->type != bp_hardware_watchpoint
6703 && b->next->type != bp_read_watchpoint
6704 && b->next->type != bp_access_watchpoint
6705 && (((sal.pc && (b->next->address == sal.pc)) &&
6706 (overlay_debugging == 0 ||
6707 b->next->section == sal.section))
6708 || ((default_match || (0 == sal.pc))
6709 && b->next->source_file != NULL
6710 && sal.symtab != NULL
6711 && STREQ (b->next->source_file, sal.symtab->filename)
6712 && b->next->line_number == sal.line)))
6725 error ("No breakpoint at %s.", arg);
6727 error ("No breakpoint at this line.");
6731 from_tty = 1; /* Always report if deleted more than one */
6733 printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6734 breakpoints_changed ();
6738 printf_unfiltered ("%d ", found->number);
6740 delete_breakpoint (found);
6744 putchar_unfiltered ('\n');
6749 /* Delete breakpoint in BS if they are `delete' breakpoints and
6750 all breakpoints that are marked for deletion, whether hit or not.
6751 This is called after any breakpoint is hit, or after errors. */
6754 breakpoint_auto_delete (bpstat bs)
6756 struct breakpoint *b, *temp;
6758 for (; bs; bs = bs->next)
6759 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6761 delete_breakpoint (bs->breakpoint_at);
6763 ALL_BREAKPOINTS_SAFE (b, temp)
6765 if (b->disposition == disp_del_at_next_stop)
6766 delete_breakpoint (b);
6770 /* Delete a breakpoint and clean up all traces of it in the data
6774 delete_breakpoint (struct breakpoint *bpt)
6776 register struct breakpoint *b;
6780 error ("Internal error (attempted to delete a NULL breakpoint)");
6783 /* Has this bp already been deleted? This can happen because multiple
6784 lists can hold pointers to bp's. bpstat lists are especial culprits.
6786 One example of this happening is a watchpoint's scope bp. When the
6787 scope bp triggers, we notice that the watchpoint is out of scope, and
6788 delete it. We also delete its scope bp. But the scope bp is marked
6789 "auto-deleting", and is already on a bpstat. That bpstat is then
6790 checked for auto-deleting bp's, which are deleted.
6792 A real solution to this problem might involve reference counts in bp's,
6793 and/or giving them pointers back to their referencing bpstat's, and
6794 teaching delete_breakpoint to only free a bp's storage when no more
6795 references were extent. A cheaper bandaid was chosen. */
6796 if (bpt->type == bp_none)
6799 if (delete_breakpoint_hook)
6800 delete_breakpoint_hook (bpt);
6801 breakpoint_delete_event (bpt->number);
6804 remove_breakpoint (bpt, mark_inserted);
6806 if (breakpoint_chain == bpt)
6807 breakpoint_chain = bpt->next;
6809 /* If we have callback-style exception catchpoints, don't go through
6810 the adjustments to the C++ runtime library etc. if the inferior
6811 isn't actually running. target_enable_exception_callback for a
6812 null target ops vector gives an undesirable error message, so we
6813 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6814 exceptions are supported in this way, it's OK for now. FIXME */
6815 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6817 static char message1[] = "Error in deleting catchpoint %d:\n";
6818 static char message[sizeof (message1) + 30];
6819 args_for_catchpoint_enable args;
6821 /* Format possible error msg */
6822 sprintf (message, message1, bpt->number);
6823 args.kind = bpt->type == bp_catch_catch ?
6824 EX_EVENT_CATCH : EX_EVENT_THROW;
6826 catch_errors (cover_target_enable_exception_callback, &args,
6827 message, RETURN_MASK_ALL);
6834 b->next = bpt->next;
6838 check_duplicates (bpt);
6839 /* If this breakpoint was inserted, and there is another breakpoint
6840 at the same address, we need to insert the other breakpoint. */
6842 && bpt->type != bp_hardware_watchpoint
6843 && bpt->type != bp_read_watchpoint
6844 && bpt->type != bp_access_watchpoint
6845 && bpt->type != bp_catch_fork
6846 && bpt->type != bp_catch_vfork
6847 && bpt->type != bp_catch_exec)
6850 if (b->address == bpt->address
6851 && b->section == bpt->section
6853 && b->enable_state != bp_disabled
6854 && b->enable_state != bp_shlib_disabled
6855 && b->enable_state != bp_call_disabled)
6859 /* We should never reach this point if there is a permanent
6860 breakpoint at the same address as the one being deleted.
6861 If there is a permanent breakpoint somewhere, it should
6862 always be the only one inserted. */
6863 if (b->enable_state == bp_permanent)
6864 internal_error (__FILE__, __LINE__,
6865 "another breakpoint was inserted on top of "
6866 "a permanent breakpoint");
6868 if (b->type == bp_hardware_breakpoint)
6869 val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
6871 val = target_insert_breakpoint (b->address, b->shadow_contents);
6875 target_terminal_ours_for_output ();
6876 warning ("Cannot insert breakpoint %d:", b->number);
6877 memory_error (val, b->address); /* which bombs us out */
6884 free_command_lines (&bpt->commands);
6887 if (bpt->cond_string != NULL)
6888 xfree (bpt->cond_string);
6889 if (bpt->addr_string != NULL)
6890 xfree (bpt->addr_string);
6891 if (bpt->exp != NULL)
6893 if (bpt->exp_string != NULL)
6894 xfree (bpt->exp_string);
6895 if (bpt->val != NULL)
6896 value_free (bpt->val);
6897 if (bpt->source_file != NULL)
6898 xfree (bpt->source_file);
6899 if (bpt->dll_pathname != NULL)
6900 xfree (bpt->dll_pathname);
6901 if (bpt->triggered_dll_pathname != NULL)
6902 xfree (bpt->triggered_dll_pathname);
6903 if (bpt->exec_pathname != NULL)
6904 xfree (bpt->exec_pathname);
6906 /* Be sure no bpstat's are pointing at it after it's been freed. */
6907 /* FIXME, how can we find all bpstat's?
6908 We just check stop_bpstat for now. */
6909 for (bs = stop_bpstat; bs; bs = bs->next)
6910 if (bs->breakpoint_at == bpt)
6912 bs->breakpoint_at = NULL;
6914 /* we'd call bpstat_clear_actions, but that free's stuff and due
6915 to the multiple pointers pointing to one item with no
6916 reference counts found anywhere through out the bpstat's (how
6917 do you spell fragile?), we don't want to free things twice --
6918 better a memory leak than a corrupt malloc pool! */
6919 bs->commands = NULL;
6922 /* On the chance that someone will soon try again to delete this same
6923 bp, we mark it as deleted before freeing its storage. */
6924 bpt->type = bp_none;
6930 do_delete_breakpoint_cleanup (void *b)
6932 delete_breakpoint (b);
6936 make_cleanup_delete_breakpoint (struct breakpoint *b)
6938 return make_cleanup (do_delete_breakpoint_cleanup, b);
6942 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
6944 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
6948 delete_command (char *arg, int from_tty)
6950 struct breakpoint *b, *temp;
6954 int breaks_to_delete = 0;
6956 /* Delete all breakpoints if no argument.
6957 Do not delete internal or call-dummy breakpoints, these
6958 have to be deleted with an explicit breakpoint number argument. */
6961 if (b->type != bp_call_dummy &&
6962 b->type != bp_shlib_event &&
6963 b->type != bp_thread_event &&
6965 breaks_to_delete = 1;
6968 /* Ask user only if there are some breakpoints to delete. */
6970 || (breaks_to_delete && query ("Delete all breakpoints? ")))
6972 ALL_BREAKPOINTS_SAFE (b, temp)
6974 if (b->type != bp_call_dummy &&
6975 b->type != bp_shlib_event &&
6976 b->type != bp_thread_event &&
6978 delete_breakpoint (b);
6983 map_breakpoint_numbers (arg, delete_breakpoint);
6986 /* Reset a breakpoint given it's struct breakpoint * BINT.
6987 The value we return ends up being the return value from catch_errors.
6988 Unused in this case. */
6991 breakpoint_re_set_one (PTR bint)
6993 /* get past catch_errs */
6994 struct breakpoint *b = (struct breakpoint *) bint;
6997 struct symtabs_and_lines sals;
6999 enum enable_state save_enable;
7004 warning ("attempted to reset apparently deleted breakpoint #%d?",
7008 case bp_hardware_breakpoint:
7010 case bp_catch_unload:
7011 if (b->addr_string == NULL)
7013 /* Anything without a string can't be re-set. */
7014 delete_breakpoint (b);
7017 /* In case we have a problem, disable this breakpoint. We'll restore
7018 its status if we succeed. */
7019 save_enable = b->enable_state;
7020 b->enable_state = bp_disabled;
7022 set_language (b->language);
7023 input_radix = b->input_radix;
7025 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL);
7026 for (i = 0; i < sals.nelts; i++)
7028 resolve_sal_pc (&sals.sals[i]);
7030 /* Reparse conditions, they might contain references to the
7032 if (b->cond_string != NULL)
7037 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7040 /* We need to re-set the breakpoint if the address changes... */
7041 if (b->address != sals.sals[i].pc
7042 /* ...or new and old breakpoints both have source files, and
7043 the source file name or the line number changes... */
7044 || (b->source_file != NULL
7045 && sals.sals[i].symtab != NULL
7046 && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
7047 || b->line_number != sals.sals[i].line)
7049 /* ...or we switch between having a source file and not having
7051 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7054 if (b->source_file != NULL)
7055 xfree (b->source_file);
7056 if (sals.sals[i].symtab == NULL)
7057 b->source_file = NULL;
7060 savestring (sals.sals[i].symtab->filename,
7061 strlen (sals.sals[i].symtab->filename));
7062 b->line_number = sals.sals[i].line;
7063 b->address = sals.sals[i].pc;
7065 /* Used to check for duplicates here, but that can
7066 cause trouble, as it doesn't check for disable
7071 /* Might be better to do this just once per breakpoint_re_set,
7072 rather than once for every breakpoint. */
7073 breakpoints_changed ();
7075 b->section = sals.sals[i].section;
7076 b->enable_state = save_enable; /* Restore it, this worked. */
7079 /* Now that this is re-enabled, check_duplicates
7081 check_duplicates (b);
7088 case bp_hardware_watchpoint:
7089 case bp_read_watchpoint:
7090 case bp_access_watchpoint:
7091 innermost_block = NULL;
7092 /* The issue arises of what context to evaluate this in. The
7093 same one as when it was set, but what does that mean when
7094 symbols have been re-read? We could save the filename and
7095 functionname, but if the context is more local than that, the
7096 best we could do would be something like how many levels deep
7097 and which index at that particular level, but that's going to
7098 be less stable than filenames or function names. */
7100 /* So for now, just use a global context. */
7103 b->exp = parse_expression (b->exp_string);
7104 b->exp_valid_block = innermost_block;
7105 mark = value_mark ();
7107 value_free (b->val);
7108 b->val = evaluate_expression (b->exp);
7109 release_value (b->val);
7110 if (VALUE_LAZY (b->val))
7111 value_fetch_lazy (b->val);
7113 if (b->cond_string != NULL)
7118 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7120 if (b->enable_state == bp_enabled)
7122 value_free_to_mark (mark);
7124 case bp_catch_catch:
7125 case bp_catch_throw:
7127 /* We needn't really do anything to reset these, since the mask
7128 that requests them is unaffected by e.g., new libraries being
7131 case bp_catch_vfork:
7136 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
7138 /* Delete longjmp breakpoints, they will be reset later by
7139 breakpoint_re_set. */
7141 case bp_longjmp_resume:
7142 delete_breakpoint (b);
7145 /* This breakpoint is special, it's set up when the inferior
7146 starts and we really don't want to touch it. */
7147 case bp_shlib_event:
7149 /* Like bp_shlib_event, this breakpoint type is special.
7150 Once it is set up, we do not want to touch it. */
7151 case bp_thread_event:
7153 /* Keep temporary breakpoints, which can be encountered when we step
7154 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7155 Otherwise these should have been blown away via the cleanup chain
7156 or by breakpoint_init_inferior when we rerun the executable. */
7159 case bp_watchpoint_scope:
7161 case bp_step_resume:
7168 /* Re-set all breakpoints after symbols have been re-loaded. */
7170 breakpoint_re_set (void)
7172 struct breakpoint *b, *temp;
7173 enum language save_language;
7174 int save_input_radix;
7175 static char message1[] = "Error in re-setting breakpoint %d:\n";
7176 char message[sizeof (message1) + 30 /* slop */ ];
7178 save_language = current_language->la_language;
7179 save_input_radix = input_radix;
7180 ALL_BREAKPOINTS_SAFE (b, temp)
7182 /* Format possible error msg */
7183 sprintf (message, message1, b->number);
7184 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7186 set_language (save_language);
7187 input_radix = save_input_radix;
7189 #ifdef GET_LONGJMP_TARGET
7190 create_longjmp_breakpoint ("longjmp");
7191 create_longjmp_breakpoint ("_longjmp");
7192 create_longjmp_breakpoint ("siglongjmp");
7193 create_longjmp_breakpoint ("_siglongjmp");
7194 create_longjmp_breakpoint (NULL);
7198 /* Took this out (temporarily at least), since it produces an extra
7199 blank line at startup. This messes up the gdbtests. -PB */
7200 /* Blank line to finish off all those mention() messages we just printed. */
7201 printf_filtered ("\n");
7205 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7206 If from_tty is nonzero, it prints a message to that effect,
7207 which ends with a period (no newline). */
7209 /* Reset the thread number of this breakpoint:
7211 - If the breakpoint is for all threads, leave it as-is.
7212 - Else, reset it to the current thread for inferior_ptid. */
7214 breakpoint_re_set_thread (struct breakpoint *b)
7216 if (b->thread != -1)
7218 if (in_thread_list (inferior_ptid))
7219 b->thread = pid_to_thread_id (inferior_ptid);
7224 set_ignore_count (int bptnum, int count, int from_tty)
7226 register struct breakpoint *b;
7232 if (b->number == bptnum)
7234 b->ignore_count = count;
7237 else if (count == 0)
7238 printf_filtered ("Will stop next time breakpoint %d is reached.",
7240 else if (count == 1)
7241 printf_filtered ("Will ignore next crossing of breakpoint %d.",
7244 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
7246 breakpoints_changed ();
7250 error ("No breakpoint number %d.", bptnum);
7253 /* Clear the ignore counts of all breakpoints. */
7255 breakpoint_clear_ignore_counts (void)
7257 struct breakpoint *b;
7260 b->ignore_count = 0;
7263 /* Command to set ignore-count of breakpoint N to COUNT. */
7266 ignore_command (char *args, int from_tty)
7272 error_no_arg ("a breakpoint number");
7274 num = get_number (&p);
7276 error ("bad breakpoint number: '%s'", args);
7278 error ("Second argument (specified ignore-count) is missing.");
7280 set_ignore_count (num,
7281 longest_to_int (value_as_long (parse_and_eval (p))),
7283 printf_filtered ("\n");
7284 breakpoints_changed ();
7287 /* Call FUNCTION on each of the breakpoints
7288 whose numbers are given in ARGS. */
7291 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7293 register char *p = args;
7296 register struct breakpoint *b, *tmp;
7300 error_no_arg ("one or more breakpoint numbers");
7307 num = get_number_or_range (&p1);
7310 warning ("bad breakpoint number at or near '%s'", p);
7314 ALL_BREAKPOINTS_SAFE (b, tmp)
7315 if (b->number == num)
7317 struct breakpoint *related_breakpoint = b->related_breakpoint;
7320 if (related_breakpoint)
7321 function (related_breakpoint);
7325 printf_unfiltered ("No breakpoint number %d.\n", num);
7332 disable_breakpoint (struct breakpoint *bpt)
7334 /* Never disable a watchpoint scope breakpoint; we want to
7335 hit them when we leave scope so we can delete both the
7336 watchpoint and its scope breakpoint at that time. */
7337 if (bpt->type == bp_watchpoint_scope)
7340 /* You can't disable permanent breakpoints. */
7341 if (bpt->enable_state == bp_permanent)
7344 bpt->enable_state = bp_disabled;
7346 check_duplicates (bpt);
7348 if (modify_breakpoint_hook)
7349 modify_breakpoint_hook (bpt);
7350 breakpoint_modify_event (bpt->number);
7355 disable_command (char *args, int from_tty)
7357 register struct breakpoint *bpt;
7359 ALL_BREAKPOINTS (bpt)
7363 warning ("attempted to disable apparently deleted breakpoint #%d?",
7368 case bp_catch_unload:
7370 case bp_catch_vfork:
7372 case bp_catch_catch:
7373 case bp_catch_throw:
7374 case bp_hardware_breakpoint:
7376 case bp_hardware_watchpoint:
7377 case bp_read_watchpoint:
7378 case bp_access_watchpoint:
7379 disable_breakpoint (bpt);
7384 map_breakpoint_numbers (args, disable_breakpoint);
7388 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7390 struct frame_info *save_selected_frame = NULL;
7391 int save_selected_frame_level = -1;
7392 int target_resources_ok, other_type_used;
7395 if (bpt->type == bp_hardware_breakpoint)
7398 i = hw_breakpoint_used_count ();
7399 target_resources_ok =
7400 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7402 if (target_resources_ok == 0)
7403 error ("No hardware breakpoint support in the target.");
7404 else if (target_resources_ok < 0)
7405 error ("Hardware breakpoints used exceeds limit.");
7408 if (bpt->enable_state != bp_permanent)
7409 bpt->enable_state = bp_enabled;
7410 bpt->disposition = disposition;
7411 check_duplicates (bpt);
7412 breakpoints_changed ();
7414 if (bpt->type == bp_watchpoint ||
7415 bpt->type == bp_hardware_watchpoint ||
7416 bpt->type == bp_read_watchpoint ||
7417 bpt->type == bp_access_watchpoint)
7419 if (bpt->exp_valid_block != NULL)
7421 struct frame_info *fr =
7423 /* Ensure that we have the current frame. Else, this
7424 next query may pessimistically be answered as, "No,
7425 not within current scope". */
7426 get_current_frame ();
7427 fr = find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
7431 Cannot enable watchpoint %d because the block in which its expression\n\
7432 is valid is not currently in scope.\n", bpt->number);
7433 bpt->enable_state = bp_disabled;
7437 save_selected_frame = selected_frame;
7438 save_selected_frame_level = selected_frame_level;
7439 select_frame (fr, -1);
7442 value_free (bpt->val);
7443 mark = value_mark ();
7444 bpt->val = evaluate_expression (bpt->exp);
7445 release_value (bpt->val);
7446 if (VALUE_LAZY (bpt->val))
7447 value_fetch_lazy (bpt->val);
7449 if (bpt->type == bp_hardware_watchpoint ||
7450 bpt->type == bp_read_watchpoint ||
7451 bpt->type == bp_access_watchpoint)
7453 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7454 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7456 /* Hack around 'unused var' error for some targets here */
7458 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7459 bpt->type, i + mem_cnt, other_type_used);
7460 /* we can consider of type is bp_hardware_watchpoint, convert to
7461 bp_watchpoint in the following condition */
7462 if (target_resources_ok < 0)
7465 Cannot enable watchpoint %d because target watch resources\n\
7466 have been allocated for other watchpoints.\n", bpt->number);
7467 bpt->enable_state = bp_disabled;
7468 value_free_to_mark (mark);
7473 if (save_selected_frame_level >= 0)
7474 select_frame (save_selected_frame, save_selected_frame_level);
7475 value_free_to_mark (mark);
7477 if (modify_breakpoint_hook)
7478 modify_breakpoint_hook (bpt);
7479 breakpoint_modify_event (bpt->number);
7483 enable_breakpoint (struct breakpoint *bpt)
7485 do_enable_breakpoint (bpt, bpt->disposition);
7488 /* The enable command enables the specified breakpoints (or all defined
7489 breakpoints) so they once again become (or continue to be) effective
7490 in stopping the inferior. */
7494 enable_command (char *args, int from_tty)
7496 register struct breakpoint *bpt;
7498 ALL_BREAKPOINTS (bpt)
7502 warning ("attempted to enable apparently deleted breakpoint #%d?",
7507 case bp_catch_unload:
7509 case bp_catch_vfork:
7511 case bp_catch_catch:
7512 case bp_catch_throw:
7513 case bp_hardware_breakpoint:
7515 case bp_hardware_watchpoint:
7516 case bp_read_watchpoint:
7517 case bp_access_watchpoint:
7518 enable_breakpoint (bpt);
7523 map_breakpoint_numbers (args, enable_breakpoint);
7527 enable_once_breakpoint (struct breakpoint *bpt)
7529 do_enable_breakpoint (bpt, disp_disable);
7534 enable_once_command (char *args, int from_tty)
7536 map_breakpoint_numbers (args, enable_once_breakpoint);
7540 enable_delete_breakpoint (struct breakpoint *bpt)
7542 do_enable_breakpoint (bpt, disp_del);
7547 enable_delete_command (char *args, int from_tty)
7549 map_breakpoint_numbers (args, enable_delete_breakpoint);
7552 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7554 struct symtabs_and_lines
7555 decode_line_spec_1 (char *string, int funfirstline)
7557 struct symtabs_and_lines sals;
7559 error ("Empty line specification.");
7560 if (default_breakpoint_valid)
7561 sals = decode_line_1 (&string, funfirstline,
7562 default_breakpoint_symtab,
7563 default_breakpoint_line,
7566 sals = decode_line_1 (&string, funfirstline,
7567 (struct symtab *) NULL, 0, (char ***) NULL);
7569 error ("Junk at end of line specification: %s", string);
7574 _initialize_breakpoint (void)
7576 struct cmd_list_element *c;
7578 breakpoint_chain = 0;
7579 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7580 before a breakpoint is set. */
7581 breakpoint_count = 0;
7583 add_com ("ignore", class_breakpoint, ignore_command,
7584 "Set ignore-count of breakpoint number N to COUNT.\n\
7585 Usage is `ignore N COUNT'.");
7587 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7589 add_com ("commands", class_breakpoint, commands_command,
7590 "Set commands to be executed when a breakpoint is hit.\n\
7591 Give breakpoint number as argument after \"commands\".\n\
7592 With no argument, the targeted breakpoint is the last one set.\n\
7593 The commands themselves follow starting on the next line.\n\
7594 Type a line containing \"end\" to indicate the end of them.\n\
7595 Give \"silent\" as the first line to make the breakpoint silent;\n\
7596 then no output is printed when it is hit, except what the commands print.");
7598 add_com ("condition", class_breakpoint, condition_command,
7599 "Specify breakpoint number N to break only if COND is true.\n\
7600 Usage is `condition N COND', where N is an integer and COND is an\n\
7601 expression to be evaluated whenever breakpoint N is reached. ");
7603 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7604 "Set a temporary breakpoint. Args like \"break\" command.\n\
7605 Like \"break\" except the breakpoint is only temporary,\n\
7606 so it will be deleted when hit. Equivalent to \"break\" followed\n\
7607 by using \"enable delete\" on the breakpoint number.");
7608 c->completer = location_completer;
7610 c = add_com ("txbreak", class_breakpoint, tbreak_at_finish_command,
7611 "Set temporary breakpoint at procedure exit. Either there should\n\
7612 be no argument or the argument must be a depth.\n");
7613 c->completer = location_completer;
7615 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7616 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
7617 Like \"break\" except the breakpoint requires hardware support,\n\
7618 some target hardware may not have this support.");
7619 c->completer = location_completer;
7621 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7622 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7623 Like \"hbreak\" except the breakpoint is only temporary,\n\
7624 so it will be deleted when hit.");
7625 c->completer = location_completer;
7627 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7628 "Enable some breakpoints.\n\
7629 Give breakpoint numbers (separated by spaces) as arguments.\n\
7630 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7631 This is used to cancel the effect of the \"disable\" command.\n\
7632 With a subcommand you can enable temporarily.",
7633 &enablelist, "enable ", 1, &cmdlist);
7635 add_com ("ab", class_breakpoint, enable_command,
7636 "Enable some breakpoints.\n\
7637 Give breakpoint numbers (separated by spaces) as arguments.\n\
7638 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7639 This is used to cancel the effect of the \"disable\" command.\n\
7640 With a subcommand you can enable temporarily.");
7642 add_com_alias ("en", "enable", class_breakpoint, 1);
7644 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7645 "Enable some breakpoints.\n\
7646 Give breakpoint numbers (separated by spaces) as arguments.\n\
7647 This is used to cancel the effect of the \"disable\" command.\n\
7648 May be abbreviated to simply \"enable\".\n",
7649 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7651 add_cmd ("once", no_class, enable_once_command,
7652 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7653 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
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 ("delete", no_class, enable_delete_command,
7662 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7663 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7666 add_cmd ("once", no_class, enable_once_command,
7667 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7668 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7671 add_prefix_cmd ("disable", class_breakpoint, disable_command,
7672 "Disable some breakpoints.\n\
7673 Arguments are breakpoint numbers with spaces in between.\n\
7674 To disable all breakpoints, give no argument.\n\
7675 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7676 &disablelist, "disable ", 1, &cmdlist);
7677 add_com_alias ("dis", "disable", class_breakpoint, 1);
7678 add_com_alias ("disa", "disable", class_breakpoint, 1);
7680 add_com ("sb", class_breakpoint, disable_command,
7681 "Disable some breakpoints.\n\
7682 Arguments are breakpoint numbers with spaces in between.\n\
7683 To disable all breakpoints, give no argument.\n\
7684 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7686 add_cmd ("breakpoints", class_alias, disable_command,
7687 "Disable some breakpoints.\n\
7688 Arguments are breakpoint numbers with spaces in between.\n\
7689 To disable all breakpoints, give no argument.\n\
7690 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7691 This command may be abbreviated \"disable\".",
7694 add_prefix_cmd ("delete", class_breakpoint, delete_command,
7695 "Delete some breakpoints or auto-display expressions.\n\
7696 Arguments are breakpoint numbers with spaces in between.\n\
7697 To delete all breakpoints, give no argument.\n\
7699 Also a prefix command for deletion of other GDB objects.\n\
7700 The \"unset\" command is also an alias for \"delete\".",
7701 &deletelist, "delete ", 1, &cmdlist);
7702 add_com_alias ("d", "delete", class_breakpoint, 1);
7704 add_com ("db", class_breakpoint, delete_command,
7705 "Delete some breakpoints.\n\
7706 Arguments are breakpoint numbers with spaces in between.\n\
7707 To delete all breakpoints, give no argument.\n");
7709 add_cmd ("breakpoints", class_alias, delete_command,
7710 "Delete some breakpoints or auto-display expressions.\n\
7711 Arguments are breakpoint numbers with spaces in between.\n\
7712 To delete all breakpoints, give no argument.\n\
7713 This command may be abbreviated \"delete\".",
7716 add_com ("clear", class_breakpoint, clear_command,
7717 concat ("Clear breakpoint at specified line or function.\n\
7718 Argument may be line number, function name, or \"*\" and an address.\n\
7719 If line number is specified, all breakpoints in that line are cleared.\n\
7720 If function is specified, breakpoints at beginning of function are cleared.\n\
7721 If an address is specified, breakpoints at that address are cleared.\n\n",
7722 "With no argument, clears all breakpoints in the line that the selected frame\n\
7725 See also the \"delete\" command which clears breakpoints by number.", NULL));
7727 c = add_com ("break", class_breakpoint, break_command,
7728 concat ("Set breakpoint at specified line or function.\n\
7729 Argument may be line number, function name, or \"*\" and an address.\n\
7730 If line number is specified, break at start of code for that line.\n\
7731 If function is specified, break at start of code for that function.\n\
7732 If an address is specified, break at that exact address.\n",
7733 "With no arg, uses current execution address of selected stack frame.\n\
7734 This is useful for breaking on return to a stack frame.\n\
7736 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7738 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7739 c->completer = location_completer;
7741 add_com_alias ("b", "break", class_run, 1);
7742 add_com_alias ("br", "break", class_run, 1);
7743 add_com_alias ("bre", "break", class_run, 1);
7744 add_com_alias ("brea", "break", class_run, 1);
7746 add_com ("xbreak", class_breakpoint, break_at_finish_command,
7747 concat ("Set breakpoint at procedure exit. \n\
7748 Argument may be function name, or \"*\" and an address.\n\
7749 If function is specified, break at end of code for that function.\n\
7750 If an address is specified, break at the end of the function that contains \n\
7751 that exact address.\n",
7752 "With no arg, uses current execution address of selected stack frame.\n\
7753 This is useful for breaking on return to a stack frame.\n\
7755 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7757 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7758 add_com_alias ("xb", "xbreak", class_breakpoint, 1);
7759 add_com_alias ("xbr", "xbreak", class_breakpoint, 1);
7760 add_com_alias ("xbre", "xbreak", class_breakpoint, 1);
7761 add_com_alias ("xbrea", "xbreak", class_breakpoint, 1);
7765 add_com_alias ("ba", "break", class_breakpoint, 1);
7766 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7767 add_com ("bx", class_breakpoint, break_at_finish_at_depth_command,
7768 "Set breakpoint at procedure exit. Either there should\n\
7769 be no argument or the argument must be a depth.\n");
7774 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7775 "Break in function/address or break at a line in the current file.",
7776 &stoplist, "stop ", 1, &cmdlist);
7777 add_cmd ("in", class_breakpoint, stopin_command,
7778 "Break in function or address.\n", &stoplist);
7779 add_cmd ("at", class_breakpoint, stopat_command,
7780 "Break at a line in the current file.\n", &stoplist);
7781 add_com ("status", class_info, breakpoints_info,
7782 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7783 The \"Type\" column indicates one of:\n\
7784 \tbreakpoint - normal breakpoint\n\
7785 \twatchpoint - watchpoint\n\
7786 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7787 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7788 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7789 address and file/line number respectively.\n\n",
7790 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7791 are set to the address of the last breakpoint listed.\n\n\
7792 Convenience variable \"$bpnum\" contains the number of the last\n\
7793 breakpoint set.", NULL));
7796 add_info ("breakpoints", breakpoints_info,
7797 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7798 The \"Type\" column indicates one of:\n\
7799 \tbreakpoint - normal breakpoint\n\
7800 \twatchpoint - watchpoint\n\
7801 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7802 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7803 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7804 address and file/line number respectively.\n\n",
7805 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7806 are set to the address of the last breakpoint listed.\n\n\
7807 Convenience variable \"$bpnum\" contains the number of the last\n\
7808 breakpoint set.", NULL));
7811 add_com ("lb", class_breakpoint, breakpoints_info,
7812 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7813 The \"Type\" column indicates one of:\n\
7814 \tbreakpoint - normal breakpoint\n\
7815 \twatchpoint - watchpoint\n\
7816 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7817 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7818 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7819 address and file/line number respectively.\n\n",
7820 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7821 are set to the address of the last breakpoint listed.\n\n\
7822 Convenience variable \"$bpnum\" contains the number of the last\n\
7823 breakpoint set.", NULL));
7825 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
7826 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
7827 The \"Type\" column indicates one of:\n\
7828 \tbreakpoint - normal breakpoint\n\
7829 \twatchpoint - watchpoint\n\
7830 \tlongjmp - internal breakpoint used to step through longjmp()\n\
7831 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7832 \tuntil - internal breakpoint used by the \"until\" command\n\
7833 \tfinish - internal breakpoint used by the \"finish\" command\n",
7834 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7835 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7836 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7837 address and file/line number respectively.\n\n",
7838 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7839 are set to the address of the last breakpoint listed.\n\n\
7840 Convenience variable \"$bpnum\" contains the number of the last\n\
7841 breakpoint set.", NULL),
7842 &maintenanceinfolist);
7844 add_com ("catch", class_breakpoint, catch_command,
7845 "Set catchpoints to catch events.\n\
7846 Raised signals may be caught:\n\
7847 \tcatch signal - all signals\n\
7848 \tcatch signal <signame> - a particular signal\n\
7849 Raised exceptions may be caught:\n\
7850 \tcatch throw - all exceptions, when thrown\n\
7851 \tcatch throw <exceptname> - a particular exception, when thrown\n\
7852 \tcatch catch - all exceptions, when caught\n\
7853 \tcatch catch <exceptname> - a particular exception, when caught\n\
7854 Thread or process events may be caught:\n\
7855 \tcatch thread_start - any threads, just after creation\n\
7856 \tcatch thread_exit - any threads, just before expiration\n\
7857 \tcatch thread_join - any threads, just after joins\n\
7858 Process events may be caught:\n\
7859 \tcatch start - any processes, just after creation\n\
7860 \tcatch exit - any processes, just before expiration\n\
7861 \tcatch fork - calls to fork()\n\
7862 \tcatch vfork - calls to vfork()\n\
7863 \tcatch exec - calls to exec()\n\
7864 Dynamically-linked library events may be caught:\n\
7865 \tcatch load - loads of any library\n\
7866 \tcatch load <libname> - loads of a particular library\n\
7867 \tcatch unload - unloads of any library\n\
7868 \tcatch unload <libname> - unloads of a particular library\n\
7869 The act of your program's execution stopping may also be caught:\n\
7871 C++ exceptions may be caught:\n\
7872 \tcatch throw - all exceptions, when thrown\n\
7873 \tcatch catch - all exceptions, when caught\n\
7875 Do \"help set follow-fork-mode\" for info on debugging your program\n\
7876 after a fork or vfork is caught.\n\n\
7877 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
7879 add_com ("tcatch", class_breakpoint, tcatch_command,
7880 "Set temporary catchpoints to catch events.\n\
7881 Args like \"catch\" command.\n\
7882 Like \"catch\" except the catchpoint is only temporary,\n\
7883 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
7884 by using \"enable delete\" on the catchpoint number.");
7886 c = add_com ("watch", class_breakpoint, watch_command,
7887 "Set a watchpoint for an expression.\n\
7888 A watchpoint stops execution of your program whenever the value of\n\
7889 an expression changes.");
7890 c->completer = location_completer;
7892 c = add_com ("rwatch", class_breakpoint, rwatch_command,
7893 "Set a read watchpoint for an expression.\n\
7894 A watchpoint stops execution of your program whenever the value of\n\
7895 an expression is read.");
7896 c->completer = location_completer;
7898 c = add_com ("awatch", class_breakpoint, awatch_command,
7899 "Set a watchpoint for an expression.\n\
7900 A watchpoint stops execution of your program whenever the value of\n\
7901 an expression is either read or written.");
7902 c->completer = location_completer;
7904 add_info ("watchpoints", breakpoints_info,
7905 "Synonym for ``info breakpoints''.");
7908 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
7909 (char *) &can_use_hw_watchpoints,
7910 "Set debugger's willingness to use watchpoint hardware.\n\
7911 If zero, gdb will not use hardware for new watchpoints, even if\n\
7912 such is available. (However, any hardware watchpoints that were\n\
7913 created before setting this to nonzero, will continue to use watchpoint\n\
7916 add_show_from_set (c, &showlist);
7918 can_use_hw_watchpoints = 1;