1 /* Everything about breakpoints, for GDB.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008, 2009, 2010 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "arch-utils.h"
28 #include "breakpoint.h"
29 #include "tracepoint.h"
31 #include "expression.h"
37 #include "gdbthread.h"
40 #include "gdb_string.h"
47 #include "completer.h"
50 #include "cli/cli-script.h"
51 #include "gdb_assert.h"
56 #include "exceptions.h"
63 #include "xml-syscall.h"
64 #include "parser-defs.h"
66 /* readline include files */
67 #include "readline/readline.h"
68 #include "readline/history.h"
70 /* readline defines this. */
73 #include "mi/mi-common.h"
75 /* Arguments to pass as context to some catch command handlers. */
76 #define CATCH_PERMANENT ((void *) (uintptr_t) 0)
77 #define CATCH_TEMPORARY ((void *) (uintptr_t) 1)
79 /* Prototypes for local functions. */
81 static void enable_delete_command (char *, int);
83 static void enable_once_command (char *, int);
85 static void disable_command (char *, int);
87 static void enable_command (char *, int);
89 static void map_breakpoint_numbers (char *, void (*) (struct breakpoint
*,
93 static void ignore_command (char *, int);
95 static int breakpoint_re_set_one (void *);
97 static void clear_command (char *, int);
99 static void catch_command (char *, int);
101 static int can_use_hardware_watchpoint (struct value
*);
103 static void break_command_1 (char *, int, int);
105 static void mention (struct breakpoint
*);
107 /* This function is used in gdbtk sources and thus can not be made static. */
108 struct breakpoint
*set_raw_breakpoint (struct gdbarch
*gdbarch
,
109 struct symtab_and_line
,
112 static void breakpoint_adjustment_warning (CORE_ADDR
, CORE_ADDR
, int, int);
114 static CORE_ADDR
adjust_breakpoint_address (struct gdbarch
*gdbarch
,
118 static void describe_other_breakpoints (struct gdbarch
*,
119 struct program_space
*, CORE_ADDR
,
120 struct obj_section
*, int);
122 static int breakpoint_address_match (struct address_space
*aspace1
,
124 struct address_space
*aspace2
,
127 static int watchpoint_locations_match (struct bp_location
*loc1
,
128 struct bp_location
*loc2
);
130 static void breakpoints_info (char *, int);
132 static void watchpoints_info (char *, int);
134 static int breakpoint_1 (int, int, int (*) (const struct breakpoint
*));
136 static int breakpoint_cond_eval (void *);
138 static void cleanup_executing_breakpoints (void *);
140 static void commands_command (char *, int);
142 static void condition_command (char *, int);
144 static int get_number_trailer (char **, int);
153 static int remove_breakpoint (struct bp_location
*, insertion_state_t
);
154 static int remove_breakpoint_1 (struct bp_location
*, insertion_state_t
);
156 static enum print_stop_action
print_it_typical (bpstat
);
158 static enum print_stop_action
print_bp_stop_message (bpstat bs
);
160 static int watchpoint_check (void *);
162 static void maintenance_info_breakpoints (char *, int);
164 static int hw_breakpoint_used_count (void);
166 static int hw_watchpoint_used_count (enum bptype
, int *);
168 static void hbreak_command (char *, int);
170 static void thbreak_command (char *, int);
172 static void do_enable_breakpoint (struct breakpoint
*, enum bpdisp
);
174 static void stop_command (char *arg
, int from_tty
);
176 static void stopin_command (char *arg
, int from_tty
);
178 static void stopat_command (char *arg
, int from_tty
);
180 static char *ep_parse_optional_if_clause (char **arg
);
182 static void catch_exception_command_1 (enum exception_event_kind ex_event
,
183 char *arg
, int tempflag
, int from_tty
);
185 static void tcatch_command (char *arg
, int from_tty
);
187 static void ep_skip_leading_whitespace (char **s
);
189 static void detach_single_step_breakpoints (void);
191 static int single_step_breakpoint_inserted_here_p (struct address_space
*,
194 static void free_bp_location (struct bp_location
*loc
);
195 static void incref_bp_location (struct bp_location
*loc
);
196 static void decref_bp_location (struct bp_location
**loc
);
198 static struct bp_location
*allocate_bp_location (struct breakpoint
*bpt
);
200 static void update_global_location_list (int);
202 static void update_global_location_list_nothrow (int);
204 static int is_hardware_watchpoint (const struct breakpoint
*bpt
);
206 static int is_watchpoint (const struct breakpoint
*bpt
);
208 static void insert_breakpoint_locations (void);
210 static int syscall_catchpoint_p (struct breakpoint
*b
);
212 static void tracepoints_info (char *, int);
214 static void delete_trace_command (char *, int);
216 static void enable_trace_command (char *, int);
218 static void disable_trace_command (char *, int);
220 static void trace_pass_command (char *, int);
222 /* Assuming we're creating a static tracepoint, does S look like a
223 static tracepoint marker spec ("-m MARKER_ID")? */
224 #define is_marker_spec(s) \
225 (strncmp (s, "-m", 2) == 0 && ((s)[2] == ' ' || (s)[2] == '\t'))
227 /* A reference-counted struct command_line. This lets multiple
228 breakpoints share a single command list. */
229 struct counted_command_line
231 /* The reference count. */
234 /* The command list. */
235 struct command_line
*commands
;
238 struct command_line
*
239 breakpoint_commands (struct breakpoint
*b
)
241 return b
->commands
? b
->commands
->commands
: NULL
;
244 /* Flag indicating that a command has proceeded the inferior past the
245 current breakpoint. */
247 static int breakpoint_proceeded
;
250 bpdisp_text (enum bpdisp disp
)
252 /* NOTE: the following values are a part of MI protocol and represent
253 values of 'disp' field returned when inferior stops at a breakpoint. */
254 static const char * const bpdisps
[] = {"del", "dstp", "dis", "keep"};
256 return bpdisps
[(int) disp
];
259 /* Prototypes for exported functions. */
260 /* If FALSE, gdb will not use hardware support for watchpoints, even
261 if such is available. */
262 static int can_use_hw_watchpoints
;
265 show_can_use_hw_watchpoints (struct ui_file
*file
, int from_tty
,
266 struct cmd_list_element
*c
,
269 fprintf_filtered (file
, _("\
270 Debugger's willingness to use watchpoint hardware is %s.\n"),
274 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
275 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
276 for unrecognized breakpoint locations.
277 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
278 static enum auto_boolean pending_break_support
;
280 show_pending_break_support (struct ui_file
*file
, int from_tty
,
281 struct cmd_list_element
*c
,
284 fprintf_filtered (file
, _("\
285 Debugger's behavior regarding pending breakpoints is %s.\n"),
289 /* If 1, gdb will automatically use hardware breakpoints for breakpoints
290 set with "break" but falling in read-only memory.
291 If 0, gdb will warn about such breakpoints, but won't automatically
292 use hardware breakpoints. */
293 static int automatic_hardware_breakpoints
;
295 show_automatic_hardware_breakpoints (struct ui_file
*file
, int from_tty
,
296 struct cmd_list_element
*c
,
299 fprintf_filtered (file
, _("\
300 Automatic usage of hardware breakpoints is %s.\n"),
304 /* If on, gdb will keep breakpoints inserted even as inferior is
305 stopped, and immediately insert any new breakpoints. If off, gdb
306 will insert breakpoints into inferior only when resuming it, and
307 will remove breakpoints upon stop. If auto, GDB will behave as ON
308 if in non-stop mode, and as OFF if all-stop mode.*/
310 static const char always_inserted_auto
[] = "auto";
311 static const char always_inserted_on
[] = "on";
312 static const char always_inserted_off
[] = "off";
313 static const char *always_inserted_enums
[] = {
314 always_inserted_auto
,
319 static const char *always_inserted_mode
= always_inserted_auto
;
321 show_always_inserted_mode (struct ui_file
*file
, int from_tty
,
322 struct cmd_list_element
*c
, const char *value
)
324 if (always_inserted_mode
== always_inserted_auto
)
325 fprintf_filtered (file
, _("\
326 Always inserted breakpoint mode is %s (currently %s).\n"),
328 breakpoints_always_inserted_mode () ? "on" : "off");
330 fprintf_filtered (file
, _("Always inserted breakpoint mode is %s.\n"), value
);
334 breakpoints_always_inserted_mode (void)
336 return (always_inserted_mode
== always_inserted_on
337 || (always_inserted_mode
== always_inserted_auto
&& non_stop
));
340 void _initialize_breakpoint (void);
342 /* Are we executing breakpoint commands? */
343 static int executing_breakpoint_commands
;
345 /* Are overlay event breakpoints enabled? */
346 static int overlay_events_enabled
;
348 /* Walk the following statement or block through all breakpoints.
349 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
352 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
354 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
355 for (B = breakpoint_chain; \
356 B ? (TMP=B->next, 1): 0; \
359 /* Similar iterator for the low-level breakpoints. SAFE variant is not
360 provided so update_global_location_list must not be called while executing
361 the block of ALL_BP_LOCATIONS. */
363 #define ALL_BP_LOCATIONS(B,BP_TMP) \
364 for (BP_TMP = bp_location; \
365 BP_TMP < bp_location + bp_location_count && (B = *BP_TMP); \
368 /* Iterator for tracepoints only. */
370 #define ALL_TRACEPOINTS(B) \
371 for (B = breakpoint_chain; B; B = B->next) \
372 if (is_tracepoint (B))
374 /* Chains of all breakpoints defined. */
376 struct breakpoint
*breakpoint_chain
;
378 /* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
380 static struct bp_location
**bp_location
;
382 /* Number of elements of BP_LOCATION. */
384 static unsigned bp_location_count
;
386 /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and ADDRESS
387 for the current elements of BP_LOCATION which get a valid result from
388 bp_location_has_shadow. You can use it for roughly limiting the subrange of
389 BP_LOCATION to scan for shadow bytes for an address you need to read. */
391 static CORE_ADDR bp_location_placed_address_before_address_max
;
393 /* Maximum offset plus alignment between
394 bp_target_info.PLACED_ADDRESS + bp_target_info.SHADOW_LEN and ADDRESS for
395 the current elements of BP_LOCATION which get a valid result from
396 bp_location_has_shadow. You can use it for roughly limiting the subrange of
397 BP_LOCATION to scan for shadow bytes for an address you need to read. */
399 static CORE_ADDR bp_location_shadow_len_after_address_max
;
401 /* The locations that no longer correspond to any breakpoint,
402 unlinked from bp_location array, but for which a hit
403 may still be reported by a target. */
404 VEC(bp_location_p
) *moribund_locations
= NULL
;
406 /* Number of last breakpoint made. */
408 static int breakpoint_count
;
410 /* The value of `breakpoint_count' before the last command that
411 created breakpoints. If the last (break-like) command created more
412 than one breakpoint, then the difference between BREAKPOINT_COUNT
413 and PREV_BREAKPOINT_COUNT is more than one. */
414 static int prev_breakpoint_count
;
416 /* Number of last tracepoint made. */
418 static int tracepoint_count
;
420 static struct cmd_list_element
*breakpoint_set_cmdlist
;
421 static struct cmd_list_element
*breakpoint_show_cmdlist
;
422 struct cmd_list_element
*save_cmdlist
;
424 /* Return whether a breakpoint is an active enabled breakpoint. */
426 breakpoint_enabled (struct breakpoint
*b
)
428 return (b
->enable_state
== bp_enabled
);
431 /* Set breakpoint count to NUM. */
434 set_breakpoint_count (int num
)
436 prev_breakpoint_count
= breakpoint_count
;
437 breakpoint_count
= num
;
438 set_internalvar_integer (lookup_internalvar ("bpnum"), num
);
441 /* Used by `start_rbreak_breakpoints' below, to record the current
442 breakpoint count before "rbreak" creates any breakpoint. */
443 static int rbreak_start_breakpoint_count
;
445 /* Called at the start an "rbreak" command to record the first
449 start_rbreak_breakpoints (void)
451 rbreak_start_breakpoint_count
= breakpoint_count
;
454 /* Called at the end of an "rbreak" command to record the last
458 end_rbreak_breakpoints (void)
460 prev_breakpoint_count
= rbreak_start_breakpoint_count
;
463 /* Used in run_command to zero the hit count when a new run starts. */
466 clear_breakpoint_hit_counts (void)
468 struct breakpoint
*b
;
474 /* Allocate a new counted_command_line with reference count of 1.
475 The new structure owns COMMANDS. */
477 static struct counted_command_line
*
478 alloc_counted_command_line (struct command_line
*commands
)
480 struct counted_command_line
*result
481 = xmalloc (sizeof (struct counted_command_line
));
484 result
->commands
= commands
;
488 /* Increment reference count. This does nothing if CMD is NULL. */
491 incref_counted_command_line (struct counted_command_line
*cmd
)
497 /* Decrement reference count. If the reference count reaches 0,
498 destroy the counted_command_line. Sets *CMDP to NULL. This does
499 nothing if *CMDP is NULL. */
502 decref_counted_command_line (struct counted_command_line
**cmdp
)
506 if (--(*cmdp
)->refc
== 0)
508 free_command_lines (&(*cmdp
)->commands
);
515 /* A cleanup function that calls decref_counted_command_line. */
518 do_cleanup_counted_command_line (void *arg
)
520 decref_counted_command_line (arg
);
523 /* Create a cleanup that calls decref_counted_command_line on the
526 static struct cleanup
*
527 make_cleanup_decref_counted_command_line (struct counted_command_line
**cmdp
)
529 return make_cleanup (do_cleanup_counted_command_line
, cmdp
);
532 /* Default address, symtab and line to put a breakpoint at
533 for "break" command with no arg.
534 if default_breakpoint_valid is zero, the other three are
535 not valid, and "break" with no arg is an error.
537 This set by print_stack_frame, which calls set_default_breakpoint. */
539 int default_breakpoint_valid
;
540 CORE_ADDR default_breakpoint_address
;
541 struct symtab
*default_breakpoint_symtab
;
542 int default_breakpoint_line
;
543 struct program_space
*default_breakpoint_pspace
;
546 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
547 Advance *PP after the string and any trailing whitespace.
549 Currently the string can either be a number or "$" followed by the name
550 of a convenience variable. Making it an expression wouldn't work well
551 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
553 If the string is a NULL pointer, that denotes the last breakpoint.
555 TRAILER is a character which can be found after the number; most
556 commonly this is `-'. If you don't want a trailer, use \0. */
558 get_number_trailer (char **pp
, int trailer
)
560 int retval
= 0; /* default */
564 /* Empty line means refer to the last breakpoint. */
565 return breakpoint_count
;
568 /* Make a copy of the name, so we can null-terminate it
569 to pass to lookup_internalvar(). */
574 while (isalnum (*p
) || *p
== '_')
576 varname
= (char *) alloca (p
- start
+ 1);
577 strncpy (varname
, start
, p
- start
);
578 varname
[p
- start
] = '\0';
579 if (get_internalvar_integer (lookup_internalvar (varname
), &val
))
583 printf_filtered (_("Convenience variable must have integer value.\n"));
591 while (*p
>= '0' && *p
<= '9')
594 /* There is no number here. (e.g. "cond a == b"). */
596 /* Skip non-numeric token */
597 while (*p
&& !isspace((int) *p
))
599 /* Return zero, which caller must interpret as error. */
605 if (!(isspace (*p
) || *p
== '\0' || *p
== trailer
))
607 /* Trailing junk: return 0 and let caller print error msg. */
608 while (!(isspace (*p
) || *p
== '\0' || *p
== trailer
))
619 /* Like get_number_trailer, but don't allow a trailer. */
621 get_number (char **pp
)
623 return get_number_trailer (pp
, '\0');
626 /* Parse a number or a range.
627 * A number will be of the form handled by get_number.
628 * A range will be of the form <number1> - <number2>, and
629 * will represent all the integers between number1 and number2,
632 * While processing a range, this fuction is called iteratively;
633 * At each call it will return the next value in the range.
635 * At the beginning of parsing a range, the char pointer PP will
636 * be advanced past <number1> and left pointing at the '-' token.
637 * Subsequent calls will not advance the pointer until the range
638 * is completed. The call that completes the range will advance
639 * pointer PP past <number2>.
643 get_number_or_range (char **pp
)
645 static int last_retval
, end_value
;
646 static char *end_ptr
;
647 static int in_range
= 0;
651 /* Default case: pp is pointing either to a solo number,
652 or to the first number of a range. */
653 last_retval
= get_number_trailer (pp
, '-');
658 /* This is the start of a range (<number1> - <number2>).
659 Skip the '-', parse and remember the second number,
660 and also remember the end of the final token. */
664 while (isspace ((int) *end_ptr
))
665 end_ptr
++; /* skip white space */
666 end_value
= get_number (temp
);
667 if (end_value
< last_retval
)
669 error (_("inverted range"));
671 else if (end_value
== last_retval
)
673 /* degenerate range (number1 == number2). Advance the
674 token pointer so that the range will be treated as a
683 error (_("negative value"));
686 /* pp points to the '-' that betokens a range. All
687 number-parsing has already been done. Return the next
688 integer value (one greater than the saved previous value).
689 Do not advance the token pointer 'pp' until the end of range
692 if (++last_retval
== end_value
)
694 /* End of range reached; advance token pointer. */
702 /* Return the breakpoint with the specified number, or NULL
703 if the number does not refer to an existing breakpoint. */
706 get_breakpoint (int num
)
708 struct breakpoint
*b
;
711 if (b
->number
== num
)
720 set_breakpoint_condition (struct breakpoint
*b
, char *exp
,
723 struct bp_location
*loc
= b
->loc
;
725 for (; loc
; loc
= loc
->next
)
730 xfree (b
->cond_string
);
731 b
->cond_string
= NULL
;
738 printf_filtered (_("Breakpoint %d now unconditional.\n"), b
->number
);
744 /* I don't know if it matters whether this is the string the user
745 typed in or the decompiled expression. */
746 b
->cond_string
= xstrdup (arg
);
747 b
->condition_not_parsed
= 0;
749 if (is_watchpoint (b
))
751 innermost_block
= NULL
;
753 b
->cond_exp
= parse_exp_1 (&arg
, 0, 0);
755 error (_("Junk at end of expression"));
756 b
->cond_exp_valid_block
= innermost_block
;
760 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
764 parse_exp_1 (&arg
, block_for_pc (loc
->address
), 0);
766 error (_("Junk at end of expression"));
770 breakpoints_changed ();
771 observer_notify_breakpoint_modified (b
->number
);
774 /* condition N EXP -- set break condition of breakpoint N to EXP. */
777 condition_command (char *arg
, int from_tty
)
779 struct breakpoint
*b
;
784 error_no_arg (_("breakpoint number"));
787 bnum
= get_number (&p
);
789 error (_("Bad breakpoint argument: '%s'"), arg
);
792 if (b
->number
== bnum
)
794 set_breakpoint_condition (b
, p
, from_tty
);
798 error (_("No breakpoint number %d."), bnum
);
801 /* Check that COMMAND do not contain commands that are suitable
802 only for tracepoints and not suitable for ordinary breakpoints.
803 Throw if any such commands is found.
806 check_no_tracepoint_commands (struct command_line
*commands
)
808 struct command_line
*c
;
810 for (c
= commands
; c
; c
= c
->next
)
814 if (c
->control_type
== while_stepping_control
)
815 error (_("The 'while-stepping' command can only be used for tracepoints"));
817 for (i
= 0; i
< c
->body_count
; ++i
)
818 check_no_tracepoint_commands ((c
->body_list
)[i
]);
820 /* Not that command parsing removes leading whitespace and comment
821 lines and also empty lines. So, we only need to check for
823 if (strstr (c
->line
, "collect ") == c
->line
)
824 error (_("The 'collect' command can only be used for tracepoints"));
826 if (strstr (c
->line
, "teval ") == c
->line
)
827 error (_("The 'teval' command can only be used for tracepoints"));
831 /* Encapsulate tests for different types of tracepoints. */
834 is_tracepoint (const struct breakpoint
*b
)
836 return (b
->type
== bp_tracepoint
837 || b
->type
== bp_fast_tracepoint
838 || b
->type
== bp_static_tracepoint
);
841 /* A helper function that validsates that COMMANDS are valid for a
842 breakpoint. This function will throw an exception if a problem is
846 validate_commands_for_breakpoint (struct breakpoint
*b
,
847 struct command_line
*commands
)
849 if (is_tracepoint (b
))
851 /* We need to verify that each top-level element of commands
852 is valid for tracepoints, that there's at most one while-stepping
853 element, and that while-stepping's body has valid tracing commands
854 excluding nested while-stepping. */
855 struct command_line
*c
;
856 struct command_line
*while_stepping
= 0;
857 for (c
= commands
; c
; c
= c
->next
)
859 if (c
->control_type
== while_stepping_control
)
861 if (b
->type
== bp_fast_tracepoint
)
863 The 'while-stepping' command cannot be used for fast tracepoint"));
864 else if (b
->type
== bp_static_tracepoint
)
866 The 'while-stepping' command cannot be used for static tracepoint"));
869 error (_("The 'while-stepping' command can be used only once"));
876 struct command_line
*c2
;
878 gdb_assert (while_stepping
->body_count
== 1);
879 c2
= while_stepping
->body_list
[0];
880 for (; c2
; c2
= c2
->next
)
882 if (c2
->control_type
== while_stepping_control
)
883 error (_("The 'while-stepping' command cannot be nested"));
889 check_no_tracepoint_commands (commands
);
893 /* Return a vector of all the static tracepoints set at ADDR. The
894 caller is responsible for releasing the vector. */
897 static_tracepoints_here (CORE_ADDR addr
)
899 struct breakpoint
*b
;
900 VEC(breakpoint_p
) *found
= 0;
901 struct bp_location
*loc
;
904 if (b
->type
== bp_static_tracepoint
)
906 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
907 if (loc
->address
== addr
)
908 VEC_safe_push(breakpoint_p
, found
, b
);
914 /* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
915 validate that only allowed commands are included.
919 breakpoint_set_commands (struct breakpoint
*b
, struct command_line
*commands
)
921 validate_commands_for_breakpoint (b
, commands
);
923 decref_counted_command_line (&b
->commands
);
924 b
->commands
= alloc_counted_command_line (commands
);
925 breakpoints_changed ();
926 observer_notify_breakpoint_modified (b
->number
);
930 check_tracepoint_command (char *line
, void *closure
)
932 struct breakpoint
*b
= closure
;
934 validate_actionline (&line
, b
);
937 /* A structure used to pass information through
938 map_breakpoint_numbers. */
942 /* True if the command was typed at a tty. */
945 /* The breakpoint range spec. */
948 /* Non-NULL if the body of the commands are being read from this
949 already-parsed command. */
950 struct command_line
*control
;
952 /* The command lines read from the user, or NULL if they have not
954 struct counted_command_line
*cmd
;
957 /* A callback for map_breakpoint_numbers that sets the commands for
961 do_map_commands_command (struct breakpoint
*b
, void *data
)
963 struct commands_info
*info
= data
;
965 if (info
->cmd
== NULL
)
967 struct command_line
*l
;
969 if (info
->control
!= NULL
)
970 l
= copy_command_lines (info
->control
->body_list
[0]);
973 struct cleanup
*old_chain
;
976 str
= xstrprintf (_("Type commands for breakpoint(s) %s, one per line."),
979 old_chain
= make_cleanup (xfree
, str
);
981 l
= read_command_lines (str
,
984 ? check_tracepoint_command
: 0),
987 do_cleanups (old_chain
);
990 info
->cmd
= alloc_counted_command_line (l
);
993 /* If a breakpoint was on the list more than once, we don't need to
995 if (b
->commands
!= info
->cmd
)
997 validate_commands_for_breakpoint (b
, info
->cmd
->commands
);
998 incref_counted_command_line (info
->cmd
);
999 decref_counted_command_line (&b
->commands
);
1000 b
->commands
= info
->cmd
;
1001 breakpoints_changed ();
1002 observer_notify_breakpoint_modified (b
->number
);
1007 commands_command_1 (char *arg
, int from_tty
, struct command_line
*control
)
1009 struct cleanup
*cleanups
;
1010 struct commands_info info
;
1012 info
.from_tty
= from_tty
;
1013 info
.control
= control
;
1015 /* If we read command lines from the user, then `info' will hold an
1016 extra reference to the commands that we must clean up. */
1017 cleanups
= make_cleanup_decref_counted_command_line (&info
.cmd
);
1019 if (arg
== NULL
|| !*arg
)
1021 if (breakpoint_count
- prev_breakpoint_count
> 1)
1022 arg
= xstrprintf ("%d-%d", prev_breakpoint_count
+ 1, breakpoint_count
);
1023 else if (breakpoint_count
> 0)
1024 arg
= xstrprintf ("%d", breakpoint_count
);
1027 /* So that we don't try to free the incoming non-NULL
1028 argument in the cleanup below. Mapping breakpoint
1029 numbers will fail in this case. */
1034 /* The command loop has some static state, so we need to preserve
1036 arg
= xstrdup (arg
);
1039 make_cleanup (xfree
, arg
);
1043 map_breakpoint_numbers (arg
, do_map_commands_command
, &info
);
1045 if (info
.cmd
== NULL
)
1046 error (_("No breakpoints specified."));
1048 do_cleanups (cleanups
);
1052 commands_command (char *arg
, int from_tty
)
1054 commands_command_1 (arg
, from_tty
, NULL
);
1057 /* Like commands_command, but instead of reading the commands from
1058 input stream, takes them from an already parsed command structure.
1060 This is used by cli-script.c to DTRT with breakpoint commands
1061 that are part of if and while bodies. */
1062 enum command_control_type
1063 commands_from_control_command (char *arg
, struct command_line
*cmd
)
1065 commands_command_1 (arg
, 0, cmd
);
1066 return simple_control
;
1069 /* Return non-zero if BL->TARGET_INFO contains valid information. */
1072 bp_location_has_shadow (struct bp_location
*bl
)
1074 if (bl
->loc_type
!= bp_loc_software_breakpoint
)
1078 if (bl
->target_info
.shadow_len
== 0)
1079 /* bp isn't valid, or doesn't shadow memory. */
1084 /* Update BUF, which is LEN bytes read from the target address MEMADDR,
1085 by replacing any memory breakpoints with their shadowed contents.
1087 The range of shadowed area by each bp_location is:
1088 b->address - bp_location_placed_address_before_address_max
1089 up to b->address + bp_location_shadow_len_after_address_max
1090 The range we were requested to resolve shadows for is:
1091 memaddr ... memaddr + len
1092 Thus the safe cutoff boundaries for performance optimization are
1093 memaddr + len <= b->address - bp_location_placed_address_before_address_max
1095 b->address + bp_location_shadow_len_after_address_max <= memaddr */
1098 breakpoint_restore_shadows (gdb_byte
*buf
, ULONGEST memaddr
, LONGEST len
)
1100 /* Left boundary, right boundary and median element of our binary search. */
1101 unsigned bc_l
, bc_r
, bc
;
1103 /* Find BC_L which is a leftmost element which may affect BUF content. It is
1104 safe to report lower value but a failure to report higher one. */
1107 bc_r
= bp_location_count
;
1108 while (bc_l
+ 1 < bc_r
)
1110 struct bp_location
*b
;
1112 bc
= (bc_l
+ bc_r
) / 2;
1113 b
= bp_location
[bc
];
1115 /* Check first B->ADDRESS will not overflow due to the added constant.
1116 Then advance the left boundary only if we are sure the BC element can
1117 in no way affect the BUF content (MEMADDR to MEMADDR + LEN range).
1119 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety offset so that
1120 we cannot miss a breakpoint with its shadow range tail still reaching
1123 if (b
->address
+ bp_location_shadow_len_after_address_max
>= b
->address
1124 && b
->address
+ bp_location_shadow_len_after_address_max
<= memaddr
)
1130 /* Now do full processing of the found relevant range of elements. */
1132 for (bc
= bc_l
; bc
< bp_location_count
; bc
++)
1134 struct bp_location
*b
= bp_location
[bc
];
1135 CORE_ADDR bp_addr
= 0;
1139 /* bp_location array has B->OWNER always non-NULL. */
1140 if (b
->owner
->type
== bp_none
)
1141 warning (_("reading through apparently deleted breakpoint #%d?"),
1144 /* Performance optimization: any futher element can no longer affect BUF
1147 if (b
->address
>= bp_location_placed_address_before_address_max
1148 && memaddr
+ len
<= b
->address
1149 - bp_location_placed_address_before_address_max
)
1152 if (!bp_location_has_shadow (b
))
1154 if (!breakpoint_address_match (b
->target_info
.placed_address_space
, 0,
1155 current_program_space
->aspace
, 0))
1158 /* Addresses and length of the part of the breakpoint that
1160 bp_addr
= b
->target_info
.placed_address
;
1161 bp_size
= b
->target_info
.shadow_len
;
1163 if (bp_addr
+ bp_size
<= memaddr
)
1164 /* The breakpoint is entirely before the chunk of memory we
1168 if (bp_addr
>= memaddr
+ len
)
1169 /* The breakpoint is entirely after the chunk of memory we are
1173 /* Offset within shadow_contents. */
1174 if (bp_addr
< memaddr
)
1176 /* Only copy the second part of the breakpoint. */
1177 bp_size
-= memaddr
- bp_addr
;
1178 bptoffset
= memaddr
- bp_addr
;
1182 if (bp_addr
+ bp_size
> memaddr
+ len
)
1184 /* Only copy the first part of the breakpoint. */
1185 bp_size
-= (bp_addr
+ bp_size
) - (memaddr
+ len
);
1188 memcpy (buf
+ bp_addr
- memaddr
,
1189 b
->target_info
.shadow_contents
+ bptoffset
, bp_size
);
1194 /* A wrapper function for inserting catchpoints. */
1196 insert_catchpoint (struct ui_out
*uo
, void *args
)
1198 struct breakpoint
*b
= (struct breakpoint
*) args
;
1200 gdb_assert (b
->type
== bp_catchpoint
);
1201 gdb_assert (b
->ops
!= NULL
&& b
->ops
->insert
!= NULL
);
1206 /* Return true if BPT is of any hardware watchpoint kind. */
1209 is_hardware_watchpoint (const struct breakpoint
*bpt
)
1211 return (bpt
->type
== bp_hardware_watchpoint
1212 || bpt
->type
== bp_read_watchpoint
1213 || bpt
->type
== bp_access_watchpoint
);
1216 /* Return true if BPT is of any watchpoint kind, hardware or
1220 is_watchpoint (const struct breakpoint
*bpt
)
1222 return (is_hardware_watchpoint (bpt
)
1223 || bpt
->type
== bp_watchpoint
);
1226 /* Assuming that B is a watchpoint: returns true if the current thread
1227 and its running state are safe to evaluate or update watchpoint B.
1228 Watchpoints on local expressions need to be evaluated in the
1229 context of the thread that was current when the watchpoint was
1230 created, and, that thread needs to be stopped to be able to select
1231 the correct frame context. Watchpoints on global expressions can
1232 be evaluated on any thread, and in any state. It is presently left
1233 to the target allowing memory accesses when threads are
1237 watchpoint_in_thread_scope (struct breakpoint
*b
)
1239 return (ptid_equal (b
->watchpoint_thread
, null_ptid
)
1240 || (ptid_equal (inferior_ptid
, b
->watchpoint_thread
)
1241 && !is_executing (inferior_ptid
)));
1244 /* Assuming that B is a watchpoint:
1245 - Reparse watchpoint expression, if REPARSE is non-zero
1246 - Evaluate expression and store the result in B->val
1247 - Evaluate the condition if there is one, and store the result
1249 - Update the list of values that must be watched in B->loc.
1251 If the watchpoint disposition is disp_del_at_next_stop, then do nothing.
1252 If this is local watchpoint that is out of scope, delete it.
1254 Even with `set breakpoint always-inserted on' the watchpoints are removed
1255 + inserted on each stop here. Normal breakpoints must never be removed
1256 because they might be missed by a running thread when debugging in non-stop
1257 mode. On the other hand, hardware watchpoints (is_hardware_watchpoint;
1258 processed here) are specific to each LWP since they are stored in each LWP's
1259 hardware debug registers. Therefore, such LWP must be stopped first in
1260 order to be able to modify its hardware watchpoints.
1262 Hardware watchpoints must be reset exactly once after being presented to the
1263 user. It cannot be done sooner, because it would reset the data used to
1264 present the watchpoint hit to the user. And it must not be done later
1265 because it could display the same single watchpoint hit during multiple GDB
1266 stops. Note that the latter is relevant only to the hardware watchpoint
1267 types bp_read_watchpoint and bp_access_watchpoint. False hit by
1268 bp_hardware_watchpoint is not user-visible - its hit is suppressed if the
1269 memory content has not changed.
1271 The following constraints influence the location where we can reset hardware
1274 * target_stopped_by_watchpoint and target_stopped_data_address are called
1275 several times when GDB stops.
1278 * Multiple hardware watchpoints can be hit at the same time, causing GDB to
1279 stop. GDB only presents one hardware watchpoint hit at a time as the
1280 reason for stopping, and all the other hits are presented later, one after
1281 the other, each time the user requests the execution to be resumed.
1282 Execution is not resumed for the threads still having pending hit event
1283 stored in LWP_INFO->STATUS. While the watchpoint is already removed from
1284 the inferior on the first stop the thread hit event is kept being reported
1285 from its cached value by linux_nat_stopped_data_address until the real
1286 thread resume happens after the watchpoint gets presented and thus its
1287 LWP_INFO->STATUS gets reset.
1289 Therefore the hardware watchpoint hit can get safely reset on the watchpoint
1290 removal from inferior. */
1293 update_watchpoint (struct breakpoint
*b
, int reparse
)
1295 int within_current_scope
;
1296 struct frame_id saved_frame_id
;
1299 /* If this is a local watchpoint, we only want to check if the
1300 watchpoint frame is in scope if the current thread is the thread
1301 that was used to create the watchpoint. */
1302 if (!watchpoint_in_thread_scope (b
))
1305 /* We don't free locations. They are stored in bp_location array and
1306 update_global_locations will eventually delete them and remove
1307 breakpoints if needed. */
1310 if (b
->disposition
== disp_del_at_next_stop
)
1315 /* Determine if the watchpoint is within scope. */
1316 if (b
->exp_valid_block
== NULL
)
1317 within_current_scope
= 1;
1320 struct frame_info
*fi
;
1322 /* Save the current frame's ID so we can restore it after
1323 evaluating the watchpoint expression on its own frame. */
1324 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1325 took a frame parameter, so that we didn't have to change the
1328 saved_frame_id
= get_frame_id (get_selected_frame (NULL
));
1330 fi
= frame_find_by_id (b
->watchpoint_frame
);
1331 within_current_scope
= (fi
!= NULL
);
1332 if (within_current_scope
)
1336 if (within_current_scope
&& reparse
)
1345 s
= b
->exp_string_reparse
? b
->exp_string_reparse
: b
->exp_string
;
1346 b
->exp
= parse_exp_1 (&s
, b
->exp_valid_block
, 0);
1347 /* If the meaning of expression itself changed, the old value is
1348 no longer relevant. We don't want to report a watchpoint hit
1349 to the user when the old value and the new value may actually
1350 be completely different objects. */
1351 value_free (b
->val
);
1355 /* Note that unlike with breakpoints, the watchpoint's condition
1356 expression is stored in the breakpoint object, not in the
1357 locations (re)created below. */
1358 if (b
->cond_string
!= NULL
)
1360 if (b
->cond_exp
!= NULL
)
1362 xfree (b
->cond_exp
);
1367 b
->cond_exp
= parse_exp_1 (&s
, b
->cond_exp_valid_block
, 0);
1371 /* If we failed to parse the expression, for example because
1372 it refers to a global variable in a not-yet-loaded shared library,
1373 don't try to insert watchpoint. We don't automatically delete
1374 such watchpoint, though, since failure to parse expression
1375 is different from out-of-scope watchpoint. */
1376 if ( !target_has_execution
)
1378 /* Without execution, memory can't change. No use to try and
1379 set watchpoint locations. The watchpoint will be reset when
1380 the target gains execution, through breakpoint_re_set. */
1382 else if (within_current_scope
&& b
->exp
)
1385 struct value
*val_chain
, *v
, *result
, *next
;
1386 struct program_space
*frame_pspace
;
1388 fetch_subexp_value (b
->exp
, &pc
, &v
, &result
, &val_chain
);
1390 /* Avoid setting b->val if it's already set. The meaning of
1391 b->val is 'the last value' user saw, and we should update
1392 it only if we reported that last value to user. As it
1393 happens, the code that reports it updates b->val directly. */
1400 /* Change the type of breakpoint between hardware assisted or an
1401 ordinary watchpoint depending on the hardware support and free
1402 hardware slots. REPARSE is set when the inferior is started. */
1403 if ((b
->type
== bp_watchpoint
|| b
->type
== bp_hardware_watchpoint
)
1406 int i
, mem_cnt
, other_type_used
;
1408 /* We need to determine how many resources are already used
1409 for all other hardware watchpoints to see if we still have
1410 enough resources to also fit this watchpoint in as well.
1411 To avoid the hw_watchpoint_used_count call below from counting
1412 this watchpoint, make sure that it is marked as a software
1414 b
->type
= bp_watchpoint
;
1415 i
= hw_watchpoint_used_count (bp_hardware_watchpoint
,
1417 mem_cnt
= can_use_hardware_watchpoint (val_chain
);
1420 b
->type
= bp_watchpoint
;
1423 int target_resources_ok
= target_can_use_hardware_watchpoint
1424 (bp_hardware_watchpoint
, i
+ mem_cnt
, other_type_used
);
1425 if (target_resources_ok
<= 0)
1426 b
->type
= bp_watchpoint
;
1428 b
->type
= bp_hardware_watchpoint
;
1432 frame_pspace
= get_frame_program_space (get_selected_frame (NULL
));
1434 /* Look at each value on the value chain. */
1435 for (v
= val_chain
; v
; v
= next
)
1437 /* If it's a memory location, and GDB actually needed
1438 its contents to evaluate the expression, then we
1439 must watch it. If the first value returned is
1440 still lazy, that means an error occurred reading it;
1441 watch it anyway in case it becomes readable. */
1442 if (VALUE_LVAL (v
) == lval_memory
1443 && (v
== val_chain
|| ! value_lazy (v
)))
1445 struct type
*vtype
= check_typedef (value_type (v
));
1447 /* We only watch structs and arrays if user asked
1448 for it explicitly, never if they just happen to
1449 appear in the middle of some value chain. */
1451 || (TYPE_CODE (vtype
) != TYPE_CODE_STRUCT
1452 && TYPE_CODE (vtype
) != TYPE_CODE_ARRAY
))
1456 struct bp_location
*loc
, **tmp
;
1458 addr
= value_address (v
);
1459 len
= TYPE_LENGTH (value_type (v
));
1461 if (b
->type
== bp_read_watchpoint
)
1463 else if (b
->type
== bp_access_watchpoint
)
1466 loc
= allocate_bp_location (b
);
1467 for (tmp
= &(b
->loc
); *tmp
!= NULL
; tmp
= &((*tmp
)->next
))
1470 loc
->gdbarch
= get_type_arch (value_type (v
));
1472 loc
->pspace
= frame_pspace
;
1473 loc
->address
= addr
;
1475 loc
->watchpoint_type
= type
;
1479 next
= value_next (v
);
1484 /* If a software watchpoint is not watching any memory, then the
1485 above left it without any location set up. But,
1486 bpstat_stop_status requires a location to be able to report
1487 stops, so make sure there's at least a dummy one. */
1488 if (b
->type
== bp_watchpoint
&& b
->loc
== NULL
)
1490 b
->loc
= allocate_bp_location (b
);
1491 b
->loc
->pspace
= frame_pspace
;
1492 b
->loc
->address
= -1;
1493 b
->loc
->length
= -1;
1494 b
->loc
->watchpoint_type
= -1;
1497 else if (!within_current_scope
)
1499 printf_filtered (_("\
1500 Watchpoint %d deleted because the program has left the block\n\
1501 in which its expression is valid.\n"),
1503 if (b
->related_breakpoint
)
1505 b
->related_breakpoint
->disposition
= disp_del_at_next_stop
;
1506 b
->related_breakpoint
->related_breakpoint
= NULL
;
1507 b
->related_breakpoint
= NULL
;
1509 b
->disposition
= disp_del_at_next_stop
;
1512 /* Restore the selected frame. */
1514 select_frame (frame_find_by_id (saved_frame_id
));
1518 /* Returns 1 iff breakpoint location should be
1519 inserted in the inferior. */
1521 should_be_inserted (struct bp_location
*bpt
)
1523 if (bpt
->owner
== NULL
|| !breakpoint_enabled (bpt
->owner
))
1526 if (bpt
->owner
->disposition
== disp_del_at_next_stop
)
1529 if (!bpt
->enabled
|| bpt
->shlib_disabled
|| bpt
->duplicate
)
1532 /* This is set for example, when we're attached to the parent of a
1533 vfork, and have detached from the child. The child is running
1534 free, and we expect it to do an exec or exit, at which point the
1535 OS makes the parent schedulable again (and the target reports
1536 that the vfork is done). Until the child is done with the shared
1537 memory region, do not insert breakpoints in the parent, otherwise
1538 the child could still trip on the parent's breakpoints. Since
1539 the parent is blocked anyway, it won't miss any breakpoint. */
1540 if (bpt
->pspace
->breakpoints_not_allowed
)
1543 /* Tracepoints are inserted by the target at a time of its choosing,
1545 if (is_tracepoint (bpt
->owner
))
1551 /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
1552 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
1553 and HW_BREAKPOINT_ERROR are used to report problems.
1555 NOTE drow/2003-09-09: This routine could be broken down to an object-style
1556 method for each breakpoint or catchpoint type. */
1558 insert_bp_location (struct bp_location
*bpt
,
1559 struct ui_file
*tmp_error_stream
,
1560 int *disabled_breaks
,
1561 int *hw_breakpoint_error
)
1565 if (!should_be_inserted (bpt
) || bpt
->inserted
)
1568 /* Initialize the target-specific information. */
1569 memset (&bpt
->target_info
, 0, sizeof (bpt
->target_info
));
1570 bpt
->target_info
.placed_address
= bpt
->address
;
1571 bpt
->target_info
.placed_address_space
= bpt
->pspace
->aspace
;
1573 if (bpt
->loc_type
== bp_loc_software_breakpoint
1574 || bpt
->loc_type
== bp_loc_hardware_breakpoint
)
1576 if (bpt
->owner
->type
!= bp_hardware_breakpoint
)
1578 /* If the explicitly specified breakpoint type
1579 is not hardware breakpoint, check the memory map to see
1580 if the breakpoint address is in read only memory or not.
1581 Two important cases are:
1582 - location type is not hardware breakpoint, memory
1583 is readonly. We change the type of the location to
1584 hardware breakpoint.
1585 - location type is hardware breakpoint, memory is read-write.
1586 This means we've previously made the location hardware one, but
1587 then the memory map changed, so we undo.
1589 When breakpoints are removed, remove_breakpoints will
1590 use location types we've just set here, the only possible
1591 problem is that memory map has changed during running program,
1592 but it's not going to work anyway with current gdb. */
1593 struct mem_region
*mr
1594 = lookup_mem_region (bpt
->target_info
.placed_address
);
1598 if (automatic_hardware_breakpoints
)
1600 enum bp_loc_type new_type
;
1602 if (mr
->attrib
.mode
!= MEM_RW
)
1603 new_type
= bp_loc_hardware_breakpoint
;
1605 new_type
= bp_loc_software_breakpoint
;
1607 if (new_type
!= bpt
->loc_type
)
1609 static int said
= 0;
1611 bpt
->loc_type
= new_type
;
1614 fprintf_filtered (gdb_stdout
, _("\
1615 Note: automatically using hardware breakpoints for read-only addresses.\n"));
1620 else if (bpt
->loc_type
== bp_loc_software_breakpoint
1621 && mr
->attrib
.mode
!= MEM_RW
)
1622 warning (_("cannot set software breakpoint at readonly address %s"),
1623 paddress (bpt
->gdbarch
, bpt
->address
));
1627 /* First check to see if we have to handle an overlay. */
1628 if (overlay_debugging
== ovly_off
1629 || bpt
->section
== NULL
1630 || !(section_is_overlay (bpt
->section
)))
1632 /* No overlay handling: just set the breakpoint. */
1634 if (bpt
->loc_type
== bp_loc_hardware_breakpoint
)
1635 val
= target_insert_hw_breakpoint (bpt
->gdbarch
,
1638 val
= target_insert_breakpoint (bpt
->gdbarch
,
1643 /* This breakpoint is in an overlay section.
1644 Shall we set a breakpoint at the LMA? */
1645 if (!overlay_events_enabled
)
1647 /* Yes -- overlay event support is not active,
1648 so we must try to set a breakpoint at the LMA.
1649 This will not work for a hardware breakpoint. */
1650 if (bpt
->loc_type
== bp_loc_hardware_breakpoint
)
1651 warning (_("hardware breakpoint %d not supported in overlay!"),
1652 bpt
->owner
->number
);
1655 CORE_ADDR addr
= overlay_unmapped_address (bpt
->address
,
1657 /* Set a software (trap) breakpoint at the LMA. */
1658 bpt
->overlay_target_info
= bpt
->target_info
;
1659 bpt
->overlay_target_info
.placed_address
= addr
;
1660 val
= target_insert_breakpoint (bpt
->gdbarch
,
1661 &bpt
->overlay_target_info
);
1663 fprintf_unfiltered (tmp_error_stream
,
1664 "Overlay breakpoint %d failed: in ROM?\n",
1665 bpt
->owner
->number
);
1668 /* Shall we set a breakpoint at the VMA? */
1669 if (section_is_mapped (bpt
->section
))
1671 /* Yes. This overlay section is mapped into memory. */
1672 if (bpt
->loc_type
== bp_loc_hardware_breakpoint
)
1673 val
= target_insert_hw_breakpoint (bpt
->gdbarch
,
1676 val
= target_insert_breakpoint (bpt
->gdbarch
,
1681 /* No. This breakpoint will not be inserted.
1682 No error, but do not mark the bp as 'inserted'. */
1689 /* Can't set the breakpoint. */
1690 if (solib_name_from_address (bpt
->pspace
, bpt
->address
))
1692 /* See also: disable_breakpoints_in_shlibs. */
1694 bpt
->shlib_disabled
= 1;
1695 if (!*disabled_breaks
)
1697 fprintf_unfiltered (tmp_error_stream
,
1698 "Cannot insert breakpoint %d.\n",
1699 bpt
->owner
->number
);
1700 fprintf_unfiltered (tmp_error_stream
,
1701 "Temporarily disabling shared library breakpoints:\n");
1703 *disabled_breaks
= 1;
1704 fprintf_unfiltered (tmp_error_stream
,
1705 "breakpoint #%d\n", bpt
->owner
->number
);
1709 if (bpt
->loc_type
== bp_loc_hardware_breakpoint
)
1711 *hw_breakpoint_error
= 1;
1712 fprintf_unfiltered (tmp_error_stream
,
1713 "Cannot insert hardware breakpoint %d.\n",
1714 bpt
->owner
->number
);
1718 fprintf_unfiltered (tmp_error_stream
,
1719 "Cannot insert breakpoint %d.\n",
1720 bpt
->owner
->number
);
1721 fprintf_filtered (tmp_error_stream
,
1722 "Error accessing memory address ");
1723 fputs_filtered (paddress (bpt
->gdbarch
, bpt
->address
),
1725 fprintf_filtered (tmp_error_stream
, ": %s.\n",
1726 safe_strerror (val
));
1737 else if (bpt
->loc_type
== bp_loc_hardware_watchpoint
1738 /* NOTE drow/2003-09-08: This state only exists for removing
1739 watchpoints. It's not clear that it's necessary... */
1740 && bpt
->owner
->disposition
!= disp_del_at_next_stop
)
1742 val
= target_insert_watchpoint (bpt
->address
,
1744 bpt
->watchpoint_type
,
1745 bpt
->owner
->cond_exp
);
1747 /* If trying to set a read-watchpoint, and it turns out it's not
1748 supported, try emulating one with an access watchpoint. */
1749 if (val
== 1 && bpt
->watchpoint_type
== hw_read
)
1751 struct bp_location
*loc
, **loc_temp
;
1753 /* But don't try to insert it, if there's already another
1754 hw_access location that would be considered a duplicate
1756 ALL_BP_LOCATIONS (loc
, loc_temp
)
1758 && loc
->watchpoint_type
== hw_access
1759 && watchpoint_locations_match (bpt
, loc
))
1763 bpt
->target_info
= loc
->target_info
;
1764 bpt
->watchpoint_type
= hw_access
;
1771 val
= target_insert_watchpoint (bpt
->address
,
1774 bpt
->owner
->cond_exp
);
1776 bpt
->watchpoint_type
= hw_access
;
1780 bpt
->inserted
= (val
== 0);
1783 else if (bpt
->owner
->type
== bp_catchpoint
)
1785 struct gdb_exception e
= catch_exception (uiout
, insert_catchpoint
,
1786 bpt
->owner
, RETURN_MASK_ERROR
);
1787 exception_fprintf (gdb_stderr
, e
, "warning: inserting catchpoint %d: ",
1788 bpt
->owner
->number
);
1790 bpt
->owner
->enable_state
= bp_disabled
;
1794 /* We've already printed an error message if there was a problem
1795 inserting this catchpoint, and we've disabled the catchpoint,
1796 so just return success. */
1803 /* This function is called when program space PSPACE is about to be
1804 deleted. It takes care of updating breakpoints to not reference
1808 breakpoint_program_space_exit (struct program_space
*pspace
)
1810 struct breakpoint
*b
, *b_temp
;
1811 struct bp_location
*loc
, **loc_temp
;
1813 /* Remove any breakpoint that was set through this program space. */
1814 ALL_BREAKPOINTS_SAFE (b
, b_temp
)
1816 if (b
->pspace
== pspace
)
1817 delete_breakpoint (b
);
1820 /* Breakpoints set through other program spaces could have locations
1821 bound to PSPACE as well. Remove those. */
1822 ALL_BP_LOCATIONS (loc
, loc_temp
)
1824 struct bp_location
*tmp
;
1826 if (loc
->pspace
== pspace
)
1828 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
1829 if (loc
->owner
->loc
== loc
)
1830 loc
->owner
->loc
= loc
->next
;
1832 for (tmp
= loc
->owner
->loc
; tmp
->next
!= NULL
; tmp
= tmp
->next
)
1833 if (tmp
->next
== loc
)
1835 tmp
->next
= loc
->next
;
1841 /* Now update the global location list to permanently delete the
1842 removed locations above. */
1843 update_global_location_list (0);
1846 /* Make sure all breakpoints are inserted in inferior.
1847 Throws exception on any error.
1848 A breakpoint that is already inserted won't be inserted
1849 again, so calling this function twice is safe. */
1851 insert_breakpoints (void)
1853 struct breakpoint
*bpt
;
1855 ALL_BREAKPOINTS (bpt
)
1856 if (is_hardware_watchpoint (bpt
))
1857 update_watchpoint (bpt
, 0 /* don't reparse. */);
1859 update_global_location_list (1);
1861 /* update_global_location_list does not insert breakpoints when
1862 always_inserted_mode is not enabled. Explicitly insert them
1864 if (!breakpoints_always_inserted_mode ())
1865 insert_breakpoint_locations ();
1868 /* insert_breakpoints is used when starting or continuing the program.
1869 remove_breakpoints is used when the program stops.
1870 Both return zero if successful,
1871 or an `errno' value if could not write the inferior. */
1874 insert_breakpoint_locations (void)
1876 struct breakpoint
*bpt
;
1877 struct bp_location
*b
, **bp_tmp
;
1880 int disabled_breaks
= 0;
1881 int hw_breakpoint_error
= 0;
1883 struct ui_file
*tmp_error_stream
= mem_fileopen ();
1884 struct cleanup
*cleanups
= make_cleanup_ui_file_delete (tmp_error_stream
);
1886 /* Explicitly mark the warning -- this will only be printed if
1887 there was an error. */
1888 fprintf_unfiltered (tmp_error_stream
, "Warning:\n");
1890 save_current_space_and_thread ();
1892 ALL_BP_LOCATIONS (b
, bp_tmp
)
1894 if (!should_be_inserted (b
) || b
->inserted
)
1897 /* There is no point inserting thread-specific breakpoints if the
1898 thread no longer exists. ALL_BP_LOCATIONS bp_location has B->OWNER
1900 if (b
->owner
->thread
!= -1
1901 && !valid_thread_id (b
->owner
->thread
))
1904 switch_to_program_space_and_thread (b
->pspace
);
1906 /* For targets that support global breakpoints, there's no need
1907 to select an inferior to insert breakpoint to. In fact, even
1908 if we aren't attached to any process yet, we should still
1909 insert breakpoints. */
1910 if (!gdbarch_has_global_breakpoints (target_gdbarch
)
1911 && ptid_equal (inferior_ptid
, null_ptid
))
1914 val
= insert_bp_location (b
, tmp_error_stream
,
1916 &hw_breakpoint_error
);
1921 /* If we failed to insert all locations of a watchpoint,
1922 remove them, as half-inserted watchpoint is of limited use. */
1923 ALL_BREAKPOINTS (bpt
)
1925 int some_failed
= 0;
1926 struct bp_location
*loc
;
1928 if (!is_hardware_watchpoint (bpt
))
1931 if (!breakpoint_enabled (bpt
))
1934 if (bpt
->disposition
== disp_del_at_next_stop
)
1937 for (loc
= bpt
->loc
; loc
; loc
= loc
->next
)
1938 if (!loc
->inserted
&& should_be_inserted (loc
))
1945 for (loc
= bpt
->loc
; loc
; loc
= loc
->next
)
1947 remove_breakpoint (loc
, mark_uninserted
);
1949 hw_breakpoint_error
= 1;
1950 fprintf_unfiltered (tmp_error_stream
,
1951 "Could not insert hardware watchpoint %d.\n",
1959 /* If a hardware breakpoint or watchpoint was inserted, add a
1960 message about possibly exhausted resources. */
1961 if (hw_breakpoint_error
)
1963 fprintf_unfiltered (tmp_error_stream
,
1964 "Could not insert hardware breakpoints:\n\
1965 You may have requested too many hardware breakpoints/watchpoints.\n");
1967 target_terminal_ours_for_output ();
1968 error_stream (tmp_error_stream
);
1971 do_cleanups (cleanups
);
1975 remove_breakpoints (void)
1977 struct bp_location
*b
, **bp_tmp
;
1980 ALL_BP_LOCATIONS (b
, bp_tmp
)
1983 val
|= remove_breakpoint (b
, mark_uninserted
);
1988 /* Remove breakpoints of process PID. */
1991 remove_breakpoints_pid (int pid
)
1993 struct bp_location
*b
, **b_tmp
;
1995 struct inferior
*inf
= find_inferior_pid (pid
);
1997 ALL_BP_LOCATIONS (b
, b_tmp
)
1999 if (b
->pspace
!= inf
->pspace
)
2004 val
= remove_breakpoint (b
, mark_uninserted
);
2013 remove_hw_watchpoints (void)
2015 struct bp_location
*b
, **bp_tmp
;
2018 ALL_BP_LOCATIONS (b
, bp_tmp
)
2020 if (b
->inserted
&& b
->loc_type
== bp_loc_hardware_watchpoint
)
2021 val
|= remove_breakpoint (b
, mark_uninserted
);
2027 reattach_breakpoints (int pid
)
2029 struct cleanup
*old_chain
;
2030 struct bp_location
*b
, **bp_tmp
;
2032 struct ui_file
*tmp_error_stream
= mem_fileopen ();
2033 int dummy1
= 0, dummy2
= 0;
2034 struct inferior
*inf
;
2035 struct thread_info
*tp
;
2037 tp
= any_live_thread_of_process (pid
);
2041 inf
= find_inferior_pid (pid
);
2042 old_chain
= save_inferior_ptid ();
2044 inferior_ptid
= tp
->ptid
;
2046 make_cleanup_ui_file_delete (tmp_error_stream
);
2048 ALL_BP_LOCATIONS (b
, bp_tmp
)
2050 if (b
->pspace
!= inf
->pspace
)
2056 val
= insert_bp_location (b
, tmp_error_stream
,
2060 do_cleanups (old_chain
);
2065 do_cleanups (old_chain
);
2069 static int internal_breakpoint_number
= -1;
2071 static struct breakpoint
*
2072 create_internal_breakpoint (struct gdbarch
*gdbarch
,
2073 CORE_ADDR address
, enum bptype type
)
2075 struct symtab_and_line sal
;
2076 struct breakpoint
*b
;
2078 init_sal (&sal
); /* initialize to zeroes */
2081 sal
.section
= find_pc_overlay (sal
.pc
);
2082 sal
.pspace
= current_program_space
;
2084 b
= set_raw_breakpoint (gdbarch
, sal
, type
);
2085 b
->number
= internal_breakpoint_number
--;
2086 b
->disposition
= disp_donttouch
;
2092 create_overlay_event_breakpoint (char *func_name
)
2094 struct objfile
*objfile
;
2096 ALL_OBJFILES (objfile
)
2098 struct breakpoint
*b
;
2099 struct minimal_symbol
*m
;
2101 m
= lookup_minimal_symbol_text (func_name
, objfile
);
2105 b
= create_internal_breakpoint (get_objfile_arch (objfile
),
2106 SYMBOL_VALUE_ADDRESS (m
),
2108 b
->addr_string
= xstrdup (func_name
);
2110 if (overlay_debugging
== ovly_auto
)
2112 b
->enable_state
= bp_enabled
;
2113 overlay_events_enabled
= 1;
2117 b
->enable_state
= bp_disabled
;
2118 overlay_events_enabled
= 0;
2121 update_global_location_list (1);
2125 create_longjmp_master_breakpoint (char *func_name
)
2127 struct program_space
*pspace
;
2128 struct objfile
*objfile
;
2129 struct cleanup
*old_chain
;
2131 old_chain
= save_current_program_space ();
2133 ALL_PSPACES (pspace
)
2134 ALL_OBJFILES (objfile
)
2136 struct breakpoint
*b
;
2137 struct minimal_symbol
*m
;
2139 if (!gdbarch_get_longjmp_target_p (get_objfile_arch (objfile
)))
2142 set_current_program_space (pspace
);
2144 m
= lookup_minimal_symbol_text (func_name
, objfile
);
2148 b
= create_internal_breakpoint (get_objfile_arch (objfile
),
2149 SYMBOL_VALUE_ADDRESS (m
),
2151 b
->addr_string
= xstrdup (func_name
);
2152 b
->enable_state
= bp_disabled
;
2154 update_global_location_list (1);
2156 do_cleanups (old_chain
);
2159 /* Create a master std::terminate breakpoint. The actual function
2160 looked for is named FUNC_NAME. */
2162 create_std_terminate_master_breakpoint (const char *func_name
)
2164 struct program_space
*pspace
;
2165 struct objfile
*objfile
;
2166 struct cleanup
*old_chain
;
2168 old_chain
= save_current_program_space ();
2170 ALL_PSPACES (pspace
)
2171 ALL_OBJFILES (objfile
)
2173 struct breakpoint
*b
;
2174 struct minimal_symbol
*m
;
2176 set_current_program_space (pspace
);
2178 m
= lookup_minimal_symbol (func_name
, NULL
, objfile
);
2179 if (m
== NULL
|| (MSYMBOL_TYPE (m
) != mst_text
2180 && MSYMBOL_TYPE (m
) != mst_file_text
))
2183 b
= create_internal_breakpoint (get_objfile_arch (objfile
),
2184 SYMBOL_VALUE_ADDRESS (m
),
2185 bp_std_terminate_master
);
2186 b
->addr_string
= xstrdup (func_name
);
2187 b
->enable_state
= bp_disabled
;
2189 update_global_location_list (1);
2191 do_cleanups (old_chain
);
2195 update_breakpoints_after_exec (void)
2197 struct breakpoint
*b
;
2198 struct breakpoint
*temp
;
2199 struct bp_location
*bploc
, **bplocp_tmp
;
2201 /* We're about to delete breakpoints from GDB's lists. If the
2202 INSERTED flag is true, GDB will try to lift the breakpoints by
2203 writing the breakpoints' "shadow contents" back into memory. The
2204 "shadow contents" are NOT valid after an exec, so GDB should not
2205 do that. Instead, the target is responsible from marking
2206 breakpoints out as soon as it detects an exec. We don't do that
2207 here instead, because there may be other attempts to delete
2208 breakpoints after detecting an exec and before reaching here. */
2209 ALL_BP_LOCATIONS (bploc
, bplocp_tmp
)
2210 if (bploc
->pspace
== current_program_space
)
2211 gdb_assert (!bploc
->inserted
);
2213 ALL_BREAKPOINTS_SAFE (b
, temp
)
2215 if (b
->pspace
!= current_program_space
)
2218 /* Solib breakpoints must be explicitly reset after an exec(). */
2219 if (b
->type
== bp_shlib_event
)
2221 delete_breakpoint (b
);
2225 /* JIT breakpoints must be explicitly reset after an exec(). */
2226 if (b
->type
== bp_jit_event
)
2228 delete_breakpoint (b
);
2232 /* Thread event breakpoints must be set anew after an exec(),
2233 as must overlay event and longjmp master breakpoints. */
2234 if (b
->type
== bp_thread_event
|| b
->type
== bp_overlay_event
2235 || b
->type
== bp_longjmp_master
|| b
->type
== bp_std_terminate_master
)
2237 delete_breakpoint (b
);
2241 /* Step-resume breakpoints are meaningless after an exec(). */
2242 if (b
->type
== bp_step_resume
)
2244 delete_breakpoint (b
);
2248 /* Longjmp and longjmp-resume breakpoints are also meaningless
2250 if (b
->type
== bp_longjmp
|| b
->type
== bp_longjmp_resume
)
2252 delete_breakpoint (b
);
2256 if (b
->type
== bp_catchpoint
)
2258 /* For now, none of the bp_catchpoint breakpoints need to
2259 do anything at this point. In the future, if some of
2260 the catchpoints need to something, we will need to add
2261 a new method, and call this method from here. */
2265 /* bp_finish is a special case. The only way we ought to be able
2266 to see one of these when an exec() has happened, is if the user
2267 caught a vfork, and then said "finish". Ordinarily a finish just
2268 carries them to the call-site of the current callee, by setting
2269 a temporary bp there and resuming. But in this case, the finish
2270 will carry them entirely through the vfork & exec.
2272 We don't want to allow a bp_finish to remain inserted now. But
2273 we can't safely delete it, 'cause finish_command has a handle to
2274 the bp on a bpstat, and will later want to delete it. There's a
2275 chance (and I've seen it happen) that if we delete the bp_finish
2276 here, that its storage will get reused by the time finish_command
2277 gets 'round to deleting the "use to be a bp_finish" breakpoint.
2278 We really must allow finish_command to delete a bp_finish.
2280 In the absense of a general solution for the "how do we know
2281 it's safe to delete something others may have handles to?"
2282 problem, what we'll do here is just uninsert the bp_finish, and
2283 let finish_command delete it.
2285 (We know the bp_finish is "doomed" in the sense that it's
2286 momentary, and will be deleted as soon as finish_command sees
2287 the inferior stopped. So it doesn't matter that the bp's
2288 address is probably bogus in the new a.out, unlike e.g., the
2289 solib breakpoints.) */
2291 if (b
->type
== bp_finish
)
2296 /* Without a symbolic address, we have little hope of the
2297 pre-exec() address meaning the same thing in the post-exec()
2299 if (b
->addr_string
== NULL
)
2301 delete_breakpoint (b
);
2305 /* FIXME what about longjmp breakpoints? Re-create them here? */
2306 create_overlay_event_breakpoint ("_ovly_debug_event");
2307 create_longjmp_master_breakpoint ("longjmp");
2308 create_longjmp_master_breakpoint ("_longjmp");
2309 create_longjmp_master_breakpoint ("siglongjmp");
2310 create_longjmp_master_breakpoint ("_siglongjmp");
2311 create_std_terminate_master_breakpoint ("std::terminate()");
2315 detach_breakpoints (int pid
)
2317 struct bp_location
*b
, **bp_tmp
;
2319 struct cleanup
*old_chain
= save_inferior_ptid ();
2320 struct inferior
*inf
= current_inferior ();
2322 if (pid
== PIDGET (inferior_ptid
))
2323 error (_("Cannot detach breakpoints of inferior_ptid"));
2325 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
2326 inferior_ptid
= pid_to_ptid (pid
);
2327 ALL_BP_LOCATIONS (b
, bp_tmp
)
2329 if (b
->pspace
!= inf
->pspace
)
2333 val
|= remove_breakpoint_1 (b
, mark_inserted
);
2336 /* Detach single-step breakpoints as well. */
2337 detach_single_step_breakpoints ();
2339 do_cleanups (old_chain
);
2343 /* Remove the breakpoint location B from the current address space.
2344 Note that this is used to detach breakpoints from a child fork.
2345 When we get here, the child isn't in the inferior list, and neither
2346 do we have objects to represent its address space --- we should
2347 *not* look at b->pspace->aspace here. */
2350 remove_breakpoint_1 (struct bp_location
*b
, insertion_state_t is
)
2354 /* B is never in moribund_locations by our callers. */
2355 gdb_assert (b
->owner
!= NULL
);
2357 if (b
->owner
->enable_state
== bp_permanent
)
2358 /* Permanent breakpoints cannot be inserted or removed. */
2361 /* The type of none suggests that owner is actually deleted.
2362 This should not ever happen. */
2363 gdb_assert (b
->owner
->type
!= bp_none
);
2365 if (b
->loc_type
== bp_loc_software_breakpoint
2366 || b
->loc_type
== bp_loc_hardware_breakpoint
)
2368 /* "Normal" instruction breakpoint: either the standard
2369 trap-instruction bp (bp_breakpoint), or a
2370 bp_hardware_breakpoint. */
2372 /* First check to see if we have to handle an overlay. */
2373 if (overlay_debugging
== ovly_off
2374 || b
->section
== NULL
2375 || !(section_is_overlay (b
->section
)))
2377 /* No overlay handling: just remove the breakpoint. */
2379 if (b
->loc_type
== bp_loc_hardware_breakpoint
)
2380 val
= target_remove_hw_breakpoint (b
->gdbarch
, &b
->target_info
);
2382 val
= target_remove_breakpoint (b
->gdbarch
, &b
->target_info
);
2386 /* This breakpoint is in an overlay section.
2387 Did we set a breakpoint at the LMA? */
2388 if (!overlay_events_enabled
)
2390 /* Yes -- overlay event support is not active, so we
2391 should have set a breakpoint at the LMA. Remove it.
2393 /* Ignore any failures: if the LMA is in ROM, we will
2394 have already warned when we failed to insert it. */
2395 if (b
->loc_type
== bp_loc_hardware_breakpoint
)
2396 target_remove_hw_breakpoint (b
->gdbarch
,
2397 &b
->overlay_target_info
);
2399 target_remove_breakpoint (b
->gdbarch
,
2400 &b
->overlay_target_info
);
2402 /* Did we set a breakpoint at the VMA?
2403 If so, we will have marked the breakpoint 'inserted'. */
2406 /* Yes -- remove it. Previously we did not bother to
2407 remove the breakpoint if the section had been
2408 unmapped, but let's not rely on that being safe. We
2409 don't know what the overlay manager might do. */
2410 if (b
->loc_type
== bp_loc_hardware_breakpoint
)
2411 val
= target_remove_hw_breakpoint (b
->gdbarch
,
2414 /* However, we should remove *software* breakpoints only
2415 if the section is still mapped, or else we overwrite
2416 wrong code with the saved shadow contents. */
2417 else if (section_is_mapped (b
->section
))
2418 val
= target_remove_breakpoint (b
->gdbarch
,
2425 /* No -- not inserted, so no need to remove. No error. */
2430 /* In some cases, we might not be able to remove a breakpoint
2431 in a shared library that has already been removed, but we
2432 have not yet processed the shlib unload event. */
2433 if (val
&& solib_name_from_address (b
->pspace
, b
->address
))
2438 b
->inserted
= (is
== mark_inserted
);
2440 else if (b
->loc_type
== bp_loc_hardware_watchpoint
)
2442 b
->inserted
= (is
== mark_inserted
);
2443 val
= target_remove_watchpoint (b
->address
, b
->length
,
2444 b
->watchpoint_type
, b
->owner
->cond_exp
);
2446 /* Failure to remove any of the hardware watchpoints comes here. */
2447 if ((is
== mark_uninserted
) && (b
->inserted
))
2448 warning (_("Could not remove hardware watchpoint %d."),
2451 else if (b
->owner
->type
== bp_catchpoint
2452 && breakpoint_enabled (b
->owner
)
2455 gdb_assert (b
->owner
->ops
!= NULL
&& b
->owner
->ops
->remove
!= NULL
);
2457 val
= b
->owner
->ops
->remove (b
->owner
);
2460 b
->inserted
= (is
== mark_inserted
);
2467 remove_breakpoint (struct bp_location
*b
, insertion_state_t is
)
2470 struct cleanup
*old_chain
;
2472 /* B is never in moribund_locations by our callers. */
2473 gdb_assert (b
->owner
!= NULL
);
2475 if (b
->owner
->enable_state
== bp_permanent
)
2476 /* Permanent breakpoints cannot be inserted or removed. */
2479 /* The type of none suggests that owner is actually deleted.
2480 This should not ever happen. */
2481 gdb_assert (b
->owner
->type
!= bp_none
);
2483 old_chain
= save_current_space_and_thread ();
2485 switch_to_program_space_and_thread (b
->pspace
);
2487 ret
= remove_breakpoint_1 (b
, is
);
2489 do_cleanups (old_chain
);
2493 /* Clear the "inserted" flag in all breakpoints. */
2496 mark_breakpoints_out (void)
2498 struct bp_location
*bpt
, **bptp_tmp
;
2500 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2501 if (bpt
->pspace
== current_program_space
)
2505 /* Clear the "inserted" flag in all breakpoints and delete any
2506 breakpoints which should go away between runs of the program.
2508 Plus other such housekeeping that has to be done for breakpoints
2511 Note: this function gets called at the end of a run (by
2512 generic_mourn_inferior) and when a run begins (by
2513 init_wait_for_inferior). */
2518 breakpoint_init_inferior (enum inf_context context
)
2520 struct breakpoint
*b
, *temp
;
2521 struct bp_location
*bpt
, **bptp_tmp
;
2523 struct program_space
*pspace
= current_program_space
;
2525 /* If breakpoint locations are shared across processes, then there's
2527 if (gdbarch_has_global_breakpoints (target_gdbarch
))
2530 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2532 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
2533 if (bpt
->pspace
== pspace
2534 && bpt
->owner
->enable_state
!= bp_permanent
)
2538 ALL_BREAKPOINTS_SAFE (b
, temp
)
2540 if (b
->loc
&& b
->loc
->pspace
!= pspace
)
2547 /* If the call dummy breakpoint is at the entry point it will
2548 cause problems when the inferior is rerun, so we better get
2551 case bp_watchpoint_scope
:
2553 /* Also get rid of scope breakpoints. */
2555 case bp_shlib_event
:
2557 /* Also remove solib event breakpoints. Their addresses may
2558 have changed since the last time we ran the program.
2559 Actually we may now be debugging against different target;
2560 and so the solib backend that installed this breakpoint may
2561 not be used in by the target. E.g.,
2563 (gdb) file prog-linux
2564 (gdb) run # native linux target
2567 (gdb) file prog-win.exe
2568 (gdb) tar rem :9999 # remote Windows gdbserver.
2571 delete_breakpoint (b
);
2575 case bp_hardware_watchpoint
:
2576 case bp_read_watchpoint
:
2577 case bp_access_watchpoint
:
2579 /* Likewise for watchpoints on local expressions. */
2580 if (b
->exp_valid_block
!= NULL
)
2581 delete_breakpoint (b
);
2582 else if (context
== inf_starting
)
2584 /* Reset val field to force reread of starting value
2585 in insert_breakpoints. */
2587 value_free (b
->val
);
2597 /* Get rid of the moribund locations. */
2598 for (ix
= 0; VEC_iterate (bp_location_p
, moribund_locations
, ix
, bpt
); ++ix
)
2599 decref_bp_location (&bpt
);
2600 VEC_free (bp_location_p
, moribund_locations
);
2603 /* These functions concern about actual breakpoints inserted in the
2604 target --- to e.g. check if we need to do decr_pc adjustment or if
2605 we need to hop over the bkpt --- so we check for address space
2606 match, not program space. */
2608 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
2609 exists at PC. It returns ordinary_breakpoint_here if it's an
2610 ordinary breakpoint, or permanent_breakpoint_here if it's a
2611 permanent breakpoint.
2612 - When continuing from a location with an ordinary breakpoint, we
2613 actually single step once before calling insert_breakpoints.
2614 - When continuing from a localion with a permanent breakpoint, we
2615 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
2616 the target, to advance the PC past the breakpoint. */
2618 enum breakpoint_here
2619 breakpoint_here_p (struct address_space
*aspace
, CORE_ADDR pc
)
2621 struct bp_location
*bpt
, **bptp_tmp
;
2622 int any_breakpoint_here
= 0;
2624 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2626 if (bpt
->loc_type
!= bp_loc_software_breakpoint
2627 && bpt
->loc_type
!= bp_loc_hardware_breakpoint
)
2630 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
2631 if ((breakpoint_enabled (bpt
->owner
)
2632 || bpt
->owner
->enable_state
== bp_permanent
)
2633 && breakpoint_address_match (bpt
->pspace
->aspace
, bpt
->address
,
2636 if (overlay_debugging
2637 && section_is_overlay (bpt
->section
)
2638 && !section_is_mapped (bpt
->section
))
2639 continue; /* unmapped overlay -- can't be a match */
2640 else if (bpt
->owner
->enable_state
== bp_permanent
)
2641 return permanent_breakpoint_here
;
2643 any_breakpoint_here
= 1;
2647 return any_breakpoint_here
? ordinary_breakpoint_here
: 0;
2650 /* Return true if there's a moribund breakpoint at PC. */
2653 moribund_breakpoint_here_p (struct address_space
*aspace
, CORE_ADDR pc
)
2655 struct bp_location
*loc
;
2658 for (ix
= 0; VEC_iterate (bp_location_p
, moribund_locations
, ix
, loc
); ++ix
)
2659 if (breakpoint_address_match (loc
->pspace
->aspace
, loc
->address
,
2666 /* Returns non-zero if there's a breakpoint inserted at PC, which is
2667 inserted using regular breakpoint_chain / bp_location array mechanism.
2668 This does not check for single-step breakpoints, which are
2669 inserted and removed using direct target manipulation. */
2672 regular_breakpoint_inserted_here_p (struct address_space
*aspace
, CORE_ADDR pc
)
2674 struct bp_location
*bpt
, **bptp_tmp
;
2676 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2678 if (bpt
->loc_type
!= bp_loc_software_breakpoint
2679 && bpt
->loc_type
!= bp_loc_hardware_breakpoint
)
2683 && breakpoint_address_match (bpt
->pspace
->aspace
, bpt
->address
,
2686 if (overlay_debugging
2687 && section_is_overlay (bpt
->section
)
2688 && !section_is_mapped (bpt
->section
))
2689 continue; /* unmapped overlay -- can't be a match */
2697 /* Returns non-zero iff there's either regular breakpoint
2698 or a single step breakpoint inserted at PC. */
2701 breakpoint_inserted_here_p (struct address_space
*aspace
, CORE_ADDR pc
)
2703 if (regular_breakpoint_inserted_here_p (aspace
, pc
))
2706 if (single_step_breakpoint_inserted_here_p (aspace
, pc
))
2712 /* This function returns non-zero iff there is a software breakpoint
2716 software_breakpoint_inserted_here_p (struct address_space
*aspace
, CORE_ADDR pc
)
2718 struct bp_location
*bpt
, **bptp_tmp
;
2720 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2722 if (bpt
->loc_type
!= bp_loc_software_breakpoint
)
2726 && breakpoint_address_match (bpt
->pspace
->aspace
, bpt
->address
,
2729 if (overlay_debugging
2730 && section_is_overlay (bpt
->section
)
2731 && !section_is_mapped (bpt
->section
))
2732 continue; /* unmapped overlay -- can't be a match */
2738 /* Also check for software single-step breakpoints. */
2739 if (single_step_breakpoint_inserted_here_p (aspace
, pc
))
2746 hardware_watchpoint_inserted_in_range (struct address_space
*aspace
,
2747 CORE_ADDR addr
, ULONGEST len
)
2749 struct breakpoint
*bpt
;
2751 ALL_BREAKPOINTS (bpt
)
2753 struct bp_location
*loc
;
2755 if (bpt
->type
!= bp_hardware_watchpoint
2756 && bpt
->type
!= bp_access_watchpoint
)
2759 if (!breakpoint_enabled (bpt
))
2762 for (loc
= bpt
->loc
; loc
; loc
= loc
->next
)
2763 if (loc
->pspace
->aspace
== aspace
&& loc
->inserted
)
2767 /* Check for intersection. */
2768 l
= max (loc
->address
, addr
);
2769 h
= min (loc
->address
+ loc
->length
, addr
+ len
);
2777 /* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
2778 PC is valid for process/thread PTID. */
2781 breakpoint_thread_match (struct address_space
*aspace
, CORE_ADDR pc
,
2784 struct bp_location
*bpt
, **bptp_tmp
;
2785 /* The thread and task IDs associated to PTID, computed lazily. */
2789 ALL_BP_LOCATIONS (bpt
, bptp_tmp
)
2791 if (bpt
->loc_type
!= bp_loc_software_breakpoint
2792 && bpt
->loc_type
!= bp_loc_hardware_breakpoint
)
2795 /* ALL_BP_LOCATIONS bp_location has BPT->OWNER always non-NULL. */
2796 if (!breakpoint_enabled (bpt
->owner
)
2797 && bpt
->owner
->enable_state
!= bp_permanent
)
2800 if (!breakpoint_address_match (bpt
->pspace
->aspace
, bpt
->address
,
2804 if (bpt
->owner
->thread
!= -1)
2806 /* This is a thread-specific breakpoint. Check that ptid
2807 matches that thread. If thread hasn't been computed yet,
2808 it is now time to do so. */
2810 thread
= pid_to_thread_id (ptid
);
2811 if (bpt
->owner
->thread
!= thread
)
2815 if (bpt
->owner
->task
!= 0)
2817 /* This is a task-specific breakpoint. Check that ptid
2818 matches that task. If task hasn't been computed yet,
2819 it is now time to do so. */
2821 task
= ada_get_task_number (ptid
);
2822 if (bpt
->owner
->task
!= task
)
2826 if (overlay_debugging
2827 && section_is_overlay (bpt
->section
)
2828 && !section_is_mapped (bpt
->section
))
2829 continue; /* unmapped overlay -- can't be a match */
2838 /* bpstat stuff. External routines' interfaces are documented
2842 ep_is_catchpoint (struct breakpoint
*ep
)
2844 return (ep
->type
== bp_catchpoint
);
2847 /* Frees any storage that is part of a bpstat. Does not walk the
2851 bpstat_free (bpstat bs
)
2853 if (bs
->old_val
!= NULL
)
2854 value_free (bs
->old_val
);
2855 decref_counted_command_line (&bs
->commands
);
2856 decref_bp_location (&bs
->bp_location_at
);
2860 /* Clear a bpstat so that it says we are not at any breakpoint.
2861 Also free any storage that is part of a bpstat. */
2864 bpstat_clear (bpstat
*bsp
)
2881 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
2882 is part of the bpstat is copied as well. */
2885 bpstat_copy (bpstat bs
)
2889 bpstat retval
= NULL
;
2894 for (; bs
!= NULL
; bs
= bs
->next
)
2896 tmp
= (bpstat
) xmalloc (sizeof (*tmp
));
2897 memcpy (tmp
, bs
, sizeof (*tmp
));
2898 incref_counted_command_line (tmp
->commands
);
2899 incref_bp_location (tmp
->bp_location_at
);
2900 if (bs
->old_val
!= NULL
)
2902 tmp
->old_val
= value_copy (bs
->old_val
);
2903 release_value (tmp
->old_val
);
2907 /* This is the first thing in the chain. */
2917 /* Find the bpstat associated with this breakpoint */
2920 bpstat_find_breakpoint (bpstat bsp
, struct breakpoint
*breakpoint
)
2925 for (; bsp
!= NULL
; bsp
= bsp
->next
)
2927 if (bsp
->breakpoint_at
== breakpoint
)
2933 /* Put in *NUM the breakpoint number of the first breakpoint we are stopped
2934 at. *BSP upon return is a bpstat which points to the remaining
2935 breakpoints stopped at (but which is not guaranteed to be good for
2936 anything but further calls to bpstat_num).
2937 Return 0 if passed a bpstat which does not indicate any breakpoints.
2938 Return -1 if stopped at a breakpoint that has been deleted since
2940 Return 1 otherwise. */
2943 bpstat_num (bpstat
*bsp
, int *num
)
2945 struct breakpoint
*b
;
2948 return 0; /* No more breakpoint values */
2950 /* We assume we'll never have several bpstats that
2951 correspond to a single breakpoint -- otherwise,
2952 this function might return the same number more
2953 than once and this will look ugly. */
2954 b
= (*bsp
)->breakpoint_at
;
2955 *bsp
= (*bsp
)->next
;
2957 return -1; /* breakpoint that's been deleted since */
2959 *num
= b
->number
; /* We have its number */
2963 /* Modify BS so that the actions will not be performed. */
2966 bpstat_clear_actions (bpstat bs
)
2968 for (; bs
!= NULL
; bs
= bs
->next
)
2970 decref_counted_command_line (&bs
->commands
);
2971 bs
->commands_left
= NULL
;
2972 if (bs
->old_val
!= NULL
)
2974 value_free (bs
->old_val
);
2980 /* Called when a command is about to proceed the inferior. */
2983 breakpoint_about_to_proceed (void)
2985 if (!ptid_equal (inferior_ptid
, null_ptid
))
2987 struct thread_info
*tp
= inferior_thread ();
2989 /* Allow inferior function calls in breakpoint commands to not
2990 interrupt the command list. When the call finishes
2991 successfully, the inferior will be standing at the same
2992 breakpoint as if nothing happened. */
2997 breakpoint_proceeded
= 1;
3000 /* Stub for cleaning up our state if we error-out of a breakpoint command */
3002 cleanup_executing_breakpoints (void *ignore
)
3004 executing_breakpoint_commands
= 0;
3007 /* Execute all the commands associated with all the breakpoints at this
3008 location. Any of these commands could cause the process to proceed
3009 beyond this point, etc. We look out for such changes by checking
3010 the global "breakpoint_proceeded" after each command.
3012 Returns true if a breakpoint command resumed the inferior. In that
3013 case, it is the caller's responsibility to recall it again with the
3014 bpstat of the current thread. */
3017 bpstat_do_actions_1 (bpstat
*bsp
)
3020 struct cleanup
*old_chain
;
3023 /* Avoid endless recursion if a `source' command is contained
3025 if (executing_breakpoint_commands
)
3028 executing_breakpoint_commands
= 1;
3029 old_chain
= make_cleanup (cleanup_executing_breakpoints
, 0);
3031 /* This pointer will iterate over the list of bpstat's. */
3034 breakpoint_proceeded
= 0;
3035 for (; bs
!= NULL
; bs
= bs
->next
)
3037 struct counted_command_line
*ccmd
;
3038 struct command_line
*cmd
;
3039 struct cleanup
*this_cmd_tree_chain
;
3041 /* Take ownership of the BSP's command tree, if it has one.
3043 The command tree could legitimately contain commands like
3044 'step' and 'next', which call clear_proceed_status, which
3045 frees stop_bpstat's command tree. To make sure this doesn't
3046 free the tree we're executing out from under us, we need to
3047 take ownership of the tree ourselves. Since a given bpstat's
3048 commands are only executed once, we don't need to copy it; we
3049 can clear the pointer in the bpstat, and make sure we free
3050 the tree when we're done. */
3051 ccmd
= bs
->commands
;
3052 bs
->commands
= NULL
;
3054 = make_cleanup_decref_counted_command_line (&ccmd
);
3055 cmd
= bs
->commands_left
;
3056 bs
->commands_left
= NULL
;
3060 execute_control_command (cmd
);
3062 if (breakpoint_proceeded
)
3068 /* We can free this command tree now. */
3069 do_cleanups (this_cmd_tree_chain
);
3071 if (breakpoint_proceeded
)
3073 if (target_can_async_p ())
3074 /* If we are in async mode, then the target might be still
3075 running, not stopped at any breakpoint, so nothing for
3076 us to do here -- just return to the event loop. */
3079 /* In sync mode, when execute_control_command returns
3080 we're already standing on the next breakpoint.
3081 Breakpoint commands for that stop were not run, since
3082 execute_command does not run breakpoint commands --
3083 only command_line_handler does, but that one is not
3084 involved in execution of breakpoint commands. So, we
3085 can now execute breakpoint commands. It should be
3086 noted that making execute_command do bpstat actions is
3087 not an option -- in this case we'll have recursive
3088 invocation of bpstat for each breakpoint with a
3089 command, and can easily blow up GDB stack. Instead, we
3090 return true, which will trigger the caller to recall us
3091 with the new stop_bpstat. */
3096 do_cleanups (old_chain
);
3101 bpstat_do_actions (void)
3103 /* Do any commands attached to breakpoint we are stopped at. */
3104 while (!ptid_equal (inferior_ptid
, null_ptid
)
3105 && target_has_execution
3106 && !is_exited (inferior_ptid
)
3107 && !is_executing (inferior_ptid
))
3108 /* Since in sync mode, bpstat_do_actions may resume the inferior,
3109 and only return when it is stopped at the next breakpoint, we
3110 keep doing breakpoint actions until it returns false to
3111 indicate the inferior was not resumed. */
3112 if (!bpstat_do_actions_1 (&inferior_thread ()->stop_bpstat
))
3116 /* Print out the (old or new) value associated with a watchpoint. */
3119 watchpoint_value_print (struct value
*val
, struct ui_file
*stream
)
3122 fprintf_unfiltered (stream
, _("<unreadable>"));
3125 struct value_print_options opts
;
3126 get_user_print_options (&opts
);
3127 value_print (val
, stream
, &opts
);
3131 /* This is the normal print function for a bpstat. In the future,
3132 much of this logic could (should?) be moved to bpstat_stop_status,
3133 by having it set different print_it values.
3135 Current scheme: When we stop, bpstat_print() is called. It loops
3136 through the bpstat list of things causing this stop, calling the
3137 print_bp_stop_message function on each one. The behavior of the
3138 print_bp_stop_message function depends on the print_it field of
3139 bpstat. If such field so indicates, call this function here.
3141 Return values from this routine (ultimately used by bpstat_print()
3142 and normal_stop() to decide what to do):
3143 PRINT_NOTHING: Means we already printed all we needed to print,
3144 don't print anything else.
3145 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
3146 that something to be followed by a location.
3147 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
3148 that something to be followed by a location.
3149 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
3152 static enum print_stop_action
3153 print_it_typical (bpstat bs
)
3155 struct cleanup
*old_chain
;
3156 struct breakpoint
*b
;
3157 const struct bp_location
*bl
;
3158 struct ui_stream
*stb
;
3160 enum print_stop_action result
;
3162 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
3163 which has since been deleted. */
3164 if (bs
->breakpoint_at
== NULL
)
3165 return PRINT_UNKNOWN
;
3167 gdb_assert (bs
->bp_location_at
!= NULL
);
3169 bl
= bs
->bp_location_at
;
3170 b
= bs
->breakpoint_at
;
3172 stb
= ui_out_stream_new (uiout
);
3173 old_chain
= make_cleanup_ui_out_stream_delete (stb
);
3178 case bp_hardware_breakpoint
:
3179 bp_temp
= b
->disposition
== disp_del
;
3180 if (bl
->address
!= bl
->requested_address
)
3181 breakpoint_adjustment_warning (bl
->requested_address
,
3184 annotate_breakpoint (b
->number
);
3186 ui_out_text (uiout
, "\nTemporary breakpoint ");
3188 ui_out_text (uiout
, "\nBreakpoint ");
3189 if (ui_out_is_mi_like_p (uiout
))
3191 ui_out_field_string (uiout
, "reason",
3192 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT
));
3193 ui_out_field_string (uiout
, "disp", bpdisp_text (b
->disposition
));
3195 ui_out_field_int (uiout
, "bkptno", b
->number
);
3196 ui_out_text (uiout
, ", ");
3197 result
= PRINT_SRC_AND_LOC
;
3200 case bp_shlib_event
:
3201 /* Did we stop because the user set the stop_on_solib_events
3202 variable? (If so, we report this as a generic, "Stopped due
3203 to shlib event" message.) */
3204 printf_filtered (_("Stopped due to shared library event\n"));
3205 result
= PRINT_NOTHING
;
3208 case bp_thread_event
:
3209 /* Not sure how we will get here.
3210 GDB should not stop for these breakpoints. */
3211 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
3212 result
= PRINT_NOTHING
;
3215 case bp_overlay_event
:
3216 /* By analogy with the thread event, GDB should not stop for these. */
3217 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
3218 result
= PRINT_NOTHING
;
3221 case bp_longjmp_master
:
3222 /* These should never be enabled. */
3223 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
3224 result
= PRINT_NOTHING
;
3227 case bp_std_terminate_master
:
3228 /* These should never be enabled. */
3229 printf_filtered (_("std::terminate Master Breakpoint: gdb should not stop!\n"));
3230 result
= PRINT_NOTHING
;
3234 case bp_hardware_watchpoint
:
3235 annotate_watchpoint (b
->number
);
3236 if (ui_out_is_mi_like_p (uiout
))
3239 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER
));
3241 make_cleanup_ui_out_tuple_begin_end (uiout
, "value");
3242 ui_out_text (uiout
, "\nOld value = ");
3243 watchpoint_value_print (bs
->old_val
, stb
->stream
);
3244 ui_out_field_stream (uiout
, "old", stb
);
3245 ui_out_text (uiout
, "\nNew value = ");
3246 watchpoint_value_print (b
->val
, stb
->stream
);
3247 ui_out_field_stream (uiout
, "new", stb
);
3248 ui_out_text (uiout
, "\n");
3249 /* More than one watchpoint may have been triggered. */
3250 result
= PRINT_UNKNOWN
;
3253 case bp_read_watchpoint
:
3254 if (ui_out_is_mi_like_p (uiout
))
3257 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER
));
3259 make_cleanup_ui_out_tuple_begin_end (uiout
, "value");
3260 ui_out_text (uiout
, "\nValue = ");
3261 watchpoint_value_print (b
->val
, stb
->stream
);
3262 ui_out_field_stream (uiout
, "value", stb
);
3263 ui_out_text (uiout
, "\n");
3264 result
= PRINT_UNKNOWN
;
3267 case bp_access_watchpoint
:
3268 if (bs
->old_val
!= NULL
)
3270 annotate_watchpoint (b
->number
);
3271 if (ui_out_is_mi_like_p (uiout
))
3274 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER
));
3276 make_cleanup_ui_out_tuple_begin_end (uiout
, "value");
3277 ui_out_text (uiout
, "\nOld value = ");
3278 watchpoint_value_print (bs
->old_val
, stb
->stream
);
3279 ui_out_field_stream (uiout
, "old", stb
);
3280 ui_out_text (uiout
, "\nNew value = ");
3285 if (ui_out_is_mi_like_p (uiout
))
3288 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER
));
3289 make_cleanup_ui_out_tuple_begin_end (uiout
, "value");
3290 ui_out_text (uiout
, "\nValue = ");
3292 watchpoint_value_print (b
->val
, stb
->stream
);
3293 ui_out_field_stream (uiout
, "new", stb
);
3294 ui_out_text (uiout
, "\n");
3295 result
= PRINT_UNKNOWN
;
3298 /* Fall through, we don't deal with these types of breakpoints
3302 if (ui_out_is_mi_like_p (uiout
))
3305 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED
));
3306 result
= PRINT_UNKNOWN
;
3310 if (ui_out_is_mi_like_p (uiout
))
3313 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED
));
3314 result
= PRINT_UNKNOWN
;
3319 case bp_longjmp_resume
:
3320 case bp_step_resume
:
3321 case bp_watchpoint_scope
:
3323 case bp_std_terminate
:
3325 case bp_fast_tracepoint
:
3328 result
= PRINT_UNKNOWN
;
3332 do_cleanups (old_chain
);
3336 /* Generic routine for printing messages indicating why we
3337 stopped. The behavior of this function depends on the value
3338 'print_it' in the bpstat structure. Under some circumstances we
3339 may decide not to print anything here and delegate the task to
3342 static enum print_stop_action
3343 print_bp_stop_message (bpstat bs
)
3345 switch (bs
->print_it
)
3348 /* Nothing should be printed for this bpstat entry. */
3349 return PRINT_UNKNOWN
;
3353 /* We still want to print the frame, but we already printed the
3354 relevant messages. */
3355 return PRINT_SRC_AND_LOC
;
3358 case print_it_normal
:
3360 struct breakpoint
*b
= bs
->breakpoint_at
;
3362 /* Normal case. Call the breakpoint's print_it method, or
3363 print_it_typical. */
3364 /* FIXME: how breakpoint can ever be NULL here? */
3365 if (b
!= NULL
&& b
->ops
!= NULL
&& b
->ops
->print_it
!= NULL
)
3366 return b
->ops
->print_it (b
);
3368 return print_it_typical (bs
);
3373 internal_error (__FILE__
, __LINE__
,
3374 _("print_bp_stop_message: unrecognized enum value"));
3379 /* Print a message indicating what happened. This is called from
3380 normal_stop(). The input to this routine is the head of the bpstat
3381 list - a list of the eventpoints that caused this stop. This
3382 routine calls the generic print routine for printing a message
3383 about reasons for stopping. This will print (for example) the
3384 "Breakpoint n," part of the output. The return value of this
3387 PRINT_UNKNOWN: Means we printed nothing
3388 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
3389 code to print the location. An example is
3390 "Breakpoint 1, " which should be followed by
3392 PRINT_SRC_ONLY: Means we printed something, but there is no need
3393 to also print the location part of the message.
3394 An example is the catch/throw messages, which
3395 don't require a location appended to the end.
3396 PRINT_NOTHING: We have done some printing and we don't need any
3397 further info to be printed.*/
3399 enum print_stop_action
3400 bpstat_print (bpstat bs
)
3404 /* Maybe another breakpoint in the chain caused us to stop.
3405 (Currently all watchpoints go on the bpstat whether hit or not.
3406 That probably could (should) be changed, provided care is taken
3407 with respect to bpstat_explains_signal). */
3408 for (; bs
; bs
= bs
->next
)
3410 val
= print_bp_stop_message (bs
);
3411 if (val
== PRINT_SRC_ONLY
3412 || val
== PRINT_SRC_AND_LOC
3413 || val
== PRINT_NOTHING
)
3417 /* We reached the end of the chain, or we got a null BS to start
3418 with and nothing was printed. */
3419 return PRINT_UNKNOWN
;
3422 /* Evaluate the expression EXP and return 1 if value is zero.
3423 This is used inside a catch_errors to evaluate the breakpoint condition.
3424 The argument is a "struct expression *" that has been cast to char * to
3425 make it pass through catch_errors. */
3428 breakpoint_cond_eval (void *exp
)
3430 struct value
*mark
= value_mark ();
3431 int i
= !value_true (evaluate_expression ((struct expression
*) exp
));
3433 value_free_to_mark (mark
);
3437 /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
3440 bpstat_alloc (struct bp_location
*bl
, bpstat
**bs_link_pointer
)
3444 bs
= (bpstat
) xmalloc (sizeof (*bs
));
3446 **bs_link_pointer
= bs
;
3447 *bs_link_pointer
= &bs
->next
;
3448 bs
->breakpoint_at
= bl
->owner
;
3449 bs
->bp_location_at
= bl
;
3450 incref_bp_location (bl
);
3451 /* If the condition is false, etc., don't do the commands. */
3452 bs
->commands
= NULL
;
3453 bs
->commands_left
= NULL
;
3455 bs
->print_it
= print_it_normal
;
3459 /* The target has stopped with waitstatus WS. Check if any hardware
3460 watchpoints have triggered, according to the target. */
3463 watchpoints_triggered (struct target_waitstatus
*ws
)
3465 int stopped_by_watchpoint
= target_stopped_by_watchpoint ();
3467 struct breakpoint
*b
;
3469 if (!stopped_by_watchpoint
)
3471 /* We were not stopped by a watchpoint. Mark all watchpoints
3472 as not triggered. */
3474 if (is_hardware_watchpoint (b
))
3475 b
->watchpoint_triggered
= watch_triggered_no
;
3480 if (!target_stopped_data_address (¤t_target
, &addr
))
3482 /* We were stopped by a watchpoint, but we don't know where.
3483 Mark all watchpoints as unknown. */
3485 if (is_hardware_watchpoint (b
))
3486 b
->watchpoint_triggered
= watch_triggered_unknown
;
3488 return stopped_by_watchpoint
;
3491 /* The target could report the data address. Mark watchpoints
3492 affected by this data address as triggered, and all others as not
3496 if (is_hardware_watchpoint (b
))
3498 struct bp_location
*loc
;
3500 b
->watchpoint_triggered
= watch_triggered_no
;
3501 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
3502 /* Exact match not required. Within range is
3504 if (target_watchpoint_addr_within_range (¤t_target
,
3508 b
->watchpoint_triggered
= watch_triggered_yes
;
3516 /* Possible return values for watchpoint_check (this can't be an enum
3517 because of check_errors). */
3518 /* The watchpoint has been deleted. */
3519 #define WP_DELETED 1
3520 /* The value has changed. */
3521 #define WP_VALUE_CHANGED 2
3522 /* The value has not changed. */
3523 #define WP_VALUE_NOT_CHANGED 3
3524 /* Ignore this watchpoint, no matter if the value changed or not. */
3527 #define BP_TEMPFLAG 1
3528 #define BP_HARDWAREFLAG 2
3530 /* Evaluate watchpoint condition expression and check if its value changed.
3532 P should be a pointer to struct bpstat, but is defined as a void *
3533 in order for this function to be usable with catch_errors. */
3536 watchpoint_check (void *p
)
3538 bpstat bs
= (bpstat
) p
;
3539 struct breakpoint
*b
;
3540 struct frame_info
*fr
;
3541 int within_current_scope
;
3543 /* BS is built from an existing struct breakpoint. */
3544 gdb_assert (bs
->breakpoint_at
!= NULL
);
3545 b
= bs
->breakpoint_at
;
3547 /* If this is a local watchpoint, we only want to check if the
3548 watchpoint frame is in scope if the current thread is the thread
3549 that was used to create the watchpoint. */
3550 if (!watchpoint_in_thread_scope (b
))
3553 if (b
->exp_valid_block
== NULL
)
3554 within_current_scope
= 1;
3557 struct frame_info
*frame
= get_current_frame ();
3558 struct gdbarch
*frame_arch
= get_frame_arch (frame
);
3559 CORE_ADDR frame_pc
= get_frame_pc (frame
);
3561 /* in_function_epilogue_p() returns a non-zero value if we're still
3562 in the function but the stack frame has already been invalidated.
3563 Since we can't rely on the values of local variables after the
3564 stack has been destroyed, we are treating the watchpoint in that
3565 state as `not changed' without further checking. Don't mark
3566 watchpoints as changed if the current frame is in an epilogue -
3567 even if they are in some other frame, our view of the stack
3568 is likely to be wrong and frame_find_by_id could error out. */
3569 if (gdbarch_in_function_epilogue_p (frame_arch
, frame_pc
))
3572 fr
= frame_find_by_id (b
->watchpoint_frame
);
3573 within_current_scope
= (fr
!= NULL
);
3575 /* If we've gotten confused in the unwinder, we might have
3576 returned a frame that can't describe this variable. */
3577 if (within_current_scope
)
3579 struct symbol
*function
;
3581 function
= get_frame_function (fr
);
3582 if (function
== NULL
3583 || !contained_in (b
->exp_valid_block
,
3584 SYMBOL_BLOCK_VALUE (function
)))
3585 within_current_scope
= 0;
3588 if (within_current_scope
)
3589 /* If we end up stopping, the current frame will get selected
3590 in normal_stop. So this call to select_frame won't affect
3595 if (within_current_scope
)
3597 /* We use value_{,free_to_}mark because it could be a
3598 *long* time before we return to the command level and
3599 call free_all_values. We can't call free_all_values because
3600 we might be in the middle of evaluating a function call. */
3603 struct value
*mark
= value_mark ();
3604 struct value
*new_val
;
3606 fetch_subexp_value (b
->exp
, &pc
, &new_val
, NULL
, NULL
);
3608 /* We use value_equal_contents instead of value_equal because the latter
3609 coerces an array to a pointer, thus comparing just the address of the
3610 array instead of its contents. This is not what we want. */
3611 if ((b
->val
!= NULL
) != (new_val
!= NULL
)
3612 || (b
->val
!= NULL
&& !value_equal_contents (b
->val
, new_val
)))
3614 if (new_val
!= NULL
)
3616 release_value (new_val
);
3617 value_free_to_mark (mark
);
3619 bs
->old_val
= b
->val
;
3622 return WP_VALUE_CHANGED
;
3626 /* Nothing changed. */
3627 value_free_to_mark (mark
);
3628 return WP_VALUE_NOT_CHANGED
;
3633 /* This seems like the only logical thing to do because
3634 if we temporarily ignored the watchpoint, then when
3635 we reenter the block in which it is valid it contains
3636 garbage (in the case of a function, it may have two
3637 garbage values, one before and one after the prologue).
3638 So we can't even detect the first assignment to it and
3639 watch after that (since the garbage may or may not equal
3640 the first value assigned). */
3641 /* We print all the stop information in print_it_typical(), but
3642 in this case, by the time we call print_it_typical() this bp
3643 will be deleted already. So we have no choice but print the
3644 information here. */
3645 if (ui_out_is_mi_like_p (uiout
))
3647 (uiout
, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE
));
3648 ui_out_text (uiout
, "\nWatchpoint ");
3649 ui_out_field_int (uiout
, "wpnum", b
->number
);
3650 ui_out_text (uiout
, " deleted because the program has left the block in\n\
3651 which its expression is valid.\n");
3653 if (b
->related_breakpoint
)
3655 b
->related_breakpoint
->disposition
= disp_del_at_next_stop
;
3656 b
->related_breakpoint
->related_breakpoint
= NULL
;
3657 b
->related_breakpoint
= NULL
;
3659 b
->disposition
= disp_del_at_next_stop
;
3665 /* Return true if it looks like target has stopped due to hitting
3666 breakpoint location BL. This function does not check if we
3667 should stop, only if BL explains the stop. */
3669 bpstat_check_location (const struct bp_location
*bl
,
3670 struct address_space
*aspace
, CORE_ADDR bp_addr
)
3672 struct breakpoint
*b
= bl
->owner
;
3674 /* BL is from existing struct breakpoint. */
3675 gdb_assert (b
!= NULL
);
3677 /* By definition, the inferior does not report stops at
3679 if (is_tracepoint (b
))
3682 if (!is_watchpoint (b
)
3683 && b
->type
!= bp_hardware_breakpoint
3684 && b
->type
!= bp_catchpoint
) /* a non-watchpoint bp */
3686 if (!breakpoint_address_match (bl
->pspace
->aspace
, bl
->address
,
3689 if (overlay_debugging
/* unmapped overlay section */
3690 && section_is_overlay (bl
->section
)
3691 && !section_is_mapped (bl
->section
))
3695 /* Continuable hardware watchpoints are treated as non-existent if the
3696 reason we stopped wasn't a hardware watchpoint (we didn't stop on
3697 some data address). Otherwise gdb won't stop on a break instruction
3698 in the code (not from a breakpoint) when a hardware watchpoint has
3699 been defined. Also skip watchpoints which we know did not trigger
3700 (did not match the data address). */
3702 if (is_hardware_watchpoint (b
)
3703 && b
->watchpoint_triggered
== watch_triggered_no
)
3706 if (b
->type
== bp_hardware_breakpoint
)
3708 if (bl
->address
!= bp_addr
)
3710 if (overlay_debugging
/* unmapped overlay section */
3711 && section_is_overlay (bl
->section
)
3712 && !section_is_mapped (bl
->section
))
3716 if (b
->type
== bp_catchpoint
)
3718 gdb_assert (b
->ops
!= NULL
&& b
->ops
->breakpoint_hit
!= NULL
);
3719 if (!b
->ops
->breakpoint_hit (b
))
3726 /* If BS refers to a watchpoint, determine if the watched values
3727 has actually changed, and we should stop. If not, set BS->stop
3730 bpstat_check_watchpoint (bpstat bs
)
3732 const struct bp_location
*bl
;
3733 struct breakpoint
*b
;
3735 /* BS is built for existing struct breakpoint. */
3736 bl
= bs
->bp_location_at
;
3737 gdb_assert (bl
!= NULL
);
3738 b
= bs
->breakpoint_at
;
3739 gdb_assert (b
!= NULL
);
3741 if (is_watchpoint (b
))
3743 int must_check_value
= 0;
3745 if (b
->type
== bp_watchpoint
)
3746 /* For a software watchpoint, we must always check the
3748 must_check_value
= 1;
3749 else if (b
->watchpoint_triggered
== watch_triggered_yes
)
3750 /* We have a hardware watchpoint (read, write, or access)
3751 and the target earlier reported an address watched by
3753 must_check_value
= 1;
3754 else if (b
->watchpoint_triggered
== watch_triggered_unknown
3755 && b
->type
== bp_hardware_watchpoint
)
3756 /* We were stopped by a hardware watchpoint, but the target could
3757 not report the data address. We must check the watchpoint's
3758 value. Access and read watchpoints are out of luck; without
3759 a data address, we can't figure it out. */
3760 must_check_value
= 1;
3762 if (must_check_value
)
3764 char *message
= xstrprintf ("Error evaluating expression for watchpoint %d\n",
3766 struct cleanup
*cleanups
= make_cleanup (xfree
, message
);
3767 int e
= catch_errors (watchpoint_check
, bs
, message
,
3769 do_cleanups (cleanups
);
3773 /* We've already printed what needs to be printed. */
3774 bs
->print_it
= print_it_done
;
3778 bs
->print_it
= print_it_noop
;
3781 case WP_VALUE_CHANGED
:
3782 if (b
->type
== bp_read_watchpoint
)
3784 /* There are two cases to consider here:
3786 1. we're watching the triggered memory for reads.
3787 In that case, trust the target, and always report
3788 the watchpoint hit to the user. Even though
3789 reads don't cause value changes, the value may
3790 have changed since the last time it was read, and
3791 since we're not trapping writes, we will not see
3792 those, and as such we should ignore our notion of
3795 2. we're watching the triggered memory for both
3796 reads and writes. There are two ways this may
3799 2.1. this is a target that can't break on data
3800 reads only, but can break on accesses (reads or
3801 writes), such as e.g., x86. We detect this case
3802 at the time we try to insert read watchpoints.
3804 2.2. otherwise, the target supports read
3805 watchpoints, but, the user set an access or write
3806 watchpoint watching the same memory as this read
3809 If we're watching memory writes as well as reads,
3810 ignore watchpoint hits when we find that the
3811 value hasn't changed, as reads don't cause
3812 changes. This still gives false positives when
3813 the program writes the same value to memory as
3814 what there was already in memory (we will confuse
3815 it for a read), but it's much better than
3818 int other_write_watchpoint
= 0;
3820 if (bl
->watchpoint_type
== hw_read
)
3822 struct breakpoint
*other_b
;
3824 ALL_BREAKPOINTS (other_b
)
3825 if ((other_b
->type
== bp_hardware_watchpoint
3826 || other_b
->type
== bp_access_watchpoint
)
3827 && (other_b
->watchpoint_triggered
3828 == watch_triggered_yes
))
3830 other_write_watchpoint
= 1;
3835 if (other_write_watchpoint
3836 || bl
->watchpoint_type
== hw_access
)
3838 /* We're watching the same memory for writes,
3839 and the value changed since the last time we
3840 updated it, so this trap must be for a write.
3842 bs
->print_it
= print_it_noop
;
3847 case WP_VALUE_NOT_CHANGED
:
3848 if (b
->type
== bp_hardware_watchpoint
3849 || b
->type
== bp_watchpoint
)
3851 /* Don't stop: write watchpoints shouldn't fire if
3852 the value hasn't changed. */
3853 bs
->print_it
= print_it_noop
;
3861 /* Error from catch_errors. */
3862 printf_filtered (_("Watchpoint %d deleted.\n"), b
->number
);
3863 if (b
->related_breakpoint
)
3864 b
->related_breakpoint
->disposition
= disp_del_at_next_stop
;
3865 b
->disposition
= disp_del_at_next_stop
;
3866 /* We've already printed what needs to be printed. */
3867 bs
->print_it
= print_it_done
;
3871 else /* must_check_value == 0 */
3873 /* This is a case where some watchpoint(s) triggered, but
3874 not at the address of this watchpoint, or else no
3875 watchpoint triggered after all. So don't print
3876 anything for this watchpoint. */
3877 bs
->print_it
= print_it_noop
;
3884 /* Check conditions (condition proper, frame, thread and ignore count)
3885 of breakpoint referred to by BS. If we should not stop for this
3886 breakpoint, set BS->stop to 0. */
3889 bpstat_check_breakpoint_conditions (bpstat bs
, ptid_t ptid
)
3891 int thread_id
= pid_to_thread_id (ptid
);
3892 const struct bp_location
*bl
;
3893 struct breakpoint
*b
;
3895 /* BS is built for existing struct breakpoint. */
3896 bl
= bs
->bp_location_at
;
3897 gdb_assert (bl
!= NULL
);
3898 b
= bs
->breakpoint_at
;
3899 gdb_assert (b
!= NULL
);
3901 if (frame_id_p (b
->frame_id
)
3902 && !frame_id_eq (b
->frame_id
, get_stack_frame_id (get_current_frame ())))
3906 int value_is_zero
= 0;
3907 struct expression
*cond
;
3909 if (is_watchpoint (b
))
3914 if (cond
&& b
->disposition
!= disp_del_at_next_stop
)
3916 int within_current_scope
= 1;
3918 /* We use value_mark and value_free_to_mark because it could
3919 be a long time before we return to the command level and
3920 call free_all_values. We can't call free_all_values
3921 because we might be in the middle of evaluating a
3923 struct value
*mark
= value_mark ();
3925 /* Need to select the frame, with all that implies so that
3926 the conditions will have the right context. Because we
3927 use the frame, we will not see an inlined function's
3928 variables when we arrive at a breakpoint at the start
3929 of the inlined function; the current frame will be the
3931 if (!is_watchpoint (b
) || b
->cond_exp_valid_block
== NULL
)
3932 select_frame (get_current_frame ());
3935 struct frame_info
*frame
;
3937 /* For local watchpoint expressions, which particular
3938 instance of a local is being watched matters, so we
3939 keep track of the frame to evaluate the expression
3940 in. To evaluate the condition however, it doesn't
3941 really matter which instantiation of the function
3942 where the condition makes sense triggers the
3943 watchpoint. This allows an expression like "watch
3944 global if q > 10" set in `func', catch writes to
3945 global on all threads that call `func', or catch
3946 writes on all recursive calls of `func' by a single
3947 thread. We simply always evaluate the condition in
3948 the innermost frame that's executing where it makes
3949 sense to evaluate the condition. It seems
3951 frame
= block_innermost_frame (b
->cond_exp_valid_block
);
3953 select_frame (frame
);
3955 within_current_scope
= 0;
3957 if (within_current_scope
)
3959 = catch_errors (breakpoint_cond_eval
, cond
,
3960 "Error in testing breakpoint condition:\n",
3964 warning (_("Watchpoint condition cannot be tested "
3965 "in the current scope"));
3966 /* If we failed to set the right context for this
3967 watchpoint, unconditionally report it. */
3970 /* FIXME-someday, should give breakpoint # */
3971 value_free_to_mark (mark
);
3974 if (cond
&& value_is_zero
)
3978 else if (b
->thread
!= -1 && b
->thread
!= thread_id
)
3982 else if (b
->ignore_count
> 0)
3985 annotate_ignore_count_change ();
3987 /* Increase the hit count even though we don't
3995 /* Get a bpstat associated with having just stopped at address
3996 BP_ADDR in thread PTID.
3998 Determine whether we stopped at a breakpoint, etc, or whether we
3999 don't understand this stop. Result is a chain of bpstat's such that:
4001 if we don't understand the stop, the result is a null pointer.
4003 if we understand why we stopped, the result is not null.
4005 Each element of the chain refers to a particular breakpoint or
4006 watchpoint at which we have stopped. (We may have stopped for
4007 several reasons concurrently.)
4009 Each element of the chain has valid next, breakpoint_at,
4010 commands, FIXME??? fields. */
4013 bpstat_stop_status (struct address_space
*aspace
,
4014 CORE_ADDR bp_addr
, ptid_t ptid
)
4016 struct breakpoint
*b
= NULL
;
4017 struct bp_location
*bl
;
4018 struct bp_location
*loc
;
4019 /* First item of allocated bpstat's. */
4020 bpstat bs_head
= NULL
, *bs_link
= &bs_head
;
4021 /* Pointer to the last thing in the chain currently. */
4024 int need_remove_insert
;
4027 /* First, build the bpstat chain with locations that explain a
4028 target stop, while being careful to not set the target running,
4029 as that may invalidate locations (in particular watchpoint
4030 locations are recreated). Resuming will happen here with
4031 breakpoint conditions or watchpoint expressions that include
4032 inferior function calls. */
4036 if (!breakpoint_enabled (b
) && b
->enable_state
!= bp_permanent
)
4039 for (bl
= b
->loc
; bl
!= NULL
; bl
= bl
->next
)
4041 /* For hardware watchpoints, we look only at the first location.
4042 The watchpoint_check function will work on the entire expression,
4043 not the individual locations. For read watchpoints, the
4044 watchpoints_triggered function has checked all locations
4046 if (b
->type
== bp_hardware_watchpoint
&& bl
!= b
->loc
)
4049 if (bl
->shlib_disabled
)
4052 if (!bpstat_check_location (bl
, aspace
, bp_addr
))
4055 /* Come here if it's a watchpoint, or if the break address matches */
4057 bs
= bpstat_alloc (bl
, &bs_link
); /* Alloc a bpstat to explain stop */
4059 /* Assume we stop. Should we find a watchpoint that is not
4060 actually triggered, or if the condition of the breakpoint
4061 evaluates as false, we'll reset 'stop' to 0. */
4065 /* If this is a scope breakpoint, mark the associated
4066 watchpoint as triggered so that we will handle the
4067 out-of-scope event. We'll get to the watchpoint next
4069 if (b
->type
== bp_watchpoint_scope
)
4070 b
->related_breakpoint
->watchpoint_triggered
= watch_triggered_yes
;
4074 for (ix
= 0; VEC_iterate (bp_location_p
, moribund_locations
, ix
, loc
); ++ix
)
4076 if (breakpoint_address_match (loc
->pspace
->aspace
, loc
->address
,
4079 bs
= bpstat_alloc (loc
, &bs_link
);
4080 /* For hits of moribund locations, we should just proceed. */
4083 bs
->print_it
= print_it_noop
;
4087 /* Now go through the locations that caused the target to stop, and
4088 check whether we're interested in reporting this stop to higher
4089 layers, or whether we should resume the target transparently. */
4093 for (bs
= bs_head
; bs
!= NULL
; bs
= bs
->next
)
4098 bpstat_check_watchpoint (bs
);
4102 b
= bs
->breakpoint_at
;
4104 if (b
->type
== bp_thread_event
|| b
->type
== bp_overlay_event
4105 || b
->type
== bp_longjmp_master
4106 || b
->type
== bp_std_terminate_master
)
4107 /* We do not stop for these. */
4110 bpstat_check_breakpoint_conditions (bs
, ptid
);
4116 /* We will stop here */
4117 if (b
->disposition
== disp_disable
)
4119 if (b
->enable_state
!= bp_permanent
)
4120 b
->enable_state
= bp_disabled
;
4125 bs
->commands
= b
->commands
;
4126 incref_counted_command_line (bs
->commands
);
4127 bs
->commands_left
= bs
->commands
? bs
->commands
->commands
: NULL
;
4128 if (bs
->commands_left
4129 && (strcmp ("silent", bs
->commands_left
->line
) == 0
4132 bs
->commands_left
->line
) == 0)))
4134 bs
->commands_left
= bs
->commands_left
->next
;
4139 /* Print nothing for this entry if we dont stop or dont print. */
4140 if (bs
->stop
== 0 || bs
->print
== 0)
4141 bs
->print_it
= print_it_noop
;
4144 /* If we aren't stopping, the value of some hardware watchpoint may
4145 not have changed, but the intermediate memory locations we are
4146 watching may have. Don't bother if we're stopping; this will get
4148 need_remove_insert
= 0;
4149 if (! bpstat_causes_stop (bs_head
))
4150 for (bs
= bs_head
; bs
!= NULL
; bs
= bs
->next
)
4152 && bs
->breakpoint_at
4153 && is_hardware_watchpoint (bs
->breakpoint_at
))
4155 update_watchpoint (bs
->breakpoint_at
, 0 /* don't reparse. */);
4156 need_remove_insert
= 1;
4159 if (need_remove_insert
)
4160 update_global_location_list (1);
4161 else if (removed_any
)
4162 update_global_location_list (0);
4168 handle_jit_event (void)
4170 struct frame_info
*frame
;
4171 struct gdbarch
*gdbarch
;
4173 /* Switch terminal for any messages produced by
4174 breakpoint_re_set. */
4175 target_terminal_ours_for_output ();
4177 frame
= get_current_frame ();
4178 gdbarch
= get_frame_arch (frame
);
4180 jit_event_handler (gdbarch
);
4182 target_terminal_inferior ();
4185 /* Prepare WHAT final decision for infrun. */
4187 /* Decide what infrun needs to do with this bpstat. */
4190 bpstat_what (bpstat bs
)
4192 struct bpstat_what retval
;
4193 /* We need to defer calling `solib_add', as adding new symbols
4194 resets breakpoints, which in turn deletes breakpoint locations,
4195 and hence may clear unprocessed entries in the BS chain. */
4196 int shlib_event
= 0;
4199 retval
.main_action
= BPSTAT_WHAT_KEEP_CHECKING
;
4200 retval
.call_dummy
= STOP_NONE
;
4202 for (; bs
!= NULL
; bs
= bs
->next
)
4204 /* Extract this BS's action. After processing each BS, we check
4205 if its action overrides all we've seem so far. */
4206 enum bpstat_what_main_action this_action
= BPSTAT_WHAT_KEEP_CHECKING
;
4209 if (bs
->breakpoint_at
== NULL
)
4211 /* I suspect this can happen if it was a momentary
4212 breakpoint which has since been deleted. */
4215 else if (bs
->breakpoint_at
== NULL
)
4218 bptype
= bs
->breakpoint_at
->type
;
4225 case bp_hardware_breakpoint
:
4231 this_action
= BPSTAT_WHAT_STOP_NOISY
;
4233 this_action
= BPSTAT_WHAT_STOP_SILENT
;
4236 this_action
= BPSTAT_WHAT_SINGLE
;
4239 case bp_hardware_watchpoint
:
4240 case bp_read_watchpoint
:
4241 case bp_access_watchpoint
:
4245 this_action
= BPSTAT_WHAT_STOP_NOISY
;
4247 this_action
= BPSTAT_WHAT_STOP_SILENT
;
4251 /* There was a watchpoint, but we're not stopping.
4252 This requires no further action. */
4256 this_action
= BPSTAT_WHAT_SET_LONGJMP_RESUME
;
4258 case bp_longjmp_resume
:
4259 this_action
= BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
;
4261 case bp_step_resume
:
4263 this_action
= BPSTAT_WHAT_STEP_RESUME
;
4266 /* It is for the wrong frame. */
4267 this_action
= BPSTAT_WHAT_SINGLE
;
4270 case bp_watchpoint_scope
:
4271 case bp_thread_event
:
4272 case bp_overlay_event
:
4273 case bp_longjmp_master
:
4274 case bp_std_terminate_master
:
4275 this_action
= BPSTAT_WHAT_SINGLE
;
4281 this_action
= BPSTAT_WHAT_STOP_NOISY
;
4283 this_action
= BPSTAT_WHAT_STOP_SILENT
;
4287 /* There was a catchpoint, but we're not stopping.
4288 This requires no further action. */
4291 case bp_shlib_event
:
4294 /* If requested, stop when the dynamic linker notifies GDB
4295 of events. This allows the user to get control and place
4296 breakpoints in initializer routines for dynamically
4297 loaded objects (among other things). */
4298 if (stop_on_solib_events
)
4299 this_action
= BPSTAT_WHAT_STOP_NOISY
;
4301 this_action
= BPSTAT_WHAT_SINGLE
;
4305 this_action
= BPSTAT_WHAT_SINGLE
;
4308 /* Make sure the action is stop (silent or noisy),
4309 so infrun.c pops the dummy frame. */
4310 retval
.call_dummy
= STOP_STACK_DUMMY
;
4311 this_action
= BPSTAT_WHAT_STOP_SILENT
;
4313 case bp_std_terminate
:
4314 /* Make sure the action is stop (silent or noisy),
4315 so infrun.c pops the dummy frame. */
4316 retval
.call_dummy
= STOP_STD_TERMINATE
;
4317 this_action
= BPSTAT_WHAT_STOP_SILENT
;
4320 case bp_fast_tracepoint
:
4321 case bp_static_tracepoint
:
4322 /* Tracepoint hits should not be reported back to GDB, and
4323 if one got through somehow, it should have been filtered
4325 internal_error (__FILE__
, __LINE__
,
4326 _("bpstat_what: tracepoint encountered"));
4328 internal_error (__FILE__
, __LINE__
,
4329 _("bpstat_what: unhandled bptype %d"), (int) bptype
);
4332 retval
.main_action
= max (retval
.main_action
, this_action
);
4338 fprintf_unfiltered (gdb_stdlog
, "bpstat_what: bp_shlib_event\n");
4340 /* Check for any newly added shared libraries if we're supposed
4341 to be adding them automatically. */
4343 /* Switch terminal for any messages produced by
4344 breakpoint_re_set. */
4345 target_terminal_ours_for_output ();
4348 SOLIB_ADD (NULL
, 0, ¤t_target
, auto_solib_add
);
4350 solib_add (NULL
, 0, ¤t_target
, auto_solib_add
);
4353 target_terminal_inferior ();
4359 fprintf_unfiltered (gdb_stdlog
, "bpstat_what: bp_jit_event\n");
4361 handle_jit_event ();
4367 /* Nonzero if we should step constantly (e.g. watchpoints on machines
4368 without hardware support). This isn't related to a specific bpstat,
4369 just to things like whether watchpoints are set. */
4372 bpstat_should_step (void)
4374 struct breakpoint
*b
;
4377 if (breakpoint_enabled (b
) && b
->type
== bp_watchpoint
&& b
->loc
!= NULL
)
4383 bpstat_causes_stop (bpstat bs
)
4385 for (; bs
!= NULL
; bs
= bs
->next
)
4394 /* Print the LOC location out of the list of B->LOC locations. */
4396 static void print_breakpoint_location (struct breakpoint
*b
,
4397 struct bp_location
*loc
,
4399 struct ui_stream
*stb
)
4401 struct cleanup
*old_chain
= save_current_program_space ();
4403 if (loc
!= NULL
&& loc
->shlib_disabled
)
4407 set_current_program_space (loc
->pspace
);
4409 if (b
->source_file
&& loc
)
4412 = find_pc_sect_function (loc
->address
, loc
->section
);
4415 ui_out_text (uiout
, "in ");
4416 ui_out_field_string (uiout
, "func",
4417 SYMBOL_PRINT_NAME (sym
));
4418 ui_out_wrap_hint (uiout
, wrap_indent
);
4419 ui_out_text (uiout
, " at ");
4421 ui_out_field_string (uiout
, "file", b
->source_file
);
4422 ui_out_text (uiout
, ":");
4424 if (ui_out_is_mi_like_p (uiout
))
4426 struct symtab_and_line sal
= find_pc_line (loc
->address
, 0);
4427 char *fullname
= symtab_to_fullname (sal
.symtab
);
4430 ui_out_field_string (uiout
, "fullname", fullname
);
4433 ui_out_field_int (uiout
, "line", b
->line_number
);
4437 print_address_symbolic (loc
->gdbarch
, loc
->address
, stb
->stream
,
4439 ui_out_field_stream (uiout
, "at", stb
);
4442 ui_out_field_string (uiout
, "pending", b
->addr_string
);
4444 do_cleanups (old_chain
);
4448 bptype_string (enum bptype type
)
4450 struct ep_type_description
4455 static struct ep_type_description bptypes
[] =
4457 {bp_none
, "?deleted?"},
4458 {bp_breakpoint
, "breakpoint"},
4459 {bp_hardware_breakpoint
, "hw breakpoint"},
4460 {bp_until
, "until"},
4461 {bp_finish
, "finish"},
4462 {bp_watchpoint
, "watchpoint"},
4463 {bp_hardware_watchpoint
, "hw watchpoint"},
4464 {bp_read_watchpoint
, "read watchpoint"},
4465 {bp_access_watchpoint
, "acc watchpoint"},
4466 {bp_longjmp
, "longjmp"},
4467 {bp_longjmp_resume
, "longjmp resume"},
4468 {bp_step_resume
, "step resume"},
4469 {bp_watchpoint_scope
, "watchpoint scope"},
4470 {bp_call_dummy
, "call dummy"},
4471 {bp_std_terminate
, "std::terminate"},
4472 {bp_shlib_event
, "shlib events"},
4473 {bp_thread_event
, "thread events"},
4474 {bp_overlay_event
, "overlay events"},
4475 {bp_longjmp_master
, "longjmp master"},
4476 {bp_std_terminate_master
, "std::terminate master"},
4477 {bp_catchpoint
, "catchpoint"},
4478 {bp_tracepoint
, "tracepoint"},
4479 {bp_fast_tracepoint
, "fast tracepoint"},
4480 {bp_static_tracepoint
, "static tracepoint"},
4481 {bp_jit_event
, "jit events"},
4484 if (((int) type
>= (sizeof (bptypes
) / sizeof (bptypes
[0])))
4485 || ((int) type
!= bptypes
[(int) type
].type
))
4486 internal_error (__FILE__
, __LINE__
,
4487 _("bptypes table does not describe type #%d."),
4490 return bptypes
[(int) type
].description
;
4493 /* Print B to gdb_stdout. */
4496 print_one_breakpoint_location (struct breakpoint
*b
,
4497 struct bp_location
*loc
,
4499 struct bp_location
**last_loc
,
4500 int print_address_bits
,
4503 struct command_line
*l
;
4504 static char bpenables
[] = "nynny";
4505 char wrap_indent
[80];
4506 struct ui_stream
*stb
= ui_out_stream_new (uiout
);
4507 struct cleanup
*old_chain
= make_cleanup_ui_out_stream_delete (stb
);
4508 struct cleanup
*bkpt_chain
;
4510 int header_of_multiple
= 0;
4511 int part_of_multiple
= (loc
!= NULL
);
4512 struct value_print_options opts
;
4514 get_user_print_options (&opts
);
4516 gdb_assert (!loc
|| loc_number
!= 0);
4517 /* See comment in print_one_breakpoint concerning
4518 treatment of breakpoints with single disabled
4522 && (b
->loc
->next
!= NULL
|| !b
->loc
->enabled
)))
4523 header_of_multiple
= 1;
4528 bkpt_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "bkpt");
4532 if (part_of_multiple
)
4535 formatted
= xstrprintf ("%d.%d", b
->number
, loc_number
);
4536 ui_out_field_string (uiout
, "number", formatted
);
4541 ui_out_field_int (uiout
, "number", b
->number
);
4546 if (part_of_multiple
)
4547 ui_out_field_skip (uiout
, "type");
4549 ui_out_field_string (uiout
, "type", bptype_string (b
->type
));
4553 if (part_of_multiple
)
4554 ui_out_field_skip (uiout
, "disp");
4556 ui_out_field_string (uiout
, "disp", bpdisp_text (b
->disposition
));
4561 if (part_of_multiple
)
4562 ui_out_field_string (uiout
, "enabled", loc
->enabled
? "y" : "n");
4564 ui_out_field_fmt (uiout
, "enabled", "%c",
4565 bpenables
[(int) b
->enable_state
]);
4566 ui_out_spaces (uiout
, 2);
4570 strcpy (wrap_indent
, " ");
4571 if (opts
.addressprint
)
4573 if (print_address_bits
<= 32)
4574 strcat (wrap_indent
, " ");
4576 strcat (wrap_indent
, " ");
4579 if (b
->ops
!= NULL
&& b
->ops
->print_one
!= NULL
)
4581 /* Although the print_one can possibly print
4582 all locations, calling it here is not likely
4583 to get any nice result. So, make sure there's
4584 just one location. */
4585 gdb_assert (b
->loc
== NULL
|| b
->loc
->next
== NULL
);
4586 b
->ops
->print_one (b
, last_loc
);
4592 internal_error (__FILE__
, __LINE__
,
4593 _("print_one_breakpoint: bp_none encountered\n"));
4597 case bp_hardware_watchpoint
:
4598 case bp_read_watchpoint
:
4599 case bp_access_watchpoint
:
4600 /* Field 4, the address, is omitted (which makes the columns
4601 not line up too nicely with the headers, but the effect
4602 is relatively readable). */
4603 if (opts
.addressprint
)
4604 ui_out_field_skip (uiout
, "addr");
4606 ui_out_field_string (uiout
, "what", b
->exp_string
);
4610 case bp_hardware_breakpoint
:
4614 case bp_longjmp_resume
:
4615 case bp_step_resume
:
4616 case bp_watchpoint_scope
:
4618 case bp_std_terminate
:
4619 case bp_shlib_event
:
4620 case bp_thread_event
:
4621 case bp_overlay_event
:
4622 case bp_longjmp_master
:
4623 case bp_std_terminate_master
:
4625 case bp_fast_tracepoint
:
4626 case bp_static_tracepoint
:
4628 if (opts
.addressprint
)
4631 if (header_of_multiple
)
4632 ui_out_field_string (uiout
, "addr", "<MULTIPLE>");
4633 else if (b
->loc
== NULL
|| loc
->shlib_disabled
)
4634 ui_out_field_string (uiout
, "addr", "<PENDING>");
4636 ui_out_field_core_addr (uiout
, "addr",
4637 loc
->gdbarch
, loc
->address
);
4640 if (!header_of_multiple
)
4641 print_breakpoint_location (b
, loc
, wrap_indent
, stb
);
4648 /* For backward compatibility, don't display inferiors unless there
4651 && !header_of_multiple
4653 || (!gdbarch_has_global_breakpoints (target_gdbarch
)
4654 && (number_of_program_spaces () > 1
4655 || number_of_inferiors () > 1)
4656 /* LOC is for existing B, it cannot be in moribund_locations and
4657 thus having NULL OWNER. */
4658 && loc
->owner
->type
!= bp_catchpoint
)))
4660 struct inferior
*inf
;
4663 for (inf
= inferior_list
; inf
!= NULL
; inf
= inf
->next
)
4665 if (inf
->pspace
== loc
->pspace
)
4670 ui_out_text (uiout
, " inf ");
4673 ui_out_text (uiout
, ", ");
4674 ui_out_text (uiout
, plongest (inf
->num
));
4679 if (!part_of_multiple
)
4681 if (b
->thread
!= -1)
4683 /* FIXME: This seems to be redundant and lost here; see the
4684 "stop only in" line a little further down. */
4685 ui_out_text (uiout
, " thread ");
4686 ui_out_field_int (uiout
, "thread", b
->thread
);
4688 else if (b
->task
!= 0)
4690 ui_out_text (uiout
, " task ");
4691 ui_out_field_int (uiout
, "task", b
->task
);
4695 ui_out_text (uiout
, "\n");
4697 if (!part_of_multiple
&& b
->static_trace_marker_id
)
4699 gdb_assert (b
->type
== bp_static_tracepoint
);
4701 ui_out_text (uiout
, "\tmarker id is ");
4702 ui_out_field_string (uiout
, "static-tracepoint-marker-string-id",
4703 b
->static_trace_marker_id
);
4704 ui_out_text (uiout
, "\n");
4707 if (part_of_multiple
&& frame_id_p (b
->frame_id
))
4710 ui_out_text (uiout
, "\tstop only in stack frame at ");
4711 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
4713 ui_out_field_core_addr (uiout
, "frame",
4714 b
->gdbarch
, b
->frame_id
.stack_addr
);
4715 ui_out_text (uiout
, "\n");
4718 if (!part_of_multiple
&& b
->cond_string
&& !ada_exception_catchpoint_p (b
))
4720 /* We do not print the condition for Ada exception catchpoints
4721 because the condition is an internal implementation detail
4722 that we do not want to expose to the user. */
4724 if (is_tracepoint (b
))
4725 ui_out_text (uiout
, "\ttrace only if ");
4727 ui_out_text (uiout
, "\tstop only if ");
4728 ui_out_field_string (uiout
, "cond", b
->cond_string
);
4729 ui_out_text (uiout
, "\n");
4732 if (!part_of_multiple
&& b
->thread
!= -1)
4734 /* FIXME should make an annotation for this */
4735 ui_out_text (uiout
, "\tstop only in thread ");
4736 ui_out_field_int (uiout
, "thread", b
->thread
);
4737 ui_out_text (uiout
, "\n");
4740 if (!part_of_multiple
&& b
->hit_count
)
4742 /* FIXME should make an annotation for this */
4743 if (ep_is_catchpoint (b
))
4744 ui_out_text (uiout
, "\tcatchpoint");
4746 ui_out_text (uiout
, "\tbreakpoint");
4747 ui_out_text (uiout
, " already hit ");
4748 ui_out_field_int (uiout
, "times", b
->hit_count
);
4749 if (b
->hit_count
== 1)
4750 ui_out_text (uiout
, " time\n");
4752 ui_out_text (uiout
, " times\n");
4755 /* Output the count also if it is zero, but only if this is
4756 mi. FIXME: Should have a better test for this. */
4757 if (ui_out_is_mi_like_p (uiout
))
4758 if (!part_of_multiple
&& b
->hit_count
== 0)
4759 ui_out_field_int (uiout
, "times", b
->hit_count
);
4761 if (!part_of_multiple
&& b
->ignore_count
)
4764 ui_out_text (uiout
, "\tignore next ");
4765 ui_out_field_int (uiout
, "ignore", b
->ignore_count
);
4766 ui_out_text (uiout
, " hits\n");
4769 l
= b
->commands
? b
->commands
->commands
: NULL
;
4770 if (!part_of_multiple
&& l
)
4772 struct cleanup
*script_chain
;
4775 script_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "script");
4776 print_command_lines (uiout
, l
, 4);
4777 do_cleanups (script_chain
);
4780 if (!part_of_multiple
&& b
->pass_count
)
4782 annotate_field (10);
4783 ui_out_text (uiout
, "\tpass count ");
4784 ui_out_field_int (uiout
, "pass", b
->pass_count
);
4785 ui_out_text (uiout
, " \n");
4788 if (ui_out_is_mi_like_p (uiout
) && !part_of_multiple
)
4791 ui_out_field_string (uiout
, "original-location", b
->addr_string
);
4792 else if (b
->exp_string
)
4793 ui_out_field_string (uiout
, "original-location", b
->exp_string
);
4796 do_cleanups (bkpt_chain
);
4797 do_cleanups (old_chain
);
4801 print_one_breakpoint (struct breakpoint
*b
,
4802 struct bp_location
**last_loc
, int print_address_bits
,
4805 print_one_breakpoint_location (b
, NULL
, 0, last_loc
,
4806 print_address_bits
, allflag
);
4808 /* If this breakpoint has custom print function,
4809 it's already printed. Otherwise, print individual
4810 locations, if any. */
4811 if (b
->ops
== NULL
|| b
->ops
->print_one
== NULL
)
4813 /* If breakpoint has a single location that is
4814 disabled, we print it as if it had
4815 several locations, since otherwise it's hard to
4816 represent "breakpoint enabled, location disabled"
4818 Note that while hardware watchpoints have
4819 several locations internally, that's no a property
4822 && !is_hardware_watchpoint (b
)
4823 && (b
->loc
->next
|| !b
->loc
->enabled
)
4824 && !ui_out_is_mi_like_p (uiout
))
4826 struct bp_location
*loc
;
4828 for (loc
= b
->loc
; loc
; loc
= loc
->next
, ++n
)
4829 print_one_breakpoint_location (b
, loc
, n
, last_loc
,
4830 print_address_bits
, allflag
);
4836 breakpoint_address_bits (struct breakpoint
*b
)
4838 int print_address_bits
= 0;
4839 struct bp_location
*loc
;
4841 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
4845 /* Software watchpoints that aren't watching memory don't have
4846 an address to print. */
4847 if (b
->type
== bp_watchpoint
&& loc
->watchpoint_type
== -1)
4850 addr_bit
= gdbarch_addr_bit (loc
->gdbarch
);
4851 if (addr_bit
> print_address_bits
)
4852 print_address_bits
= addr_bit
;
4855 return print_address_bits
;
4858 struct captured_breakpoint_query_args
4864 do_captured_breakpoint_query (struct ui_out
*uiout
, void *data
)
4866 struct captured_breakpoint_query_args
*args
= data
;
4867 struct breakpoint
*b
;
4868 struct bp_location
*dummy_loc
= NULL
;
4872 if (args
->bnum
== b
->number
)
4874 int print_address_bits
= breakpoint_address_bits (b
);
4876 print_one_breakpoint (b
, &dummy_loc
, print_address_bits
, 0);
4884 gdb_breakpoint_query (struct ui_out
*uiout
, int bnum
, char **error_message
)
4886 struct captured_breakpoint_query_args args
;
4889 /* For the moment we don't trust print_one_breakpoint() to not throw
4891 if (catch_exceptions_with_msg (uiout
, do_captured_breakpoint_query
, &args
,
4892 error_message
, RETURN_MASK_ALL
) < 0)
4898 /* Return non-zero if B is user settable (breakpoints, watchpoints,
4899 catchpoints, et.al.). */
4902 user_settable_breakpoint (const struct breakpoint
*b
)
4904 return (b
->type
== bp_breakpoint
4905 || b
->type
== bp_catchpoint
4906 || b
->type
== bp_hardware_breakpoint
4907 || is_tracepoint (b
)
4908 || is_watchpoint (b
));
4911 /* Print information on user settable breakpoint (watchpoint, etc)
4912 number BNUM. If BNUM is -1 print all user-settable breakpoints.
4913 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
4914 FILTER is non-NULL, call it on each breakpoint and only include the
4915 ones for which it returns non-zero. Return the total number of
4916 breakpoints listed. */
4919 breakpoint_1 (int bnum
, int allflag
, int (*filter
) (const struct breakpoint
*))
4921 struct breakpoint
*b
;
4922 struct bp_location
*last_loc
= NULL
;
4923 int nr_printable_breakpoints
;
4924 struct cleanup
*bkpttbl_chain
;
4925 struct value_print_options opts
;
4926 int print_address_bits
= 0;
4927 int print_type_col_width
= 14;
4929 get_user_print_options (&opts
);
4931 /* Compute the number of rows in the table, as well as the
4932 size required for address fields. */
4933 nr_printable_breakpoints
= 0;
4936 || bnum
== b
->number
)
4938 /* If we have a filter, only list the breakpoints it accepts. */
4939 if (filter
&& !filter (b
))
4942 if (allflag
|| user_settable_breakpoint (b
))
4944 int addr_bit
, type_len
;
4946 addr_bit
= breakpoint_address_bits (b
);
4947 if (addr_bit
> print_address_bits
)
4948 print_address_bits
= addr_bit
;
4950 type_len
= strlen (bptype_string (b
->type
));
4951 if (type_len
> print_type_col_width
)
4952 print_type_col_width
= type_len
;
4954 nr_printable_breakpoints
++;
4958 if (opts
.addressprint
)
4960 = make_cleanup_ui_out_table_begin_end (uiout
, 6, nr_printable_breakpoints
,
4964 = make_cleanup_ui_out_table_begin_end (uiout
, 5, nr_printable_breakpoints
,
4967 if (nr_printable_breakpoints
> 0)
4968 annotate_breakpoints_headers ();
4969 if (nr_printable_breakpoints
> 0)
4971 ui_out_table_header (uiout
, 7, ui_left
, "number", "Num"); /* 1 */
4972 if (nr_printable_breakpoints
> 0)
4974 ui_out_table_header (uiout
, print_type_col_width
, ui_left
,
4975 "type", "Type"); /* 2 */
4976 if (nr_printable_breakpoints
> 0)
4978 ui_out_table_header (uiout
, 4, ui_left
, "disp", "Disp"); /* 3 */
4979 if (nr_printable_breakpoints
> 0)
4981 ui_out_table_header (uiout
, 3, ui_left
, "enabled", "Enb"); /* 4 */
4982 if (opts
.addressprint
)
4984 if (nr_printable_breakpoints
> 0)
4986 if (print_address_bits
<= 32)
4987 ui_out_table_header (uiout
, 10, ui_left
, "addr", "Address");/* 5 */
4989 ui_out_table_header (uiout
, 18, ui_left
, "addr", "Address");/* 5 */
4991 if (nr_printable_breakpoints
> 0)
4993 ui_out_table_header (uiout
, 40, ui_noalign
, "what", "What"); /* 6 */
4994 ui_out_table_body (uiout
);
4995 if (nr_printable_breakpoints
> 0)
4996 annotate_breakpoints_table ();
5002 || bnum
== b
->number
)
5004 /* If we have a filter, only list the breakpoints it accepts. */
5005 if (filter
&& !filter (b
))
5008 /* We only print out user settable breakpoints unless the
5010 if (allflag
|| user_settable_breakpoint (b
))
5011 print_one_breakpoint (b
, &last_loc
, print_address_bits
, allflag
);
5015 do_cleanups (bkpttbl_chain
);
5017 if (nr_printable_breakpoints
== 0)
5019 /* If there's a filter, let the caller decide how to report empty list. */
5023 ui_out_message (uiout
, 0, "No breakpoints or watchpoints.\n");
5025 ui_out_message (uiout
, 0, "No breakpoint or watchpoint number %d.\n",
5031 if (last_loc
&& !server_command
)
5032 set_next_address (last_loc
->gdbarch
, last_loc
->address
);
5035 /* FIXME? Should this be moved up so that it is only called when
5036 there have been breakpoints? */
5037 annotate_breakpoints_table_end ();
5039 return nr_printable_breakpoints
;
5042 /* Display the value of default-collect in a way that is generally
5043 compatible with the breakpoint list. */
5046 default_collect_info (void)
5048 /* If it has no value (which is frequently the case), say nothing; a
5049 message like "No default-collect." gets in user's face when it's
5051 if (!*default_collect
)
5054 /* The following phrase lines up nicely with per-tracepoint collect
5056 ui_out_text (uiout
, "default collect ");
5057 ui_out_field_string (uiout
, "default-collect", default_collect
);
5058 ui_out_text (uiout
, " \n");
5062 breakpoints_info (char *bnum_exp
, int from_tty
)
5067 bnum
= parse_and_eval_long (bnum_exp
);
5069 breakpoint_1 (bnum
, 0, NULL
);
5071 default_collect_info ();
5075 watchpoints_info (char *wpnum_exp
, int from_tty
)
5077 int wpnum
= -1, num_printed
;
5080 wpnum
= parse_and_eval_long (wpnum_exp
);
5082 num_printed
= breakpoint_1 (wpnum
, 0, is_watchpoint
);
5084 if (num_printed
== 0)
5087 ui_out_message (uiout
, 0, "No watchpoints.\n");
5089 ui_out_message (uiout
, 0, "No watchpoint number %d.\n", wpnum
);
5094 maintenance_info_breakpoints (char *bnum_exp
, int from_tty
)
5099 bnum
= parse_and_eval_long (bnum_exp
);
5101 breakpoint_1 (bnum
, 1, NULL
);
5103 default_collect_info ();
5107 breakpoint_has_pc (struct breakpoint
*b
,
5108 struct program_space
*pspace
,
5109 CORE_ADDR pc
, struct obj_section
*section
)
5111 struct bp_location
*bl
= b
->loc
;
5113 for (; bl
; bl
= bl
->next
)
5115 if (bl
->pspace
== pspace
5116 && bl
->address
== pc
5117 && (!overlay_debugging
|| bl
->section
== section
))
5123 /* Print a message describing any breakpoints set at PC. This
5124 concerns with logical breakpoints, so we match program spaces, not
5128 describe_other_breakpoints (struct gdbarch
*gdbarch
,
5129 struct program_space
*pspace
, CORE_ADDR pc
,
5130 struct obj_section
*section
, int thread
)
5133 struct breakpoint
*b
;
5136 others
+= breakpoint_has_pc (b
, pspace
, pc
, section
);
5140 printf_filtered (_("Note: breakpoint "));
5141 else /* if (others == ???) */
5142 printf_filtered (_("Note: breakpoints "));
5144 if (breakpoint_has_pc (b
, pspace
, pc
, section
))
5147 printf_filtered ("%d", b
->number
);
5148 if (b
->thread
== -1 && thread
!= -1)
5149 printf_filtered (" (all threads)");
5150 else if (b
->thread
!= -1)
5151 printf_filtered (" (thread %d)", b
->thread
);
5152 printf_filtered ("%s%s ",
5153 ((b
->enable_state
== bp_disabled
5154 || b
->enable_state
== bp_call_disabled
5155 || b
->enable_state
== bp_startup_disabled
)
5157 : b
->enable_state
== bp_permanent
5161 : ((others
== 1) ? " and" : ""));
5163 printf_filtered (_("also set at pc "));
5164 fputs_filtered (paddress (gdbarch
, pc
), gdb_stdout
);
5165 printf_filtered (".\n");
5169 /* Set the default place to put a breakpoint
5170 for the `break' command with no arguments. */
5173 set_default_breakpoint (int valid
, struct program_space
*pspace
,
5174 CORE_ADDR addr
, struct symtab
*symtab
,
5177 default_breakpoint_valid
= valid
;
5178 default_breakpoint_pspace
= pspace
;
5179 default_breakpoint_address
= addr
;
5180 default_breakpoint_symtab
= symtab
;
5181 default_breakpoint_line
= line
;
5184 /* Return true iff it is meaningful to use the address member of
5185 BPT. For some breakpoint types, the address member is irrelevant
5186 and it makes no sense to attempt to compare it to other addresses
5187 (or use it for any other purpose either).
5189 More specifically, each of the following breakpoint types will always
5190 have a zero valued address and we don't want to mark breakpoints of any of
5191 these types to be a duplicate of an actual breakpoint at address zero:
5199 breakpoint_address_is_meaningful (struct breakpoint
*bpt
)
5201 enum bptype type
= bpt
->type
;
5203 return (type
!= bp_watchpoint
&& type
!= bp_catchpoint
);
5206 /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
5207 true if LOC1 and LOC2 represent the same watchpoint location. */
5210 watchpoint_locations_match (struct bp_location
*loc1
, struct bp_location
*loc2
)
5212 /* Both of them must not be in moribund_locations. */
5213 gdb_assert (loc1
->owner
!= NULL
);
5214 gdb_assert (loc2
->owner
!= NULL
);
5216 /* If the target can evaluate the condition expression in hardware, then we
5217 we need to insert both watchpoints even if they are at the same place.
5218 Otherwise the watchpoint will only trigger when the condition of whichever
5219 watchpoint was inserted evaluates to true, not giving a chance for GDB to
5220 check the condition of the other watchpoint. */
5221 if ((loc1
->owner
->cond_exp
5222 && target_can_accel_watchpoint_condition (loc1
->address
, loc1
->length
,
5223 loc1
->watchpoint_type
,
5224 loc1
->owner
->cond_exp
))
5225 || (loc2
->owner
->cond_exp
5226 && target_can_accel_watchpoint_condition (loc2
->address
, loc2
->length
,
5227 loc2
->watchpoint_type
,
5228 loc2
->owner
->cond_exp
)))
5231 /* Note that this checks the owner's type, not the location's. In
5232 case the target does not support read watchpoints, but does
5233 support access watchpoints, we'll have bp_read_watchpoint
5234 watchpoints with hw_access locations. Those should be considered
5235 duplicates of hw_read locations. The hw_read locations will
5236 become hw_access locations later. */
5237 return (loc1
->owner
->type
== loc2
->owner
->type
5238 && loc1
->pspace
->aspace
== loc2
->pspace
->aspace
5239 && loc1
->address
== loc2
->address
5240 && loc1
->length
== loc2
->length
);
5243 /* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
5244 same breakpoint location. In most targets, this can only be true
5245 if ASPACE1 matches ASPACE2. On targets that have global
5246 breakpoints, the address space doesn't really matter. */
5249 breakpoint_address_match (struct address_space
*aspace1
, CORE_ADDR addr1
,
5250 struct address_space
*aspace2
, CORE_ADDR addr2
)
5252 return ((gdbarch_has_global_breakpoints (target_gdbarch
)
5253 || aspace1
== aspace2
)
5257 /* Assuming LOC1 and LOC2's types' have meaningful target addresses
5258 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
5259 represent the same location. */
5262 breakpoint_locations_match (struct bp_location
*loc1
, struct bp_location
*loc2
)
5264 int hw_point1
, hw_point2
;
5266 /* Both of them must not be in moribund_locations. */
5267 gdb_assert (loc1
->owner
!= NULL
);
5268 gdb_assert (loc2
->owner
!= NULL
);
5270 hw_point1
= is_hardware_watchpoint (loc1
->owner
);
5271 hw_point2
= is_hardware_watchpoint (loc2
->owner
);
5273 if (hw_point1
!= hw_point2
)
5276 return watchpoint_locations_match (loc1
, loc2
);
5278 return breakpoint_address_match (loc1
->pspace
->aspace
, loc1
->address
,
5279 loc2
->pspace
->aspace
, loc2
->address
);
5283 breakpoint_adjustment_warning (CORE_ADDR from_addr
, CORE_ADDR to_addr
,
5284 int bnum
, int have_bnum
)
5289 strcpy (astr1
, hex_string_custom ((unsigned long) from_addr
, 8));
5290 strcpy (astr2
, hex_string_custom ((unsigned long) to_addr
, 8));
5292 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
5293 bnum
, astr1
, astr2
);
5295 warning (_("Breakpoint address adjusted from %s to %s."), astr1
, astr2
);
5298 /* Adjust a breakpoint's address to account for architectural constraints
5299 on breakpoint placement. Return the adjusted address. Note: Very
5300 few targets require this kind of adjustment. For most targets,
5301 this function is simply the identity function. */
5304 adjust_breakpoint_address (struct gdbarch
*gdbarch
,
5305 CORE_ADDR bpaddr
, enum bptype bptype
)
5307 if (!gdbarch_adjust_breakpoint_address_p (gdbarch
))
5309 /* Very few targets need any kind of breakpoint adjustment. */
5312 else if (bptype
== bp_watchpoint
5313 || bptype
== bp_hardware_watchpoint
5314 || bptype
== bp_read_watchpoint
5315 || bptype
== bp_access_watchpoint
5316 || bptype
== bp_catchpoint
)
5318 /* Watchpoints and the various bp_catch_* eventpoints should not
5319 have their addresses modified. */
5324 CORE_ADDR adjusted_bpaddr
;
5326 /* Some targets have architectural constraints on the placement
5327 of breakpoint instructions. Obtain the adjusted address. */
5328 adjusted_bpaddr
= gdbarch_adjust_breakpoint_address (gdbarch
, bpaddr
);
5330 /* An adjusted breakpoint address can significantly alter
5331 a user's expectations. Print a warning if an adjustment
5333 if (adjusted_bpaddr
!= bpaddr
)
5334 breakpoint_adjustment_warning (bpaddr
, adjusted_bpaddr
, 0, 0);
5336 return adjusted_bpaddr
;
5340 /* Allocate a struct bp_location. */
5342 static struct bp_location
*
5343 allocate_bp_location (struct breakpoint
*bpt
)
5345 struct bp_location
*loc
;
5347 loc
= xmalloc (sizeof (struct bp_location
));
5348 memset (loc
, 0, sizeof (*loc
));
5352 loc
->shlib_disabled
= 0;
5361 case bp_longjmp_resume
:
5362 case bp_step_resume
:
5363 case bp_watchpoint_scope
:
5365 case bp_std_terminate
:
5366 case bp_shlib_event
:
5367 case bp_thread_event
:
5368 case bp_overlay_event
:
5370 case bp_longjmp_master
:
5371 case bp_std_terminate_master
:
5372 loc
->loc_type
= bp_loc_software_breakpoint
;
5374 case bp_hardware_breakpoint
:
5375 loc
->loc_type
= bp_loc_hardware_breakpoint
;
5377 case bp_hardware_watchpoint
:
5378 case bp_read_watchpoint
:
5379 case bp_access_watchpoint
:
5380 loc
->loc_type
= bp_loc_hardware_watchpoint
;
5385 case bp_fast_tracepoint
:
5386 case bp_static_tracepoint
:
5387 loc
->loc_type
= bp_loc_other
;
5390 internal_error (__FILE__
, __LINE__
, _("unknown breakpoint type"));
5398 free_bp_location (struct bp_location
*loc
)
5403 if (loc
->function_name
)
5404 xfree (loc
->function_name
);
5409 /* Increment reference count. */
5412 incref_bp_location (struct bp_location
*bl
)
5417 /* Decrement reference count. If the reference count reaches 0,
5418 destroy the bp_location. Sets *BLP to NULL. */
5421 decref_bp_location (struct bp_location
**blp
)
5423 gdb_assert ((*blp
)->refc
> 0);
5425 if (--(*blp
)->refc
== 0)
5426 free_bp_location (*blp
);
5430 /* Helper to set_raw_breakpoint below. Creates a breakpoint
5431 that has type BPTYPE and has no locations as yet. */
5432 /* This function is used in gdbtk sources and thus can not be made static. */
5434 static struct breakpoint
*
5435 set_raw_breakpoint_without_location (struct gdbarch
*gdbarch
,
5438 struct breakpoint
*b
, *b1
;
5440 b
= (struct breakpoint
*) xmalloc (sizeof (struct breakpoint
));
5441 memset (b
, 0, sizeof (*b
));
5444 b
->gdbarch
= gdbarch
;
5445 b
->language
= current_language
->la_language
;
5446 b
->input_radix
= input_radix
;
5448 b
->enable_state
= bp_enabled
;
5451 b
->ignore_count
= 0;
5453 b
->frame_id
= null_frame_id
;
5454 b
->forked_inferior_pid
= null_ptid
;
5455 b
->exec_pathname
= NULL
;
5456 b
->syscalls_to_be_caught
= NULL
;
5458 b
->condition_not_parsed
= 0;
5460 /* Add this breakpoint to the end of the chain
5461 so that a list of breakpoints will come out in order
5462 of increasing numbers. */
5464 b1
= breakpoint_chain
;
5466 breakpoint_chain
= b
;
5476 /* Initialize loc->function_name. */
5478 set_breakpoint_location_function (struct bp_location
*loc
)
5480 gdb_assert (loc
->owner
!= NULL
);
5482 if (loc
->owner
->type
== bp_breakpoint
5483 || loc
->owner
->type
== bp_hardware_breakpoint
5484 || is_tracepoint (loc
->owner
))
5486 find_pc_partial_function (loc
->address
, &(loc
->function_name
),
5488 if (loc
->function_name
)
5489 loc
->function_name
= xstrdup (loc
->function_name
);
5493 /* Attempt to determine architecture of location identified by SAL. */
5494 static struct gdbarch
*
5495 get_sal_arch (struct symtab_and_line sal
)
5498 return get_objfile_arch (sal
.section
->objfile
);
5500 return get_objfile_arch (sal
.symtab
->objfile
);
5505 /* set_raw_breakpoint is a low level routine for allocating and
5506 partially initializing a breakpoint of type BPTYPE. The newly
5507 created breakpoint's address, section, source file name, and line
5508 number are provided by SAL. The newly created and partially
5509 initialized breakpoint is added to the breakpoint chain and
5510 is also returned as the value of this function.
5512 It is expected that the caller will complete the initialization of
5513 the newly created breakpoint struct as well as output any status
5514 information regarding the creation of a new breakpoint. In
5515 particular, set_raw_breakpoint does NOT set the breakpoint
5516 number! Care should be taken to not allow an error to occur
5517 prior to completing the initialization of the breakpoint. If this
5518 should happen, a bogus breakpoint will be left on the chain. */
5521 set_raw_breakpoint (struct gdbarch
*gdbarch
,
5522 struct symtab_and_line sal
, enum bptype bptype
)
5524 struct breakpoint
*b
= set_raw_breakpoint_without_location (gdbarch
, bptype
);
5525 CORE_ADDR adjusted_address
;
5526 struct gdbarch
*loc_gdbarch
;
5528 loc_gdbarch
= get_sal_arch (sal
);
5530 loc_gdbarch
= b
->gdbarch
;
5532 if (bptype
!= bp_catchpoint
)
5533 gdb_assert (sal
.pspace
!= NULL
);
5535 /* Adjust the breakpoint's address prior to allocating a location.
5536 Once we call allocate_bp_location(), that mostly uninitialized
5537 location will be placed on the location chain. Adjustment of the
5538 breakpoint may cause target_read_memory() to be called and we do
5539 not want its scan of the location chain to find a breakpoint and
5540 location that's only been partially initialized. */
5541 adjusted_address
= adjust_breakpoint_address (loc_gdbarch
, sal
.pc
, b
->type
);
5543 b
->loc
= allocate_bp_location (b
);
5544 b
->loc
->gdbarch
= loc_gdbarch
;
5545 b
->loc
->requested_address
= sal
.pc
;
5546 b
->loc
->address
= adjusted_address
;
5547 b
->loc
->pspace
= sal
.pspace
;
5549 /* Store the program space that was used to set the breakpoint, for
5550 breakpoint resetting. */
5551 b
->pspace
= sal
.pspace
;
5553 if (sal
.symtab
== NULL
)
5554 b
->source_file
= NULL
;
5556 b
->source_file
= xstrdup (sal
.symtab
->filename
);
5557 b
->loc
->section
= sal
.section
;
5558 b
->line_number
= sal
.line
;
5560 set_breakpoint_location_function (b
->loc
);
5562 breakpoints_changed ();
5568 /* Note that the breakpoint object B describes a permanent breakpoint
5569 instruction, hard-wired into the inferior's code. */
5571 make_breakpoint_permanent (struct breakpoint
*b
)
5573 struct bp_location
*bl
;
5575 b
->enable_state
= bp_permanent
;
5577 /* By definition, permanent breakpoints are already present in the code.
5578 Mark all locations as inserted. For now, make_breakpoint_permanent
5579 is called in just one place, so it's hard to say if it's reasonable
5580 to have permanent breakpoint with multiple locations or not,
5581 but it's easy to implmement. */
5582 for (bl
= b
->loc
; bl
; bl
= bl
->next
)
5586 /* Call this routine when stepping and nexting to enable a breakpoint
5587 if we do a longjmp() in THREAD. When we hit that breakpoint, call
5588 set_longjmp_resume_breakpoint() to figure out where we are going. */
5591 set_longjmp_breakpoint (int thread
)
5593 struct breakpoint
*b
, *temp
;
5595 /* To avoid having to rescan all objfile symbols at every step,
5596 we maintain a list of continually-inserted but always disabled
5597 longjmp "master" breakpoints. Here, we simply create momentary
5598 clones of those and enable them for the requested thread. */
5599 ALL_BREAKPOINTS_SAFE (b
, temp
)
5600 if (b
->pspace
== current_program_space
5601 && b
->type
== bp_longjmp_master
)
5603 struct breakpoint
*clone
= clone_momentary_breakpoint (b
);
5605 clone
->type
= bp_longjmp
;
5606 clone
->thread
= thread
;
5610 /* Delete all longjmp breakpoints from THREAD. */
5612 delete_longjmp_breakpoint (int thread
)
5614 struct breakpoint
*b
, *temp
;
5616 ALL_BREAKPOINTS_SAFE (b
, temp
)
5617 if (b
->type
== bp_longjmp
)
5619 if (b
->thread
== thread
)
5620 delete_breakpoint (b
);
5625 enable_overlay_breakpoints (void)
5627 struct breakpoint
*b
;
5630 if (b
->type
== bp_overlay_event
)
5632 b
->enable_state
= bp_enabled
;
5633 update_global_location_list (1);
5634 overlay_events_enabled
= 1;
5639 disable_overlay_breakpoints (void)
5641 struct breakpoint
*b
;
5644 if (b
->type
== bp_overlay_event
)
5646 b
->enable_state
= bp_disabled
;
5647 update_global_location_list (0);
5648 overlay_events_enabled
= 0;
5652 /* Set an active std::terminate breakpoint for each std::terminate
5653 master breakpoint. */
5655 set_std_terminate_breakpoint (void)
5657 struct breakpoint
*b
, *temp
;
5659 ALL_BREAKPOINTS_SAFE (b
, temp
)
5660 if (b
->pspace
== current_program_space
5661 && b
->type
== bp_std_terminate_master
)
5663 struct breakpoint
*clone
= clone_momentary_breakpoint (b
);
5664 clone
->type
= bp_std_terminate
;
5668 /* Delete all the std::terminate breakpoints. */
5670 delete_std_terminate_breakpoint (void)
5672 struct breakpoint
*b
, *temp
;
5674 ALL_BREAKPOINTS_SAFE (b
, temp
)
5675 if (b
->type
== bp_std_terminate
)
5676 delete_breakpoint (b
);
5680 create_thread_event_breakpoint (struct gdbarch
*gdbarch
, CORE_ADDR address
)
5682 struct breakpoint
*b
;
5684 b
= create_internal_breakpoint (gdbarch
, address
, bp_thread_event
);
5686 b
->enable_state
= bp_enabled
;
5687 /* addr_string has to be used or breakpoint_re_set will delete me. */
5689 = xstrprintf ("*%s", paddress (b
->loc
->gdbarch
, b
->loc
->address
));
5691 update_global_location_list_nothrow (1);
5697 remove_thread_event_breakpoints (void)
5699 struct breakpoint
*b
, *temp
;
5701 ALL_BREAKPOINTS_SAFE (b
, temp
)
5702 if (b
->type
== bp_thread_event
5703 && b
->loc
->pspace
== current_program_space
)
5704 delete_breakpoint (b
);
5707 struct captured_parse_breakpoint_args
5710 struct symtabs_and_lines
*sals_p
;
5711 char ***addr_string_p
;
5715 struct lang_and_radix
5721 /* Create a breakpoint for JIT code registration and unregistration. */
5724 create_jit_event_breakpoint (struct gdbarch
*gdbarch
, CORE_ADDR address
)
5726 struct breakpoint
*b
;
5728 b
= create_internal_breakpoint (gdbarch
, address
, bp_jit_event
);
5729 update_global_location_list_nothrow (1);
5734 remove_solib_event_breakpoints (void)
5736 struct breakpoint
*b
, *temp
;
5738 ALL_BREAKPOINTS_SAFE (b
, temp
)
5739 if (b
->type
== bp_shlib_event
5740 && b
->loc
->pspace
== current_program_space
)
5741 delete_breakpoint (b
);
5745 create_solib_event_breakpoint (struct gdbarch
*gdbarch
, CORE_ADDR address
)
5747 struct breakpoint
*b
;
5749 b
= create_internal_breakpoint (gdbarch
, address
, bp_shlib_event
);
5750 update_global_location_list_nothrow (1);
5754 /* Disable any breakpoints that are on code in shared libraries. Only
5755 apply to enabled breakpoints, disabled ones can just stay disabled. */
5758 disable_breakpoints_in_shlibs (void)
5760 struct bp_location
*loc
, **locp_tmp
;
5762 ALL_BP_LOCATIONS (loc
, locp_tmp
)
5764 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
5765 struct breakpoint
*b
= loc
->owner
;
5767 /* We apply the check to all breakpoints, including disabled
5768 for those with loc->duplicate set. This is so that when breakpoint
5769 becomes enabled, or the duplicate is removed, gdb will try to insert
5770 all breakpoints. If we don't set shlib_disabled here, we'll try
5771 to insert those breakpoints and fail. */
5772 if (((b
->type
== bp_breakpoint
)
5773 || (b
->type
== bp_jit_event
)
5774 || (b
->type
== bp_hardware_breakpoint
)
5775 || (is_tracepoint (b
)))
5776 && loc
->pspace
== current_program_space
5777 && !loc
->shlib_disabled
5779 && PC_SOLIB (loc
->address
)
5781 && solib_name_from_address (loc
->pspace
, loc
->address
)
5785 loc
->shlib_disabled
= 1;
5790 /* Disable any breakpoints that are in in an unloaded shared library. Only
5791 apply to enabled breakpoints, disabled ones can just stay disabled. */
5794 disable_breakpoints_in_unloaded_shlib (struct so_list
*solib
)
5796 struct bp_location
*loc
, **locp_tmp
;
5797 int disabled_shlib_breaks
= 0;
5799 /* SunOS a.out shared libraries are always mapped, so do not
5800 disable breakpoints; they will only be reported as unloaded
5801 through clear_solib when GDB discards its shared library
5802 list. See clear_solib for more information. */
5803 if (exec_bfd
!= NULL
5804 && bfd_get_flavour (exec_bfd
) == bfd_target_aout_flavour
)
5807 ALL_BP_LOCATIONS (loc
, locp_tmp
)
5809 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
5810 struct breakpoint
*b
= loc
->owner
;
5812 if ((loc
->loc_type
== bp_loc_hardware_breakpoint
5813 || loc
->loc_type
== bp_loc_software_breakpoint
)
5814 && solib
->pspace
== loc
->pspace
5815 && !loc
->shlib_disabled
5816 && (b
->type
== bp_breakpoint
5817 || b
->type
== bp_jit_event
5818 || b
->type
== bp_hardware_breakpoint
)
5819 && solib_contains_address_p (solib
, loc
->address
))
5821 loc
->shlib_disabled
= 1;
5822 /* At this point, we cannot rely on remove_breakpoint
5823 succeeding so we must mark the breakpoint as not inserted
5824 to prevent future errors occurring in remove_breakpoints. */
5826 if (!disabled_shlib_breaks
)
5828 target_terminal_ours_for_output ();
5829 warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
5832 disabled_shlib_breaks
= 1;
5837 /* FORK & VFORK catchpoints. */
5839 /* Implement the "insert" breakpoint_ops method for fork catchpoints. */
5842 insert_catch_fork (struct breakpoint
*b
)
5844 target_insert_fork_catchpoint (PIDGET (inferior_ptid
));
5847 /* Implement the "remove" breakpoint_ops method for fork catchpoints. */
5850 remove_catch_fork (struct breakpoint
*b
)
5852 return target_remove_fork_catchpoint (PIDGET (inferior_ptid
));
5855 /* Implement the "breakpoint_hit" breakpoint_ops method for fork
5859 breakpoint_hit_catch_fork (struct breakpoint
*b
)
5861 return inferior_has_forked (inferior_ptid
, &b
->forked_inferior_pid
);
5864 /* Implement the "print_it" breakpoint_ops method for fork catchpoints. */
5866 static enum print_stop_action
5867 print_it_catch_fork (struct breakpoint
*b
)
5869 annotate_catchpoint (b
->number
);
5870 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
5871 b
->number
, ptid_get_pid (b
->forked_inferior_pid
));
5872 return PRINT_SRC_AND_LOC
;
5875 /* Implement the "print_one" breakpoint_ops method for fork catchpoints. */
5878 print_one_catch_fork (struct breakpoint
*b
, struct bp_location
**last_loc
)
5880 struct value_print_options opts
;
5882 get_user_print_options (&opts
);
5884 /* Field 4, the address, is omitted (which makes the columns
5885 not line up too nicely with the headers, but the effect
5886 is relatively readable). */
5887 if (opts
.addressprint
)
5888 ui_out_field_skip (uiout
, "addr");
5890 ui_out_text (uiout
, "fork");
5891 if (!ptid_equal (b
->forked_inferior_pid
, null_ptid
))
5893 ui_out_text (uiout
, ", process ");
5894 ui_out_field_int (uiout
, "what",
5895 ptid_get_pid (b
->forked_inferior_pid
));
5896 ui_out_spaces (uiout
, 1);
5900 /* Implement the "print_mention" breakpoint_ops method for fork
5904 print_mention_catch_fork (struct breakpoint
*b
)
5906 printf_filtered (_("Catchpoint %d (fork)"), b
->number
);
5909 /* Implement the "print_recreate" breakpoint_ops method for fork
5913 print_recreate_catch_fork (struct breakpoint
*b
, struct ui_file
*fp
)
5915 fprintf_unfiltered (fp
, "catch fork");
5918 /* The breakpoint_ops structure to be used in fork catchpoints. */
5920 static struct breakpoint_ops catch_fork_breakpoint_ops
=
5924 breakpoint_hit_catch_fork
,
5925 print_it_catch_fork
,
5926 print_one_catch_fork
,
5927 print_mention_catch_fork
,
5928 print_recreate_catch_fork
5931 /* Implement the "insert" breakpoint_ops method for vfork catchpoints. */
5934 insert_catch_vfork (struct breakpoint
*b
)
5936 target_insert_vfork_catchpoint (PIDGET (inferior_ptid
));
5939 /* Implement the "remove" breakpoint_ops method for vfork catchpoints. */
5942 remove_catch_vfork (struct breakpoint
*b
)
5944 return target_remove_vfork_catchpoint (PIDGET (inferior_ptid
));
5947 /* Implement the "breakpoint_hit" breakpoint_ops method for vfork
5951 breakpoint_hit_catch_vfork (struct breakpoint
*b
)
5953 return inferior_has_vforked (inferior_ptid
, &b
->forked_inferior_pid
);
5956 /* Implement the "print_it" breakpoint_ops method for vfork catchpoints. */
5958 static enum print_stop_action
5959 print_it_catch_vfork (struct breakpoint
*b
)
5961 annotate_catchpoint (b
->number
);
5962 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
5963 b
->number
, ptid_get_pid (b
->forked_inferior_pid
));
5964 return PRINT_SRC_AND_LOC
;
5967 /* Implement the "print_one" breakpoint_ops method for vfork catchpoints. */
5970 print_one_catch_vfork (struct breakpoint
*b
, struct bp_location
**last_loc
)
5972 struct value_print_options opts
;
5974 get_user_print_options (&opts
);
5975 /* Field 4, the address, is omitted (which makes the columns
5976 not line up too nicely with the headers, but the effect
5977 is relatively readable). */
5978 if (opts
.addressprint
)
5979 ui_out_field_skip (uiout
, "addr");
5981 ui_out_text (uiout
, "vfork");
5982 if (!ptid_equal (b
->forked_inferior_pid
, null_ptid
))
5984 ui_out_text (uiout
, ", process ");
5985 ui_out_field_int (uiout
, "what",
5986 ptid_get_pid (b
->forked_inferior_pid
));
5987 ui_out_spaces (uiout
, 1);
5991 /* Implement the "print_mention" breakpoint_ops method for vfork
5995 print_mention_catch_vfork (struct breakpoint
*b
)
5997 printf_filtered (_("Catchpoint %d (vfork)"), b
->number
);
6000 /* Implement the "print_recreate" breakpoint_ops method for vfork
6004 print_recreate_catch_vfork (struct breakpoint
*b
, struct ui_file
*fp
)
6006 fprintf_unfiltered (fp
, "catch vfork");
6009 /* The breakpoint_ops structure to be used in vfork catchpoints. */
6011 static struct breakpoint_ops catch_vfork_breakpoint_ops
=
6015 breakpoint_hit_catch_vfork
,
6016 print_it_catch_vfork
,
6017 print_one_catch_vfork
,
6018 print_mention_catch_vfork
,
6019 print_recreate_catch_vfork
6022 /* Implement the "insert" breakpoint_ops method for syscall
6026 insert_catch_syscall (struct breakpoint
*b
)
6028 struct inferior
*inf
= current_inferior ();
6030 ++inf
->total_syscalls_count
;
6031 if (!b
->syscalls_to_be_caught
)
6032 ++inf
->any_syscall_count
;
6038 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6043 if (iter
>= VEC_length (int, inf
->syscalls_counts
))
6045 int old_size
= VEC_length (int, inf
->syscalls_counts
);
6046 uintptr_t vec_addr_offset
= old_size
* ((uintptr_t) sizeof (int));
6048 VEC_safe_grow (int, inf
->syscalls_counts
, iter
+ 1);
6049 vec_addr
= (uintptr_t) VEC_address (int, inf
->syscalls_counts
) +
6051 memset ((void *) vec_addr
, 0,
6052 (iter
+ 1 - old_size
) * sizeof (int));
6054 elem
= VEC_index (int, inf
->syscalls_counts
, iter
);
6055 VEC_replace (int, inf
->syscalls_counts
, iter
, ++elem
);
6059 target_set_syscall_catchpoint (PIDGET (inferior_ptid
),
6060 inf
->total_syscalls_count
!= 0,
6061 inf
->any_syscall_count
,
6062 VEC_length (int, inf
->syscalls_counts
),
6063 VEC_address (int, inf
->syscalls_counts
));
6066 /* Implement the "remove" breakpoint_ops method for syscall
6070 remove_catch_syscall (struct breakpoint
*b
)
6072 struct inferior
*inf
= current_inferior ();
6074 --inf
->total_syscalls_count
;
6075 if (!b
->syscalls_to_be_caught
)
6076 --inf
->any_syscall_count
;
6082 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6086 if (iter
>= VEC_length (int, inf
->syscalls_counts
))
6087 /* Shouldn't happen. */
6089 elem
= VEC_index (int, inf
->syscalls_counts
, iter
);
6090 VEC_replace (int, inf
->syscalls_counts
, iter
, --elem
);
6094 return target_set_syscall_catchpoint (PIDGET (inferior_ptid
),
6095 inf
->total_syscalls_count
!= 0,
6096 inf
->any_syscall_count
,
6097 VEC_length (int, inf
->syscalls_counts
),
6098 VEC_address (int, inf
->syscalls_counts
));
6101 /* Implement the "breakpoint_hit" breakpoint_ops method for syscall
6105 breakpoint_hit_catch_syscall (struct breakpoint
*b
)
6107 /* We must check if we are catching specific syscalls in this breakpoint.
6108 If we are, then we must guarantee that the called syscall is the same
6109 syscall we are catching. */
6110 int syscall_number
= 0;
6112 if (!inferior_has_called_syscall (inferior_ptid
, &syscall_number
))
6115 /* Now, checking if the syscall is the same. */
6116 if (b
->syscalls_to_be_caught
)
6121 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6123 if (syscall_number
== iter
)
6133 /* Implement the "print_it" breakpoint_ops method for syscall
6136 static enum print_stop_action
6137 print_it_catch_syscall (struct breakpoint
*b
)
6139 /* These are needed because we want to know in which state a
6140 syscall is. It can be in the TARGET_WAITKIND_SYSCALL_ENTRY
6141 or TARGET_WAITKIND_SYSCALL_RETURN, and depending on it we
6142 must print "called syscall" or "returned from syscall". */
6144 struct target_waitstatus last
;
6146 struct cleanup
*old_chain
;
6149 get_last_target_status (&ptid
, &last
);
6151 get_syscall_by_number (last
.value
.syscall_number
, &s
);
6153 annotate_catchpoint (b
->number
);
6156 syscall_id
= xstrprintf ("%d", last
.value
.syscall_number
);
6158 syscall_id
= xstrprintf ("'%s'", s
.name
);
6160 old_chain
= make_cleanup (xfree
, syscall_id
);
6162 if (last
.kind
== TARGET_WAITKIND_SYSCALL_ENTRY
)
6163 printf_filtered (_("\nCatchpoint %d (call to syscall %s), "),
6164 b
->number
, syscall_id
);
6165 else if (last
.kind
== TARGET_WAITKIND_SYSCALL_RETURN
)
6166 printf_filtered (_("\nCatchpoint %d (returned from syscall %s), "),
6167 b
->number
, syscall_id
);
6169 do_cleanups (old_chain
);
6171 return PRINT_SRC_AND_LOC
;
6174 /* Implement the "print_one" breakpoint_ops method for syscall
6178 print_one_catch_syscall (struct breakpoint
*b
,
6179 struct bp_location
**last_loc
)
6181 struct value_print_options opts
;
6183 get_user_print_options (&opts
);
6184 /* Field 4, the address, is omitted (which makes the columns
6185 not line up too nicely with the headers, but the effect
6186 is relatively readable). */
6187 if (opts
.addressprint
)
6188 ui_out_field_skip (uiout
, "addr");
6191 if (b
->syscalls_to_be_caught
6192 && VEC_length (int, b
->syscalls_to_be_caught
) > 1)
6193 ui_out_text (uiout
, "syscalls \"");
6195 ui_out_text (uiout
, "syscall \"");
6197 if (b
->syscalls_to_be_caught
)
6200 char *text
= xstrprintf ("%s", "");
6203 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6208 get_syscall_by_number (iter
, &s
);
6211 text
= xstrprintf ("%s%s, ", text
, s
.name
);
6213 text
= xstrprintf ("%s%d, ", text
, iter
);
6215 /* We have to xfree the last 'text' (now stored at 'x')
6216 because xstrprintf dinamically allocates new space for it
6220 /* Remove the last comma. */
6221 text
[strlen (text
) - 2] = '\0';
6222 ui_out_field_string (uiout
, "what", text
);
6225 ui_out_field_string (uiout
, "what", "<any syscall>");
6226 ui_out_text (uiout
, "\" ");
6229 /* Implement the "print_mention" breakpoint_ops method for syscall
6233 print_mention_catch_syscall (struct breakpoint
*b
)
6235 if (b
->syscalls_to_be_caught
)
6239 if (VEC_length (int, b
->syscalls_to_be_caught
) > 1)
6240 printf_filtered (_("Catchpoint %d (syscalls"), b
->number
);
6242 printf_filtered (_("Catchpoint %d (syscall"), b
->number
);
6245 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6249 get_syscall_by_number (iter
, &s
);
6252 printf_filtered (" '%s' [%d]", s
.name
, s
.number
);
6254 printf_filtered (" %d", s
.number
);
6256 printf_filtered (")");
6259 printf_filtered (_("Catchpoint %d (any syscall)"),
6263 /* Implement the "print_recreate" breakpoint_ops method for syscall
6267 print_recreate_catch_syscall (struct breakpoint
*b
, struct ui_file
*fp
)
6269 fprintf_unfiltered (fp
, "catch syscall");
6271 if (b
->syscalls_to_be_caught
)
6276 VEC_iterate (int, b
->syscalls_to_be_caught
, i
, iter
);
6281 get_syscall_by_number (iter
, &s
);
6283 fprintf_unfiltered (fp
, " %s", s
.name
);
6285 fprintf_unfiltered (fp
, " %d", s
.number
);
6290 /* The breakpoint_ops structure to be used in syscall catchpoints. */
6292 static struct breakpoint_ops catch_syscall_breakpoint_ops
=
6294 insert_catch_syscall
,
6295 remove_catch_syscall
,
6296 breakpoint_hit_catch_syscall
,
6297 print_it_catch_syscall
,
6298 print_one_catch_syscall
,
6299 print_mention_catch_syscall
,
6300 print_recreate_catch_syscall
6303 /* Returns non-zero if 'b' is a syscall catchpoint. */
6306 syscall_catchpoint_p (struct breakpoint
*b
)
6308 return (b
->ops
== &catch_syscall_breakpoint_ops
);
6311 /* Create a new breakpoint of the bp_catchpoint kind and return it,
6312 but does NOT mention it nor update the global location list.
6313 This is useful if you need to fill more fields in the
6314 struct breakpoint before calling mention.
6316 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6317 If COND_STRING is not NULL, then store it in the breakpoint.
6318 OPS, if not NULL, is the breakpoint_ops structure associated
6319 to the catchpoint. */
6321 static struct breakpoint
*
6322 create_catchpoint_without_mention (struct gdbarch
*gdbarch
, int tempflag
,
6324 struct breakpoint_ops
*ops
)
6326 struct symtab_and_line sal
;
6327 struct breakpoint
*b
;
6330 sal
.pspace
= current_program_space
;
6332 b
= set_raw_breakpoint (gdbarch
, sal
, bp_catchpoint
);
6333 set_breakpoint_count (breakpoint_count
+ 1);
6334 b
->number
= breakpoint_count
;
6336 b
->cond_string
= (cond_string
== NULL
) ? NULL
: xstrdup (cond_string
);
6338 b
->addr_string
= NULL
;
6339 b
->enable_state
= bp_enabled
;
6340 b
->disposition
= tempflag
? disp_del
: disp_donttouch
;
6346 /* Create a new breakpoint of the bp_catchpoint kind and return it.
6348 If TEMPFLAG is non-zero, then make the breakpoint temporary.
6349 If COND_STRING is not NULL, then store it in the breakpoint.
6350 OPS, if not NULL, is the breakpoint_ops structure associated
6351 to the catchpoint. */
6353 static struct breakpoint
*
6354 create_catchpoint (struct gdbarch
*gdbarch
, int tempflag
,
6355 char *cond_string
, struct breakpoint_ops
*ops
)
6357 struct breakpoint
*b
=
6358 create_catchpoint_without_mention (gdbarch
, tempflag
, cond_string
, ops
);
6361 update_global_location_list (1);
6367 create_fork_vfork_event_catchpoint (struct gdbarch
*gdbarch
,
6368 int tempflag
, char *cond_string
,
6369 struct breakpoint_ops
*ops
)
6371 struct breakpoint
*b
6372 = create_catchpoint (gdbarch
, tempflag
, cond_string
, ops
);
6374 /* FIXME: We should put this information in a breakpoint private data
6376 b
->forked_inferior_pid
= null_ptid
;
6379 /* Exec catchpoints. */
6382 insert_catch_exec (struct breakpoint
*b
)
6384 target_insert_exec_catchpoint (PIDGET (inferior_ptid
));
6388 remove_catch_exec (struct breakpoint
*b
)
6390 return target_remove_exec_catchpoint (PIDGET (inferior_ptid
));
6394 breakpoint_hit_catch_exec (struct breakpoint
*b
)
6396 return inferior_has_execd (inferior_ptid
, &b
->exec_pathname
);
6399 static enum print_stop_action
6400 print_it_catch_exec (struct breakpoint
*b
)
6402 annotate_catchpoint (b
->number
);
6403 printf_filtered (_("\nCatchpoint %d (exec'd %s), "), b
->number
,
6405 return PRINT_SRC_AND_LOC
;
6409 print_one_catch_exec (struct breakpoint
*b
, struct bp_location
**last_loc
)
6411 struct value_print_options opts
;
6413 get_user_print_options (&opts
);
6415 /* Field 4, the address, is omitted (which makes the columns
6416 not line up too nicely with the headers, but the effect
6417 is relatively readable). */
6418 if (opts
.addressprint
)
6419 ui_out_field_skip (uiout
, "addr");
6421 ui_out_text (uiout
, "exec");
6422 if (b
->exec_pathname
!= NULL
)
6424 ui_out_text (uiout
, ", program \"");
6425 ui_out_field_string (uiout
, "what", b
->exec_pathname
);
6426 ui_out_text (uiout
, "\" ");
6431 print_mention_catch_exec (struct breakpoint
*b
)
6433 printf_filtered (_("Catchpoint %d (exec)"), b
->number
);
6436 /* Implement the "print_recreate" breakpoint_ops method for exec
6440 print_recreate_catch_exec (struct breakpoint
*b
, struct ui_file
*fp
)
6442 fprintf_unfiltered (fp
, "catch exec");
6445 static struct breakpoint_ops catch_exec_breakpoint_ops
=
6449 breakpoint_hit_catch_exec
,
6450 print_it_catch_exec
,
6451 print_one_catch_exec
,
6452 print_mention_catch_exec
,
6453 print_recreate_catch_exec
6457 create_syscall_event_catchpoint (int tempflag
, VEC(int) *filter
,
6458 struct breakpoint_ops
*ops
)
6460 struct gdbarch
*gdbarch
= get_current_arch ();
6461 struct breakpoint
*b
=
6462 create_catchpoint_without_mention (gdbarch
, tempflag
, NULL
, ops
);
6464 b
->syscalls_to_be_caught
= filter
;
6466 /* Now, we have to mention the breakpoint and update the global
6469 update_global_location_list (1);
6473 hw_breakpoint_used_count (void)
6475 struct breakpoint
*b
;
6480 if (b
->type
== bp_hardware_breakpoint
&& breakpoint_enabled (b
))
6488 hw_watchpoint_used_count (enum bptype type
, int *other_type_used
)
6490 struct breakpoint
*b
;
6493 *other_type_used
= 0;
6496 if (breakpoint_enabled (b
))
6498 if (b
->type
== type
)
6500 else if (is_hardware_watchpoint (b
))
6501 *other_type_used
= 1;
6508 disable_watchpoints_before_interactive_call_start (void)
6510 struct breakpoint
*b
;
6514 if (is_watchpoint (b
) && breakpoint_enabled (b
))
6516 b
->enable_state
= bp_call_disabled
;
6517 update_global_location_list (0);
6523 enable_watchpoints_after_interactive_call_stop (void)
6525 struct breakpoint
*b
;
6529 if (is_watchpoint (b
) && b
->enable_state
== bp_call_disabled
)
6531 b
->enable_state
= bp_enabled
;
6532 update_global_location_list (1);
6538 disable_breakpoints_before_startup (void)
6540 struct breakpoint
*b
;
6545 if (b
->pspace
!= current_program_space
)
6548 if ((b
->type
== bp_breakpoint
6549 || b
->type
== bp_hardware_breakpoint
)
6550 && breakpoint_enabled (b
))
6552 b
->enable_state
= bp_startup_disabled
;
6558 update_global_location_list (0);
6560 current_program_space
->executing_startup
= 1;
6564 enable_breakpoints_after_startup (void)
6566 struct breakpoint
*b
;
6569 current_program_space
->executing_startup
= 0;
6573 if (b
->pspace
!= current_program_space
)
6576 if ((b
->type
== bp_breakpoint
6577 || b
->type
== bp_hardware_breakpoint
)
6578 && b
->enable_state
== bp_startup_disabled
)
6580 b
->enable_state
= bp_enabled
;
6586 breakpoint_re_set ();
6590 /* Set a breakpoint that will evaporate an end of command
6591 at address specified by SAL.
6592 Restrict it to frame FRAME if FRAME is nonzero. */
6595 set_momentary_breakpoint (struct gdbarch
*gdbarch
, struct symtab_and_line sal
,
6596 struct frame_id frame_id
, enum bptype type
)
6598 struct breakpoint
*b
;
6600 /* If FRAME_ID is valid, it should be a real frame, not an inlined
6602 gdb_assert (!frame_id_inlined_p (frame_id
));
6604 b
= set_raw_breakpoint (gdbarch
, sal
, type
);
6605 b
->enable_state
= bp_enabled
;
6606 b
->disposition
= disp_donttouch
;
6607 b
->frame_id
= frame_id
;
6609 /* If we're debugging a multi-threaded program, then we
6610 want momentary breakpoints to be active in only a
6611 single thread of control. */
6612 if (in_thread_list (inferior_ptid
))
6613 b
->thread
= pid_to_thread_id (inferior_ptid
);
6615 update_global_location_list_nothrow (1);
6620 /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
6624 clone_momentary_breakpoint (struct breakpoint
*orig
)
6626 struct breakpoint
*copy
;
6628 /* If there's nothing to clone, then return nothing. */
6632 copy
= set_raw_breakpoint_without_location (orig
->gdbarch
, orig
->type
);
6633 copy
->loc
= allocate_bp_location (copy
);
6634 set_breakpoint_location_function (copy
->loc
);
6636 copy
->loc
->gdbarch
= orig
->loc
->gdbarch
;
6637 copy
->loc
->requested_address
= orig
->loc
->requested_address
;
6638 copy
->loc
->address
= orig
->loc
->address
;
6639 copy
->loc
->section
= orig
->loc
->section
;
6640 copy
->loc
->pspace
= orig
->loc
->pspace
;
6642 if (orig
->source_file
== NULL
)
6643 copy
->source_file
= NULL
;
6645 copy
->source_file
= xstrdup (orig
->source_file
);
6647 copy
->line_number
= orig
->line_number
;
6648 copy
->frame_id
= orig
->frame_id
;
6649 copy
->thread
= orig
->thread
;
6650 copy
->pspace
= orig
->pspace
;
6652 copy
->enable_state
= bp_enabled
;
6653 copy
->disposition
= disp_donttouch
;
6654 copy
->number
= internal_breakpoint_number
--;
6656 update_global_location_list_nothrow (0);
6661 set_momentary_breakpoint_at_pc (struct gdbarch
*gdbarch
, CORE_ADDR pc
,
6664 struct symtab_and_line sal
;
6666 sal
= find_pc_line (pc
, 0);
6668 sal
.section
= find_pc_overlay (pc
);
6669 sal
.explicit_pc
= 1;
6671 return set_momentary_breakpoint (gdbarch
, sal
, null_frame_id
, type
);
6675 /* Tell the user we have just set a breakpoint B. */
6678 mention (struct breakpoint
*b
)
6681 struct cleanup
*ui_out_chain
;
6682 struct value_print_options opts
;
6684 get_user_print_options (&opts
);
6686 /* FIXME: This is misplaced; mention() is called by things (like
6687 hitting a watchpoint) other than breakpoint creation. It should
6688 be possible to clean this up and at the same time replace the
6689 random calls to breakpoint_changed with this hook. */
6690 observer_notify_breakpoint_created (b
->number
);
6692 if (b
->ops
!= NULL
&& b
->ops
->print_mention
!= NULL
)
6693 b
->ops
->print_mention (b
);
6698 printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b
->number
);
6701 ui_out_text (uiout
, "Watchpoint ");
6702 ui_out_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "wpt");
6703 ui_out_field_int (uiout
, "number", b
->number
);
6704 ui_out_text (uiout
, ": ");
6705 ui_out_field_string (uiout
, "exp", b
->exp_string
);
6706 do_cleanups (ui_out_chain
);
6708 case bp_hardware_watchpoint
:
6709 ui_out_text (uiout
, "Hardware watchpoint ");
6710 ui_out_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "wpt");
6711 ui_out_field_int (uiout
, "number", b
->number
);
6712 ui_out_text (uiout
, ": ");
6713 ui_out_field_string (uiout
, "exp", b
->exp_string
);
6714 do_cleanups (ui_out_chain
);
6716 case bp_read_watchpoint
:
6717 ui_out_text (uiout
, "Hardware read watchpoint ");
6718 ui_out_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "hw-rwpt");
6719 ui_out_field_int (uiout
, "number", b
->number
);
6720 ui_out_text (uiout
, ": ");
6721 ui_out_field_string (uiout
, "exp", b
->exp_string
);
6722 do_cleanups (ui_out_chain
);
6724 case bp_access_watchpoint
:
6725 ui_out_text (uiout
, "Hardware access (read/write) watchpoint ");
6726 ui_out_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "hw-awpt");
6727 ui_out_field_int (uiout
, "number", b
->number
);
6728 ui_out_text (uiout
, ": ");
6729 ui_out_field_string (uiout
, "exp", b
->exp_string
);
6730 do_cleanups (ui_out_chain
);
6733 if (ui_out_is_mi_like_p (uiout
))
6738 if (b
->disposition
== disp_del
)
6739 printf_filtered (_("Temporary breakpoint"));
6741 printf_filtered (_("Breakpoint"));
6742 printf_filtered (_(" %d"), b
->number
);
6745 case bp_hardware_breakpoint
:
6746 if (ui_out_is_mi_like_p (uiout
))
6751 printf_filtered (_("Hardware assisted breakpoint %d"), b
->number
);
6755 if (ui_out_is_mi_like_p (uiout
))
6760 printf_filtered (_("Tracepoint"));
6761 printf_filtered (_(" %d"), b
->number
);
6764 case bp_fast_tracepoint
:
6765 if (ui_out_is_mi_like_p (uiout
))
6770 printf_filtered (_("Fast tracepoint"));
6771 printf_filtered (_(" %d"), b
->number
);
6774 case bp_static_tracepoint
:
6775 if (ui_out_is_mi_like_p (uiout
))
6780 printf_filtered (_("Static tracepoint"));
6781 printf_filtered (_(" %d"), b
->number
);
6788 case bp_longjmp_resume
:
6789 case bp_step_resume
:
6791 case bp_std_terminate
:
6792 case bp_watchpoint_scope
:
6793 case bp_shlib_event
:
6794 case bp_thread_event
:
6795 case bp_overlay_event
:
6797 case bp_longjmp_master
:
6798 case bp_std_terminate_master
:
6804 /* i18n: cagney/2005-02-11: Below needs to be merged into a
6808 printf_filtered (_(" (%s) pending."), b
->addr_string
);
6812 if (opts
.addressprint
|| b
->source_file
== NULL
)
6814 printf_filtered (" at ");
6815 fputs_filtered (paddress (b
->loc
->gdbarch
, b
->loc
->address
),
6819 printf_filtered (": file %s, line %d.",
6820 b
->source_file
, b
->line_number
);
6824 struct bp_location
*loc
= b
->loc
;
6826 for (; loc
; loc
= loc
->next
)
6828 printf_filtered (" (%d locations)", n
);
6833 if (ui_out_is_mi_like_p (uiout
))
6835 printf_filtered ("\n");
6839 static struct bp_location
*
6840 add_location_to_breakpoint (struct breakpoint
*b
,
6841 const struct symtab_and_line
*sal
)
6843 struct bp_location
*loc
, **tmp
;
6845 loc
= allocate_bp_location (b
);
6846 for (tmp
= &(b
->loc
); *tmp
!= NULL
; tmp
= &((*tmp
)->next
))
6849 loc
->gdbarch
= get_sal_arch (*sal
);
6851 loc
->gdbarch
= b
->gdbarch
;
6852 loc
->requested_address
= sal
->pc
;
6853 loc
->address
= adjust_breakpoint_address (loc
->gdbarch
,
6854 loc
->requested_address
, b
->type
);
6855 loc
->pspace
= sal
->pspace
;
6856 gdb_assert (loc
->pspace
!= NULL
);
6857 loc
->section
= sal
->section
;
6859 set_breakpoint_location_function (loc
);
6864 /* Return 1 if LOC is pointing to a permanent breakpoint,
6865 return 0 otherwise. */
6868 bp_loc_is_permanent (struct bp_location
*loc
)
6872 const gdb_byte
*brk
;
6873 gdb_byte
*target_mem
;
6874 struct cleanup
*cleanup
;
6877 gdb_assert (loc
!= NULL
);
6879 addr
= loc
->address
;
6880 brk
= gdbarch_breakpoint_from_pc (loc
->gdbarch
, &addr
, &len
);
6882 /* Software breakpoints unsupported? */
6886 target_mem
= alloca (len
);
6888 /* Enable the automatic memory restoration from breakpoints while
6889 we read the memory. Otherwise we could say about our temporary
6890 breakpoints they are permanent. */
6891 cleanup
= save_current_space_and_thread ();
6893 switch_to_program_space_and_thread (loc
->pspace
);
6894 make_show_memory_breakpoints_cleanup (0);
6896 if (target_read_memory (loc
->address
, target_mem
, len
) == 0
6897 && memcmp (target_mem
, brk
, len
) == 0)
6900 do_cleanups (cleanup
);
6907 /* Create a breakpoint with SAL as location. Use ADDR_STRING
6908 as textual description of the location, and COND_STRING
6909 as condition expression. */
6912 create_breakpoint_sal (struct gdbarch
*gdbarch
,
6913 struct symtabs_and_lines sals
, char *addr_string
,
6915 enum bptype type
, enum bpdisp disposition
,
6916 int thread
, int task
, int ignore_count
,
6917 struct breakpoint_ops
*ops
, int from_tty
, int enabled
)
6919 struct breakpoint
*b
= NULL
;
6922 if (type
== bp_hardware_breakpoint
)
6924 int i
= hw_breakpoint_used_count ();
6925 int target_resources_ok
=
6926 target_can_use_hardware_watchpoint (bp_hardware_breakpoint
,
6928 if (target_resources_ok
== 0)
6929 error (_("No hardware breakpoint support in the target."));
6930 else if (target_resources_ok
< 0)
6931 error (_("Hardware breakpoints used exceeds limit."));
6934 gdb_assert (sals
.nelts
> 0);
6936 for (i
= 0; i
< sals
.nelts
; ++i
)
6938 struct symtab_and_line sal
= sals
.sals
[i
];
6939 struct bp_location
*loc
;
6943 struct gdbarch
*loc_gdbarch
= get_sal_arch (sal
);
6945 loc_gdbarch
= gdbarch
;
6947 describe_other_breakpoints (loc_gdbarch
,
6948 sal
.pspace
, sal
.pc
, sal
.section
, thread
);
6953 b
= set_raw_breakpoint (gdbarch
, sal
, type
);
6954 set_breakpoint_count (breakpoint_count
+ 1);
6955 b
->number
= breakpoint_count
;
6959 b
->cond_string
= cond_string
;
6960 b
->ignore_count
= ignore_count
;
6961 b
->enable_state
= enabled
? bp_enabled
: bp_disabled
;
6962 b
->disposition
= disposition
;
6963 b
->pspace
= sals
.sals
[0].pspace
;
6965 if (type
== bp_static_tracepoint
)
6967 struct static_tracepoint_marker marker
;
6969 if (is_marker_spec (addr_string
))
6971 /* We already know the marker exists, otherwise, we
6972 wouldn't see a sal for it. */
6973 char *p
= &addr_string
[3];
6978 while (*p
== ' ' || *p
== '\t')
6982 while (*endp
!= ' ' && *endp
!= '\t' && *endp
!= '\0')
6985 marker_str
= savestring (p
, endp
- p
);
6986 b
->static_trace_marker_id
= marker_str
;
6988 printf_filtered (_("Probed static tracepoint marker \"%s\"\n"),
6989 b
->static_trace_marker_id
);
6991 else if (target_static_tracepoint_marker_at (sal
.pc
, &marker
))
6993 b
->static_trace_marker_id
= xstrdup (marker
.str_id
);
6994 release_static_tracepoint_marker (&marker
);
6996 printf_filtered (_("Probed static tracepoint marker \"%s\"\n"),
6997 b
->static_trace_marker_id
);
7001 Couldn't determine the static tracepoint marker to probe"));
7004 if (enabled
&& b
->pspace
->executing_startup
7005 && (b
->type
== bp_breakpoint
7006 || b
->type
== bp_hardware_breakpoint
))
7007 b
->enable_state
= bp_startup_disabled
;
7013 loc
= add_location_to_breakpoint (b
, &sal
);
7016 if (bp_loc_is_permanent (loc
))
7017 make_breakpoint_permanent (b
);
7021 char *arg
= b
->cond_string
;
7022 loc
->cond
= parse_exp_1 (&arg
, block_for_pc (loc
->address
), 0);
7024 error (_("Garbage %s follows condition"), arg
);
7029 b
->addr_string
= addr_string
;
7031 /* addr_string has to be used or breakpoint_re_set will delete
7034 = xstrprintf ("*%s", paddress (b
->loc
->gdbarch
, b
->loc
->address
));
7040 /* Remove element at INDEX_TO_REMOVE from SAL, shifting other
7041 elements to fill the void space. */
7043 remove_sal (struct symtabs_and_lines
*sal
, int index_to_remove
)
7045 int i
= index_to_remove
+1;
7046 int last_index
= sal
->nelts
-1;
7048 for (;i
<= last_index
; ++i
)
7049 sal
->sals
[i
-1] = sal
->sals
[i
];
7054 /* If appropriate, obtains all sals that correspond to the same file
7055 and line as SAL, in all program spaces. Users debugging with IDEs,
7056 will want to set a breakpoint at foo.c:line, and not really care
7057 about program spaces. This is done only if SAL does not have
7058 explicit PC and has line and file information. If we got just a
7059 single expanded sal, return the original.
7061 Otherwise, if SAL.explicit_line is not set, filter out all sals for
7062 which the name of enclosing function is different from SAL. This
7063 makes sure that if we have breakpoint originally set in template
7064 instantiation, say foo<int>(), we won't expand SAL to locations at
7065 the same line in all existing instantiations of 'foo'. */
7067 static struct symtabs_and_lines
7068 expand_line_sal_maybe (struct symtab_and_line sal
)
7070 struct symtabs_and_lines expanded
;
7071 CORE_ADDR original_pc
= sal
.pc
;
7072 char *original_function
= NULL
;
7075 struct cleanup
*old_chain
;
7077 /* If we have explicit pc, don't expand.
7078 If we have no line number, we can't expand. */
7079 if (sal
.explicit_pc
|| sal
.line
== 0 || sal
.symtab
== NULL
)
7082 expanded
.sals
= xmalloc (sizeof (struct symtab_and_line
));
7083 expanded
.sals
[0] = sal
;
7089 old_chain
= save_current_space_and_thread ();
7091 switch_to_program_space_and_thread (sal
.pspace
);
7093 find_pc_partial_function (original_pc
, &original_function
, NULL
, NULL
);
7095 /* Note that expand_line_sal visits *all* program spaces. */
7096 expanded
= expand_line_sal (sal
);
7098 if (expanded
.nelts
== 1)
7100 /* We had one sal, we got one sal. Return that sal, adjusting it
7101 past the function prologue if necessary. */
7102 xfree (expanded
.sals
);
7104 expanded
.sals
= xmalloc (sizeof (struct symtab_and_line
));
7105 sal
.pc
= original_pc
;
7106 expanded
.sals
[0] = sal
;
7107 skip_prologue_sal (&expanded
.sals
[0]);
7108 do_cleanups (old_chain
);
7112 if (!sal
.explicit_line
)
7114 CORE_ADDR func_addr
, func_end
;
7115 for (i
= 0; i
< expanded
.nelts
; ++i
)
7117 CORE_ADDR pc
= expanded
.sals
[i
].pc
;
7118 char *this_function
;
7120 /* We need to switch threads as well since we're about to
7122 switch_to_program_space_and_thread (expanded
.sals
[i
].pspace
);
7124 if (find_pc_partial_function (pc
, &this_function
,
7125 &func_addr
, &func_end
))
7128 && strcmp (this_function
, original_function
) != 0)
7130 remove_sal (&expanded
, i
);
7137 /* Skip the function prologue if necessary. */
7138 for (i
= 0; i
< expanded
.nelts
; ++i
)
7139 skip_prologue_sal (&expanded
.sals
[i
]);
7141 do_cleanups (old_chain
);
7143 if (expanded
.nelts
<= 1)
7145 /* This is un ugly workaround. If we get zero
7146 expanded sals then something is really wrong.
7147 Fix that by returnign the original sal. */
7148 xfree (expanded
.sals
);
7150 expanded
.sals
= xmalloc (sizeof (struct symtab_and_line
));
7151 sal
.pc
= original_pc
;
7152 expanded
.sals
[0] = sal
;
7159 for (i
= 0; i
< expanded
.nelts
; ++i
)
7160 if (expanded
.sals
[i
].pc
== original_pc
)
7171 /* Add SALS.nelts breakpoints to the breakpoint table. For each
7172 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
7173 value. COND_STRING, if not NULL, specified the condition to be
7174 used for all breakpoints. Essentially the only case where
7175 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
7176 function. In that case, it's still not possible to specify
7177 separate conditions for different overloaded functions, so
7178 we take just a single condition string.
7180 NOTE: If the function succeeds, the caller is expected to cleanup
7181 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
7182 array contents). If the function fails (error() is called), the
7183 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
7184 COND and SALS arrays and each of those arrays contents. */
7187 create_breakpoints_sal (struct gdbarch
*gdbarch
,
7188 struct symtabs_and_lines sals
, char **addr_string
,
7190 enum bptype type
, enum bpdisp disposition
,
7191 int thread
, int task
, int ignore_count
,
7192 struct breakpoint_ops
*ops
, int from_tty
,
7197 for (i
= 0; i
< sals
.nelts
; ++i
)
7199 struct symtabs_and_lines expanded
=
7200 expand_line_sal_maybe (sals
.sals
[i
]);
7202 create_breakpoint_sal (gdbarch
, expanded
, addr_string
[i
],
7203 cond_string
, type
, disposition
,
7204 thread
, task
, ignore_count
, ops
, from_tty
, enabled
);
7208 /* Parse ARG which is assumed to be a SAL specification possibly
7209 followed by conditionals. On return, SALS contains an array of SAL
7210 addresses found. ADDR_STRING contains a vector of (canonical)
7211 address strings. ARG points to the end of the SAL. */
7214 parse_breakpoint_sals (char **address
,
7215 struct symtabs_and_lines
*sals
,
7216 char ***addr_string
,
7219 char *addr_start
= *address
;
7221 *addr_string
= NULL
;
7222 /* If no arg given, or if first arg is 'if ', use the default
7224 if ((*address
) == NULL
7225 || (strncmp ((*address
), "if", 2) == 0 && isspace ((*address
)[2])))
7227 if (default_breakpoint_valid
)
7229 struct symtab_and_line sal
;
7231 init_sal (&sal
); /* initialize to zeroes */
7232 sals
->sals
= (struct symtab_and_line
*)
7233 xmalloc (sizeof (struct symtab_and_line
));
7234 sal
.pc
= default_breakpoint_address
;
7235 sal
.line
= default_breakpoint_line
;
7236 sal
.symtab
= default_breakpoint_symtab
;
7237 sal
.pspace
= default_breakpoint_pspace
;
7238 sal
.section
= find_pc_overlay (sal
.pc
);
7240 /* "break" without arguments is equivalent to "break *PC" where PC is
7241 the default_breakpoint_address. So make sure to set
7242 sal.explicit_pc to prevent GDB from trying to expand the list of
7243 sals to include all other instances with the same symtab and line.
7245 sal
.explicit_pc
= 1;
7247 sals
->sals
[0] = sal
;
7251 error (_("No default breakpoint address now."));
7255 /* Force almost all breakpoints to be in terms of the
7256 current_source_symtab (which is decode_line_1's default). This
7257 should produce the results we want almost all of the time while
7258 leaving default_breakpoint_* alone.
7259 ObjC: However, don't match an Objective-C method name which
7260 may have a '+' or '-' succeeded by a '[' */
7262 struct symtab_and_line cursal
= get_current_source_symtab_and_line ();
7264 if (default_breakpoint_valid
7266 || ((strchr ("+-", (*address
)[0]) != NULL
)
7267 && ((*address
)[1] != '['))))
7268 *sals
= decode_line_1 (address
, 1, default_breakpoint_symtab
,
7269 default_breakpoint_line
, addr_string
,
7272 *sals
= decode_line_1 (address
, 1, (struct symtab
*) NULL
, 0,
7273 addr_string
, not_found_ptr
);
7275 /* For any SAL that didn't have a canonical string, fill one in. */
7276 if (sals
->nelts
> 0 && *addr_string
== NULL
)
7277 *addr_string
= xcalloc (sals
->nelts
, sizeof (char **));
7278 if (addr_start
!= (*address
))
7282 for (i
= 0; i
< sals
->nelts
; i
++)
7284 /* Add the string if not present. */
7285 if ((*addr_string
)[i
] == NULL
)
7286 (*addr_string
)[i
] = savestring (addr_start
,
7287 (*address
) - addr_start
);
7293 /* Convert each SAL into a real PC. Verify that the PC can be
7294 inserted as a breakpoint. If it can't throw an error. */
7297 breakpoint_sals_to_pc (struct symtabs_and_lines
*sals
)
7301 for (i
= 0; i
< sals
->nelts
; i
++)
7302 resolve_sal_pc (&sals
->sals
[i
]);
7305 /* Fast tracepoints may have restrictions on valid locations. For
7306 instance, a fast tracepoint using a jump instead of a trap will
7307 likely have to overwrite more bytes than a trap would, and so can
7308 only be placed where the instruction is longer than the jump, or a
7309 multi-instruction sequence does not have a jump into the middle of
7313 check_fast_tracepoint_sals (struct gdbarch
*gdbarch
,
7314 struct symtabs_and_lines
*sals
)
7317 struct symtab_and_line
*sal
;
7319 struct cleanup
*old_chain
;
7321 for (i
= 0; i
< sals
->nelts
; i
++)
7323 sal
= &sals
->sals
[i
];
7325 rslt
= gdbarch_fast_tracepoint_valid_at (gdbarch
, sal
->pc
,
7327 old_chain
= make_cleanup (xfree
, msg
);
7330 error (_("May not have a fast tracepoint at 0x%s%s"),
7331 paddress (gdbarch
, sal
->pc
), (msg
? msg
: ""));
7333 do_cleanups (old_chain
);
7338 do_captured_parse_breakpoint (struct ui_out
*ui
, void *data
)
7340 struct captured_parse_breakpoint_args
*args
= data
;
7342 parse_breakpoint_sals (args
->arg_p
, args
->sals_p
, args
->addr_string_p
,
7343 args
->not_found_ptr
);
7346 /* Given TOK, a string specification of condition and thread, as
7347 accepted by the 'break' command, extract the condition
7348 string and thread number and set *COND_STRING and *THREAD.
7349 PC identifies the context at which the condition should be parsed.
7350 If no condition is found, *COND_STRING is set to NULL.
7351 If no thread is found, *THREAD is set to -1. */
7353 find_condition_and_thread (char *tok
, CORE_ADDR pc
,
7354 char **cond_string
, int *thread
, int *task
)
7356 *cond_string
= NULL
;
7362 char *cond_start
= NULL
;
7363 char *cond_end
= NULL
;
7365 while (*tok
== ' ' || *tok
== '\t')
7370 while (*end_tok
!= ' ' && *end_tok
!= '\t' && *end_tok
!= '\000')
7373 toklen
= end_tok
- tok
;
7375 if (toklen
>= 1 && strncmp (tok
, "if", toklen
) == 0)
7377 struct expression
*expr
;
7379 tok
= cond_start
= end_tok
+ 1;
7380 expr
= parse_exp_1 (&tok
, block_for_pc (pc
), 0);
7383 *cond_string
= savestring (cond_start
,
7384 cond_end
- cond_start
);
7386 else if (toklen
>= 1 && strncmp (tok
, "thread", toklen
) == 0)
7392 *thread
= strtol (tok
, &tok
, 0);
7394 error (_("Junk after thread keyword."));
7395 if (!valid_thread_id (*thread
))
7396 error (_("Unknown thread %d."), *thread
);
7398 else if (toklen
>= 1 && strncmp (tok
, "task", toklen
) == 0)
7404 *task
= strtol (tok
, &tok
, 0);
7406 error (_("Junk after task keyword."));
7407 if (!valid_task_id (*task
))
7408 error (_("Unknown task %d."), *task
);
7411 error (_("Junk at end of arguments."));
7415 /* Decode a static tracepoint marker spec. */
7417 static struct symtabs_and_lines
7418 decode_static_tracepoint_spec (char **arg_p
)
7420 VEC(static_tracepoint_marker_p
) *markers
= NULL
;
7421 struct symtabs_and_lines sals
;
7422 struct symtab_and_line sal
;
7424 struct cleanup
*old_chain
;
7425 char *p
= &(*arg_p
)[3];
7430 while (*p
== ' ' || *p
== '\t')
7434 while (*endp
!= ' ' && *endp
!= '\t' && *endp
!= '\0')
7437 marker_str
= savestring (p
, endp
- p
);
7438 old_chain
= make_cleanup (xfree
, marker_str
);
7440 markers
= target_static_tracepoint_markers_by_strid (marker_str
);
7441 if (VEC_empty(static_tracepoint_marker_p
, markers
))
7442 error (_("No known static tracepoint marker named %s"), marker_str
);
7444 sals
.nelts
= VEC_length(static_tracepoint_marker_p
, markers
);
7445 sals
.sals
= xmalloc (sizeof *sals
.sals
* sals
.nelts
);
7447 for (i
= 0; i
< sals
.nelts
; i
++)
7449 struct static_tracepoint_marker
*marker
;
7451 marker
= VEC_index (static_tracepoint_marker_p
, markers
, i
);
7453 init_sal (&sals
.sals
[i
]);
7455 sals
.sals
[i
] = find_pc_line (marker
->address
, 0);
7456 sals
.sals
[i
].pc
= marker
->address
;
7458 release_static_tracepoint_marker (marker
);
7461 do_cleanups (old_chain
);
7467 /* Set a breakpoint. This function is shared between CLI and MI
7468 functions for setting a breakpoint. This function has two major
7469 modes of operations, selected by the PARSE_CONDITION_AND_THREAD
7470 parameter. If non-zero, the function will parse arg, extracting
7471 breakpoint location, address and thread. Otherwise, ARG is just the
7472 location of breakpoint, with condition and thread specified by the
7473 COND_STRING and THREAD parameters. Returns true if any breakpoint
7474 was created; false otherwise. */
7477 create_breakpoint (struct gdbarch
*gdbarch
,
7478 char *arg
, char *cond_string
, int thread
,
7479 int parse_condition_and_thread
,
7480 int tempflag
, enum bptype type_wanted
,
7482 enum auto_boolean pending_break_support
,
7483 struct breakpoint_ops
*ops
,
7487 struct gdb_exception e
;
7488 struct symtabs_and_lines sals
;
7489 struct symtab_and_line pending_sal
;
7491 char *addr_start
= arg
;
7493 struct cleanup
*old_chain
;
7494 struct cleanup
*bkpt_chain
= NULL
;
7495 struct captured_parse_breakpoint_args parse_args
;
7500 int prev_bkpt_count
= breakpoint_count
;
7506 parse_args
.arg_p
= &arg
;
7507 parse_args
.sals_p
= &sals
;
7508 parse_args
.addr_string_p
= &addr_string
;
7509 parse_args
.not_found_ptr
= ¬_found
;
7511 if (type_wanted
== bp_static_tracepoint
&& is_marker_spec (arg
))
7515 sals
= decode_static_tracepoint_spec (&arg
);
7517 copy_arg
= savestring (addr_start
, arg
- addr_start
);
7518 addr_string
= xcalloc (sals
.nelts
, sizeof (char **));
7519 for (i
= 0; i
< sals
.nelts
; i
++)
7520 addr_string
[i
] = xstrdup (copy_arg
);
7524 e
= catch_exception (uiout
, do_captured_parse_breakpoint
,
7525 &parse_args
, RETURN_MASK_ALL
);
7527 /* If caller is interested in rc value from parse, set value. */
7531 throw_exception (e
);
7535 case NOT_FOUND_ERROR
:
7537 /* If pending breakpoint support is turned off, throw
7540 if (pending_break_support
== AUTO_BOOLEAN_FALSE
)
7541 throw_exception (e
);
7543 exception_print (gdb_stderr
, e
);
7545 /* If pending breakpoint support is auto query and the user
7546 selects no, then simply return the error code. */
7547 if (pending_break_support
== AUTO_BOOLEAN_AUTO
7548 && !nquery (_("Make breakpoint pending on future shared library load? ")))
7551 /* At this point, either the user was queried about setting
7552 a pending breakpoint and selected yes, or pending
7553 breakpoint behavior is on and thus a pending breakpoint
7554 is defaulted on behalf of the user. */
7555 copy_arg
= xstrdup (addr_start
);
7556 addr_string
= ©_arg
;
7558 sals
.sals
= &pending_sal
;
7563 throw_exception (e
);
7572 /* Create a chain of things that always need to be cleaned up. */
7573 old_chain
= make_cleanup (null_cleanup
, 0);
7577 /* Make sure that all storage allocated to SALS gets freed. */
7578 make_cleanup (xfree
, sals
.sals
);
7580 /* Cleanup the addr_string array but not its contents. */
7581 make_cleanup (xfree
, addr_string
);
7584 /* ----------------------------- SNIP -----------------------------
7585 Anything added to the cleanup chain beyond this point is assumed
7586 to be part of a breakpoint. If the breakpoint create succeeds
7587 then the memory is not reclaimed. */
7588 bkpt_chain
= make_cleanup (null_cleanup
, 0);
7590 /* Mark the contents of the addr_string for cleanup. These go on
7591 the bkpt_chain and only occur if the breakpoint create fails. */
7592 for (i
= 0; i
< sals
.nelts
; i
++)
7594 if (addr_string
[i
] != NULL
)
7595 make_cleanup (xfree
, addr_string
[i
]);
7598 /* Resolve all line numbers to PC's and verify that the addresses
7599 are ok for the target. */
7601 breakpoint_sals_to_pc (&sals
);
7603 /* Fast tracepoints may have additional restrictions on location. */
7604 if (type_wanted
== bp_fast_tracepoint
)
7605 check_fast_tracepoint_sals (gdbarch
, &sals
);
7607 /* Verify that condition can be parsed, before setting any
7608 breakpoints. Allocate a separate condition expression for each
7612 if (parse_condition_and_thread
)
7614 /* Here we only parse 'arg' to separate condition
7615 from thread number, so parsing in context of first
7616 sal is OK. When setting the breakpoint we'll
7617 re-parse it in context of each sal. */
7620 find_condition_and_thread (arg
, sals
.sals
[0].pc
, &cond_string
,
7623 make_cleanup (xfree
, cond_string
);
7627 /* Create a private copy of condition string. */
7630 cond_string
= xstrdup (cond_string
);
7631 make_cleanup (xfree
, cond_string
);
7635 /* If the user is creating a static tracepoint by marker id
7636 (strace -m MARKER_ID), then store the sals index, so that
7637 breakpoint_re_set can try to match up which of the newly
7638 found markers corresponds to this one, and, don't try to
7639 expand multiple locations for each sal, given than SALS
7640 already should contain all sals for MARKER_ID. */
7641 if (type_wanted
== bp_static_tracepoint
7642 && is_marker_spec (addr_string
[0]))
7646 for (i
= 0; i
< sals
.nelts
; ++i
)
7648 struct symtabs_and_lines expanded
;
7649 struct breakpoint
*tp
;
7650 struct cleanup
*old_chain
;
7653 expanded
.sals
= xmalloc (sizeof (struct symtab_and_line
));
7654 expanded
.sals
[0] = sals
.sals
[i
];
7655 old_chain
= make_cleanup (xfree
, expanded
.sals
);
7657 create_breakpoint_sal (gdbarch
, expanded
, addr_string
[i
],
7658 cond_string
, type_wanted
,
7659 tempflag
? disp_del
: disp_donttouch
,
7660 thread
, task
, ignore_count
, ops
,
7663 do_cleanups (old_chain
);
7665 /* Get the tracepoint we just created. */
7666 tp
= get_breakpoint (breakpoint_count
);
7667 gdb_assert (tp
!= NULL
);
7669 /* Given that its possible to have multiple markers with
7670 the same string id, if the user is creating a static
7671 tracepoint by marker id ("strace -m MARKER_ID"), then
7672 store the sals index, so that breakpoint_re_set can
7673 try to match up which of the newly found markers
7674 corresponds to this one */
7675 tp
->static_trace_marker_id_idx
= i
;
7679 create_breakpoints_sal (gdbarch
, sals
, addr_string
, cond_string
,
7680 type_wanted
, tempflag
? disp_del
: disp_donttouch
,
7681 thread
, task
, ignore_count
, ops
, from_tty
,
7686 struct breakpoint
*b
;
7688 make_cleanup (xfree
, copy_arg
);
7690 b
= set_raw_breakpoint_without_location (gdbarch
, type_wanted
);
7691 set_breakpoint_count (breakpoint_count
+ 1);
7692 b
->number
= breakpoint_count
;
7694 b
->addr_string
= addr_string
[0];
7695 b
->cond_string
= NULL
;
7696 b
->ignore_count
= ignore_count
;
7697 b
->disposition
= tempflag
? disp_del
: disp_donttouch
;
7698 b
->condition_not_parsed
= 1;
7700 b
->enable_state
= enabled
? bp_enabled
: bp_disabled
;
7701 b
->pspace
= current_program_space
;
7703 if (enabled
&& b
->pspace
->executing_startup
7704 && (b
->type
== bp_breakpoint
7705 || b
->type
== bp_hardware_breakpoint
))
7706 b
->enable_state
= bp_startup_disabled
;
7713 warning (_("Multiple breakpoints were set.\n"
7714 "Use the \"delete\" command to delete unwanted breakpoints."));
7715 prev_breakpoint_count
= prev_bkpt_count
;
7718 /* That's it. Discard the cleanups for data inserted into the
7720 discard_cleanups (bkpt_chain
);
7721 /* But cleanup everything else. */
7722 do_cleanups (old_chain
);
7724 /* error call may happen here - have BKPT_CHAIN already discarded. */
7725 update_global_location_list (1);
7730 /* Set a breakpoint.
7731 ARG is a string describing breakpoint address,
7732 condition, and thread.
7733 FLAG specifies if a breakpoint is hardware on,
7734 and if breakpoint is temporary, using BP_HARDWARE_FLAG
7738 break_command_1 (char *arg
, int flag
, int from_tty
)
7740 int tempflag
= flag
& BP_TEMPFLAG
;
7741 enum bptype type_wanted
= (flag
& BP_HARDWAREFLAG
7742 ? bp_hardware_breakpoint
7745 create_breakpoint (get_current_arch (),
7747 NULL
, 0, 1 /* parse arg */,
7748 tempflag
, type_wanted
,
7749 0 /* Ignore count */,
7750 pending_break_support
,
7751 NULL
/* breakpoint_ops */,
7757 /* Helper function for break_command_1 and disassemble_command. */
7760 resolve_sal_pc (struct symtab_and_line
*sal
)
7764 if (sal
->pc
== 0 && sal
->symtab
!= NULL
)
7766 if (!find_line_pc (sal
->symtab
, sal
->line
, &pc
))
7767 error (_("No line %d in file \"%s\"."),
7768 sal
->line
, sal
->symtab
->filename
);
7771 /* If this SAL corresponds to a breakpoint inserted using
7772 a line number, then skip the function prologue if necessary. */
7773 if (sal
->explicit_line
)
7774 skip_prologue_sal (sal
);
7777 if (sal
->section
== 0 && sal
->symtab
!= NULL
)
7779 struct blockvector
*bv
;
7783 bv
= blockvector_for_pc_sect (sal
->pc
, 0, &b
, sal
->symtab
);
7786 sym
= block_linkage_function (b
);
7789 fixup_symbol_section (sym
, sal
->symtab
->objfile
);
7790 sal
->section
= SYMBOL_OBJ_SECTION (sym
);
7794 /* It really is worthwhile to have the section, so we'll just
7795 have to look harder. This case can be executed if we have
7796 line numbers but no functions (as can happen in assembly
7799 struct minimal_symbol
*msym
;
7800 struct cleanup
*old_chain
= save_current_space_and_thread ();
7802 switch_to_program_space_and_thread (sal
->pspace
);
7804 msym
= lookup_minimal_symbol_by_pc (sal
->pc
);
7806 sal
->section
= SYMBOL_OBJ_SECTION (msym
);
7808 do_cleanups (old_chain
);
7815 break_command (char *arg
, int from_tty
)
7817 break_command_1 (arg
, 0, from_tty
);
7821 tbreak_command (char *arg
, int from_tty
)
7823 break_command_1 (arg
, BP_TEMPFLAG
, from_tty
);
7827 hbreak_command (char *arg
, int from_tty
)
7829 break_command_1 (arg
, BP_HARDWAREFLAG
, from_tty
);
7833 thbreak_command (char *arg
, int from_tty
)
7835 break_command_1 (arg
, (BP_TEMPFLAG
| BP_HARDWAREFLAG
), from_tty
);
7839 stop_command (char *arg
, int from_tty
)
7841 printf_filtered (_("Specify the type of breakpoint to set.\n\
7842 Usage: stop in <function | address>\n\
7843 stop at <line>\n"));
7847 stopin_command (char *arg
, int from_tty
)
7851 if (arg
== (char *) NULL
)
7853 else if (*arg
!= '*')
7858 /* look for a ':'. If this is a line number specification, then
7859 say it is bad, otherwise, it should be an address or
7860 function/method name */
7861 while (*argptr
&& !hasColon
)
7863 hasColon
= (*argptr
== ':');
7868 badInput
= (*argptr
!= ':'); /* Not a class::method */
7870 badInput
= isdigit (*arg
); /* a simple line number */
7874 printf_filtered (_("Usage: stop in <function | address>\n"));
7876 break_command_1 (arg
, 0, from_tty
);
7880 stopat_command (char *arg
, int from_tty
)
7884 if (arg
== (char *) NULL
|| *arg
== '*') /* no line number */
7891 /* look for a ':'. If there is a '::' then get out, otherwise
7892 it is probably a line number. */
7893 while (*argptr
&& !hasColon
)
7895 hasColon
= (*argptr
== ':');
7900 badInput
= (*argptr
== ':'); /* we have class::method */
7902 badInput
= !isdigit (*arg
); /* not a line number */
7906 printf_filtered (_("Usage: stop at <line>\n"));
7908 break_command_1 (arg
, 0, from_tty
);
7911 /* Return non-zero if EXP is verified as constant. Returned zero means EXP is
7912 variable. Also the constant detection may fail for some constant
7913 expressions and in such case still falsely return zero. */
7915 watchpoint_exp_is_const (const struct expression
*exp
)
7923 /* We are only interested in the descriptor of each element. */
7924 operator_length (exp
, i
, &oplenp
, &argsp
);
7927 switch (exp
->elts
[i
].opcode
)
7937 case BINOP_LOGICAL_AND
:
7938 case BINOP_LOGICAL_OR
:
7939 case BINOP_BITWISE_AND
:
7940 case BINOP_BITWISE_IOR
:
7941 case BINOP_BITWISE_XOR
:
7943 case BINOP_NOTEQUAL
:
7959 case TERNOP_SLICE_COUNT
:
7971 case OP_OBJC_NSSTRING
:
7974 case UNOP_LOGICAL_NOT
:
7975 case UNOP_COMPLEMENT
:
7978 /* Unary, binary and ternary operators: We have to check their
7979 operands. If they are constant, then so is the result of
7980 that operation. For instance, if A and B are determined to be
7981 constants, then so is "A + B".
7983 UNOP_IND is one exception to the rule above, because the value
7984 of *ADDR is not necessarily a constant, even when ADDR is. */
7988 /* Check whether the associated symbol is a constant.
7989 We use SYMBOL_CLASS rather than TYPE_CONST because it's
7990 possible that a buggy compiler could mark a variable as constant
7991 even when it is not, and TYPE_CONST would return true in this
7992 case, while SYMBOL_CLASS wouldn't.
7993 We also have to check for function symbols because they are
7996 struct symbol
*s
= exp
->elts
[i
+ 2].symbol
;
7998 if (SYMBOL_CLASS (s
) != LOC_BLOCK
7999 && SYMBOL_CLASS (s
) != LOC_CONST
8000 && SYMBOL_CLASS (s
) != LOC_CONST_BYTES
)
8005 /* The default action is to return 0 because we are using
8006 the optimistic approach here: If we don't know something,
8007 then it is not a constant. */
8016 /* accessflag: hw_write: watch write,
8017 hw_read: watch read,
8018 hw_access: watch access (read or write) */
8020 watch_command_1 (char *arg
, int accessflag
, int from_tty
, int just_location
)
8022 struct breakpoint
*b
, *scope_breakpoint
= NULL
;
8023 struct expression
*exp
;
8024 struct block
*exp_valid_block
= NULL
, *cond_exp_valid_block
= NULL
;
8025 struct value
*val
, *mark
;
8026 struct frame_info
*frame
;
8027 char *exp_start
= NULL
;
8028 char *exp_end
= NULL
;
8029 char *tok
, *id_tok_start
, *end_tok
;
8031 char *cond_start
= NULL
;
8032 char *cond_end
= NULL
;
8033 int i
, other_type_used
, target_resources_ok
= 0;
8034 enum bptype bp_type
;
8039 /* Make sure that we actually have parameters to parse. */
8040 if (arg
!= NULL
&& arg
[0] != '\0')
8042 toklen
= strlen (arg
); /* Size of argument list. */
8044 /* Points tok to the end of the argument list. */
8045 tok
= arg
+ toklen
- 1;
8047 /* Go backwards in the parameters list. Skip the last parameter.
8048 If we're expecting a 'thread <thread_num>' parameter, this should
8049 be the thread identifier. */
8050 while (tok
> arg
&& (*tok
== ' ' || *tok
== '\t'))
8052 while (tok
> arg
&& (*tok
!= ' ' && *tok
!= '\t'))
8055 /* Points end_tok to the beginning of the last token. */
8056 id_tok_start
= tok
+ 1;
8058 /* Go backwards in the parameters list. Skip one more parameter.
8059 If we're expecting a 'thread <thread_num>' parameter, we should
8060 reach a "thread" token. */
8061 while (tok
> arg
&& (*tok
== ' ' || *tok
== '\t'))
8066 while (tok
> arg
&& (*tok
!= ' ' && *tok
!= '\t'))
8069 /* Move the pointer forward to skip the whitespace and
8070 calculate the length of the token. */
8072 toklen
= end_tok
- tok
;
8074 if (toklen
>= 1 && strncmp (tok
, "thread", toklen
) == 0)
8076 /* At this point we've found a "thread" token, which means
8077 the user is trying to set a watchpoint that triggers
8078 only in a specific thread. */
8081 /* Extract the thread ID from the next token. */
8082 thread
= strtol (id_tok_start
, &endp
, 0);
8084 /* Check if the user provided a valid numeric value for the
8086 if (*endp
!= ' ' && *endp
!= '\t' && *endp
!= '\0')
8087 error (_("Invalid thread ID specification %s."), id_tok_start
);
8089 /* Check if the thread actually exists. */
8090 if (!valid_thread_id (thread
))
8091 error (_("Unknown thread %d."), thread
);
8093 /* Truncate the string and get rid of the thread <thread_num>
8094 parameter before the parameter list is parsed by the
8095 evaluate_expression() function. */
8100 /* Parse the rest of the arguments. */
8101 innermost_block
= NULL
;
8103 exp
= parse_exp_1 (&arg
, 0, 0);
8105 /* Remove trailing whitespace from the expression before saving it.
8106 This makes the eventual display of the expression string a bit
8108 while (exp_end
> exp_start
&& (exp_end
[-1] == ' ' || exp_end
[-1] == '\t'))
8111 /* Checking if the expression is not constant. */
8112 if (watchpoint_exp_is_const (exp
))
8116 len
= exp_end
- exp_start
;
8117 while (len
> 0 && isspace (exp_start
[len
- 1]))
8119 error (_("Cannot watch constant value `%.*s'."), len
, exp_start
);
8122 exp_valid_block
= innermost_block
;
8123 mark
= value_mark ();
8124 fetch_subexp_value (exp
, &pc
, &val
, NULL
, NULL
);
8128 exp_valid_block
= NULL
;
8129 val
= value_addr (val
);
8130 release_value (val
);
8131 value_free_to_mark (mark
);
8133 else if (val
!= NULL
)
8134 release_value (val
);
8137 while (*tok
== ' ' || *tok
== '\t')
8141 while (*end_tok
!= ' ' && *end_tok
!= '\t' && *end_tok
!= '\000')
8144 toklen
= end_tok
- tok
;
8145 if (toklen
>= 1 && strncmp (tok
, "if", toklen
) == 0)
8147 struct expression
*cond
;
8149 innermost_block
= NULL
;
8150 tok
= cond_start
= end_tok
+ 1;
8151 cond
= parse_exp_1 (&tok
, 0, 0);
8153 /* The watchpoint expression may not be local, but the condition
8154 may still be. E.g.: `watch global if local > 0'. */
8155 cond_exp_valid_block
= innermost_block
;
8161 error (_("Junk at end of command."));
8163 if (accessflag
== hw_read
)
8164 bp_type
= bp_read_watchpoint
;
8165 else if (accessflag
== hw_access
)
8166 bp_type
= bp_access_watchpoint
;
8168 bp_type
= bp_hardware_watchpoint
;
8170 mem_cnt
= can_use_hardware_watchpoint (val
);
8171 if (mem_cnt
== 0 && bp_type
!= bp_hardware_watchpoint
)
8172 error (_("Expression cannot be implemented with read/access watchpoint."));
8175 i
= hw_watchpoint_used_count (bp_type
, &other_type_used
);
8176 target_resources_ok
=
8177 target_can_use_hardware_watchpoint (bp_type
, i
+ mem_cnt
,
8179 if (target_resources_ok
== 0 && bp_type
!= bp_hardware_watchpoint
)
8180 error (_("Target does not support this type of hardware watchpoint."));
8182 if (target_resources_ok
< 0 && bp_type
!= bp_hardware_watchpoint
)
8183 error (_("Target can only support one kind of HW watchpoint at a time."));
8186 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
8187 watchpoint could not be set. */
8188 if (!mem_cnt
|| target_resources_ok
<= 0)
8189 bp_type
= bp_watchpoint
;
8191 frame
= block_innermost_frame (exp_valid_block
);
8193 /* If the expression is "local", then set up a "watchpoint scope"
8194 breakpoint at the point where we've left the scope of the watchpoint
8195 expression. Create the scope breakpoint before the watchpoint, so
8196 that we will encounter it first in bpstat_stop_status. */
8197 if (exp_valid_block
&& frame
)
8199 if (frame_id_p (frame_unwind_caller_id (frame
)))
8202 = create_internal_breakpoint (frame_unwind_caller_arch (frame
),
8203 frame_unwind_caller_pc (frame
),
8204 bp_watchpoint_scope
);
8206 scope_breakpoint
->enable_state
= bp_enabled
;
8208 /* Automatically delete the breakpoint when it hits. */
8209 scope_breakpoint
->disposition
= disp_del
;
8211 /* Only break in the proper frame (help with recursion). */
8212 scope_breakpoint
->frame_id
= frame_unwind_caller_id (frame
);
8214 /* Set the address at which we will stop. */
8215 scope_breakpoint
->loc
->gdbarch
8216 = frame_unwind_caller_arch (frame
);
8217 scope_breakpoint
->loc
->requested_address
8218 = frame_unwind_caller_pc (frame
);
8219 scope_breakpoint
->loc
->address
8220 = adjust_breakpoint_address (scope_breakpoint
->loc
->gdbarch
,
8221 scope_breakpoint
->loc
->requested_address
,
8222 scope_breakpoint
->type
);
8226 /* Now set up the breakpoint. */
8227 b
= set_raw_breakpoint_without_location (NULL
, bp_type
);
8228 set_breakpoint_count (breakpoint_count
+ 1);
8229 b
->number
= breakpoint_count
;
8231 b
->disposition
= disp_donttouch
;
8233 b
->exp_valid_block
= exp_valid_block
;
8234 b
->cond_exp_valid_block
= cond_exp_valid_block
;
8237 struct type
*t
= value_type (val
);
8238 CORE_ADDR addr
= value_as_address (val
);
8241 t
= check_typedef (TYPE_TARGET_TYPE (check_typedef (t
)));
8242 name
= type_to_string (t
);
8244 b
->exp_string_reparse
= xstrprintf ("* (%s *) %s", name
,
8245 core_addr_to_string (addr
));
8248 b
->exp_string
= xstrprintf ("-location: %.*s",
8249 (int) (exp_end
- exp_start
), exp_start
);
8251 /* The above expression is in C. */
8252 b
->language
= language_c
;
8255 b
->exp_string
= savestring (exp_start
, exp_end
- exp_start
);
8259 b
->cond_string
= savestring (cond_start
, cond_end
- cond_start
);
8265 b
->watchpoint_frame
= get_frame_id (frame
);
8266 b
->watchpoint_thread
= inferior_ptid
;
8270 b
->watchpoint_frame
= null_frame_id
;
8271 b
->watchpoint_thread
= null_ptid
;
8274 if (scope_breakpoint
!= NULL
)
8276 /* The scope breakpoint is related to the watchpoint. We will
8277 need to act on them together. */
8278 b
->related_breakpoint
= scope_breakpoint
;
8279 scope_breakpoint
->related_breakpoint
= b
;
8283 value_free_to_mark (mark
);
8285 /* Finally update the new watchpoint. This creates the locations
8286 that should be inserted. */
8287 update_watchpoint (b
, 1);
8290 update_global_location_list (1);
8293 /* Return count of locations need to be watched and can be handled
8294 in hardware. If the watchpoint can not be handled
8295 in hardware return zero. */
8298 can_use_hardware_watchpoint (struct value
*v
)
8300 int found_memory_cnt
= 0;
8301 struct value
*head
= v
;
8303 /* Did the user specifically forbid us to use hardware watchpoints? */
8304 if (!can_use_hw_watchpoints
)
8307 /* Make sure that the value of the expression depends only upon
8308 memory contents, and values computed from them within GDB. If we
8309 find any register references or function calls, we can't use a
8310 hardware watchpoint.
8312 The idea here is that evaluating an expression generates a series
8313 of values, one holding the value of every subexpression. (The
8314 expression a*b+c has five subexpressions: a, b, a*b, c, and
8315 a*b+c.) GDB's values hold almost enough information to establish
8316 the criteria given above --- they identify memory lvalues,
8317 register lvalues, computed values, etcetera. So we can evaluate
8318 the expression, and then scan the chain of values that leaves
8319 behind to decide whether we can detect any possible change to the
8320 expression's final value using only hardware watchpoints.
8322 However, I don't think that the values returned by inferior
8323 function calls are special in any way. So this function may not
8324 notice that an expression involving an inferior function call
8325 can't be watched with hardware watchpoints. FIXME. */
8326 for (; v
; v
= value_next (v
))
8328 if (VALUE_LVAL (v
) == lval_memory
)
8330 if (v
!= head
&& value_lazy (v
))
8331 /* A lazy memory lvalue in the chain is one that GDB never
8332 needed to fetch; we either just used its address (e.g.,
8333 `a' in `a.b') or we never needed it at all (e.g., `a'
8334 in `a,b'). This doesn't apply to HEAD; if that is
8335 lazy then it was not readable, but watch it anyway. */
8339 /* Ahh, memory we actually used! Check if we can cover
8340 it with hardware watchpoints. */
8341 struct type
*vtype
= check_typedef (value_type (v
));
8343 /* We only watch structs and arrays if user asked for it
8344 explicitly, never if they just happen to appear in a
8345 middle of some value chain. */
8347 || (TYPE_CODE (vtype
) != TYPE_CODE_STRUCT
8348 && TYPE_CODE (vtype
) != TYPE_CODE_ARRAY
))
8350 CORE_ADDR vaddr
= value_address (v
);
8351 int len
= TYPE_LENGTH (value_type (v
));
8353 if (!target_region_ok_for_hw_watchpoint (vaddr
, len
))
8360 else if (VALUE_LVAL (v
) != not_lval
8361 && deprecated_value_modifiable (v
) == 0)
8362 return 0; /* These are values from the history (e.g., $1). */
8363 else if (VALUE_LVAL (v
) == lval_register
)
8364 return 0; /* Cannot watch a register with a HW watchpoint. */
8367 /* The expression itself looks suitable for using a hardware
8368 watchpoint, but give the target machine a chance to reject it. */
8369 return found_memory_cnt
;
8373 watch_command_wrapper (char *arg
, int from_tty
)
8375 watch_command_1 (arg
, hw_write
, from_tty
, 0);
8378 /* A helper function that looks for an argument at the start of a
8379 string. The argument must also either be at the end of the string,
8380 or be followed by whitespace. Returns 1 if it finds the argument,
8381 0 otherwise. If the argument is found, it updates *STR. */
8384 check_for_argument (char **str
, char *arg
, int arg_len
)
8386 if (strncmp (*str
, arg
, arg_len
) == 0
8387 && ((*str
)[arg_len
] == '\0' || isspace ((*str
)[arg_len
])))
8395 /* A helper function that looks for the "-location" argument and then
8396 calls watch_command_1. */
8399 watch_maybe_just_location (char *arg
, int accessflag
, int from_tty
)
8401 int just_location
= 0;
8404 && (check_for_argument (&arg
, "-location", sizeof ("-location") - 1)
8405 || check_for_argument (&arg
, "-l", sizeof ("-l") - 1)))
8407 ep_skip_leading_whitespace (&arg
);
8411 watch_command_1 (arg
, accessflag
, from_tty
, just_location
);
8415 watch_command (char *arg
, int from_tty
)
8417 watch_maybe_just_location (arg
, hw_write
, from_tty
);
8421 rwatch_command_wrapper (char *arg
, int from_tty
)
8423 watch_command_1 (arg
, hw_read
, from_tty
, 0);
8427 rwatch_command (char *arg
, int from_tty
)
8429 watch_maybe_just_location (arg
, hw_read
, from_tty
);
8433 awatch_command_wrapper (char *arg
, int from_tty
)
8435 watch_command_1 (arg
, hw_access
, from_tty
, 0);
8439 awatch_command (char *arg
, int from_tty
)
8441 watch_maybe_just_location (arg
, hw_access
, from_tty
);
8445 /* Helper routines for the until_command routine in infcmd.c. Here
8446 because it uses the mechanisms of breakpoints. */
8448 struct until_break_command_continuation_args
8450 struct breakpoint
*breakpoint
;
8451 struct breakpoint
*breakpoint2
;
8454 /* This function is called by fetch_inferior_event via the
8455 cmd_continuation pointer, to complete the until command. It takes
8456 care of cleaning up the temporary breakpoints set up by the until
8459 until_break_command_continuation (void *arg
)
8461 struct until_break_command_continuation_args
*a
= arg
;
8463 delete_breakpoint (a
->breakpoint
);
8465 delete_breakpoint (a
->breakpoint2
);
8469 until_break_command (char *arg
, int from_tty
, int anywhere
)
8471 struct symtabs_and_lines sals
;
8472 struct symtab_and_line sal
;
8473 struct frame_info
*frame
= get_selected_frame (NULL
);
8474 struct breakpoint
*breakpoint
;
8475 struct breakpoint
*breakpoint2
= NULL
;
8476 struct cleanup
*old_chain
;
8478 clear_proceed_status ();
8480 /* Set a breakpoint where the user wants it and at return from
8483 if (default_breakpoint_valid
)
8484 sals
= decode_line_1 (&arg
, 1, default_breakpoint_symtab
,
8485 default_breakpoint_line
, (char ***) NULL
, NULL
);
8487 sals
= decode_line_1 (&arg
, 1, (struct symtab
*) NULL
,
8488 0, (char ***) NULL
, NULL
);
8490 if (sals
.nelts
!= 1)
8491 error (_("Couldn't get information on specified line."));
8494 xfree (sals
.sals
); /* malloc'd, so freed */
8497 error (_("Junk at end of arguments."));
8499 resolve_sal_pc (&sal
);
8502 /* If the user told us to continue until a specified location,
8503 we don't specify a frame at which we need to stop. */
8504 breakpoint
= set_momentary_breakpoint (get_frame_arch (frame
), sal
,
8505 null_frame_id
, bp_until
);
8507 /* Otherwise, specify the selected frame, because we want to stop only
8508 at the very same frame. */
8509 breakpoint
= set_momentary_breakpoint (get_frame_arch (frame
), sal
,
8510 get_stack_frame_id (frame
),
8513 old_chain
= make_cleanup_delete_breakpoint (breakpoint
);
8515 /* Keep within the current frame, or in frames called by the current
8518 if (frame_id_p (frame_unwind_caller_id (frame
)))
8520 sal
= find_pc_line (frame_unwind_caller_pc (frame
), 0);
8521 sal
.pc
= frame_unwind_caller_pc (frame
);
8522 breakpoint2
= set_momentary_breakpoint (frame_unwind_caller_arch (frame
),
8524 frame_unwind_caller_id (frame
),
8526 make_cleanup_delete_breakpoint (breakpoint2
);
8529 proceed (-1, TARGET_SIGNAL_DEFAULT
, 0);
8531 /* If we are running asynchronously, and proceed call above has actually
8532 managed to start the target, arrange for breakpoints to be
8533 deleted when the target stops. Otherwise, we're already stopped and
8534 delete breakpoints via cleanup chain. */
8536 if (target_can_async_p () && is_running (inferior_ptid
))
8538 struct until_break_command_continuation_args
*args
;
8539 args
= xmalloc (sizeof (*args
));
8541 args
->breakpoint
= breakpoint
;
8542 args
->breakpoint2
= breakpoint2
;
8544 discard_cleanups (old_chain
);
8545 add_continuation (inferior_thread (),
8546 until_break_command_continuation
, args
,
8550 do_cleanups (old_chain
);
8554 ep_skip_leading_whitespace (char **s
)
8556 if ((s
== NULL
) || (*s
== NULL
))
8558 while (isspace (**s
))
8562 /* This function attempts to parse an optional "if <cond>" clause
8563 from the arg string. If one is not found, it returns NULL.
8565 Else, it returns a pointer to the condition string. (It does not
8566 attempt to evaluate the string against a particular block.) And,
8567 it updates arg to point to the first character following the parsed
8568 if clause in the arg string. */
8571 ep_parse_optional_if_clause (char **arg
)
8575 if (((*arg
)[0] != 'i') || ((*arg
)[1] != 'f') || !isspace ((*arg
)[2]))
8578 /* Skip the "if" keyword. */
8581 /* Skip any extra leading whitespace, and record the start of the
8582 condition string. */
8583 ep_skip_leading_whitespace (arg
);
8586 /* Assume that the condition occupies the remainder of the arg string. */
8587 (*arg
) += strlen (cond_string
);
8592 /* Commands to deal with catching events, such as signals, exceptions,
8593 process start/exit, etc. */
8597 catch_fork_temporary
, catch_vfork_temporary
,
8598 catch_fork_permanent
, catch_vfork_permanent
8603 catch_fork_command_1 (char *arg
, int from_tty
,
8604 struct cmd_list_element
*command
)
8606 struct gdbarch
*gdbarch
= get_current_arch ();
8607 char *cond_string
= NULL
;
8608 catch_fork_kind fork_kind
;
8611 fork_kind
= (catch_fork_kind
) (uintptr_t) get_cmd_context (command
);
8612 tempflag
= (fork_kind
== catch_fork_temporary
8613 || fork_kind
== catch_vfork_temporary
);
8617 ep_skip_leading_whitespace (&arg
);
8619 /* The allowed syntax is:
8621 catch [v]fork if <cond>
8623 First, check if there's an if clause. */
8624 cond_string
= ep_parse_optional_if_clause (&arg
);
8626 if ((*arg
!= '\0') && !isspace (*arg
))
8627 error (_("Junk at end of arguments."));
8629 /* If this target supports it, create a fork or vfork catchpoint
8630 and enable reporting of such events. */
8633 case catch_fork_temporary
:
8634 case catch_fork_permanent
:
8635 create_fork_vfork_event_catchpoint (gdbarch
, tempflag
, cond_string
,
8636 &catch_fork_breakpoint_ops
);
8638 case catch_vfork_temporary
:
8639 case catch_vfork_permanent
:
8640 create_fork_vfork_event_catchpoint (gdbarch
, tempflag
, cond_string
,
8641 &catch_vfork_breakpoint_ops
);
8644 error (_("unsupported or unknown fork kind; cannot catch it"));
8650 catch_exec_command_1 (char *arg
, int from_tty
,
8651 struct cmd_list_element
*command
)
8653 struct gdbarch
*gdbarch
= get_current_arch ();
8655 char *cond_string
= NULL
;
8657 tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
8661 ep_skip_leading_whitespace (&arg
);
8663 /* The allowed syntax is:
8665 catch exec if <cond>
8667 First, check if there's an if clause. */
8668 cond_string
= ep_parse_optional_if_clause (&arg
);
8670 if ((*arg
!= '\0') && !isspace (*arg
))
8671 error (_("Junk at end of arguments."));
8673 /* If this target supports it, create an exec catchpoint
8674 and enable reporting of such events. */
8675 create_catchpoint (gdbarch
, tempflag
, cond_string
,
8676 &catch_exec_breakpoint_ops
);
8679 static enum print_stop_action
8680 print_exception_catchpoint (struct breakpoint
*b
)
8682 int bp_temp
, bp_throw
;
8684 annotate_catchpoint (b
->number
);
8686 bp_throw
= strstr (b
->addr_string
, "throw") != NULL
;
8687 if (b
->loc
->address
!= b
->loc
->requested_address
)
8688 breakpoint_adjustment_warning (b
->loc
->requested_address
,
8691 bp_temp
= b
->disposition
== disp_del
;
8693 bp_temp
? "Temporary catchpoint "
8695 if (!ui_out_is_mi_like_p (uiout
))
8696 ui_out_field_int (uiout
, "bkptno", b
->number
);
8698 bp_throw
? " (exception thrown), "
8699 : " (exception caught), ");
8700 if (ui_out_is_mi_like_p (uiout
))
8702 ui_out_field_string (uiout
, "reason",
8703 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT
));
8704 ui_out_field_string (uiout
, "disp", bpdisp_text (b
->disposition
));
8705 ui_out_field_int (uiout
, "bkptno", b
->number
);
8707 return PRINT_SRC_AND_LOC
;
8711 print_one_exception_catchpoint (struct breakpoint
*b
,
8712 struct bp_location
**last_loc
)
8714 struct value_print_options opts
;
8716 get_user_print_options (&opts
);
8717 if (opts
.addressprint
)
8720 if (b
->loc
== NULL
|| b
->loc
->shlib_disabled
)
8721 ui_out_field_string (uiout
, "addr", "<PENDING>");
8723 ui_out_field_core_addr (uiout
, "addr",
8724 b
->loc
->gdbarch
, b
->loc
->address
);
8729 if (strstr (b
->addr_string
, "throw") != NULL
)
8730 ui_out_field_string (uiout
, "what", "exception throw");
8732 ui_out_field_string (uiout
, "what", "exception catch");
8736 print_mention_exception_catchpoint (struct breakpoint
*b
)
8741 bp_temp
= b
->disposition
== disp_del
;
8742 bp_throw
= strstr (b
->addr_string
, "throw") != NULL
;
8743 ui_out_text (uiout
, bp_temp
? _("Temporary catchpoint ")
8744 : _("Catchpoint "));
8745 ui_out_field_int (uiout
, "bkptno", b
->number
);
8746 ui_out_text (uiout
, bp_throw
? _(" (throw)")
8750 /* Implement the "print_recreate" breakpoint_ops method for throw and
8751 catch catchpoints. */
8754 print_recreate_exception_catchpoint (struct breakpoint
*b
, struct ui_file
*fp
)
8759 bp_temp
= b
->disposition
== disp_del
;
8760 bp_throw
= strstr (b
->addr_string
, "throw") != NULL
;
8761 fprintf_unfiltered (fp
, bp_temp
? "tcatch " : "catch ");
8762 fprintf_unfiltered (fp
, bp_throw
? "throw" : "catch");
8765 static struct breakpoint_ops gnu_v3_exception_catchpoint_ops
= {
8768 NULL
, /* breakpoint_hit */
8769 print_exception_catchpoint
,
8770 print_one_exception_catchpoint
,
8771 print_mention_exception_catchpoint
,
8772 print_recreate_exception_catchpoint
8776 handle_gnu_v3_exceptions (int tempflag
, char *cond_string
,
8777 enum exception_event_kind ex_event
, int from_tty
)
8779 char *trigger_func_name
;
8781 if (ex_event
== EX_EVENT_CATCH
)
8782 trigger_func_name
= "__cxa_begin_catch";
8784 trigger_func_name
= "__cxa_throw";
8786 create_breakpoint (get_current_arch (),
8787 trigger_func_name
, cond_string
, -1,
8788 0 /* condition and thread are valid. */,
8789 tempflag
, bp_breakpoint
,
8791 AUTO_BOOLEAN_TRUE
/* pending */,
8792 &gnu_v3_exception_catchpoint_ops
, from_tty
,
8798 /* Deal with "catch catch" and "catch throw" commands */
8801 catch_exception_command_1 (enum exception_event_kind ex_event
, char *arg
,
8802 int tempflag
, int from_tty
)
8804 char *cond_string
= NULL
;
8808 ep_skip_leading_whitespace (&arg
);
8810 cond_string
= ep_parse_optional_if_clause (&arg
);
8812 if ((*arg
!= '\0') && !isspace (*arg
))
8813 error (_("Junk at end of arguments."));
8815 if (ex_event
!= EX_EVENT_THROW
8816 && ex_event
!= EX_EVENT_CATCH
)
8817 error (_("Unsupported or unknown exception event; cannot catch it"));
8819 if (handle_gnu_v3_exceptions (tempflag
, cond_string
, ex_event
, from_tty
))
8822 warning (_("Unsupported with this platform/compiler combination."));
8825 /* Implementation of "catch catch" command. */
8828 catch_catch_command (char *arg
, int from_tty
, struct cmd_list_element
*command
)
8830 int tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
8832 catch_exception_command_1 (EX_EVENT_CATCH
, arg
, tempflag
, from_tty
);
8835 /* Implementation of "catch throw" command. */
8838 catch_throw_command (char *arg
, int from_tty
, struct cmd_list_element
*command
)
8840 int tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
8842 catch_exception_command_1 (EX_EVENT_THROW
, arg
, tempflag
, from_tty
);
8845 /* Create a breakpoint struct for Ada exception catchpoints. */
8848 create_ada_exception_breakpoint (struct gdbarch
*gdbarch
,
8849 struct symtab_and_line sal
,
8853 struct expression
*cond
,
8854 struct breakpoint_ops
*ops
,
8858 struct breakpoint
*b
;
8862 struct gdbarch
*loc_gdbarch
= get_sal_arch (sal
);
8864 loc_gdbarch
= gdbarch
;
8866 describe_other_breakpoints (loc_gdbarch
,
8867 sal
.pspace
, sal
.pc
, sal
.section
, -1);
8868 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
8869 version for exception catchpoints, because two catchpoints
8870 used for different exception names will use the same address.
8871 In this case, a "breakpoint ... also set at..." warning is
8872 unproductive. Besides. the warning phrasing is also a bit
8873 inapropriate, we should use the word catchpoint, and tell
8874 the user what type of catchpoint it is. The above is good
8875 enough for now, though. */
8878 b
= set_raw_breakpoint (gdbarch
, sal
, bp_breakpoint
);
8879 set_breakpoint_count (breakpoint_count
+ 1);
8881 b
->enable_state
= bp_enabled
;
8882 b
->disposition
= tempflag
? disp_del
: disp_donttouch
;
8883 b
->number
= breakpoint_count
;
8884 b
->ignore_count
= 0;
8885 b
->loc
->cond
= cond
;
8886 b
->addr_string
= addr_string
;
8887 b
->language
= language_ada
;
8888 b
->cond_string
= cond_string
;
8889 b
->exp_string
= exp_string
;
8894 update_global_location_list (1);
8897 /* Implement the "catch exception" command. */
8900 catch_ada_exception_command (char *arg
, int from_tty
,
8901 struct cmd_list_element
*command
)
8903 struct gdbarch
*gdbarch
= get_current_arch ();
8905 struct symtab_and_line sal
;
8906 char *addr_string
= NULL
;
8907 char *exp_string
= NULL
;
8908 char *cond_string
= NULL
;
8909 struct expression
*cond
= NULL
;
8910 struct breakpoint_ops
*ops
= NULL
;
8912 tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
8916 sal
= ada_decode_exception_location (arg
, &addr_string
, &exp_string
,
8917 &cond_string
, &cond
, &ops
);
8918 create_ada_exception_breakpoint (gdbarch
, sal
, addr_string
, exp_string
,
8919 cond_string
, cond
, ops
, tempflag
,
8923 /* Cleanup function for a syscall filter list. */
8925 clean_up_filters (void *arg
)
8927 VEC(int) *iter
= *(VEC(int) **) arg
;
8928 VEC_free (int, iter
);
8931 /* Splits the argument using space as delimiter. Returns an xmalloc'd
8932 filter list, or NULL if no filtering is required. */
8934 catch_syscall_split_args (char *arg
)
8936 VEC(int) *result
= NULL
;
8937 struct cleanup
*cleanup
= make_cleanup (clean_up_filters
, &result
);
8939 while (*arg
!= '\0')
8941 int i
, syscall_number
;
8946 /* Skip whitespace. */
8947 while (isspace (*arg
))
8950 for (i
= 0; i
< 127 && arg
[i
] && !isspace (arg
[i
]); ++i
)
8951 cur_name
[i
] = arg
[i
];
8955 /* Check if the user provided a syscall name or a number. */
8956 syscall_number
= (int) strtol (cur_name
, &endptr
, 0);
8957 if (*endptr
== '\0')
8958 get_syscall_by_number (syscall_number
, &s
);
8961 /* We have a name. Let's check if it's valid and convert it
8963 get_syscall_by_name (cur_name
, &s
);
8965 if (s
.number
== UNKNOWN_SYSCALL
)
8966 /* Here we have to issue an error instead of a warning, because
8967 GDB cannot do anything useful if there's no syscall number to
8969 error (_("Unknown syscall name '%s'."), cur_name
);
8972 /* Ok, it's valid. */
8973 VEC_safe_push (int, result
, s
.number
);
8976 discard_cleanups (cleanup
);
8980 /* Implement the "catch syscall" command. */
8983 catch_syscall_command_1 (char *arg
, int from_tty
,
8984 struct cmd_list_element
*command
)
8989 struct gdbarch
*gdbarch
= get_current_arch ();
8991 /* Checking if the feature if supported. */
8992 if (gdbarch_get_syscall_number_p (gdbarch
) == 0)
8993 error (_("The feature 'catch syscall' is not supported on \
8994 this architeture yet."));
8996 tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
8998 ep_skip_leading_whitespace (&arg
);
9000 /* We need to do this first "dummy" translation in order
9001 to get the syscall XML file loaded or, most important,
9002 to display a warning to the user if there's no XML file
9003 for his/her architecture. */
9004 get_syscall_by_number (0, &s
);
9006 /* The allowed syntax is:
9008 catch syscall <name | number> [<name | number> ... <name | number>]
9010 Let's check if there's a syscall name. */
9013 filter
= catch_syscall_split_args (arg
);
9017 create_syscall_event_catchpoint (tempflag
, filter
,
9018 &catch_syscall_breakpoint_ops
);
9021 /* Implement the "catch assert" command. */
9024 catch_assert_command (char *arg
, int from_tty
, struct cmd_list_element
*command
)
9026 struct gdbarch
*gdbarch
= get_current_arch ();
9028 struct symtab_and_line sal
;
9029 char *addr_string
= NULL
;
9030 struct breakpoint_ops
*ops
= NULL
;
9032 tempflag
= get_cmd_context (command
) == CATCH_TEMPORARY
;
9036 sal
= ada_decode_assert_location (arg
, &addr_string
, &ops
);
9037 create_ada_exception_breakpoint (gdbarch
, sal
, addr_string
, NULL
, NULL
, NULL
,
9038 ops
, tempflag
, from_tty
);
9042 catch_command (char *arg
, int from_tty
)
9044 error (_("Catch requires an event name."));
9049 tcatch_command (char *arg
, int from_tty
)
9051 error (_("Catch requires an event name."));
9054 /* Delete breakpoints by address or line. */
9057 clear_command (char *arg
, int from_tty
)
9059 struct breakpoint
*b
;
9060 VEC(breakpoint_p
) *found
= 0;
9063 struct symtabs_and_lines sals
;
9064 struct symtab_and_line sal
;
9069 sals
= decode_line_spec (arg
, 1);
9074 sals
.sals
= (struct symtab_and_line
*)
9075 xmalloc (sizeof (struct symtab_and_line
));
9076 make_cleanup (xfree
, sals
.sals
);
9077 init_sal (&sal
); /* initialize to zeroes */
9078 sal
.line
= default_breakpoint_line
;
9079 sal
.symtab
= default_breakpoint_symtab
;
9080 sal
.pc
= default_breakpoint_address
;
9081 sal
.pspace
= default_breakpoint_pspace
;
9082 if (sal
.symtab
== 0)
9083 error (_("No source file specified."));
9091 /* We don't call resolve_sal_pc here. That's not
9092 as bad as it seems, because all existing breakpoints
9093 typically have both file/line and pc set. So, if
9094 clear is given file/line, we can match this to existing
9095 breakpoint without obtaining pc at all.
9097 We only support clearing given the address explicitly
9098 present in breakpoint table. Say, we've set breakpoint
9099 at file:line. There were several PC values for that file:line,
9100 due to optimization, all in one block.
9101 We've picked one PC value. If "clear" is issued with another
9102 PC corresponding to the same file:line, the breakpoint won't
9103 be cleared. We probably can still clear the breakpoint, but
9104 since the other PC value is never presented to user, user
9105 can only find it by guessing, and it does not seem important
9108 /* For each line spec given, delete bps which correspond
9109 to it. Do it in two passes, solely to preserve the current
9110 behavior that from_tty is forced true if we delete more than
9114 for (i
= 0; i
< sals
.nelts
; i
++)
9116 /* If exact pc given, clear bpts at that pc.
9117 If line given (pc == 0), clear all bpts on specified line.
9118 If defaulting, clear all bpts on default line
9121 defaulting sal.pc != 0 tests to do
9126 1 0 <can't happen> */
9130 /* Find all matching breakpoints and add them to
9135 /* Are we going to delete b? */
9136 if (b
->type
!= bp_none
&& !is_watchpoint (b
))
9138 struct bp_location
*loc
= b
->loc
;
9139 for (; loc
; loc
= loc
->next
)
9141 int pc_match
= sal
.pc
9142 && (loc
->pspace
== sal
.pspace
)
9143 && (loc
->address
== sal
.pc
)
9144 && (!section_is_overlay (loc
->section
)
9145 || loc
->section
== sal
.section
);
9146 int line_match
= ((default_match
|| (0 == sal
.pc
))
9147 && b
->source_file
!= NULL
9148 && sal
.symtab
!= NULL
9149 && sal
.pspace
== loc
->pspace
9150 && strcmp (b
->source_file
, sal
.symtab
->filename
) == 0
9151 && b
->line_number
== sal
.line
);
9152 if (pc_match
|| line_match
)
9161 VEC_safe_push(breakpoint_p
, found
, b
);
9164 /* Now go thru the 'found' chain and delete them. */
9165 if (VEC_empty(breakpoint_p
, found
))
9168 error (_("No breakpoint at %s."), arg
);
9170 error (_("No breakpoint at this line."));
9173 if (VEC_length(breakpoint_p
, found
) > 1)
9174 from_tty
= 1; /* Always report if deleted more than one */
9177 if (VEC_length(breakpoint_p
, found
) == 1)
9178 printf_unfiltered (_("Deleted breakpoint "));
9180 printf_unfiltered (_("Deleted breakpoints "));
9182 breakpoints_changed ();
9184 for (ix
= 0; VEC_iterate(breakpoint_p
, found
, ix
, b
); ix
++)
9187 printf_unfiltered ("%d ", b
->number
);
9188 delete_breakpoint (b
);
9191 putchar_unfiltered ('\n');
9194 /* Delete breakpoint in BS if they are `delete' breakpoints and
9195 all breakpoints that are marked for deletion, whether hit or not.
9196 This is called after any breakpoint is hit, or after errors. */
9199 breakpoint_auto_delete (bpstat bs
)
9201 struct breakpoint
*b
, *temp
;
9203 for (; bs
; bs
= bs
->next
)
9204 if (bs
->breakpoint_at
9205 && bs
->breakpoint_at
->disposition
== disp_del
9207 delete_breakpoint (bs
->breakpoint_at
);
9209 ALL_BREAKPOINTS_SAFE (b
, temp
)
9211 if (b
->disposition
== disp_del_at_next_stop
)
9212 delete_breakpoint (b
);
9216 /* A comparison function for bp_location AP and BP being interfaced to qsort.
9217 Sort elements primarily by their ADDRESS (no matter what does
9218 breakpoint_address_is_meaningful say for its OWNER), secondarily by ordering
9219 first bp_permanent OWNERed elements and terciarily just ensuring the array
9220 is sorted stable way despite qsort being an instable algorithm. */
9223 bp_location_compare (const void *ap
, const void *bp
)
9225 struct bp_location
*a
= *(void **) ap
;
9226 struct bp_location
*b
= *(void **) bp
;
9227 /* A and B come from existing breakpoints having non-NULL OWNER. */
9228 int a_perm
= a
->owner
->enable_state
== bp_permanent
;
9229 int b_perm
= b
->owner
->enable_state
== bp_permanent
;
9231 if (a
->address
!= b
->address
)
9232 return (a
->address
> b
->address
) - (a
->address
< b
->address
);
9234 /* Sort permanent breakpoints first. */
9235 if (a_perm
!= b_perm
)
9236 return (a_perm
< b_perm
) - (a_perm
> b_perm
);
9238 /* Make the user-visible order stable across GDB runs. Locations of the same
9239 breakpoint can be sorted in arbitrary order. */
9241 if (a
->owner
->number
!= b
->owner
->number
)
9242 return (a
->owner
->number
> b
->owner
->number
)
9243 - (a
->owner
->number
< b
->owner
->number
);
9245 return (a
> b
) - (a
< b
);
9248 /* Set bp_location_placed_address_before_address_max and
9249 bp_location_shadow_len_after_address_max according to the current content of
9250 the bp_location array. */
9253 bp_location_target_extensions_update (void)
9255 struct bp_location
*bl
, **blp_tmp
;
9257 bp_location_placed_address_before_address_max
= 0;
9258 bp_location_shadow_len_after_address_max
= 0;
9260 ALL_BP_LOCATIONS (bl
, blp_tmp
)
9262 CORE_ADDR start
, end
, addr
;
9264 if (!bp_location_has_shadow (bl
))
9267 start
= bl
->target_info
.placed_address
;
9268 end
= start
+ bl
->target_info
.shadow_len
;
9270 gdb_assert (bl
->address
>= start
);
9271 addr
= bl
->address
- start
;
9272 if (addr
> bp_location_placed_address_before_address_max
)
9273 bp_location_placed_address_before_address_max
= addr
;
9275 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
9277 gdb_assert (bl
->address
< end
);
9278 addr
= end
- bl
->address
;
9279 if (addr
> bp_location_shadow_len_after_address_max
)
9280 bp_location_shadow_len_after_address_max
= addr
;
9284 /* If SHOULD_INSERT is false, do not insert any breakpoint locations
9285 into the inferior, only remove already-inserted locations that no
9286 longer should be inserted. Functions that delete a breakpoint or
9287 breakpoints should pass false, so that deleting a breakpoint
9288 doesn't have the side effect of inserting the locations of other
9289 breakpoints that are marked not-inserted, but should_be_inserted
9290 returns true on them.
9292 This behaviour is useful is situations close to tear-down -- e.g.,
9293 after an exec, while the target still has execution, but breakpoint
9294 shadows of the previous executable image should *NOT* be restored
9295 to the new image; or before detaching, where the target still has
9296 execution and wants to delete breakpoints from GDB's lists, and all
9297 breakpoints had already been removed from the inferior. */
9300 update_global_location_list (int should_insert
)
9302 struct breakpoint
*b
;
9303 struct bp_location
**locp
, *loc
;
9304 struct cleanup
*cleanups
;
9306 /* Used in the duplicates detection below. When iterating over all
9307 bp_locations, points to the first bp_location of a given address.
9308 Breakpoints and watchpoints of different types are never
9309 duplicates of each other. Keep one pointer for each type of
9310 breakpoint/watchpoint, so we only need to loop over all locations
9312 struct bp_location
*bp_loc_first
; /* breakpoint */
9313 struct bp_location
*wp_loc_first
; /* hardware watchpoint */
9314 struct bp_location
*awp_loc_first
; /* access watchpoint */
9315 struct bp_location
*rwp_loc_first
; /* read watchpoint */
9317 /* Saved former bp_location array which we compare against the newly built
9318 bp_location from the current state of ALL_BREAKPOINTS. */
9319 struct bp_location
**old_location
, **old_locp
;
9320 unsigned old_location_count
;
9322 old_location
= bp_location
;
9323 old_location_count
= bp_location_count
;
9325 bp_location_count
= 0;
9326 cleanups
= make_cleanup (xfree
, old_location
);
9329 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
9330 bp_location_count
++;
9332 bp_location
= xmalloc (sizeof (*bp_location
) * bp_location_count
);
9335 for (loc
= b
->loc
; loc
; loc
= loc
->next
)
9337 qsort (bp_location
, bp_location_count
, sizeof (*bp_location
),
9338 bp_location_compare
);
9340 bp_location_target_extensions_update ();
9342 /* Identify bp_location instances that are no longer present in the new
9343 list, and therefore should be freed. Note that it's not necessary that
9344 those locations should be removed from inferior -- if there's another
9345 location at the same address (previously marked as duplicate),
9346 we don't need to remove/insert the location.
9348 LOCP is kept in sync with OLD_LOCP, each pointing to the current and
9349 former bp_location array state respectively. */
9352 for (old_locp
= old_location
; old_locp
< old_location
+ old_location_count
;
9355 struct bp_location
*old_loc
= *old_locp
;
9356 struct bp_location
**loc2p
;
9358 /* Tells if 'old_loc' is found amoung the new locations. If not, we
9360 int found_object
= 0;
9361 /* Tells if the location should remain inserted in the target. */
9362 int keep_in_target
= 0;
9365 /* Skip LOCP entries which will definitely never be needed. Stop either
9366 at or being the one matching OLD_LOC. */
9367 while (locp
< bp_location
+ bp_location_count
9368 && (*locp
)->address
< old_loc
->address
)
9372 (loc2p
< bp_location
+ bp_location_count
9373 && (*loc2p
)->address
== old_loc
->address
);
9376 if (*loc2p
== old_loc
)
9383 /* If this location is no longer present, and inserted, look if there's
9384 maybe a new location at the same address. If so, mark that one
9385 inserted, and don't remove this one. This is needed so that we
9386 don't have a time window where a breakpoint at certain location is not
9389 if (old_loc
->inserted
)
9391 /* If the location is inserted now, we might have to remove it. */
9393 if (found_object
&& should_be_inserted (old_loc
))
9395 /* The location is still present in the location list, and still
9396 should be inserted. Don't do anything. */
9401 /* The location is either no longer present, or got disabled.
9402 See if there's another location at the same address, in which
9403 case we don't need to remove this one from the target. */
9405 /* OLD_LOC comes from existing struct breakpoint. */
9406 if (breakpoint_address_is_meaningful (old_loc
->owner
))
9409 (loc2p
< bp_location
+ bp_location_count
9410 && (*loc2p
)->address
== old_loc
->address
);
9413 struct bp_location
*loc2
= *loc2p
;
9415 if (breakpoint_locations_match (loc2
, old_loc
))
9417 /* For the sake of should_be_inserted.
9418 Duplicates check below will fix up this later. */
9419 loc2
->duplicate
= 0;
9421 /* Read watchpoint locations are switched to
9422 access watchpoints, if the former are not
9423 supported, but the latter are. */
9424 if (is_hardware_watchpoint (old_loc
->owner
))
9426 gdb_assert (is_hardware_watchpoint (loc2
->owner
));
9427 loc2
->watchpoint_type
= old_loc
->watchpoint_type
;
9430 if (loc2
!= old_loc
&& should_be_inserted (loc2
))
9433 loc2
->target_info
= old_loc
->target_info
;
9442 if (!keep_in_target
)
9444 if (remove_breakpoint (old_loc
, mark_uninserted
))
9446 /* This is just about all we can do. We could keep this
9447 location on the global list, and try to remove it next
9448 time, but there's no particular reason why we will
9451 Note that at this point, old_loc->owner is still valid,
9452 as delete_breakpoint frees the breakpoint only
9453 after calling us. */
9454 printf_filtered (_("warning: Error removing breakpoint %d\n"),
9455 old_loc
->owner
->number
);
9463 if (removed
&& non_stop
9464 && breakpoint_address_is_meaningful (old_loc
->owner
)
9465 && !is_hardware_watchpoint (old_loc
->owner
))
9467 /* This location was removed from the target. In
9468 non-stop mode, a race condition is possible where
9469 we've removed a breakpoint, but stop events for that
9470 breakpoint are already queued and will arrive later.
9471 We apply an heuristic to be able to distinguish such
9472 SIGTRAPs from other random SIGTRAPs: we keep this
9473 breakpoint location for a bit, and will retire it
9474 after we see some number of events. The theory here
9475 is that reporting of events should, "on the average",
9476 be fair, so after a while we'll see events from all
9477 threads that have anything of interest, and no longer
9478 need to keep this breakpoint location around. We
9479 don't hold locations forever so to reduce chances of
9480 mistaking a non-breakpoint SIGTRAP for a breakpoint
9483 The heuristic failing can be disastrous on
9484 decr_pc_after_break targets.
9486 On decr_pc_after_break targets, like e.g., x86-linux,
9487 if we fail to recognize a late breakpoint SIGTRAP,
9488 because events_till_retirement has reached 0 too
9489 soon, we'll fail to do the PC adjustment, and report
9490 a random SIGTRAP to the user. When the user resumes
9491 the inferior, it will most likely immediately crash
9492 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
9493 corrupted, because of being resumed e.g., in the
9494 middle of a multi-byte instruction, or skipped a
9495 one-byte instruction. This was actually seen happen
9496 on native x86-linux, and should be less rare on
9497 targets that do not support new thread events, like
9498 remote, due to the heuristic depending on
9501 Mistaking a random SIGTRAP for a breakpoint trap
9502 causes similar symptoms (PC adjustment applied when
9503 it shouldn't), but then again, playing with SIGTRAPs
9504 behind the debugger's back is asking for trouble.
9506 Since hardware watchpoint traps are always
9507 distinguishable from other traps, so we don't need to
9508 apply keep hardware watchpoint moribund locations
9509 around. We simply always ignore hardware watchpoint
9510 traps we can no longer explain. */
9512 old_loc
->events_till_retirement
= 3 * (thread_count () + 1);
9513 old_loc
->owner
= NULL
;
9515 VEC_safe_push (bp_location_p
, moribund_locations
, old_loc
);
9519 old_loc
->owner
= NULL
;
9520 decref_bp_location (&old_loc
);
9525 /* Rescan breakpoints at the same address and section, marking the
9526 first one as "first" and any others as "duplicates". This is so
9527 that the bpt instruction is only inserted once. If we have a
9528 permanent breakpoint at the same place as BPT, make that one the
9529 official one, and the rest as duplicates. Permanent breakpoints
9530 are sorted first for the same address.
9532 Do the same for hardware watchpoints, but also considering the
9533 watchpoint's type (regular/access/read) and length. */
9535 bp_loc_first
= NULL
;
9536 wp_loc_first
= NULL
;
9537 awp_loc_first
= NULL
;
9538 rwp_loc_first
= NULL
;
9539 ALL_BP_LOCATIONS (loc
, locp
)
9541 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
9542 struct breakpoint
*b
= loc
->owner
;
9543 struct bp_location
**loc_first_p
;
9545 if (b
->enable_state
== bp_disabled
9546 || b
->enable_state
== bp_call_disabled
9547 || b
->enable_state
== bp_startup_disabled
9549 || loc
->shlib_disabled
9550 || !breakpoint_address_is_meaningful (b
)
9551 || is_tracepoint (b
))
9554 /* Permanent breakpoint should always be inserted. */
9555 if (b
->enable_state
== bp_permanent
&& ! loc
->inserted
)
9556 internal_error (__FILE__
, __LINE__
,
9557 _("allegedly permanent breakpoint is not "
9558 "actually inserted"));
9560 if (b
->type
== bp_hardware_watchpoint
)
9561 loc_first_p
= &wp_loc_first
;
9562 else if (b
->type
== bp_read_watchpoint
)
9563 loc_first_p
= &rwp_loc_first
;
9564 else if (b
->type
== bp_access_watchpoint
)
9565 loc_first_p
= &awp_loc_first
;
9567 loc_first_p
= &bp_loc_first
;
9569 if (*loc_first_p
== NULL
9570 || (overlay_debugging
&& loc
->section
!= (*loc_first_p
)->section
)
9571 || !breakpoint_locations_match (loc
, *loc_first_p
))
9580 if ((*loc_first_p
)->owner
->enable_state
== bp_permanent
&& loc
->inserted
9581 && b
->enable_state
!= bp_permanent
)
9582 internal_error (__FILE__
, __LINE__
,
9583 _("another breakpoint was inserted on top of "
9584 "a permanent breakpoint"));
9587 if (breakpoints_always_inserted_mode () && should_insert
9588 && (have_live_inferiors ()
9589 || (gdbarch_has_global_breakpoints (target_gdbarch
))))
9590 insert_breakpoint_locations ();
9592 do_cleanups (cleanups
);
9596 breakpoint_retire_moribund (void)
9598 struct bp_location
*loc
;
9601 for (ix
= 0; VEC_iterate (bp_location_p
, moribund_locations
, ix
, loc
); ++ix
)
9602 if (--(loc
->events_till_retirement
) == 0)
9604 decref_bp_location (&loc
);
9605 VEC_unordered_remove (bp_location_p
, moribund_locations
, ix
);
9611 update_global_location_list_nothrow (int inserting
)
9613 struct gdb_exception e
;
9615 TRY_CATCH (e
, RETURN_MASK_ERROR
)
9616 update_global_location_list (inserting
);
9619 /* Clear BKP from a BPS. */
9622 bpstat_remove_bp_location (bpstat bps
, struct breakpoint
*bpt
)
9626 for (bs
= bps
; bs
; bs
= bs
->next
)
9627 if (bs
->breakpoint_at
== bpt
)
9629 bs
->breakpoint_at
= NULL
;
9631 /* bs->commands will be freed later. */
9635 /* Callback for iterate_over_threads. */
9637 bpstat_remove_breakpoint_callback (struct thread_info
*th
, void *data
)
9639 struct breakpoint
*bpt
= data
;
9641 bpstat_remove_bp_location (th
->stop_bpstat
, bpt
);
9645 /* Delete a breakpoint and clean up all traces of it in the data
9649 delete_breakpoint (struct breakpoint
*bpt
)
9651 struct breakpoint
*b
;
9653 gdb_assert (bpt
!= NULL
);
9655 /* Has this bp already been deleted? This can happen because multiple
9656 lists can hold pointers to bp's. bpstat lists are especial culprits.
9658 One example of this happening is a watchpoint's scope bp. When the
9659 scope bp triggers, we notice that the watchpoint is out of scope, and
9660 delete it. We also delete its scope bp. But the scope bp is marked
9661 "auto-deleting", and is already on a bpstat. That bpstat is then
9662 checked for auto-deleting bp's, which are deleted.
9664 A real solution to this problem might involve reference counts in bp's,
9665 and/or giving them pointers back to their referencing bpstat's, and
9666 teaching delete_breakpoint to only free a bp's storage when no more
9667 references were extent. A cheaper bandaid was chosen. */
9668 if (bpt
->type
== bp_none
)
9671 /* At least avoid this stale reference until the reference counting of
9672 breakpoints gets resolved. */
9673 if (bpt
->related_breakpoint
!= NULL
)
9675 gdb_assert (bpt
->related_breakpoint
->related_breakpoint
== bpt
);
9676 bpt
->related_breakpoint
->disposition
= disp_del_at_next_stop
;
9677 bpt
->related_breakpoint
->related_breakpoint
= NULL
;
9678 bpt
->related_breakpoint
= NULL
;
9681 observer_notify_breakpoint_deleted (bpt
->number
);
9683 if (breakpoint_chain
== bpt
)
9684 breakpoint_chain
= bpt
->next
;
9689 b
->next
= bpt
->next
;
9693 decref_counted_command_line (&bpt
->commands
);
9694 xfree (bpt
->cond_string
);
9695 xfree (bpt
->cond_exp
);
9696 xfree (bpt
->addr_string
);
9698 xfree (bpt
->exp_string
);
9699 xfree (bpt
->exp_string_reparse
);
9700 value_free (bpt
->val
);
9701 xfree (bpt
->source_file
);
9702 xfree (bpt
->exec_pathname
);
9703 clean_up_filters (&bpt
->syscalls_to_be_caught
);
9706 /* Be sure no bpstat's are pointing at the breakpoint after it's
9708 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
9709 in all threeds for now. Note that we cannot just remove bpstats
9710 pointing at bpt from the stop_bpstat list entirely, as breakpoint
9711 commands are associated with the bpstat; if we remove it here,
9712 then the later call to bpstat_do_actions (&stop_bpstat); in
9713 event-top.c won't do anything, and temporary breakpoints with
9714 commands won't work. */
9716 iterate_over_threads (bpstat_remove_breakpoint_callback
, bpt
);
9718 /* Now that breakpoint is removed from breakpoint
9719 list, update the global location list. This
9720 will remove locations that used to belong to
9721 this breakpoint. Do this before freeing
9722 the breakpoint itself, since remove_breakpoint
9723 looks at location's owner. It might be better
9724 design to have location completely self-contained,
9725 but it's not the case now. */
9726 update_global_location_list (0);
9729 /* On the chance that someone will soon try again to delete this same
9730 bp, we mark it as deleted before freeing its storage. */
9731 bpt
->type
= bp_none
;
9737 do_delete_breakpoint_cleanup (void *b
)
9739 delete_breakpoint (b
);
9743 make_cleanup_delete_breakpoint (struct breakpoint
*b
)
9745 return make_cleanup (do_delete_breakpoint_cleanup
, b
);
9748 /* A callback for map_breakpoint_numbers that calls
9749 delete_breakpoint. */
9752 do_delete_breakpoint (struct breakpoint
*b
, void *ignore
)
9754 delete_breakpoint (b
);
9758 delete_command (char *arg
, int from_tty
)
9760 struct breakpoint
*b
, *temp
;
9766 int breaks_to_delete
= 0;
9768 /* Delete all breakpoints if no argument.
9769 Do not delete internal or call-dummy breakpoints, these
9770 have to be deleted with an explicit breakpoint number argument. */
9773 if (b
->type
!= bp_call_dummy
9774 && b
->type
!= bp_std_terminate
9775 && b
->type
!= bp_shlib_event
9776 && b
->type
!= bp_jit_event
9777 && b
->type
!= bp_thread_event
9778 && b
->type
!= bp_overlay_event
9779 && b
->type
!= bp_longjmp_master
9780 && b
->type
!= bp_std_terminate_master
9783 breaks_to_delete
= 1;
9788 /* Ask user only if there are some breakpoints to delete. */
9790 || (breaks_to_delete
&& query (_("Delete all breakpoints? "))))
9792 ALL_BREAKPOINTS_SAFE (b
, temp
)
9794 if (b
->type
!= bp_call_dummy
9795 && b
->type
!= bp_std_terminate
9796 && b
->type
!= bp_shlib_event
9797 && b
->type
!= bp_thread_event
9798 && b
->type
!= bp_jit_event
9799 && b
->type
!= bp_overlay_event
9800 && b
->type
!= bp_longjmp_master
9801 && b
->type
!= bp_std_terminate_master
9803 delete_breakpoint (b
);
9808 map_breakpoint_numbers (arg
, do_delete_breakpoint
, NULL
);
9812 all_locations_are_pending (struct bp_location
*loc
)
9814 for (; loc
; loc
= loc
->next
)
9815 if (!loc
->shlib_disabled
)
9820 /* Subroutine of update_breakpoint_locations to simplify it.
9821 Return non-zero if multiple fns in list LOC have the same name.
9822 Null names are ignored. */
9825 ambiguous_names_p (struct bp_location
*loc
)
9827 struct bp_location
*l
;
9828 htab_t htab
= htab_create_alloc (13, htab_hash_string
,
9829 (int (*) (const void *,
9830 const void *)) streq
,
9831 NULL
, xcalloc
, xfree
);
9833 for (l
= loc
; l
!= NULL
; l
= l
->next
)
9836 const char *name
= l
->function_name
;
9838 /* Allow for some names to be NULL, ignore them. */
9842 slot
= (const char **) htab_find_slot (htab
, (const void *) name
,
9844 /* NOTE: We can assume slot != NULL here because xcalloc never returns
9858 /* When symbols change, it probably means the sources changed as well,
9859 and it might mean the static tracepoint markers are no longer at
9860 the same address or line numbers they used to be at last we
9861 checked. Losing your static tracepoints whenever you rebuild is
9862 undesirable. This function tries to resync/rematch gdb static
9863 tracepoints with the markers on the target, for static tracepoints
9864 that have not been set by marker id. Static tracepoint that have
9865 been set by marker id are reset by marker id in breakpoint_re_set.
9868 1) For a tracepoint set at a specific address, look for a marker at
9869 the old PC. If one is found there, assume to be the same marker.
9870 If the name / string id of the marker found is different from the
9871 previous known name, assume that means the user renamed the marker
9872 in the sources, and output a warning.
9874 2) For a tracepoint set at a given line number, look for a marker
9875 at the new address of the old line number. If one is found there,
9876 assume to be the same marker. If the name / string id of the
9877 marker found is different from the previous known name, assume that
9878 means the user renamed the marker in the sources, and output a
9881 3) If a marker is no longer found at the same address or line, it
9882 may mean the marker no longer exists. But it may also just mean
9883 the code changed a bit. Maybe the user added a few lines of code
9884 that made the marker move up or down (in line number terms). Ask
9885 the target for info about the marker with the string id as we knew
9886 it. If found, update line number and address in the matching
9887 static tracepoint. This will get confused if there's more than one
9888 marker with the same ID (possible in UST, although unadvised
9889 precisely because it confuses tools). */
9891 static struct symtab_and_line
9892 update_static_tracepoint (struct breakpoint
*b
, struct symtab_and_line sal
)
9894 struct static_tracepoint_marker marker
;
9900 find_line_pc (sal
.symtab
, sal
.line
, &pc
);
9902 if (target_static_tracepoint_marker_at (pc
, &marker
))
9904 if (strcmp (b
->static_trace_marker_id
, marker
.str_id
) != 0)
9905 warning (_("static tracepoint %d changed probed marker from %s to %s"),
9907 b
->static_trace_marker_id
, marker
.str_id
);
9909 xfree (b
->static_trace_marker_id
);
9910 b
->static_trace_marker_id
= xstrdup (marker
.str_id
);
9911 release_static_tracepoint_marker (&marker
);
9916 /* Old marker wasn't found on target at lineno. Try looking it up
9918 if (!sal
.explicit_pc
9920 && sal
.symtab
!= NULL
9921 && b
->static_trace_marker_id
!= NULL
)
9923 VEC(static_tracepoint_marker_p
) *markers
;
9926 = target_static_tracepoint_markers_by_strid (b
->static_trace_marker_id
);
9928 if (!VEC_empty(static_tracepoint_marker_p
, markers
))
9930 struct symtab_and_line sal
;
9932 struct static_tracepoint_marker
*marker
;
9934 marker
= VEC_index (static_tracepoint_marker_p
, markers
, 0);
9936 xfree (b
->static_trace_marker_id
);
9937 b
->static_trace_marker_id
= xstrdup (marker
->str_id
);
9939 warning (_("marker for static tracepoint %d (%s) not "
9940 "found at previous line number"),
9941 b
->number
, b
->static_trace_marker_id
);
9945 sal
.pc
= marker
->address
;
9947 sal
= find_pc_line (marker
->address
, 0);
9948 sym
= find_pc_sect_function (marker
->address
, NULL
);
9949 ui_out_text (uiout
, "Now in ");
9952 ui_out_field_string (uiout
, "func",
9953 SYMBOL_PRINT_NAME (sym
));
9954 ui_out_text (uiout
, " at ");
9956 ui_out_field_string (uiout
, "file", sal
.symtab
->filename
);
9957 ui_out_text (uiout
, ":");
9959 if (ui_out_is_mi_like_p (uiout
))
9961 char *fullname
= symtab_to_fullname (sal
.symtab
);
9964 ui_out_field_string (uiout
, "fullname", fullname
);
9967 ui_out_field_int (uiout
, "line", sal
.line
);
9968 ui_out_text (uiout
, "\n");
9970 b
->line_number
= sal
.line
;
9972 xfree (b
->source_file
);
9974 b
->source_file
= xstrdup (sal
.symtab
->filename
);
9976 b
->source_file
= NULL
;
9978 xfree (b
->addr_string
);
9979 b
->addr_string
= xstrprintf ("%s:%d",
9980 sal
.symtab
->filename
, b
->line_number
);
9982 /* Might be nice to check if function changed, and warn if
9985 release_static_tracepoint_marker (marker
);
9992 update_breakpoint_locations (struct breakpoint
*b
,
9993 struct symtabs_and_lines sals
)
9997 struct bp_location
*existing_locations
= b
->loc
;
9999 /* If there's no new locations, and all existing locations
10000 are pending, don't do anything. This optimizes
10001 the common case where all locations are in the same
10002 shared library, that was unloaded. We'd like to
10003 retain the location, so that when the library
10004 is loaded again, we don't loose the enabled/disabled
10005 status of the individual locations. */
10006 if (all_locations_are_pending (existing_locations
) && sals
.nelts
== 0)
10011 for (i
= 0; i
< sals
.nelts
; ++i
)
10013 struct bp_location
*new_loc
=
10014 add_location_to_breakpoint (b
, &(sals
.sals
[i
]));
10016 /* Reparse conditions, they might contain references to the
10018 if (b
->cond_string
!= NULL
)
10020 struct gdb_exception e
;
10022 s
= b
->cond_string
;
10023 TRY_CATCH (e
, RETURN_MASK_ERROR
)
10025 new_loc
->cond
= parse_exp_1 (&s
, block_for_pc (sals
.sals
[i
].pc
),
10030 warning (_("failed to reevaluate condition for breakpoint %d: %s"),
10031 b
->number
, e
.message
);
10032 new_loc
->enabled
= 0;
10036 if (b
->source_file
!= NULL
)
10037 xfree (b
->source_file
);
10038 if (sals
.sals
[i
].symtab
== NULL
)
10039 b
->source_file
= NULL
;
10041 b
->source_file
= xstrdup (sals
.sals
[i
].symtab
->filename
);
10043 if (b
->line_number
== 0)
10044 b
->line_number
= sals
.sals
[i
].line
;
10047 /* Update locations of permanent breakpoints. */
10048 if (b
->enable_state
== bp_permanent
)
10049 make_breakpoint_permanent (b
);
10051 /* If possible, carry over 'disable' status from existing breakpoints. */
10053 struct bp_location
*e
= existing_locations
;
10054 /* If there are multiple breakpoints with the same function name,
10055 e.g. for inline functions, comparing function names won't work.
10056 Instead compare pc addresses; this is just a heuristic as things
10057 may have moved, but in practice it gives the correct answer
10058 often enough until a better solution is found. */
10059 int have_ambiguous_names
= ambiguous_names_p (b
->loc
);
10061 for (; e
; e
= e
->next
)
10063 if (!e
->enabled
&& e
->function_name
)
10065 struct bp_location
*l
= b
->loc
;
10066 if (have_ambiguous_names
)
10068 for (; l
; l
= l
->next
)
10069 if (breakpoint_address_match (e
->pspace
->aspace
, e
->address
,
10070 l
->pspace
->aspace
, l
->address
))
10078 for (; l
; l
= l
->next
)
10079 if (l
->function_name
10080 && strcmp (e
->function_name
, l
->function_name
) == 0)
10090 update_global_location_list (1);
10093 /* Reset a breakpoint given it's struct breakpoint * BINT.
10094 The value we return ends up being the return value from catch_errors.
10095 Unused in this case. */
10098 breakpoint_re_set_one (void *bint
)
10100 /* get past catch_errs */
10101 struct breakpoint
*b
= (struct breakpoint
*) bint
;
10103 int *not_found_ptr
= ¬_found
;
10104 struct symtabs_and_lines sals
= {0};
10105 struct symtabs_and_lines expanded
= {0};
10107 struct gdb_exception e
;
10108 struct cleanup
*cleanups
= make_cleanup (null_cleanup
, NULL
);
10109 int marker_spec
= 0;
10114 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
10117 case bp_breakpoint
:
10118 case bp_hardware_breakpoint
:
10119 case bp_tracepoint
:
10120 case bp_fast_tracepoint
:
10121 case bp_static_tracepoint
:
10122 /* Do not attempt to re-set breakpoints disabled during startup. */
10123 if (b
->enable_state
== bp_startup_disabled
)
10126 if (b
->addr_string
== NULL
)
10128 /* Anything without a string can't be re-set. */
10129 delete_breakpoint (b
);
10133 input_radix
= b
->input_radix
;
10134 s
= b
->addr_string
;
10136 save_current_space_and_thread ();
10137 switch_to_program_space_and_thread (b
->pspace
);
10139 marker_spec
= b
->type
== bp_static_tracepoint
&& is_marker_spec (s
);
10141 set_language (b
->language
);
10142 TRY_CATCH (e
, RETURN_MASK_ERROR
)
10146 sals
= decode_static_tracepoint_spec (&s
);
10147 if (sals
.nelts
> b
->static_trace_marker_id_idx
)
10149 sals
.sals
[0] = sals
.sals
[b
->static_trace_marker_id_idx
];
10153 error (_("marker %s not found"), b
->static_trace_marker_id
);
10156 sals
= decode_line_1 (&s
, 1, (struct symtab
*) NULL
, 0, (char ***) NULL
,
10161 int not_found_and_ok
= 0;
10162 /* For pending breakpoints, it's expected that parsing
10163 will fail until the right shared library is loaded.
10164 User has already told to create pending breakpoints and
10165 don't need extra messages. If breakpoint is in bp_shlib_disabled
10166 state, then user already saw the message about that breakpoint
10167 being disabled, and don't want to see more errors. */
10169 && (b
->condition_not_parsed
10170 || (b
->loc
&& b
->loc
->shlib_disabled
)
10171 || b
->enable_state
== bp_disabled
))
10172 not_found_and_ok
= 1;
10174 if (!not_found_and_ok
)
10176 /* We surely don't want to warn about the same breakpoint
10177 10 times. One solution, implemented here, is disable
10178 the breakpoint on error. Another solution would be to
10179 have separate 'warning emitted' flag. Since this
10180 happens only when a binary has changed, I don't know
10181 which approach is better. */
10182 b
->enable_state
= bp_disabled
;
10183 throw_exception (e
);
10189 gdb_assert (sals
.nelts
== 1);
10191 resolve_sal_pc (&sals
.sals
[0]);
10192 if (b
->condition_not_parsed
&& s
&& s
[0])
10194 char *cond_string
= 0;
10198 find_condition_and_thread (s
, sals
.sals
[0].pc
,
10199 &cond_string
, &thread
, &task
);
10201 b
->cond_string
= cond_string
;
10202 b
->thread
= thread
;
10204 b
->condition_not_parsed
= 0;
10207 if (b
->type
== bp_static_tracepoint
&& !marker_spec
)
10208 sals
.sals
[0] = update_static_tracepoint (b
, sals
.sals
[0]);
10210 expanded
= expand_line_sal_maybe (sals
.sals
[0]);
10213 make_cleanup (xfree
, sals
.sals
);
10214 update_breakpoint_locations (b
, expanded
);
10217 case bp_watchpoint
:
10218 case bp_hardware_watchpoint
:
10219 case bp_read_watchpoint
:
10220 case bp_access_watchpoint
:
10221 /* Watchpoint can be either on expression using entirely global variables,
10222 or it can be on local variables.
10224 Watchpoints of the first kind are never auto-deleted, and even persist
10225 across program restarts. Since they can use variables from shared
10226 libraries, we need to reparse expression as libraries are loaded
10229 Watchpoints on local variables can also change meaning as result
10230 of solib event. For example, if a watchpoint uses both a local and
10231 a global variables in expression, it's a local watchpoint, but
10232 unloading of a shared library will make the expression invalid.
10233 This is not a very common use case, but we still re-evaluate
10234 expression, to avoid surprises to the user.
10236 Note that for local watchpoints, we re-evaluate it only if
10237 watchpoints frame id is still valid. If it's not, it means
10238 the watchpoint is out of scope and will be deleted soon. In fact,
10239 I'm not sure we'll ever be called in this case.
10241 If a local watchpoint's frame id is still valid, then
10242 b->exp_valid_block is likewise valid, and we can safely use it.
10244 Don't do anything about disabled watchpoints, since they will
10245 be reevaluated again when enabled. */
10246 update_watchpoint (b
, 1 /* reparse */);
10248 /* We needn't really do anything to reset these, since the mask
10249 that requests them is unaffected by e.g., new libraries being
10251 case bp_catchpoint
:
10255 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b
->type
);
10257 /* Delete overlay event and longjmp master breakpoints; they will be
10258 reset later by breakpoint_re_set. */
10259 case bp_overlay_event
:
10260 case bp_longjmp_master
:
10261 case bp_std_terminate_master
:
10262 delete_breakpoint (b
);
10265 /* This breakpoint is special, it's set up when the inferior
10266 starts and we really don't want to touch it. */
10267 case bp_shlib_event
:
10269 /* Like bp_shlib_event, this breakpoint type is special.
10270 Once it is set up, we do not want to touch it. */
10271 case bp_thread_event
:
10273 /* Keep temporary breakpoints, which can be encountered when we step
10274 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
10275 Otherwise these should have been blown away via the cleanup chain
10276 or by breakpoint_init_inferior when we rerun the executable. */
10279 case bp_watchpoint_scope
:
10280 case bp_call_dummy
:
10281 case bp_std_terminate
:
10282 case bp_step_resume
:
10284 case bp_longjmp_resume
:
10289 do_cleanups (cleanups
);
10293 /* Re-set all breakpoints after symbols have been re-loaded. */
10295 breakpoint_re_set (void)
10297 struct breakpoint
*b
, *temp
;
10298 enum language save_language
;
10299 int save_input_radix
;
10300 struct cleanup
*old_chain
;
10302 save_language
= current_language
->la_language
;
10303 save_input_radix
= input_radix
;
10304 old_chain
= save_current_program_space ();
10306 ALL_BREAKPOINTS_SAFE (b
, temp
)
10308 /* Format possible error msg */
10309 char *message
= xstrprintf ("Error in re-setting breakpoint %d: ",
10311 struct cleanup
*cleanups
= make_cleanup (xfree
, message
);
10312 catch_errors (breakpoint_re_set_one
, b
, message
, RETURN_MASK_ALL
);
10313 do_cleanups (cleanups
);
10315 set_language (save_language
);
10316 input_radix
= save_input_radix
;
10318 jit_breakpoint_re_set ();
10320 do_cleanups (old_chain
);
10322 create_overlay_event_breakpoint ("_ovly_debug_event");
10323 create_longjmp_master_breakpoint ("longjmp");
10324 create_longjmp_master_breakpoint ("_longjmp");
10325 create_longjmp_master_breakpoint ("siglongjmp");
10326 create_longjmp_master_breakpoint ("_siglongjmp");
10327 create_std_terminate_master_breakpoint ("std::terminate()");
10330 /* Reset the thread number of this breakpoint:
10332 - If the breakpoint is for all threads, leave it as-is.
10333 - Else, reset it to the current thread for inferior_ptid. */
10335 breakpoint_re_set_thread (struct breakpoint
*b
)
10337 if (b
->thread
!= -1)
10339 if (in_thread_list (inferior_ptid
))
10340 b
->thread
= pid_to_thread_id (inferior_ptid
);
10342 /* We're being called after following a fork. The new fork is
10343 selected as current, and unless this was a vfork will have a
10344 different program space from the original thread. Reset that
10346 b
->loc
->pspace
= current_program_space
;
10350 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
10351 If from_tty is nonzero, it prints a message to that effect,
10352 which ends with a period (no newline). */
10355 set_ignore_count (int bptnum
, int count
, int from_tty
)
10357 struct breakpoint
*b
;
10362 ALL_BREAKPOINTS (b
)
10363 if (b
->number
== bptnum
)
10365 if (is_tracepoint (b
))
10367 if (from_tty
&& count
!= 0)
10368 printf_filtered (_("Ignore count ignored for tracepoint %d."),
10373 b
->ignore_count
= count
;
10377 printf_filtered (_("Will stop next time breakpoint %d is reached."),
10379 else if (count
== 1)
10380 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
10383 printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
10386 breakpoints_changed ();
10387 observer_notify_breakpoint_modified (b
->number
);
10391 error (_("No breakpoint number %d."), bptnum
);
10395 make_breakpoint_silent (struct breakpoint
*b
)
10397 /* Silence the breakpoint. */
10401 /* Command to set ignore-count of breakpoint N to COUNT. */
10404 ignore_command (char *args
, int from_tty
)
10410 error_no_arg (_("a breakpoint number"));
10412 num
= get_number (&p
);
10414 error (_("bad breakpoint number: '%s'"), args
);
10416 error (_("Second argument (specified ignore-count) is missing."));
10418 set_ignore_count (num
,
10419 longest_to_int (value_as_long (parse_and_eval (p
))),
10422 printf_filtered ("\n");
10425 /* Call FUNCTION on each of the breakpoints
10426 whose numbers are given in ARGS. */
10429 map_breakpoint_numbers (char *args
, void (*function
) (struct breakpoint
*,
10436 struct breakpoint
*b
, *tmp
;
10440 error_no_arg (_("one or more breakpoint numbers"));
10447 num
= get_number_or_range (&p1
);
10450 warning (_("bad breakpoint number at or near '%s'"), p
);
10454 ALL_BREAKPOINTS_SAFE (b
, tmp
)
10455 if (b
->number
== num
)
10457 struct breakpoint
*related_breakpoint
= b
->related_breakpoint
;
10459 function (b
, data
);
10460 if (related_breakpoint
)
10461 function (related_breakpoint
, data
);
10465 printf_unfiltered (_("No breakpoint number %d.\n"), num
);
10471 static struct bp_location
*
10472 find_location_by_number (char *number
)
10474 char *dot
= strchr (number
, '.');
10478 struct breakpoint
*b
;
10479 struct bp_location
*loc
;
10484 bp_num
= get_number_or_range (&p1
);
10486 error (_("Bad breakpoint number '%s'"), number
);
10488 ALL_BREAKPOINTS (b
)
10489 if (b
->number
== bp_num
)
10494 if (!b
|| b
->number
!= bp_num
)
10495 error (_("Bad breakpoint number '%s'"), number
);
10498 loc_num
= get_number_or_range (&p1
);
10500 error (_("Bad breakpoint location number '%s'"), number
);
10504 for (;loc_num
&& loc
; --loc_num
, loc
= loc
->next
)
10507 error (_("Bad breakpoint location number '%s'"), dot
+1);
10513 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
10514 If from_tty is nonzero, it prints a message to that effect,
10515 which ends with a period (no newline). */
10518 disable_breakpoint (struct breakpoint
*bpt
)
10520 /* Never disable a watchpoint scope breakpoint; we want to
10521 hit them when we leave scope so we can delete both the
10522 watchpoint and its scope breakpoint at that time. */
10523 if (bpt
->type
== bp_watchpoint_scope
)
10526 /* You can't disable permanent breakpoints. */
10527 if (bpt
->enable_state
== bp_permanent
)
10530 bpt
->enable_state
= bp_disabled
;
10532 update_global_location_list (0);
10534 observer_notify_breakpoint_modified (bpt
->number
);
10537 /* A callback for map_breakpoint_numbers that calls
10538 disable_breakpoint. */
10541 do_map_disable_breakpoint (struct breakpoint
*b
, void *ignore
)
10543 disable_breakpoint (b
);
10547 disable_command (char *args
, int from_tty
)
10549 struct breakpoint
*bpt
;
10552 ALL_BREAKPOINTS (bpt
)
10556 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
10559 case bp_breakpoint
:
10560 case bp_tracepoint
:
10561 case bp_fast_tracepoint
:
10562 case bp_static_tracepoint
:
10563 case bp_catchpoint
:
10564 case bp_hardware_breakpoint
:
10565 case bp_watchpoint
:
10566 case bp_hardware_watchpoint
:
10567 case bp_read_watchpoint
:
10568 case bp_access_watchpoint
:
10569 disable_breakpoint (bpt
);
10573 else if (strchr (args
, '.'))
10575 struct bp_location
*loc
= find_location_by_number (args
);
10578 update_global_location_list (0);
10581 map_breakpoint_numbers (args
, do_map_disable_breakpoint
, NULL
);
10585 do_enable_breakpoint (struct breakpoint
*bpt
, enum bpdisp disposition
)
10587 int target_resources_ok
;
10589 if (bpt
->type
== bp_hardware_breakpoint
)
10592 i
= hw_breakpoint_used_count ();
10593 target_resources_ok
=
10594 target_can_use_hardware_watchpoint (bp_hardware_breakpoint
,
10596 if (target_resources_ok
== 0)
10597 error (_("No hardware breakpoint support in the target."));
10598 else if (target_resources_ok
< 0)
10599 error (_("Hardware breakpoints used exceeds limit."));
10602 if (is_watchpoint (bpt
))
10604 struct gdb_exception e
;
10606 TRY_CATCH (e
, RETURN_MASK_ALL
)
10608 update_watchpoint (bpt
, 1 /* reparse */);
10612 exception_fprintf (gdb_stderr
, e
, _("Cannot enable watchpoint %d: "),
10618 if (bpt
->enable_state
!= bp_permanent
)
10619 bpt
->enable_state
= bp_enabled
;
10620 bpt
->disposition
= disposition
;
10621 update_global_location_list (1);
10622 breakpoints_changed ();
10624 observer_notify_breakpoint_modified (bpt
->number
);
10629 enable_breakpoint (struct breakpoint
*bpt
)
10631 do_enable_breakpoint (bpt
, bpt
->disposition
);
10634 /* A callback for map_breakpoint_numbers that calls
10635 enable_breakpoint. */
10638 do_map_enable_breakpoint (struct breakpoint
*b
, void *ignore
)
10640 enable_breakpoint (b
);
10643 /* The enable command enables the specified breakpoints (or all defined
10644 breakpoints) so they once again become (or continue to be) effective
10645 in stopping the inferior. */
10648 enable_command (char *args
, int from_tty
)
10650 struct breakpoint
*bpt
;
10653 ALL_BREAKPOINTS (bpt
)
10657 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
10660 case bp_breakpoint
:
10661 case bp_tracepoint
:
10662 case bp_fast_tracepoint
:
10663 case bp_static_tracepoint
:
10664 case bp_catchpoint
:
10665 case bp_hardware_breakpoint
:
10666 case bp_watchpoint
:
10667 case bp_hardware_watchpoint
:
10668 case bp_read_watchpoint
:
10669 case bp_access_watchpoint
:
10670 enable_breakpoint (bpt
);
10674 else if (strchr (args
, '.'))
10676 struct bp_location
*loc
= find_location_by_number (args
);
10679 update_global_location_list (1);
10682 map_breakpoint_numbers (args
, do_map_enable_breakpoint
, NULL
);
10686 enable_once_breakpoint (struct breakpoint
*bpt
, void *ignore
)
10688 do_enable_breakpoint (bpt
, disp_disable
);
10692 enable_once_command (char *args
, int from_tty
)
10694 map_breakpoint_numbers (args
, enable_once_breakpoint
, NULL
);
10698 enable_delete_breakpoint (struct breakpoint
*bpt
, void *ignore
)
10700 do_enable_breakpoint (bpt
, disp_del
);
10704 enable_delete_command (char *args
, int from_tty
)
10706 map_breakpoint_numbers (args
, enable_delete_breakpoint
, NULL
);
10710 set_breakpoint_cmd (char *args
, int from_tty
)
10715 show_breakpoint_cmd (char *args
, int from_tty
)
10719 /* Invalidate last known value of any hardware watchpoint if
10720 the memory which that value represents has been written to by
10724 invalidate_bp_value_on_memory_change (CORE_ADDR addr
, int len
,
10725 const bfd_byte
*data
)
10727 struct breakpoint
*bp
;
10729 ALL_BREAKPOINTS (bp
)
10730 if (bp
->enable_state
== bp_enabled
10731 && bp
->type
== bp_hardware_watchpoint
10732 && bp
->val_valid
&& bp
->val
)
10734 struct bp_location
*loc
;
10736 for (loc
= bp
->loc
; loc
!= NULL
; loc
= loc
->next
)
10737 if (loc
->loc_type
== bp_loc_hardware_watchpoint
10738 && loc
->address
+ loc
->length
> addr
10739 && addr
+ len
> loc
->address
)
10741 value_free (bp
->val
);
10748 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
10750 struct symtabs_and_lines
10751 decode_line_spec_1 (char *string
, int funfirstline
)
10753 struct symtabs_and_lines sals
;
10756 error (_("Empty line specification."));
10757 if (default_breakpoint_valid
)
10758 sals
= decode_line_1 (&string
, funfirstline
,
10759 default_breakpoint_symtab
,
10760 default_breakpoint_line
,
10761 (char ***) NULL
, NULL
);
10763 sals
= decode_line_1 (&string
, funfirstline
,
10764 (struct symtab
*) NULL
, 0, (char ***) NULL
, NULL
);
10766 error (_("Junk at end of line specification: %s"), string
);
10770 /* Create and insert a raw software breakpoint at PC. Return an
10771 identifier, which should be used to remove the breakpoint later.
10772 In general, places which call this should be using something on the
10773 breakpoint chain instead; this function should be eliminated
10777 deprecated_insert_raw_breakpoint (struct gdbarch
*gdbarch
,
10778 struct address_space
*aspace
, CORE_ADDR pc
)
10780 struct bp_target_info
*bp_tgt
;
10782 bp_tgt
= XZALLOC (struct bp_target_info
);
10784 bp_tgt
->placed_address_space
= aspace
;
10785 bp_tgt
->placed_address
= pc
;
10787 if (target_insert_breakpoint (gdbarch
, bp_tgt
) != 0)
10789 /* Could not insert the breakpoint. */
10797 /* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint. */
10800 deprecated_remove_raw_breakpoint (struct gdbarch
*gdbarch
, void *bp
)
10802 struct bp_target_info
*bp_tgt
= bp
;
10805 ret
= target_remove_breakpoint (gdbarch
, bp_tgt
);
10811 /* One (or perhaps two) breakpoints used for software single stepping. */
10813 static void *single_step_breakpoints
[2];
10814 static struct gdbarch
*single_step_gdbarch
[2];
10816 /* Create and insert a breakpoint for software single step. */
10819 insert_single_step_breakpoint (struct gdbarch
*gdbarch
,
10820 struct address_space
*aspace
, CORE_ADDR next_pc
)
10824 if (single_step_breakpoints
[0] == NULL
)
10826 bpt_p
= &single_step_breakpoints
[0];
10827 single_step_gdbarch
[0] = gdbarch
;
10831 gdb_assert (single_step_breakpoints
[1] == NULL
);
10832 bpt_p
= &single_step_breakpoints
[1];
10833 single_step_gdbarch
[1] = gdbarch
;
10836 /* NOTE drow/2006-04-11: A future improvement to this function would be
10837 to only create the breakpoints once, and actually put them on the
10838 breakpoint chain. That would let us use set_raw_breakpoint. We could
10839 adjust the addresses each time they were needed. Doing this requires
10840 corresponding changes elsewhere where single step breakpoints are
10841 handled, however. So, for now, we use this. */
10843 *bpt_p
= deprecated_insert_raw_breakpoint (gdbarch
, aspace
, next_pc
);
10844 if (*bpt_p
== NULL
)
10845 error (_("Could not insert single-step breakpoint at %s"),
10846 paddress (gdbarch
, next_pc
));
10849 /* Check if the breakpoints used for software single stepping
10850 were inserted or not. */
10853 single_step_breakpoints_inserted (void)
10855 return (single_step_breakpoints
[0] != NULL
10856 || single_step_breakpoints
[1] != NULL
);
10859 /* Remove and delete any breakpoints used for software single step. */
10862 remove_single_step_breakpoints (void)
10864 gdb_assert (single_step_breakpoints
[0] != NULL
);
10866 /* See insert_single_step_breakpoint for more about this deprecated
10868 deprecated_remove_raw_breakpoint (single_step_gdbarch
[0],
10869 single_step_breakpoints
[0]);
10870 single_step_gdbarch
[0] = NULL
;
10871 single_step_breakpoints
[0] = NULL
;
10873 if (single_step_breakpoints
[1] != NULL
)
10875 deprecated_remove_raw_breakpoint (single_step_gdbarch
[1],
10876 single_step_breakpoints
[1]);
10877 single_step_gdbarch
[1] = NULL
;
10878 single_step_breakpoints
[1] = NULL
;
10882 /* Delete software single step breakpoints without removing them from
10883 the inferior. This is intended to be used if the inferior's address
10884 space where they were inserted is already gone, e.g. after exit or
10888 cancel_single_step_breakpoints (void)
10892 for (i
= 0; i
< 2; i
++)
10893 if (single_step_breakpoints
[i
])
10895 xfree (single_step_breakpoints
[i
]);
10896 single_step_breakpoints
[i
] = NULL
;
10897 single_step_gdbarch
[i
] = NULL
;
10901 /* Detach software single-step breakpoints from INFERIOR_PTID without
10905 detach_single_step_breakpoints (void)
10909 for (i
= 0; i
< 2; i
++)
10910 if (single_step_breakpoints
[i
])
10911 target_remove_breakpoint (single_step_gdbarch
[i
],
10912 single_step_breakpoints
[i
]);
10915 /* Check whether a software single-step breakpoint is inserted at PC. */
10918 single_step_breakpoint_inserted_here_p (struct address_space
*aspace
,
10923 for (i
= 0; i
< 2; i
++)
10925 struct bp_target_info
*bp_tgt
= single_step_breakpoints
[i
];
10927 && breakpoint_address_match (bp_tgt
->placed_address_space
,
10928 bp_tgt
->placed_address
,
10936 /* Returns 0 if 'bp' is NOT a syscall catchpoint,
10937 non-zero otherwise. */
10939 is_syscall_catchpoint_enabled (struct breakpoint
*bp
)
10941 if (syscall_catchpoint_p (bp
)
10942 && bp
->enable_state
!= bp_disabled
10943 && bp
->enable_state
!= bp_call_disabled
)
10950 catch_syscall_enabled (void)
10952 struct inferior
*inf
= current_inferior ();
10954 return inf
->total_syscalls_count
!= 0;
10958 catching_syscall_number (int syscall_number
)
10960 struct breakpoint
*bp
;
10962 ALL_BREAKPOINTS (bp
)
10963 if (is_syscall_catchpoint_enabled (bp
))
10965 if (bp
->syscalls_to_be_caught
)
10969 VEC_iterate (int, bp
->syscalls_to_be_caught
, i
, iter
);
10971 if (syscall_number
== iter
)
10981 /* Complete syscall names. Used by "catch syscall". */
10983 catch_syscall_completer (struct cmd_list_element
*cmd
,
10984 char *text
, char *word
)
10986 const char **list
= get_syscall_names ();
10988 return (list
== NULL
) ? NULL
: complete_on_enum (list
, text
, word
);
10991 /* Tracepoint-specific operations. */
10993 /* Set tracepoint count to NUM. */
10995 set_tracepoint_count (int num
)
10997 tracepoint_count
= num
;
10998 set_internalvar_integer (lookup_internalvar ("tpnum"), num
);
11002 trace_command (char *arg
, int from_tty
)
11004 if (create_breakpoint (get_current_arch (),
11006 NULL
, 0, 1 /* parse arg */,
11008 bp_tracepoint
/* type_wanted */,
11009 0 /* Ignore count */,
11010 pending_break_support
,
11014 set_tracepoint_count (breakpoint_count
);
11018 ftrace_command (char *arg
, int from_tty
)
11020 if (create_breakpoint (get_current_arch (),
11022 NULL
, 0, 1 /* parse arg */,
11024 bp_fast_tracepoint
/* type_wanted */,
11025 0 /* Ignore count */,
11026 pending_break_support
,
11030 set_tracepoint_count (breakpoint_count
);
11033 /* strace command implementation. Creates a static tracepoint. */
11036 strace_command (char *arg
, int from_tty
)
11038 if (create_breakpoint (get_current_arch (),
11040 NULL
, 0, 1 /* parse arg */,
11042 bp_static_tracepoint
/* type_wanted */,
11043 0 /* Ignore count */,
11044 pending_break_support
,
11048 set_tracepoint_count (breakpoint_count
);
11051 /* Set up a fake reader function that gets command lines from a linked
11052 list that was acquired during tracepoint uploading. */
11054 static struct uploaded_tp
*this_utp
;
11055 static int next_cmd
;
11058 read_uploaded_action (void)
11062 VEC_iterate (char_ptr
, this_utp
->cmd_strings
, next_cmd
, rslt
);
11069 /* Given information about a tracepoint as recorded on a target (which
11070 can be either a live system or a trace file), attempt to create an
11071 equivalent GDB tracepoint. This is not a reliable process, since
11072 the target does not necessarily have all the information used when
11073 the tracepoint was originally defined. */
11075 struct breakpoint
*
11076 create_tracepoint_from_upload (struct uploaded_tp
*utp
)
11078 char *addr_str
, small_buf
[100];
11079 struct breakpoint
*tp
;
11081 if (utp
->at_string
)
11082 addr_str
= utp
->at_string
;
11085 /* In the absence of a source location, fall back to raw
11086 address. Since there is no way to confirm that the address
11087 means the same thing as when the trace was started, warn the
11089 warning (_("Uploaded tracepoint %d has no source location, using raw address"),
11091 sprintf (small_buf
, "*%s", hex_string (utp
->addr
));
11092 addr_str
= small_buf
;
11095 /* There's not much we can do with a sequence of bytecodes. */
11096 if (utp
->cond
&& !utp
->cond_string
)
11097 warning (_("Uploaded tracepoint %d condition has no source form, ignoring it"),
11100 if (!create_breakpoint (get_current_arch (),
11102 utp
->cond_string
, -1, 0 /* parse cond/thread */,
11104 utp
->type
/* type_wanted */,
11105 0 /* Ignore count */,
11106 pending_break_support
,
11109 utp
->enabled
/* enabled */))
11112 set_tracepoint_count (breakpoint_count
);
11114 /* Get the tracepoint we just created. */
11115 tp
= get_tracepoint (tracepoint_count
);
11116 gdb_assert (tp
!= NULL
);
11120 sprintf (small_buf
, "%d %d", utp
->pass
, tp
->number
);
11122 trace_pass_command (small_buf
, 0);
11125 /* If we have uploaded versions of the original commands, set up a
11126 special-purpose "reader" function and call the usual command line
11127 reader, then pass the result to the breakpoint command-setting
11129 if (!VEC_empty (char_ptr
, utp
->cmd_strings
))
11131 struct command_line
*cmd_list
;
11136 cmd_list
= read_command_lines_1 (read_uploaded_action
, 1, NULL
, NULL
);
11138 breakpoint_set_commands (tp
, cmd_list
);
11140 else if (!VEC_empty (char_ptr
, utp
->actions
)
11141 || !VEC_empty (char_ptr
, utp
->step_actions
))
11142 warning (_("Uploaded tracepoint %d actions have no source form, ignoring them"),
11148 /* Print information on tracepoint number TPNUM_EXP, or all if
11152 tracepoints_info (char *tpnum_exp
, int from_tty
)
11154 int tpnum
= -1, num_printed
;
11157 tpnum
= parse_and_eval_long (tpnum_exp
);
11159 num_printed
= breakpoint_1 (tpnum
, 0, is_tracepoint
);
11161 if (num_printed
== 0)
11164 ui_out_message (uiout
, 0, "No tracepoints.\n");
11166 ui_out_message (uiout
, 0, "No tracepoint number %d.\n", tpnum
);
11169 default_collect_info ();
11172 /* The 'enable trace' command enables tracepoints.
11173 Not supported by all targets. */
11175 enable_trace_command (char *args
, int from_tty
)
11177 enable_command (args
, from_tty
);
11180 /* The 'disable trace' command disables tracepoints.
11181 Not supported by all targets. */
11183 disable_trace_command (char *args
, int from_tty
)
11185 disable_command (args
, from_tty
);
11188 /* Remove a tracepoint (or all if no argument) */
11190 delete_trace_command (char *arg
, int from_tty
)
11192 struct breakpoint
*b
, *temp
;
11198 int breaks_to_delete
= 0;
11200 /* Delete all breakpoints if no argument.
11201 Do not delete internal or call-dummy breakpoints, these
11202 have to be deleted with an explicit breakpoint number argument. */
11203 ALL_TRACEPOINTS (b
)
11205 if (b
->number
>= 0)
11207 breaks_to_delete
= 1;
11212 /* Ask user only if there are some breakpoints to delete. */
11214 || (breaks_to_delete
&& query (_("Delete all tracepoints? "))))
11216 ALL_BREAKPOINTS_SAFE (b
, temp
)
11218 if (is_tracepoint (b
)
11220 delete_breakpoint (b
);
11225 map_breakpoint_numbers (arg
, do_delete_breakpoint
, NULL
);
11228 /* Set passcount for tracepoint.
11230 First command argument is passcount, second is tracepoint number.
11231 If tracepoint number omitted, apply to most recently defined.
11232 Also accepts special argument "all". */
11235 trace_pass_command (char *args
, int from_tty
)
11237 struct breakpoint
*t1
= (struct breakpoint
*) -1, *t2
;
11238 unsigned int count
;
11241 if (args
== 0 || *args
== 0)
11242 error (_("passcount command requires an argument (count + optional TP num)"));
11244 count
= strtoul (args
, &args
, 10); /* Count comes first, then TP num. */
11246 while (*args
&& isspace ((int) *args
))
11249 if (*args
&& strncasecmp (args
, "all", 3) == 0)
11251 args
+= 3; /* Skip special argument "all". */
11254 error (_("Junk at end of arguments."));
11257 t1
= get_tracepoint_by_number (&args
, 1, 1);
11263 ALL_TRACEPOINTS (t2
)
11264 if (t1
== (struct breakpoint
*) -1 || t1
== t2
)
11266 t2
->pass_count
= count
;
11267 observer_notify_tracepoint_modified (t2
->number
);
11269 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
11270 t2
->number
, count
);
11272 if (! all
&& *args
)
11273 t1
= get_tracepoint_by_number (&args
, 1, 0);
11279 struct breakpoint
*
11280 get_tracepoint (int num
)
11282 struct breakpoint
*t
;
11284 ALL_TRACEPOINTS (t
)
11285 if (t
->number
== num
)
11291 /* Find the tracepoint with the given target-side number (which may be
11292 different from the tracepoint number after disconnecting and
11295 struct breakpoint
*
11296 get_tracepoint_by_number_on_target (int num
)
11298 struct breakpoint
*t
;
11300 ALL_TRACEPOINTS (t
)
11301 if (t
->number_on_target
== num
)
11307 /* Utility: parse a tracepoint number and look it up in the list.
11308 If MULTI_P is true, there might be a range of tracepoints in ARG.
11309 if OPTIONAL_P is true, then if the argument is missing, the most
11310 recent tracepoint (tracepoint_count) is returned. */
11311 struct breakpoint
*
11312 get_tracepoint_by_number (char **arg
, int multi_p
, int optional_p
)
11314 extern int tracepoint_count
;
11315 struct breakpoint
*t
;
11317 char *instring
= arg
== NULL
? NULL
: *arg
;
11319 if (arg
== NULL
|| *arg
== NULL
|| ! **arg
)
11322 tpnum
= tracepoint_count
;
11324 error_no_arg (_("tracepoint number"));
11327 tpnum
= multi_p
? get_number_or_range (arg
) : get_number (arg
);
11331 if (instring
&& *instring
)
11332 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
11335 printf_filtered (_("Tracepoint argument missing and no previous tracepoint\n"));
11339 ALL_TRACEPOINTS (t
)
11340 if (t
->number
== tpnum
)
11345 /* FIXME: if we are in the middle of a range we don't want to give
11346 a message. The current interface to get_number_or_range doesn't
11347 allow us to discover this. */
11348 printf_unfiltered ("No tracepoint number %d.\n", tpnum
);
11352 /* Save information on user settable breakpoints (watchpoints, etc) to
11353 a new script file named FILENAME. If FILTER is non-NULL, call it
11354 on each breakpoint and only include the ones for which it returns
11358 save_breakpoints (char *filename
, int from_tty
,
11359 int (*filter
) (const struct breakpoint
*))
11361 struct breakpoint
*tp
;
11364 struct cleanup
*cleanup
;
11365 struct ui_file
*fp
;
11366 int extra_trace_bits
= 0;
11368 if (filename
== 0 || *filename
== 0)
11369 error (_("Argument required (file name in which to save)"));
11371 /* See if we have anything to save. */
11372 ALL_BREAKPOINTS (tp
)
11374 /* Skip internal and momentary breakpoints. */
11375 if (!user_settable_breakpoint (tp
))
11378 /* If we have a filter, only save the breakpoints it accepts. */
11379 if (filter
&& !filter (tp
))
11384 if (is_tracepoint (tp
))
11386 extra_trace_bits
= 1;
11388 /* We can stop searching. */
11395 warning (_("Nothing to save."));
11399 pathname
= tilde_expand (filename
);
11400 cleanup
= make_cleanup (xfree
, pathname
);
11401 fp
= gdb_fopen (pathname
, "w");
11403 error (_("Unable to open file '%s' for saving (%s)"),
11404 filename
, safe_strerror (errno
));
11405 make_cleanup_ui_file_delete (fp
);
11407 if (extra_trace_bits
)
11408 save_trace_state_variables (fp
);
11410 ALL_BREAKPOINTS (tp
)
11412 /* Skip internal and momentary breakpoints. */
11413 if (!user_settable_breakpoint (tp
))
11416 /* If we have a filter, only save the breakpoints it accepts. */
11417 if (filter
&& !filter (tp
))
11420 if (tp
->ops
!= NULL
)
11421 (tp
->ops
->print_recreate
) (tp
, fp
);
11424 if (tp
->type
== bp_fast_tracepoint
)
11425 fprintf_unfiltered (fp
, "ftrace");
11426 if (tp
->type
== bp_static_tracepoint
)
11427 fprintf_unfiltered (fp
, "strace");
11428 else if (tp
->type
== bp_tracepoint
)
11429 fprintf_unfiltered (fp
, "trace");
11430 else if (tp
->type
== bp_breakpoint
&& tp
->disposition
== disp_del
)
11431 fprintf_unfiltered (fp
, "tbreak");
11432 else if (tp
->type
== bp_breakpoint
)
11433 fprintf_unfiltered (fp
, "break");
11434 else if (tp
->type
== bp_hardware_breakpoint
11435 && tp
->disposition
== disp_del
)
11436 fprintf_unfiltered (fp
, "thbreak");
11437 else if (tp
->type
== bp_hardware_breakpoint
)
11438 fprintf_unfiltered (fp
, "hbreak");
11439 else if (tp
->type
== bp_watchpoint
)
11440 fprintf_unfiltered (fp
, "watch");
11441 else if (tp
->type
== bp_hardware_watchpoint
)
11442 fprintf_unfiltered (fp
, "watch");
11443 else if (tp
->type
== bp_read_watchpoint
)
11444 fprintf_unfiltered (fp
, "rwatch");
11445 else if (tp
->type
== bp_access_watchpoint
)
11446 fprintf_unfiltered (fp
, "awatch");
11448 internal_error (__FILE__
, __LINE__
,
11449 _("unhandled breakpoint type %d"), (int) tp
->type
);
11451 if (tp
->exp_string
)
11452 fprintf_unfiltered (fp
, " %s", tp
->exp_string
);
11453 else if (tp
->addr_string
)
11454 fprintf_unfiltered (fp
, " %s", tp
->addr_string
);
11459 sprintf_vma (tmp
, tp
->loc
->address
);
11460 fprintf_unfiltered (fp
, " *0x%s", tmp
);
11464 if (tp
->thread
!= -1)
11465 fprintf_unfiltered (fp
, " thread %d", tp
->thread
);
11468 fprintf_unfiltered (fp
, " task %d", tp
->task
);
11470 fprintf_unfiltered (fp
, "\n");
11472 /* Note, we can't rely on tp->number for anything, as we can't
11473 assume the recreated breakpoint numbers will match. Use $bpnum
11476 if (tp
->cond_string
)
11477 fprintf_unfiltered (fp
, " condition $bpnum %s\n", tp
->cond_string
);
11479 if (tp
->ignore_count
)
11480 fprintf_unfiltered (fp
, " ignore $bpnum %d\n", tp
->ignore_count
);
11482 if (tp
->pass_count
)
11483 fprintf_unfiltered (fp
, " passcount %d\n", tp
->pass_count
);
11487 volatile struct gdb_exception ex
;
11489 fprintf_unfiltered (fp
, " commands\n");
11491 ui_out_redirect (uiout
, fp
);
11492 TRY_CATCH (ex
, RETURN_MASK_ALL
)
11494 print_command_lines (uiout
, tp
->commands
->commands
, 2);
11496 ui_out_redirect (uiout
, NULL
);
11499 throw_exception (ex
);
11501 fprintf_unfiltered (fp
, " end\n");
11504 if (tp
->enable_state
== bp_disabled
)
11505 fprintf_unfiltered (fp
, "disable\n");
11507 /* If this is a multi-location breakpoint, check if the locations
11508 should be individually disabled. Watchpoint locations are
11509 special, and not user visible. */
11510 if (!is_watchpoint (tp
) && tp
->loc
&& tp
->loc
->next
)
11512 struct bp_location
*loc
;
11515 for (loc
= tp
->loc
; loc
!= NULL
; loc
= loc
->next
, n
++)
11517 fprintf_unfiltered (fp
, "disable $bpnum.%d\n", n
);
11521 if (extra_trace_bits
&& *default_collect
)
11522 fprintf_unfiltered (fp
, "set default-collect %s\n", default_collect
);
11524 do_cleanups (cleanup
);
11526 printf_filtered (_("Saved to file '%s'.\n"), filename
);
11529 /* The `save breakpoints' command. */
11532 save_breakpoints_command (char *args
, int from_tty
)
11534 save_breakpoints (args
, from_tty
, NULL
);
11537 /* The `save tracepoints' command. */
11540 save_tracepoints_command (char *args
, int from_tty
)
11542 save_breakpoints (args
, from_tty
, is_tracepoint
);
11545 /* Create a vector of all tracepoints. */
11547 VEC(breakpoint_p
) *
11550 VEC(breakpoint_p
) *tp_vec
= 0;
11551 struct breakpoint
*tp
;
11553 ALL_TRACEPOINTS (tp
)
11555 VEC_safe_push (breakpoint_p
, tp_vec
, tp
);
11562 /* This help string is used for the break, hbreak, tbreak and thbreak commands.
11563 It is defined as a macro to prevent duplication.
11564 COMMAND should be a string constant containing the name of the command. */
11565 #define BREAK_ARGS_HELP(command) \
11566 command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
11567 LOCATION may be a line number, function name, or \"*\" and an address.\n\
11568 If a line number is specified, break at start of code for that line.\n\
11569 If a function is specified, break at start of code for that function.\n\
11570 If an address is specified, break at that exact address.\n\
11571 With no LOCATION, uses current execution address of the selected\n\
11572 stack frame. This is useful for breaking on return to a stack frame.\n\
11574 THREADNUM is the number from \"info threads\".\n\
11575 CONDITION is a boolean expression.\n\
11577 Multiple breakpoints at one place are permitted, and useful if their\n\
11578 conditions are different.\n\
11580 Do \"help breakpoints\" for info on other commands dealing with breakpoints."
11582 /* List of subcommands for "catch". */
11583 static struct cmd_list_element
*catch_cmdlist
;
11585 /* List of subcommands for "tcatch". */
11586 static struct cmd_list_element
*tcatch_cmdlist
;
11588 /* Like add_cmd, but add the command to both the "catch" and "tcatch"
11589 lists, and pass some additional user data to the command function. */
11591 add_catch_command (char *name
, char *docstring
,
11592 void (*sfunc
) (char *args
, int from_tty
,
11593 struct cmd_list_element
*command
),
11594 char **(*completer
) (struct cmd_list_element
*cmd
,
11595 char *text
, char *word
),
11596 void *user_data_catch
,
11597 void *user_data_tcatch
)
11599 struct cmd_list_element
*command
;
11601 command
= add_cmd (name
, class_breakpoint
, NULL
, docstring
,
11603 set_cmd_sfunc (command
, sfunc
);
11604 set_cmd_context (command
, user_data_catch
);
11605 set_cmd_completer (command
, completer
);
11607 command
= add_cmd (name
, class_breakpoint
, NULL
, docstring
,
11609 set_cmd_sfunc (command
, sfunc
);
11610 set_cmd_context (command
, user_data_tcatch
);
11611 set_cmd_completer (command
, completer
);
11615 clear_syscall_counts (struct inferior
*inf
)
11617 inf
->total_syscalls_count
= 0;
11618 inf
->any_syscall_count
= 0;
11619 VEC_free (int, inf
->syscalls_counts
);
11623 save_command (char *arg
, int from_tty
)
11625 printf_unfiltered (_("\
11626 \"save\" must be followed by the name of a save subcommand.\n"));
11627 help_list (save_cmdlist
, "save ", -1, gdb_stdout
);
11631 _initialize_breakpoint (void)
11633 struct cmd_list_element
*c
;
11635 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib
);
11636 observer_attach_inferior_exit (clear_syscall_counts
);
11637 observer_attach_memory_changed (invalidate_bp_value_on_memory_change
);
11639 breakpoint_chain
= 0;
11640 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
11641 before a breakpoint is set. */
11642 breakpoint_count
= 0;
11644 tracepoint_count
= 0;
11646 add_com ("ignore", class_breakpoint
, ignore_command
, _("\
11647 Set ignore-count of breakpoint number N to COUNT.\n\
11648 Usage is `ignore N COUNT'."));
11650 add_com_alias ("bc", "ignore", class_breakpoint
, 1);
11652 add_com ("commands", class_breakpoint
, commands_command
, _("\
11653 Set commands to be executed when a breakpoint is hit.\n\
11654 Give breakpoint number as argument after \"commands\".\n\
11655 With no argument, the targeted breakpoint is the last one set.\n\
11656 The commands themselves follow starting on the next line.\n\
11657 Type a line containing \"end\" to indicate the end of them.\n\
11658 Give \"silent\" as the first line to make the breakpoint silent;\n\
11659 then no output is printed when it is hit, except what the commands print."));
11661 add_com ("condition", class_breakpoint
, condition_command
, _("\
11662 Specify breakpoint number N to break only if COND is true.\n\
11663 Usage is `condition N COND', where N is an integer and COND is an\n\
11664 expression to be evaluated whenever breakpoint N is reached."));
11666 c
= add_com ("tbreak", class_breakpoint
, tbreak_command
, _("\
11667 Set a temporary breakpoint.\n\
11668 Like \"break\" except the breakpoint is only temporary,\n\
11669 so it will be deleted when hit. Equivalent to \"break\" followed\n\
11670 by using \"enable delete\" on the breakpoint number.\n\
11672 BREAK_ARGS_HELP ("tbreak")));
11673 set_cmd_completer (c
, location_completer
);
11675 c
= add_com ("hbreak", class_breakpoint
, hbreak_command
, _("\
11676 Set a hardware assisted breakpoint.\n\
11677 Like \"break\" except the breakpoint requires hardware support,\n\
11678 some target hardware may not have this support.\n\
11680 BREAK_ARGS_HELP ("hbreak")));
11681 set_cmd_completer (c
, location_completer
);
11683 c
= add_com ("thbreak", class_breakpoint
, thbreak_command
, _("\
11684 Set a temporary hardware assisted breakpoint.\n\
11685 Like \"hbreak\" except the breakpoint is only temporary,\n\
11686 so it will be deleted when hit.\n\
11688 BREAK_ARGS_HELP ("thbreak")));
11689 set_cmd_completer (c
, location_completer
);
11691 add_prefix_cmd ("enable", class_breakpoint
, enable_command
, _("\
11692 Enable some breakpoints.\n\
11693 Give breakpoint numbers (separated by spaces) as arguments.\n\
11694 With no subcommand, breakpoints are enabled until you command otherwise.\n\
11695 This is used to cancel the effect of the \"disable\" command.\n\
11696 With a subcommand you can enable temporarily."),
11697 &enablelist
, "enable ", 1, &cmdlist
);
11699 add_com ("ab", class_breakpoint
, enable_command
, _("\
11700 Enable some breakpoints.\n\
11701 Give breakpoint numbers (separated by spaces) as arguments.\n\
11702 With no subcommand, breakpoints are enabled until you command otherwise.\n\
11703 This is used to cancel the effect of the \"disable\" command.\n\
11704 With a subcommand you can enable temporarily."));
11706 add_com_alias ("en", "enable", class_breakpoint
, 1);
11708 add_prefix_cmd ("breakpoints", class_breakpoint
, enable_command
, _("\
11709 Enable some breakpoints.\n\
11710 Give breakpoint numbers (separated by spaces) as arguments.\n\
11711 This is used to cancel the effect of the \"disable\" command.\n\
11712 May be abbreviated to simply \"enable\".\n"),
11713 &enablebreaklist
, "enable breakpoints ", 1, &enablelist
);
11715 add_cmd ("once", no_class
, enable_once_command
, _("\
11716 Enable breakpoints for one hit. Give breakpoint numbers.\n\
11717 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
11720 add_cmd ("delete", no_class
, enable_delete_command
, _("\
11721 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
11722 If a breakpoint is hit while enabled in this fashion, it is deleted."),
11725 add_cmd ("delete", no_class
, enable_delete_command
, _("\
11726 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
11727 If a breakpoint is hit while enabled in this fashion, it is deleted."),
11730 add_cmd ("once", no_class
, enable_once_command
, _("\
11731 Enable breakpoints for one hit. Give breakpoint numbers.\n\
11732 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
11735 add_prefix_cmd ("disable", class_breakpoint
, disable_command
, _("\
11736 Disable some breakpoints.\n\
11737 Arguments are breakpoint numbers with spaces in between.\n\
11738 To disable all breakpoints, give no argument.\n\
11739 A disabled breakpoint is not forgotten, but has no effect until reenabled."),
11740 &disablelist
, "disable ", 1, &cmdlist
);
11741 add_com_alias ("dis", "disable", class_breakpoint
, 1);
11742 add_com_alias ("disa", "disable", class_breakpoint
, 1);
11744 add_com ("sb", class_breakpoint
, disable_command
, _("\
11745 Disable some breakpoints.\n\
11746 Arguments are breakpoint numbers with spaces in between.\n\
11747 To disable all breakpoints, give no argument.\n\
11748 A disabled breakpoint is not forgotten, but has no effect until reenabled."));
11750 add_cmd ("breakpoints", class_alias
, disable_command
, _("\
11751 Disable some breakpoints.\n\
11752 Arguments are breakpoint numbers with spaces in between.\n\
11753 To disable all breakpoints, give no argument.\n\
11754 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
11755 This command may be abbreviated \"disable\"."),
11758 add_prefix_cmd ("delete", class_breakpoint
, delete_command
, _("\
11759 Delete some breakpoints or auto-display expressions.\n\
11760 Arguments are breakpoint numbers with spaces in between.\n\
11761 To delete all breakpoints, give no argument.\n\
11763 Also a prefix command for deletion of other GDB objects.\n\
11764 The \"unset\" command is also an alias for \"delete\"."),
11765 &deletelist
, "delete ", 1, &cmdlist
);
11766 add_com_alias ("d", "delete", class_breakpoint
, 1);
11767 add_com_alias ("del", "delete", class_breakpoint
, 1);
11769 add_com ("db", class_breakpoint
, delete_command
, _("\
11770 Delete some breakpoints.\n\
11771 Arguments are breakpoint numbers with spaces in between.\n\
11772 To delete all breakpoints, give no argument.\n"));
11774 add_cmd ("breakpoints", class_alias
, delete_command
, _("\
11775 Delete some breakpoints or auto-display expressions.\n\
11776 Arguments are breakpoint numbers with spaces in between.\n\
11777 To delete all breakpoints, give no argument.\n\
11778 This command may be abbreviated \"delete\"."),
11781 add_com ("clear", class_breakpoint
, clear_command
, _("\
11782 Clear breakpoint at specified line or function.\n\
11783 Argument may be line number, function name, or \"*\" and an address.\n\
11784 If line number is specified, all breakpoints in that line are cleared.\n\
11785 If function is specified, breakpoints at beginning of function are cleared.\n\
11786 If an address is specified, breakpoints at that address are cleared.\n\
11788 With no argument, clears all breakpoints in the line that the selected frame\n\
11789 is executing in.\n\
11791 See also the \"delete\" command which clears breakpoints by number."));
11792 add_com_alias ("cl", "clear", class_breakpoint
, 1);
11794 c
= add_com ("break", class_breakpoint
, break_command
, _("\
11795 Set breakpoint at specified line or function.\n"
11796 BREAK_ARGS_HELP ("break")));
11797 set_cmd_completer (c
, location_completer
);
11799 add_com_alias ("b", "break", class_run
, 1);
11800 add_com_alias ("br", "break", class_run
, 1);
11801 add_com_alias ("bre", "break", class_run
, 1);
11802 add_com_alias ("brea", "break", class_run
, 1);
11805 add_com_alias ("ba", "break", class_breakpoint
, 1);
11809 add_abbrev_prefix_cmd ("stop", class_breakpoint
, stop_command
, _("\
11810 Break in function/address or break at a line in the current file."),
11811 &stoplist
, "stop ", 1, &cmdlist
);
11812 add_cmd ("in", class_breakpoint
, stopin_command
,
11813 _("Break in function or address."), &stoplist
);
11814 add_cmd ("at", class_breakpoint
, stopat_command
,
11815 _("Break at a line in the current file."), &stoplist
);
11816 add_com ("status", class_info
, breakpoints_info
, _("\
11817 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
11818 The \"Type\" column indicates one of:\n\
11819 \tbreakpoint - normal breakpoint\n\
11820 \twatchpoint - watchpoint\n\
11821 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11822 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11823 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
11824 address and file/line number respectively.\n\
11826 Convenience variable \"$_\" and default examine address for \"x\"\n\
11827 are set to the address of the last breakpoint listed unless the command\n\
11828 is prefixed with \"server \".\n\n\
11829 Convenience variable \"$bpnum\" contains the number of the last\n\
11830 breakpoint set."));
11833 add_info ("breakpoints", breakpoints_info
, _("\
11834 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
11835 The \"Type\" column indicates one of:\n\
11836 \tbreakpoint - normal breakpoint\n\
11837 \twatchpoint - watchpoint\n\
11838 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11839 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11840 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
11841 address and file/line number respectively.\n\
11843 Convenience variable \"$_\" and default examine address for \"x\"\n\
11844 are set to the address of the last breakpoint listed unless the command\n\
11845 is prefixed with \"server \".\n\n\
11846 Convenience variable \"$bpnum\" contains the number of the last\n\
11847 breakpoint set."));
11849 add_info_alias ("b", "breakpoints", 1);
11852 add_com ("lb", class_breakpoint
, breakpoints_info
, _("\
11853 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
11854 The \"Type\" column indicates one of:\n\
11855 \tbreakpoint - normal breakpoint\n\
11856 \twatchpoint - watchpoint\n\
11857 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11858 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11859 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
11860 address and file/line number respectively.\n\
11862 Convenience variable \"$_\" and default examine address for \"x\"\n\
11863 are set to the address of the last breakpoint listed unless the command\n\
11864 is prefixed with \"server \".\n\n\
11865 Convenience variable \"$bpnum\" contains the number of the last\n\
11866 breakpoint set."));
11868 add_cmd ("breakpoints", class_maintenance
, maintenance_info_breakpoints
, _("\
11869 Status of all breakpoints, or breakpoint number NUMBER.\n\
11870 The \"Type\" column indicates one of:\n\
11871 \tbreakpoint - normal breakpoint\n\
11872 \twatchpoint - watchpoint\n\
11873 \tlongjmp - internal breakpoint used to step through longjmp()\n\
11874 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
11875 \tuntil - internal breakpoint used by the \"until\" command\n\
11876 \tfinish - internal breakpoint used by the \"finish\" command\n\
11877 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
11878 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
11879 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
11880 address and file/line number respectively.\n\
11882 Convenience variable \"$_\" and default examine address for \"x\"\n\
11883 are set to the address of the last breakpoint listed unless the command\n\
11884 is prefixed with \"server \".\n\n\
11885 Convenience variable \"$bpnum\" contains the number of the last\n\
11887 &maintenanceinfolist
);
11889 add_prefix_cmd ("catch", class_breakpoint
, catch_command
, _("\
11890 Set catchpoints to catch events."),
11891 &catch_cmdlist
, "catch ",
11892 0/*allow-unknown*/, &cmdlist
);
11894 add_prefix_cmd ("tcatch", class_breakpoint
, tcatch_command
, _("\
11895 Set temporary catchpoints to catch events."),
11896 &tcatch_cmdlist
, "tcatch ",
11897 0/*allow-unknown*/, &cmdlist
);
11899 /* Add catch and tcatch sub-commands. */
11900 add_catch_command ("catch", _("\
11901 Catch an exception, when caught.\n\
11902 With an argument, catch only exceptions with the given name."),
11903 catch_catch_command
,
11907 add_catch_command ("throw", _("\
11908 Catch an exception, when thrown.\n\
11909 With an argument, catch only exceptions with the given name."),
11910 catch_throw_command
,
11914 add_catch_command ("fork", _("Catch calls to fork."),
11915 catch_fork_command_1
,
11917 (void *) (uintptr_t) catch_fork_permanent
,
11918 (void *) (uintptr_t) catch_fork_temporary
);
11919 add_catch_command ("vfork", _("Catch calls to vfork."),
11920 catch_fork_command_1
,
11922 (void *) (uintptr_t) catch_vfork_permanent
,
11923 (void *) (uintptr_t) catch_vfork_temporary
);
11924 add_catch_command ("exec", _("Catch calls to exec."),
11925 catch_exec_command_1
,
11929 add_catch_command ("syscall", _("\
11930 Catch system calls by their names and/or numbers.\n\
11931 Arguments say which system calls to catch. If no arguments\n\
11932 are given, every system call will be caught.\n\
11933 Arguments, if given, should be one or more system call names\n\
11934 (if your system supports that), or system call numbers."),
11935 catch_syscall_command_1
,
11936 catch_syscall_completer
,
11939 add_catch_command ("exception", _("\
11940 Catch Ada exceptions, when raised.\n\
11941 With an argument, catch only exceptions with the given name."),
11942 catch_ada_exception_command
,
11946 add_catch_command ("assert", _("\
11947 Catch failed Ada assertions, when raised.\n\
11948 With an argument, catch only exceptions with the given name."),
11949 catch_assert_command
,
11954 c
= add_com ("watch", class_breakpoint
, watch_command
, _("\
11955 Set a watchpoint for an expression.\n\
11956 Usage: watch [-l|-location] EXPRESSION\n\
11957 A watchpoint stops execution of your program whenever the value of\n\
11958 an expression changes.\n\
11959 If -l or -location is given, this evaluates EXPRESSION and watches\n\
11960 the memory to which it refers."));
11961 set_cmd_completer (c
, expression_completer
);
11963 c
= add_com ("rwatch", class_breakpoint
, rwatch_command
, _("\
11964 Set a read watchpoint for an expression.\n\
11965 Usage: rwatch [-l|-location] EXPRESSION\n\
11966 A watchpoint stops execution of your program whenever the value of\n\
11967 an expression is read.\n\
11968 If -l or -location is given, this evaluates EXPRESSION and watches\n\
11969 the memory to which it refers."));
11970 set_cmd_completer (c
, expression_completer
);
11972 c
= add_com ("awatch", class_breakpoint
, awatch_command
, _("\
11973 Set a watchpoint for an expression.\n\
11974 Usage: awatch [-l|-location] EXPRESSION\n\
11975 A watchpoint stops execution of your program whenever the value of\n\
11976 an expression is either read or written.\n\
11977 If -l or -location is given, this evaluates EXPRESSION and watches\n\
11978 the memory to which it refers."));
11979 set_cmd_completer (c
, expression_completer
);
11981 add_info ("watchpoints", watchpoints_info
, _("\
11982 Status of watchpoints, or watchpoint number NUMBER."));
11986 /* XXX: cagney/2005-02-23: This should be a boolean, and should
11987 respond to changes - contrary to the description. */
11988 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support
,
11989 &can_use_hw_watchpoints
, _("\
11990 Set debugger's willingness to use watchpoint hardware."), _("\
11991 Show debugger's willingness to use watchpoint hardware."), _("\
11992 If zero, gdb will not use hardware for new watchpoints, even if\n\
11993 such is available. (However, any hardware watchpoints that were\n\
11994 created before setting this to nonzero, will continue to use watchpoint\n\
11997 show_can_use_hw_watchpoints
,
11998 &setlist
, &showlist
);
12000 can_use_hw_watchpoints
= 1;
12002 /* Tracepoint manipulation commands. */
12004 c
= add_com ("trace", class_breakpoint
, trace_command
, _("\
12005 Set a tracepoint at specified line or function.\n\
12007 BREAK_ARGS_HELP ("trace") "\n\
12008 Do \"help tracepoints\" for info on other tracepoint commands."));
12009 set_cmd_completer (c
, location_completer
);
12011 add_com_alias ("tp", "trace", class_alias
, 0);
12012 add_com_alias ("tr", "trace", class_alias
, 1);
12013 add_com_alias ("tra", "trace", class_alias
, 1);
12014 add_com_alias ("trac", "trace", class_alias
, 1);
12016 c
= add_com ("ftrace", class_breakpoint
, ftrace_command
, _("\
12017 Set a fast tracepoint at specified line or function.\n\
12019 BREAK_ARGS_HELP ("ftrace") "\n\
12020 Do \"help tracepoints\" for info on other tracepoint commands."));
12021 set_cmd_completer (c
, location_completer
);
12023 c
= add_com ("strace", class_breakpoint
, strace_command
, _("\
12024 Set a static tracepoint at specified line, function or marker.\n\
12026 strace [LOCATION] [if CONDITION]\n\
12027 LOCATION may be a line number, function name, \"*\" and an address,\n\
12028 or -m MARKER_ID.\n\
12029 If a line number is specified, probe the marker at start of code\n\
12030 for that line. If a function is specified, probe the marker at start\n\
12031 of code for that function. If an address is specified, probe the marker\n\
12032 at that exact address. If a marker id is specified, probe the marker\n\
12033 with that name. With no LOCATION, uses current execution address of\n\
12034 the selected stack frame.\n\
12035 Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
12036 This collects arbitrary user data passed in the probe point call to the\n\
12037 tracing library. You can inspect it when analyzing the trace buffer,\n\
12038 by printing the $_sdata variable like any other convenience variable.\n\
12040 CONDITION is a boolean expression.\n\
12042 Multiple tracepoints at one place are permitted, and useful if their\n\
12043 conditions are different.\n\
12045 Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
12046 Do \"help tracepoints\" for info on other tracepoint commands."));
12047 set_cmd_completer (c
, location_completer
);
12049 add_info ("tracepoints", tracepoints_info
, _("\
12050 Status of tracepoints, or tracepoint number NUMBER.\n\
12051 Convenience variable \"$tpnum\" contains the number of the\n\
12052 last tracepoint set."));
12054 add_info_alias ("tp", "tracepoints", 1);
12056 add_cmd ("tracepoints", class_trace
, delete_trace_command
, _("\
12057 Delete specified tracepoints.\n\
12058 Arguments are tracepoint numbers, separated by spaces.\n\
12059 No argument means delete all tracepoints."),
12062 c
= add_cmd ("tracepoints", class_trace
, disable_trace_command
, _("\
12063 Disable specified tracepoints.\n\
12064 Arguments are tracepoint numbers, separated by spaces.\n\
12065 No argument means disable all tracepoints."),
12067 deprecate_cmd (c
, "disable");
12069 c
= add_cmd ("tracepoints", class_trace
, enable_trace_command
, _("\
12070 Enable specified tracepoints.\n\
12071 Arguments are tracepoint numbers, separated by spaces.\n\
12072 No argument means enable all tracepoints."),
12074 deprecate_cmd (c
, "enable");
12076 add_com ("passcount", class_trace
, trace_pass_command
, _("\
12077 Set the passcount for a tracepoint.\n\
12078 The trace will end when the tracepoint has been passed 'count' times.\n\
12079 Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
12080 if TPNUM is omitted, passcount refers to the last tracepoint defined."));
12082 add_prefix_cmd ("save", class_breakpoint
, save_command
,
12083 _("Save breakpoint definitions as a script."),
12084 &save_cmdlist
, "save ",
12085 0/*allow-unknown*/, &cmdlist
);
12087 c
= add_cmd ("breakpoints", class_breakpoint
, save_breakpoints_command
, _("\
12088 Save current breakpoint definitions as a script.\n\
12089 This includes all types of breakpoints (breakpoints, watchpoints,\n\
12090 catchpoints, tracepoints). Use the 'source' command in another debug\n\
12091 session to restore them."),
12093 set_cmd_completer (c
, filename_completer
);
12095 c
= add_cmd ("tracepoints", class_trace
, save_tracepoints_command
, _("\
12096 Save current tracepoint definitions as a script.\n\
12097 Use the 'source' command in another debug session to restore them."),
12099 set_cmd_completer (c
, filename_completer
);
12101 c
= add_com_alias ("save-tracepoints", "save tracepoints", class_trace
, 0);
12102 deprecate_cmd (c
, "save tracepoints");
12104 add_prefix_cmd ("breakpoint", class_maintenance
, set_breakpoint_cmd
, _("\
12105 Breakpoint specific settings\n\
12106 Configure various breakpoint-specific variables such as\n\
12107 pending breakpoint behavior"),
12108 &breakpoint_set_cmdlist
, "set breakpoint ",
12109 0/*allow-unknown*/, &setlist
);
12110 add_prefix_cmd ("breakpoint", class_maintenance
, show_breakpoint_cmd
, _("\
12111 Breakpoint specific settings\n\
12112 Configure various breakpoint-specific variables such as\n\
12113 pending breakpoint behavior"),
12114 &breakpoint_show_cmdlist
, "show breakpoint ",
12115 0/*allow-unknown*/, &showlist
);
12117 add_setshow_auto_boolean_cmd ("pending", no_class
,
12118 &pending_break_support
, _("\
12119 Set debugger's behavior regarding pending breakpoints."), _("\
12120 Show debugger's behavior regarding pending breakpoints."), _("\
12121 If on, an unrecognized breakpoint location will cause gdb to create a\n\
12122 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
12123 an error. If auto, an unrecognized breakpoint location results in a\n\
12124 user-query to see if a pending breakpoint should be created."),
12126 show_pending_break_support
,
12127 &breakpoint_set_cmdlist
,
12128 &breakpoint_show_cmdlist
);
12130 pending_break_support
= AUTO_BOOLEAN_AUTO
;
12132 add_setshow_boolean_cmd ("auto-hw", no_class
,
12133 &automatic_hardware_breakpoints
, _("\
12134 Set automatic usage of hardware breakpoints."), _("\
12135 Show automatic usage of hardware breakpoints."), _("\
12136 If set, the debugger will automatically use hardware breakpoints for\n\
12137 breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
12138 a warning will be emitted for such breakpoints."),
12140 show_automatic_hardware_breakpoints
,
12141 &breakpoint_set_cmdlist
,
12142 &breakpoint_show_cmdlist
);
12144 add_setshow_enum_cmd ("always-inserted", class_support
,
12145 always_inserted_enums
, &always_inserted_mode
, _("\
12146 Set mode for inserting breakpoints."), _("\
12147 Show mode for inserting breakpoints."), _("\
12148 When this mode is off, breakpoints are inserted in inferior when it is\n\
12149 resumed, and removed when execution stops. When this mode is on,\n\
12150 breakpoints are inserted immediately and removed only when the user\n\
12151 deletes the breakpoint. When this mode is auto (which is the default),\n\
12152 the behaviour depends on the non-stop setting (see help set non-stop).\n\
12153 In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
12154 behaves as if always-inserted mode is on; if gdb is controlling the\n\
12155 inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
12157 &show_always_inserted_mode
,
12158 &breakpoint_set_cmdlist
,
12159 &breakpoint_show_cmdlist
);
12161 automatic_hardware_breakpoints
= 1;
12163 observer_attach_about_to_proceed (breakpoint_about_to_proceed
);