1 /* Everything about breakpoints, for GDB.
3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
26 #include "breakpoint.h"
27 #include "tracepoint.h"
29 #include "expression.h"
36 #include "gdbthread.h"
39 #include "gdb-demangle.h"
40 #include "filenames.h"
46 #include "completer.h"
48 #include "cli/cli-script.h"
52 #include "observable.h"
58 #include "parser-defs.h"
59 #include "gdb_regex.h"
61 #include "cli/cli-utils.h"
62 #include "continuations.h"
66 #include "dummy-frame.h"
69 #include "thread-fsm.h"
70 #include "tid-parse.h"
72 /* readline include files */
73 #include "readline/readline.h"
74 #include "readline/history.h"
76 /* readline defines this. */
79 #include "mi/mi-common.h"
80 #include "extension.h"
82 #include "progspace-and-thread.h"
83 #include "common/array-view.h"
84 #include "common/gdb_optional.h"
86 /* Enums for exception-handling support. */
87 enum exception_event_kind
94 /* Prototypes for local functions. */
96 static void map_breakpoint_numbers (const char *,
97 gdb::function_view<void (breakpoint *)>);
99 static void breakpoint_re_set_default (struct breakpoint *);
102 create_sals_from_location_default (const struct event_location *location,
103 struct linespec_result *canonical,
104 enum bptype type_wanted);
106 static void create_breakpoints_sal_default (struct gdbarch *,
107 struct linespec_result *,
108 gdb::unique_xmalloc_ptr<char>,
109 gdb::unique_xmalloc_ptr<char>,
111 enum bpdisp, int, int,
113 const struct breakpoint_ops *,
114 int, int, int, unsigned);
116 static std::vector<symtab_and_line> decode_location_default
117 (struct breakpoint *b, const struct event_location *location,
118 struct program_space *search_pspace);
120 static int can_use_hardware_watchpoint
121 (const std::vector<value_ref_ptr> &vals);
123 static void mention (struct breakpoint *);
125 static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
127 const struct breakpoint_ops *);
128 static struct bp_location *add_location_to_breakpoint (struct breakpoint *,
129 const struct symtab_and_line *);
131 /* This function is used in gdbtk sources and thus can not be made
133 struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
134 struct symtab_and_line,
136 const struct breakpoint_ops *);
138 static struct breakpoint *
139 momentary_breakpoint_from_master (struct breakpoint *orig,
141 const struct breakpoint_ops *ops,
144 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
146 static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
150 static void describe_other_breakpoints (struct gdbarch *,
151 struct program_space *, CORE_ADDR,
152 struct obj_section *, int);
154 static int watchpoint_locations_match (struct bp_location *loc1,
155 struct bp_location *loc2);
157 static int breakpoint_location_address_match (struct bp_location *bl,
158 const struct address_space *aspace,
161 static int breakpoint_location_address_range_overlap (struct bp_location *,
162 const address_space *,
165 static int remove_breakpoint (struct bp_location *);
166 static int remove_breakpoint_1 (struct bp_location *, enum remove_bp_reason);
168 static enum print_stop_action print_bp_stop_message (bpstat bs);
170 static int hw_breakpoint_used_count (void);
172 static int hw_watchpoint_use_count (struct breakpoint *);
174 static int hw_watchpoint_used_count_others (struct breakpoint *except,
176 int *other_type_used);
178 static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
181 static void free_bp_location (struct bp_location *loc);
182 static void incref_bp_location (struct bp_location *loc);
183 static void decref_bp_location (struct bp_location **loc);
185 static struct bp_location *allocate_bp_location (struct breakpoint *bpt);
187 /* update_global_location_list's modes of operation wrt to whether to
188 insert locations now. */
189 enum ugll_insert_mode
191 /* Don't insert any breakpoint locations into the inferior, only
192 remove already-inserted locations that no longer should be
193 inserted. Functions that delete a breakpoint or breakpoints
194 should specify this mode, so that deleting a breakpoint doesn't
195 have the side effect of inserting the locations of other
196 breakpoints that are marked not-inserted, but should_be_inserted
197 returns true on them.
199 This behavior is useful is situations close to tear-down -- e.g.,
200 after an exec, while the target still has execution, but
201 breakpoint shadows of the previous executable image should *NOT*
202 be restored to the new image; or before detaching, where the
203 target still has execution and wants to delete breakpoints from
204 GDB's lists, and all breakpoints had already been removed from
208 /* May insert breakpoints iff breakpoints_should_be_inserted_now
209 claims breakpoints should be inserted now. */
212 /* Insert locations now, irrespective of
213 breakpoints_should_be_inserted_now. E.g., say all threads are
214 stopped right now, and the user did "continue". We need to
215 insert breakpoints _before_ resuming the target, but
216 UGLL_MAY_INSERT wouldn't insert them, because
217 breakpoints_should_be_inserted_now returns false at that point,
218 as no thread is running yet. */
222 static void update_global_location_list (enum ugll_insert_mode);
224 static void update_global_location_list_nothrow (enum ugll_insert_mode);
226 static int is_hardware_watchpoint (const struct breakpoint *bpt);
228 static void insert_breakpoint_locations (void);
230 static void trace_pass_command (const char *, int);
232 static void set_tracepoint_count (int num);
234 static int is_masked_watchpoint (const struct breakpoint *b);
236 static struct bp_location **get_first_locp_gte_addr (CORE_ADDR address);
238 /* Return 1 if B refers to a static tracepoint set by marker ("-m"), zero
241 static int strace_marker_p (struct breakpoint *b);
243 /* The breakpoint_ops structure to be inherited by all breakpoint_ops
244 that are implemented on top of software or hardware breakpoints
245 (user breakpoints, internal and momentary breakpoints, etc.). */
246 static struct breakpoint_ops bkpt_base_breakpoint_ops;
248 /* Internal breakpoints class type. */
249 static struct breakpoint_ops internal_breakpoint_ops;
251 /* Momentary breakpoints class type. */
252 static struct breakpoint_ops momentary_breakpoint_ops;
254 /* The breakpoint_ops structure to be used in regular user created
256 struct breakpoint_ops bkpt_breakpoint_ops;
258 /* Breakpoints set on probes. */
259 static struct breakpoint_ops bkpt_probe_breakpoint_ops;
261 /* Dynamic printf class type. */
262 struct breakpoint_ops dprintf_breakpoint_ops;
264 /* The style in which to perform a dynamic printf. This is a user
265 option because different output options have different tradeoffs;
266 if GDB does the printing, there is better error handling if there
267 is a problem with any of the arguments, but using an inferior
268 function lets you have special-purpose printers and sending of
269 output to the same place as compiled-in print functions. */
271 static const char dprintf_style_gdb[] = "gdb";
272 static const char dprintf_style_call[] = "call";
273 static const char dprintf_style_agent[] = "agent";
274 static const char *const dprintf_style_enums[] = {
280 static const char *dprintf_style = dprintf_style_gdb;
282 /* The function to use for dynamic printf if the preferred style is to
283 call into the inferior. The value is simply a string that is
284 copied into the command, so it can be anything that GDB can
285 evaluate to a callable address, not necessarily a function name. */
287 static char *dprintf_function;
289 /* The channel to use for dynamic printf if the preferred style is to
290 call into the inferior; if a nonempty string, it will be passed to
291 the call as the first argument, with the format string as the
292 second. As with the dprintf function, this can be anything that
293 GDB knows how to evaluate, so in addition to common choices like
294 "stderr", this could be an app-specific expression like
295 "mystreams[curlogger]". */
297 static char *dprintf_channel;
299 /* True if dprintf commands should continue to operate even if GDB
301 static int disconnected_dprintf = 1;
303 struct command_line *
304 breakpoint_commands (struct breakpoint *b)
306 return b->commands ? b->commands.get () : NULL;
309 /* Flag indicating that a command has proceeded the inferior past the
310 current breakpoint. */
312 static int breakpoint_proceeded;
315 bpdisp_text (enum bpdisp disp)
317 /* NOTE: the following values are a part of MI protocol and
318 represent values of 'disp' field returned when inferior stops at
320 static const char * const bpdisps[] = {"del", "dstp", "dis", "keep"};
322 return bpdisps[(int) disp];
325 /* Prototypes for exported functions. */
326 /* If FALSE, gdb will not use hardware support for watchpoints, even
327 if such is available. */
328 static int can_use_hw_watchpoints;
331 show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
332 struct cmd_list_element *c,
335 fprintf_filtered (file,
336 _("Debugger's willingness to use "
337 "watchpoint hardware is %s.\n"),
341 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
342 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
343 for unrecognized breakpoint locations.
344 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
345 static enum auto_boolean pending_break_support;
347 show_pending_break_support (struct ui_file *file, int from_tty,
348 struct cmd_list_element *c,
351 fprintf_filtered (file,
352 _("Debugger's behavior regarding "
353 "pending breakpoints is %s.\n"),
357 /* If 1, gdb will automatically use hardware breakpoints for breakpoints
358 set with "break" but falling in read-only memory.
359 If 0, gdb will warn about such breakpoints, but won't automatically
360 use hardware breakpoints. */
361 static int automatic_hardware_breakpoints;
363 show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
364 struct cmd_list_element *c,
367 fprintf_filtered (file,
368 _("Automatic usage of hardware breakpoints is %s.\n"),
372 /* If on, GDB keeps breakpoints inserted even if the inferior is
373 stopped, and immediately inserts any new breakpoints as soon as
374 they're created. If off (default), GDB keeps breakpoints off of
375 the target as long as possible. That is, it delays inserting
376 breakpoints until the next resume, and removes them again when the
377 target fully stops. This is a bit safer in case GDB crashes while
378 processing user input. */
379 static int always_inserted_mode = 0;
382 show_always_inserted_mode (struct ui_file *file, int from_tty,
383 struct cmd_list_element *c, const char *value)
385 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"),
389 /* See breakpoint.h. */
392 breakpoints_should_be_inserted_now (void)
394 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
396 /* If breakpoints are global, they should be inserted even if no
397 thread under gdb's control is running, or even if there are
398 no threads under GDB's control yet. */
401 else if (target_has_execution)
403 struct thread_info *tp;
405 if (always_inserted_mode)
407 /* The user wants breakpoints inserted even if all threads
412 if (threads_are_executing ())
415 /* Don't remove breakpoints yet if, even though all threads are
416 stopped, we still have events to process. */
417 ALL_NON_EXITED_THREADS (tp)
419 && tp->suspend.waitstatus_pending_p)
425 static const char condition_evaluation_both[] = "host or target";
427 /* Modes for breakpoint condition evaluation. */
428 static const char condition_evaluation_auto[] = "auto";
429 static const char condition_evaluation_host[] = "host";
430 static const char condition_evaluation_target[] = "target";
431 static const char *const condition_evaluation_enums[] = {
432 condition_evaluation_auto,
433 condition_evaluation_host,
434 condition_evaluation_target,
438 /* Global that holds the current mode for breakpoint condition evaluation. */
439 static const char *condition_evaluation_mode_1 = condition_evaluation_auto;
441 /* Global that we use to display information to the user (gets its value from
442 condition_evaluation_mode_1. */
443 static const char *condition_evaluation_mode = condition_evaluation_auto;
445 /* Translate a condition evaluation mode MODE into either "host"
446 or "target". This is used mostly to translate from "auto" to the
447 real setting that is being used. It returns the translated
451 translate_condition_evaluation_mode (const char *mode)
453 if (mode == condition_evaluation_auto)
455 if (target_supports_evaluation_of_breakpoint_conditions ())
456 return condition_evaluation_target;
458 return condition_evaluation_host;
464 /* Discovers what condition_evaluation_auto translates to. */
467 breakpoint_condition_evaluation_mode (void)
469 return translate_condition_evaluation_mode (condition_evaluation_mode);
472 /* Return true if GDB should evaluate breakpoint conditions or false
476 gdb_evaluates_breakpoint_condition_p (void)
478 const char *mode = breakpoint_condition_evaluation_mode ();
480 return (mode == condition_evaluation_host);
483 /* Are we executing breakpoint commands? */
484 static int executing_breakpoint_commands;
486 /* Are overlay event breakpoints enabled? */
487 static int overlay_events_enabled;
489 /* See description in breakpoint.h. */
490 int target_exact_watchpoints = 0;
492 /* Walk the following statement or block through all breakpoints.
493 ALL_BREAKPOINTS_SAFE does so even if the statement deletes the
494 current breakpoint. */
496 #define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
498 #define ALL_BREAKPOINTS_SAFE(B,TMP) \
499 for (B = breakpoint_chain; \
500 B ? (TMP=B->next, 1): 0; \
503 /* Similar iterator for the low-level breakpoints. SAFE variant is
504 not provided so update_global_location_list must not be called
505 while executing the block of ALL_BP_LOCATIONS. */
507 #define ALL_BP_LOCATIONS(B,BP_TMP) \
508 for (BP_TMP = bp_locations; \
509 BP_TMP < bp_locations + bp_locations_count && (B = *BP_TMP);\
512 /* Iterates through locations with address ADDRESS for the currently selected
513 program space. BP_LOCP_TMP points to each object. BP_LOCP_START points
514 to where the loop should start from.
515 If BP_LOCP_START is a NULL pointer, the macro automatically seeks the
516 appropriate location to start with. */
518 #define ALL_BP_LOCATIONS_AT_ADDR(BP_LOCP_TMP, BP_LOCP_START, ADDRESS) \
519 for (BP_LOCP_START = BP_LOCP_START == NULL ? get_first_locp_gte_addr (ADDRESS) : BP_LOCP_START, \
520 BP_LOCP_TMP = BP_LOCP_START; \
522 && (BP_LOCP_TMP < bp_locations + bp_locations_count \
523 && (*BP_LOCP_TMP)->address == ADDRESS); \
526 /* Iterator for tracepoints only. */
528 #define ALL_TRACEPOINTS(B) \
529 for (B = breakpoint_chain; B; B = B->next) \
530 if (is_tracepoint (B))
532 /* Chains of all breakpoints defined. */
534 struct breakpoint *breakpoint_chain;
536 /* Array is sorted by bp_locations_compare - primarily by the ADDRESS. */
538 static struct bp_location **bp_locations;
540 /* Number of elements of BP_LOCATIONS. */
542 static unsigned bp_locations_count;
544 /* Maximum alignment offset between bp_target_info.PLACED_ADDRESS and
545 ADDRESS for the current elements of BP_LOCATIONS which get a valid
546 result from bp_location_has_shadow. You can use it for roughly
547 limiting the subrange of BP_LOCATIONS to scan for shadow bytes for
548 an address you need to read. */
550 static CORE_ADDR bp_locations_placed_address_before_address_max;
552 /* Maximum offset plus alignment between bp_target_info.PLACED_ADDRESS
553 + bp_target_info.SHADOW_LEN and ADDRESS for the current elements of
554 BP_LOCATIONS which get a valid result from bp_location_has_shadow.
555 You can use it for roughly limiting the subrange of BP_LOCATIONS to
556 scan for shadow bytes for an address you need to read. */
558 static CORE_ADDR bp_locations_shadow_len_after_address_max;
560 /* The locations that no longer correspond to any breakpoint, unlinked
561 from the bp_locations array, but for which a hit may still be
562 reported by a target. */
563 static std::vector<bp_location *> moribund_locations;
565 /* Number of last breakpoint made. */
567 static int breakpoint_count;
569 /* The value of `breakpoint_count' before the last command that
570 created breakpoints. If the last (break-like) command created more
571 than one breakpoint, then the difference between BREAKPOINT_COUNT
572 and PREV_BREAKPOINT_COUNT is more than one. */
573 static int prev_breakpoint_count;
575 /* Number of last tracepoint made. */
577 static int tracepoint_count;
579 static struct cmd_list_element *breakpoint_set_cmdlist;
580 static struct cmd_list_element *breakpoint_show_cmdlist;
581 struct cmd_list_element *save_cmdlist;
583 /* See declaration at breakpoint.h. */
586 breakpoint_find_if (int (*func) (struct breakpoint *b, void *d),
589 struct breakpoint *b = NULL;
593 if (func (b, user_data) != 0)
600 /* Return whether a breakpoint is an active enabled breakpoint. */
602 breakpoint_enabled (struct breakpoint *b)
604 return (b->enable_state == bp_enabled);
607 /* Set breakpoint count to NUM. */
610 set_breakpoint_count (int num)
612 prev_breakpoint_count = breakpoint_count;
613 breakpoint_count = num;
614 set_internalvar_integer (lookup_internalvar ("bpnum"), num);
617 /* Used by `start_rbreak_breakpoints' below, to record the current
618 breakpoint count before "rbreak" creates any breakpoint. */
619 static int rbreak_start_breakpoint_count;
621 /* Called at the start an "rbreak" command to record the first
624 scoped_rbreak_breakpoints::scoped_rbreak_breakpoints ()
626 rbreak_start_breakpoint_count = breakpoint_count;
629 /* Called at the end of an "rbreak" command to record the last
632 scoped_rbreak_breakpoints::~scoped_rbreak_breakpoints ()
634 prev_breakpoint_count = rbreak_start_breakpoint_count;
637 /* Used in run_command to zero the hit count when a new run starts. */
640 clear_breakpoint_hit_counts (void)
642 struct breakpoint *b;
649 /* Return the breakpoint with the specified number, or NULL
650 if the number does not refer to an existing breakpoint. */
653 get_breakpoint (int num)
655 struct breakpoint *b;
658 if (b->number == num)
666 /* Mark locations as "conditions have changed" in case the target supports
667 evaluating conditions on its side. */
670 mark_breakpoint_modified (struct breakpoint *b)
672 struct bp_location *loc;
674 /* This is only meaningful if the target is
675 evaluating conditions and if the user has
676 opted for condition evaluation on the target's
678 if (gdb_evaluates_breakpoint_condition_p ()
679 || !target_supports_evaluation_of_breakpoint_conditions ())
682 if (!is_breakpoint (b))
685 for (loc = b->loc; loc; loc = loc->next)
686 loc->condition_changed = condition_modified;
689 /* Mark location as "conditions have changed" in case the target supports
690 evaluating conditions on its side. */
693 mark_breakpoint_location_modified (struct bp_location *loc)
695 /* This is only meaningful if the target is
696 evaluating conditions and if the user has
697 opted for condition evaluation on the target's
699 if (gdb_evaluates_breakpoint_condition_p ()
700 || !target_supports_evaluation_of_breakpoint_conditions ())
704 if (!is_breakpoint (loc->owner))
707 loc->condition_changed = condition_modified;
710 /* Sets the condition-evaluation mode using the static global
711 condition_evaluation_mode. */
714 set_condition_evaluation_mode (const char *args, int from_tty,
715 struct cmd_list_element *c)
717 const char *old_mode, *new_mode;
719 if ((condition_evaluation_mode_1 == condition_evaluation_target)
720 && !target_supports_evaluation_of_breakpoint_conditions ())
722 condition_evaluation_mode_1 = condition_evaluation_mode;
723 warning (_("Target does not support breakpoint condition evaluation.\n"
724 "Using host evaluation mode instead."));
728 new_mode = translate_condition_evaluation_mode (condition_evaluation_mode_1);
729 old_mode = translate_condition_evaluation_mode (condition_evaluation_mode);
731 /* Flip the switch. Flip it even if OLD_MODE == NEW_MODE as one of the
732 settings was "auto". */
733 condition_evaluation_mode = condition_evaluation_mode_1;
735 /* Only update the mode if the user picked a different one. */
736 if (new_mode != old_mode)
738 struct bp_location *loc, **loc_tmp;
739 /* If the user switched to a different evaluation mode, we
740 need to synch the changes with the target as follows:
742 "host" -> "target": Send all (valid) conditions to the target.
743 "target" -> "host": Remove all the conditions from the target.
746 if (new_mode == condition_evaluation_target)
748 /* Mark everything modified and synch conditions with the
750 ALL_BP_LOCATIONS (loc, loc_tmp)
751 mark_breakpoint_location_modified (loc);
755 /* Manually mark non-duplicate locations to synch conditions
756 with the target. We do this to remove all the conditions the
757 target knows about. */
758 ALL_BP_LOCATIONS (loc, loc_tmp)
759 if (is_breakpoint (loc->owner) && loc->inserted)
760 loc->needs_update = 1;
764 update_global_location_list (UGLL_MAY_INSERT);
770 /* Shows the current mode of breakpoint condition evaluation. Explicitly shows
771 what "auto" is translating to. */
774 show_condition_evaluation_mode (struct ui_file *file, int from_tty,
775 struct cmd_list_element *c, const char *value)
777 if (condition_evaluation_mode == condition_evaluation_auto)
778 fprintf_filtered (file,
779 _("Breakpoint condition evaluation "
780 "mode is %s (currently %s).\n"),
782 breakpoint_condition_evaluation_mode ());
784 fprintf_filtered (file, _("Breakpoint condition evaluation mode is %s.\n"),
788 /* A comparison function for bp_location AP and BP that is used by
789 bsearch. This comparison function only cares about addresses, unlike
790 the more general bp_locations_compare function. */
793 bp_locations_compare_addrs (const void *ap, const void *bp)
795 const struct bp_location *a = *(const struct bp_location **) ap;
796 const struct bp_location *b = *(const struct bp_location **) bp;
798 if (a->address == b->address)
801 return ((a->address > b->address) - (a->address < b->address));
804 /* Helper function to skip all bp_locations with addresses
805 less than ADDRESS. It returns the first bp_location that
806 is greater than or equal to ADDRESS. If none is found, just
809 static struct bp_location **
810 get_first_locp_gte_addr (CORE_ADDR address)
812 struct bp_location dummy_loc;
813 struct bp_location *dummy_locp = &dummy_loc;
814 struct bp_location **locp_found = NULL;
816 /* Initialize the dummy location's address field. */
817 dummy_loc.address = address;
819 /* Find a close match to the first location at ADDRESS. */
820 locp_found = ((struct bp_location **)
821 bsearch (&dummy_locp, bp_locations, bp_locations_count,
822 sizeof (struct bp_location **),
823 bp_locations_compare_addrs));
825 /* Nothing was found, nothing left to do. */
826 if (locp_found == NULL)
829 /* We may have found a location that is at ADDRESS but is not the first in the
830 location's list. Go backwards (if possible) and locate the first one. */
831 while ((locp_found - 1) >= bp_locations
832 && (*(locp_found - 1))->address == address)
839 set_breakpoint_condition (struct breakpoint *b, const char *exp,
842 xfree (b->cond_string);
843 b->cond_string = NULL;
845 if (is_watchpoint (b))
847 struct watchpoint *w = (struct watchpoint *) b;
849 w->cond_exp.reset ();
853 struct bp_location *loc;
855 for (loc = b->loc; loc; loc = loc->next)
859 /* No need to free the condition agent expression
860 bytecode (if we have one). We will handle this
861 when we go through update_global_location_list. */
868 printf_filtered (_("Breakpoint %d now unconditional.\n"), b->number);
872 const char *arg = exp;
874 /* I don't know if it matters whether this is the string the user
875 typed in or the decompiled expression. */
876 b->cond_string = xstrdup (arg);
877 b->condition_not_parsed = 0;
879 if (is_watchpoint (b))
881 struct watchpoint *w = (struct watchpoint *) b;
883 innermost_block.reset ();
885 w->cond_exp = parse_exp_1 (&arg, 0, 0, 0);
887 error (_("Junk at end of expression"));
888 w->cond_exp_valid_block = innermost_block.block ();
892 struct bp_location *loc;
894 for (loc = b->loc; loc; loc = loc->next)
898 parse_exp_1 (&arg, loc->address,
899 block_for_pc (loc->address), 0);
901 error (_("Junk at end of expression"));
905 mark_breakpoint_modified (b);
907 gdb::observers::breakpoint_modified.notify (b);
910 /* Completion for the "condition" command. */
913 condition_completer (struct cmd_list_element *cmd,
914 completion_tracker &tracker,
915 const char *text, const char *word)
919 text = skip_spaces (text);
920 space = skip_to_space (text);
924 struct breakpoint *b;
928 /* We don't support completion of history indices. */
929 if (!isdigit (text[1]))
930 complete_internalvar (tracker, &text[1]);
934 /* We're completing the breakpoint number. */
941 xsnprintf (number, sizeof (number), "%d", b->number);
943 if (strncmp (number, text, len) == 0)
945 gdb::unique_xmalloc_ptr<char> copy (xstrdup (number));
946 tracker.add_completion (std::move (copy));
953 /* We're completing the expression part. */
954 text = skip_spaces (space);
955 expression_completer (cmd, tracker, text, word);
958 /* condition N EXP -- set break condition of breakpoint N to EXP. */
961 condition_command (const char *arg, int from_tty)
963 struct breakpoint *b;
968 error_no_arg (_("breakpoint number"));
971 bnum = get_number (&p);
973 error (_("Bad breakpoint argument: '%s'"), arg);
976 if (b->number == bnum)
978 /* Check if this breakpoint has a "stop" method implemented in an
979 extension language. This method and conditions entered into GDB
980 from the CLI are mutually exclusive. */
981 const struct extension_language_defn *extlang
982 = get_breakpoint_cond_ext_lang (b, EXT_LANG_NONE);
986 error (_("Only one stop condition allowed. There is currently"
987 " a %s stop condition defined for this breakpoint."),
988 ext_lang_capitalized_name (extlang));
990 set_breakpoint_condition (b, p, from_tty);
992 if (is_breakpoint (b))
993 update_global_location_list (UGLL_MAY_INSERT);
998 error (_("No breakpoint number %d."), bnum);
1001 /* Check that COMMAND do not contain commands that are suitable
1002 only for tracepoints and not suitable for ordinary breakpoints.
1003 Throw if any such commands is found. */
1006 check_no_tracepoint_commands (struct command_line *commands)
1008 struct command_line *c;
1010 for (c = commands; c; c = c->next)
1012 if (c->control_type == while_stepping_control)
1013 error (_("The 'while-stepping' command can "
1014 "only be used for tracepoints"));
1016 check_no_tracepoint_commands (c->body_list_0.get ());
1017 check_no_tracepoint_commands (c->body_list_1.get ());
1019 /* Not that command parsing removes leading whitespace and comment
1020 lines and also empty lines. So, we only need to check for
1021 command directly. */
1022 if (strstr (c->line, "collect ") == c->line)
1023 error (_("The 'collect' command can only be used for tracepoints"));
1025 if (strstr (c->line, "teval ") == c->line)
1026 error (_("The 'teval' command can only be used for tracepoints"));
1030 struct longjmp_breakpoint : public breakpoint
1032 ~longjmp_breakpoint () override;
1035 /* Encapsulate tests for different types of tracepoints. */
1038 is_tracepoint_type (bptype type)
1040 return (type == bp_tracepoint
1041 || type == bp_fast_tracepoint
1042 || type == bp_static_tracepoint);
1046 is_longjmp_type (bptype type)
1048 return type == bp_longjmp || type == bp_exception;
1052 is_tracepoint (const struct breakpoint *b)
1054 return is_tracepoint_type (b->type);
1057 /* Factory function to create an appropriate instance of breakpoint given
1060 static std::unique_ptr<breakpoint>
1061 new_breakpoint_from_type (bptype type)
1065 if (is_tracepoint_type (type))
1066 b = new tracepoint ();
1067 else if (is_longjmp_type (type))
1068 b = new longjmp_breakpoint ();
1070 b = new breakpoint ();
1072 return std::unique_ptr<breakpoint> (b);
1075 /* A helper function that validates that COMMANDS are valid for a
1076 breakpoint. This function will throw an exception if a problem is
1080 validate_commands_for_breakpoint (struct breakpoint *b,
1081 struct command_line *commands)
1083 if (is_tracepoint (b))
1085 struct tracepoint *t = (struct tracepoint *) b;
1086 struct command_line *c;
1087 struct command_line *while_stepping = 0;
1089 /* Reset the while-stepping step count. The previous commands
1090 might have included a while-stepping action, while the new
1094 /* We need to verify that each top-level element of commands is
1095 valid for tracepoints, that there's at most one
1096 while-stepping element, and that the while-stepping's body
1097 has valid tracing commands excluding nested while-stepping.
1098 We also need to validate the tracepoint action line in the
1099 context of the tracepoint --- validate_actionline actually
1100 has side effects, like setting the tracepoint's
1101 while-stepping STEP_COUNT, in addition to checking if the
1102 collect/teval actions parse and make sense in the
1103 tracepoint's context. */
1104 for (c = commands; c; c = c->next)
1106 if (c->control_type == while_stepping_control)
1108 if (b->type == bp_fast_tracepoint)
1109 error (_("The 'while-stepping' command "
1110 "cannot be used for fast tracepoint"));
1111 else if (b->type == bp_static_tracepoint)
1112 error (_("The 'while-stepping' command "
1113 "cannot be used for static tracepoint"));
1116 error (_("The 'while-stepping' command "
1117 "can be used only once"));
1122 validate_actionline (c->line, b);
1126 struct command_line *c2;
1128 gdb_assert (while_stepping->body_list_1 == nullptr);
1129 c2 = while_stepping->body_list_0.get ();
1130 for (; c2; c2 = c2->next)
1132 if (c2->control_type == while_stepping_control)
1133 error (_("The 'while-stepping' command cannot be nested"));
1139 check_no_tracepoint_commands (commands);
1143 /* Return a vector of all the static tracepoints set at ADDR. The
1144 caller is responsible for releasing the vector. */
1146 std::vector<breakpoint *>
1147 static_tracepoints_here (CORE_ADDR addr)
1149 struct breakpoint *b;
1150 std::vector<breakpoint *> found;
1151 struct bp_location *loc;
1154 if (b->type == bp_static_tracepoint)
1156 for (loc = b->loc; loc; loc = loc->next)
1157 if (loc->address == addr)
1158 found.push_back (b);
1164 /* Set the command list of B to COMMANDS. If breakpoint is tracepoint,
1165 validate that only allowed commands are included. */
1168 breakpoint_set_commands (struct breakpoint *b,
1169 counted_command_line &&commands)
1171 validate_commands_for_breakpoint (b, commands.get ());
1173 b->commands = std::move (commands);
1174 gdb::observers::breakpoint_modified.notify (b);
1177 /* Set the internal `silent' flag on the breakpoint. Note that this
1178 is not the same as the "silent" that may appear in the breakpoint's
1182 breakpoint_set_silent (struct breakpoint *b, int silent)
1184 int old_silent = b->silent;
1187 if (old_silent != silent)
1188 gdb::observers::breakpoint_modified.notify (b);
1191 /* Set the thread for this breakpoint. If THREAD is -1, make the
1192 breakpoint work for any thread. */
1195 breakpoint_set_thread (struct breakpoint *b, int thread)
1197 int old_thread = b->thread;
1200 if (old_thread != thread)
1201 gdb::observers::breakpoint_modified.notify (b);
1204 /* Set the task for this breakpoint. If TASK is 0, make the
1205 breakpoint work for any task. */
1208 breakpoint_set_task (struct breakpoint *b, int task)
1210 int old_task = b->task;
1213 if (old_task != task)
1214 gdb::observers::breakpoint_modified.notify (b);
1218 commands_command_1 (const char *arg, int from_tty,
1219 struct command_line *control)
1221 counted_command_line cmd;
1223 std::string new_arg;
1225 if (arg == NULL || !*arg)
1227 if (breakpoint_count - prev_breakpoint_count > 1)
1228 new_arg = string_printf ("%d-%d", prev_breakpoint_count + 1,
1230 else if (breakpoint_count > 0)
1231 new_arg = string_printf ("%d", breakpoint_count);
1232 arg = new_arg.c_str ();
1235 map_breakpoint_numbers
1236 (arg, [&] (breakpoint *b)
1240 if (control != NULL)
1241 cmd = control->body_list_0;
1245 = string_printf (_("Type commands for breakpoint(s) "
1246 "%s, one per line."),
1249 auto do_validate = [=] (const char *line)
1251 validate_actionline (line, b);
1253 gdb::function_view<void (const char *)> validator;
1254 if (is_tracepoint (b))
1255 validator = do_validate;
1257 cmd = read_command_lines (str.c_str (), from_tty, 1, validator);
1261 /* If a breakpoint was on the list more than once, we don't need to
1263 if (b->commands != cmd)
1265 validate_commands_for_breakpoint (b, cmd.get ());
1267 gdb::observers::breakpoint_modified.notify (b);
1273 commands_command (const char *arg, int from_tty)
1275 commands_command_1 (arg, from_tty, NULL);
1278 /* Like commands_command, but instead of reading the commands from
1279 input stream, takes them from an already parsed command structure.
1281 This is used by cli-script.c to DTRT with breakpoint commands
1282 that are part of if and while bodies. */
1283 enum command_control_type
1284 commands_from_control_command (const char *arg, struct command_line *cmd)
1286 commands_command_1 (arg, 0, cmd);
1287 return simple_control;
1290 /* Return non-zero if BL->TARGET_INFO contains valid information. */
1293 bp_location_has_shadow (struct bp_location *bl)
1295 if (bl->loc_type != bp_loc_software_breakpoint)
1299 if (bl->target_info.shadow_len == 0)
1300 /* BL isn't valid, or doesn't shadow memory. */
1305 /* Update BUF, which is LEN bytes read from the target address
1306 MEMADDR, by replacing a memory breakpoint with its shadowed
1309 If READBUF is not NULL, this buffer must not overlap with the of
1310 the breakpoint location's shadow_contents buffer. Otherwise, a
1311 failed assertion internal error will be raised. */
1314 one_breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1315 const gdb_byte *writebuf_org,
1316 ULONGEST memaddr, LONGEST len,
1317 struct bp_target_info *target_info,
1318 struct gdbarch *gdbarch)
1320 /* Now do full processing of the found relevant range of elements. */
1321 CORE_ADDR bp_addr = 0;
1325 if (!breakpoint_address_match (target_info->placed_address_space, 0,
1326 current_program_space->aspace, 0))
1328 /* The breakpoint is inserted in a different address space. */
1332 /* Addresses and length of the part of the breakpoint that
1334 bp_addr = target_info->placed_address;
1335 bp_size = target_info->shadow_len;
1337 if (bp_addr + bp_size <= memaddr)
1339 /* The breakpoint is entirely before the chunk of memory we are
1344 if (bp_addr >= memaddr + len)
1346 /* The breakpoint is entirely after the chunk of memory we are
1351 /* Offset within shadow_contents. */
1352 if (bp_addr < memaddr)
1354 /* Only copy the second part of the breakpoint. */
1355 bp_size -= memaddr - bp_addr;
1356 bptoffset = memaddr - bp_addr;
1360 if (bp_addr + bp_size > memaddr + len)
1362 /* Only copy the first part of the breakpoint. */
1363 bp_size -= (bp_addr + bp_size) - (memaddr + len);
1366 if (readbuf != NULL)
1368 /* Verify that the readbuf buffer does not overlap with the
1369 shadow_contents buffer. */
1370 gdb_assert (target_info->shadow_contents >= readbuf + len
1371 || readbuf >= (target_info->shadow_contents
1372 + target_info->shadow_len));
1374 /* Update the read buffer with this inserted breakpoint's
1376 memcpy (readbuf + bp_addr - memaddr,
1377 target_info->shadow_contents + bptoffset, bp_size);
1381 const unsigned char *bp;
1382 CORE_ADDR addr = target_info->reqstd_address;
1385 /* Update the shadow with what we want to write to memory. */
1386 memcpy (target_info->shadow_contents + bptoffset,
1387 writebuf_org + bp_addr - memaddr, bp_size);
1389 /* Determine appropriate breakpoint contents and size for this
1391 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &placed_size);
1393 /* Update the final write buffer with this inserted
1394 breakpoint's INSN. */
1395 memcpy (writebuf + bp_addr - memaddr, bp + bptoffset, bp_size);
1399 /* Update BUF, which is LEN bytes read from the target address MEMADDR,
1400 by replacing any memory breakpoints with their shadowed contents.
1402 If READBUF is not NULL, this buffer must not overlap with any of
1403 the breakpoint location's shadow_contents buffers. Otherwise,
1404 a failed assertion internal error will be raised.
1406 The range of shadowed area by each bp_location is:
1407 bl->address - bp_locations_placed_address_before_address_max
1408 up to bl->address + bp_locations_shadow_len_after_address_max
1409 The range we were requested to resolve shadows for is:
1410 memaddr ... memaddr + len
1411 Thus the safe cutoff boundaries for performance optimization are
1412 memaddr + len <= (bl->address
1413 - bp_locations_placed_address_before_address_max)
1415 bl->address + bp_locations_shadow_len_after_address_max <= memaddr */
1418 breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1419 const gdb_byte *writebuf_org,
1420 ULONGEST memaddr, LONGEST len)
1422 /* Left boundary, right boundary and median element of our binary
1424 unsigned bc_l, bc_r, bc;
1426 /* Find BC_L which is a leftmost element which may affect BUF
1427 content. It is safe to report lower value but a failure to
1428 report higher one. */
1431 bc_r = bp_locations_count;
1432 while (bc_l + 1 < bc_r)
1434 struct bp_location *bl;
1436 bc = (bc_l + bc_r) / 2;
1437 bl = bp_locations[bc];
1439 /* Check first BL->ADDRESS will not overflow due to the added
1440 constant. Then advance the left boundary only if we are sure
1441 the BC element can in no way affect the BUF content (MEMADDR
1442 to MEMADDR + LEN range).
1444 Use the BP_LOCATIONS_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1445 offset so that we cannot miss a breakpoint with its shadow
1446 range tail still reaching MEMADDR. */
1448 if ((bl->address + bp_locations_shadow_len_after_address_max
1450 && (bl->address + bp_locations_shadow_len_after_address_max
1457 /* Due to the binary search above, we need to make sure we pick the
1458 first location that's at BC_L's address. E.g., if there are
1459 multiple locations at the same address, BC_L may end up pointing
1460 at a duplicate location, and miss the "master"/"inserted"
1461 location. Say, given locations L1, L2 and L3 at addresses A and
1464 L1@A, L2@A, L3@B, ...
1466 BC_L could end up pointing at location L2, while the "master"
1467 location could be L1. Since the `loc->inserted' flag is only set
1468 on "master" locations, we'd forget to restore the shadow of L1
1471 && bp_locations[bc_l]->address == bp_locations[bc_l - 1]->address)
1474 /* Now do full processing of the found relevant range of elements. */
1476 for (bc = bc_l; bc < bp_locations_count; bc++)
1478 struct bp_location *bl = bp_locations[bc];
1480 /* bp_location array has BL->OWNER always non-NULL. */
1481 if (bl->owner->type == bp_none)
1482 warning (_("reading through apparently deleted breakpoint #%d?"),
1485 /* Performance optimization: any further element can no longer affect BUF
1488 if (bl->address >= bp_locations_placed_address_before_address_max
1489 && memaddr + len <= (bl->address
1490 - bp_locations_placed_address_before_address_max))
1493 if (!bp_location_has_shadow (bl))
1496 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1497 memaddr, len, &bl->target_info, bl->gdbarch);
1503 /* Return true if BPT is either a software breakpoint or a hardware
1507 is_breakpoint (const struct breakpoint *bpt)
1509 return (bpt->type == bp_breakpoint
1510 || bpt->type == bp_hardware_breakpoint
1511 || bpt->type == bp_dprintf);
1514 /* Return true if BPT is of any hardware watchpoint kind. */
1517 is_hardware_watchpoint (const struct breakpoint *bpt)
1519 return (bpt->type == bp_hardware_watchpoint
1520 || bpt->type == bp_read_watchpoint
1521 || bpt->type == bp_access_watchpoint);
1524 /* Return true if BPT is of any watchpoint kind, hardware or
1528 is_watchpoint (const struct breakpoint *bpt)
1530 return (is_hardware_watchpoint (bpt)
1531 || bpt->type == bp_watchpoint);
1534 /* Returns true if the current thread and its running state are safe
1535 to evaluate or update watchpoint B. Watchpoints on local
1536 expressions need to be evaluated in the context of the thread that
1537 was current when the watchpoint was created, and, that thread needs
1538 to be stopped to be able to select the correct frame context.
1539 Watchpoints on global expressions can be evaluated on any thread,
1540 and in any state. It is presently left to the target allowing
1541 memory accesses when threads are running. */
1544 watchpoint_in_thread_scope (struct watchpoint *b)
1546 return (b->pspace == current_program_space
1547 && (b->watchpoint_thread == null_ptid
1548 || (inferior_ptid == b->watchpoint_thread
1549 && !inferior_thread ()->executing)));
1552 /* Set watchpoint B to disp_del_at_next_stop, even including its possible
1553 associated bp_watchpoint_scope breakpoint. */
1556 watchpoint_del_at_next_stop (struct watchpoint *w)
1558 if (w->related_breakpoint != w)
1560 gdb_assert (w->related_breakpoint->type == bp_watchpoint_scope);
1561 gdb_assert (w->related_breakpoint->related_breakpoint == w);
1562 w->related_breakpoint->disposition = disp_del_at_next_stop;
1563 w->related_breakpoint->related_breakpoint = w->related_breakpoint;
1564 w->related_breakpoint = w;
1566 w->disposition = disp_del_at_next_stop;
1569 /* Extract a bitfield value from value VAL using the bit parameters contained in
1572 static struct value *
1573 extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1575 struct value *bit_val;
1580 bit_val = allocate_value (value_type (val));
1582 unpack_value_bitfield (bit_val,
1585 value_contents_for_printing (val),
1592 /* Allocate a dummy location and add it to B, which must be a software
1593 watchpoint. This is required because even if a software watchpoint
1594 is not watching any memory, bpstat_stop_status requires a location
1595 to be able to report stops. */
1598 software_watchpoint_add_no_memory_location (struct breakpoint *b,
1599 struct program_space *pspace)
1601 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1603 b->loc = allocate_bp_location (b);
1604 b->loc->pspace = pspace;
1605 b->loc->address = -1;
1606 b->loc->length = -1;
1609 /* Returns true if B is a software watchpoint that is not watching any
1610 memory (e.g., "watch $pc"). */
1613 is_no_memory_software_watchpoint (struct breakpoint *b)
1615 return (b->type == bp_watchpoint
1617 && b->loc->next == NULL
1618 && b->loc->address == -1
1619 && b->loc->length == -1);
1622 /* Assuming that B is a watchpoint:
1623 - Reparse watchpoint expression, if REPARSE is non-zero
1624 - Evaluate expression and store the result in B->val
1625 - Evaluate the condition if there is one, and store the result
1627 - Update the list of values that must be watched in B->loc.
1629 If the watchpoint disposition is disp_del_at_next_stop, then do
1630 nothing. If this is local watchpoint that is out of scope, delete
1633 Even with `set breakpoint always-inserted on' the watchpoints are
1634 removed + inserted on each stop here. Normal breakpoints must
1635 never be removed because they might be missed by a running thread
1636 when debugging in non-stop mode. On the other hand, hardware
1637 watchpoints (is_hardware_watchpoint; processed here) are specific
1638 to each LWP since they are stored in each LWP's hardware debug
1639 registers. Therefore, such LWP must be stopped first in order to
1640 be able to modify its hardware watchpoints.
1642 Hardware watchpoints must be reset exactly once after being
1643 presented to the user. It cannot be done sooner, because it would
1644 reset the data used to present the watchpoint hit to the user. And
1645 it must not be done later because it could display the same single
1646 watchpoint hit during multiple GDB stops. Note that the latter is
1647 relevant only to the hardware watchpoint types bp_read_watchpoint
1648 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1649 not user-visible - its hit is suppressed if the memory content has
1652 The following constraints influence the location where we can reset
1653 hardware watchpoints:
1655 * target_stopped_by_watchpoint and target_stopped_data_address are
1656 called several times when GDB stops.
1659 * Multiple hardware watchpoints can be hit at the same time,
1660 causing GDB to stop. GDB only presents one hardware watchpoint
1661 hit at a time as the reason for stopping, and all the other hits
1662 are presented later, one after the other, each time the user
1663 requests the execution to be resumed. Execution is not resumed
1664 for the threads still having pending hit event stored in
1665 LWP_INFO->STATUS. While the watchpoint is already removed from
1666 the inferior on the first stop the thread hit event is kept being
1667 reported from its cached value by linux_nat_stopped_data_address
1668 until the real thread resume happens after the watchpoint gets
1669 presented and thus its LWP_INFO->STATUS gets reset.
1671 Therefore the hardware watchpoint hit can get safely reset on the
1672 watchpoint removal from inferior. */
1675 update_watchpoint (struct watchpoint *b, int reparse)
1677 int within_current_scope;
1678 struct frame_id saved_frame_id;
1681 /* If this is a local watchpoint, we only want to check if the
1682 watchpoint frame is in scope if the current thread is the thread
1683 that was used to create the watchpoint. */
1684 if (!watchpoint_in_thread_scope (b))
1687 if (b->disposition == disp_del_at_next_stop)
1692 /* Determine if the watchpoint is within scope. */
1693 if (b->exp_valid_block == NULL)
1694 within_current_scope = 1;
1697 struct frame_info *fi = get_current_frame ();
1698 struct gdbarch *frame_arch = get_frame_arch (fi);
1699 CORE_ADDR frame_pc = get_frame_pc (fi);
1701 /* If we're at a point where the stack has been destroyed
1702 (e.g. in a function epilogue), unwinding may not work
1703 properly. Do not attempt to recreate locations at this
1704 point. See similar comments in watchpoint_check. */
1705 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
1708 /* Save the current frame's ID so we can restore it after
1709 evaluating the watchpoint expression on its own frame. */
1710 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1711 took a frame parameter, so that we didn't have to change the
1714 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1716 fi = frame_find_by_id (b->watchpoint_frame);
1717 within_current_scope = (fi != NULL);
1718 if (within_current_scope)
1722 /* We don't free locations. They are stored in the bp_location array
1723 and update_global_location_list will eventually delete them and
1724 remove breakpoints if needed. */
1727 if (within_current_scope && reparse)
1732 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1733 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
1734 /* If the meaning of expression itself changed, the old value is
1735 no longer relevant. We don't want to report a watchpoint hit
1736 to the user when the old value and the new value may actually
1737 be completely different objects. */
1741 /* Note that unlike with breakpoints, the watchpoint's condition
1742 expression is stored in the breakpoint object, not in the
1743 locations (re)created below. */
1744 if (b->cond_string != NULL)
1746 b->cond_exp.reset ();
1749 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
1753 /* If we failed to parse the expression, for example because
1754 it refers to a global variable in a not-yet-loaded shared library,
1755 don't try to insert watchpoint. We don't automatically delete
1756 such watchpoint, though, since failure to parse expression
1757 is different from out-of-scope watchpoint. */
1758 if (!target_has_execution)
1760 /* Without execution, memory can't change. No use to try and
1761 set watchpoint locations. The watchpoint will be reset when
1762 the target gains execution, through breakpoint_re_set. */
1763 if (!can_use_hw_watchpoints)
1765 if (b->ops->works_in_software_mode (b))
1766 b->type = bp_watchpoint;
1768 error (_("Can't set read/access watchpoint when "
1769 "hardware watchpoints are disabled."));
1772 else if (within_current_scope && b->exp)
1775 std::vector<value_ref_ptr> val_chain;
1776 struct value *v, *result;
1777 struct program_space *frame_pspace;
1779 fetch_subexp_value (b->exp.get (), &pc, &v, &result, &val_chain, 0);
1781 /* Avoid setting b->val if it's already set. The meaning of
1782 b->val is 'the last value' user saw, and we should update
1783 it only if we reported that last value to user. As it
1784 happens, the code that reports it updates b->val directly.
1785 We don't keep track of the memory value for masked
1787 if (!b->val_valid && !is_masked_watchpoint (b))
1789 if (b->val_bitsize != 0)
1790 v = extract_bitfield_from_watchpoint_value (b, v);
1791 b->val = release_value (v);
1795 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1797 /* Look at each value on the value chain. */
1798 gdb_assert (!val_chain.empty ());
1799 for (const value_ref_ptr &iter : val_chain)
1803 /* If it's a memory location, and GDB actually needed
1804 its contents to evaluate the expression, then we
1805 must watch it. If the first value returned is
1806 still lazy, that means an error occurred reading it;
1807 watch it anyway in case it becomes readable. */
1808 if (VALUE_LVAL (v) == lval_memory
1809 && (v == val_chain[0] || ! value_lazy (v)))
1811 struct type *vtype = check_typedef (value_type (v));
1813 /* We only watch structs and arrays if user asked
1814 for it explicitly, never if they just happen to
1815 appear in the middle of some value chain. */
1817 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
1818 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
1821 enum target_hw_bp_type type;
1822 struct bp_location *loc, **tmp;
1823 int bitpos = 0, bitsize = 0;
1825 if (value_bitsize (v) != 0)
1827 /* Extract the bit parameters out from the bitfield
1829 bitpos = value_bitpos (v);
1830 bitsize = value_bitsize (v);
1832 else if (v == result && b->val_bitsize != 0)
1834 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
1835 lvalue whose bit parameters are saved in the fields
1836 VAL_BITPOS and VAL_BITSIZE. */
1837 bitpos = b->val_bitpos;
1838 bitsize = b->val_bitsize;
1841 addr = value_address (v);
1844 /* Skip the bytes that don't contain the bitfield. */
1849 if (b->type == bp_read_watchpoint)
1851 else if (b->type == bp_access_watchpoint)
1854 loc = allocate_bp_location (b);
1855 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1858 loc->gdbarch = get_type_arch (value_type (v));
1860 loc->pspace = frame_pspace;
1861 loc->address = address_significant (loc->gdbarch, addr);
1865 /* Just cover the bytes that make up the bitfield. */
1866 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
1869 loc->length = TYPE_LENGTH (value_type (v));
1871 loc->watchpoint_type = type;
1876 /* Change the type of breakpoint between hardware assisted or
1877 an ordinary watchpoint depending on the hardware support
1878 and free hardware slots. REPARSE is set when the inferior
1883 enum bp_loc_type loc_type;
1884 struct bp_location *bl;
1886 reg_cnt = can_use_hardware_watchpoint (val_chain);
1890 int i, target_resources_ok, other_type_used;
1893 /* Use an exact watchpoint when there's only one memory region to be
1894 watched, and only one debug register is needed to watch it. */
1895 b->exact = target_exact_watchpoints && reg_cnt == 1;
1897 /* We need to determine how many resources are already
1898 used for all other hardware watchpoints plus this one
1899 to see if we still have enough resources to also fit
1900 this watchpoint in as well. */
1902 /* If this is a software watchpoint, we try to turn it
1903 to a hardware one -- count resources as if B was of
1904 hardware watchpoint type. */
1906 if (type == bp_watchpoint)
1907 type = bp_hardware_watchpoint;
1909 /* This watchpoint may or may not have been placed on
1910 the list yet at this point (it won't be in the list
1911 if we're trying to create it for the first time,
1912 through watch_command), so always account for it
1915 /* Count resources used by all watchpoints except B. */
1916 i = hw_watchpoint_used_count_others (b, type, &other_type_used);
1918 /* Add in the resources needed for B. */
1919 i += hw_watchpoint_use_count (b);
1922 = target_can_use_hardware_watchpoint (type, i, other_type_used);
1923 if (target_resources_ok <= 0)
1925 int sw_mode = b->ops->works_in_software_mode (b);
1927 if (target_resources_ok == 0 && !sw_mode)
1928 error (_("Target does not support this type of "
1929 "hardware watchpoint."));
1930 else if (target_resources_ok < 0 && !sw_mode)
1931 error (_("There are not enough available hardware "
1932 "resources for this watchpoint."));
1934 /* Downgrade to software watchpoint. */
1935 b->type = bp_watchpoint;
1939 /* If this was a software watchpoint, we've just
1940 found we have enough resources to turn it to a
1941 hardware watchpoint. Otherwise, this is a
1946 else if (!b->ops->works_in_software_mode (b))
1948 if (!can_use_hw_watchpoints)
1949 error (_("Can't set read/access watchpoint when "
1950 "hardware watchpoints are disabled."));
1952 error (_("Expression cannot be implemented with "
1953 "read/access watchpoint."));
1956 b->type = bp_watchpoint;
1958 loc_type = (b->type == bp_watchpoint? bp_loc_other
1959 : bp_loc_hardware_watchpoint);
1960 for (bl = b->loc; bl; bl = bl->next)
1961 bl->loc_type = loc_type;
1964 /* If a software watchpoint is not watching any memory, then the
1965 above left it without any location set up. But,
1966 bpstat_stop_status requires a location to be able to report
1967 stops, so make sure there's at least a dummy one. */
1968 if (b->type == bp_watchpoint && b->loc == NULL)
1969 software_watchpoint_add_no_memory_location (b, frame_pspace);
1971 else if (!within_current_scope)
1973 printf_filtered (_("\
1974 Watchpoint %d deleted because the program has left the block\n\
1975 in which its expression is valid.\n"),
1977 watchpoint_del_at_next_stop (b);
1980 /* Restore the selected frame. */
1982 select_frame (frame_find_by_id (saved_frame_id));
1986 /* Returns 1 iff breakpoint location should be
1987 inserted in the inferior. We don't differentiate the type of BL's owner
1988 (breakpoint vs. tracepoint), although insert_location in tracepoint's
1989 breakpoint_ops is not defined, because in insert_bp_location,
1990 tracepoint's insert_location will not be called. */
1992 should_be_inserted (struct bp_location *bl)
1994 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
1997 if (bl->owner->disposition == disp_del_at_next_stop)
2000 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
2003 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2006 /* This is set for example, when we're attached to the parent of a
2007 vfork, and have detached from the child. The child is running
2008 free, and we expect it to do an exec or exit, at which point the
2009 OS makes the parent schedulable again (and the target reports
2010 that the vfork is done). Until the child is done with the shared
2011 memory region, do not insert breakpoints in the parent, otherwise
2012 the child could still trip on the parent's breakpoints. Since
2013 the parent is blocked anyway, it won't miss any breakpoint. */
2014 if (bl->pspace->breakpoints_not_allowed)
2017 /* Don't insert a breakpoint if we're trying to step past its
2018 location, except if the breakpoint is a single-step breakpoint,
2019 and the breakpoint's thread is the thread which is stepping past
2021 if ((bl->loc_type == bp_loc_software_breakpoint
2022 || bl->loc_type == bp_loc_hardware_breakpoint)
2023 && stepping_past_instruction_at (bl->pspace->aspace,
2025 /* The single-step breakpoint may be inserted at the location
2026 we're trying to step if the instruction branches to itself.
2027 However, the instruction won't be executed at all and it may
2028 break the semantics of the instruction, for example, the
2029 instruction is a conditional branch or updates some flags.
2030 We can't fix it unless GDB is able to emulate the instruction
2031 or switch to displaced stepping. */
2032 && !(bl->owner->type == bp_single_step
2033 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
2037 fprintf_unfiltered (gdb_stdlog,
2038 "infrun: skipping breakpoint: "
2039 "stepping past insn at: %s\n",
2040 paddress (bl->gdbarch, bl->address));
2045 /* Don't insert watchpoints if we're trying to step past the
2046 instruction that triggered one. */
2047 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2048 && stepping_past_nonsteppable_watchpoint ())
2052 fprintf_unfiltered (gdb_stdlog,
2053 "infrun: stepping past non-steppable watchpoint. "
2054 "skipping watchpoint at %s:%d\n",
2055 paddress (bl->gdbarch, bl->address),
2064 /* Same as should_be_inserted but does the check assuming
2065 that the location is not duplicated. */
2068 unduplicated_should_be_inserted (struct bp_location *bl)
2071 const int save_duplicate = bl->duplicate;
2074 result = should_be_inserted (bl);
2075 bl->duplicate = save_duplicate;
2079 /* Parses a conditional described by an expression COND into an
2080 agent expression bytecode suitable for evaluation
2081 by the bytecode interpreter. Return NULL if there was
2082 any error during parsing. */
2084 static agent_expr_up
2085 parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2090 agent_expr_up aexpr;
2092 /* We don't want to stop processing, so catch any errors
2093 that may show up. */
2096 aexpr = gen_eval_for_expr (scope, cond);
2099 CATCH (ex, RETURN_MASK_ERROR)
2101 /* If we got here, it means the condition could not be parsed to a valid
2102 bytecode expression and thus can't be evaluated on the target's side.
2103 It's no use iterating through the conditions. */
2107 /* We have a valid agent expression. */
2111 /* Based on location BL, create a list of breakpoint conditions to be
2112 passed on to the target. If we have duplicated locations with different
2113 conditions, we will add such conditions to the list. The idea is that the
2114 target will evaluate the list of conditions and will only notify GDB when
2115 one of them is true. */
2118 build_target_condition_list (struct bp_location *bl)
2120 struct bp_location **locp = NULL, **loc2p;
2121 int null_condition_or_parse_error = 0;
2122 int modified = bl->needs_update;
2123 struct bp_location *loc;
2125 /* Release conditions left over from a previous insert. */
2126 bl->target_info.conditions.clear ();
2128 /* This is only meaningful if the target is
2129 evaluating conditions and if the user has
2130 opted for condition evaluation on the target's
2132 if (gdb_evaluates_breakpoint_condition_p ()
2133 || !target_supports_evaluation_of_breakpoint_conditions ())
2136 /* Do a first pass to check for locations with no assigned
2137 conditions or conditions that fail to parse to a valid agent expression
2138 bytecode. If any of these happen, then it's no use to send conditions
2139 to the target since this location will always trigger and generate a
2140 response back to GDB. */
2141 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2144 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2148 /* Re-parse the conditions since something changed. In that
2149 case we already freed the condition bytecodes (see
2150 force_breakpoint_reinsertion). We just
2151 need to parse the condition to bytecodes again. */
2152 loc->cond_bytecode = parse_cond_to_aexpr (bl->address,
2156 /* If we have a NULL bytecode expression, it means something
2157 went wrong or we have a null condition expression. */
2158 if (!loc->cond_bytecode)
2160 null_condition_or_parse_error = 1;
2166 /* If any of these happened, it means we will have to evaluate the conditions
2167 for the location's address on gdb's side. It is no use keeping bytecodes
2168 for all the other duplicate locations, thus we free all of them here.
2170 This is so we have a finer control over which locations' conditions are
2171 being evaluated by GDB or the remote stub. */
2172 if (null_condition_or_parse_error)
2174 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2177 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2179 /* Only go as far as the first NULL bytecode is
2181 if (!loc->cond_bytecode)
2184 loc->cond_bytecode.reset ();
2189 /* No NULL conditions or failed bytecode generation. Build a condition list
2190 for this location's address. */
2191 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2195 && is_breakpoint (loc->owner)
2196 && loc->pspace->num == bl->pspace->num
2197 && loc->owner->enable_state == bp_enabled
2200 /* Add the condition to the vector. This will be used later
2201 to send the conditions to the target. */
2202 bl->target_info.conditions.push_back (loc->cond_bytecode.get ());
2209 /* Parses a command described by string CMD into an agent expression
2210 bytecode suitable for evaluation by the bytecode interpreter.
2211 Return NULL if there was any error during parsing. */
2213 static agent_expr_up
2214 parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2216 const char *cmdrest;
2217 const char *format_start, *format_end;
2218 struct gdbarch *gdbarch = get_current_arch ();
2225 if (*cmdrest == ',')
2227 cmdrest = skip_spaces (cmdrest);
2229 if (*cmdrest++ != '"')
2230 error (_("No format string following the location"));
2232 format_start = cmdrest;
2234 format_pieces fpieces (&cmdrest);
2236 format_end = cmdrest;
2238 if (*cmdrest++ != '"')
2239 error (_("Bad format string, non-terminated '\"'."));
2241 cmdrest = skip_spaces (cmdrest);
2243 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2244 error (_("Invalid argument syntax"));
2246 if (*cmdrest == ',')
2248 cmdrest = skip_spaces (cmdrest);
2250 /* For each argument, make an expression. */
2252 std::vector<struct expression *> argvec;
2253 while (*cmdrest != '\0')
2258 expression_up expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2259 argvec.push_back (expr.release ());
2261 if (*cmdrest == ',')
2265 agent_expr_up aexpr;
2267 /* We don't want to stop processing, so catch any errors
2268 that may show up. */
2271 aexpr = gen_printf (scope, gdbarch, 0, 0,
2272 format_start, format_end - format_start,
2273 argvec.size (), argvec.data ());
2275 CATCH (ex, RETURN_MASK_ERROR)
2277 /* If we got here, it means the command could not be parsed to a valid
2278 bytecode expression and thus can't be evaluated on the target's side.
2279 It's no use iterating through the other commands. */
2283 /* We have a valid agent expression, return it. */
2287 /* Based on location BL, create a list of breakpoint commands to be
2288 passed on to the target. If we have duplicated locations with
2289 different commands, we will add any such to the list. */
2292 build_target_command_list (struct bp_location *bl)
2294 struct bp_location **locp = NULL, **loc2p;
2295 int null_command_or_parse_error = 0;
2296 int modified = bl->needs_update;
2297 struct bp_location *loc;
2299 /* Clear commands left over from a previous insert. */
2300 bl->target_info.tcommands.clear ();
2302 if (!target_can_run_breakpoint_commands ())
2305 /* For now, limit to agent-style dprintf breakpoints. */
2306 if (dprintf_style != dprintf_style_agent)
2309 /* For now, if we have any duplicate location that isn't a dprintf,
2310 don't install the target-side commands, as that would make the
2311 breakpoint not be reported to the core, and we'd lose
2313 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2316 if (is_breakpoint (loc->owner)
2317 && loc->pspace->num == bl->pspace->num
2318 && loc->owner->type != bp_dprintf)
2322 /* Do a first pass to check for locations with no assigned
2323 conditions or conditions that fail to parse to a valid agent expression
2324 bytecode. If any of these happen, then it's no use to send conditions
2325 to the target since this location will always trigger and generate a
2326 response back to GDB. */
2327 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2330 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2334 /* Re-parse the commands since something changed. In that
2335 case we already freed the command bytecodes (see
2336 force_breakpoint_reinsertion). We just
2337 need to parse the command to bytecodes again. */
2339 = parse_cmd_to_aexpr (bl->address,
2340 loc->owner->extra_string);
2343 /* If we have a NULL bytecode expression, it means something
2344 went wrong or we have a null command expression. */
2345 if (!loc->cmd_bytecode)
2347 null_command_or_parse_error = 1;
2353 /* If anything failed, then we're not doing target-side commands,
2355 if (null_command_or_parse_error)
2357 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2360 if (is_breakpoint (loc->owner)
2361 && loc->pspace->num == bl->pspace->num)
2363 /* Only go as far as the first NULL bytecode is
2365 if (loc->cmd_bytecode == NULL)
2368 loc->cmd_bytecode.reset ();
2373 /* No NULL commands or failed bytecode generation. Build a command list
2374 for this location's address. */
2375 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2378 if (loc->owner->extra_string
2379 && is_breakpoint (loc->owner)
2380 && loc->pspace->num == bl->pspace->num
2381 && loc->owner->enable_state == bp_enabled
2384 /* Add the command to the vector. This will be used later
2385 to send the commands to the target. */
2386 bl->target_info.tcommands.push_back (loc->cmd_bytecode.get ());
2390 bl->target_info.persist = 0;
2391 /* Maybe flag this location as persistent. */
2392 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2393 bl->target_info.persist = 1;
2396 /* Return the kind of breakpoint on address *ADDR. Get the kind
2397 of breakpoint according to ADDR except single-step breakpoint.
2398 Get the kind of single-step breakpoint according to the current
2402 breakpoint_kind (struct bp_location *bl, CORE_ADDR *addr)
2404 if (bl->owner->type == bp_single_step)
2406 struct thread_info *thr = find_thread_global_id (bl->owner->thread);
2407 struct regcache *regcache;
2409 regcache = get_thread_regcache (thr);
2411 return gdbarch_breakpoint_kind_from_current_state (bl->gdbarch,
2415 return gdbarch_breakpoint_kind_from_pc (bl->gdbarch, addr);
2418 /* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2419 location. Any error messages are printed to TMP_ERROR_STREAM; and
2420 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
2421 Returns 0 for success, 1 if the bp_location type is not supported or
2424 NOTE drow/2003-09-09: This routine could be broken down to an
2425 object-style method for each breakpoint or catchpoint type. */
2427 insert_bp_location (struct bp_location *bl,
2428 struct ui_file *tmp_error_stream,
2429 int *disabled_breaks,
2430 int *hw_breakpoint_error,
2431 int *hw_bp_error_explained_already)
2433 gdb_exception bp_excpt = exception_none;
2435 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2438 /* Note we don't initialize bl->target_info, as that wipes out
2439 the breakpoint location's shadow_contents if the breakpoint
2440 is still inserted at that location. This in turn breaks
2441 target_read_memory which depends on these buffers when
2442 a memory read is requested at the breakpoint location:
2443 Once the target_info has been wiped, we fail to see that
2444 we have a breakpoint inserted at that address and thus
2445 read the breakpoint instead of returning the data saved in
2446 the breakpoint location's shadow contents. */
2447 bl->target_info.reqstd_address = bl->address;
2448 bl->target_info.placed_address_space = bl->pspace->aspace;
2449 bl->target_info.length = bl->length;
2451 /* When working with target-side conditions, we must pass all the conditions
2452 for the same breakpoint address down to the target since GDB will not
2453 insert those locations. With a list of breakpoint conditions, the target
2454 can decide when to stop and notify GDB. */
2456 if (is_breakpoint (bl->owner))
2458 build_target_condition_list (bl);
2459 build_target_command_list (bl);
2460 /* Reset the modification marker. */
2461 bl->needs_update = 0;
2464 if (bl->loc_type == bp_loc_software_breakpoint
2465 || bl->loc_type == bp_loc_hardware_breakpoint)
2467 if (bl->owner->type != bp_hardware_breakpoint)
2469 /* If the explicitly specified breakpoint type
2470 is not hardware breakpoint, check the memory map to see
2471 if the breakpoint address is in read only memory or not.
2473 Two important cases are:
2474 - location type is not hardware breakpoint, memory
2475 is readonly. We change the type of the location to
2476 hardware breakpoint.
2477 - location type is hardware breakpoint, memory is
2478 read-write. This means we've previously made the
2479 location hardware one, but then the memory map changed,
2482 When breakpoints are removed, remove_breakpoints will use
2483 location types we've just set here, the only possible
2484 problem is that memory map has changed during running
2485 program, but it's not going to work anyway with current
2487 struct mem_region *mr
2488 = lookup_mem_region (bl->target_info.reqstd_address);
2492 if (automatic_hardware_breakpoints)
2494 enum bp_loc_type new_type;
2496 if (mr->attrib.mode != MEM_RW)
2497 new_type = bp_loc_hardware_breakpoint;
2499 new_type = bp_loc_software_breakpoint;
2501 if (new_type != bl->loc_type)
2503 static int said = 0;
2505 bl->loc_type = new_type;
2508 fprintf_filtered (gdb_stdout,
2509 _("Note: automatically using "
2510 "hardware breakpoints for "
2511 "read-only addresses.\n"));
2516 else if (bl->loc_type == bp_loc_software_breakpoint
2517 && mr->attrib.mode != MEM_RW)
2519 fprintf_unfiltered (tmp_error_stream,
2520 _("Cannot insert breakpoint %d.\n"
2521 "Cannot set software breakpoint "
2522 "at read-only address %s\n"),
2524 paddress (bl->gdbarch, bl->address));
2530 /* First check to see if we have to handle an overlay. */
2531 if (overlay_debugging == ovly_off
2532 || bl->section == NULL
2533 || !(section_is_overlay (bl->section)))
2535 /* No overlay handling: just set the breakpoint. */
2540 val = bl->owner->ops->insert_location (bl);
2542 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2544 CATCH (e, RETURN_MASK_ALL)
2552 /* This breakpoint is in an overlay section.
2553 Shall we set a breakpoint at the LMA? */
2554 if (!overlay_events_enabled)
2556 /* Yes -- overlay event support is not active,
2557 so we must try to set a breakpoint at the LMA.
2558 This will not work for a hardware breakpoint. */
2559 if (bl->loc_type == bp_loc_hardware_breakpoint)
2560 warning (_("hardware breakpoint %d not supported in overlay!"),
2564 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2566 /* Set a software (trap) breakpoint at the LMA. */
2567 bl->overlay_target_info = bl->target_info;
2568 bl->overlay_target_info.reqstd_address = addr;
2570 /* No overlay handling: just set the breakpoint. */
2575 bl->overlay_target_info.kind
2576 = breakpoint_kind (bl, &addr);
2577 bl->overlay_target_info.placed_address = addr;
2578 val = target_insert_breakpoint (bl->gdbarch,
2579 &bl->overlay_target_info);
2582 = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2584 CATCH (e, RETURN_MASK_ALL)
2590 if (bp_excpt.reason != 0)
2591 fprintf_unfiltered (tmp_error_stream,
2592 "Overlay breakpoint %d "
2593 "failed: in ROM?\n",
2597 /* Shall we set a breakpoint at the VMA? */
2598 if (section_is_mapped (bl->section))
2600 /* Yes. This overlay section is mapped into memory. */
2605 val = bl->owner->ops->insert_location (bl);
2607 bp_excpt = gdb_exception {RETURN_ERROR, GENERIC_ERROR};
2609 CATCH (e, RETURN_MASK_ALL)
2617 /* No. This breakpoint will not be inserted.
2618 No error, but do not mark the bp as 'inserted'. */
2623 if (bp_excpt.reason != 0)
2625 /* Can't set the breakpoint. */
2627 /* In some cases, we might not be able to insert a
2628 breakpoint in a shared library that has already been
2629 removed, but we have not yet processed the shlib unload
2630 event. Unfortunately, some targets that implement
2631 breakpoint insertion themselves can't tell why the
2632 breakpoint insertion failed (e.g., the remote target
2633 doesn't define error codes), so we must treat generic
2634 errors as memory errors. */
2635 if (bp_excpt.reason == RETURN_ERROR
2636 && (bp_excpt.error == GENERIC_ERROR
2637 || bp_excpt.error == MEMORY_ERROR)
2638 && bl->loc_type == bp_loc_software_breakpoint
2639 && (solib_name_from_address (bl->pspace, bl->address)
2640 || shared_objfile_contains_address_p (bl->pspace,
2643 /* See also: disable_breakpoints_in_shlibs. */
2644 bl->shlib_disabled = 1;
2645 gdb::observers::breakpoint_modified.notify (bl->owner);
2646 if (!*disabled_breaks)
2648 fprintf_unfiltered (tmp_error_stream,
2649 "Cannot insert breakpoint %d.\n",
2651 fprintf_unfiltered (tmp_error_stream,
2652 "Temporarily disabling shared "
2653 "library breakpoints:\n");
2655 *disabled_breaks = 1;
2656 fprintf_unfiltered (tmp_error_stream,
2657 "breakpoint #%d\n", bl->owner->number);
2662 if (bl->loc_type == bp_loc_hardware_breakpoint)
2664 *hw_breakpoint_error = 1;
2665 *hw_bp_error_explained_already = bp_excpt.message != NULL;
2666 fprintf_unfiltered (tmp_error_stream,
2667 "Cannot insert hardware breakpoint %d%s",
2669 bp_excpt.message ? ":" : ".\n");
2670 if (bp_excpt.message != NULL)
2671 fprintf_unfiltered (tmp_error_stream, "%s.\n",
2676 if (bp_excpt.message == NULL)
2679 = memory_error_message (TARGET_XFER_E_IO,
2680 bl->gdbarch, bl->address);
2682 fprintf_unfiltered (tmp_error_stream,
2683 "Cannot insert breakpoint %d.\n"
2685 bl->owner->number, message.c_str ());
2689 fprintf_unfiltered (tmp_error_stream,
2690 "Cannot insert breakpoint %d: %s\n",
2705 else if (bl->loc_type == bp_loc_hardware_watchpoint
2706 /* NOTE drow/2003-09-08: This state only exists for removing
2707 watchpoints. It's not clear that it's necessary... */
2708 && bl->owner->disposition != disp_del_at_next_stop)
2712 gdb_assert (bl->owner->ops != NULL
2713 && bl->owner->ops->insert_location != NULL);
2715 val = bl->owner->ops->insert_location (bl);
2717 /* If trying to set a read-watchpoint, and it turns out it's not
2718 supported, try emulating one with an access watchpoint. */
2719 if (val == 1 && bl->watchpoint_type == hw_read)
2721 struct bp_location *loc, **loc_temp;
2723 /* But don't try to insert it, if there's already another
2724 hw_access location that would be considered a duplicate
2726 ALL_BP_LOCATIONS (loc, loc_temp)
2728 && loc->watchpoint_type == hw_access
2729 && watchpoint_locations_match (bl, loc))
2733 bl->target_info = loc->target_info;
2734 bl->watchpoint_type = hw_access;
2741 bl->watchpoint_type = hw_access;
2742 val = bl->owner->ops->insert_location (bl);
2745 /* Back to the original value. */
2746 bl->watchpoint_type = hw_read;
2750 bl->inserted = (val == 0);
2753 else if (bl->owner->type == bp_catchpoint)
2757 gdb_assert (bl->owner->ops != NULL
2758 && bl->owner->ops->insert_location != NULL);
2760 val = bl->owner->ops->insert_location (bl);
2763 bl->owner->enable_state = bp_disabled;
2767 Error inserting catchpoint %d: Your system does not support this type\n\
2768 of catchpoint."), bl->owner->number);
2770 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2773 bl->inserted = (val == 0);
2775 /* We've already printed an error message if there was a problem
2776 inserting this catchpoint, and we've disabled the catchpoint,
2777 so just return success. */
2784 /* This function is called when program space PSPACE is about to be
2785 deleted. It takes care of updating breakpoints to not reference
2789 breakpoint_program_space_exit (struct program_space *pspace)
2791 struct breakpoint *b, *b_temp;
2792 struct bp_location *loc, **loc_temp;
2794 /* Remove any breakpoint that was set through this program space. */
2795 ALL_BREAKPOINTS_SAFE (b, b_temp)
2797 if (b->pspace == pspace)
2798 delete_breakpoint (b);
2801 /* Breakpoints set through other program spaces could have locations
2802 bound to PSPACE as well. Remove those. */
2803 ALL_BP_LOCATIONS (loc, loc_temp)
2805 struct bp_location *tmp;
2807 if (loc->pspace == pspace)
2809 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
2810 if (loc->owner->loc == loc)
2811 loc->owner->loc = loc->next;
2813 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
2814 if (tmp->next == loc)
2816 tmp->next = loc->next;
2822 /* Now update the global location list to permanently delete the
2823 removed locations above. */
2824 update_global_location_list (UGLL_DONT_INSERT);
2827 /* Make sure all breakpoints are inserted in inferior.
2828 Throws exception on any error.
2829 A breakpoint that is already inserted won't be inserted
2830 again, so calling this function twice is safe. */
2832 insert_breakpoints (void)
2834 struct breakpoint *bpt;
2836 ALL_BREAKPOINTS (bpt)
2837 if (is_hardware_watchpoint (bpt))
2839 struct watchpoint *w = (struct watchpoint *) bpt;
2841 update_watchpoint (w, 0 /* don't reparse. */);
2844 /* Updating watchpoints creates new locations, so update the global
2845 location list. Explicitly tell ugll to insert locations and
2846 ignore breakpoints_always_inserted_mode. */
2847 update_global_location_list (UGLL_INSERT);
2850 /* Invoke CALLBACK for each of bp_location. */
2853 iterate_over_bp_locations (walk_bp_location_callback callback)
2855 struct bp_location *loc, **loc_tmp;
2857 ALL_BP_LOCATIONS (loc, loc_tmp)
2859 callback (loc, NULL);
2863 /* This is used when we need to synch breakpoint conditions between GDB and the
2864 target. It is the case with deleting and disabling of breakpoints when using
2865 always-inserted mode. */
2868 update_inserted_breakpoint_locations (void)
2870 struct bp_location *bl, **blp_tmp;
2873 int disabled_breaks = 0;
2874 int hw_breakpoint_error = 0;
2875 int hw_bp_details_reported = 0;
2877 string_file tmp_error_stream;
2879 /* Explicitly mark the warning -- this will only be printed if
2880 there was an error. */
2881 tmp_error_stream.puts ("Warning:\n");
2883 scoped_restore_current_pspace_and_thread restore_pspace_thread;
2885 ALL_BP_LOCATIONS (bl, blp_tmp)
2887 /* We only want to update software breakpoints and hardware
2889 if (!is_breakpoint (bl->owner))
2892 /* We only want to update locations that are already inserted
2893 and need updating. This is to avoid unwanted insertion during
2894 deletion of breakpoints. */
2895 if (!bl->inserted || (bl->inserted && !bl->needs_update))
2898 switch_to_program_space_and_thread (bl->pspace);
2900 /* For targets that support global breakpoints, there's no need
2901 to select an inferior to insert breakpoint to. In fact, even
2902 if we aren't attached to any process yet, we should still
2903 insert breakpoints. */
2904 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
2905 && inferior_ptid == null_ptid)
2908 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
2909 &hw_breakpoint_error, &hw_bp_details_reported);
2916 target_terminal::ours_for_output ();
2917 error_stream (tmp_error_stream);
2921 /* Used when starting or continuing the program. */
2924 insert_breakpoint_locations (void)
2926 struct breakpoint *bpt;
2927 struct bp_location *bl, **blp_tmp;
2930 int disabled_breaks = 0;
2931 int hw_breakpoint_error = 0;
2932 int hw_bp_error_explained_already = 0;
2934 string_file tmp_error_stream;
2936 /* Explicitly mark the warning -- this will only be printed if
2937 there was an error. */
2938 tmp_error_stream.puts ("Warning:\n");
2940 scoped_restore_current_pspace_and_thread restore_pspace_thread;
2942 ALL_BP_LOCATIONS (bl, blp_tmp)
2944 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2947 /* There is no point inserting thread-specific breakpoints if
2948 the thread no longer exists. ALL_BP_LOCATIONS bp_location
2949 has BL->OWNER always non-NULL. */
2950 if (bl->owner->thread != -1
2951 && !valid_global_thread_id (bl->owner->thread))
2954 switch_to_program_space_and_thread (bl->pspace);
2956 /* For targets that support global breakpoints, there's no need
2957 to select an inferior to insert breakpoint to. In fact, even
2958 if we aren't attached to any process yet, we should still
2959 insert breakpoints. */
2960 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
2961 && inferior_ptid == null_ptid)
2964 val = insert_bp_location (bl, &tmp_error_stream, &disabled_breaks,
2965 &hw_breakpoint_error, &hw_bp_error_explained_already);
2970 /* If we failed to insert all locations of a watchpoint, remove
2971 them, as half-inserted watchpoint is of limited use. */
2972 ALL_BREAKPOINTS (bpt)
2974 int some_failed = 0;
2975 struct bp_location *loc;
2977 if (!is_hardware_watchpoint (bpt))
2980 if (!breakpoint_enabled (bpt))
2983 if (bpt->disposition == disp_del_at_next_stop)
2986 for (loc = bpt->loc; loc; loc = loc->next)
2987 if (!loc->inserted && should_be_inserted (loc))
2994 for (loc = bpt->loc; loc; loc = loc->next)
2996 remove_breakpoint (loc);
2998 hw_breakpoint_error = 1;
2999 tmp_error_stream.printf ("Could not insert "
3000 "hardware watchpoint %d.\n",
3008 /* If a hardware breakpoint or watchpoint was inserted, add a
3009 message about possibly exhausted resources. */
3010 if (hw_breakpoint_error && !hw_bp_error_explained_already)
3012 tmp_error_stream.printf ("Could not insert hardware breakpoints:\n\
3013 You may have requested too many hardware breakpoints/watchpoints.\n");
3015 target_terminal::ours_for_output ();
3016 error_stream (tmp_error_stream);
3020 /* Used when the program stops.
3021 Returns zero if successful, or non-zero if there was a problem
3022 removing a breakpoint location. */
3025 remove_breakpoints (void)
3027 struct bp_location *bl, **blp_tmp;
3030 ALL_BP_LOCATIONS (bl, blp_tmp)
3032 if (bl->inserted && !is_tracepoint (bl->owner))
3033 val |= remove_breakpoint (bl);
3038 /* When a thread exits, remove breakpoints that are related to
3042 remove_threaded_breakpoints (struct thread_info *tp, int silent)
3044 struct breakpoint *b, *b_tmp;
3046 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3048 if (b->thread == tp->global_num && user_breakpoint_p (b))
3050 b->disposition = disp_del_at_next_stop;
3052 printf_filtered (_("\
3053 Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3054 b->number, print_thread_id (tp));
3056 /* Hide it from the user. */
3062 /* Remove breakpoints of inferior INF. */
3065 remove_breakpoints_inf (inferior *inf)
3067 struct bp_location *bl, **blp_tmp;
3070 ALL_BP_LOCATIONS (bl, blp_tmp)
3072 if (bl->pspace != inf->pspace)
3075 if (bl->inserted && !bl->target_info.persist)
3077 val = remove_breakpoint (bl);
3085 static int internal_breakpoint_number = -1;
3087 /* Set the breakpoint number of B, depending on the value of INTERNAL.
3088 If INTERNAL is non-zero, the breakpoint number will be populated
3089 from internal_breakpoint_number and that variable decremented.
3090 Otherwise the breakpoint number will be populated from
3091 breakpoint_count and that value incremented. Internal breakpoints
3092 do not set the internal var bpnum. */
3094 set_breakpoint_number (int internal, struct breakpoint *b)
3097 b->number = internal_breakpoint_number--;
3100 set_breakpoint_count (breakpoint_count + 1);
3101 b->number = breakpoint_count;
3105 static struct breakpoint *
3106 create_internal_breakpoint (struct gdbarch *gdbarch,
3107 CORE_ADDR address, enum bptype type,
3108 const struct breakpoint_ops *ops)
3110 symtab_and_line sal;
3112 sal.section = find_pc_overlay (sal.pc);
3113 sal.pspace = current_program_space;
3115 breakpoint *b = set_raw_breakpoint (gdbarch, sal, type, ops);
3116 b->number = internal_breakpoint_number--;
3117 b->disposition = disp_donttouch;
3122 static const char *const longjmp_names[] =
3124 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3126 #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3128 /* Per-objfile data private to breakpoint.c. */
3129 struct breakpoint_objfile_data
3131 /* Minimal symbol for "_ovly_debug_event" (if any). */
3132 struct bound_minimal_symbol overlay_msym {};
3134 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3135 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
3137 /* True if we have looked for longjmp probes. */
3138 int longjmp_searched = 0;
3140 /* SystemTap probe points for longjmp (if any). These are non-owning
3142 std::vector<probe *> longjmp_probes;
3144 /* Minimal symbol for "std::terminate()" (if any). */
3145 struct bound_minimal_symbol terminate_msym {};
3147 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3148 struct bound_minimal_symbol exception_msym {};
3150 /* True if we have looked for exception probes. */
3151 int exception_searched = 0;
3153 /* SystemTap probe points for unwinding (if any). These are non-owning
3155 std::vector<probe *> exception_probes;
3158 static const struct objfile_data *breakpoint_objfile_key;
3160 /* Minimal symbol not found sentinel. */
3161 static struct minimal_symbol msym_not_found;
3163 /* Returns TRUE if MSYM point to the "not found" sentinel. */
3166 msym_not_found_p (const struct minimal_symbol *msym)
3168 return msym == &msym_not_found;
3171 /* Return per-objfile data needed by breakpoint.c.
3172 Allocate the data if necessary. */
3174 static struct breakpoint_objfile_data *
3175 get_breakpoint_objfile_data (struct objfile *objfile)
3177 struct breakpoint_objfile_data *bp_objfile_data;
3179 bp_objfile_data = ((struct breakpoint_objfile_data *)
3180 objfile_data (objfile, breakpoint_objfile_key));
3181 if (bp_objfile_data == NULL)
3183 bp_objfile_data = new breakpoint_objfile_data ();
3184 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3186 return bp_objfile_data;
3190 free_breakpoint_objfile_data (struct objfile *obj, void *data)
3192 struct breakpoint_objfile_data *bp_objfile_data
3193 = (struct breakpoint_objfile_data *) data;
3195 delete bp_objfile_data;
3199 create_overlay_event_breakpoint (void)
3201 struct objfile *objfile;
3202 const char *const func_name = "_ovly_debug_event";
3204 ALL_OBJFILES (objfile)
3206 struct breakpoint *b;
3207 struct breakpoint_objfile_data *bp_objfile_data;
3209 struct explicit_location explicit_loc;
3211 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3213 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
3216 if (bp_objfile_data->overlay_msym.minsym == NULL)
3218 struct bound_minimal_symbol m;
3220 m = lookup_minimal_symbol_text (func_name, objfile);
3221 if (m.minsym == NULL)
3223 /* Avoid future lookups in this objfile. */
3224 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
3227 bp_objfile_data->overlay_msym = m;
3230 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
3231 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3233 &internal_breakpoint_ops);
3234 initialize_explicit_location (&explicit_loc);
3235 explicit_loc.function_name = ASTRDUP (func_name);
3236 b->location = new_explicit_location (&explicit_loc);
3238 if (overlay_debugging == ovly_auto)
3240 b->enable_state = bp_enabled;
3241 overlay_events_enabled = 1;
3245 b->enable_state = bp_disabled;
3246 overlay_events_enabled = 0;
3252 create_longjmp_master_breakpoint (void)
3254 struct program_space *pspace;
3256 scoped_restore_current_program_space restore_pspace;
3258 ALL_PSPACES (pspace)
3260 struct objfile *objfile;
3262 set_current_program_space (pspace);
3264 ALL_OBJFILES (objfile)
3267 struct gdbarch *gdbarch;
3268 struct breakpoint_objfile_data *bp_objfile_data;
3270 gdbarch = get_objfile_arch (objfile);
3272 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3274 if (!bp_objfile_data->longjmp_searched)
3276 std::vector<probe *> ret
3277 = find_probes_in_objfile (objfile, "libc", "longjmp");
3281 /* We are only interested in checking one element. */
3284 if (!p->can_evaluate_arguments ())
3286 /* We cannot use the probe interface here, because it does
3287 not know how to evaluate arguments. */
3291 bp_objfile_data->longjmp_probes = ret;
3292 bp_objfile_data->longjmp_searched = 1;
3295 if (!bp_objfile_data->longjmp_probes.empty ())
3297 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3299 for (probe *p : bp_objfile_data->longjmp_probes)
3301 struct breakpoint *b;
3303 b = create_internal_breakpoint (gdbarch,
3304 p->get_relocated_address (objfile),
3306 &internal_breakpoint_ops);
3307 b->location = new_probe_location ("-probe-stap libc:longjmp");
3308 b->enable_state = bp_disabled;
3314 if (!gdbarch_get_longjmp_target_p (gdbarch))
3317 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
3319 struct breakpoint *b;
3320 const char *func_name;
3322 struct explicit_location explicit_loc;
3324 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
3327 func_name = longjmp_names[i];
3328 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
3330 struct bound_minimal_symbol m;
3332 m = lookup_minimal_symbol_text (func_name, objfile);
3333 if (m.minsym == NULL)
3335 /* Prevent future lookups in this objfile. */
3336 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
3339 bp_objfile_data->longjmp_msym[i] = m;
3342 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
3343 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3344 &internal_breakpoint_ops);
3345 initialize_explicit_location (&explicit_loc);
3346 explicit_loc.function_name = ASTRDUP (func_name);
3347 b->location = new_explicit_location (&explicit_loc);
3348 b->enable_state = bp_disabled;
3354 /* Create a master std::terminate breakpoint. */
3356 create_std_terminate_master_breakpoint (void)
3358 struct program_space *pspace;
3359 const char *const func_name = "std::terminate()";
3361 scoped_restore_current_program_space restore_pspace;
3363 ALL_PSPACES (pspace)
3365 struct objfile *objfile;
3368 set_current_program_space (pspace);
3370 ALL_OBJFILES (objfile)
3372 struct breakpoint *b;
3373 struct breakpoint_objfile_data *bp_objfile_data;
3374 struct explicit_location explicit_loc;
3376 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3378 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
3381 if (bp_objfile_data->terminate_msym.minsym == NULL)
3383 struct bound_minimal_symbol m;
3385 m = lookup_minimal_symbol (func_name, NULL, objfile);
3386 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3387 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
3389 /* Prevent future lookups in this objfile. */
3390 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
3393 bp_objfile_data->terminate_msym = m;
3396 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
3397 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3398 bp_std_terminate_master,
3399 &internal_breakpoint_ops);
3400 initialize_explicit_location (&explicit_loc);
3401 explicit_loc.function_name = ASTRDUP (func_name);
3402 b->location = new_explicit_location (&explicit_loc);
3403 b->enable_state = bp_disabled;
3408 /* Install a master breakpoint on the unwinder's debug hook. */
3411 create_exception_master_breakpoint (void)
3413 struct objfile *objfile;
3414 const char *const func_name = "_Unwind_DebugHook";
3416 ALL_OBJFILES (objfile)
3418 struct breakpoint *b;
3419 struct gdbarch *gdbarch;
3420 struct breakpoint_objfile_data *bp_objfile_data;
3422 struct explicit_location explicit_loc;
3424 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3426 /* We prefer the SystemTap probe point if it exists. */
3427 if (!bp_objfile_data->exception_searched)
3429 std::vector<probe *> ret
3430 = find_probes_in_objfile (objfile, "libgcc", "unwind");
3434 /* We are only interested in checking one element. */
3437 if (!p->can_evaluate_arguments ())
3439 /* We cannot use the probe interface here, because it does
3440 not know how to evaluate arguments. */
3444 bp_objfile_data->exception_probes = ret;
3445 bp_objfile_data->exception_searched = 1;
3448 if (!bp_objfile_data->exception_probes.empty ())
3450 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3452 for (probe *p : bp_objfile_data->exception_probes)
3454 struct breakpoint *b;
3456 b = create_internal_breakpoint (gdbarch,
3457 p->get_relocated_address (objfile),
3458 bp_exception_master,
3459 &internal_breakpoint_ops);
3460 b->location = new_probe_location ("-probe-stap libgcc:unwind");
3461 b->enable_state = bp_disabled;
3467 /* Otherwise, try the hook function. */
3469 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
3472 gdbarch = get_objfile_arch (objfile);
3474 if (bp_objfile_data->exception_msym.minsym == NULL)
3476 struct bound_minimal_symbol debug_hook;
3478 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3479 if (debug_hook.minsym == NULL)
3481 bp_objfile_data->exception_msym.minsym = &msym_not_found;
3485 bp_objfile_data->exception_msym = debug_hook;
3488 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
3489 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3490 current_top_target ());
3491 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3492 &internal_breakpoint_ops);
3493 initialize_explicit_location (&explicit_loc);
3494 explicit_loc.function_name = ASTRDUP (func_name);
3495 b->location = new_explicit_location (&explicit_loc);
3496 b->enable_state = bp_disabled;
3500 /* Does B have a location spec? */
3503 breakpoint_event_location_empty_p (const struct breakpoint *b)
3505 return b->location != NULL && event_location_empty_p (b->location.get ());
3509 update_breakpoints_after_exec (void)
3511 struct breakpoint *b, *b_tmp;
3512 struct bp_location *bploc, **bplocp_tmp;
3514 /* We're about to delete breakpoints from GDB's lists. If the
3515 INSERTED flag is true, GDB will try to lift the breakpoints by
3516 writing the breakpoints' "shadow contents" back into memory. The
3517 "shadow contents" are NOT valid after an exec, so GDB should not
3518 do that. Instead, the target is responsible from marking
3519 breakpoints out as soon as it detects an exec. We don't do that
3520 here instead, because there may be other attempts to delete
3521 breakpoints after detecting an exec and before reaching here. */
3522 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
3523 if (bploc->pspace == current_program_space)
3524 gdb_assert (!bploc->inserted);
3526 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3528 if (b->pspace != current_program_space)
3531 /* Solib breakpoints must be explicitly reset after an exec(). */
3532 if (b->type == bp_shlib_event)
3534 delete_breakpoint (b);
3538 /* JIT breakpoints must be explicitly reset after an exec(). */
3539 if (b->type == bp_jit_event)
3541 delete_breakpoint (b);
3545 /* Thread event breakpoints must be set anew after an exec(),
3546 as must overlay event and longjmp master breakpoints. */
3547 if (b->type == bp_thread_event || b->type == bp_overlay_event
3548 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3549 || b->type == bp_exception_master)
3551 delete_breakpoint (b);
3555 /* Step-resume breakpoints are meaningless after an exec(). */
3556 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
3558 delete_breakpoint (b);
3562 /* Just like single-step breakpoints. */
3563 if (b->type == bp_single_step)
3565 delete_breakpoint (b);
3569 /* Longjmp and longjmp-resume breakpoints are also meaningless
3571 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
3572 || b->type == bp_longjmp_call_dummy
3573 || b->type == bp_exception || b->type == bp_exception_resume)
3575 delete_breakpoint (b);
3579 if (b->type == bp_catchpoint)
3581 /* For now, none of the bp_catchpoint breakpoints need to
3582 do anything at this point. In the future, if some of
3583 the catchpoints need to something, we will need to add
3584 a new method, and call this method from here. */
3588 /* bp_finish is a special case. The only way we ought to be able
3589 to see one of these when an exec() has happened, is if the user
3590 caught a vfork, and then said "finish". Ordinarily a finish just
3591 carries them to the call-site of the current callee, by setting
3592 a temporary bp there and resuming. But in this case, the finish
3593 will carry them entirely through the vfork & exec.
3595 We don't want to allow a bp_finish to remain inserted now. But
3596 we can't safely delete it, 'cause finish_command has a handle to
3597 the bp on a bpstat, and will later want to delete it. There's a
3598 chance (and I've seen it happen) that if we delete the bp_finish
3599 here, that its storage will get reused by the time finish_command
3600 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3601 We really must allow finish_command to delete a bp_finish.
3603 In the absence of a general solution for the "how do we know
3604 it's safe to delete something others may have handles to?"
3605 problem, what we'll do here is just uninsert the bp_finish, and
3606 let finish_command delete it.
3608 (We know the bp_finish is "doomed" in the sense that it's
3609 momentary, and will be deleted as soon as finish_command sees
3610 the inferior stopped. So it doesn't matter that the bp's
3611 address is probably bogus in the new a.out, unlike e.g., the
3612 solib breakpoints.) */
3614 if (b->type == bp_finish)
3619 /* Without a symbolic address, we have little hope of the
3620 pre-exec() address meaning the same thing in the post-exec()
3622 if (breakpoint_event_location_empty_p (b))
3624 delete_breakpoint (b);
3631 detach_breakpoints (ptid_t ptid)
3633 struct bp_location *bl, **blp_tmp;
3635 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
3636 struct inferior *inf = current_inferior ();
3638 if (ptid.pid () == inferior_ptid.pid ())
3639 error (_("Cannot detach breakpoints of inferior_ptid"));
3641 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
3642 inferior_ptid = ptid;
3643 ALL_BP_LOCATIONS (bl, blp_tmp)
3645 if (bl->pspace != inf->pspace)
3648 /* This function must physically remove breakpoints locations
3649 from the specified ptid, without modifying the breakpoint
3650 package's state. Locations of type bp_loc_other are only
3651 maintained at GDB side. So, there is no need to remove
3652 these bp_loc_other locations. Moreover, removing these
3653 would modify the breakpoint package's state. */
3654 if (bl->loc_type == bp_loc_other)
3658 val |= remove_breakpoint_1 (bl, DETACH_BREAKPOINT);
3664 /* Remove the breakpoint location BL from the current address space.
3665 Note that this is used to detach breakpoints from a child fork.
3666 When we get here, the child isn't in the inferior list, and neither
3667 do we have objects to represent its address space --- we should
3668 *not* look at bl->pspace->aspace here. */
3671 remove_breakpoint_1 (struct bp_location *bl, enum remove_bp_reason reason)
3675 /* BL is never in moribund_locations by our callers. */
3676 gdb_assert (bl->owner != NULL);
3678 /* The type of none suggests that owner is actually deleted.
3679 This should not ever happen. */
3680 gdb_assert (bl->owner->type != bp_none);
3682 if (bl->loc_type == bp_loc_software_breakpoint
3683 || bl->loc_type == bp_loc_hardware_breakpoint)
3685 /* "Normal" instruction breakpoint: either the standard
3686 trap-instruction bp (bp_breakpoint), or a
3687 bp_hardware_breakpoint. */
3689 /* First check to see if we have to handle an overlay. */
3690 if (overlay_debugging == ovly_off
3691 || bl->section == NULL
3692 || !(section_is_overlay (bl->section)))
3694 /* No overlay handling: just remove the breakpoint. */
3696 /* If we're trying to uninsert a memory breakpoint that we
3697 know is set in a dynamic object that is marked
3698 shlib_disabled, then either the dynamic object was
3699 removed with "remove-symbol-file" or with
3700 "nosharedlibrary". In the former case, we don't know
3701 whether another dynamic object might have loaded over the
3702 breakpoint's address -- the user might well let us know
3703 about it next with add-symbol-file (the whole point of
3704 add-symbol-file is letting the user manually maintain a
3705 list of dynamically loaded objects). If we have the
3706 breakpoint's shadow memory, that is, this is a software
3707 breakpoint managed by GDB, check whether the breakpoint
3708 is still inserted in memory, to avoid overwriting wrong
3709 code with stale saved shadow contents. Note that HW
3710 breakpoints don't have shadow memory, as they're
3711 implemented using a mechanism that is not dependent on
3712 being able to modify the target's memory, and as such
3713 they should always be removed. */
3714 if (bl->shlib_disabled
3715 && bl->target_info.shadow_len != 0
3716 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3719 val = bl->owner->ops->remove_location (bl, reason);
3723 /* This breakpoint is in an overlay section.
3724 Did we set a breakpoint at the LMA? */
3725 if (!overlay_events_enabled)
3727 /* Yes -- overlay event support is not active, so we
3728 should have set a breakpoint at the LMA. Remove it.
3730 /* Ignore any failures: if the LMA is in ROM, we will
3731 have already warned when we failed to insert it. */
3732 if (bl->loc_type == bp_loc_hardware_breakpoint)
3733 target_remove_hw_breakpoint (bl->gdbarch,
3734 &bl->overlay_target_info);
3736 target_remove_breakpoint (bl->gdbarch,
3737 &bl->overlay_target_info,
3740 /* Did we set a breakpoint at the VMA?
3741 If so, we will have marked the breakpoint 'inserted'. */
3744 /* Yes -- remove it. Previously we did not bother to
3745 remove the breakpoint if the section had been
3746 unmapped, but let's not rely on that being safe. We
3747 don't know what the overlay manager might do. */
3749 /* However, we should remove *software* breakpoints only
3750 if the section is still mapped, or else we overwrite
3751 wrong code with the saved shadow contents. */
3752 if (bl->loc_type == bp_loc_hardware_breakpoint
3753 || section_is_mapped (bl->section))
3754 val = bl->owner->ops->remove_location (bl, reason);
3760 /* No -- not inserted, so no need to remove. No error. */
3765 /* In some cases, we might not be able to remove a breakpoint in
3766 a shared library that has already been removed, but we have
3767 not yet processed the shlib unload event. Similarly for an
3768 unloaded add-symbol-file object - the user might not yet have
3769 had the chance to remove-symbol-file it. shlib_disabled will
3770 be set if the library/object has already been removed, but
3771 the breakpoint hasn't been uninserted yet, e.g., after
3772 "nosharedlibrary" or "remove-symbol-file" with breakpoints
3773 always-inserted mode. */
3775 && (bl->loc_type == bp_loc_software_breakpoint
3776 && (bl->shlib_disabled
3777 || solib_name_from_address (bl->pspace, bl->address)
3778 || shared_objfile_contains_address_p (bl->pspace,
3784 bl->inserted = (reason == DETACH_BREAKPOINT);
3786 else if (bl->loc_type == bp_loc_hardware_watchpoint)
3788 gdb_assert (bl->owner->ops != NULL
3789 && bl->owner->ops->remove_location != NULL);
3791 bl->inserted = (reason == DETACH_BREAKPOINT);
3792 bl->owner->ops->remove_location (bl, reason);
3794 /* Failure to remove any of the hardware watchpoints comes here. */
3795 if (reason == REMOVE_BREAKPOINT && bl->inserted)
3796 warning (_("Could not remove hardware watchpoint %d."),
3799 else if (bl->owner->type == bp_catchpoint
3800 && breakpoint_enabled (bl->owner)
3803 gdb_assert (bl->owner->ops != NULL
3804 && bl->owner->ops->remove_location != NULL);
3806 val = bl->owner->ops->remove_location (bl, reason);
3810 bl->inserted = (reason == DETACH_BREAKPOINT);
3817 remove_breakpoint (struct bp_location *bl)
3819 /* BL is never in moribund_locations by our callers. */
3820 gdb_assert (bl->owner != NULL);
3822 /* The type of none suggests that owner is actually deleted.
3823 This should not ever happen. */
3824 gdb_assert (bl->owner->type != bp_none);
3826 scoped_restore_current_pspace_and_thread restore_pspace_thread;
3828 switch_to_program_space_and_thread (bl->pspace);
3830 return remove_breakpoint_1 (bl, REMOVE_BREAKPOINT);
3833 /* Clear the "inserted" flag in all breakpoints. */
3836 mark_breakpoints_out (void)
3838 struct bp_location *bl, **blp_tmp;
3840 ALL_BP_LOCATIONS (bl, blp_tmp)
3841 if (bl->pspace == current_program_space)
3845 /* Clear the "inserted" flag in all breakpoints and delete any
3846 breakpoints which should go away between runs of the program.
3848 Plus other such housekeeping that has to be done for breakpoints
3851 Note: this function gets called at the end of a run (by
3852 generic_mourn_inferior) and when a run begins (by
3853 init_wait_for_inferior). */
3858 breakpoint_init_inferior (enum inf_context context)
3860 struct breakpoint *b, *b_tmp;
3861 struct program_space *pspace = current_program_space;
3863 /* If breakpoint locations are shared across processes, then there's
3865 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
3868 mark_breakpoints_out ();
3870 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3872 if (b->loc && b->loc->pspace != pspace)
3878 case bp_longjmp_call_dummy:
3880 /* If the call dummy breakpoint is at the entry point it will
3881 cause problems when the inferior is rerun, so we better get
3884 case bp_watchpoint_scope:
3886 /* Also get rid of scope breakpoints. */
3888 case bp_shlib_event:
3890 /* Also remove solib event breakpoints. Their addresses may
3891 have changed since the last time we ran the program.
3892 Actually we may now be debugging against different target;
3893 and so the solib backend that installed this breakpoint may
3894 not be used in by the target. E.g.,
3896 (gdb) file prog-linux
3897 (gdb) run # native linux target
3900 (gdb) file prog-win.exe
3901 (gdb) tar rem :9999 # remote Windows gdbserver.
3904 case bp_step_resume:
3906 /* Also remove step-resume breakpoints. */
3908 case bp_single_step:
3910 /* Also remove single-step breakpoints. */
3912 delete_breakpoint (b);
3916 case bp_hardware_watchpoint:
3917 case bp_read_watchpoint:
3918 case bp_access_watchpoint:
3920 struct watchpoint *w = (struct watchpoint *) b;
3922 /* Likewise for watchpoints on local expressions. */
3923 if (w->exp_valid_block != NULL)
3924 delete_breakpoint (b);
3927 /* Get rid of existing locations, which are no longer
3928 valid. New ones will be created in
3929 update_watchpoint, when the inferior is restarted.
3930 The next update_global_location_list call will
3931 garbage collect them. */
3934 if (context == inf_starting)
3936 /* Reset val field to force reread of starting value in
3937 insert_breakpoints. */
3938 w->val.reset (nullptr);
3949 /* Get rid of the moribund locations. */
3950 for (bp_location *bl : moribund_locations)
3951 decref_bp_location (&bl);
3952 moribund_locations.clear ();
3955 /* These functions concern about actual breakpoints inserted in the
3956 target --- to e.g. check if we need to do decr_pc adjustment or if
3957 we need to hop over the bkpt --- so we check for address space
3958 match, not program space. */
3960 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
3961 exists at PC. It returns ordinary_breakpoint_here if it's an
3962 ordinary breakpoint, or permanent_breakpoint_here if it's a
3963 permanent breakpoint.
3964 - When continuing from a location with an ordinary breakpoint, we
3965 actually single step once before calling insert_breakpoints.
3966 - When continuing from a location with a permanent breakpoint, we
3967 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
3968 the target, to advance the PC past the breakpoint. */
3970 enum breakpoint_here
3971 breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
3973 struct bp_location *bl, **blp_tmp;
3974 int any_breakpoint_here = 0;
3976 ALL_BP_LOCATIONS (bl, blp_tmp)
3978 if (bl->loc_type != bp_loc_software_breakpoint
3979 && bl->loc_type != bp_loc_hardware_breakpoint)
3982 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
3983 if ((breakpoint_enabled (bl->owner)
3985 && breakpoint_location_address_match (bl, aspace, pc))
3987 if (overlay_debugging
3988 && section_is_overlay (bl->section)
3989 && !section_is_mapped (bl->section))
3990 continue; /* unmapped overlay -- can't be a match */
3991 else if (bl->permanent)
3992 return permanent_breakpoint_here;
3994 any_breakpoint_here = 1;
3998 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
4001 /* See breakpoint.h. */
4004 breakpoint_in_range_p (const address_space *aspace,
4005 CORE_ADDR addr, ULONGEST len)
4007 struct bp_location *bl, **blp_tmp;
4009 ALL_BP_LOCATIONS (bl, blp_tmp)
4011 if (bl->loc_type != bp_loc_software_breakpoint
4012 && bl->loc_type != bp_loc_hardware_breakpoint)
4015 if ((breakpoint_enabled (bl->owner)
4017 && breakpoint_location_address_range_overlap (bl, aspace,
4020 if (overlay_debugging
4021 && section_is_overlay (bl->section)
4022 && !section_is_mapped (bl->section))
4024 /* Unmapped overlay -- can't be a match. */
4035 /* Return true if there's a moribund breakpoint at PC. */
4038 moribund_breakpoint_here_p (const address_space *aspace, CORE_ADDR pc)
4040 for (bp_location *loc : moribund_locations)
4041 if (breakpoint_location_address_match (loc, aspace, pc))
4047 /* Returns non-zero iff BL is inserted at PC, in address space
4051 bp_location_inserted_here_p (struct bp_location *bl,
4052 const address_space *aspace, CORE_ADDR pc)
4055 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4058 if (overlay_debugging
4059 && section_is_overlay (bl->section)
4060 && !section_is_mapped (bl->section))
4061 return 0; /* unmapped overlay -- can't be a match */
4068 /* Returns non-zero iff there's a breakpoint inserted at PC. */
4071 breakpoint_inserted_here_p (const address_space *aspace, CORE_ADDR pc)
4073 struct bp_location **blp, **blp_tmp = NULL;
4075 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4077 struct bp_location *bl = *blp;
4079 if (bl->loc_type != bp_loc_software_breakpoint
4080 && bl->loc_type != bp_loc_hardware_breakpoint)
4083 if (bp_location_inserted_here_p (bl, aspace, pc))
4089 /* This function returns non-zero iff there is a software breakpoint
4093 software_breakpoint_inserted_here_p (const address_space *aspace,
4096 struct bp_location **blp, **blp_tmp = NULL;
4098 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4100 struct bp_location *bl = *blp;
4102 if (bl->loc_type != bp_loc_software_breakpoint)
4105 if (bp_location_inserted_here_p (bl, aspace, pc))
4112 /* See breakpoint.h. */
4115 hardware_breakpoint_inserted_here_p (const address_space *aspace,
4118 struct bp_location **blp, **blp_tmp = NULL;
4120 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4122 struct bp_location *bl = *blp;
4124 if (bl->loc_type != bp_loc_hardware_breakpoint)
4127 if (bp_location_inserted_here_p (bl, aspace, pc))
4135 hardware_watchpoint_inserted_in_range (const address_space *aspace,
4136 CORE_ADDR addr, ULONGEST len)
4138 struct breakpoint *bpt;
4140 ALL_BREAKPOINTS (bpt)
4142 struct bp_location *loc;
4144 if (bpt->type != bp_hardware_watchpoint
4145 && bpt->type != bp_access_watchpoint)
4148 if (!breakpoint_enabled (bpt))
4151 for (loc = bpt->loc; loc; loc = loc->next)
4152 if (loc->pspace->aspace == aspace && loc->inserted)
4156 /* Check for intersection. */
4157 l = std::max<CORE_ADDR> (loc->address, addr);
4158 h = std::min<CORE_ADDR> (loc->address + loc->length, addr + len);
4167 /* bpstat stuff. External routines' interfaces are documented
4171 is_catchpoint (struct breakpoint *ep)
4173 return (ep->type == bp_catchpoint);
4176 /* Frees any storage that is part of a bpstat. Does not walk the
4179 bpstats::~bpstats ()
4181 if (bp_location_at != NULL)
4182 decref_bp_location (&bp_location_at);
4185 /* Clear a bpstat so that it says we are not at any breakpoint.
4186 Also free any storage that is part of a bpstat. */
4189 bpstat_clear (bpstat *bsp)
4206 bpstats::bpstats (const bpstats &other)
4208 bp_location_at (other.bp_location_at),
4209 breakpoint_at (other.breakpoint_at),
4210 commands (other.commands),
4211 print (other.print),
4213 print_it (other.print_it)
4215 if (other.old_val != NULL)
4216 old_val = release_value (value_copy (other.old_val.get ()));
4217 incref_bp_location (bp_location_at);
4220 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4221 is part of the bpstat is copied as well. */
4224 bpstat_copy (bpstat bs)
4228 bpstat retval = NULL;
4233 for (; bs != NULL; bs = bs->next)
4235 tmp = new bpstats (*bs);
4238 /* This is the first thing in the chain. */
4248 /* Find the bpstat associated with this breakpoint. */
4251 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
4256 for (; bsp != NULL; bsp = bsp->next)
4258 if (bsp->breakpoint_at == breakpoint)
4264 /* See breakpoint.h. */
4267 bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
4269 for (; bsp != NULL; bsp = bsp->next)
4271 if (bsp->breakpoint_at == NULL)
4273 /* A moribund location can never explain a signal other than
4275 if (sig == GDB_SIGNAL_TRAP)
4280 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4289 /* Put in *NUM the breakpoint number of the first breakpoint we are
4290 stopped at. *BSP upon return is a bpstat which points to the
4291 remaining breakpoints stopped at (but which is not guaranteed to be
4292 good for anything but further calls to bpstat_num).
4294 Return 0 if passed a bpstat which does not indicate any breakpoints.
4295 Return -1 if stopped at a breakpoint that has been deleted since
4297 Return 1 otherwise. */
4300 bpstat_num (bpstat *bsp, int *num)
4302 struct breakpoint *b;
4305 return 0; /* No more breakpoint values */
4307 /* We assume we'll never have several bpstats that correspond to a
4308 single breakpoint -- otherwise, this function might return the
4309 same number more than once and this will look ugly. */
4310 b = (*bsp)->breakpoint_at;
4311 *bsp = (*bsp)->next;
4313 return -1; /* breakpoint that's been deleted since */
4315 *num = b->number; /* We have its number */
4319 /* See breakpoint.h. */
4322 bpstat_clear_actions (void)
4326 if (inferior_ptid == null_ptid)
4329 thread_info *tp = inferior_thread ();
4330 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
4332 bs->commands = NULL;
4333 bs->old_val.reset (nullptr);
4337 /* Called when a command is about to proceed the inferior. */
4340 breakpoint_about_to_proceed (void)
4342 if (inferior_ptid != null_ptid)
4344 struct thread_info *tp = inferior_thread ();
4346 /* Allow inferior function calls in breakpoint commands to not
4347 interrupt the command list. When the call finishes
4348 successfully, the inferior will be standing at the same
4349 breakpoint as if nothing happened. */
4350 if (tp->control.in_infcall)
4354 breakpoint_proceeded = 1;
4357 /* Return non-zero iff CMD as the first line of a command sequence is `silent'
4358 or its equivalent. */
4361 command_line_is_silent (struct command_line *cmd)
4363 return cmd && (strcmp ("silent", cmd->line) == 0);
4366 /* Execute all the commands associated with all the breakpoints at
4367 this location. Any of these commands could cause the process to
4368 proceed beyond this point, etc. We look out for such changes by
4369 checking the global "breakpoint_proceeded" after each command.
4371 Returns true if a breakpoint command resumed the inferior. In that
4372 case, it is the caller's responsibility to recall it again with the
4373 bpstat of the current thread. */
4376 bpstat_do_actions_1 (bpstat *bsp)
4381 /* Avoid endless recursion if a `source' command is contained
4383 if (executing_breakpoint_commands)
4386 scoped_restore save_executing
4387 = make_scoped_restore (&executing_breakpoint_commands, 1);
4389 scoped_restore preventer = prevent_dont_repeat ();
4391 /* This pointer will iterate over the list of bpstat's. */
4394 breakpoint_proceeded = 0;
4395 for (; bs != NULL; bs = bs->next)
4397 struct command_line *cmd = NULL;
4399 /* Take ownership of the BSP's command tree, if it has one.
4401 The command tree could legitimately contain commands like
4402 'step' and 'next', which call clear_proceed_status, which
4403 frees stop_bpstat's command tree. To make sure this doesn't
4404 free the tree we're executing out from under us, we need to
4405 take ownership of the tree ourselves. Since a given bpstat's
4406 commands are only executed once, we don't need to copy it; we
4407 can clear the pointer in the bpstat, and make sure we free
4408 the tree when we're done. */
4409 counted_command_line ccmd = bs->commands;
4410 bs->commands = NULL;
4413 if (command_line_is_silent (cmd))
4415 /* The action has been already done by bpstat_stop_status. */
4421 execute_control_command (cmd);
4423 if (breakpoint_proceeded)
4429 if (breakpoint_proceeded)
4431 if (current_ui->async)
4432 /* If we are in async mode, then the target might be still
4433 running, not stopped at any breakpoint, so nothing for
4434 us to do here -- just return to the event loop. */
4437 /* In sync mode, when execute_control_command returns
4438 we're already standing on the next breakpoint.
4439 Breakpoint commands for that stop were not run, since
4440 execute_command does not run breakpoint commands --
4441 only command_line_handler does, but that one is not
4442 involved in execution of breakpoint commands. So, we
4443 can now execute breakpoint commands. It should be
4444 noted that making execute_command do bpstat actions is
4445 not an option -- in this case we'll have recursive
4446 invocation of bpstat for each breakpoint with a
4447 command, and can easily blow up GDB stack. Instead, we
4448 return true, which will trigger the caller to recall us
4449 with the new stop_bpstat. */
4457 /* Helper for bpstat_do_actions. Get the current thread, if there's
4458 one, is alive and has execution. Return NULL otherwise. */
4460 static thread_info *
4461 get_bpstat_thread ()
4463 if (inferior_ptid == null_ptid || !target_has_execution)
4466 thread_info *tp = inferior_thread ();
4467 if (tp->state == THREAD_EXITED || tp->executing)
4473 bpstat_do_actions (void)
4475 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4478 /* Do any commands attached to breakpoint we are stopped at. */
4479 while ((tp = get_bpstat_thread ()) != NULL)
4481 /* Since in sync mode, bpstat_do_actions may resume the
4482 inferior, and only return when it is stopped at the next
4483 breakpoint, we keep doing breakpoint actions until it returns
4484 false to indicate the inferior was not resumed. */
4485 if (!bpstat_do_actions_1 (&tp->control.stop_bpstat))
4489 discard_cleanups (cleanup_if_error);
4492 /* Print out the (old or new) value associated with a watchpoint. */
4495 watchpoint_value_print (struct value *val, struct ui_file *stream)
4498 fprintf_unfiltered (stream, _("<unreadable>"));
4501 struct value_print_options opts;
4502 get_user_print_options (&opts);
4503 value_print (val, stream, &opts);
4507 /* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4508 debugging multiple threads. */
4511 maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4513 if (uiout->is_mi_like_p ())
4518 if (show_thread_that_caused_stop ())
4521 struct thread_info *thr = inferior_thread ();
4523 uiout->text ("Thread ");
4524 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
4526 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4529 uiout->text (" \"");
4530 uiout->field_fmt ("name", "%s", name);
4534 uiout->text (" hit ");
4538 /* Generic routine for printing messages indicating why we
4539 stopped. The behavior of this function depends on the value
4540 'print_it' in the bpstat structure. Under some circumstances we
4541 may decide not to print anything here and delegate the task to
4544 static enum print_stop_action
4545 print_bp_stop_message (bpstat bs)
4547 switch (bs->print_it)
4550 /* Nothing should be printed for this bpstat entry. */
4551 return PRINT_UNKNOWN;
4555 /* We still want to print the frame, but we already printed the
4556 relevant messages. */
4557 return PRINT_SRC_AND_LOC;
4560 case print_it_normal:
4562 struct breakpoint *b = bs->breakpoint_at;
4564 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4565 which has since been deleted. */
4567 return PRINT_UNKNOWN;
4569 /* Normal case. Call the breakpoint's print_it method. */
4570 return b->ops->print_it (bs);
4575 internal_error (__FILE__, __LINE__,
4576 _("print_bp_stop_message: unrecognized enum value"));
4581 /* A helper function that prints a shared library stopped event. */
4584 print_solib_event (int is_catchpoint)
4586 bool any_deleted = !current_program_space->deleted_solibs.empty ();
4587 bool any_added = !current_program_space->added_solibs.empty ();
4591 if (any_added || any_deleted)
4592 current_uiout->text (_("Stopped due to shared library event:\n"));
4594 current_uiout->text (_("Stopped due to shared library event (no "
4595 "libraries added or removed)\n"));
4598 if (current_uiout->is_mi_like_p ())
4599 current_uiout->field_string ("reason",
4600 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4604 current_uiout->text (_(" Inferior unloaded "));
4605 ui_out_emit_list list_emitter (current_uiout, "removed");
4606 for (int ix = 0; ix < current_program_space->deleted_solibs.size (); ix++)
4608 const std::string &name = current_program_space->deleted_solibs[ix];
4611 current_uiout->text (" ");
4612 current_uiout->field_string ("library", name);
4613 current_uiout->text ("\n");
4619 current_uiout->text (_(" Inferior loaded "));
4620 ui_out_emit_list list_emitter (current_uiout, "added");
4622 for (so_list *iter : current_program_space->added_solibs)
4625 current_uiout->text (" ");
4627 current_uiout->field_string ("library", iter->so_name);
4628 current_uiout->text ("\n");
4633 /* Print a message indicating what happened. This is called from
4634 normal_stop(). The input to this routine is the head of the bpstat
4635 list - a list of the eventpoints that caused this stop. KIND is
4636 the target_waitkind for the stopping event. This
4637 routine calls the generic print routine for printing a message
4638 about reasons for stopping. This will print (for example) the
4639 "Breakpoint n," part of the output. The return value of this
4642 PRINT_UNKNOWN: Means we printed nothing.
4643 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4644 code to print the location. An example is
4645 "Breakpoint 1, " which should be followed by
4647 PRINT_SRC_ONLY: Means we printed something, but there is no need
4648 to also print the location part of the message.
4649 An example is the catch/throw messages, which
4650 don't require a location appended to the end.
4651 PRINT_NOTHING: We have done some printing and we don't need any
4652 further info to be printed. */
4654 enum print_stop_action
4655 bpstat_print (bpstat bs, int kind)
4657 enum print_stop_action val;
4659 /* Maybe another breakpoint in the chain caused us to stop.
4660 (Currently all watchpoints go on the bpstat whether hit or not.
4661 That probably could (should) be changed, provided care is taken
4662 with respect to bpstat_explains_signal). */
4663 for (; bs; bs = bs->next)
4665 val = print_bp_stop_message (bs);
4666 if (val == PRINT_SRC_ONLY
4667 || val == PRINT_SRC_AND_LOC
4668 || val == PRINT_NOTHING)
4672 /* If we had hit a shared library event breakpoint,
4673 print_bp_stop_message would print out this message. If we hit an
4674 OS-level shared library event, do the same thing. */
4675 if (kind == TARGET_WAITKIND_LOADED)
4677 print_solib_event (0);
4678 return PRINT_NOTHING;
4681 /* We reached the end of the chain, or we got a null BS to start
4682 with and nothing was printed. */
4683 return PRINT_UNKNOWN;
4686 /* Evaluate the boolean expression EXP and return the result. */
4689 breakpoint_cond_eval (expression *exp)
4691 struct value *mark = value_mark ();
4692 bool res = value_true (evaluate_expression (exp));
4694 value_free_to_mark (mark);
4698 /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
4700 bpstats::bpstats (struct bp_location *bl, bpstat **bs_link_pointer)
4702 bp_location_at (bl),
4703 breakpoint_at (bl->owner),
4707 print_it (print_it_normal)
4709 incref_bp_location (bl);
4710 **bs_link_pointer = this;
4711 *bs_link_pointer = &next;
4716 bp_location_at (NULL),
4717 breakpoint_at (NULL),
4721 print_it (print_it_normal)
4725 /* The target has stopped with waitstatus WS. Check if any hardware
4726 watchpoints have triggered, according to the target. */
4729 watchpoints_triggered (struct target_waitstatus *ws)
4731 bool stopped_by_watchpoint = target_stopped_by_watchpoint ();
4733 struct breakpoint *b;
4735 if (!stopped_by_watchpoint)
4737 /* We were not stopped by a watchpoint. Mark all watchpoints
4738 as not triggered. */
4740 if (is_hardware_watchpoint (b))
4742 struct watchpoint *w = (struct watchpoint *) b;
4744 w->watchpoint_triggered = watch_triggered_no;
4750 if (!target_stopped_data_address (current_top_target (), &addr))
4752 /* We were stopped by a watchpoint, but we don't know where.
4753 Mark all watchpoints as unknown. */
4755 if (is_hardware_watchpoint (b))
4757 struct watchpoint *w = (struct watchpoint *) b;
4759 w->watchpoint_triggered = watch_triggered_unknown;
4765 /* The target could report the data address. Mark watchpoints
4766 affected by this data address as triggered, and all others as not
4770 if (is_hardware_watchpoint (b))
4772 struct watchpoint *w = (struct watchpoint *) b;
4773 struct bp_location *loc;
4775 w->watchpoint_triggered = watch_triggered_no;
4776 for (loc = b->loc; loc; loc = loc->next)
4778 if (is_masked_watchpoint (b))
4780 CORE_ADDR newaddr = addr & w->hw_wp_mask;
4781 CORE_ADDR start = loc->address & w->hw_wp_mask;
4783 if (newaddr == start)
4785 w->watchpoint_triggered = watch_triggered_yes;
4789 /* Exact match not required. Within range is sufficient. */
4790 else if (target_watchpoint_addr_within_range (current_top_target (),
4794 w->watchpoint_triggered = watch_triggered_yes;
4803 /* Possible return values for watchpoint_check. */
4804 enum wp_check_result
4806 /* The watchpoint has been deleted. */
4809 /* The value has changed. */
4810 WP_VALUE_CHANGED = 2,
4812 /* The value has not changed. */
4813 WP_VALUE_NOT_CHANGED = 3,
4815 /* Ignore this watchpoint, no matter if the value changed or not. */
4819 #define BP_TEMPFLAG 1
4820 #define BP_HARDWAREFLAG 2
4822 /* Evaluate watchpoint condition expression and check if its value
4825 static wp_check_result
4826 watchpoint_check (bpstat bs)
4828 struct watchpoint *b;
4829 struct frame_info *fr;
4830 int within_current_scope;
4832 /* BS is built from an existing struct breakpoint. */
4833 gdb_assert (bs->breakpoint_at != NULL);
4834 b = (struct watchpoint *) bs->breakpoint_at;
4836 /* If this is a local watchpoint, we only want to check if the
4837 watchpoint frame is in scope if the current thread is the thread
4838 that was used to create the watchpoint. */
4839 if (!watchpoint_in_thread_scope (b))
4842 if (b->exp_valid_block == NULL)
4843 within_current_scope = 1;
4846 struct frame_info *frame = get_current_frame ();
4847 struct gdbarch *frame_arch = get_frame_arch (frame);
4848 CORE_ADDR frame_pc = get_frame_pc (frame);
4850 /* stack_frame_destroyed_p() returns a non-zero value if we're
4851 still in the function but the stack frame has already been
4852 invalidated. Since we can't rely on the values of local
4853 variables after the stack has been destroyed, we are treating
4854 the watchpoint in that state as `not changed' without further
4855 checking. Don't mark watchpoints as changed if the current
4856 frame is in an epilogue - even if they are in some other
4857 frame, our view of the stack is likely to be wrong and
4858 frame_find_by_id could error out. */
4859 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
4862 fr = frame_find_by_id (b->watchpoint_frame);
4863 within_current_scope = (fr != NULL);
4865 /* If we've gotten confused in the unwinder, we might have
4866 returned a frame that can't describe this variable. */
4867 if (within_current_scope)
4869 struct symbol *function;
4871 function = get_frame_function (fr);
4872 if (function == NULL
4873 || !contained_in (b->exp_valid_block,
4874 SYMBOL_BLOCK_VALUE (function)))
4875 within_current_scope = 0;
4878 if (within_current_scope)
4879 /* If we end up stopping, the current frame will get selected
4880 in normal_stop. So this call to select_frame won't affect
4885 if (within_current_scope)
4887 /* We use value_{,free_to_}mark because it could be a *long*
4888 time before we return to the command level and call
4889 free_all_values. We can't call free_all_values because we
4890 might be in the middle of evaluating a function call. */
4894 struct value *new_val;
4896 if (is_masked_watchpoint (b))
4897 /* Since we don't know the exact trigger address (from
4898 stopped_data_address), just tell the user we've triggered
4899 a mask watchpoint. */
4900 return WP_VALUE_CHANGED;
4902 mark = value_mark ();
4903 fetch_subexp_value (b->exp.get (), &pc, &new_val, NULL, NULL, 0);
4905 if (b->val_bitsize != 0)
4906 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
4908 /* We use value_equal_contents instead of value_equal because
4909 the latter coerces an array to a pointer, thus comparing just
4910 the address of the array instead of its contents. This is
4911 not what we want. */
4912 if ((b->val != NULL) != (new_val != NULL)
4913 || (b->val != NULL && !value_equal_contents (b->val.get (),
4916 bs->old_val = b->val;
4917 b->val = release_value (new_val);
4919 if (new_val != NULL)
4920 value_free_to_mark (mark);
4921 return WP_VALUE_CHANGED;
4925 /* Nothing changed. */
4926 value_free_to_mark (mark);
4927 return WP_VALUE_NOT_CHANGED;
4932 /* This seems like the only logical thing to do because
4933 if we temporarily ignored the watchpoint, then when
4934 we reenter the block in which it is valid it contains
4935 garbage (in the case of a function, it may have two
4936 garbage values, one before and one after the prologue).
4937 So we can't even detect the first assignment to it and
4938 watch after that (since the garbage may or may not equal
4939 the first value assigned). */
4940 /* We print all the stop information in
4941 breakpoint_ops->print_it, but in this case, by the time we
4942 call breakpoint_ops->print_it this bp will be deleted
4943 already. So we have no choice but print the information
4946 SWITCH_THRU_ALL_UIS ()
4948 struct ui_out *uiout = current_uiout;
4950 if (uiout->is_mi_like_p ())
4952 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
4953 uiout->text ("\nWatchpoint ");
4954 uiout->field_int ("wpnum", b->number);
4955 uiout->text (" deleted because the program has left the block in\n"
4956 "which its expression is valid.\n");
4959 /* Make sure the watchpoint's commands aren't executed. */
4961 watchpoint_del_at_next_stop (b);
4967 /* Return true if it looks like target has stopped due to hitting
4968 breakpoint location BL. This function does not check if we should
4969 stop, only if BL explains the stop. */
4972 bpstat_check_location (const struct bp_location *bl,
4973 const address_space *aspace, CORE_ADDR bp_addr,
4974 const struct target_waitstatus *ws)
4976 struct breakpoint *b = bl->owner;
4978 /* BL is from an existing breakpoint. */
4979 gdb_assert (b != NULL);
4981 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
4984 /* Determine if the watched values have actually changed, and we
4985 should stop. If not, set BS->stop to 0. */
4988 bpstat_check_watchpoint (bpstat bs)
4990 const struct bp_location *bl;
4991 struct watchpoint *b;
4993 /* BS is built for existing struct breakpoint. */
4994 bl = bs->bp_location_at;
4995 gdb_assert (bl != NULL);
4996 b = (struct watchpoint *) bs->breakpoint_at;
4997 gdb_assert (b != NULL);
5000 int must_check_value = 0;
5002 if (b->type == bp_watchpoint)
5003 /* For a software watchpoint, we must always check the
5005 must_check_value = 1;
5006 else if (b->watchpoint_triggered == watch_triggered_yes)
5007 /* We have a hardware watchpoint (read, write, or access)
5008 and the target earlier reported an address watched by
5010 must_check_value = 1;
5011 else if (b->watchpoint_triggered == watch_triggered_unknown
5012 && b->type == bp_hardware_watchpoint)
5013 /* We were stopped by a hardware watchpoint, but the target could
5014 not report the data address. We must check the watchpoint's
5015 value. Access and read watchpoints are out of luck; without
5016 a data address, we can't figure it out. */
5017 must_check_value = 1;
5019 if (must_check_value)
5025 e = watchpoint_check (bs);
5027 CATCH (ex, RETURN_MASK_ALL)
5029 exception_fprintf (gdb_stderr, ex,
5030 "Error evaluating expression "
5031 "for watchpoint %d\n",
5034 SWITCH_THRU_ALL_UIS ()
5036 printf_filtered (_("Watchpoint %d deleted.\n"),
5039 watchpoint_del_at_next_stop (b);
5047 /* We've already printed what needs to be printed. */
5048 bs->print_it = print_it_done;
5052 bs->print_it = print_it_noop;
5055 case WP_VALUE_CHANGED:
5056 if (b->type == bp_read_watchpoint)
5058 /* There are two cases to consider here:
5060 1. We're watching the triggered memory for reads.
5061 In that case, trust the target, and always report
5062 the watchpoint hit to the user. Even though
5063 reads don't cause value changes, the value may
5064 have changed since the last time it was read, and
5065 since we're not trapping writes, we will not see
5066 those, and as such we should ignore our notion of
5069 2. We're watching the triggered memory for both
5070 reads and writes. There are two ways this may
5073 2.1. This is a target that can't break on data
5074 reads only, but can break on accesses (reads or
5075 writes), such as e.g., x86. We detect this case
5076 at the time we try to insert read watchpoints.
5078 2.2. Otherwise, the target supports read
5079 watchpoints, but, the user set an access or write
5080 watchpoint watching the same memory as this read
5083 If we're watching memory writes as well as reads,
5084 ignore watchpoint hits when we find that the
5085 value hasn't changed, as reads don't cause
5086 changes. This still gives false positives when
5087 the program writes the same value to memory as
5088 what there was already in memory (we will confuse
5089 it for a read), but it's much better than
5092 int other_write_watchpoint = 0;
5094 if (bl->watchpoint_type == hw_read)
5096 struct breakpoint *other_b;
5098 ALL_BREAKPOINTS (other_b)
5099 if (other_b->type == bp_hardware_watchpoint
5100 || other_b->type == bp_access_watchpoint)
5102 struct watchpoint *other_w =
5103 (struct watchpoint *) other_b;
5105 if (other_w->watchpoint_triggered
5106 == watch_triggered_yes)
5108 other_write_watchpoint = 1;
5114 if (other_write_watchpoint
5115 || bl->watchpoint_type == hw_access)
5117 /* We're watching the same memory for writes,
5118 and the value changed since the last time we
5119 updated it, so this trap must be for a write.
5121 bs->print_it = print_it_noop;
5126 case WP_VALUE_NOT_CHANGED:
5127 if (b->type == bp_hardware_watchpoint
5128 || b->type == bp_watchpoint)
5130 /* Don't stop: write watchpoints shouldn't fire if
5131 the value hasn't changed. */
5132 bs->print_it = print_it_noop;
5142 else /* must_check_value == 0 */
5144 /* This is a case where some watchpoint(s) triggered, but
5145 not at the address of this watchpoint, or else no
5146 watchpoint triggered after all. So don't print
5147 anything for this watchpoint. */
5148 bs->print_it = print_it_noop;
5154 /* For breakpoints that are currently marked as telling gdb to stop,
5155 check conditions (condition proper, frame, thread and ignore count)
5156 of breakpoint referred to by BS. If we should not stop for this
5157 breakpoint, set BS->stop to 0. */
5160 bpstat_check_breakpoint_conditions (bpstat bs, thread_info *thread)
5162 const struct bp_location *bl;
5163 struct breakpoint *b;
5165 bool condition_result = true;
5166 struct expression *cond;
5168 gdb_assert (bs->stop);
5170 /* BS is built for existing struct breakpoint. */
5171 bl = bs->bp_location_at;
5172 gdb_assert (bl != NULL);
5173 b = bs->breakpoint_at;
5174 gdb_assert (b != NULL);
5176 /* Even if the target evaluated the condition on its end and notified GDB, we
5177 need to do so again since GDB does not know if we stopped due to a
5178 breakpoint or a single step breakpoint. */
5180 if (frame_id_p (b->frame_id)
5181 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
5187 /* If this is a thread/task-specific breakpoint, don't waste cpu
5188 evaluating the condition if this isn't the specified
5190 if ((b->thread != -1 && b->thread != thread->global_num)
5191 || (b->task != 0 && b->task != ada_get_task_number (thread)))
5197 /* Evaluate extension language breakpoints that have a "stop" method
5199 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
5201 if (is_watchpoint (b))
5203 struct watchpoint *w = (struct watchpoint *) b;
5205 cond = w->cond_exp.get ();
5208 cond = bl->cond.get ();
5210 if (cond && b->disposition != disp_del_at_next_stop)
5212 int within_current_scope = 1;
5213 struct watchpoint * w;
5215 /* We use value_mark and value_free_to_mark because it could
5216 be a long time before we return to the command level and
5217 call free_all_values. We can't call free_all_values
5218 because we might be in the middle of evaluating a
5220 struct value *mark = value_mark ();
5222 if (is_watchpoint (b))
5223 w = (struct watchpoint *) b;
5227 /* Need to select the frame, with all that implies so that
5228 the conditions will have the right context. Because we
5229 use the frame, we will not see an inlined function's
5230 variables when we arrive at a breakpoint at the start
5231 of the inlined function; the current frame will be the
5233 if (w == NULL || w->cond_exp_valid_block == NULL)
5234 select_frame (get_current_frame ());
5237 struct frame_info *frame;
5239 /* For local watchpoint expressions, which particular
5240 instance of a local is being watched matters, so we
5241 keep track of the frame to evaluate the expression
5242 in. To evaluate the condition however, it doesn't
5243 really matter which instantiation of the function
5244 where the condition makes sense triggers the
5245 watchpoint. This allows an expression like "watch
5246 global if q > 10" set in `func', catch writes to
5247 global on all threads that call `func', or catch
5248 writes on all recursive calls of `func' by a single
5249 thread. We simply always evaluate the condition in
5250 the innermost frame that's executing where it makes
5251 sense to evaluate the condition. It seems
5253 frame = block_innermost_frame (w->cond_exp_valid_block);
5255 select_frame (frame);
5257 within_current_scope = 0;
5259 if (within_current_scope)
5263 condition_result = breakpoint_cond_eval (cond);
5265 CATCH (ex, RETURN_MASK_ALL)
5267 exception_fprintf (gdb_stderr, ex,
5268 "Error in testing breakpoint condition:\n");
5274 warning (_("Watchpoint condition cannot be tested "
5275 "in the current scope"));
5276 /* If we failed to set the right context for this
5277 watchpoint, unconditionally report it. */
5279 /* FIXME-someday, should give breakpoint #. */
5280 value_free_to_mark (mark);
5283 if (cond && !condition_result)
5287 else if (b->ignore_count > 0)
5291 /* Increase the hit count even though we don't stop. */
5293 gdb::observers::breakpoint_modified.notify (b);
5297 /* Returns true if we need to track moribund locations of LOC's type
5298 on the current target. */
5301 need_moribund_for_location_type (struct bp_location *loc)
5303 return ((loc->loc_type == bp_loc_software_breakpoint
5304 && !target_supports_stopped_by_sw_breakpoint ())
5305 || (loc->loc_type == bp_loc_hardware_breakpoint
5306 && !target_supports_stopped_by_hw_breakpoint ()));
5309 /* See breakpoint.h. */
5312 build_bpstat_chain (const address_space *aspace, CORE_ADDR bp_addr,
5313 const struct target_waitstatus *ws)
5315 struct breakpoint *b;
5316 bpstat bs_head = NULL, *bs_link = &bs_head;
5320 if (!breakpoint_enabled (b))
5323 for (bp_location *bl = b->loc; bl != NULL; bl = bl->next)
5325 /* For hardware watchpoints, we look only at the first
5326 location. The watchpoint_check function will work on the
5327 entire expression, not the individual locations. For
5328 read watchpoints, the watchpoints_triggered function has
5329 checked all locations already. */
5330 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5333 if (!bl->enabled || bl->shlib_disabled)
5336 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
5339 /* Come here if it's a watchpoint, or if the break address
5342 bpstat bs = new bpstats (bl, &bs_link); /* Alloc a bpstat to
5345 /* Assume we stop. Should we find a watchpoint that is not
5346 actually triggered, or if the condition of the breakpoint
5347 evaluates as false, we'll reset 'stop' to 0. */
5351 /* If this is a scope breakpoint, mark the associated
5352 watchpoint as triggered so that we will handle the
5353 out-of-scope event. We'll get to the watchpoint next
5355 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
5357 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5359 w->watchpoint_triggered = watch_triggered_yes;
5364 /* Check if a moribund breakpoint explains the stop. */
5365 if (!target_supports_stopped_by_sw_breakpoint ()
5366 || !target_supports_stopped_by_hw_breakpoint ())
5368 for (bp_location *loc : moribund_locations)
5370 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5371 && need_moribund_for_location_type (loc))
5373 bpstat bs = new bpstats (loc, &bs_link);
5374 /* For hits of moribund locations, we should just proceed. */
5377 bs->print_it = print_it_noop;
5385 /* See breakpoint.h. */
5388 bpstat_stop_status (const address_space *aspace,
5389 CORE_ADDR bp_addr, thread_info *thread,
5390 const struct target_waitstatus *ws,
5393 struct breakpoint *b = NULL;
5394 /* First item of allocated bpstat's. */
5395 bpstat bs_head = stop_chain;
5397 int need_remove_insert;
5400 /* First, build the bpstat chain with locations that explain a
5401 target stop, while being careful to not set the target running,
5402 as that may invalidate locations (in particular watchpoint
5403 locations are recreated). Resuming will happen here with
5404 breakpoint conditions or watchpoint expressions that include
5405 inferior function calls. */
5406 if (bs_head == NULL)
5407 bs_head = build_bpstat_chain (aspace, bp_addr, ws);
5409 /* A bit of special processing for shlib breakpoints. We need to
5410 process solib loading here, so that the lists of loaded and
5411 unloaded libraries are correct before we handle "catch load" and
5413 for (bs = bs_head; bs != NULL; bs = bs->next)
5415 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
5417 handle_solib_event ();
5422 /* Now go through the locations that caused the target to stop, and
5423 check whether we're interested in reporting this stop to higher
5424 layers, or whether we should resume the target transparently. */
5428 for (bs = bs_head; bs != NULL; bs = bs->next)
5433 b = bs->breakpoint_at;
5434 b->ops->check_status (bs);
5437 bpstat_check_breakpoint_conditions (bs, thread);
5442 gdb::observers::breakpoint_modified.notify (b);
5444 /* We will stop here. */
5445 if (b->disposition == disp_disable)
5447 --(b->enable_count);
5448 if (b->enable_count <= 0)
5449 b->enable_state = bp_disabled;
5454 bs->commands = b->commands;
5455 if (command_line_is_silent (bs->commands
5456 ? bs->commands.get () : NULL))
5459 b->ops->after_condition_true (bs);
5464 /* Print nothing for this entry if we don't stop or don't
5466 if (!bs->stop || !bs->print)
5467 bs->print_it = print_it_noop;
5470 /* If we aren't stopping, the value of some hardware watchpoint may
5471 not have changed, but the intermediate memory locations we are
5472 watching may have. Don't bother if we're stopping; this will get
5474 need_remove_insert = 0;
5475 if (! bpstat_causes_stop (bs_head))
5476 for (bs = bs_head; bs != NULL; bs = bs->next)
5478 && bs->breakpoint_at
5479 && is_hardware_watchpoint (bs->breakpoint_at))
5481 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5483 update_watchpoint (w, 0 /* don't reparse. */);
5484 need_remove_insert = 1;
5487 if (need_remove_insert)
5488 update_global_location_list (UGLL_MAY_INSERT);
5489 else if (removed_any)
5490 update_global_location_list (UGLL_DONT_INSERT);
5496 handle_jit_event (void)
5498 struct frame_info *frame;
5499 struct gdbarch *gdbarch;
5502 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5504 /* Switch terminal for any messages produced by
5505 breakpoint_re_set. */
5506 target_terminal::ours_for_output ();
5508 frame = get_current_frame ();
5509 gdbarch = get_frame_arch (frame);
5511 jit_event_handler (gdbarch);
5513 target_terminal::inferior ();
5516 /* Prepare WHAT final decision for infrun. */
5518 /* Decide what infrun needs to do with this bpstat. */
5521 bpstat_what (bpstat bs_head)
5523 struct bpstat_what retval;
5526 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
5527 retval.call_dummy = STOP_NONE;
5528 retval.is_longjmp = 0;
5530 for (bs = bs_head; bs != NULL; bs = bs->next)
5532 /* Extract this BS's action. After processing each BS, we check
5533 if its action overrides all we've seem so far. */
5534 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5537 if (bs->breakpoint_at == NULL)
5539 /* I suspect this can happen if it was a momentary
5540 breakpoint which has since been deleted. */
5544 bptype = bs->breakpoint_at->type;
5551 case bp_hardware_breakpoint:
5552 case bp_single_step:
5555 case bp_shlib_event:
5559 this_action = BPSTAT_WHAT_STOP_NOISY;
5561 this_action = BPSTAT_WHAT_STOP_SILENT;
5564 this_action = BPSTAT_WHAT_SINGLE;
5567 case bp_hardware_watchpoint:
5568 case bp_read_watchpoint:
5569 case bp_access_watchpoint:
5573 this_action = BPSTAT_WHAT_STOP_NOISY;
5575 this_action = BPSTAT_WHAT_STOP_SILENT;
5579 /* There was a watchpoint, but we're not stopping.
5580 This requires no further action. */
5584 case bp_longjmp_call_dummy:
5588 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5589 retval.is_longjmp = bptype != bp_exception;
5592 this_action = BPSTAT_WHAT_SINGLE;
5594 case bp_longjmp_resume:
5595 case bp_exception_resume:
5598 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5599 retval.is_longjmp = bptype == bp_longjmp_resume;
5602 this_action = BPSTAT_WHAT_SINGLE;
5604 case bp_step_resume:
5606 this_action = BPSTAT_WHAT_STEP_RESUME;
5609 /* It is for the wrong frame. */
5610 this_action = BPSTAT_WHAT_SINGLE;
5613 case bp_hp_step_resume:
5615 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5618 /* It is for the wrong frame. */
5619 this_action = BPSTAT_WHAT_SINGLE;
5622 case bp_watchpoint_scope:
5623 case bp_thread_event:
5624 case bp_overlay_event:
5625 case bp_longjmp_master:
5626 case bp_std_terminate_master:
5627 case bp_exception_master:
5628 this_action = BPSTAT_WHAT_SINGLE;
5634 this_action = BPSTAT_WHAT_STOP_NOISY;
5636 this_action = BPSTAT_WHAT_STOP_SILENT;
5640 /* There was a catchpoint, but we're not stopping.
5641 This requires no further action. */
5645 this_action = BPSTAT_WHAT_SINGLE;
5648 /* Make sure the action is stop (silent or noisy),
5649 so infrun.c pops the dummy frame. */
5650 retval.call_dummy = STOP_STACK_DUMMY;
5651 this_action = BPSTAT_WHAT_STOP_SILENT;
5653 case bp_std_terminate:
5654 /* Make sure the action is stop (silent or noisy),
5655 so infrun.c pops the dummy frame. */
5656 retval.call_dummy = STOP_STD_TERMINATE;
5657 this_action = BPSTAT_WHAT_STOP_SILENT;
5660 case bp_fast_tracepoint:
5661 case bp_static_tracepoint:
5662 /* Tracepoint hits should not be reported back to GDB, and
5663 if one got through somehow, it should have been filtered
5665 internal_error (__FILE__, __LINE__,
5666 _("bpstat_what: tracepoint encountered"));
5668 case bp_gnu_ifunc_resolver:
5669 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5670 this_action = BPSTAT_WHAT_SINGLE;
5672 case bp_gnu_ifunc_resolver_return:
5673 /* The breakpoint will be removed, execution will restart from the
5674 PC of the former breakpoint. */
5675 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5680 this_action = BPSTAT_WHAT_STOP_SILENT;
5682 this_action = BPSTAT_WHAT_SINGLE;
5686 internal_error (__FILE__, __LINE__,
5687 _("bpstat_what: unhandled bptype %d"), (int) bptype);
5690 retval.main_action = std::max (retval.main_action, this_action);
5697 bpstat_run_callbacks (bpstat bs_head)
5701 for (bs = bs_head; bs != NULL; bs = bs->next)
5703 struct breakpoint *b = bs->breakpoint_at;
5710 handle_jit_event ();
5712 case bp_gnu_ifunc_resolver:
5713 gnu_ifunc_resolver_stop (b);
5715 case bp_gnu_ifunc_resolver_return:
5716 gnu_ifunc_resolver_return_stop (b);
5722 /* Nonzero if we should step constantly (e.g. watchpoints on machines
5723 without hardware support). This isn't related to a specific bpstat,
5724 just to things like whether watchpoints are set. */
5727 bpstat_should_step (void)
5729 struct breakpoint *b;
5732 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
5738 bpstat_causes_stop (bpstat bs)
5740 for (; bs != NULL; bs = bs->next)
5749 /* Compute a string of spaces suitable to indent the next line
5750 so it starts at the position corresponding to the table column
5751 named COL_NAME in the currently active table of UIOUT. */
5754 wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
5756 static char wrap_indent[80];
5757 int i, total_width, width, align;
5761 for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++)
5763 if (strcmp (text, col_name) == 0)
5765 gdb_assert (total_width < sizeof wrap_indent);
5766 memset (wrap_indent, ' ', total_width);
5767 wrap_indent[total_width] = 0;
5772 total_width += width + 1;
5778 /* Determine if the locations of this breakpoint will have their conditions
5779 evaluated by the target, host or a mix of both. Returns the following:
5781 "host": Host evals condition.
5782 "host or target": Host or Target evals condition.
5783 "target": Target evals condition.
5787 bp_condition_evaluator (struct breakpoint *b)
5789 struct bp_location *bl;
5790 char host_evals = 0;
5791 char target_evals = 0;
5796 if (!is_breakpoint (b))
5799 if (gdb_evaluates_breakpoint_condition_p ()
5800 || !target_supports_evaluation_of_breakpoint_conditions ())
5801 return condition_evaluation_host;
5803 for (bl = b->loc; bl; bl = bl->next)
5805 if (bl->cond_bytecode)
5811 if (host_evals && target_evals)
5812 return condition_evaluation_both;
5813 else if (target_evals)
5814 return condition_evaluation_target;
5816 return condition_evaluation_host;
5819 /* Determine the breakpoint location's condition evaluator. This is
5820 similar to bp_condition_evaluator, but for locations. */
5823 bp_location_condition_evaluator (struct bp_location *bl)
5825 if (bl && !is_breakpoint (bl->owner))
5828 if (gdb_evaluates_breakpoint_condition_p ()
5829 || !target_supports_evaluation_of_breakpoint_conditions ())
5830 return condition_evaluation_host;
5832 if (bl && bl->cond_bytecode)
5833 return condition_evaluation_target;
5835 return condition_evaluation_host;
5838 /* Print the LOC location out of the list of B->LOC locations. */
5841 print_breakpoint_location (struct breakpoint *b,
5842 struct bp_location *loc)
5844 struct ui_out *uiout = current_uiout;
5846 scoped_restore_current_program_space restore_pspace;
5848 if (loc != NULL && loc->shlib_disabled)
5852 set_current_program_space (loc->pspace);
5854 if (b->display_canonical)
5855 uiout->field_string ("what", event_location_to_string (b->location.get ()));
5856 else if (loc && loc->symtab)
5858 const struct symbol *sym = loc->symbol;
5862 uiout->text ("in ");
5863 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
5865 uiout->wrap_hint (wrap_indent_at_field (uiout, "what"));
5866 uiout->text ("at ");
5868 uiout->field_string ("file",
5869 symtab_to_filename_for_display (loc->symtab));
5872 if (uiout->is_mi_like_p ())
5873 uiout->field_string ("fullname", symtab_to_fullname (loc->symtab));
5875 uiout->field_int ("line", loc->line_number);
5881 print_address_symbolic (loc->gdbarch, loc->address, &stb,
5883 uiout->field_stream ("at", stb);
5887 uiout->field_string ("pending",
5888 event_location_to_string (b->location.get ()));
5889 /* If extra_string is available, it could be holding a condition
5890 or dprintf arguments. In either case, make sure it is printed,
5891 too, but only for non-MI streams. */
5892 if (!uiout->is_mi_like_p () && b->extra_string != NULL)
5894 if (b->type == bp_dprintf)
5898 uiout->text (b->extra_string);
5902 if (loc && is_breakpoint (b)
5903 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
5904 && bp_condition_evaluator (b) == condition_evaluation_both)
5907 uiout->field_string ("evaluated-by",
5908 bp_location_condition_evaluator (loc));
5914 bptype_string (enum bptype type)
5916 struct ep_type_description
5919 const char *description;
5921 static struct ep_type_description bptypes[] =
5923 {bp_none, "?deleted?"},
5924 {bp_breakpoint, "breakpoint"},
5925 {bp_hardware_breakpoint, "hw breakpoint"},
5926 {bp_single_step, "sw single-step"},
5927 {bp_until, "until"},
5928 {bp_finish, "finish"},
5929 {bp_watchpoint, "watchpoint"},
5930 {bp_hardware_watchpoint, "hw watchpoint"},
5931 {bp_read_watchpoint, "read watchpoint"},
5932 {bp_access_watchpoint, "acc watchpoint"},
5933 {bp_longjmp, "longjmp"},
5934 {bp_longjmp_resume, "longjmp resume"},
5935 {bp_longjmp_call_dummy, "longjmp for call dummy"},
5936 {bp_exception, "exception"},
5937 {bp_exception_resume, "exception resume"},
5938 {bp_step_resume, "step resume"},
5939 {bp_hp_step_resume, "high-priority step resume"},
5940 {bp_watchpoint_scope, "watchpoint scope"},
5941 {bp_call_dummy, "call dummy"},
5942 {bp_std_terminate, "std::terminate"},
5943 {bp_shlib_event, "shlib events"},
5944 {bp_thread_event, "thread events"},
5945 {bp_overlay_event, "overlay events"},
5946 {bp_longjmp_master, "longjmp master"},
5947 {bp_std_terminate_master, "std::terminate master"},
5948 {bp_exception_master, "exception master"},
5949 {bp_catchpoint, "catchpoint"},
5950 {bp_tracepoint, "tracepoint"},
5951 {bp_fast_tracepoint, "fast tracepoint"},
5952 {bp_static_tracepoint, "static tracepoint"},
5953 {bp_dprintf, "dprintf"},
5954 {bp_jit_event, "jit events"},
5955 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
5956 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
5959 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
5960 || ((int) type != bptypes[(int) type].type))
5961 internal_error (__FILE__, __LINE__,
5962 _("bptypes table does not describe type #%d."),
5965 return bptypes[(int) type].description;
5968 /* For MI, output a field named 'thread-groups' with a list as the value.
5969 For CLI, prefix the list with the string 'inf'. */
5972 output_thread_groups (struct ui_out *uiout,
5973 const char *field_name,
5974 const std::vector<int> &inf_nums,
5977 int is_mi = uiout->is_mi_like_p ();
5979 /* For backward compatibility, don't display inferiors in CLI unless
5980 there are several. Always display them for MI. */
5981 if (!is_mi && mi_only)
5984 ui_out_emit_list list_emitter (uiout, field_name);
5986 for (size_t i = 0; i < inf_nums.size (); i++)
5992 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf_nums[i]);
5993 uiout->field_string (NULL, mi_group);
5998 uiout->text (" inf ");
6002 uiout->text (plongest (inf_nums[i]));
6007 /* Print B to gdb_stdout. */
6010 print_one_breakpoint_location (struct breakpoint *b,
6011 struct bp_location *loc,
6013 struct bp_location **last_loc,
6016 struct command_line *l;
6017 static char bpenables[] = "nynny";
6019 struct ui_out *uiout = current_uiout;
6020 int header_of_multiple = 0;
6021 int part_of_multiple = (loc != NULL);
6022 struct value_print_options opts;
6024 get_user_print_options (&opts);
6026 gdb_assert (!loc || loc_number != 0);
6027 /* See comment in print_one_breakpoint concerning treatment of
6028 breakpoints with single disabled location. */
6031 && (b->loc->next != NULL || !b->loc->enabled)))
6032 header_of_multiple = 1;
6040 if (part_of_multiple)
6041 uiout->field_fmt ("number", "%d.%d", b->number, loc_number);
6043 uiout->field_int ("number", b->number);
6047 if (part_of_multiple)
6048 uiout->field_skip ("type");
6050 uiout->field_string ("type", bptype_string (b->type));
6054 if (part_of_multiple)
6055 uiout->field_skip ("disp");
6057 uiout->field_string ("disp", bpdisp_text (b->disposition));
6062 if (part_of_multiple)
6063 uiout->field_string ("enabled", loc->enabled ? "y" : "n");
6065 uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
6070 if (b->ops != NULL && b->ops->print_one != NULL)
6072 /* Although the print_one can possibly print all locations,
6073 calling it here is not likely to get any nice result. So,
6074 make sure there's just one location. */
6075 gdb_assert (b->loc == NULL || b->loc->next == NULL);
6076 b->ops->print_one (b, last_loc);
6082 internal_error (__FILE__, __LINE__,
6083 _("print_one_breakpoint: bp_none encountered\n"));
6087 case bp_hardware_watchpoint:
6088 case bp_read_watchpoint:
6089 case bp_access_watchpoint:
6091 struct watchpoint *w = (struct watchpoint *) b;
6093 /* Field 4, the address, is omitted (which makes the columns
6094 not line up too nicely with the headers, but the effect
6095 is relatively readable). */
6096 if (opts.addressprint)
6097 uiout->field_skip ("addr");
6099 uiout->field_string ("what", w->exp_string);
6104 case bp_hardware_breakpoint:
6105 case bp_single_step:
6109 case bp_longjmp_resume:
6110 case bp_longjmp_call_dummy:
6112 case bp_exception_resume:
6113 case bp_step_resume:
6114 case bp_hp_step_resume:
6115 case bp_watchpoint_scope:
6117 case bp_std_terminate:
6118 case bp_shlib_event:
6119 case bp_thread_event:
6120 case bp_overlay_event:
6121 case bp_longjmp_master:
6122 case bp_std_terminate_master:
6123 case bp_exception_master:
6125 case bp_fast_tracepoint:
6126 case bp_static_tracepoint:
6129 case bp_gnu_ifunc_resolver:
6130 case bp_gnu_ifunc_resolver_return:
6131 if (opts.addressprint)
6134 if (header_of_multiple)
6135 uiout->field_string ("addr", "<MULTIPLE>");
6136 else if (b->loc == NULL || loc->shlib_disabled)
6137 uiout->field_string ("addr", "<PENDING>");
6139 uiout->field_core_addr ("addr",
6140 loc->gdbarch, loc->address);
6143 if (!header_of_multiple)
6144 print_breakpoint_location (b, loc);
6151 if (loc != NULL && !header_of_multiple)
6153 struct inferior *inf;
6154 std::vector<int> inf_nums;
6159 if (inf->pspace == loc->pspace)
6160 inf_nums.push_back (inf->num);
6163 /* For backward compatibility, don't display inferiors in CLI unless
6164 there are several. Always display for MI. */
6166 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6167 && (number_of_program_spaces () > 1
6168 || number_of_inferiors () > 1)
6169 /* LOC is for existing B, it cannot be in
6170 moribund_locations and thus having NULL OWNER. */
6171 && loc->owner->type != bp_catchpoint))
6173 output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
6176 if (!part_of_multiple)
6178 if (b->thread != -1)
6180 /* FIXME: This seems to be redundant and lost here; see the
6181 "stop only in" line a little further down. */
6182 uiout->text (" thread ");
6183 uiout->field_int ("thread", b->thread);
6185 else if (b->task != 0)
6187 uiout->text (" task ");
6188 uiout->field_int ("task", b->task);
6194 if (!part_of_multiple)
6195 b->ops->print_one_detail (b, uiout);
6197 if (part_of_multiple && frame_id_p (b->frame_id))
6200 uiout->text ("\tstop only in stack frame at ");
6201 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
6203 uiout->field_core_addr ("frame",
6204 b->gdbarch, b->frame_id.stack_addr);
6208 if (!part_of_multiple && b->cond_string)
6211 if (is_tracepoint (b))
6212 uiout->text ("\ttrace only if ");
6214 uiout->text ("\tstop only if ");
6215 uiout->field_string ("cond", b->cond_string);
6217 /* Print whether the target is doing the breakpoint's condition
6218 evaluation. If GDB is doing the evaluation, don't print anything. */
6219 if (is_breakpoint (b)
6220 && breakpoint_condition_evaluation_mode ()
6221 == condition_evaluation_target)
6224 uiout->field_string ("evaluated-by",
6225 bp_condition_evaluator (b));
6226 uiout->text (" evals)");
6231 if (!part_of_multiple && b->thread != -1)
6233 /* FIXME should make an annotation for this. */
6234 uiout->text ("\tstop only in thread ");
6235 if (uiout->is_mi_like_p ())
6236 uiout->field_int ("thread", b->thread);
6239 struct thread_info *thr = find_thread_global_id (b->thread);
6241 uiout->field_string ("thread", print_thread_id (thr));
6246 if (!part_of_multiple)
6250 /* FIXME should make an annotation for this. */
6251 if (is_catchpoint (b))
6252 uiout->text ("\tcatchpoint");
6253 else if (is_tracepoint (b))
6254 uiout->text ("\ttracepoint");
6256 uiout->text ("\tbreakpoint");
6257 uiout->text (" already hit ");
6258 uiout->field_int ("times", b->hit_count);
6259 if (b->hit_count == 1)
6260 uiout->text (" time\n");
6262 uiout->text (" times\n");
6266 /* Output the count also if it is zero, but only if this is mi. */
6267 if (uiout->is_mi_like_p ())
6268 uiout->field_int ("times", b->hit_count);
6272 if (!part_of_multiple && b->ignore_count)
6275 uiout->text ("\tignore next ");
6276 uiout->field_int ("ignore", b->ignore_count);
6277 uiout->text (" hits\n");
6280 /* Note that an enable count of 1 corresponds to "enable once"
6281 behavior, which is reported by the combination of enablement and
6282 disposition, so we don't need to mention it here. */
6283 if (!part_of_multiple && b->enable_count > 1)
6286 uiout->text ("\tdisable after ");
6287 /* Tweak the wording to clarify that ignore and enable counts
6288 are distinct, and have additive effect. */
6289 if (b->ignore_count)
6290 uiout->text ("additional ");
6292 uiout->text ("next ");
6293 uiout->field_int ("enable", b->enable_count);
6294 uiout->text (" hits\n");
6297 if (!part_of_multiple && is_tracepoint (b))
6299 struct tracepoint *tp = (struct tracepoint *) b;
6301 if (tp->traceframe_usage)
6303 uiout->text ("\ttrace buffer usage ");
6304 uiout->field_int ("traceframe-usage", tp->traceframe_usage);
6305 uiout->text (" bytes\n");
6309 l = b->commands ? b->commands.get () : NULL;
6310 if (!part_of_multiple && l)
6313 ui_out_emit_tuple tuple_emitter (uiout, "script");
6314 print_command_lines (uiout, l, 4);
6317 if (is_tracepoint (b))
6319 struct tracepoint *t = (struct tracepoint *) b;
6321 if (!part_of_multiple && t->pass_count)
6323 annotate_field (10);
6324 uiout->text ("\tpass count ");
6325 uiout->field_int ("pass", t->pass_count);
6326 uiout->text (" \n");
6329 /* Don't display it when tracepoint or tracepoint location is
6331 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6333 annotate_field (11);
6335 if (uiout->is_mi_like_p ())
6336 uiout->field_string ("installed",
6337 loc->inserted ? "y" : "n");
6343 uiout->text ("\tnot ");
6344 uiout->text ("installed on target\n");
6349 if (uiout->is_mi_like_p () && !part_of_multiple)
6351 if (is_watchpoint (b))
6353 struct watchpoint *w = (struct watchpoint *) b;
6355 uiout->field_string ("original-location", w->exp_string);
6357 else if (b->location != NULL
6358 && event_location_to_string (b->location.get ()) != NULL)
6359 uiout->field_string ("original-location",
6360 event_location_to_string (b->location.get ()));
6365 print_one_breakpoint (struct breakpoint *b,
6366 struct bp_location **last_loc,
6369 struct ui_out *uiout = current_uiout;
6372 ui_out_emit_tuple tuple_emitter (uiout, "bkpt");
6374 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6377 /* If this breakpoint has custom print function,
6378 it's already printed. Otherwise, print individual
6379 locations, if any. */
6380 if (b->ops == NULL || b->ops->print_one == NULL)
6382 /* If breakpoint has a single location that is disabled, we
6383 print it as if it had several locations, since otherwise it's
6384 hard to represent "breakpoint enabled, location disabled"
6387 Note that while hardware watchpoints have several locations
6388 internally, that's not a property exposed to user. */
6390 && !is_hardware_watchpoint (b)
6391 && (b->loc->next || !b->loc->enabled))
6393 struct bp_location *loc;
6396 for (loc = b->loc; loc; loc = loc->next, ++n)
6398 ui_out_emit_tuple tuple_emitter (uiout, NULL);
6399 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6406 breakpoint_address_bits (struct breakpoint *b)
6408 int print_address_bits = 0;
6409 struct bp_location *loc;
6411 /* Software watchpoints that aren't watching memory don't have an
6412 address to print. */
6413 if (is_no_memory_software_watchpoint (b))
6416 for (loc = b->loc; loc; loc = loc->next)
6420 addr_bit = gdbarch_addr_bit (loc->gdbarch);
6421 if (addr_bit > print_address_bits)
6422 print_address_bits = addr_bit;
6425 return print_address_bits;
6428 /* See breakpoint.h. */
6431 print_breakpoint (breakpoint *b)
6433 struct bp_location *dummy_loc = NULL;
6434 print_one_breakpoint (b, &dummy_loc, 0);
6437 /* Return true if this breakpoint was set by the user, false if it is
6438 internal or momentary. */
6441 user_breakpoint_p (struct breakpoint *b)
6443 return b->number > 0;
6446 /* See breakpoint.h. */
6449 pending_breakpoint_p (struct breakpoint *b)
6451 return b->loc == NULL;
6454 /* Print information on user settable breakpoint (watchpoint, etc)
6455 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6456 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6457 FILTER is non-NULL, call it on each breakpoint and only include the
6458 ones for which it returns non-zero. Return the total number of
6459 breakpoints listed. */
6462 breakpoint_1 (const char *args, int allflag,
6463 int (*filter) (const struct breakpoint *))
6465 struct breakpoint *b;
6466 struct bp_location *last_loc = NULL;
6467 int nr_printable_breakpoints;
6468 struct value_print_options opts;
6469 int print_address_bits = 0;
6470 int print_type_col_width = 14;
6471 struct ui_out *uiout = current_uiout;
6473 get_user_print_options (&opts);
6475 /* Compute the number of rows in the table, as well as the size
6476 required for address fields. */
6477 nr_printable_breakpoints = 0;
6480 /* If we have a filter, only list the breakpoints it accepts. */
6481 if (filter && !filter (b))
6484 /* If we have an "args" string, it is a list of breakpoints to
6485 accept. Skip the others. */
6486 if (args != NULL && *args != '\0')
6488 if (allflag && parse_and_eval_long (args) != b->number)
6490 if (!allflag && !number_is_in_list (args, b->number))
6494 if (allflag || user_breakpoint_p (b))
6496 int addr_bit, type_len;
6498 addr_bit = breakpoint_address_bits (b);
6499 if (addr_bit > print_address_bits)
6500 print_address_bits = addr_bit;
6502 type_len = strlen (bptype_string (b->type));
6503 if (type_len > print_type_col_width)
6504 print_type_col_width = type_len;
6506 nr_printable_breakpoints++;
6511 ui_out_emit_table table_emitter (uiout,
6512 opts.addressprint ? 6 : 5,
6513 nr_printable_breakpoints,
6516 if (nr_printable_breakpoints > 0)
6517 annotate_breakpoints_headers ();
6518 if (nr_printable_breakpoints > 0)
6520 uiout->table_header (7, ui_left, "number", "Num"); /* 1 */
6521 if (nr_printable_breakpoints > 0)
6523 uiout->table_header (print_type_col_width, ui_left, "type", "Type"); /* 2 */
6524 if (nr_printable_breakpoints > 0)
6526 uiout->table_header (4, ui_left, "disp", "Disp"); /* 3 */
6527 if (nr_printable_breakpoints > 0)
6529 uiout->table_header (3, ui_left, "enabled", "Enb"); /* 4 */
6530 if (opts.addressprint)
6532 if (nr_printable_breakpoints > 0)
6534 if (print_address_bits <= 32)
6535 uiout->table_header (10, ui_left, "addr", "Address"); /* 5 */
6537 uiout->table_header (18, ui_left, "addr", "Address"); /* 5 */
6539 if (nr_printable_breakpoints > 0)
6541 uiout->table_header (40, ui_noalign, "what", "What"); /* 6 */
6542 uiout->table_body ();
6543 if (nr_printable_breakpoints > 0)
6544 annotate_breakpoints_table ();
6549 /* If we have a filter, only list the breakpoints it accepts. */
6550 if (filter && !filter (b))
6553 /* If we have an "args" string, it is a list of breakpoints to
6554 accept. Skip the others. */
6556 if (args != NULL && *args != '\0')
6558 if (allflag) /* maintenance info breakpoint */
6560 if (parse_and_eval_long (args) != b->number)
6563 else /* all others */
6565 if (!number_is_in_list (args, b->number))
6569 /* We only print out user settable breakpoints unless the
6571 if (allflag || user_breakpoint_p (b))
6572 print_one_breakpoint (b, &last_loc, allflag);
6576 if (nr_printable_breakpoints == 0)
6578 /* If there's a filter, let the caller decide how to report
6582 if (args == NULL || *args == '\0')
6583 uiout->message ("No breakpoints or watchpoints.\n");
6585 uiout->message ("No breakpoint or watchpoint matching '%s'.\n",
6591 if (last_loc && !server_command)
6592 set_next_address (last_loc->gdbarch, last_loc->address);
6595 /* FIXME? Should this be moved up so that it is only called when
6596 there have been breakpoints? */
6597 annotate_breakpoints_table_end ();
6599 return nr_printable_breakpoints;
6602 /* Display the value of default-collect in a way that is generally
6603 compatible with the breakpoint list. */
6606 default_collect_info (void)
6608 struct ui_out *uiout = current_uiout;
6610 /* If it has no value (which is frequently the case), say nothing; a
6611 message like "No default-collect." gets in user's face when it's
6613 if (!*default_collect)
6616 /* The following phrase lines up nicely with per-tracepoint collect
6618 uiout->text ("default collect ");
6619 uiout->field_string ("default-collect", default_collect);
6620 uiout->text (" \n");
6624 info_breakpoints_command (const char *args, int from_tty)
6626 breakpoint_1 (args, 0, NULL);
6628 default_collect_info ();
6632 info_watchpoints_command (const char *args, int from_tty)
6634 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
6635 struct ui_out *uiout = current_uiout;
6637 if (num_printed == 0)
6639 if (args == NULL || *args == '\0')
6640 uiout->message ("No watchpoints.\n");
6642 uiout->message ("No watchpoint matching '%s'.\n", args);
6647 maintenance_info_breakpoints (const char *args, int from_tty)
6649 breakpoint_1 (args, 1, NULL);
6651 default_collect_info ();
6655 breakpoint_has_pc (struct breakpoint *b,
6656 struct program_space *pspace,
6657 CORE_ADDR pc, struct obj_section *section)
6659 struct bp_location *bl = b->loc;
6661 for (; bl; bl = bl->next)
6663 if (bl->pspace == pspace
6664 && bl->address == pc
6665 && (!overlay_debugging || bl->section == section))
6671 /* Print a message describing any user-breakpoints set at PC. This
6672 concerns with logical breakpoints, so we match program spaces, not
6676 describe_other_breakpoints (struct gdbarch *gdbarch,
6677 struct program_space *pspace, CORE_ADDR pc,
6678 struct obj_section *section, int thread)
6681 struct breakpoint *b;
6684 others += (user_breakpoint_p (b)
6685 && breakpoint_has_pc (b, pspace, pc, section));
6689 printf_filtered (_("Note: breakpoint "));
6690 else /* if (others == ???) */
6691 printf_filtered (_("Note: breakpoints "));
6693 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
6696 printf_filtered ("%d", b->number);
6697 if (b->thread == -1 && thread != -1)
6698 printf_filtered (" (all threads)");
6699 else if (b->thread != -1)
6700 printf_filtered (" (thread %d)", b->thread);
6701 printf_filtered ("%s%s ",
6702 ((b->enable_state == bp_disabled
6703 || b->enable_state == bp_call_disabled)
6707 : ((others == 1) ? " and" : ""));
6709 printf_filtered (_("also set at pc "));
6710 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
6711 printf_filtered (".\n");
6716 /* Return true iff it is meaningful to use the address member of
6717 BPT locations. For some breakpoint types, the locations' address members
6718 are irrelevant and it makes no sense to attempt to compare them to other
6719 addresses (or use them for any other purpose either).
6721 More specifically, each of the following breakpoint types will
6722 always have a zero valued location address and we don't want to mark
6723 breakpoints of any of these types to be a duplicate of an actual
6724 breakpoint location at address zero:
6732 breakpoint_address_is_meaningful (struct breakpoint *bpt)
6734 enum bptype type = bpt->type;
6736 return (type != bp_watchpoint && type != bp_catchpoint);
6739 /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
6740 true if LOC1 and LOC2 represent the same watchpoint location. */
6743 watchpoint_locations_match (struct bp_location *loc1,
6744 struct bp_location *loc2)
6746 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
6747 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
6749 /* Both of them must exist. */
6750 gdb_assert (w1 != NULL);
6751 gdb_assert (w2 != NULL);
6753 /* If the target can evaluate the condition expression in hardware,
6754 then we we need to insert both watchpoints even if they are at
6755 the same place. Otherwise the watchpoint will only trigger when
6756 the condition of whichever watchpoint was inserted evaluates to
6757 true, not giving a chance for GDB to check the condition of the
6758 other watchpoint. */
6760 && target_can_accel_watchpoint_condition (loc1->address,
6762 loc1->watchpoint_type,
6763 w1->cond_exp.get ()))
6765 && target_can_accel_watchpoint_condition (loc2->address,
6767 loc2->watchpoint_type,
6768 w2->cond_exp.get ())))
6771 /* Note that this checks the owner's type, not the location's. In
6772 case the target does not support read watchpoints, but does
6773 support access watchpoints, we'll have bp_read_watchpoint
6774 watchpoints with hw_access locations. Those should be considered
6775 duplicates of hw_read locations. The hw_read locations will
6776 become hw_access locations later. */
6777 return (loc1->owner->type == loc2->owner->type
6778 && loc1->pspace->aspace == loc2->pspace->aspace
6779 && loc1->address == loc2->address
6780 && loc1->length == loc2->length);
6783 /* See breakpoint.h. */
6786 breakpoint_address_match (const address_space *aspace1, CORE_ADDR addr1,
6787 const address_space *aspace2, CORE_ADDR addr2)
6789 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6790 || aspace1 == aspace2)
6794 /* Returns true if {ASPACE2,ADDR2} falls within the range determined by
6795 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
6796 matches ASPACE2. On targets that have global breakpoints, the address
6797 space doesn't really matter. */
6800 breakpoint_address_match_range (const address_space *aspace1,
6802 int len1, const address_space *aspace2,
6805 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
6806 || aspace1 == aspace2)
6807 && addr2 >= addr1 && addr2 < addr1 + len1);
6810 /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
6811 a ranged breakpoint. In most targets, a match happens only if ASPACE
6812 matches the breakpoint's address space. On targets that have global
6813 breakpoints, the address space doesn't really matter. */
6816 breakpoint_location_address_match (struct bp_location *bl,
6817 const address_space *aspace,
6820 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
6823 && breakpoint_address_match_range (bl->pspace->aspace,
6824 bl->address, bl->length,
6828 /* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
6829 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
6830 match happens only if ASPACE matches the breakpoint's address
6831 space. On targets that have global breakpoints, the address space
6832 doesn't really matter. */
6835 breakpoint_location_address_range_overlap (struct bp_location *bl,
6836 const address_space *aspace,
6837 CORE_ADDR addr, int len)
6839 if (gdbarch_has_global_breakpoints (target_gdbarch ())
6840 || bl->pspace->aspace == aspace)
6842 int bl_len = bl->length != 0 ? bl->length : 1;
6844 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
6850 /* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
6851 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
6852 true, otherwise returns false. */
6855 tracepoint_locations_match (struct bp_location *loc1,
6856 struct bp_location *loc2)
6858 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
6859 /* Since tracepoint locations are never duplicated with others', tracepoint
6860 locations at the same address of different tracepoints are regarded as
6861 different locations. */
6862 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
6867 /* Assuming LOC1 and LOC2's types' have meaningful target addresses
6868 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
6869 represent the same location. */
6872 breakpoint_locations_match (struct bp_location *loc1,
6873 struct bp_location *loc2)
6875 int hw_point1, hw_point2;
6877 /* Both of them must not be in moribund_locations. */
6878 gdb_assert (loc1->owner != NULL);
6879 gdb_assert (loc2->owner != NULL);
6881 hw_point1 = is_hardware_watchpoint (loc1->owner);
6882 hw_point2 = is_hardware_watchpoint (loc2->owner);
6884 if (hw_point1 != hw_point2)
6887 return watchpoint_locations_match (loc1, loc2);
6888 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
6889 return tracepoint_locations_match (loc1, loc2);
6891 /* We compare bp_location.length in order to cover ranged breakpoints. */
6892 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
6893 loc2->pspace->aspace, loc2->address)
6894 && loc1->length == loc2->length);
6898 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
6899 int bnum, int have_bnum)
6901 /* The longest string possibly returned by hex_string_custom
6902 is 50 chars. These must be at least that big for safety. */
6906 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
6907 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
6909 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
6910 bnum, astr1, astr2);
6912 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
6915 /* Adjust a breakpoint's address to account for architectural
6916 constraints on breakpoint placement. Return the adjusted address.
6917 Note: Very few targets require this kind of adjustment. For most
6918 targets, this function is simply the identity function. */
6921 adjust_breakpoint_address (struct gdbarch *gdbarch,
6922 CORE_ADDR bpaddr, enum bptype bptype)
6924 if (bptype == bp_watchpoint
6925 || bptype == bp_hardware_watchpoint
6926 || bptype == bp_read_watchpoint
6927 || bptype == bp_access_watchpoint
6928 || bptype == bp_catchpoint)
6930 /* Watchpoints and the various bp_catch_* eventpoints should not
6931 have their addresses modified. */
6934 else if (bptype == bp_single_step)
6936 /* Single-step breakpoints should not have their addresses
6937 modified. If there's any architectural constrain that
6938 applies to this address, then it should have already been
6939 taken into account when the breakpoint was created in the
6940 first place. If we didn't do this, stepping through e.g.,
6941 Thumb-2 IT blocks would break. */
6946 CORE_ADDR adjusted_bpaddr = bpaddr;
6948 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
6950 /* Some targets have architectural constraints on the placement
6951 of breakpoint instructions. Obtain the adjusted address. */
6952 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
6955 adjusted_bpaddr = address_significant (gdbarch, adjusted_bpaddr);
6957 /* An adjusted breakpoint address can significantly alter
6958 a user's expectations. Print a warning if an adjustment
6960 if (adjusted_bpaddr != bpaddr)
6961 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
6963 return adjusted_bpaddr;
6967 bp_location::bp_location (const bp_location_ops *ops, breakpoint *owner)
6969 bp_location *loc = this;
6971 gdb_assert (ops != NULL);
6975 loc->cond_bytecode = NULL;
6976 loc->shlib_disabled = 0;
6979 switch (owner->type)
6982 case bp_single_step:
6986 case bp_longjmp_resume:
6987 case bp_longjmp_call_dummy:
6989 case bp_exception_resume:
6990 case bp_step_resume:
6991 case bp_hp_step_resume:
6992 case bp_watchpoint_scope:
6994 case bp_std_terminate:
6995 case bp_shlib_event:
6996 case bp_thread_event:
6997 case bp_overlay_event:
6999 case bp_longjmp_master:
7000 case bp_std_terminate_master:
7001 case bp_exception_master:
7002 case bp_gnu_ifunc_resolver:
7003 case bp_gnu_ifunc_resolver_return:
7005 loc->loc_type = bp_loc_software_breakpoint;
7006 mark_breakpoint_location_modified (loc);
7008 case bp_hardware_breakpoint:
7009 loc->loc_type = bp_loc_hardware_breakpoint;
7010 mark_breakpoint_location_modified (loc);
7012 case bp_hardware_watchpoint:
7013 case bp_read_watchpoint:
7014 case bp_access_watchpoint:
7015 loc->loc_type = bp_loc_hardware_watchpoint;
7020 case bp_fast_tracepoint:
7021 case bp_static_tracepoint:
7022 loc->loc_type = bp_loc_other;
7025 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
7031 /* Allocate a struct bp_location. */
7033 static struct bp_location *
7034 allocate_bp_location (struct breakpoint *bpt)
7036 return bpt->ops->allocate_location (bpt);
7040 free_bp_location (struct bp_location *loc)
7042 loc->ops->dtor (loc);
7046 /* Increment reference count. */
7049 incref_bp_location (struct bp_location *bl)
7054 /* Decrement reference count. If the reference count reaches 0,
7055 destroy the bp_location. Sets *BLP to NULL. */
7058 decref_bp_location (struct bp_location **blp)
7060 gdb_assert ((*blp)->refc > 0);
7062 if (--(*blp)->refc == 0)
7063 free_bp_location (*blp);
7067 /* Add breakpoint B at the end of the global breakpoint chain. */
7070 add_to_breakpoint_chain (std::unique_ptr<breakpoint> &&b)
7072 struct breakpoint *b1;
7073 struct breakpoint *result = b.get ();
7075 /* Add this breakpoint to the end of the chain so that a list of
7076 breakpoints will come out in order of increasing numbers. */
7078 b1 = breakpoint_chain;
7080 breakpoint_chain = b.release ();
7085 b1->next = b.release ();
7091 /* Initializes breakpoint B with type BPTYPE and no locations yet. */
7094 init_raw_breakpoint_without_location (struct breakpoint *b,
7095 struct gdbarch *gdbarch,
7097 const struct breakpoint_ops *ops)
7099 gdb_assert (ops != NULL);
7103 b->gdbarch = gdbarch;
7104 b->language = current_language->la_language;
7105 b->input_radix = input_radix;
7106 b->related_breakpoint = b;
7109 /* Helper to set_raw_breakpoint below. Creates a breakpoint
7110 that has type BPTYPE and has no locations as yet. */
7112 static struct breakpoint *
7113 set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
7115 const struct breakpoint_ops *ops)
7117 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
7119 init_raw_breakpoint_without_location (b.get (), gdbarch, bptype, ops);
7120 return add_to_breakpoint_chain (std::move (b));
7123 /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7124 resolutions should be made as the user specified the location explicitly
7128 set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
7130 gdb_assert (loc->owner != NULL);
7132 if (loc->owner->type == bp_breakpoint
7133 || loc->owner->type == bp_hardware_breakpoint
7134 || is_tracepoint (loc->owner))
7136 const char *function_name;
7138 if (loc->msymbol != NULL
7139 && (MSYMBOL_TYPE (loc->msymbol) == mst_text_gnu_ifunc
7140 || MSYMBOL_TYPE (loc->msymbol) == mst_data_gnu_ifunc)
7143 struct breakpoint *b = loc->owner;
7145 function_name = MSYMBOL_LINKAGE_NAME (loc->msymbol);
7147 if (b->type == bp_breakpoint && b->loc == loc
7148 && loc->next == NULL && b->related_breakpoint == b)
7150 /* Create only the whole new breakpoint of this type but do not
7151 mess more complicated breakpoints with multiple locations. */
7152 b->type = bp_gnu_ifunc_resolver;
7153 /* Remember the resolver's address for use by the return
7155 loc->related_address = loc->address;
7159 find_pc_partial_function (loc->address, &function_name, NULL, NULL);
7162 loc->function_name = xstrdup (function_name);
7166 /* Attempt to determine architecture of location identified by SAL. */
7168 get_sal_arch (struct symtab_and_line sal)
7171 return get_objfile_arch (sal.section->objfile);
7173 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
7178 /* Low level routine for partially initializing a breakpoint of type
7179 BPTYPE. The newly created breakpoint's address, section, source
7180 file name, and line number are provided by SAL.
7182 It is expected that the caller will complete the initialization of
7183 the newly created breakpoint struct as well as output any status
7184 information regarding the creation of a new breakpoint. */
7187 init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
7188 struct symtab_and_line sal, enum bptype bptype,
7189 const struct breakpoint_ops *ops)
7191 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7193 add_location_to_breakpoint (b, &sal);
7195 if (bptype != bp_catchpoint)
7196 gdb_assert (sal.pspace != NULL);
7198 /* Store the program space that was used to set the breakpoint,
7199 except for ordinary breakpoints, which are independent of the
7201 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7202 b->pspace = sal.pspace;
7205 /* set_raw_breakpoint is a low level routine for allocating and
7206 partially initializing a breakpoint of type BPTYPE. The newly
7207 created breakpoint's address, section, source file name, and line
7208 number are provided by SAL. The newly created and partially
7209 initialized breakpoint is added to the breakpoint chain and
7210 is also returned as the value of this function.
7212 It is expected that the caller will complete the initialization of
7213 the newly created breakpoint struct as well as output any status
7214 information regarding the creation of a new breakpoint. In
7215 particular, set_raw_breakpoint does NOT set the breakpoint
7216 number! Care should be taken to not allow an error to occur
7217 prior to completing the initialization of the breakpoint. If this
7218 should happen, a bogus breakpoint will be left on the chain. */
7221 set_raw_breakpoint (struct gdbarch *gdbarch,
7222 struct symtab_and_line sal, enum bptype bptype,
7223 const struct breakpoint_ops *ops)
7225 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (bptype);
7227 init_raw_breakpoint (b.get (), gdbarch, sal, bptype, ops);
7228 return add_to_breakpoint_chain (std::move (b));
7231 /* Call this routine when stepping and nexting to enable a breakpoint
7232 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7233 initiated the operation. */
7236 set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
7238 struct breakpoint *b, *b_tmp;
7239 int thread = tp->global_num;
7241 /* To avoid having to rescan all objfile symbols at every step,
7242 we maintain a list of continually-inserted but always disabled
7243 longjmp "master" breakpoints. Here, we simply create momentary
7244 clones of those and enable them for the requested thread. */
7245 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7246 if (b->pspace == current_program_space
7247 && (b->type == bp_longjmp_master
7248 || b->type == bp_exception_master))
7250 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7251 struct breakpoint *clone;
7253 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7254 after their removal. */
7255 clone = momentary_breakpoint_from_master (b, type,
7256 &momentary_breakpoint_ops, 1);
7257 clone->thread = thread;
7260 tp->initiating_frame = frame;
7263 /* Delete all longjmp breakpoints from THREAD. */
7265 delete_longjmp_breakpoint (int thread)
7267 struct breakpoint *b, *b_tmp;
7269 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7270 if (b->type == bp_longjmp || b->type == bp_exception)
7272 if (b->thread == thread)
7273 delete_breakpoint (b);
7278 delete_longjmp_breakpoint_at_next_stop (int thread)
7280 struct breakpoint *b, *b_tmp;
7282 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7283 if (b->type == bp_longjmp || b->type == bp_exception)
7285 if (b->thread == thread)
7286 b->disposition = disp_del_at_next_stop;
7290 /* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7291 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7292 pointer to any of them. Return NULL if this system cannot place longjmp
7296 set_longjmp_breakpoint_for_call_dummy (void)
7298 struct breakpoint *b, *retval = NULL;
7301 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7303 struct breakpoint *new_b;
7305 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
7306 &momentary_breakpoint_ops,
7308 new_b->thread = inferior_thread ()->global_num;
7310 /* Link NEW_B into the chain of RETVAL breakpoints. */
7312 gdb_assert (new_b->related_breakpoint == new_b);
7315 new_b->related_breakpoint = retval;
7316 while (retval->related_breakpoint != new_b->related_breakpoint)
7317 retval = retval->related_breakpoint;
7318 retval->related_breakpoint = new_b;
7324 /* Verify all existing dummy frames and their associated breakpoints for
7325 TP. Remove those which can no longer be found in the current frame
7328 You should call this function only at places where it is safe to currently
7329 unwind the whole stack. Failed stack unwind would discard live dummy
7333 check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
7335 struct breakpoint *b, *b_tmp;
7337 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7338 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
7340 struct breakpoint *dummy_b = b->related_breakpoint;
7342 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7343 dummy_b = dummy_b->related_breakpoint;
7344 if (dummy_b->type != bp_call_dummy
7345 || frame_find_by_id (dummy_b->frame_id) != NULL)
7348 dummy_frame_discard (dummy_b->frame_id, tp);
7350 while (b->related_breakpoint != b)
7352 if (b_tmp == b->related_breakpoint)
7353 b_tmp = b->related_breakpoint->next;
7354 delete_breakpoint (b->related_breakpoint);
7356 delete_breakpoint (b);
7361 enable_overlay_breakpoints (void)
7363 struct breakpoint *b;
7366 if (b->type == bp_overlay_event)
7368 b->enable_state = bp_enabled;
7369 update_global_location_list (UGLL_MAY_INSERT);
7370 overlay_events_enabled = 1;
7375 disable_overlay_breakpoints (void)
7377 struct breakpoint *b;
7380 if (b->type == bp_overlay_event)
7382 b->enable_state = bp_disabled;
7383 update_global_location_list (UGLL_DONT_INSERT);
7384 overlay_events_enabled = 0;
7388 /* Set an active std::terminate breakpoint for each std::terminate
7389 master breakpoint. */
7391 set_std_terminate_breakpoint (void)
7393 struct breakpoint *b, *b_tmp;
7395 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7396 if (b->pspace == current_program_space
7397 && b->type == bp_std_terminate_master)
7399 momentary_breakpoint_from_master (b, bp_std_terminate,
7400 &momentary_breakpoint_ops, 1);
7404 /* Delete all the std::terminate breakpoints. */
7406 delete_std_terminate_breakpoint (void)
7408 struct breakpoint *b, *b_tmp;
7410 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7411 if (b->type == bp_std_terminate)
7412 delete_breakpoint (b);
7416 create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7418 struct breakpoint *b;
7420 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7421 &internal_breakpoint_ops);
7423 b->enable_state = bp_enabled;
7424 /* location has to be used or breakpoint_re_set will delete me. */
7425 b->location = new_address_location (b->loc->address, NULL, 0);
7427 update_global_location_list_nothrow (UGLL_MAY_INSERT);
7432 struct lang_and_radix
7438 /* Create a breakpoint for JIT code registration and unregistration. */
7441 create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7443 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7444 &internal_breakpoint_ops);
7447 /* Remove JIT code registration and unregistration breakpoint(s). */
7450 remove_jit_event_breakpoints (void)
7452 struct breakpoint *b, *b_tmp;
7454 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7455 if (b->type == bp_jit_event
7456 && b->loc->pspace == current_program_space)
7457 delete_breakpoint (b);
7461 remove_solib_event_breakpoints (void)
7463 struct breakpoint *b, *b_tmp;
7465 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7466 if (b->type == bp_shlib_event
7467 && b->loc->pspace == current_program_space)
7468 delete_breakpoint (b);
7471 /* See breakpoint.h. */
7474 remove_solib_event_breakpoints_at_next_stop (void)
7476 struct breakpoint *b, *b_tmp;
7478 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7479 if (b->type == bp_shlib_event
7480 && b->loc->pspace == current_program_space)
7481 b->disposition = disp_del_at_next_stop;
7484 /* Helper for create_solib_event_breakpoint /
7485 create_and_insert_solib_event_breakpoint. Allows specifying which
7486 INSERT_MODE to pass through to update_global_location_list. */
7488 static struct breakpoint *
7489 create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7490 enum ugll_insert_mode insert_mode)
7492 struct breakpoint *b;
7494 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7495 &internal_breakpoint_ops);
7496 update_global_location_list_nothrow (insert_mode);
7501 create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7503 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7506 /* See breakpoint.h. */
7509 create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7511 struct breakpoint *b;
7513 /* Explicitly tell update_global_location_list to insert
7515 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
7516 if (!b->loc->inserted)
7518 delete_breakpoint (b);
7524 /* Disable any breakpoints that are on code in shared libraries. Only
7525 apply to enabled breakpoints, disabled ones can just stay disabled. */
7528 disable_breakpoints_in_shlibs (void)
7530 struct bp_location *loc, **locp_tmp;
7532 ALL_BP_LOCATIONS (loc, locp_tmp)
7534 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7535 struct breakpoint *b = loc->owner;
7537 /* We apply the check to all breakpoints, including disabled for
7538 those with loc->duplicate set. This is so that when breakpoint
7539 becomes enabled, or the duplicate is removed, gdb will try to
7540 insert all breakpoints. If we don't set shlib_disabled here,
7541 we'll try to insert those breakpoints and fail. */
7542 if (((b->type == bp_breakpoint)
7543 || (b->type == bp_jit_event)
7544 || (b->type == bp_hardware_breakpoint)
7545 || (is_tracepoint (b)))
7546 && loc->pspace == current_program_space
7547 && !loc->shlib_disabled
7548 && solib_name_from_address (loc->pspace, loc->address)
7551 loc->shlib_disabled = 1;
7556 /* Disable any breakpoints and tracepoints that are in SOLIB upon
7557 notification of unloaded_shlib. Only apply to enabled breakpoints,
7558 disabled ones can just stay disabled. */
7561 disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7563 struct bp_location *loc, **locp_tmp;
7564 int disabled_shlib_breaks = 0;
7566 ALL_BP_LOCATIONS (loc, locp_tmp)
7568 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7569 struct breakpoint *b = loc->owner;
7571 if (solib->pspace == loc->pspace
7572 && !loc->shlib_disabled
7573 && (((b->type == bp_breakpoint
7574 || b->type == bp_jit_event
7575 || b->type == bp_hardware_breakpoint)
7576 && (loc->loc_type == bp_loc_hardware_breakpoint
7577 || loc->loc_type == bp_loc_software_breakpoint))
7578 || is_tracepoint (b))
7579 && solib_contains_address_p (solib, loc->address))
7581 loc->shlib_disabled = 1;
7582 /* At this point, we cannot rely on remove_breakpoint
7583 succeeding so we must mark the breakpoint as not inserted
7584 to prevent future errors occurring in remove_breakpoints. */
7587 /* This may cause duplicate notifications for the same breakpoint. */
7588 gdb::observers::breakpoint_modified.notify (b);
7590 if (!disabled_shlib_breaks)
7592 target_terminal::ours_for_output ();
7593 warning (_("Temporarily disabling breakpoints "
7594 "for unloaded shared library \"%s\""),
7597 disabled_shlib_breaks = 1;
7602 /* Disable any breakpoints and tracepoints in OBJFILE upon
7603 notification of free_objfile. Only apply to enabled breakpoints,
7604 disabled ones can just stay disabled. */
7607 disable_breakpoints_in_freed_objfile (struct objfile *objfile)
7609 struct breakpoint *b;
7611 if (objfile == NULL)
7614 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
7615 managed by the user with add-symbol-file/remove-symbol-file.
7616 Similarly to how breakpoints in shared libraries are handled in
7617 response to "nosharedlibrary", mark breakpoints in such modules
7618 shlib_disabled so they end up uninserted on the next global
7619 location list update. Shared libraries not loaded by the user
7620 aren't handled here -- they're already handled in
7621 disable_breakpoints_in_unloaded_shlib, called by solib.c's
7622 solib_unloaded observer. We skip objfiles that are not
7623 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
7625 if ((objfile->flags & OBJF_SHARED) == 0
7626 || (objfile->flags & OBJF_USERLOADED) == 0)
7631 struct bp_location *loc;
7632 int bp_modified = 0;
7634 if (!is_breakpoint (b) && !is_tracepoint (b))
7637 for (loc = b->loc; loc != NULL; loc = loc->next)
7639 CORE_ADDR loc_addr = loc->address;
7641 if (loc->loc_type != bp_loc_hardware_breakpoint
7642 && loc->loc_type != bp_loc_software_breakpoint)
7645 if (loc->shlib_disabled != 0)
7648 if (objfile->pspace != loc->pspace)
7651 if (loc->loc_type != bp_loc_hardware_breakpoint
7652 && loc->loc_type != bp_loc_software_breakpoint)
7655 if (is_addr_in_objfile (loc_addr, objfile))
7657 loc->shlib_disabled = 1;
7658 /* At this point, we don't know whether the object was
7659 unmapped from the inferior or not, so leave the
7660 inserted flag alone. We'll handle failure to
7661 uninsert quietly, in case the object was indeed
7664 mark_breakpoint_location_modified (loc);
7671 gdb::observers::breakpoint_modified.notify (b);
7675 /* FORK & VFORK catchpoints. */
7677 /* An instance of this type is used to represent a fork or vfork
7678 catchpoint. A breakpoint is really of this type iff its ops pointer points
7679 to CATCH_FORK_BREAKPOINT_OPS. */
7681 struct fork_catchpoint : public breakpoint
7683 /* Process id of a child process whose forking triggered this
7684 catchpoint. This field is only valid immediately after this
7685 catchpoint has triggered. */
7686 ptid_t forked_inferior_pid;
7689 /* Implement the "insert" breakpoint_ops method for fork
7693 insert_catch_fork (struct bp_location *bl)
7695 return target_insert_fork_catchpoint (inferior_ptid.pid ());
7698 /* Implement the "remove" breakpoint_ops method for fork
7702 remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason)
7704 return target_remove_fork_catchpoint (inferior_ptid.pid ());
7707 /* Implement the "breakpoint_hit" breakpoint_ops method for fork
7711 breakpoint_hit_catch_fork (const struct bp_location *bl,
7712 const address_space *aspace, CORE_ADDR bp_addr,
7713 const struct target_waitstatus *ws)
7715 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7717 if (ws->kind != TARGET_WAITKIND_FORKED)
7720 c->forked_inferior_pid = ws->value.related_pid;
7724 /* Implement the "print_it" breakpoint_ops method for fork
7727 static enum print_stop_action
7728 print_it_catch_fork (bpstat bs)
7730 struct ui_out *uiout = current_uiout;
7731 struct breakpoint *b = bs->breakpoint_at;
7732 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
7734 annotate_catchpoint (b->number);
7735 maybe_print_thread_hit_breakpoint (uiout);
7736 if (b->disposition == disp_del)
7737 uiout->text ("Temporary catchpoint ");
7739 uiout->text ("Catchpoint ");
7740 if (uiout->is_mi_like_p ())
7742 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_FORK));
7743 uiout->field_string ("disp", bpdisp_text (b->disposition));
7745 uiout->field_int ("bkptno", b->number);
7746 uiout->text (" (forked process ");
7747 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
7748 uiout->text ("), ");
7749 return PRINT_SRC_AND_LOC;
7752 /* Implement the "print_one" breakpoint_ops method for fork
7756 print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
7758 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7759 struct value_print_options opts;
7760 struct ui_out *uiout = current_uiout;
7762 get_user_print_options (&opts);
7764 /* Field 4, the address, is omitted (which makes the columns not
7765 line up too nicely with the headers, but the effect is relatively
7767 if (opts.addressprint)
7768 uiout->field_skip ("addr");
7770 uiout->text ("fork");
7771 if (c->forked_inferior_pid != null_ptid)
7773 uiout->text (", process ");
7774 uiout->field_int ("what", c->forked_inferior_pid.pid ());
7778 if (uiout->is_mi_like_p ())
7779 uiout->field_string ("catch-type", "fork");
7782 /* Implement the "print_mention" breakpoint_ops method for fork
7786 print_mention_catch_fork (struct breakpoint *b)
7788 printf_filtered (_("Catchpoint %d (fork)"), b->number);
7791 /* Implement the "print_recreate" breakpoint_ops method for fork
7795 print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
7797 fprintf_unfiltered (fp, "catch fork");
7798 print_recreate_thread (b, fp);
7801 /* The breakpoint_ops structure to be used in fork catchpoints. */
7803 static struct breakpoint_ops catch_fork_breakpoint_ops;
7805 /* Implement the "insert" breakpoint_ops method for vfork
7809 insert_catch_vfork (struct bp_location *bl)
7811 return target_insert_vfork_catchpoint (inferior_ptid.pid ());
7814 /* Implement the "remove" breakpoint_ops method for vfork
7818 remove_catch_vfork (struct bp_location *bl, enum remove_bp_reason reason)
7820 return target_remove_vfork_catchpoint (inferior_ptid.pid ());
7823 /* Implement the "breakpoint_hit" breakpoint_ops method for vfork
7827 breakpoint_hit_catch_vfork (const struct bp_location *bl,
7828 const address_space *aspace, CORE_ADDR bp_addr,
7829 const struct target_waitstatus *ws)
7831 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
7833 if (ws->kind != TARGET_WAITKIND_VFORKED)
7836 c->forked_inferior_pid = ws->value.related_pid;
7840 /* Implement the "print_it" breakpoint_ops method for vfork
7843 static enum print_stop_action
7844 print_it_catch_vfork (bpstat bs)
7846 struct ui_out *uiout = current_uiout;
7847 struct breakpoint *b = bs->breakpoint_at;
7848 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7850 annotate_catchpoint (b->number);
7851 maybe_print_thread_hit_breakpoint (uiout);
7852 if (b->disposition == disp_del)
7853 uiout->text ("Temporary catchpoint ");
7855 uiout->text ("Catchpoint ");
7856 if (uiout->is_mi_like_p ())
7858 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_VFORK));
7859 uiout->field_string ("disp", bpdisp_text (b->disposition));
7861 uiout->field_int ("bkptno", b->number);
7862 uiout->text (" (vforked process ");
7863 uiout->field_int ("newpid", c->forked_inferior_pid.pid ());
7864 uiout->text ("), ");
7865 return PRINT_SRC_AND_LOC;
7868 /* Implement the "print_one" breakpoint_ops method for vfork
7872 print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
7874 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
7875 struct value_print_options opts;
7876 struct ui_out *uiout = current_uiout;
7878 get_user_print_options (&opts);
7879 /* Field 4, the address, is omitted (which makes the columns not
7880 line up too nicely with the headers, but the effect is relatively
7882 if (opts.addressprint)
7883 uiout->field_skip ("addr");
7885 uiout->text ("vfork");
7886 if (c->forked_inferior_pid != null_ptid)
7888 uiout->text (", process ");
7889 uiout->field_int ("what", c->forked_inferior_pid.pid ());
7893 if (uiout->is_mi_like_p ())
7894 uiout->field_string ("catch-type", "vfork");
7897 /* Implement the "print_mention" breakpoint_ops method for vfork
7901 print_mention_catch_vfork (struct breakpoint *b)
7903 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
7906 /* Implement the "print_recreate" breakpoint_ops method for vfork
7910 print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
7912 fprintf_unfiltered (fp, "catch vfork");
7913 print_recreate_thread (b, fp);
7916 /* The breakpoint_ops structure to be used in vfork catchpoints. */
7918 static struct breakpoint_ops catch_vfork_breakpoint_ops;
7920 /* An instance of this type is used to represent an solib catchpoint.
7921 A breakpoint is really of this type iff its ops pointer points to
7922 CATCH_SOLIB_BREAKPOINT_OPS. */
7924 struct solib_catchpoint : public breakpoint
7926 ~solib_catchpoint () override;
7928 /* True for "catch load", false for "catch unload". */
7929 unsigned char is_load;
7931 /* Regular expression to match, if any. COMPILED is only valid when
7932 REGEX is non-NULL. */
7934 std::unique_ptr<compiled_regex> compiled;
7937 solib_catchpoint::~solib_catchpoint ()
7939 xfree (this->regex);
7943 insert_catch_solib (struct bp_location *ignore)
7949 remove_catch_solib (struct bp_location *ignore, enum remove_bp_reason reason)
7955 breakpoint_hit_catch_solib (const struct bp_location *bl,
7956 const address_space *aspace,
7958 const struct target_waitstatus *ws)
7960 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
7961 struct breakpoint *other;
7963 if (ws->kind == TARGET_WAITKIND_LOADED)
7966 ALL_BREAKPOINTS (other)
7968 struct bp_location *other_bl;
7970 if (other == bl->owner)
7973 if (other->type != bp_shlib_event)
7976 if (self->pspace != NULL && other->pspace != self->pspace)
7979 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
7981 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
7990 check_status_catch_solib (struct bpstats *bs)
7992 struct solib_catchpoint *self
7993 = (struct solib_catchpoint *) bs->breakpoint_at;
7997 for (so_list *iter : current_program_space->added_solibs)
8000 || self->compiled->exec (iter->so_name, 0, NULL, 0) == 0)
8006 for (const std::string &iter : current_program_space->deleted_solibs)
8009 || self->compiled->exec (iter.c_str (), 0, NULL, 0) == 0)
8015 bs->print_it = print_it_noop;
8018 static enum print_stop_action
8019 print_it_catch_solib (bpstat bs)
8021 struct breakpoint *b = bs->breakpoint_at;
8022 struct ui_out *uiout = current_uiout;
8024 annotate_catchpoint (b->number);
8025 maybe_print_thread_hit_breakpoint (uiout);
8026 if (b->disposition == disp_del)
8027 uiout->text ("Temporary catchpoint ");
8029 uiout->text ("Catchpoint ");
8030 uiout->field_int ("bkptno", b->number);
8032 if (uiout->is_mi_like_p ())
8033 uiout->field_string ("disp", bpdisp_text (b->disposition));
8034 print_solib_event (1);
8035 return PRINT_SRC_AND_LOC;
8039 print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8041 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8042 struct value_print_options opts;
8043 struct ui_out *uiout = current_uiout;
8045 get_user_print_options (&opts);
8046 /* Field 4, the address, is omitted (which makes the columns not
8047 line up too nicely with the headers, but the effect is relatively
8049 if (opts.addressprint)
8052 uiout->field_skip ("addr");
8060 msg = string_printf (_("load of library matching %s"), self->regex);
8062 msg = _("load of library");
8067 msg = string_printf (_("unload of library matching %s"), self->regex);
8069 msg = _("unload of library");
8071 uiout->field_string ("what", msg);
8073 if (uiout->is_mi_like_p ())
8074 uiout->field_string ("catch-type", self->is_load ? "load" : "unload");
8078 print_mention_catch_solib (struct breakpoint *b)
8080 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8082 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8083 self->is_load ? "load" : "unload");
8087 print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8089 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8091 fprintf_unfiltered (fp, "%s %s",
8092 b->disposition == disp_del ? "tcatch" : "catch",
8093 self->is_load ? "load" : "unload");
8095 fprintf_unfiltered (fp, " %s", self->regex);
8096 fprintf_unfiltered (fp, "\n");
8099 static struct breakpoint_ops catch_solib_breakpoint_ops;
8101 /* Shared helper function (MI and CLI) for creating and installing
8102 a shared object event catchpoint. If IS_LOAD is non-zero then
8103 the events to be caught are load events, otherwise they are
8104 unload events. If IS_TEMP is non-zero the catchpoint is a
8105 temporary one. If ENABLED is non-zero the catchpoint is
8106 created in an enabled state. */
8109 add_solib_catchpoint (const char *arg, int is_load, int is_temp, int enabled)
8111 struct gdbarch *gdbarch = get_current_arch ();
8115 arg = skip_spaces (arg);
8117 std::unique_ptr<solib_catchpoint> c (new solib_catchpoint ());
8121 c->compiled.reset (new compiled_regex (arg, REG_NOSUB,
8122 _("Invalid regexp")));
8123 c->regex = xstrdup (arg);
8126 c->is_load = is_load;
8127 init_catchpoint (c.get (), gdbarch, is_temp, NULL,
8128 &catch_solib_breakpoint_ops);
8130 c->enable_state = enabled ? bp_enabled : bp_disabled;
8132 install_breakpoint (0, std::move (c), 1);
8135 /* A helper function that does all the work for "catch load" and
8139 catch_load_or_unload (const char *arg, int from_tty, int is_load,
8140 struct cmd_list_element *command)
8143 const int enabled = 1;
8145 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8147 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8151 catch_load_command_1 (const char *arg, int from_tty,
8152 struct cmd_list_element *command)
8154 catch_load_or_unload (arg, from_tty, 1, command);
8158 catch_unload_command_1 (const char *arg, int from_tty,
8159 struct cmd_list_element *command)
8161 catch_load_or_unload (arg, from_tty, 0, command);
8164 /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8165 is non-zero, then make the breakpoint temporary. If COND_STRING is
8166 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8167 the breakpoint_ops structure associated to the catchpoint. */
8170 init_catchpoint (struct breakpoint *b,
8171 struct gdbarch *gdbarch, int tempflag,
8172 const char *cond_string,
8173 const struct breakpoint_ops *ops)
8175 symtab_and_line sal;
8176 sal.pspace = current_program_space;
8178 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
8180 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
8181 b->disposition = tempflag ? disp_del : disp_donttouch;
8185 install_breakpoint (int internal, std::unique_ptr<breakpoint> &&arg, int update_gll)
8187 breakpoint *b = add_to_breakpoint_chain (std::move (arg));
8188 set_breakpoint_number (internal, b);
8189 if (is_tracepoint (b))
8190 set_tracepoint_count (breakpoint_count);
8193 gdb::observers::breakpoint_created.notify (b);
8196 update_global_location_list (UGLL_MAY_INSERT);
8200 create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8201 int tempflag, const char *cond_string,
8202 const struct breakpoint_ops *ops)
8204 std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
8206 init_catchpoint (c.get (), gdbarch, tempflag, cond_string, ops);
8208 c->forked_inferior_pid = null_ptid;
8210 install_breakpoint (0, std::move (c), 1);
8213 /* Exec catchpoints. */
8215 /* An instance of this type is used to represent an exec catchpoint.
8216 A breakpoint is really of this type iff its ops pointer points to
8217 CATCH_EXEC_BREAKPOINT_OPS. */
8219 struct exec_catchpoint : public breakpoint
8221 ~exec_catchpoint () override;
8223 /* Filename of a program whose exec triggered this catchpoint.
8224 This field is only valid immediately after this catchpoint has
8226 char *exec_pathname;
8229 /* Exec catchpoint destructor. */
8231 exec_catchpoint::~exec_catchpoint ()
8233 xfree (this->exec_pathname);
8237 insert_catch_exec (struct bp_location *bl)
8239 return target_insert_exec_catchpoint (inferior_ptid.pid ());
8243 remove_catch_exec (struct bp_location *bl, enum remove_bp_reason reason)
8245 return target_remove_exec_catchpoint (inferior_ptid.pid ());
8249 breakpoint_hit_catch_exec (const struct bp_location *bl,
8250 const address_space *aspace, CORE_ADDR bp_addr,
8251 const struct target_waitstatus *ws)
8253 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8255 if (ws->kind != TARGET_WAITKIND_EXECD)
8258 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8262 static enum print_stop_action
8263 print_it_catch_exec (bpstat bs)
8265 struct ui_out *uiout = current_uiout;
8266 struct breakpoint *b = bs->breakpoint_at;
8267 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8269 annotate_catchpoint (b->number);
8270 maybe_print_thread_hit_breakpoint (uiout);
8271 if (b->disposition == disp_del)
8272 uiout->text ("Temporary catchpoint ");
8274 uiout->text ("Catchpoint ");
8275 if (uiout->is_mi_like_p ())
8277 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXEC));
8278 uiout->field_string ("disp", bpdisp_text (b->disposition));
8280 uiout->field_int ("bkptno", b->number);
8281 uiout->text (" (exec'd ");
8282 uiout->field_string ("new-exec", c->exec_pathname);
8283 uiout->text ("), ");
8285 return PRINT_SRC_AND_LOC;
8289 print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
8291 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8292 struct value_print_options opts;
8293 struct ui_out *uiout = current_uiout;
8295 get_user_print_options (&opts);
8297 /* Field 4, the address, is omitted (which makes the columns
8298 not line up too nicely with the headers, but the effect
8299 is relatively readable). */
8300 if (opts.addressprint)
8301 uiout->field_skip ("addr");
8303 uiout->text ("exec");
8304 if (c->exec_pathname != NULL)
8306 uiout->text (", program \"");
8307 uiout->field_string ("what", c->exec_pathname);
8308 uiout->text ("\" ");
8311 if (uiout->is_mi_like_p ())
8312 uiout->field_string ("catch-type", "exec");
8316 print_mention_catch_exec (struct breakpoint *b)
8318 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8321 /* Implement the "print_recreate" breakpoint_ops method for exec
8325 print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8327 fprintf_unfiltered (fp, "catch exec");
8328 print_recreate_thread (b, fp);
8331 static struct breakpoint_ops catch_exec_breakpoint_ops;
8334 hw_breakpoint_used_count (void)
8337 struct breakpoint *b;
8338 struct bp_location *bl;
8342 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
8343 for (bl = b->loc; bl; bl = bl->next)
8345 /* Special types of hardware breakpoints may use more than
8347 i += b->ops->resources_needed (bl);
8354 /* Returns the resources B would use if it were a hardware
8358 hw_watchpoint_use_count (struct breakpoint *b)
8361 struct bp_location *bl;
8363 if (!breakpoint_enabled (b))
8366 for (bl = b->loc; bl; bl = bl->next)
8368 /* Special types of hardware watchpoints may use more than
8370 i += b->ops->resources_needed (bl);
8376 /* Returns the sum the used resources of all hardware watchpoints of
8377 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8378 the sum of the used resources of all hardware watchpoints of other
8379 types _not_ TYPE. */
8382 hw_watchpoint_used_count_others (struct breakpoint *except,
8383 enum bptype type, int *other_type_used)
8386 struct breakpoint *b;
8388 *other_type_used = 0;
8393 if (!breakpoint_enabled (b))
8396 if (b->type == type)
8397 i += hw_watchpoint_use_count (b);
8398 else if (is_hardware_watchpoint (b))
8399 *other_type_used = 1;
8406 disable_watchpoints_before_interactive_call_start (void)
8408 struct breakpoint *b;
8412 if (is_watchpoint (b) && breakpoint_enabled (b))
8414 b->enable_state = bp_call_disabled;
8415 update_global_location_list (UGLL_DONT_INSERT);
8421 enable_watchpoints_after_interactive_call_stop (void)
8423 struct breakpoint *b;
8427 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
8429 b->enable_state = bp_enabled;
8430 update_global_location_list (UGLL_MAY_INSERT);
8436 disable_breakpoints_before_startup (void)
8438 current_program_space->executing_startup = 1;
8439 update_global_location_list (UGLL_DONT_INSERT);
8443 enable_breakpoints_after_startup (void)
8445 current_program_space->executing_startup = 0;
8446 breakpoint_re_set ();
8449 /* Create a new single-step breakpoint for thread THREAD, with no
8452 static struct breakpoint *
8453 new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8455 std::unique_ptr<breakpoint> b (new breakpoint ());
8457 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step,
8458 &momentary_breakpoint_ops);
8460 b->disposition = disp_donttouch;
8461 b->frame_id = null_frame_id;
8464 gdb_assert (b->thread != 0);
8466 return add_to_breakpoint_chain (std::move (b));
8469 /* Set a momentary breakpoint of type TYPE at address specified by
8470 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8474 set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8475 struct frame_id frame_id, enum bptype type)
8477 struct breakpoint *b;
8479 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8481 gdb_assert (!frame_id_artificial_p (frame_id));
8483 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
8484 b->enable_state = bp_enabled;
8485 b->disposition = disp_donttouch;
8486 b->frame_id = frame_id;
8488 b->thread = inferior_thread ()->global_num;
8490 update_global_location_list_nothrow (UGLL_MAY_INSERT);
8492 return breakpoint_up (b);
8495 /* Make a momentary breakpoint based on the master breakpoint ORIG.
8496 The new breakpoint will have type TYPE, use OPS as its
8497 breakpoint_ops, and will set enabled to LOC_ENABLED. */
8499 static struct breakpoint *
8500 momentary_breakpoint_from_master (struct breakpoint *orig,
8502 const struct breakpoint_ops *ops,
8505 struct breakpoint *copy;
8507 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
8508 copy->loc = allocate_bp_location (copy);
8509 set_breakpoint_location_function (copy->loc, 1);
8511 copy->loc->gdbarch = orig->loc->gdbarch;
8512 copy->loc->requested_address = orig->loc->requested_address;
8513 copy->loc->address = orig->loc->address;
8514 copy->loc->section = orig->loc->section;
8515 copy->loc->pspace = orig->loc->pspace;
8516 copy->loc->probe = orig->loc->probe;
8517 copy->loc->line_number = orig->loc->line_number;
8518 copy->loc->symtab = orig->loc->symtab;
8519 copy->loc->enabled = loc_enabled;
8520 copy->frame_id = orig->frame_id;
8521 copy->thread = orig->thread;
8522 copy->pspace = orig->pspace;
8524 copy->enable_state = bp_enabled;
8525 copy->disposition = disp_donttouch;
8526 copy->number = internal_breakpoint_number--;
8528 update_global_location_list_nothrow (UGLL_DONT_INSERT);
8532 /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
8536 clone_momentary_breakpoint (struct breakpoint *orig)
8538 /* If there's nothing to clone, then return nothing. */
8542 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
8546 set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
8549 struct symtab_and_line sal;
8551 sal = find_pc_line (pc, 0);
8553 sal.section = find_pc_overlay (pc);
8554 sal.explicit_pc = 1;
8556 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
8560 /* Tell the user we have just set a breakpoint B. */
8563 mention (struct breakpoint *b)
8565 b->ops->print_mention (b);
8566 current_uiout->text ("\n");
8570 static int bp_loc_is_permanent (struct bp_location *loc);
8572 static struct bp_location *
8573 add_location_to_breakpoint (struct breakpoint *b,
8574 const struct symtab_and_line *sal)
8576 struct bp_location *loc, **tmp;
8577 CORE_ADDR adjusted_address;
8578 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
8580 if (loc_gdbarch == NULL)
8581 loc_gdbarch = b->gdbarch;
8583 /* Adjust the breakpoint's address prior to allocating a location.
8584 Once we call allocate_bp_location(), that mostly uninitialized
8585 location will be placed on the location chain. Adjustment of the
8586 breakpoint may cause target_read_memory() to be called and we do
8587 not want its scan of the location chain to find a breakpoint and
8588 location that's only been partially initialized. */
8589 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
8592 /* Sort the locations by their ADDRESS. */
8593 loc = allocate_bp_location (b);
8594 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
8595 tmp = &((*tmp)->next))
8600 loc->requested_address = sal->pc;
8601 loc->address = adjusted_address;
8602 loc->pspace = sal->pspace;
8603 loc->probe.prob = sal->prob;
8604 loc->probe.objfile = sal->objfile;
8605 gdb_assert (loc->pspace != NULL);
8606 loc->section = sal->section;
8607 loc->gdbarch = loc_gdbarch;
8608 loc->line_number = sal->line;
8609 loc->symtab = sal->symtab;
8610 loc->symbol = sal->symbol;
8611 loc->msymbol = sal->msymbol;
8612 loc->objfile = sal->objfile;
8614 set_breakpoint_location_function (loc,
8615 sal->explicit_pc || sal->explicit_line);
8617 /* While by definition, permanent breakpoints are already present in the
8618 code, we don't mark the location as inserted. Normally one would expect
8619 that GDB could rely on that breakpoint instruction to stop the program,
8620 thus removing the need to insert its own breakpoint, except that executing
8621 the breakpoint instruction can kill the target instead of reporting a
8622 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
8623 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
8624 with "Trap 0x02 while interrupts disabled, Error state". Letting the
8625 breakpoint be inserted normally results in QEMU knowing about the GDB
8626 breakpoint, and thus trap before the breakpoint instruction is executed.
8627 (If GDB later needs to continue execution past the permanent breakpoint,
8628 it manually increments the PC, thus avoiding executing the breakpoint
8630 if (bp_loc_is_permanent (loc))
8637 /* See breakpoint.h. */
8640 program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
8644 const gdb_byte *bpoint;
8645 gdb_byte *target_mem;
8648 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
8650 /* Software breakpoints unsupported? */
8654 target_mem = (gdb_byte *) alloca (len);
8656 /* Enable the automatic memory restoration from breakpoints while
8657 we read the memory. Otherwise we could say about our temporary
8658 breakpoints they are permanent. */
8659 scoped_restore restore_memory
8660 = make_scoped_restore_show_memory_breakpoints (0);
8662 if (target_read_memory (address, target_mem, len) == 0
8663 && memcmp (target_mem, bpoint, len) == 0)
8669 /* Return 1 if LOC is pointing to a permanent breakpoint,
8670 return 0 otherwise. */
8673 bp_loc_is_permanent (struct bp_location *loc)
8675 gdb_assert (loc != NULL);
8677 /* If we have a catchpoint or a watchpoint, just return 0. We should not
8678 attempt to read from the addresses the locations of these breakpoint types
8679 point to. program_breakpoint_here_p, below, will attempt to read
8681 if (!breakpoint_address_is_meaningful (loc->owner))
8684 scoped_restore_current_pspace_and_thread restore_pspace_thread;
8685 switch_to_program_space_and_thread (loc->pspace);
8686 return program_breakpoint_here_p (loc->gdbarch, loc->address);
8689 /* Build a command list for the dprintf corresponding to the current
8690 settings of the dprintf style options. */
8693 update_dprintf_command_list (struct breakpoint *b)
8695 char *dprintf_args = b->extra_string;
8696 char *printf_line = NULL;
8701 dprintf_args = skip_spaces (dprintf_args);
8703 /* Allow a comma, as it may have terminated a location, but don't
8705 if (*dprintf_args == ',')
8707 dprintf_args = skip_spaces (dprintf_args);
8709 if (*dprintf_args != '"')
8710 error (_("Bad format string, missing '\"'."));
8712 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
8713 printf_line = xstrprintf ("printf %s", dprintf_args);
8714 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
8716 if (!dprintf_function)
8717 error (_("No function supplied for dprintf call"));
8719 if (dprintf_channel && strlen (dprintf_channel) > 0)
8720 printf_line = xstrprintf ("call (void) %s (%s,%s)",
8725 printf_line = xstrprintf ("call (void) %s (%s)",
8729 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
8731 if (target_can_run_breakpoint_commands ())
8732 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
8735 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
8736 printf_line = xstrprintf ("printf %s", dprintf_args);
8740 internal_error (__FILE__, __LINE__,
8741 _("Invalid dprintf style."));
8743 gdb_assert (printf_line != NULL);
8745 /* Manufacture a printf sequence. */
8746 struct command_line *printf_cmd_line
8747 = new struct command_line (simple_control, printf_line);
8748 breakpoint_set_commands (b, counted_command_line (printf_cmd_line,
8749 command_lines_deleter ()));
8752 /* Update all dprintf commands, making their command lists reflect
8753 current style settings. */
8756 update_dprintf_commands (const char *args, int from_tty,
8757 struct cmd_list_element *c)
8759 struct breakpoint *b;
8763 if (b->type == bp_dprintf)
8764 update_dprintf_command_list (b);
8768 /* Create a breakpoint with SAL as location. Use LOCATION
8769 as a description of the location, and COND_STRING
8770 as condition expression. If LOCATION is NULL then create an
8771 "address location" from the address in the SAL. */
8774 init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
8775 gdb::array_view<const symtab_and_line> sals,
8776 event_location_up &&location,
8777 gdb::unique_xmalloc_ptr<char> filter,
8778 gdb::unique_xmalloc_ptr<char> cond_string,
8779 gdb::unique_xmalloc_ptr<char> extra_string,
8780 enum bptype type, enum bpdisp disposition,
8781 int thread, int task, int ignore_count,
8782 const struct breakpoint_ops *ops, int from_tty,
8783 int enabled, int internal, unsigned flags,
8784 int display_canonical)
8788 if (type == bp_hardware_breakpoint)
8790 int target_resources_ok;
8792 i = hw_breakpoint_used_count ();
8793 target_resources_ok =
8794 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
8796 if (target_resources_ok == 0)
8797 error (_("No hardware breakpoint support in the target."));
8798 else if (target_resources_ok < 0)
8799 error (_("Hardware breakpoints used exceeds limit."));
8802 gdb_assert (!sals.empty ());
8804 for (const auto &sal : sals)
8806 struct bp_location *loc;
8810 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
8812 loc_gdbarch = gdbarch;
8814 describe_other_breakpoints (loc_gdbarch,
8815 sal.pspace, sal.pc, sal.section, thread);
8818 if (&sal == &sals[0])
8820 init_raw_breakpoint (b, gdbarch, sal, type, ops);
8824 b->cond_string = cond_string.release ();
8825 b->extra_string = extra_string.release ();
8826 b->ignore_count = ignore_count;
8827 b->enable_state = enabled ? bp_enabled : bp_disabled;
8828 b->disposition = disposition;
8830 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8831 b->loc->inserted = 1;
8833 if (type == bp_static_tracepoint)
8835 struct tracepoint *t = (struct tracepoint *) b;
8836 struct static_tracepoint_marker marker;
8838 if (strace_marker_p (b))
8840 /* We already know the marker exists, otherwise, we
8841 wouldn't see a sal for it. */
8843 = &event_location_to_string (b->location.get ())[3];
8846 p = skip_spaces (p);
8848 endp = skip_to_space (p);
8850 t->static_trace_marker_id.assign (p, endp - p);
8852 printf_filtered (_("Probed static tracepoint "
8854 t->static_trace_marker_id.c_str ());
8856 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
8858 t->static_trace_marker_id = std::move (marker.str_id);
8860 printf_filtered (_("Probed static tracepoint "
8862 t->static_trace_marker_id.c_str ());
8865 warning (_("Couldn't determine the static "
8866 "tracepoint marker to probe"));
8873 loc = add_location_to_breakpoint (b, &sal);
8874 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
8880 const char *arg = b->cond_string;
8882 loc->cond = parse_exp_1 (&arg, loc->address,
8883 block_for_pc (loc->address), 0);
8885 error (_("Garbage '%s' follows condition"), arg);
8888 /* Dynamic printf requires and uses additional arguments on the
8889 command line, otherwise it's an error. */
8890 if (type == bp_dprintf)
8892 if (b->extra_string)
8893 update_dprintf_command_list (b);
8895 error (_("Format string required"));
8897 else if (b->extra_string)
8898 error (_("Garbage '%s' at end of command"), b->extra_string);
8901 b->display_canonical = display_canonical;
8902 if (location != NULL)
8903 b->location = std::move (location);
8905 b->location = new_address_location (b->loc->address, NULL, 0);
8906 b->filter = filter.release ();
8910 create_breakpoint_sal (struct gdbarch *gdbarch,
8911 gdb::array_view<const symtab_and_line> sals,
8912 event_location_up &&location,
8913 gdb::unique_xmalloc_ptr<char> filter,
8914 gdb::unique_xmalloc_ptr<char> cond_string,
8915 gdb::unique_xmalloc_ptr<char> extra_string,
8916 enum bptype type, enum bpdisp disposition,
8917 int thread, int task, int ignore_count,
8918 const struct breakpoint_ops *ops, int from_tty,
8919 int enabled, int internal, unsigned flags,
8920 int display_canonical)
8922 std::unique_ptr<breakpoint> b = new_breakpoint_from_type (type);
8924 init_breakpoint_sal (b.get (), gdbarch,
8925 sals, std::move (location),
8927 std::move (cond_string),
8928 std::move (extra_string),
8930 thread, task, ignore_count,
8932 enabled, internal, flags,
8935 install_breakpoint (internal, std::move (b), 0);
8938 /* Add SALS.nelts breakpoints to the breakpoint table. For each
8939 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
8940 value. COND_STRING, if not NULL, specified the condition to be
8941 used for all breakpoints. Essentially the only case where
8942 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
8943 function. In that case, it's still not possible to specify
8944 separate conditions for different overloaded functions, so
8945 we take just a single condition string.
8947 NOTE: If the function succeeds, the caller is expected to cleanup
8948 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
8949 array contents). If the function fails (error() is called), the
8950 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
8951 COND and SALS arrays and each of those arrays contents. */
8954 create_breakpoints_sal (struct gdbarch *gdbarch,
8955 struct linespec_result *canonical,
8956 gdb::unique_xmalloc_ptr<char> cond_string,
8957 gdb::unique_xmalloc_ptr<char> extra_string,
8958 enum bptype type, enum bpdisp disposition,
8959 int thread, int task, int ignore_count,
8960 const struct breakpoint_ops *ops, int from_tty,
8961 int enabled, int internal, unsigned flags)
8963 if (canonical->pre_expanded)
8964 gdb_assert (canonical->lsals.size () == 1);
8966 for (const auto &lsal : canonical->lsals)
8968 /* Note that 'location' can be NULL in the case of a plain
8969 'break', without arguments. */
8970 event_location_up location
8971 = (canonical->location != NULL
8972 ? copy_event_location (canonical->location.get ()) : NULL);
8973 gdb::unique_xmalloc_ptr<char> filter_string
8974 (lsal.canonical != NULL ? xstrdup (lsal.canonical) : NULL);
8976 create_breakpoint_sal (gdbarch, lsal.sals,
8977 std::move (location),
8978 std::move (filter_string),
8979 std::move (cond_string),
8980 std::move (extra_string),
8982 thread, task, ignore_count, ops,
8983 from_tty, enabled, internal, flags,
8984 canonical->special_display);
8988 /* Parse LOCATION which is assumed to be a SAL specification possibly
8989 followed by conditionals. On return, SALS contains an array of SAL
8990 addresses found. LOCATION points to the end of the SAL (for
8991 linespec locations).
8993 The array and the line spec strings are allocated on the heap, it is
8994 the caller's responsibility to free them. */
8997 parse_breakpoint_sals (const struct event_location *location,
8998 struct linespec_result *canonical)
9000 struct symtab_and_line cursal;
9002 if (event_location_type (location) == LINESPEC_LOCATION)
9004 const char *spec = get_linespec_location (location)->spec_string;
9008 /* The last displayed codepoint, if it's valid, is our default
9009 breakpoint address. */
9010 if (last_displayed_sal_is_valid ())
9012 /* Set sal's pspace, pc, symtab, and line to the values
9013 corresponding to the last call to print_frame_info.
9014 Be sure to reinitialize LINE with NOTCURRENT == 0
9015 as the breakpoint line number is inappropriate otherwise.
9016 find_pc_line would adjust PC, re-set it back. */
9017 symtab_and_line sal = get_last_displayed_sal ();
9018 CORE_ADDR pc = sal.pc;
9020 sal = find_pc_line (pc, 0);
9022 /* "break" without arguments is equivalent to "break *PC"
9023 where PC is the last displayed codepoint's address. So
9024 make sure to set sal.explicit_pc to prevent GDB from
9025 trying to expand the list of sals to include all other
9026 instances with the same symtab and line. */
9028 sal.explicit_pc = 1;
9030 struct linespec_sals lsal;
9032 lsal.canonical = NULL;
9034 canonical->lsals.push_back (std::move (lsal));
9038 error (_("No default breakpoint address now."));
9042 /* Force almost all breakpoints to be in terms of the
9043 current_source_symtab (which is decode_line_1's default).
9044 This should produce the results we want almost all of the
9045 time while leaving default_breakpoint_* alone.
9047 ObjC: However, don't match an Objective-C method name which
9048 may have a '+' or '-' succeeded by a '['. */
9049 cursal = get_current_source_symtab_and_line ();
9050 if (last_displayed_sal_is_valid ())
9052 const char *spec = NULL;
9054 if (event_location_type (location) == LINESPEC_LOCATION)
9055 spec = get_linespec_location (location)->spec_string;
9059 && strchr ("+-", spec[0]) != NULL
9062 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9063 get_last_displayed_symtab (),
9064 get_last_displayed_line (),
9065 canonical, NULL, NULL);
9070 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9071 cursal.symtab, cursal.line, canonical, NULL, NULL);
9075 /* Convert each SAL into a real PC. Verify that the PC can be
9076 inserted as a breakpoint. If it can't throw an error. */
9079 breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
9081 for (auto &sal : sals)
9082 resolve_sal_pc (&sal);
9085 /* Fast tracepoints may have restrictions on valid locations. For
9086 instance, a fast tracepoint using a jump instead of a trap will
9087 likely have to overwrite more bytes than a trap would, and so can
9088 only be placed where the instruction is longer than the jump, or a
9089 multi-instruction sequence does not have a jump into the middle of
9093 check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9094 gdb::array_view<const symtab_and_line> sals)
9096 for (const auto &sal : sals)
9098 struct gdbarch *sarch;
9100 sarch = get_sal_arch (sal);
9101 /* We fall back to GDBARCH if there is no architecture
9102 associated with SAL. */
9106 if (!gdbarch_fast_tracepoint_valid_at (sarch, sal.pc, &msg))
9107 error (_("May not have a fast tracepoint at %s%s"),
9108 paddress (sarch, sal.pc), msg.c_str ());
9112 /* Given TOK, a string specification of condition and thread, as
9113 accepted by the 'break' command, extract the condition
9114 string and thread number and set *COND_STRING and *THREAD.
9115 PC identifies the context at which the condition should be parsed.
9116 If no condition is found, *COND_STRING is set to NULL.
9117 If no thread is found, *THREAD is set to -1. */
9120 find_condition_and_thread (const char *tok, CORE_ADDR pc,
9121 char **cond_string, int *thread, int *task,
9124 *cond_string = NULL;
9131 const char *end_tok;
9133 const char *cond_start = NULL;
9134 const char *cond_end = NULL;
9136 tok = skip_spaces (tok);
9138 if ((*tok == '"' || *tok == ',') && rest)
9140 *rest = savestring (tok, strlen (tok));
9144 end_tok = skip_to_space (tok);
9146 toklen = end_tok - tok;
9148 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9150 tok = cond_start = end_tok + 1;
9151 parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
9153 *cond_string = savestring (cond_start, cond_end - cond_start);
9155 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9158 struct thread_info *thr;
9161 thr = parse_thread_id (tok, &tmptok);
9163 error (_("Junk after thread keyword."));
9164 *thread = thr->global_num;
9167 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9172 *task = strtol (tok, &tmptok, 0);
9174 error (_("Junk after task keyword."));
9175 if (!valid_task_id (*task))
9176 error (_("Unknown task %d."), *task);
9181 *rest = savestring (tok, strlen (tok));
9185 error (_("Junk at end of arguments."));
9189 /* Decode a static tracepoint marker spec. */
9191 static std::vector<symtab_and_line>
9192 decode_static_tracepoint_spec (const char **arg_p)
9194 const char *p = &(*arg_p)[3];
9197 p = skip_spaces (p);
9199 endp = skip_to_space (p);
9201 std::string marker_str (p, endp - p);
9203 std::vector<static_tracepoint_marker> markers
9204 = target_static_tracepoint_markers_by_strid (marker_str.c_str ());
9205 if (markers.empty ())
9206 error (_("No known static tracepoint marker named %s"),
9207 marker_str.c_str ());
9209 std::vector<symtab_and_line> sals;
9210 sals.reserve (markers.size ());
9212 for (const static_tracepoint_marker &marker : markers)
9214 symtab_and_line sal = find_pc_line (marker.address, 0);
9215 sal.pc = marker.address;
9216 sals.push_back (sal);
9223 /* See breakpoint.h. */
9226 create_breakpoint (struct gdbarch *gdbarch,
9227 const struct event_location *location,
9228 const char *cond_string,
9229 int thread, const char *extra_string,
9231 int tempflag, enum bptype type_wanted,
9233 enum auto_boolean pending_break_support,
9234 const struct breakpoint_ops *ops,
9235 int from_tty, int enabled, int internal,
9238 struct linespec_result canonical;
9239 struct cleanup *bkpt_chain = NULL;
9242 int prev_bkpt_count = breakpoint_count;
9244 gdb_assert (ops != NULL);
9246 /* If extra_string isn't useful, set it to NULL. */
9247 if (extra_string != NULL && *extra_string == '\0')
9248 extra_string = NULL;
9252 ops->create_sals_from_location (location, &canonical, type_wanted);
9254 CATCH (e, RETURN_MASK_ERROR)
9256 /* If caller is interested in rc value from parse, set
9258 if (e.error == NOT_FOUND_ERROR)
9260 /* If pending breakpoint support is turned off, throw
9263 if (pending_break_support == AUTO_BOOLEAN_FALSE)
9264 throw_exception (e);
9266 exception_print (gdb_stderr, e);
9268 /* If pending breakpoint support is auto query and the user
9269 selects no, then simply return the error code. */
9270 if (pending_break_support == AUTO_BOOLEAN_AUTO
9271 && !nquery (_("Make %s pending on future shared library load? "),
9272 bptype_string (type_wanted)))
9275 /* At this point, either the user was queried about setting
9276 a pending breakpoint and selected yes, or pending
9277 breakpoint behavior is on and thus a pending breakpoint
9278 is defaulted on behalf of the user. */
9282 throw_exception (e);
9286 if (!pending && canonical.lsals.empty ())
9289 /* ----------------------------- SNIP -----------------------------
9290 Anything added to the cleanup chain beyond this point is assumed
9291 to be part of a breakpoint. If the breakpoint create succeeds
9292 then the memory is not reclaimed. */
9293 bkpt_chain = make_cleanup (null_cleanup, 0);
9295 /* Resolve all line numbers to PC's and verify that the addresses
9296 are ok for the target. */
9299 for (auto &lsal : canonical.lsals)
9300 breakpoint_sals_to_pc (lsal.sals);
9303 /* Fast tracepoints may have additional restrictions on location. */
9304 if (!pending && type_wanted == bp_fast_tracepoint)
9306 for (const auto &lsal : canonical.lsals)
9307 check_fast_tracepoint_sals (gdbarch, lsal.sals);
9310 /* Verify that condition can be parsed, before setting any
9311 breakpoints. Allocate a separate condition expression for each
9315 gdb::unique_xmalloc_ptr<char> cond_string_copy;
9316 gdb::unique_xmalloc_ptr<char> extra_string_copy;
9323 const linespec_sals &lsal = canonical.lsals[0];
9325 /* Here we only parse 'arg' to separate condition
9326 from thread number, so parsing in context of first
9327 sal is OK. When setting the breakpoint we'll
9328 re-parse it in context of each sal. */
9330 find_condition_and_thread (extra_string, lsal.sals[0].pc,
9331 &cond, &thread, &task, &rest);
9332 cond_string_copy.reset (cond);
9333 extra_string_copy.reset (rest);
9337 if (type_wanted != bp_dprintf
9338 && extra_string != NULL && *extra_string != '\0')
9339 error (_("Garbage '%s' at end of location"), extra_string);
9341 /* Create a private copy of condition string. */
9343 cond_string_copy.reset (xstrdup (cond_string));
9344 /* Create a private copy of any extra string. */
9346 extra_string_copy.reset (xstrdup (extra_string));
9349 ops->create_breakpoints_sal (gdbarch, &canonical,
9350 std::move (cond_string_copy),
9351 std::move (extra_string_copy),
9353 tempflag ? disp_del : disp_donttouch,
9354 thread, task, ignore_count, ops,
9355 from_tty, enabled, internal, flags);
9359 std::unique_ptr <breakpoint> b = new_breakpoint_from_type (type_wanted);
9361 init_raw_breakpoint_without_location (b.get (), gdbarch, type_wanted, ops);
9362 b->location = copy_event_location (location);
9365 b->cond_string = NULL;
9368 /* Create a private copy of condition string. */
9369 b->cond_string = cond_string != NULL ? xstrdup (cond_string) : NULL;
9373 /* Create a private copy of any extra string. */
9374 b->extra_string = extra_string != NULL ? xstrdup (extra_string) : NULL;
9375 b->ignore_count = ignore_count;
9376 b->disposition = tempflag ? disp_del : disp_donttouch;
9377 b->condition_not_parsed = 1;
9378 b->enable_state = enabled ? bp_enabled : bp_disabled;
9379 if ((type_wanted != bp_breakpoint
9380 && type_wanted != bp_hardware_breakpoint) || thread != -1)
9381 b->pspace = current_program_space;
9383 install_breakpoint (internal, std::move (b), 0);
9386 if (canonical.lsals.size () > 1)
9388 warning (_("Multiple breakpoints were set.\nUse the "
9389 "\"delete\" command to delete unwanted breakpoints."));
9390 prev_breakpoint_count = prev_bkpt_count;
9393 /* That's it. Discard the cleanups for data inserted into the
9395 discard_cleanups (bkpt_chain);
9397 /* error call may happen here - have BKPT_CHAIN already discarded. */
9398 update_global_location_list (UGLL_MAY_INSERT);
9403 /* Set a breakpoint.
9404 ARG is a string describing breakpoint address,
9405 condition, and thread.
9406 FLAG specifies if a breakpoint is hardware on,
9407 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9411 break_command_1 (const char *arg, int flag, int from_tty)
9413 int tempflag = flag & BP_TEMPFLAG;
9414 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
9415 ? bp_hardware_breakpoint
9417 struct breakpoint_ops *ops;
9419 event_location_up location = string_to_event_location (&arg, current_language);
9421 /* Matching breakpoints on probes. */
9422 if (location != NULL
9423 && event_location_type (location.get ()) == PROBE_LOCATION)
9424 ops = &bkpt_probe_breakpoint_ops;
9426 ops = &bkpt_breakpoint_ops;
9428 create_breakpoint (get_current_arch (),
9430 NULL, 0, arg, 1 /* parse arg */,
9431 tempflag, type_wanted,
9432 0 /* Ignore count */,
9433 pending_break_support,
9441 /* Helper function for break_command_1 and disassemble_command. */
9444 resolve_sal_pc (struct symtab_and_line *sal)
9448 if (sal->pc == 0 && sal->symtab != NULL)
9450 if (!find_line_pc (sal->symtab, sal->line, &pc))
9451 error (_("No line %d in file \"%s\"."),
9452 sal->line, symtab_to_filename_for_display (sal->symtab));
9455 /* If this SAL corresponds to a breakpoint inserted using a line
9456 number, then skip the function prologue if necessary. */
9457 if (sal->explicit_line)
9458 skip_prologue_sal (sal);
9461 if (sal->section == 0 && sal->symtab != NULL)
9463 const struct blockvector *bv;
9464 const struct block *b;
9467 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
9468 SYMTAB_COMPUNIT (sal->symtab));
9471 sym = block_linkage_function (b);
9474 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
9475 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
9480 /* It really is worthwhile to have the section, so we'll
9481 just have to look harder. This case can be executed
9482 if we have line numbers but no functions (as can
9483 happen in assembly source). */
9485 scoped_restore_current_pspace_and_thread restore_pspace_thread;
9486 switch_to_program_space_and_thread (sal->pspace);
9488 bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (sal->pc);
9490 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
9497 break_command (const char *arg, int from_tty)
9499 break_command_1 (arg, 0, from_tty);
9503 tbreak_command (const char *arg, int from_tty)
9505 break_command_1 (arg, BP_TEMPFLAG, from_tty);
9509 hbreak_command (const char *arg, int from_tty)
9511 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
9515 thbreak_command (const char *arg, int from_tty)
9517 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
9521 stop_command (const char *arg, int from_tty)
9523 printf_filtered (_("Specify the type of breakpoint to set.\n\
9524 Usage: stop in <function | address>\n\
9525 stop at <line>\n"));
9529 stopin_command (const char *arg, int from_tty)
9533 if (arg == (char *) NULL)
9535 else if (*arg != '*')
9537 const char *argptr = arg;
9540 /* Look for a ':'. If this is a line number specification, then
9541 say it is bad, otherwise, it should be an address or
9542 function/method name. */
9543 while (*argptr && !hasColon)
9545 hasColon = (*argptr == ':');
9550 badInput = (*argptr != ':'); /* Not a class::method */
9552 badInput = isdigit (*arg); /* a simple line number */
9556 printf_filtered (_("Usage: stop in <function | address>\n"));
9558 break_command_1 (arg, 0, from_tty);
9562 stopat_command (const char *arg, int from_tty)
9566 if (arg == (char *) NULL || *arg == '*') /* no line number */
9570 const char *argptr = arg;
9573 /* Look for a ':'. If there is a '::' then get out, otherwise
9574 it is probably a line number. */
9575 while (*argptr && !hasColon)
9577 hasColon = (*argptr == ':');
9582 badInput = (*argptr == ':'); /* we have class::method */
9584 badInput = !isdigit (*arg); /* not a line number */
9588 printf_filtered (_("Usage: stop at <line>\n"));
9590 break_command_1 (arg, 0, from_tty);
9593 /* The dynamic printf command is mostly like a regular breakpoint, but
9594 with a prewired command list consisting of a single output command,
9595 built from extra arguments supplied on the dprintf command
9599 dprintf_command (const char *arg, int from_tty)
9601 event_location_up location = string_to_event_location (&arg, current_language);
9603 /* If non-NULL, ARG should have been advanced past the location;
9604 the next character must be ','. */
9607 if (arg[0] != ',' || arg[1] == '\0')
9608 error (_("Format string required"));
9611 /* Skip the comma. */
9616 create_breakpoint (get_current_arch (),
9618 NULL, 0, arg, 1 /* parse arg */,
9620 0 /* Ignore count */,
9621 pending_break_support,
9622 &dprintf_breakpoint_ops,
9630 agent_printf_command (const char *arg, int from_tty)
9632 error (_("May only run agent-printf on the target"));
9635 /* Implement the "breakpoint_hit" breakpoint_ops method for
9636 ranged breakpoints. */
9639 breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
9640 const address_space *aspace,
9642 const struct target_waitstatus *ws)
9644 if (ws->kind != TARGET_WAITKIND_STOPPED
9645 || ws->value.sig != GDB_SIGNAL_TRAP)
9648 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
9649 bl->length, aspace, bp_addr);
9652 /* Implement the "resources_needed" breakpoint_ops method for
9653 ranged breakpoints. */
9656 resources_needed_ranged_breakpoint (const struct bp_location *bl)
9658 return target_ranged_break_num_registers ();
9661 /* Implement the "print_it" breakpoint_ops method for
9662 ranged breakpoints. */
9664 static enum print_stop_action
9665 print_it_ranged_breakpoint (bpstat bs)
9667 struct breakpoint *b = bs->breakpoint_at;
9668 struct bp_location *bl = b->loc;
9669 struct ui_out *uiout = current_uiout;
9671 gdb_assert (b->type == bp_hardware_breakpoint);
9673 /* Ranged breakpoints have only one location. */
9674 gdb_assert (bl && bl->next == NULL);
9676 annotate_breakpoint (b->number);
9678 maybe_print_thread_hit_breakpoint (uiout);
9680 if (b->disposition == disp_del)
9681 uiout->text ("Temporary ranged breakpoint ");
9683 uiout->text ("Ranged breakpoint ");
9684 if (uiout->is_mi_like_p ())
9686 uiout->field_string ("reason",
9687 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
9688 uiout->field_string ("disp", bpdisp_text (b->disposition));
9690 uiout->field_int ("bkptno", b->number);
9693 return PRINT_SRC_AND_LOC;
9696 /* Implement the "print_one" breakpoint_ops method for
9697 ranged breakpoints. */
9700 print_one_ranged_breakpoint (struct breakpoint *b,
9701 struct bp_location **last_loc)
9703 struct bp_location *bl = b->loc;
9704 struct value_print_options opts;
9705 struct ui_out *uiout = current_uiout;
9707 /* Ranged breakpoints have only one location. */
9708 gdb_assert (bl && bl->next == NULL);
9710 get_user_print_options (&opts);
9712 if (opts.addressprint)
9713 /* We don't print the address range here, it will be printed later
9714 by print_one_detail_ranged_breakpoint. */
9715 uiout->field_skip ("addr");
9717 print_breakpoint_location (b, bl);
9721 /* Implement the "print_one_detail" breakpoint_ops method for
9722 ranged breakpoints. */
9725 print_one_detail_ranged_breakpoint (const struct breakpoint *b,
9726 struct ui_out *uiout)
9728 CORE_ADDR address_start, address_end;
9729 struct bp_location *bl = b->loc;
9734 address_start = bl->address;
9735 address_end = address_start + bl->length - 1;
9737 uiout->text ("\taddress range: ");
9738 stb.printf ("[%s, %s]",
9739 print_core_address (bl->gdbarch, address_start),
9740 print_core_address (bl->gdbarch, address_end));
9741 uiout->field_stream ("addr", stb);
9745 /* Implement the "print_mention" breakpoint_ops method for
9746 ranged breakpoints. */
9749 print_mention_ranged_breakpoint (struct breakpoint *b)
9751 struct bp_location *bl = b->loc;
9752 struct ui_out *uiout = current_uiout;
9755 gdb_assert (b->type == bp_hardware_breakpoint);
9757 uiout->message (_("Hardware assisted ranged breakpoint %d from %s to %s."),
9758 b->number, paddress (bl->gdbarch, bl->address),
9759 paddress (bl->gdbarch, bl->address + bl->length - 1));
9762 /* Implement the "print_recreate" breakpoint_ops method for
9763 ranged breakpoints. */
9766 print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
9768 fprintf_unfiltered (fp, "break-range %s, %s",
9769 event_location_to_string (b->location.get ()),
9770 event_location_to_string (b->location_range_end.get ()));
9771 print_recreate_thread (b, fp);
9774 /* The breakpoint_ops structure to be used in ranged breakpoints. */
9776 static struct breakpoint_ops ranged_breakpoint_ops;
9778 /* Find the address where the end of the breakpoint range should be
9779 placed, given the SAL of the end of the range. This is so that if
9780 the user provides a line number, the end of the range is set to the
9781 last instruction of the given line. */
9784 find_breakpoint_range_end (struct symtab_and_line sal)
9788 /* If the user provided a PC value, use it. Otherwise,
9789 find the address of the end of the given location. */
9790 if (sal.explicit_pc)
9797 ret = find_line_pc_range (sal, &start, &end);
9799 error (_("Could not find location of the end of the range."));
9801 /* find_line_pc_range returns the start of the next line. */
9808 /* Implement the "break-range" CLI command. */
9811 break_range_command (const char *arg, int from_tty)
9813 const char *arg_start;
9814 struct linespec_result canonical_start, canonical_end;
9815 int bp_count, can_use_bp, length;
9817 struct breakpoint *b;
9819 /* We don't support software ranged breakpoints. */
9820 if (target_ranged_break_num_registers () < 0)
9821 error (_("This target does not support hardware ranged breakpoints."));
9823 bp_count = hw_breakpoint_used_count ();
9824 bp_count += target_ranged_break_num_registers ();
9825 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9828 error (_("Hardware breakpoints used exceeds limit."));
9830 arg = skip_spaces (arg);
9831 if (arg == NULL || arg[0] == '\0')
9832 error(_("No address range specified."));
9835 event_location_up start_location = string_to_event_location (&arg,
9837 parse_breakpoint_sals (start_location.get (), &canonical_start);
9840 error (_("Too few arguments."));
9841 else if (canonical_start.lsals.empty ())
9842 error (_("Could not find location of the beginning of the range."));
9844 const linespec_sals &lsal_start = canonical_start.lsals[0];
9846 if (canonical_start.lsals.size () > 1
9847 || lsal_start.sals.size () != 1)
9848 error (_("Cannot create a ranged breakpoint with multiple locations."));
9850 const symtab_and_line &sal_start = lsal_start.sals[0];
9851 std::string addr_string_start (arg_start, arg - arg_start);
9853 arg++; /* Skip the comma. */
9854 arg = skip_spaces (arg);
9856 /* Parse the end location. */
9860 /* We call decode_line_full directly here instead of using
9861 parse_breakpoint_sals because we need to specify the start location's
9862 symtab and line as the default symtab and line for the end of the
9863 range. This makes it possible to have ranges like "foo.c:27, +14",
9864 where +14 means 14 lines from the start location. */
9865 event_location_up end_location = string_to_event_location (&arg,
9867 decode_line_full (end_location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
9868 sal_start.symtab, sal_start.line,
9869 &canonical_end, NULL, NULL);
9871 if (canonical_end.lsals.empty ())
9872 error (_("Could not find location of the end of the range."));
9874 const linespec_sals &lsal_end = canonical_end.lsals[0];
9875 if (canonical_end.lsals.size () > 1
9876 || lsal_end.sals.size () != 1)
9877 error (_("Cannot create a ranged breakpoint with multiple locations."));
9879 const symtab_and_line &sal_end = lsal_end.sals[0];
9881 end = find_breakpoint_range_end (sal_end);
9882 if (sal_start.pc > end)
9883 error (_("Invalid address range, end precedes start."));
9885 length = end - sal_start.pc + 1;
9887 /* Length overflowed. */
9888 error (_("Address range too large."));
9889 else if (length == 1)
9891 /* This range is simple enough to be handled by
9892 the `hbreak' command. */
9893 hbreak_command (&addr_string_start[0], 1);
9898 /* Now set up the breakpoint. */
9899 b = set_raw_breakpoint (get_current_arch (), sal_start,
9900 bp_hardware_breakpoint, &ranged_breakpoint_ops);
9901 set_breakpoint_count (breakpoint_count + 1);
9902 b->number = breakpoint_count;
9903 b->disposition = disp_donttouch;
9904 b->location = std::move (start_location);
9905 b->location_range_end = std::move (end_location);
9906 b->loc->length = length;
9909 gdb::observers::breakpoint_created.notify (b);
9910 update_global_location_list (UGLL_MAY_INSERT);
9913 /* Return non-zero if EXP is verified as constant. Returned zero
9914 means EXP is variable. Also the constant detection may fail for
9915 some constant expressions and in such case still falsely return
9919 watchpoint_exp_is_const (const struct expression *exp)
9927 /* We are only interested in the descriptor of each element. */
9928 operator_length (exp, i, &oplenp, &argsp);
9931 switch (exp->elts[i].opcode)
9941 case BINOP_LOGICAL_AND:
9942 case BINOP_LOGICAL_OR:
9943 case BINOP_BITWISE_AND:
9944 case BINOP_BITWISE_IOR:
9945 case BINOP_BITWISE_XOR:
9947 case BINOP_NOTEQUAL:
9973 case OP_OBJC_NSSTRING:
9976 case UNOP_LOGICAL_NOT:
9977 case UNOP_COMPLEMENT:
9982 case UNOP_CAST_TYPE:
9983 case UNOP_REINTERPRET_CAST:
9984 case UNOP_DYNAMIC_CAST:
9985 /* Unary, binary and ternary operators: We have to check
9986 their operands. If they are constant, then so is the
9987 result of that operation. For instance, if A and B are
9988 determined to be constants, then so is "A + B".
9990 UNOP_IND is one exception to the rule above, because the
9991 value of *ADDR is not necessarily a constant, even when
9996 /* Check whether the associated symbol is a constant.
9998 We use SYMBOL_CLASS rather than TYPE_CONST because it's
9999 possible that a buggy compiler could mark a variable as
10000 constant even when it is not, and TYPE_CONST would return
10001 true in this case, while SYMBOL_CLASS wouldn't.
10003 We also have to check for function symbols because they
10004 are always constant. */
10006 struct symbol *s = exp->elts[i + 2].symbol;
10008 if (SYMBOL_CLASS (s) != LOC_BLOCK
10009 && SYMBOL_CLASS (s) != LOC_CONST
10010 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10015 /* The default action is to return 0 because we are using
10016 the optimistic approach here: If we don't know something,
10017 then it is not a constant. */
10026 /* Watchpoint destructor. */
10028 watchpoint::~watchpoint ()
10030 xfree (this->exp_string);
10031 xfree (this->exp_string_reparse);
10034 /* Implement the "re_set" breakpoint_ops method for watchpoints. */
10037 re_set_watchpoint (struct breakpoint *b)
10039 struct watchpoint *w = (struct watchpoint *) b;
10041 /* Watchpoint can be either on expression using entirely global
10042 variables, or it can be on local variables.
10044 Watchpoints of the first kind are never auto-deleted, and even
10045 persist across program restarts. Since they can use variables
10046 from shared libraries, we need to reparse expression as libraries
10047 are loaded and unloaded.
10049 Watchpoints on local variables can also change meaning as result
10050 of solib event. For example, if a watchpoint uses both a local
10051 and a global variables in expression, it's a local watchpoint,
10052 but unloading of a shared library will make the expression
10053 invalid. This is not a very common use case, but we still
10054 re-evaluate expression, to avoid surprises to the user.
10056 Note that for local watchpoints, we re-evaluate it only if
10057 watchpoints frame id is still valid. If it's not, it means the
10058 watchpoint is out of scope and will be deleted soon. In fact,
10059 I'm not sure we'll ever be called in this case.
10061 If a local watchpoint's frame id is still valid, then
10062 w->exp_valid_block is likewise valid, and we can safely use it.
10064 Don't do anything about disabled watchpoints, since they will be
10065 reevaluated again when enabled. */
10066 update_watchpoint (w, 1 /* reparse */);
10069 /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10072 insert_watchpoint (struct bp_location *bl)
10074 struct watchpoint *w = (struct watchpoint *) bl->owner;
10075 int length = w->exact ? 1 : bl->length;
10077 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
10078 w->cond_exp.get ());
10081 /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10084 remove_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
10086 struct watchpoint *w = (struct watchpoint *) bl->owner;
10087 int length = w->exact ? 1 : bl->length;
10089 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
10090 w->cond_exp.get ());
10094 breakpoint_hit_watchpoint (const struct bp_location *bl,
10095 const address_space *aspace, CORE_ADDR bp_addr,
10096 const struct target_waitstatus *ws)
10098 struct breakpoint *b = bl->owner;
10099 struct watchpoint *w = (struct watchpoint *) b;
10101 /* Continuable hardware watchpoints are treated as non-existent if the
10102 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10103 some data address). Otherwise gdb won't stop on a break instruction
10104 in the code (not from a breakpoint) when a hardware watchpoint has
10105 been defined. Also skip watchpoints which we know did not trigger
10106 (did not match the data address). */
10107 if (is_hardware_watchpoint (b)
10108 && w->watchpoint_triggered == watch_triggered_no)
10115 check_status_watchpoint (bpstat bs)
10117 gdb_assert (is_watchpoint (bs->breakpoint_at));
10119 bpstat_check_watchpoint (bs);
10122 /* Implement the "resources_needed" breakpoint_ops method for
10123 hardware watchpoints. */
10126 resources_needed_watchpoint (const struct bp_location *bl)
10128 struct watchpoint *w = (struct watchpoint *) bl->owner;
10129 int length = w->exact? 1 : bl->length;
10131 return target_region_ok_for_hw_watchpoint (bl->address, length);
10134 /* Implement the "works_in_software_mode" breakpoint_ops method for
10135 hardware watchpoints. */
10138 works_in_software_mode_watchpoint (const struct breakpoint *b)
10140 /* Read and access watchpoints only work with hardware support. */
10141 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
10144 static enum print_stop_action
10145 print_it_watchpoint (bpstat bs)
10147 struct breakpoint *b;
10148 enum print_stop_action result;
10149 struct watchpoint *w;
10150 struct ui_out *uiout = current_uiout;
10152 gdb_assert (bs->bp_location_at != NULL);
10154 b = bs->breakpoint_at;
10155 w = (struct watchpoint *) b;
10157 annotate_watchpoint (b->number);
10158 maybe_print_thread_hit_breakpoint (uiout);
10162 gdb::optional<ui_out_emit_tuple> tuple_emitter;
10165 case bp_watchpoint:
10166 case bp_hardware_watchpoint:
10167 if (uiout->is_mi_like_p ())
10168 uiout->field_string
10169 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10171 tuple_emitter.emplace (uiout, "value");
10172 uiout->text ("\nOld value = ");
10173 watchpoint_value_print (bs->old_val.get (), &stb);
10174 uiout->field_stream ("old", stb);
10175 uiout->text ("\nNew value = ");
10176 watchpoint_value_print (w->val.get (), &stb);
10177 uiout->field_stream ("new", stb);
10178 uiout->text ("\n");
10179 /* More than one watchpoint may have been triggered. */
10180 result = PRINT_UNKNOWN;
10183 case bp_read_watchpoint:
10184 if (uiout->is_mi_like_p ())
10185 uiout->field_string
10186 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10188 tuple_emitter.emplace (uiout, "value");
10189 uiout->text ("\nValue = ");
10190 watchpoint_value_print (w->val.get (), &stb);
10191 uiout->field_stream ("value", stb);
10192 uiout->text ("\n");
10193 result = PRINT_UNKNOWN;
10196 case bp_access_watchpoint:
10197 if (bs->old_val != NULL)
10199 if (uiout->is_mi_like_p ())
10200 uiout->field_string
10202 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10204 tuple_emitter.emplace (uiout, "value");
10205 uiout->text ("\nOld value = ");
10206 watchpoint_value_print (bs->old_val.get (), &stb);
10207 uiout->field_stream ("old", stb);
10208 uiout->text ("\nNew value = ");
10213 if (uiout->is_mi_like_p ())
10214 uiout->field_string
10216 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10217 tuple_emitter.emplace (uiout, "value");
10218 uiout->text ("\nValue = ");
10220 watchpoint_value_print (w->val.get (), &stb);
10221 uiout->field_stream ("new", stb);
10222 uiout->text ("\n");
10223 result = PRINT_UNKNOWN;
10226 result = PRINT_UNKNOWN;
10232 /* Implement the "print_mention" breakpoint_ops method for hardware
10236 print_mention_watchpoint (struct breakpoint *b)
10238 struct watchpoint *w = (struct watchpoint *) b;
10239 struct ui_out *uiout = current_uiout;
10240 const char *tuple_name;
10244 case bp_watchpoint:
10245 uiout->text ("Watchpoint ");
10246 tuple_name = "wpt";
10248 case bp_hardware_watchpoint:
10249 uiout->text ("Hardware watchpoint ");
10250 tuple_name = "wpt";
10252 case bp_read_watchpoint:
10253 uiout->text ("Hardware read watchpoint ");
10254 tuple_name = "hw-rwpt";
10256 case bp_access_watchpoint:
10257 uiout->text ("Hardware access (read/write) watchpoint ");
10258 tuple_name = "hw-awpt";
10261 internal_error (__FILE__, __LINE__,
10262 _("Invalid hardware watchpoint type."));
10265 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
10266 uiout->field_int ("number", b->number);
10267 uiout->text (": ");
10268 uiout->field_string ("exp", w->exp_string);
10271 /* Implement the "print_recreate" breakpoint_ops method for
10275 print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10277 struct watchpoint *w = (struct watchpoint *) b;
10281 case bp_watchpoint:
10282 case bp_hardware_watchpoint:
10283 fprintf_unfiltered (fp, "watch");
10285 case bp_read_watchpoint:
10286 fprintf_unfiltered (fp, "rwatch");
10288 case bp_access_watchpoint:
10289 fprintf_unfiltered (fp, "awatch");
10292 internal_error (__FILE__, __LINE__,
10293 _("Invalid watchpoint type."));
10296 fprintf_unfiltered (fp, " %s", w->exp_string);
10297 print_recreate_thread (b, fp);
10300 /* Implement the "explains_signal" breakpoint_ops method for
10304 explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10306 /* A software watchpoint cannot cause a signal other than
10307 GDB_SIGNAL_TRAP. */
10308 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
10314 /* The breakpoint_ops structure to be used in hardware watchpoints. */
10316 static struct breakpoint_ops watchpoint_breakpoint_ops;
10318 /* Implement the "insert" breakpoint_ops method for
10319 masked hardware watchpoints. */
10322 insert_masked_watchpoint (struct bp_location *bl)
10324 struct watchpoint *w = (struct watchpoint *) bl->owner;
10326 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
10327 bl->watchpoint_type);
10330 /* Implement the "remove" breakpoint_ops method for
10331 masked hardware watchpoints. */
10334 remove_masked_watchpoint (struct bp_location *bl, enum remove_bp_reason reason)
10336 struct watchpoint *w = (struct watchpoint *) bl->owner;
10338 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
10339 bl->watchpoint_type);
10342 /* Implement the "resources_needed" breakpoint_ops method for
10343 masked hardware watchpoints. */
10346 resources_needed_masked_watchpoint (const struct bp_location *bl)
10348 struct watchpoint *w = (struct watchpoint *) bl->owner;
10350 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
10353 /* Implement the "works_in_software_mode" breakpoint_ops method for
10354 masked hardware watchpoints. */
10357 works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10362 /* Implement the "print_it" breakpoint_ops method for
10363 masked hardware watchpoints. */
10365 static enum print_stop_action
10366 print_it_masked_watchpoint (bpstat bs)
10368 struct breakpoint *b = bs->breakpoint_at;
10369 struct ui_out *uiout = current_uiout;
10371 /* Masked watchpoints have only one location. */
10372 gdb_assert (b->loc && b->loc->next == NULL);
10374 annotate_watchpoint (b->number);
10375 maybe_print_thread_hit_breakpoint (uiout);
10379 case bp_hardware_watchpoint:
10380 if (uiout->is_mi_like_p ())
10381 uiout->field_string
10382 ("reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10385 case bp_read_watchpoint:
10386 if (uiout->is_mi_like_p ())
10387 uiout->field_string
10388 ("reason", async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10391 case bp_access_watchpoint:
10392 if (uiout->is_mi_like_p ())
10393 uiout->field_string
10395 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10398 internal_error (__FILE__, __LINE__,
10399 _("Invalid hardware watchpoint type."));
10403 uiout->text (_("\n\
10404 Check the underlying instruction at PC for the memory\n\
10405 address and value which triggered this watchpoint.\n"));
10406 uiout->text ("\n");
10408 /* More than one watchpoint may have been triggered. */
10409 return PRINT_UNKNOWN;
10412 /* Implement the "print_one_detail" breakpoint_ops method for
10413 masked hardware watchpoints. */
10416 print_one_detail_masked_watchpoint (const struct breakpoint *b,
10417 struct ui_out *uiout)
10419 struct watchpoint *w = (struct watchpoint *) b;
10421 /* Masked watchpoints have only one location. */
10422 gdb_assert (b->loc && b->loc->next == NULL);
10424 uiout->text ("\tmask ");
10425 uiout->field_core_addr ("mask", b->loc->gdbarch, w->hw_wp_mask);
10426 uiout->text ("\n");
10429 /* Implement the "print_mention" breakpoint_ops method for
10430 masked hardware watchpoints. */
10433 print_mention_masked_watchpoint (struct breakpoint *b)
10435 struct watchpoint *w = (struct watchpoint *) b;
10436 struct ui_out *uiout = current_uiout;
10437 const char *tuple_name;
10441 case bp_hardware_watchpoint:
10442 uiout->text ("Masked hardware watchpoint ");
10443 tuple_name = "wpt";
10445 case bp_read_watchpoint:
10446 uiout->text ("Masked hardware read watchpoint ");
10447 tuple_name = "hw-rwpt";
10449 case bp_access_watchpoint:
10450 uiout->text ("Masked hardware access (read/write) watchpoint ");
10451 tuple_name = "hw-awpt";
10454 internal_error (__FILE__, __LINE__,
10455 _("Invalid hardware watchpoint type."));
10458 ui_out_emit_tuple tuple_emitter (uiout, tuple_name);
10459 uiout->field_int ("number", b->number);
10460 uiout->text (": ");
10461 uiout->field_string ("exp", w->exp_string);
10464 /* Implement the "print_recreate" breakpoint_ops method for
10465 masked hardware watchpoints. */
10468 print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
10470 struct watchpoint *w = (struct watchpoint *) b;
10475 case bp_hardware_watchpoint:
10476 fprintf_unfiltered (fp, "watch");
10478 case bp_read_watchpoint:
10479 fprintf_unfiltered (fp, "rwatch");
10481 case bp_access_watchpoint:
10482 fprintf_unfiltered (fp, "awatch");
10485 internal_error (__FILE__, __LINE__,
10486 _("Invalid hardware watchpoint type."));
10489 sprintf_vma (tmp, w->hw_wp_mask);
10490 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
10491 print_recreate_thread (b, fp);
10494 /* The breakpoint_ops structure to be used in masked hardware watchpoints. */
10496 static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
10498 /* Tell whether the given watchpoint is a masked hardware watchpoint. */
10501 is_masked_watchpoint (const struct breakpoint *b)
10503 return b->ops == &masked_watchpoint_breakpoint_ops;
10506 /* accessflag: hw_write: watch write,
10507 hw_read: watch read,
10508 hw_access: watch access (read or write) */
10510 watch_command_1 (const char *arg, int accessflag, int from_tty,
10511 int just_location, int internal)
10513 struct breakpoint *scope_breakpoint = NULL;
10514 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
10515 struct value *mark, *result;
10516 int saved_bitpos = 0, saved_bitsize = 0;
10517 const char *exp_start = NULL;
10518 const char *exp_end = NULL;
10519 const char *tok, *end_tok;
10521 const char *cond_start = NULL;
10522 const char *cond_end = NULL;
10523 enum bptype bp_type;
10526 /* Flag to indicate whether we are going to use masks for
10527 the hardware watchpoint. */
10529 CORE_ADDR mask = 0;
10531 /* Make sure that we actually have parameters to parse. */
10532 if (arg != NULL && arg[0] != '\0')
10534 const char *value_start;
10536 exp_end = arg + strlen (arg);
10538 /* Look for "parameter value" pairs at the end
10539 of the arguments string. */
10540 for (tok = exp_end - 1; tok > arg; tok--)
10542 /* Skip whitespace at the end of the argument list. */
10543 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10546 /* Find the beginning of the last token.
10547 This is the value of the parameter. */
10548 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10550 value_start = tok + 1;
10552 /* Skip whitespace. */
10553 while (tok > arg && (*tok == ' ' || *tok == '\t'))
10558 /* Find the beginning of the second to last token.
10559 This is the parameter itself. */
10560 while (tok > arg && (*tok != ' ' && *tok != '\t'))
10563 toklen = end_tok - tok + 1;
10565 if (toklen == 6 && startswith (tok, "thread"))
10567 struct thread_info *thr;
10568 /* At this point we've found a "thread" token, which means
10569 the user is trying to set a watchpoint that triggers
10570 only in a specific thread. */
10574 error(_("You can specify only one thread."));
10576 /* Extract the thread ID from the next token. */
10577 thr = parse_thread_id (value_start, &endp);
10579 /* Check if the user provided a valid thread ID. */
10580 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
10581 invalid_thread_id_error (value_start);
10583 thread = thr->global_num;
10585 else if (toklen == 4 && startswith (tok, "mask"))
10587 /* We've found a "mask" token, which means the user wants to
10588 create a hardware watchpoint that is going to have the mask
10590 struct value *mask_value, *mark;
10593 error(_("You can specify only one mask."));
10595 use_mask = just_location = 1;
10597 mark = value_mark ();
10598 mask_value = parse_to_comma_and_eval (&value_start);
10599 mask = value_as_address (mask_value);
10600 value_free_to_mark (mark);
10603 /* We didn't recognize what we found. We should stop here. */
10606 /* Truncate the string and get rid of the "parameter value" pair before
10607 the arguments string is parsed by the parse_exp_1 function. */
10614 /* Parse the rest of the arguments. From here on out, everything
10615 is in terms of a newly allocated string instead of the original
10617 innermost_block.reset ();
10618 std::string expression (arg, exp_end - arg);
10619 exp_start = arg = expression.c_str ();
10620 expression_up exp = parse_exp_1 (&arg, 0, 0, 0);
10622 /* Remove trailing whitespace from the expression before saving it.
10623 This makes the eventual display of the expression string a bit
10625 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
10628 /* Checking if the expression is not constant. */
10629 if (watchpoint_exp_is_const (exp.get ()))
10633 len = exp_end - exp_start;
10634 while (len > 0 && isspace (exp_start[len - 1]))
10636 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
10639 exp_valid_block = innermost_block.block ();
10640 mark = value_mark ();
10641 struct value *val_as_value = nullptr;
10642 fetch_subexp_value (exp.get (), &pc, &val_as_value, &result, NULL,
10645 if (val_as_value != NULL && just_location)
10647 saved_bitpos = value_bitpos (val_as_value);
10648 saved_bitsize = value_bitsize (val_as_value);
10656 exp_valid_block = NULL;
10657 val = release_value (value_addr (result));
10658 value_free_to_mark (mark);
10662 ret = target_masked_watch_num_registers (value_as_address (val.get ()),
10665 error (_("This target does not support masked watchpoints."));
10666 else if (ret == -2)
10667 error (_("Invalid mask or memory region."));
10670 else if (val_as_value != NULL)
10671 val = release_value (val_as_value);
10673 tok = skip_spaces (arg);
10674 end_tok = skip_to_space (tok);
10676 toklen = end_tok - tok;
10677 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
10679 innermost_block.reset ();
10680 tok = cond_start = end_tok + 1;
10681 parse_exp_1 (&tok, 0, 0, 0);
10683 /* The watchpoint expression may not be local, but the condition
10684 may still be. E.g.: `watch global if local > 0'. */
10685 cond_exp_valid_block = innermost_block.block ();
10690 error (_("Junk at end of command."));
10692 frame_info *wp_frame = block_innermost_frame (exp_valid_block);
10694 /* Save this because create_internal_breakpoint below invalidates
10696 frame_id watchpoint_frame = get_frame_id (wp_frame);
10698 /* If the expression is "local", then set up a "watchpoint scope"
10699 breakpoint at the point where we've left the scope of the watchpoint
10700 expression. Create the scope breakpoint before the watchpoint, so
10701 that we will encounter it first in bpstat_stop_status. */
10702 if (exp_valid_block != NULL && wp_frame != NULL)
10704 frame_id caller_frame_id = frame_unwind_caller_id (wp_frame);
10706 if (frame_id_p (caller_frame_id))
10708 gdbarch *caller_arch = frame_unwind_caller_arch (wp_frame);
10709 CORE_ADDR caller_pc = frame_unwind_caller_pc (wp_frame);
10712 = create_internal_breakpoint (caller_arch, caller_pc,
10713 bp_watchpoint_scope,
10714 &momentary_breakpoint_ops);
10716 /* create_internal_breakpoint could invalidate WP_FRAME. */
10719 scope_breakpoint->enable_state = bp_enabled;
10721 /* Automatically delete the breakpoint when it hits. */
10722 scope_breakpoint->disposition = disp_del;
10724 /* Only break in the proper frame (help with recursion). */
10725 scope_breakpoint->frame_id = caller_frame_id;
10727 /* Set the address at which we will stop. */
10728 scope_breakpoint->loc->gdbarch = caller_arch;
10729 scope_breakpoint->loc->requested_address = caller_pc;
10730 scope_breakpoint->loc->address
10731 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
10732 scope_breakpoint->loc->requested_address,
10733 scope_breakpoint->type);
10737 /* Now set up the breakpoint. We create all watchpoints as hardware
10738 watchpoints here even if hardware watchpoints are turned off, a call
10739 to update_watchpoint later in this function will cause the type to
10740 drop back to bp_watchpoint (software watchpoint) if required. */
10742 if (accessflag == hw_read)
10743 bp_type = bp_read_watchpoint;
10744 else if (accessflag == hw_access)
10745 bp_type = bp_access_watchpoint;
10747 bp_type = bp_hardware_watchpoint;
10749 std::unique_ptr<watchpoint> w (new watchpoint ());
10752 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
10753 &masked_watchpoint_breakpoint_ops);
10755 init_raw_breakpoint_without_location (w.get (), NULL, bp_type,
10756 &watchpoint_breakpoint_ops);
10757 w->thread = thread;
10758 w->disposition = disp_donttouch;
10759 w->pspace = current_program_space;
10760 w->exp = std::move (exp);
10761 w->exp_valid_block = exp_valid_block;
10762 w->cond_exp_valid_block = cond_exp_valid_block;
10765 struct type *t = value_type (val.get ());
10766 CORE_ADDR addr = value_as_address (val.get ());
10768 w->exp_string_reparse
10769 = current_language->la_watch_location_expression (t, addr).release ();
10771 w->exp_string = xstrprintf ("-location %.*s",
10772 (int) (exp_end - exp_start), exp_start);
10775 w->exp_string = savestring (exp_start, exp_end - exp_start);
10779 w->hw_wp_mask = mask;
10784 w->val_bitpos = saved_bitpos;
10785 w->val_bitsize = saved_bitsize;
10790 w->cond_string = savestring (cond_start, cond_end - cond_start);
10792 w->cond_string = 0;
10794 if (frame_id_p (watchpoint_frame))
10796 w->watchpoint_frame = watchpoint_frame;
10797 w->watchpoint_thread = inferior_ptid;
10801 w->watchpoint_frame = null_frame_id;
10802 w->watchpoint_thread = null_ptid;
10805 if (scope_breakpoint != NULL)
10807 /* The scope breakpoint is related to the watchpoint. We will
10808 need to act on them together. */
10809 w->related_breakpoint = scope_breakpoint;
10810 scope_breakpoint->related_breakpoint = w.get ();
10813 if (!just_location)
10814 value_free_to_mark (mark);
10816 /* Finally update the new watchpoint. This creates the locations
10817 that should be inserted. */
10818 update_watchpoint (w.get (), 1);
10820 install_breakpoint (internal, std::move (w), 1);
10823 /* Return count of debug registers needed to watch the given expression.
10824 If the watchpoint cannot be handled in hardware return zero. */
10827 can_use_hardware_watchpoint (const std::vector<value_ref_ptr> &vals)
10829 int found_memory_cnt = 0;
10831 /* Did the user specifically forbid us to use hardware watchpoints? */
10832 if (!can_use_hw_watchpoints)
10835 gdb_assert (!vals.empty ());
10836 struct value *head = vals[0].get ();
10838 /* Make sure that the value of the expression depends only upon
10839 memory contents, and values computed from them within GDB. If we
10840 find any register references or function calls, we can't use a
10841 hardware watchpoint.
10843 The idea here is that evaluating an expression generates a series
10844 of values, one holding the value of every subexpression. (The
10845 expression a*b+c has five subexpressions: a, b, a*b, c, and
10846 a*b+c.) GDB's values hold almost enough information to establish
10847 the criteria given above --- they identify memory lvalues,
10848 register lvalues, computed values, etcetera. So we can evaluate
10849 the expression, and then scan the chain of values that leaves
10850 behind to decide whether we can detect any possible change to the
10851 expression's final value using only hardware watchpoints.
10853 However, I don't think that the values returned by inferior
10854 function calls are special in any way. So this function may not
10855 notice that an expression involving an inferior function call
10856 can't be watched with hardware watchpoints. FIXME. */
10857 for (const value_ref_ptr &iter : vals)
10859 struct value *v = iter.get ();
10861 if (VALUE_LVAL (v) == lval_memory)
10863 if (v != head && value_lazy (v))
10864 /* A lazy memory lvalue in the chain is one that GDB never
10865 needed to fetch; we either just used its address (e.g.,
10866 `a' in `a.b') or we never needed it at all (e.g., `a'
10867 in `a,b'). This doesn't apply to HEAD; if that is
10868 lazy then it was not readable, but watch it anyway. */
10872 /* Ahh, memory we actually used! Check if we can cover
10873 it with hardware watchpoints. */
10874 struct type *vtype = check_typedef (value_type (v));
10876 /* We only watch structs and arrays if user asked for it
10877 explicitly, never if they just happen to appear in a
10878 middle of some value chain. */
10880 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
10881 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
10883 CORE_ADDR vaddr = value_address (v);
10887 len = (target_exact_watchpoints
10888 && is_scalar_type_recursive (vtype))?
10889 1 : TYPE_LENGTH (value_type (v));
10891 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
10895 found_memory_cnt += num_regs;
10899 else if (VALUE_LVAL (v) != not_lval
10900 && deprecated_value_modifiable (v) == 0)
10901 return 0; /* These are values from the history (e.g., $1). */
10902 else if (VALUE_LVAL (v) == lval_register)
10903 return 0; /* Cannot watch a register with a HW watchpoint. */
10906 /* The expression itself looks suitable for using a hardware
10907 watchpoint, but give the target machine a chance to reject it. */
10908 return found_memory_cnt;
10912 watch_command_wrapper (const char *arg, int from_tty, int internal)
10914 watch_command_1 (arg, hw_write, from_tty, 0, internal);
10917 /* A helper function that looks for the "-location" argument and then
10918 calls watch_command_1. */
10921 watch_maybe_just_location (const char *arg, int accessflag, int from_tty)
10923 int just_location = 0;
10926 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
10927 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
10929 arg = skip_spaces (arg);
10933 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
10937 watch_command (const char *arg, int from_tty)
10939 watch_maybe_just_location (arg, hw_write, from_tty);
10943 rwatch_command_wrapper (const char *arg, int from_tty, int internal)
10945 watch_command_1 (arg, hw_read, from_tty, 0, internal);
10949 rwatch_command (const char *arg, int from_tty)
10951 watch_maybe_just_location (arg, hw_read, from_tty);
10955 awatch_command_wrapper (const char *arg, int from_tty, int internal)
10957 watch_command_1 (arg, hw_access, from_tty, 0, internal);
10961 awatch_command (const char *arg, int from_tty)
10963 watch_maybe_just_location (arg, hw_access, from_tty);
10967 /* Data for the FSM that manages the until(location)/advance commands
10968 in infcmd.c. Here because it uses the mechanisms of
10971 struct until_break_fsm
10973 /* The base class. */
10974 struct thread_fsm thread_fsm;
10976 /* The thread that as current when the command was executed. */
10979 /* The breakpoint set at the destination location. */
10980 struct breakpoint *location_breakpoint;
10982 /* Breakpoint set at the return address in the caller frame. May be
10984 struct breakpoint *caller_breakpoint;
10987 static void until_break_fsm_clean_up (struct thread_fsm *self,
10988 struct thread_info *thread);
10989 static int until_break_fsm_should_stop (struct thread_fsm *self,
10990 struct thread_info *thread);
10991 static enum async_reply_reason
10992 until_break_fsm_async_reply_reason (struct thread_fsm *self);
10994 /* until_break_fsm's vtable. */
10996 static struct thread_fsm_ops until_break_fsm_ops =
10999 until_break_fsm_clean_up,
11000 until_break_fsm_should_stop,
11001 NULL, /* return_value */
11002 until_break_fsm_async_reply_reason,
11005 /* Allocate a new until_break_command_fsm. */
11007 static struct until_break_fsm *
11008 new_until_break_fsm (struct interp *cmd_interp, int thread,
11009 breakpoint_up &&location_breakpoint,
11010 breakpoint_up &&caller_breakpoint)
11012 struct until_break_fsm *sm;
11014 sm = XCNEW (struct until_break_fsm);
11015 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops, cmd_interp);
11017 sm->thread = thread;
11018 sm->location_breakpoint = location_breakpoint.release ();
11019 sm->caller_breakpoint = caller_breakpoint.release ();
11024 /* Implementation of the 'should_stop' FSM method for the
11025 until(location)/advance commands. */
11028 until_break_fsm_should_stop (struct thread_fsm *self,
11029 struct thread_info *tp)
11031 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11033 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11034 sm->location_breakpoint) != NULL
11035 || (sm->caller_breakpoint != NULL
11036 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11037 sm->caller_breakpoint) != NULL))
11038 thread_fsm_set_finished (self);
11043 /* Implementation of the 'clean_up' FSM method for the
11044 until(location)/advance commands. */
11047 until_break_fsm_clean_up (struct thread_fsm *self,
11048 struct thread_info *thread)
11050 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11052 /* Clean up our temporary breakpoints. */
11053 if (sm->location_breakpoint != NULL)
11055 delete_breakpoint (sm->location_breakpoint);
11056 sm->location_breakpoint = NULL;
11058 if (sm->caller_breakpoint != NULL)
11060 delete_breakpoint (sm->caller_breakpoint);
11061 sm->caller_breakpoint = NULL;
11063 delete_longjmp_breakpoint (sm->thread);
11066 /* Implementation of the 'async_reply_reason' FSM method for the
11067 until(location)/advance commands. */
11069 static enum async_reply_reason
11070 until_break_fsm_async_reply_reason (struct thread_fsm *self)
11072 return EXEC_ASYNC_LOCATION_REACHED;
11076 until_break_command (const char *arg, int from_tty, int anywhere)
11078 struct frame_info *frame;
11079 struct gdbarch *frame_gdbarch;
11080 struct frame_id stack_frame_id;
11081 struct frame_id caller_frame_id;
11082 struct cleanup *old_chain;
11084 struct thread_info *tp;
11085 struct until_break_fsm *sm;
11087 clear_proceed_status (0);
11089 /* Set a breakpoint where the user wants it and at return from
11092 event_location_up location = string_to_event_location (&arg, current_language);
11094 std::vector<symtab_and_line> sals
11095 = (last_displayed_sal_is_valid ()
11096 ? decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE, NULL,
11097 get_last_displayed_symtab (),
11098 get_last_displayed_line ())
11099 : decode_line_1 (location.get (), DECODE_LINE_FUNFIRSTLINE,
11100 NULL, (struct symtab *) NULL, 0));
11102 if (sals.size () != 1)
11103 error (_("Couldn't get information on specified line."));
11105 symtab_and_line &sal = sals[0];
11108 error (_("Junk at end of arguments."));
11110 resolve_sal_pc (&sal);
11112 tp = inferior_thread ();
11113 thread = tp->global_num;
11115 old_chain = make_cleanup (null_cleanup, NULL);
11117 /* Note linespec handling above invalidates the frame chain.
11118 Installing a breakpoint also invalidates the frame chain (as it
11119 may need to switch threads), so do any frame handling before
11122 frame = get_selected_frame (NULL);
11123 frame_gdbarch = get_frame_arch (frame);
11124 stack_frame_id = get_stack_frame_id (frame);
11125 caller_frame_id = frame_unwind_caller_id (frame);
11127 /* Keep within the current frame, or in frames called by the current
11130 breakpoint_up caller_breakpoint;
11131 if (frame_id_p (caller_frame_id))
11133 struct symtab_and_line sal2;
11134 struct gdbarch *caller_gdbarch;
11136 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11137 sal2.pc = frame_unwind_caller_pc (frame);
11138 caller_gdbarch = frame_unwind_caller_arch (frame);
11139 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11144 set_longjmp_breakpoint (tp, caller_frame_id);
11145 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
11148 /* set_momentary_breakpoint could invalidate FRAME. */
11151 breakpoint_up location_breakpoint;
11153 /* If the user told us to continue until a specified location,
11154 we don't specify a frame at which we need to stop. */
11155 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11156 null_frame_id, bp_until);
11158 /* Otherwise, specify the selected frame, because we want to stop
11159 only at the very same frame. */
11160 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11161 stack_frame_id, bp_until);
11163 sm = new_until_break_fsm (command_interp (), tp->global_num,
11164 std::move (location_breakpoint),
11165 std::move (caller_breakpoint));
11166 tp->thread_fsm = &sm->thread_fsm;
11168 discard_cleanups (old_chain);
11170 proceed (-1, GDB_SIGNAL_DEFAULT);
11173 /* This function attempts to parse an optional "if <cond>" clause
11174 from the arg string. If one is not found, it returns NULL.
11176 Else, it returns a pointer to the condition string. (It does not
11177 attempt to evaluate the string against a particular block.) And,
11178 it updates arg to point to the first character following the parsed
11179 if clause in the arg string. */
11182 ep_parse_optional_if_clause (const char **arg)
11184 const char *cond_string;
11186 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
11189 /* Skip the "if" keyword. */
11192 /* Skip any extra leading whitespace, and record the start of the
11193 condition string. */
11194 *arg = skip_spaces (*arg);
11195 cond_string = *arg;
11197 /* Assume that the condition occupies the remainder of the arg
11199 (*arg) += strlen (cond_string);
11201 return cond_string;
11204 /* Commands to deal with catching events, such as signals, exceptions,
11205 process start/exit, etc. */
11209 catch_fork_temporary, catch_vfork_temporary,
11210 catch_fork_permanent, catch_vfork_permanent
11215 catch_fork_command_1 (const char *arg, int from_tty,
11216 struct cmd_list_element *command)
11218 struct gdbarch *gdbarch = get_current_arch ();
11219 const char *cond_string = NULL;
11220 catch_fork_kind fork_kind;
11223 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11224 tempflag = (fork_kind == catch_fork_temporary
11225 || fork_kind == catch_vfork_temporary);
11229 arg = skip_spaces (arg);
11231 /* The allowed syntax is:
11233 catch [v]fork if <cond>
11235 First, check if there's an if clause. */
11236 cond_string = ep_parse_optional_if_clause (&arg);
11238 if ((*arg != '\0') && !isspace (*arg))
11239 error (_("Junk at end of arguments."));
11241 /* If this target supports it, create a fork or vfork catchpoint
11242 and enable reporting of such events. */
11245 case catch_fork_temporary:
11246 case catch_fork_permanent:
11247 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11248 &catch_fork_breakpoint_ops);
11250 case catch_vfork_temporary:
11251 case catch_vfork_permanent:
11252 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11253 &catch_vfork_breakpoint_ops);
11256 error (_("unsupported or unknown fork kind; cannot catch it"));
11262 catch_exec_command_1 (const char *arg, int from_tty,
11263 struct cmd_list_element *command)
11265 struct gdbarch *gdbarch = get_current_arch ();
11267 const char *cond_string = NULL;
11269 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11273 arg = skip_spaces (arg);
11275 /* The allowed syntax is:
11277 catch exec if <cond>
11279 First, check if there's an if clause. */
11280 cond_string = ep_parse_optional_if_clause (&arg);
11282 if ((*arg != '\0') && !isspace (*arg))
11283 error (_("Junk at end of arguments."));
11285 std::unique_ptr<exec_catchpoint> c (new exec_catchpoint ());
11286 init_catchpoint (c.get (), gdbarch, tempflag, cond_string,
11287 &catch_exec_breakpoint_ops);
11288 c->exec_pathname = NULL;
11290 install_breakpoint (0, std::move (c), 1);
11294 init_ada_exception_breakpoint (struct breakpoint *b,
11295 struct gdbarch *gdbarch,
11296 struct symtab_and_line sal,
11297 const char *addr_string,
11298 const struct breakpoint_ops *ops,
11305 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11307 loc_gdbarch = gdbarch;
11309 describe_other_breakpoints (loc_gdbarch,
11310 sal.pspace, sal.pc, sal.section, -1);
11311 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11312 version for exception catchpoints, because two catchpoints
11313 used for different exception names will use the same address.
11314 In this case, a "breakpoint ... also set at..." warning is
11315 unproductive. Besides, the warning phrasing is also a bit
11316 inappropriate, we should use the word catchpoint, and tell
11317 the user what type of catchpoint it is. The above is good
11318 enough for now, though. */
11321 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
11323 b->enable_state = enabled ? bp_enabled : bp_disabled;
11324 b->disposition = tempflag ? disp_del : disp_donttouch;
11325 b->location = string_to_event_location (&addr_string,
11326 language_def (language_ada));
11327 b->language = language_ada;
11331 catch_command (const char *arg, int from_tty)
11333 error (_("Catch requires an event name."));
11338 tcatch_command (const char *arg, int from_tty)
11340 error (_("Catch requires an event name."));
11343 /* Compare two breakpoints and return a strcmp-like result. */
11346 compare_breakpoints (const breakpoint *a, const breakpoint *b)
11348 uintptr_t ua = (uintptr_t) a;
11349 uintptr_t ub = (uintptr_t) b;
11351 if (a->number < b->number)
11353 else if (a->number > b->number)
11356 /* Now sort by address, in case we see, e..g, two breakpoints with
11360 return ua > ub ? 1 : 0;
11363 /* Delete breakpoints by address or line. */
11366 clear_command (const char *arg, int from_tty)
11368 struct breakpoint *b;
11371 std::vector<symtab_and_line> decoded_sals;
11372 symtab_and_line last_sal;
11373 gdb::array_view<symtab_and_line> sals;
11377 = decode_line_with_current_source (arg,
11378 (DECODE_LINE_FUNFIRSTLINE
11379 | DECODE_LINE_LIST_MODE));
11381 sals = decoded_sals;
11385 /* Set sal's line, symtab, pc, and pspace to the values
11386 corresponding to the last call to print_frame_info. If the
11387 codepoint is not valid, this will set all the fields to 0. */
11388 last_sal = get_last_displayed_sal ();
11389 if (last_sal.symtab == 0)
11390 error (_("No source file specified."));
11396 /* We don't call resolve_sal_pc here. That's not as bad as it
11397 seems, because all existing breakpoints typically have both
11398 file/line and pc set. So, if clear is given file/line, we can
11399 match this to existing breakpoint without obtaining pc at all.
11401 We only support clearing given the address explicitly
11402 present in breakpoint table. Say, we've set breakpoint
11403 at file:line. There were several PC values for that file:line,
11404 due to optimization, all in one block.
11406 We've picked one PC value. If "clear" is issued with another
11407 PC corresponding to the same file:line, the breakpoint won't
11408 be cleared. We probably can still clear the breakpoint, but
11409 since the other PC value is never presented to user, user
11410 can only find it by guessing, and it does not seem important
11411 to support that. */
11413 /* For each line spec given, delete bps which correspond to it. Do
11414 it in two passes, solely to preserve the current behavior that
11415 from_tty is forced true if we delete more than one
11418 std::vector<struct breakpoint *> found;
11419 for (const auto &sal : sals)
11421 const char *sal_fullname;
11423 /* If exact pc given, clear bpts at that pc.
11424 If line given (pc == 0), clear all bpts on specified line.
11425 If defaulting, clear all bpts on default line
11428 defaulting sal.pc != 0 tests to do
11433 1 0 <can't happen> */
11435 sal_fullname = (sal.symtab == NULL
11436 ? NULL : symtab_to_fullname (sal.symtab));
11438 /* Find all matching breakpoints and add them to 'found'. */
11439 ALL_BREAKPOINTS (b)
11442 /* Are we going to delete b? */
11443 if (b->type != bp_none && !is_watchpoint (b))
11445 struct bp_location *loc = b->loc;
11446 for (; loc; loc = loc->next)
11448 /* If the user specified file:line, don't allow a PC
11449 match. This matches historical gdb behavior. */
11450 int pc_match = (!sal.explicit_line
11452 && (loc->pspace == sal.pspace)
11453 && (loc->address == sal.pc)
11454 && (!section_is_overlay (loc->section)
11455 || loc->section == sal.section));
11456 int line_match = 0;
11458 if ((default_match || sal.explicit_line)
11459 && loc->symtab != NULL
11460 && sal_fullname != NULL
11461 && sal.pspace == loc->pspace
11462 && loc->line_number == sal.line
11463 && filename_cmp (symtab_to_fullname (loc->symtab),
11464 sal_fullname) == 0)
11467 if (pc_match || line_match)
11476 found.push_back (b);
11480 /* Now go thru the 'found' chain and delete them. */
11481 if (found.empty ())
11484 error (_("No breakpoint at %s."), arg);
11486 error (_("No breakpoint at this line."));
11489 /* Remove duplicates from the vec. */
11490 std::sort (found.begin (), found.end (),
11491 [] (const breakpoint *a, const breakpoint *b)
11493 return compare_breakpoints (a, b) < 0;
11495 found.erase (std::unique (found.begin (), found.end (),
11496 [] (const breakpoint *a, const breakpoint *b)
11498 return compare_breakpoints (a, b) == 0;
11502 if (found.size () > 1)
11503 from_tty = 1; /* Always report if deleted more than one. */
11506 if (found.size () == 1)
11507 printf_unfiltered (_("Deleted breakpoint "));
11509 printf_unfiltered (_("Deleted breakpoints "));
11512 for (breakpoint *iter : found)
11515 printf_unfiltered ("%d ", iter->number);
11516 delete_breakpoint (iter);
11519 putchar_unfiltered ('\n');
11522 /* Delete breakpoint in BS if they are `delete' breakpoints and
11523 all breakpoints that are marked for deletion, whether hit or not.
11524 This is called after any breakpoint is hit, or after errors. */
11527 breakpoint_auto_delete (bpstat bs)
11529 struct breakpoint *b, *b_tmp;
11531 for (; bs; bs = bs->next)
11532 if (bs->breakpoint_at
11533 && bs->breakpoint_at->disposition == disp_del
11535 delete_breakpoint (bs->breakpoint_at);
11537 ALL_BREAKPOINTS_SAFE (b, b_tmp)
11539 if (b->disposition == disp_del_at_next_stop)
11540 delete_breakpoint (b);
11544 /* A comparison function for bp_location AP and BP being interfaced to
11545 qsort. Sort elements primarily by their ADDRESS (no matter what
11546 does breakpoint_address_is_meaningful say for its OWNER),
11547 secondarily by ordering first permanent elements and
11548 terciarily just ensuring the array is sorted stable way despite
11549 qsort being an unstable algorithm. */
11552 bp_locations_compare (const void *ap, const void *bp)
11554 const struct bp_location *a = *(const struct bp_location **) ap;
11555 const struct bp_location *b = *(const struct bp_location **) bp;
11557 if (a->address != b->address)
11558 return (a->address > b->address) - (a->address < b->address);
11560 /* Sort locations at the same address by their pspace number, keeping
11561 locations of the same inferior (in a multi-inferior environment)
11564 if (a->pspace->num != b->pspace->num)
11565 return ((a->pspace->num > b->pspace->num)
11566 - (a->pspace->num < b->pspace->num));
11568 /* Sort permanent breakpoints first. */
11569 if (a->permanent != b->permanent)
11570 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
11572 /* Make the internal GDB representation stable across GDB runs
11573 where A and B memory inside GDB can differ. Breakpoint locations of
11574 the same type at the same address can be sorted in arbitrary order. */
11576 if (a->owner->number != b->owner->number)
11577 return ((a->owner->number > b->owner->number)
11578 - (a->owner->number < b->owner->number));
11580 return (a > b) - (a < b);
11583 /* Set bp_locations_placed_address_before_address_max and
11584 bp_locations_shadow_len_after_address_max according to the current
11585 content of the bp_locations array. */
11588 bp_locations_target_extensions_update (void)
11590 struct bp_location *bl, **blp_tmp;
11592 bp_locations_placed_address_before_address_max = 0;
11593 bp_locations_shadow_len_after_address_max = 0;
11595 ALL_BP_LOCATIONS (bl, blp_tmp)
11597 CORE_ADDR start, end, addr;
11599 if (!bp_location_has_shadow (bl))
11602 start = bl->target_info.placed_address;
11603 end = start + bl->target_info.shadow_len;
11605 gdb_assert (bl->address >= start);
11606 addr = bl->address - start;
11607 if (addr > bp_locations_placed_address_before_address_max)
11608 bp_locations_placed_address_before_address_max = addr;
11610 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
11612 gdb_assert (bl->address < end);
11613 addr = end - bl->address;
11614 if (addr > bp_locations_shadow_len_after_address_max)
11615 bp_locations_shadow_len_after_address_max = addr;
11619 /* Download tracepoint locations if they haven't been. */
11622 download_tracepoint_locations (void)
11624 struct breakpoint *b;
11625 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
11627 scoped_restore_current_pspace_and_thread restore_pspace_thread;
11629 ALL_TRACEPOINTS (b)
11631 struct bp_location *bl;
11632 struct tracepoint *t;
11633 int bp_location_downloaded = 0;
11635 if ((b->type == bp_fast_tracepoint
11636 ? !may_insert_fast_tracepoints
11637 : !may_insert_tracepoints))
11640 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
11642 if (target_can_download_tracepoint ())
11643 can_download_tracepoint = TRIBOOL_TRUE;
11645 can_download_tracepoint = TRIBOOL_FALSE;
11648 if (can_download_tracepoint == TRIBOOL_FALSE)
11651 for (bl = b->loc; bl; bl = bl->next)
11653 /* In tracepoint, locations are _never_ duplicated, so
11654 should_be_inserted is equivalent to
11655 unduplicated_should_be_inserted. */
11656 if (!should_be_inserted (bl) || bl->inserted)
11659 switch_to_program_space_and_thread (bl->pspace);
11661 target_download_tracepoint (bl);
11664 bp_location_downloaded = 1;
11666 t = (struct tracepoint *) b;
11667 t->number_on_target = b->number;
11668 if (bp_location_downloaded)
11669 gdb::observers::breakpoint_modified.notify (b);
11673 /* Swap the insertion/duplication state between two locations. */
11676 swap_insertion (struct bp_location *left, struct bp_location *right)
11678 const int left_inserted = left->inserted;
11679 const int left_duplicate = left->duplicate;
11680 const int left_needs_update = left->needs_update;
11681 const struct bp_target_info left_target_info = left->target_info;
11683 /* Locations of tracepoints can never be duplicated. */
11684 if (is_tracepoint (left->owner))
11685 gdb_assert (!left->duplicate);
11686 if (is_tracepoint (right->owner))
11687 gdb_assert (!right->duplicate);
11689 left->inserted = right->inserted;
11690 left->duplicate = right->duplicate;
11691 left->needs_update = right->needs_update;
11692 left->target_info = right->target_info;
11693 right->inserted = left_inserted;
11694 right->duplicate = left_duplicate;
11695 right->needs_update = left_needs_update;
11696 right->target_info = left_target_info;
11699 /* Force the re-insertion of the locations at ADDRESS. This is called
11700 once a new/deleted/modified duplicate location is found and we are evaluating
11701 conditions on the target's side. Such conditions need to be updated on
11705 force_breakpoint_reinsertion (struct bp_location *bl)
11707 struct bp_location **locp = NULL, **loc2p;
11708 struct bp_location *loc;
11709 CORE_ADDR address = 0;
11712 address = bl->address;
11713 pspace_num = bl->pspace->num;
11715 /* This is only meaningful if the target is
11716 evaluating conditions and if the user has
11717 opted for condition evaluation on the target's
11719 if (gdb_evaluates_breakpoint_condition_p ()
11720 || !target_supports_evaluation_of_breakpoint_conditions ())
11723 /* Flag all breakpoint locations with this address and
11724 the same program space as the location
11725 as "its condition has changed". We need to
11726 update the conditions on the target's side. */
11727 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
11731 if (!is_breakpoint (loc->owner)
11732 || pspace_num != loc->pspace->num)
11735 /* Flag the location appropriately. We use a different state to
11736 let everyone know that we already updated the set of locations
11737 with addr bl->address and program space bl->pspace. This is so
11738 we don't have to keep calling these functions just to mark locations
11739 that have already been marked. */
11740 loc->condition_changed = condition_updated;
11742 /* Free the agent expression bytecode as well. We will compute
11744 loc->cond_bytecode.reset ();
11747 /* Called whether new breakpoints are created, or existing breakpoints
11748 deleted, to update the global location list and recompute which
11749 locations are duplicate of which.
11751 The INSERT_MODE flag determines whether locations may not, may, or
11752 shall be inserted now. See 'enum ugll_insert_mode' for more
11756 update_global_location_list (enum ugll_insert_mode insert_mode)
11758 struct breakpoint *b;
11759 struct bp_location **locp, *loc;
11760 /* Last breakpoint location address that was marked for update. */
11761 CORE_ADDR last_addr = 0;
11762 /* Last breakpoint location program space that was marked for update. */
11763 int last_pspace_num = -1;
11765 /* Used in the duplicates detection below. When iterating over all
11766 bp_locations, points to the first bp_location of a given address.
11767 Breakpoints and watchpoints of different types are never
11768 duplicates of each other. Keep one pointer for each type of
11769 breakpoint/watchpoint, so we only need to loop over all locations
11771 struct bp_location *bp_loc_first; /* breakpoint */
11772 struct bp_location *wp_loc_first; /* hardware watchpoint */
11773 struct bp_location *awp_loc_first; /* access watchpoint */
11774 struct bp_location *rwp_loc_first; /* read watchpoint */
11776 /* Saved former bp_locations array which we compare against the newly
11777 built bp_locations from the current state of ALL_BREAKPOINTS. */
11778 struct bp_location **old_locp;
11779 unsigned old_locations_count;
11780 gdb::unique_xmalloc_ptr<struct bp_location *> old_locations (bp_locations);
11782 old_locations_count = bp_locations_count;
11783 bp_locations = NULL;
11784 bp_locations_count = 0;
11786 ALL_BREAKPOINTS (b)
11787 for (loc = b->loc; loc; loc = loc->next)
11788 bp_locations_count++;
11790 bp_locations = XNEWVEC (struct bp_location *, bp_locations_count);
11791 locp = bp_locations;
11792 ALL_BREAKPOINTS (b)
11793 for (loc = b->loc; loc; loc = loc->next)
11795 qsort (bp_locations, bp_locations_count, sizeof (*bp_locations),
11796 bp_locations_compare);
11798 bp_locations_target_extensions_update ();
11800 /* Identify bp_location instances that are no longer present in the
11801 new list, and therefore should be freed. Note that it's not
11802 necessary that those locations should be removed from inferior --
11803 if there's another location at the same address (previously
11804 marked as duplicate), we don't need to remove/insert the
11807 LOCP is kept in sync with OLD_LOCP, each pointing to the current
11808 and former bp_location array state respectively. */
11810 locp = bp_locations;
11811 for (old_locp = old_locations.get ();
11812 old_locp < old_locations.get () + old_locations_count;
11815 struct bp_location *old_loc = *old_locp;
11816 struct bp_location **loc2p;
11818 /* Tells if 'old_loc' is found among the new locations. If
11819 not, we have to free it. */
11820 int found_object = 0;
11821 /* Tells if the location should remain inserted in the target. */
11822 int keep_in_target = 0;
11825 /* Skip LOCP entries which will definitely never be needed.
11826 Stop either at or being the one matching OLD_LOC. */
11827 while (locp < bp_locations + bp_locations_count
11828 && (*locp)->address < old_loc->address)
11832 (loc2p < bp_locations + bp_locations_count
11833 && (*loc2p)->address == old_loc->address);
11836 /* Check if this is a new/duplicated location or a duplicated
11837 location that had its condition modified. If so, we want to send
11838 its condition to the target if evaluation of conditions is taking
11840 if ((*loc2p)->condition_changed == condition_modified
11841 && (last_addr != old_loc->address
11842 || last_pspace_num != old_loc->pspace->num))
11844 force_breakpoint_reinsertion (*loc2p);
11845 last_pspace_num = old_loc->pspace->num;
11848 if (*loc2p == old_loc)
11852 /* We have already handled this address, update it so that we don't
11853 have to go through updates again. */
11854 last_addr = old_loc->address;
11856 /* Target-side condition evaluation: Handle deleted locations. */
11858 force_breakpoint_reinsertion (old_loc);
11860 /* If this location is no longer present, and inserted, look if
11861 there's maybe a new location at the same address. If so,
11862 mark that one inserted, and don't remove this one. This is
11863 needed so that we don't have a time window where a breakpoint
11864 at certain location is not inserted. */
11866 if (old_loc->inserted)
11868 /* If the location is inserted now, we might have to remove
11871 if (found_object && should_be_inserted (old_loc))
11873 /* The location is still present in the location list,
11874 and still should be inserted. Don't do anything. */
11875 keep_in_target = 1;
11879 /* This location still exists, but it won't be kept in the
11880 target since it may have been disabled. We proceed to
11881 remove its target-side condition. */
11883 /* The location is either no longer present, or got
11884 disabled. See if there's another location at the
11885 same address, in which case we don't need to remove
11886 this one from the target. */
11888 /* OLD_LOC comes from existing struct breakpoint. */
11889 if (breakpoint_address_is_meaningful (old_loc->owner))
11892 (loc2p < bp_locations + bp_locations_count
11893 && (*loc2p)->address == old_loc->address);
11896 struct bp_location *loc2 = *loc2p;
11898 if (breakpoint_locations_match (loc2, old_loc))
11900 /* Read watchpoint locations are switched to
11901 access watchpoints, if the former are not
11902 supported, but the latter are. */
11903 if (is_hardware_watchpoint (old_loc->owner))
11905 gdb_assert (is_hardware_watchpoint (loc2->owner));
11906 loc2->watchpoint_type = old_loc->watchpoint_type;
11909 /* loc2 is a duplicated location. We need to check
11910 if it should be inserted in case it will be
11912 if (loc2 != old_loc
11913 && unduplicated_should_be_inserted (loc2))
11915 swap_insertion (old_loc, loc2);
11916 keep_in_target = 1;
11924 if (!keep_in_target)
11926 if (remove_breakpoint (old_loc))
11928 /* This is just about all we can do. We could keep
11929 this location on the global list, and try to
11930 remove it next time, but there's no particular
11931 reason why we will succeed next time.
11933 Note that at this point, old_loc->owner is still
11934 valid, as delete_breakpoint frees the breakpoint
11935 only after calling us. */
11936 printf_filtered (_("warning: Error removing "
11937 "breakpoint %d\n"),
11938 old_loc->owner->number);
11946 if (removed && target_is_non_stop_p ()
11947 && need_moribund_for_location_type (old_loc))
11949 /* This location was removed from the target. In
11950 non-stop mode, a race condition is possible where
11951 we've removed a breakpoint, but stop events for that
11952 breakpoint are already queued and will arrive later.
11953 We apply an heuristic to be able to distinguish such
11954 SIGTRAPs from other random SIGTRAPs: we keep this
11955 breakpoint location for a bit, and will retire it
11956 after we see some number of events. The theory here
11957 is that reporting of events should, "on the average",
11958 be fair, so after a while we'll see events from all
11959 threads that have anything of interest, and no longer
11960 need to keep this breakpoint location around. We
11961 don't hold locations forever so to reduce chances of
11962 mistaking a non-breakpoint SIGTRAP for a breakpoint
11965 The heuristic failing can be disastrous on
11966 decr_pc_after_break targets.
11968 On decr_pc_after_break targets, like e.g., x86-linux,
11969 if we fail to recognize a late breakpoint SIGTRAP,
11970 because events_till_retirement has reached 0 too
11971 soon, we'll fail to do the PC adjustment, and report
11972 a random SIGTRAP to the user. When the user resumes
11973 the inferior, it will most likely immediately crash
11974 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
11975 corrupted, because of being resumed e.g., in the
11976 middle of a multi-byte instruction, or skipped a
11977 one-byte instruction. This was actually seen happen
11978 on native x86-linux, and should be less rare on
11979 targets that do not support new thread events, like
11980 remote, due to the heuristic depending on
11983 Mistaking a random SIGTRAP for a breakpoint trap
11984 causes similar symptoms (PC adjustment applied when
11985 it shouldn't), but then again, playing with SIGTRAPs
11986 behind the debugger's back is asking for trouble.
11988 Since hardware watchpoint traps are always
11989 distinguishable from other traps, so we don't need to
11990 apply keep hardware watchpoint moribund locations
11991 around. We simply always ignore hardware watchpoint
11992 traps we can no longer explain. */
11994 old_loc->events_till_retirement = 3 * (thread_count () + 1);
11995 old_loc->owner = NULL;
11997 moribund_locations.push_back (old_loc);
12001 old_loc->owner = NULL;
12002 decref_bp_location (&old_loc);
12007 /* Rescan breakpoints at the same address and section, marking the
12008 first one as "first" and any others as "duplicates". This is so
12009 that the bpt instruction is only inserted once. If we have a
12010 permanent breakpoint at the same place as BPT, make that one the
12011 official one, and the rest as duplicates. Permanent breakpoints
12012 are sorted first for the same address.
12014 Do the same for hardware watchpoints, but also considering the
12015 watchpoint's type (regular/access/read) and length. */
12017 bp_loc_first = NULL;
12018 wp_loc_first = NULL;
12019 awp_loc_first = NULL;
12020 rwp_loc_first = NULL;
12021 ALL_BP_LOCATIONS (loc, locp)
12023 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12025 struct bp_location **loc_first_p;
12028 if (!unduplicated_should_be_inserted (loc)
12029 || !breakpoint_address_is_meaningful (b)
12030 /* Don't detect duplicate for tracepoint locations because they are
12031 never duplicated. See the comments in field `duplicate' of
12032 `struct bp_location'. */
12033 || is_tracepoint (b))
12035 /* Clear the condition modification flag. */
12036 loc->condition_changed = condition_unchanged;
12040 if (b->type == bp_hardware_watchpoint)
12041 loc_first_p = &wp_loc_first;
12042 else if (b->type == bp_read_watchpoint)
12043 loc_first_p = &rwp_loc_first;
12044 else if (b->type == bp_access_watchpoint)
12045 loc_first_p = &awp_loc_first;
12047 loc_first_p = &bp_loc_first;
12049 if (*loc_first_p == NULL
12050 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12051 || !breakpoint_locations_match (loc, *loc_first_p))
12053 *loc_first_p = loc;
12054 loc->duplicate = 0;
12056 if (is_breakpoint (loc->owner) && loc->condition_changed)
12058 loc->needs_update = 1;
12059 /* Clear the condition modification flag. */
12060 loc->condition_changed = condition_unchanged;
12066 /* This and the above ensure the invariant that the first location
12067 is not duplicated, and is the inserted one.
12068 All following are marked as duplicated, and are not inserted. */
12070 swap_insertion (loc, *loc_first_p);
12071 loc->duplicate = 1;
12073 /* Clear the condition modification flag. */
12074 loc->condition_changed = condition_unchanged;
12077 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
12079 if (insert_mode != UGLL_DONT_INSERT)
12080 insert_breakpoint_locations ();
12083 /* Even though the caller told us to not insert new
12084 locations, we may still need to update conditions on the
12085 target's side of breakpoints that were already inserted
12086 if the target is evaluating breakpoint conditions. We
12087 only update conditions for locations that are marked
12089 update_inserted_breakpoint_locations ();
12093 if (insert_mode != UGLL_DONT_INSERT)
12094 download_tracepoint_locations ();
12098 breakpoint_retire_moribund (void)
12100 for (int ix = 0; ix < moribund_locations.size (); ++ix)
12102 struct bp_location *loc = moribund_locations[ix];
12103 if (--(loc->events_till_retirement) == 0)
12105 decref_bp_location (&loc);
12106 unordered_remove (moribund_locations, ix);
12113 update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
12118 update_global_location_list (insert_mode);
12120 CATCH (e, RETURN_MASK_ERROR)
12126 /* Clear BKP from a BPS. */
12129 bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12133 for (bs = bps; bs; bs = bs->next)
12134 if (bs->breakpoint_at == bpt)
12136 bs->breakpoint_at = NULL;
12137 bs->old_val = NULL;
12138 /* bs->commands will be freed later. */
12142 /* Callback for iterate_over_threads. */
12144 bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12146 struct breakpoint *bpt = (struct breakpoint *) data;
12148 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12152 /* Helper for breakpoint and tracepoint breakpoint_ops->mention
12156 say_where (struct breakpoint *b)
12158 struct value_print_options opts;
12160 get_user_print_options (&opts);
12162 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12164 if (b->loc == NULL)
12166 /* For pending locations, the output differs slightly based
12167 on b->extra_string. If this is non-NULL, it contains either
12168 a condition or dprintf arguments. */
12169 if (b->extra_string == NULL)
12171 printf_filtered (_(" (%s) pending."),
12172 event_location_to_string (b->location.get ()));
12174 else if (b->type == bp_dprintf)
12176 printf_filtered (_(" (%s,%s) pending."),
12177 event_location_to_string (b->location.get ()),
12182 printf_filtered (_(" (%s %s) pending."),
12183 event_location_to_string (b->location.get ()),
12189 if (opts.addressprint || b->loc->symtab == NULL)
12191 printf_filtered (" at ");
12192 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12195 if (b->loc->symtab != NULL)
12197 /* If there is a single location, we can print the location
12199 if (b->loc->next == NULL)
12200 printf_filtered (": file %s, line %d.",
12201 symtab_to_filename_for_display (b->loc->symtab),
12202 b->loc->line_number);
12204 /* This is not ideal, but each location may have a
12205 different file name, and this at least reflects the
12206 real situation somewhat. */
12207 printf_filtered (": %s.",
12208 event_location_to_string (b->location.get ()));
12213 struct bp_location *loc = b->loc;
12215 for (; loc; loc = loc->next)
12217 printf_filtered (" (%d locations)", n);
12222 /* Default bp_location_ops methods. */
12225 bp_location_dtor (struct bp_location *self)
12227 xfree (self->function_name);
12230 static const struct bp_location_ops bp_location_ops =
12235 /* Destructor for the breakpoint base class. */
12237 breakpoint::~breakpoint ()
12239 xfree (this->cond_string);
12240 xfree (this->extra_string);
12241 xfree (this->filter);
12244 static struct bp_location *
12245 base_breakpoint_allocate_location (struct breakpoint *self)
12247 return new bp_location (&bp_location_ops, self);
12251 base_breakpoint_re_set (struct breakpoint *b)
12253 /* Nothing to re-set. */
12256 #define internal_error_pure_virtual_called() \
12257 gdb_assert_not_reached ("pure virtual function called")
12260 base_breakpoint_insert_location (struct bp_location *bl)
12262 internal_error_pure_virtual_called ();
12266 base_breakpoint_remove_location (struct bp_location *bl,
12267 enum remove_bp_reason reason)
12269 internal_error_pure_virtual_called ();
12273 base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12274 const address_space *aspace,
12276 const struct target_waitstatus *ws)
12278 internal_error_pure_virtual_called ();
12282 base_breakpoint_check_status (bpstat bs)
12287 /* A "works_in_software_mode" breakpoint_ops method that just internal
12291 base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12293 internal_error_pure_virtual_called ();
12296 /* A "resources_needed" breakpoint_ops method that just internal
12300 base_breakpoint_resources_needed (const struct bp_location *bl)
12302 internal_error_pure_virtual_called ();
12305 static enum print_stop_action
12306 base_breakpoint_print_it (bpstat bs)
12308 internal_error_pure_virtual_called ();
12312 base_breakpoint_print_one_detail (const struct breakpoint *self,
12313 struct ui_out *uiout)
12319 base_breakpoint_print_mention (struct breakpoint *b)
12321 internal_error_pure_virtual_called ();
12325 base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
12327 internal_error_pure_virtual_called ();
12331 base_breakpoint_create_sals_from_location
12332 (const struct event_location *location,
12333 struct linespec_result *canonical,
12334 enum bptype type_wanted)
12336 internal_error_pure_virtual_called ();
12340 base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12341 struct linespec_result *c,
12342 gdb::unique_xmalloc_ptr<char> cond_string,
12343 gdb::unique_xmalloc_ptr<char> extra_string,
12344 enum bptype type_wanted,
12345 enum bpdisp disposition,
12347 int task, int ignore_count,
12348 const struct breakpoint_ops *o,
12349 int from_tty, int enabled,
12350 int internal, unsigned flags)
12352 internal_error_pure_virtual_called ();
12355 static std::vector<symtab_and_line>
12356 base_breakpoint_decode_location (struct breakpoint *b,
12357 const struct event_location *location,
12358 struct program_space *search_pspace)
12360 internal_error_pure_virtual_called ();
12363 /* The default 'explains_signal' method. */
12366 base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
12371 /* The default "after_condition_true" method. */
12374 base_breakpoint_after_condition_true (struct bpstats *bs)
12376 /* Nothing to do. */
12379 struct breakpoint_ops base_breakpoint_ops =
12381 base_breakpoint_allocate_location,
12382 base_breakpoint_re_set,
12383 base_breakpoint_insert_location,
12384 base_breakpoint_remove_location,
12385 base_breakpoint_breakpoint_hit,
12386 base_breakpoint_check_status,
12387 base_breakpoint_resources_needed,
12388 base_breakpoint_works_in_software_mode,
12389 base_breakpoint_print_it,
12391 base_breakpoint_print_one_detail,
12392 base_breakpoint_print_mention,
12393 base_breakpoint_print_recreate,
12394 base_breakpoint_create_sals_from_location,
12395 base_breakpoint_create_breakpoints_sal,
12396 base_breakpoint_decode_location,
12397 base_breakpoint_explains_signal,
12398 base_breakpoint_after_condition_true,
12401 /* Default breakpoint_ops methods. */
12404 bkpt_re_set (struct breakpoint *b)
12406 /* FIXME: is this still reachable? */
12407 if (breakpoint_event_location_empty_p (b))
12409 /* Anything without a location can't be re-set. */
12410 delete_breakpoint (b);
12414 breakpoint_re_set_default (b);
12418 bkpt_insert_location (struct bp_location *bl)
12420 CORE_ADDR addr = bl->target_info.reqstd_address;
12422 bl->target_info.kind = breakpoint_kind (bl, &addr);
12423 bl->target_info.placed_address = addr;
12425 if (bl->loc_type == bp_loc_hardware_breakpoint)
12426 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
12428 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
12432 bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason)
12434 if (bl->loc_type == bp_loc_hardware_breakpoint)
12435 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
12437 return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason);
12441 bkpt_breakpoint_hit (const struct bp_location *bl,
12442 const address_space *aspace, CORE_ADDR bp_addr,
12443 const struct target_waitstatus *ws)
12445 if (ws->kind != TARGET_WAITKIND_STOPPED
12446 || ws->value.sig != GDB_SIGNAL_TRAP)
12449 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
12453 if (overlay_debugging /* unmapped overlay section */
12454 && section_is_overlay (bl->section)
12455 && !section_is_mapped (bl->section))
12462 dprintf_breakpoint_hit (const struct bp_location *bl,
12463 const address_space *aspace, CORE_ADDR bp_addr,
12464 const struct target_waitstatus *ws)
12466 if (dprintf_style == dprintf_style_agent
12467 && target_can_run_breakpoint_commands ())
12469 /* An agent-style dprintf never causes a stop. If we see a trap
12470 for this address it must be for a breakpoint that happens to
12471 be set at the same address. */
12475 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
12479 bkpt_resources_needed (const struct bp_location *bl)
12481 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
12486 static enum print_stop_action
12487 bkpt_print_it (bpstat bs)
12489 struct breakpoint *b;
12490 const struct bp_location *bl;
12492 struct ui_out *uiout = current_uiout;
12494 gdb_assert (bs->bp_location_at != NULL);
12496 bl = bs->bp_location_at;
12497 b = bs->breakpoint_at;
12499 bp_temp = b->disposition == disp_del;
12500 if (bl->address != bl->requested_address)
12501 breakpoint_adjustment_warning (bl->requested_address,
12504 annotate_breakpoint (b->number);
12505 maybe_print_thread_hit_breakpoint (uiout);
12508 uiout->text ("Temporary breakpoint ");
12510 uiout->text ("Breakpoint ");
12511 if (uiout->is_mi_like_p ())
12513 uiout->field_string ("reason",
12514 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12515 uiout->field_string ("disp", bpdisp_text (b->disposition));
12517 uiout->field_int ("bkptno", b->number);
12518 uiout->text (", ");
12520 return PRINT_SRC_AND_LOC;
12524 bkpt_print_mention (struct breakpoint *b)
12526 if (current_uiout->is_mi_like_p ())
12531 case bp_breakpoint:
12532 case bp_gnu_ifunc_resolver:
12533 if (b->disposition == disp_del)
12534 printf_filtered (_("Temporary breakpoint"));
12536 printf_filtered (_("Breakpoint"));
12537 printf_filtered (_(" %d"), b->number);
12538 if (b->type == bp_gnu_ifunc_resolver)
12539 printf_filtered (_(" at gnu-indirect-function resolver"));
12541 case bp_hardware_breakpoint:
12542 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
12545 printf_filtered (_("Dprintf %d"), b->number);
12553 bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12555 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
12556 fprintf_unfiltered (fp, "tbreak");
12557 else if (tp->type == bp_breakpoint)
12558 fprintf_unfiltered (fp, "break");
12559 else if (tp->type == bp_hardware_breakpoint
12560 && tp->disposition == disp_del)
12561 fprintf_unfiltered (fp, "thbreak");
12562 else if (tp->type == bp_hardware_breakpoint)
12563 fprintf_unfiltered (fp, "hbreak");
12565 internal_error (__FILE__, __LINE__,
12566 _("unhandled breakpoint type %d"), (int) tp->type);
12568 fprintf_unfiltered (fp, " %s",
12569 event_location_to_string (tp->location.get ()));
12571 /* Print out extra_string if this breakpoint is pending. It might
12572 contain, for example, conditions that were set by the user. */
12573 if (tp->loc == NULL && tp->extra_string != NULL)
12574 fprintf_unfiltered (fp, " %s", tp->extra_string);
12576 print_recreate_thread (tp, fp);
12580 bkpt_create_sals_from_location (const struct event_location *location,
12581 struct linespec_result *canonical,
12582 enum bptype type_wanted)
12584 create_sals_from_location_default (location, canonical, type_wanted);
12588 bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
12589 struct linespec_result *canonical,
12590 gdb::unique_xmalloc_ptr<char> cond_string,
12591 gdb::unique_xmalloc_ptr<char> extra_string,
12592 enum bptype type_wanted,
12593 enum bpdisp disposition,
12595 int task, int ignore_count,
12596 const struct breakpoint_ops *ops,
12597 int from_tty, int enabled,
12598 int internal, unsigned flags)
12600 create_breakpoints_sal_default (gdbarch, canonical,
12601 std::move (cond_string),
12602 std::move (extra_string),
12604 disposition, thread, task,
12605 ignore_count, ops, from_tty,
12606 enabled, internal, flags);
12609 static std::vector<symtab_and_line>
12610 bkpt_decode_location (struct breakpoint *b,
12611 const struct event_location *location,
12612 struct program_space *search_pspace)
12614 return decode_location_default (b, location, search_pspace);
12617 /* Virtual table for internal breakpoints. */
12620 internal_bkpt_re_set (struct breakpoint *b)
12624 /* Delete overlay event and longjmp master breakpoints; they
12625 will be reset later by breakpoint_re_set. */
12626 case bp_overlay_event:
12627 case bp_longjmp_master:
12628 case bp_std_terminate_master:
12629 case bp_exception_master:
12630 delete_breakpoint (b);
12633 /* This breakpoint is special, it's set up when the inferior
12634 starts and we really don't want to touch it. */
12635 case bp_shlib_event:
12637 /* Like bp_shlib_event, this breakpoint type is special. Once
12638 it is set up, we do not want to touch it. */
12639 case bp_thread_event:
12645 internal_bkpt_check_status (bpstat bs)
12647 if (bs->breakpoint_at->type == bp_shlib_event)
12649 /* If requested, stop when the dynamic linker notifies GDB of
12650 events. This allows the user to get control and place
12651 breakpoints in initializer routines for dynamically loaded
12652 objects (among other things). */
12653 bs->stop = stop_on_solib_events;
12654 bs->print = stop_on_solib_events;
12660 static enum print_stop_action
12661 internal_bkpt_print_it (bpstat bs)
12663 struct breakpoint *b;
12665 b = bs->breakpoint_at;
12669 case bp_shlib_event:
12670 /* Did we stop because the user set the stop_on_solib_events
12671 variable? (If so, we report this as a generic, "Stopped due
12672 to shlib event" message.) */
12673 print_solib_event (0);
12676 case bp_thread_event:
12677 /* Not sure how we will get here.
12678 GDB should not stop for these breakpoints. */
12679 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
12682 case bp_overlay_event:
12683 /* By analogy with the thread event, GDB should not stop for these. */
12684 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
12687 case bp_longjmp_master:
12688 /* These should never be enabled. */
12689 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
12692 case bp_std_terminate_master:
12693 /* These should never be enabled. */
12694 printf_filtered (_("std::terminate Master Breakpoint: "
12695 "gdb should not stop!\n"));
12698 case bp_exception_master:
12699 /* These should never be enabled. */
12700 printf_filtered (_("Exception Master Breakpoint: "
12701 "gdb should not stop!\n"));
12705 return PRINT_NOTHING;
12709 internal_bkpt_print_mention (struct breakpoint *b)
12711 /* Nothing to mention. These breakpoints are internal. */
12714 /* Virtual table for momentary breakpoints */
12717 momentary_bkpt_re_set (struct breakpoint *b)
12719 /* Keep temporary breakpoints, which can be encountered when we step
12720 over a dlopen call and solib_add is resetting the breakpoints.
12721 Otherwise these should have been blown away via the cleanup chain
12722 or by breakpoint_init_inferior when we rerun the executable. */
12726 momentary_bkpt_check_status (bpstat bs)
12728 /* Nothing. The point of these breakpoints is causing a stop. */
12731 static enum print_stop_action
12732 momentary_bkpt_print_it (bpstat bs)
12734 return PRINT_UNKNOWN;
12738 momentary_bkpt_print_mention (struct breakpoint *b)
12740 /* Nothing to mention. These breakpoints are internal. */
12743 /* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
12745 It gets cleared already on the removal of the first one of such placed
12746 breakpoints. This is OK as they get all removed altogether. */
12748 longjmp_breakpoint::~longjmp_breakpoint ()
12750 thread_info *tp = find_thread_global_id (this->thread);
12753 tp->initiating_frame = null_frame_id;
12756 /* Specific methods for probe breakpoints. */
12759 bkpt_probe_insert_location (struct bp_location *bl)
12761 int v = bkpt_insert_location (bl);
12765 /* The insertion was successful, now let's set the probe's semaphore
12767 bl->probe.prob->set_semaphore (bl->probe.objfile, bl->gdbarch);
12774 bkpt_probe_remove_location (struct bp_location *bl,
12775 enum remove_bp_reason reason)
12777 /* Let's clear the semaphore before removing the location. */
12778 bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch);
12780 return bkpt_remove_location (bl, reason);
12784 bkpt_probe_create_sals_from_location (const struct event_location *location,
12785 struct linespec_result *canonical,
12786 enum bptype type_wanted)
12788 struct linespec_sals lsal;
12790 lsal.sals = parse_probes (location, NULL, canonical);
12792 = xstrdup (event_location_to_string (canonical->location.get ()));
12793 canonical->lsals.push_back (std::move (lsal));
12796 static std::vector<symtab_and_line>
12797 bkpt_probe_decode_location (struct breakpoint *b,
12798 const struct event_location *location,
12799 struct program_space *search_pspace)
12801 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL);
12803 error (_("probe not found"));
12807 /* The breakpoint_ops structure to be used in tracepoints. */
12810 tracepoint_re_set (struct breakpoint *b)
12812 breakpoint_re_set_default (b);
12816 tracepoint_breakpoint_hit (const struct bp_location *bl,
12817 const address_space *aspace, CORE_ADDR bp_addr,
12818 const struct target_waitstatus *ws)
12820 /* By definition, the inferior does not report stops at
12826 tracepoint_print_one_detail (const struct breakpoint *self,
12827 struct ui_out *uiout)
12829 struct tracepoint *tp = (struct tracepoint *) self;
12830 if (!tp->static_trace_marker_id.empty ())
12832 gdb_assert (self->type == bp_static_tracepoint);
12834 uiout->text ("\tmarker id is ");
12835 uiout->field_string ("static-tracepoint-marker-string-id",
12836 tp->static_trace_marker_id);
12837 uiout->text ("\n");
12842 tracepoint_print_mention (struct breakpoint *b)
12844 if (current_uiout->is_mi_like_p ())
12849 case bp_tracepoint:
12850 printf_filtered (_("Tracepoint"));
12851 printf_filtered (_(" %d"), b->number);
12853 case bp_fast_tracepoint:
12854 printf_filtered (_("Fast tracepoint"));
12855 printf_filtered (_(" %d"), b->number);
12857 case bp_static_tracepoint:
12858 printf_filtered (_("Static tracepoint"));
12859 printf_filtered (_(" %d"), b->number);
12862 internal_error (__FILE__, __LINE__,
12863 _("unhandled tracepoint type %d"), (int) b->type);
12870 tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
12872 struct tracepoint *tp = (struct tracepoint *) self;
12874 if (self->type == bp_fast_tracepoint)
12875 fprintf_unfiltered (fp, "ftrace");
12876 else if (self->type == bp_static_tracepoint)
12877 fprintf_unfiltered (fp, "strace");
12878 else if (self->type == bp_tracepoint)
12879 fprintf_unfiltered (fp, "trace");
12881 internal_error (__FILE__, __LINE__,
12882 _("unhandled tracepoint type %d"), (int) self->type);
12884 fprintf_unfiltered (fp, " %s",
12885 event_location_to_string (self->location.get ()));
12886 print_recreate_thread (self, fp);
12888 if (tp->pass_count)
12889 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
12893 tracepoint_create_sals_from_location (const struct event_location *location,
12894 struct linespec_result *canonical,
12895 enum bptype type_wanted)
12897 create_sals_from_location_default (location, canonical, type_wanted);
12901 tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
12902 struct linespec_result *canonical,
12903 gdb::unique_xmalloc_ptr<char> cond_string,
12904 gdb::unique_xmalloc_ptr<char> extra_string,
12905 enum bptype type_wanted,
12906 enum bpdisp disposition,
12908 int task, int ignore_count,
12909 const struct breakpoint_ops *ops,
12910 int from_tty, int enabled,
12911 int internal, unsigned flags)
12913 create_breakpoints_sal_default (gdbarch, canonical,
12914 std::move (cond_string),
12915 std::move (extra_string),
12917 disposition, thread, task,
12918 ignore_count, ops, from_tty,
12919 enabled, internal, flags);
12922 static std::vector<symtab_and_line>
12923 tracepoint_decode_location (struct breakpoint *b,
12924 const struct event_location *location,
12925 struct program_space *search_pspace)
12927 return decode_location_default (b, location, search_pspace);
12930 struct breakpoint_ops tracepoint_breakpoint_ops;
12932 /* The breakpoint_ops structure to be use on tracepoints placed in a
12936 tracepoint_probe_create_sals_from_location
12937 (const struct event_location *location,
12938 struct linespec_result *canonical,
12939 enum bptype type_wanted)
12941 /* We use the same method for breakpoint on probes. */
12942 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
12945 static std::vector<symtab_and_line>
12946 tracepoint_probe_decode_location (struct breakpoint *b,
12947 const struct event_location *location,
12948 struct program_space *search_pspace)
12950 /* We use the same method for breakpoint on probes. */
12951 return bkpt_probe_decode_location (b, location, search_pspace);
12954 static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
12956 /* Dprintf breakpoint_ops methods. */
12959 dprintf_re_set (struct breakpoint *b)
12961 breakpoint_re_set_default (b);
12963 /* extra_string should never be non-NULL for dprintf. */
12964 gdb_assert (b->extra_string != NULL);
12966 /* 1 - connect to target 1, that can run breakpoint commands.
12967 2 - create a dprintf, which resolves fine.
12968 3 - disconnect from target 1
12969 4 - connect to target 2, that can NOT run breakpoint commands.
12971 After steps #3/#4, you'll want the dprintf command list to
12972 be updated, because target 1 and 2 may well return different
12973 answers for target_can_run_breakpoint_commands().
12974 Given absence of finer grained resetting, we get to do
12975 it all the time. */
12976 if (b->extra_string != NULL)
12977 update_dprintf_command_list (b);
12980 /* Implement the "print_recreate" breakpoint_ops method for dprintf. */
12983 dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
12985 fprintf_unfiltered (fp, "dprintf %s,%s",
12986 event_location_to_string (tp->location.get ()),
12988 print_recreate_thread (tp, fp);
12991 /* Implement the "after_condition_true" breakpoint_ops method for
12994 dprintf's are implemented with regular commands in their command
12995 list, but we run the commands here instead of before presenting the
12996 stop to the user, as dprintf's don't actually cause a stop. This
12997 also makes it so that the commands of multiple dprintfs at the same
12998 address are all handled. */
13001 dprintf_after_condition_true (struct bpstats *bs)
13003 struct bpstats tmp_bs;
13004 struct bpstats *tmp_bs_p = &tmp_bs;
13006 /* dprintf's never cause a stop. This wasn't set in the
13007 check_status hook instead because that would make the dprintf's
13008 condition not be evaluated. */
13011 /* Run the command list here. Take ownership of it instead of
13012 copying. We never want these commands to run later in
13013 bpstat_do_actions, if a breakpoint that causes a stop happens to
13014 be set at same address as this dprintf, or even if running the
13015 commands here throws. */
13016 tmp_bs.commands = bs->commands;
13017 bs->commands = NULL;
13019 bpstat_do_actions_1 (&tmp_bs_p);
13021 /* 'tmp_bs.commands' will usually be NULL by now, but
13022 bpstat_do_actions_1 may return early without processing the whole
13026 /* The breakpoint_ops structure to be used on static tracepoints with
13030 strace_marker_create_sals_from_location (const struct event_location *location,
13031 struct linespec_result *canonical,
13032 enum bptype type_wanted)
13034 struct linespec_sals lsal;
13035 const char *arg_start, *arg;
13037 arg = arg_start = get_linespec_location (location)->spec_string;
13038 lsal.sals = decode_static_tracepoint_spec (&arg);
13040 std::string str (arg_start, arg - arg_start);
13041 const char *ptr = str.c_str ();
13042 canonical->location
13043 = new_linespec_location (&ptr, symbol_name_match_type::FULL);
13046 = xstrdup (event_location_to_string (canonical->location.get ()));
13047 canonical->lsals.push_back (std::move (lsal));
13051 strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13052 struct linespec_result *canonical,
13053 gdb::unique_xmalloc_ptr<char> cond_string,
13054 gdb::unique_xmalloc_ptr<char> extra_string,
13055 enum bptype type_wanted,
13056 enum bpdisp disposition,
13058 int task, int ignore_count,
13059 const struct breakpoint_ops *ops,
13060 int from_tty, int enabled,
13061 int internal, unsigned flags)
13063 const linespec_sals &lsal = canonical->lsals[0];
13065 /* If the user is creating a static tracepoint by marker id
13066 (strace -m MARKER_ID), then store the sals index, so that
13067 breakpoint_re_set can try to match up which of the newly
13068 found markers corresponds to this one, and, don't try to
13069 expand multiple locations for each sal, given than SALS
13070 already should contain all sals for MARKER_ID. */
13072 for (size_t i = 0; i < lsal.sals.size (); i++)
13074 event_location_up location
13075 = copy_event_location (canonical->location.get ());
13077 std::unique_ptr<tracepoint> tp (new tracepoint ());
13078 init_breakpoint_sal (tp.get (), gdbarch, lsal.sals[i],
13079 std::move (location), NULL,
13080 std::move (cond_string),
13081 std::move (extra_string),
13082 type_wanted, disposition,
13083 thread, task, ignore_count, ops,
13084 from_tty, enabled, internal, flags,
13085 canonical->special_display);
13086 /* Given that its possible to have multiple markers with
13087 the same string id, if the user is creating a static
13088 tracepoint by marker id ("strace -m MARKER_ID"), then
13089 store the sals index, so that breakpoint_re_set can
13090 try to match up which of the newly found markers
13091 corresponds to this one */
13092 tp->static_trace_marker_id_idx = i;
13094 install_breakpoint (internal, std::move (tp), 0);
13098 static std::vector<symtab_and_line>
13099 strace_marker_decode_location (struct breakpoint *b,
13100 const struct event_location *location,
13101 struct program_space *search_pspace)
13103 struct tracepoint *tp = (struct tracepoint *) b;
13104 const char *s = get_linespec_location (location)->spec_string;
13106 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s);
13107 if (sals.size () > tp->static_trace_marker_id_idx)
13109 sals[0] = sals[tp->static_trace_marker_id_idx];
13114 error (_("marker %s not found"), tp->static_trace_marker_id.c_str ());
13117 static struct breakpoint_ops strace_marker_breakpoint_ops;
13120 strace_marker_p (struct breakpoint *b)
13122 return b->ops == &strace_marker_breakpoint_ops;
13125 /* Delete a breakpoint and clean up all traces of it in the data
13129 delete_breakpoint (struct breakpoint *bpt)
13131 struct breakpoint *b;
13133 gdb_assert (bpt != NULL);
13135 /* Has this bp already been deleted? This can happen because
13136 multiple lists can hold pointers to bp's. bpstat lists are
13139 One example of this happening is a watchpoint's scope bp. When
13140 the scope bp triggers, we notice that the watchpoint is out of
13141 scope, and delete it. We also delete its scope bp. But the
13142 scope bp is marked "auto-deleting", and is already on a bpstat.
13143 That bpstat is then checked for auto-deleting bp's, which are
13146 A real solution to this problem might involve reference counts in
13147 bp's, and/or giving them pointers back to their referencing
13148 bpstat's, and teaching delete_breakpoint to only free a bp's
13149 storage when no more references were extent. A cheaper bandaid
13151 if (bpt->type == bp_none)
13154 /* At least avoid this stale reference until the reference counting
13155 of breakpoints gets resolved. */
13156 if (bpt->related_breakpoint != bpt)
13158 struct breakpoint *related;
13159 struct watchpoint *w;
13161 if (bpt->type == bp_watchpoint_scope)
13162 w = (struct watchpoint *) bpt->related_breakpoint;
13163 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
13164 w = (struct watchpoint *) bpt;
13168 watchpoint_del_at_next_stop (w);
13170 /* Unlink bpt from the bpt->related_breakpoint ring. */
13171 for (related = bpt; related->related_breakpoint != bpt;
13172 related = related->related_breakpoint);
13173 related->related_breakpoint = bpt->related_breakpoint;
13174 bpt->related_breakpoint = bpt;
13177 /* watch_command_1 creates a watchpoint but only sets its number if
13178 update_watchpoint succeeds in creating its bp_locations. If there's
13179 a problem in that process, we'll be asked to delete the half-created
13180 watchpoint. In that case, don't announce the deletion. */
13182 gdb::observers::breakpoint_deleted.notify (bpt);
13184 if (breakpoint_chain == bpt)
13185 breakpoint_chain = bpt->next;
13187 ALL_BREAKPOINTS (b)
13188 if (b->next == bpt)
13190 b->next = bpt->next;
13194 /* Be sure no bpstat's are pointing at the breakpoint after it's
13196 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
13197 in all threads for now. Note that we cannot just remove bpstats
13198 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13199 commands are associated with the bpstat; if we remove it here,
13200 then the later call to bpstat_do_actions (&stop_bpstat); in
13201 event-top.c won't do anything, and temporary breakpoints with
13202 commands won't work. */
13204 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13206 /* Now that breakpoint is removed from breakpoint list, update the
13207 global location list. This will remove locations that used to
13208 belong to this breakpoint. Do this before freeing the breakpoint
13209 itself, since remove_breakpoint looks at location's owner. It
13210 might be better design to have location completely
13211 self-contained, but it's not the case now. */
13212 update_global_location_list (UGLL_DONT_INSERT);
13214 /* On the chance that someone will soon try again to delete this
13215 same bp, we mark it as deleted before freeing its storage. */
13216 bpt->type = bp_none;
13220 /* Iterator function to call a user-provided callback function once
13221 for each of B and its related breakpoints. */
13224 iterate_over_related_breakpoints (struct breakpoint *b,
13225 gdb::function_view<void (breakpoint *)> function)
13227 struct breakpoint *related;
13232 struct breakpoint *next;
13234 /* FUNCTION may delete RELATED. */
13235 next = related->related_breakpoint;
13237 if (next == related)
13239 /* RELATED is the last ring entry. */
13240 function (related);
13242 /* FUNCTION may have deleted it, so we'd never reach back to
13243 B. There's nothing left to do anyway, so just break
13248 function (related);
13252 while (related != b);
13256 delete_command (const char *arg, int from_tty)
13258 struct breakpoint *b, *b_tmp;
13264 int breaks_to_delete = 0;
13266 /* Delete all breakpoints if no argument. Do not delete
13267 internal breakpoints, these have to be deleted with an
13268 explicit breakpoint number argument. */
13269 ALL_BREAKPOINTS (b)
13270 if (user_breakpoint_p (b))
13272 breaks_to_delete = 1;
13276 /* Ask user only if there are some breakpoints to delete. */
13278 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
13280 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13281 if (user_breakpoint_p (b))
13282 delete_breakpoint (b);
13286 map_breakpoint_numbers
13287 (arg, [&] (breakpoint *b)
13289 iterate_over_related_breakpoints (b, delete_breakpoint);
13293 /* Return true if all locations of B bound to PSPACE are pending. If
13294 PSPACE is NULL, all locations of all program spaces are
13298 all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
13300 struct bp_location *loc;
13302 for (loc = b->loc; loc != NULL; loc = loc->next)
13303 if ((pspace == NULL
13304 || loc->pspace == pspace)
13305 && !loc->shlib_disabled
13306 && !loc->pspace->executing_startup)
13311 /* Subroutine of update_breakpoint_locations to simplify it.
13312 Return non-zero if multiple fns in list LOC have the same name.
13313 Null names are ignored. */
13316 ambiguous_names_p (struct bp_location *loc)
13318 struct bp_location *l;
13319 htab_t htab = htab_create_alloc (13, htab_hash_string, streq_hash, NULL,
13322 for (l = loc; l != NULL; l = l->next)
13325 const char *name = l->function_name;
13327 /* Allow for some names to be NULL, ignore them. */
13331 slot = (const char **) htab_find_slot (htab, (const void *) name,
13333 /* NOTE: We can assume slot != NULL here because xcalloc never
13337 htab_delete (htab);
13343 htab_delete (htab);
13347 /* When symbols change, it probably means the sources changed as well,
13348 and it might mean the static tracepoint markers are no longer at
13349 the same address or line numbers they used to be at last we
13350 checked. Losing your static tracepoints whenever you rebuild is
13351 undesirable. This function tries to resync/rematch gdb static
13352 tracepoints with the markers on the target, for static tracepoints
13353 that have not been set by marker id. Static tracepoint that have
13354 been set by marker id are reset by marker id in breakpoint_re_set.
13357 1) For a tracepoint set at a specific address, look for a marker at
13358 the old PC. If one is found there, assume to be the same marker.
13359 If the name / string id of the marker found is different from the
13360 previous known name, assume that means the user renamed the marker
13361 in the sources, and output a warning.
13363 2) For a tracepoint set at a given line number, look for a marker
13364 at the new address of the old line number. If one is found there,
13365 assume to be the same marker. If the name / string id of the
13366 marker found is different from the previous known name, assume that
13367 means the user renamed the marker in the sources, and output a
13370 3) If a marker is no longer found at the same address or line, it
13371 may mean the marker no longer exists. But it may also just mean
13372 the code changed a bit. Maybe the user added a few lines of code
13373 that made the marker move up or down (in line number terms). Ask
13374 the target for info about the marker with the string id as we knew
13375 it. If found, update line number and address in the matching
13376 static tracepoint. This will get confused if there's more than one
13377 marker with the same ID (possible in UST, although unadvised
13378 precisely because it confuses tools). */
13380 static struct symtab_and_line
13381 update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
13383 struct tracepoint *tp = (struct tracepoint *) b;
13384 struct static_tracepoint_marker marker;
13389 find_line_pc (sal.symtab, sal.line, &pc);
13391 if (target_static_tracepoint_marker_at (pc, &marker))
13393 if (tp->static_trace_marker_id != marker.str_id)
13394 warning (_("static tracepoint %d changed probed marker from %s to %s"),
13395 b->number, tp->static_trace_marker_id.c_str (),
13396 marker.str_id.c_str ());
13398 tp->static_trace_marker_id = std::move (marker.str_id);
13403 /* Old marker wasn't found on target at lineno. Try looking it up
13405 if (!sal.explicit_pc
13407 && sal.symtab != NULL
13408 && !tp->static_trace_marker_id.empty ())
13410 std::vector<static_tracepoint_marker> markers
13411 = target_static_tracepoint_markers_by_strid
13412 (tp->static_trace_marker_id.c_str ());
13414 if (!markers.empty ())
13416 struct symbol *sym;
13417 struct static_tracepoint_marker *tpmarker;
13418 struct ui_out *uiout = current_uiout;
13419 struct explicit_location explicit_loc;
13421 tpmarker = &markers[0];
13423 tp->static_trace_marker_id = std::move (tpmarker->str_id);
13425 warning (_("marker for static tracepoint %d (%s) not "
13426 "found at previous line number"),
13427 b->number, tp->static_trace_marker_id.c_str ());
13429 symtab_and_line sal2 = find_pc_line (tpmarker->address, 0);
13430 sym = find_pc_sect_function (tpmarker->address, NULL);
13431 uiout->text ("Now in ");
13434 uiout->field_string ("func", SYMBOL_PRINT_NAME (sym));
13435 uiout->text (" at ");
13437 uiout->field_string ("file",
13438 symtab_to_filename_for_display (sal2.symtab));
13441 if (uiout->is_mi_like_p ())
13443 const char *fullname = symtab_to_fullname (sal2.symtab);
13445 uiout->field_string ("fullname", fullname);
13448 uiout->field_int ("line", sal2.line);
13449 uiout->text ("\n");
13451 b->loc->line_number = sal2.line;
13452 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
13454 b->location.reset (NULL);
13455 initialize_explicit_location (&explicit_loc);
13456 explicit_loc.source_filename
13457 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
13458 explicit_loc.line_offset.offset = b->loc->line_number;
13459 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
13460 b->location = new_explicit_location (&explicit_loc);
13462 /* Might be nice to check if function changed, and warn if
13469 /* Returns 1 iff locations A and B are sufficiently same that
13470 we don't need to report breakpoint as changed. */
13473 locations_are_equal (struct bp_location *a, struct bp_location *b)
13477 if (a->address != b->address)
13480 if (a->shlib_disabled != b->shlib_disabled)
13483 if (a->enabled != b->enabled)
13490 if ((a == NULL) != (b == NULL))
13496 /* Split all locations of B that are bound to PSPACE out of B's
13497 location list to a separate list and return that list's head. If
13498 PSPACE is NULL, hoist out all locations of B. */
13500 static struct bp_location *
13501 hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
13503 struct bp_location head;
13504 struct bp_location *i = b->loc;
13505 struct bp_location **i_link = &b->loc;
13506 struct bp_location *hoisted = &head;
13508 if (pspace == NULL)
13519 if (i->pspace == pspace)
13534 /* Create new breakpoint locations for B (a hardware or software
13535 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
13536 zero, then B is a ranged breakpoint. Only recreates locations for
13537 FILTER_PSPACE. Locations of other program spaces are left
13541 update_breakpoint_locations (struct breakpoint *b,
13542 struct program_space *filter_pspace,
13543 gdb::array_view<const symtab_and_line> sals,
13544 gdb::array_view<const symtab_and_line> sals_end)
13546 struct bp_location *existing_locations;
13548 if (!sals_end.empty () && (sals.size () != 1 || sals_end.size () != 1))
13550 /* Ranged breakpoints have only one start location and one end
13552 b->enable_state = bp_disabled;
13553 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
13554 "multiple locations found\n"),
13559 /* If there's no new locations, and all existing locations are
13560 pending, don't do anything. This optimizes the common case where
13561 all locations are in the same shared library, that was unloaded.
13562 We'd like to retain the location, so that when the library is
13563 loaded again, we don't loose the enabled/disabled status of the
13564 individual locations. */
13565 if (all_locations_are_pending (b, filter_pspace) && sals.empty ())
13568 existing_locations = hoist_existing_locations (b, filter_pspace);
13570 for (const auto &sal : sals)
13572 struct bp_location *new_loc;
13574 switch_to_program_space_and_thread (sal.pspace);
13576 new_loc = add_location_to_breakpoint (b, &sal);
13578 /* Reparse conditions, they might contain references to the
13580 if (b->cond_string != NULL)
13584 s = b->cond_string;
13587 new_loc->cond = parse_exp_1 (&s, sal.pc,
13588 block_for_pc (sal.pc),
13591 CATCH (e, RETURN_MASK_ERROR)
13593 warning (_("failed to reevaluate condition "
13594 "for breakpoint %d: %s"),
13595 b->number, e.message);
13596 new_loc->enabled = 0;
13601 if (!sals_end.empty ())
13603 CORE_ADDR end = find_breakpoint_range_end (sals_end[0]);
13605 new_loc->length = end - sals[0].pc + 1;
13609 /* If possible, carry over 'disable' status from existing
13612 struct bp_location *e = existing_locations;
13613 /* If there are multiple breakpoints with the same function name,
13614 e.g. for inline functions, comparing function names won't work.
13615 Instead compare pc addresses; this is just a heuristic as things
13616 may have moved, but in practice it gives the correct answer
13617 often enough until a better solution is found. */
13618 int have_ambiguous_names = ambiguous_names_p (b->loc);
13620 for (; e; e = e->next)
13622 if (!e->enabled && e->function_name)
13624 struct bp_location *l = b->loc;
13625 if (have_ambiguous_names)
13627 for (; l; l = l->next)
13628 if (breakpoint_locations_match (e, l))
13636 for (; l; l = l->next)
13637 if (l->function_name
13638 && strcmp (e->function_name, l->function_name) == 0)
13648 if (!locations_are_equal (existing_locations, b->loc))
13649 gdb::observers::breakpoint_modified.notify (b);
13652 /* Find the SaL locations corresponding to the given LOCATION.
13653 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
13655 static std::vector<symtab_and_line>
13656 location_to_sals (struct breakpoint *b, struct event_location *location,
13657 struct program_space *search_pspace, int *found)
13659 struct gdb_exception exception = exception_none;
13661 gdb_assert (b->ops != NULL);
13663 std::vector<symtab_and_line> sals;
13667 sals = b->ops->decode_location (b, location, search_pspace);
13669 CATCH (e, RETURN_MASK_ERROR)
13671 int not_found_and_ok = 0;
13675 /* For pending breakpoints, it's expected that parsing will
13676 fail until the right shared library is loaded. User has
13677 already told to create pending breakpoints and don't need
13678 extra messages. If breakpoint is in bp_shlib_disabled
13679 state, then user already saw the message about that
13680 breakpoint being disabled, and don't want to see more
13682 if (e.error == NOT_FOUND_ERROR
13683 && (b->condition_not_parsed
13685 && search_pspace != NULL
13686 && b->loc->pspace != search_pspace)
13687 || (b->loc && b->loc->shlib_disabled)
13688 || (b->loc && b->loc->pspace->executing_startup)
13689 || b->enable_state == bp_disabled))
13690 not_found_and_ok = 1;
13692 if (!not_found_and_ok)
13694 /* We surely don't want to warn about the same breakpoint
13695 10 times. One solution, implemented here, is disable
13696 the breakpoint on error. Another solution would be to
13697 have separate 'warning emitted' flag. Since this
13698 happens only when a binary has changed, I don't know
13699 which approach is better. */
13700 b->enable_state = bp_disabled;
13701 throw_exception (e);
13706 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
13708 for (auto &sal : sals)
13709 resolve_sal_pc (&sal);
13710 if (b->condition_not_parsed && b->extra_string != NULL)
13712 char *cond_string, *extra_string;
13715 find_condition_and_thread (b->extra_string, sals[0].pc,
13716 &cond_string, &thread, &task,
13718 gdb_assert (b->cond_string == NULL);
13720 b->cond_string = cond_string;
13721 b->thread = thread;
13725 xfree (b->extra_string);
13726 b->extra_string = extra_string;
13728 b->condition_not_parsed = 0;
13731 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
13732 sals[0] = update_static_tracepoint (b, sals[0]);
13742 /* The default re_set method, for typical hardware or software
13743 breakpoints. Reevaluate the breakpoint and recreate its
13747 breakpoint_re_set_default (struct breakpoint *b)
13749 struct program_space *filter_pspace = current_program_space;
13750 std::vector<symtab_and_line> expanded, expanded_end;
13753 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (),
13754 filter_pspace, &found);
13756 expanded = std::move (sals);
13758 if (b->location_range_end != NULL)
13760 std::vector<symtab_and_line> sals_end
13761 = location_to_sals (b, b->location_range_end.get (),
13762 filter_pspace, &found);
13764 expanded_end = std::move (sals_end);
13767 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
13770 /* Default method for creating SALs from an address string. It basically
13771 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
13774 create_sals_from_location_default (const struct event_location *location,
13775 struct linespec_result *canonical,
13776 enum bptype type_wanted)
13778 parse_breakpoint_sals (location, canonical);
13781 /* Call create_breakpoints_sal for the given arguments. This is the default
13782 function for the `create_breakpoints_sal' method of
13786 create_breakpoints_sal_default (struct gdbarch *gdbarch,
13787 struct linespec_result *canonical,
13788 gdb::unique_xmalloc_ptr<char> cond_string,
13789 gdb::unique_xmalloc_ptr<char> extra_string,
13790 enum bptype type_wanted,
13791 enum bpdisp disposition,
13793 int task, int ignore_count,
13794 const struct breakpoint_ops *ops,
13795 int from_tty, int enabled,
13796 int internal, unsigned flags)
13798 create_breakpoints_sal (gdbarch, canonical,
13799 std::move (cond_string),
13800 std::move (extra_string),
13801 type_wanted, disposition,
13802 thread, task, ignore_count, ops, from_tty,
13803 enabled, internal, flags);
13806 /* Decode the line represented by S by calling decode_line_full. This is the
13807 default function for the `decode_location' method of breakpoint_ops. */
13809 static std::vector<symtab_and_line>
13810 decode_location_default (struct breakpoint *b,
13811 const struct event_location *location,
13812 struct program_space *search_pspace)
13814 struct linespec_result canonical;
13816 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
13817 (struct symtab *) NULL, 0,
13818 &canonical, multiple_symbols_all,
13821 /* We should get 0 or 1 resulting SALs. */
13822 gdb_assert (canonical.lsals.size () < 2);
13824 if (!canonical.lsals.empty ())
13826 const linespec_sals &lsal = canonical.lsals[0];
13827 return std::move (lsal.sals);
13832 /* Reset a breakpoint. */
13835 breakpoint_re_set_one (breakpoint *b)
13837 input_radix = b->input_radix;
13838 set_language (b->language);
13840 b->ops->re_set (b);
13843 /* Re-set breakpoint locations for the current program space.
13844 Locations bound to other program spaces are left untouched. */
13847 breakpoint_re_set (void)
13849 struct breakpoint *b, *b_tmp;
13852 scoped_restore_current_language save_language;
13853 scoped_restore save_input_radix = make_scoped_restore (&input_radix);
13854 scoped_restore_current_pspace_and_thread restore_pspace_thread;
13856 /* breakpoint_re_set_one sets the current_language to the language
13857 of the breakpoint it is resetting (see prepare_re_set_context)
13858 before re-evaluating the breakpoint's location. This change can
13859 unfortunately get undone by accident if the language_mode is set
13860 to auto, and we either switch frames, or more likely in this context,
13861 we select the current frame.
13863 We prevent this by temporarily turning the language_mode to
13864 language_mode_manual. We restore it once all breakpoints
13865 have been reset. */
13866 scoped_restore save_language_mode = make_scoped_restore (&language_mode);
13867 language_mode = language_mode_manual;
13869 /* Note: we must not try to insert locations until after all
13870 breakpoints have been re-set. Otherwise, e.g., when re-setting
13871 breakpoint 1, we'd insert the locations of breakpoint 2, which
13872 hadn't been re-set yet, and thus may have stale locations. */
13874 ALL_BREAKPOINTS_SAFE (b, b_tmp)
13878 breakpoint_re_set_one (b);
13880 CATCH (ex, RETURN_MASK_ALL)
13882 exception_fprintf (gdb_stderr, ex,
13883 "Error in re-setting breakpoint %d: ",
13889 jit_breakpoint_re_set ();
13892 create_overlay_event_breakpoint ();
13893 create_longjmp_master_breakpoint ();
13894 create_std_terminate_master_breakpoint ();
13895 create_exception_master_breakpoint ();
13897 /* Now we can insert. */
13898 update_global_location_list (UGLL_MAY_INSERT);
13901 /* Reset the thread number of this breakpoint:
13903 - If the breakpoint is for all threads, leave it as-is.
13904 - Else, reset it to the current thread for inferior_ptid. */
13906 breakpoint_re_set_thread (struct breakpoint *b)
13908 if (b->thread != -1)
13910 b->thread = inferior_thread ()->global_num;
13912 /* We're being called after following a fork. The new fork is
13913 selected as current, and unless this was a vfork will have a
13914 different program space from the original thread. Reset that
13916 b->loc->pspace = current_program_space;
13920 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
13921 If from_tty is nonzero, it prints a message to that effect,
13922 which ends with a period (no newline). */
13925 set_ignore_count (int bptnum, int count, int from_tty)
13927 struct breakpoint *b;
13932 ALL_BREAKPOINTS (b)
13933 if (b->number == bptnum)
13935 if (is_tracepoint (b))
13937 if (from_tty && count != 0)
13938 printf_filtered (_("Ignore count ignored for tracepoint %d."),
13943 b->ignore_count = count;
13947 printf_filtered (_("Will stop next time "
13948 "breakpoint %d is reached."),
13950 else if (count == 1)
13951 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
13954 printf_filtered (_("Will ignore next %d "
13955 "crossings of breakpoint %d."),
13958 gdb::observers::breakpoint_modified.notify (b);
13962 error (_("No breakpoint number %d."), bptnum);
13965 /* Command to set ignore-count of breakpoint N to COUNT. */
13968 ignore_command (const char *args, int from_tty)
13970 const char *p = args;
13974 error_no_arg (_("a breakpoint number"));
13976 num = get_number (&p);
13978 error (_("bad breakpoint number: '%s'"), args);
13980 error (_("Second argument (specified ignore-count) is missing."));
13982 set_ignore_count (num,
13983 longest_to_int (value_as_long (parse_and_eval (p))),
13986 printf_filtered ("\n");
13990 /* Call FUNCTION on each of the breakpoints with numbers in the range
13991 defined by BP_NUM_RANGE (an inclusive range). */
13994 map_breakpoint_number_range (std::pair<int, int> bp_num_range,
13995 gdb::function_view<void (breakpoint *)> function)
13997 if (bp_num_range.first == 0)
13999 warning (_("bad breakpoint number at or near '%d'"),
14000 bp_num_range.first);
14004 struct breakpoint *b, *tmp;
14006 for (int i = bp_num_range.first; i <= bp_num_range.second; i++)
14008 bool match = false;
14010 ALL_BREAKPOINTS_SAFE (b, tmp)
14011 if (b->number == i)
14018 printf_unfiltered (_("No breakpoint number %d.\n"), i);
14023 /* Call FUNCTION on each of the breakpoints whose numbers are given in
14027 map_breakpoint_numbers (const char *args,
14028 gdb::function_view<void (breakpoint *)> function)
14030 if (args == NULL || *args == '\0')
14031 error_no_arg (_("one or more breakpoint numbers"));
14033 number_or_range_parser parser (args);
14035 while (!parser.finished ())
14037 int num = parser.get_number ();
14038 map_breakpoint_number_range (std::make_pair (num, num), function);
14042 /* Return the breakpoint location structure corresponding to the
14043 BP_NUM and LOC_NUM values. */
14045 static struct bp_location *
14046 find_location_by_number (int bp_num, int loc_num)
14048 struct breakpoint *b;
14050 ALL_BREAKPOINTS (b)
14051 if (b->number == bp_num)
14056 if (!b || b->number != bp_num)
14057 error (_("Bad breakpoint number '%d'"), bp_num);
14060 error (_("Bad breakpoint location number '%d'"), loc_num);
14063 for (bp_location *loc = b->loc; loc != NULL; loc = loc->next)
14064 if (++n == loc_num)
14067 error (_("Bad breakpoint location number '%d'"), loc_num);
14070 /* Modes of operation for extract_bp_num. */
14071 enum class extract_bp_kind
14073 /* Extracting a breakpoint number. */
14076 /* Extracting a location number. */
14080 /* Extract a breakpoint or location number (as determined by KIND)
14081 from the string starting at START. TRAILER is a character which
14082 can be found after the number. If you don't want a trailer, use
14083 '\0'. If END_OUT is not NULL, it is set to point after the parsed
14084 string. This always returns a positive integer. */
14087 extract_bp_num (extract_bp_kind kind, const char *start,
14088 int trailer, const char **end_out = NULL)
14090 const char *end = start;
14091 int num = get_number_trailer (&end, trailer);
14093 error (kind == extract_bp_kind::bp
14094 ? _("Negative breakpoint number '%.*s'")
14095 : _("Negative breakpoint location number '%.*s'"),
14096 int (end - start), start);
14098 error (kind == extract_bp_kind::bp
14099 ? _("Bad breakpoint number '%.*s'")
14100 : _("Bad breakpoint location number '%.*s'"),
14101 int (end - start), start);
14103 if (end_out != NULL)
14108 /* Extract a breakpoint or location range (as determined by KIND) in
14109 the form NUM1-NUM2 stored at &ARG[arg_offset]. Returns a std::pair
14110 representing the (inclusive) range. The returned pair's elements
14111 are always positive integers. */
14113 static std::pair<int, int>
14114 extract_bp_or_bp_range (extract_bp_kind kind,
14115 const std::string &arg,
14116 std::string::size_type arg_offset)
14118 std::pair<int, int> range;
14119 const char *bp_loc = &arg[arg_offset];
14120 std::string::size_type dash = arg.find ('-', arg_offset);
14121 if (dash != std::string::npos)
14123 /* bp_loc is a range (x-z). */
14124 if (arg.length () == dash + 1)
14125 error (kind == extract_bp_kind::bp
14126 ? _("Bad breakpoint number at or near: '%s'")
14127 : _("Bad breakpoint location number at or near: '%s'"),
14131 const char *start_first = bp_loc;
14132 const char *start_second = &arg[dash + 1];
14133 range.first = extract_bp_num (kind, start_first, '-');
14134 range.second = extract_bp_num (kind, start_second, '\0', &end);
14136 if (range.first > range.second)
14137 error (kind == extract_bp_kind::bp
14138 ? _("Inverted breakpoint range at '%.*s'")
14139 : _("Inverted breakpoint location range at '%.*s'"),
14140 int (end - start_first), start_first);
14144 /* bp_loc is a single value. */
14145 range.first = extract_bp_num (kind, bp_loc, '\0');
14146 range.second = range.first;
14151 /* Extract the breakpoint/location range specified by ARG. Returns
14152 the breakpoint range in BP_NUM_RANGE, and the location range in
14155 ARG may be in any of the following forms:
14157 x where 'x' is a breakpoint number.
14158 x-y where 'x' and 'y' specify a breakpoint numbers range.
14159 x.y where 'x' is a breakpoint number and 'y' a location number.
14160 x.y-z where 'x' is a breakpoint number and 'y' and 'z' specify a
14161 location number range.
14165 extract_bp_number_and_location (const std::string &arg,
14166 std::pair<int, int> &bp_num_range,
14167 std::pair<int, int> &bp_loc_range)
14169 std::string::size_type dot = arg.find ('.');
14171 if (dot != std::string::npos)
14173 /* Handle 'x.y' and 'x.y-z' cases. */
14175 if (arg.length () == dot + 1 || dot == 0)
14176 error (_("Bad breakpoint number at or near: '%s'"), arg.c_str ());
14179 = extract_bp_num (extract_bp_kind::bp, arg.c_str (), '.');
14180 bp_num_range.second = bp_num_range.first;
14182 bp_loc_range = extract_bp_or_bp_range (extract_bp_kind::loc,
14187 /* Handle x and x-y cases. */
14189 bp_num_range = extract_bp_or_bp_range (extract_bp_kind::bp, arg, 0);
14190 bp_loc_range.first = 0;
14191 bp_loc_range.second = 0;
14195 /* Enable or disable a breakpoint location BP_NUM.LOC_NUM. ENABLE
14196 specifies whether to enable or disable. */
14199 enable_disable_bp_num_loc (int bp_num, int loc_num, bool enable)
14201 struct bp_location *loc = find_location_by_number (bp_num, loc_num);
14204 if (loc->enabled != enable)
14206 loc->enabled = enable;
14207 mark_breakpoint_location_modified (loc);
14209 if (target_supports_enable_disable_tracepoint ()
14210 && current_trace_status ()->running && loc->owner
14211 && is_tracepoint (loc->owner))
14212 target_disable_tracepoint (loc);
14214 update_global_location_list (UGLL_DONT_INSERT);
14216 gdb::observers::breakpoint_modified.notify (loc->owner);
14219 /* Enable or disable a range of breakpoint locations. BP_NUM is the
14220 number of the breakpoint, and BP_LOC_RANGE specifies the
14221 (inclusive) range of location numbers of that breakpoint to
14222 enable/disable. ENABLE specifies whether to enable or disable the
14226 enable_disable_breakpoint_location_range (int bp_num,
14227 std::pair<int, int> &bp_loc_range,
14230 for (int i = bp_loc_range.first; i <= bp_loc_range.second; i++)
14231 enable_disable_bp_num_loc (bp_num, i, enable);
14234 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
14235 If from_tty is nonzero, it prints a message to that effect,
14236 which ends with a period (no newline). */
14239 disable_breakpoint (struct breakpoint *bpt)
14241 /* Never disable a watchpoint scope breakpoint; we want to
14242 hit them when we leave scope so we can delete both the
14243 watchpoint and its scope breakpoint at that time. */
14244 if (bpt->type == bp_watchpoint_scope)
14247 bpt->enable_state = bp_disabled;
14249 /* Mark breakpoint locations modified. */
14250 mark_breakpoint_modified (bpt);
14252 if (target_supports_enable_disable_tracepoint ()
14253 && current_trace_status ()->running && is_tracepoint (bpt))
14255 struct bp_location *location;
14257 for (location = bpt->loc; location; location = location->next)
14258 target_disable_tracepoint (location);
14261 update_global_location_list (UGLL_DONT_INSERT);
14263 gdb::observers::breakpoint_modified.notify (bpt);
14266 /* Enable or disable the breakpoint(s) or breakpoint location(s)
14267 specified in ARGS. ARGS may be in any of the formats handled by
14268 extract_bp_number_and_location. ENABLE specifies whether to enable
14269 or disable the breakpoints/locations. */
14272 enable_disable_command (const char *args, int from_tty, bool enable)
14276 struct breakpoint *bpt;
14278 ALL_BREAKPOINTS (bpt)
14279 if (user_breakpoint_p (bpt))
14282 enable_breakpoint (bpt);
14284 disable_breakpoint (bpt);
14289 std::string num = extract_arg (&args);
14291 while (!num.empty ())
14293 std::pair<int, int> bp_num_range, bp_loc_range;
14295 extract_bp_number_and_location (num, bp_num_range, bp_loc_range);
14297 if (bp_loc_range.first == bp_loc_range.second
14298 && bp_loc_range.first == 0)
14300 /* Handle breakpoint ids with formats 'x' or 'x-z'. */
14301 map_breakpoint_number_range (bp_num_range,
14303 ? enable_breakpoint
14304 : disable_breakpoint);
14308 /* Handle breakpoint ids with formats 'x.y' or
14310 enable_disable_breakpoint_location_range
14311 (bp_num_range.first, bp_loc_range, enable);
14313 num = extract_arg (&args);
14318 /* The disable command disables the specified breakpoints/locations
14319 (or all defined breakpoints) so they're no longer effective in
14320 stopping the inferior. ARGS may be in any of the forms defined in
14321 extract_bp_number_and_location. */
14324 disable_command (const char *args, int from_tty)
14326 enable_disable_command (args, from_tty, false);
14330 enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14333 int target_resources_ok;
14335 if (bpt->type == bp_hardware_breakpoint)
14338 i = hw_breakpoint_used_count ();
14339 target_resources_ok =
14340 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
14342 if (target_resources_ok == 0)
14343 error (_("No hardware breakpoint support in the target."));
14344 else if (target_resources_ok < 0)
14345 error (_("Hardware breakpoints used exceeds limit."));
14348 if (is_watchpoint (bpt))
14350 /* Initialize it just to avoid a GCC false warning. */
14351 enum enable_state orig_enable_state = bp_disabled;
14355 struct watchpoint *w = (struct watchpoint *) bpt;
14357 orig_enable_state = bpt->enable_state;
14358 bpt->enable_state = bp_enabled;
14359 update_watchpoint (w, 1 /* reparse */);
14361 CATCH (e, RETURN_MASK_ALL)
14363 bpt->enable_state = orig_enable_state;
14364 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14371 bpt->enable_state = bp_enabled;
14373 /* Mark breakpoint locations modified. */
14374 mark_breakpoint_modified (bpt);
14376 if (target_supports_enable_disable_tracepoint ()
14377 && current_trace_status ()->running && is_tracepoint (bpt))
14379 struct bp_location *location;
14381 for (location = bpt->loc; location; location = location->next)
14382 target_enable_tracepoint (location);
14385 bpt->disposition = disposition;
14386 bpt->enable_count = count;
14387 update_global_location_list (UGLL_MAY_INSERT);
14389 gdb::observers::breakpoint_modified.notify (bpt);
14394 enable_breakpoint (struct breakpoint *bpt)
14396 enable_breakpoint_disp (bpt, bpt->disposition, 0);
14399 /* The enable command enables the specified breakpoints/locations (or
14400 all defined breakpoints) so they once again become (or continue to
14401 be) effective in stopping the inferior. ARGS may be in any of the
14402 forms defined in extract_bp_number_and_location. */
14405 enable_command (const char *args, int from_tty)
14407 enable_disable_command (args, from_tty, true);
14411 enable_once_command (const char *args, int from_tty)
14413 map_breakpoint_numbers
14414 (args, [&] (breakpoint *b)
14416 iterate_over_related_breakpoints
14417 (b, [&] (breakpoint *bpt)
14419 enable_breakpoint_disp (bpt, disp_disable, 1);
14425 enable_count_command (const char *args, int from_tty)
14430 error_no_arg (_("hit count"));
14432 count = get_number (&args);
14434 map_breakpoint_numbers
14435 (args, [&] (breakpoint *b)
14437 iterate_over_related_breakpoints
14438 (b, [&] (breakpoint *bpt)
14440 enable_breakpoint_disp (bpt, disp_disable, count);
14446 enable_delete_command (const char *args, int from_tty)
14448 map_breakpoint_numbers
14449 (args, [&] (breakpoint *b)
14451 iterate_over_related_breakpoints
14452 (b, [&] (breakpoint *bpt)
14454 enable_breakpoint_disp (bpt, disp_del, 1);
14460 set_breakpoint_cmd (const char *args, int from_tty)
14465 show_breakpoint_cmd (const char *args, int from_tty)
14469 /* Invalidate last known value of any hardware watchpoint if
14470 the memory which that value represents has been written to by
14474 invalidate_bp_value_on_memory_change (struct inferior *inferior,
14475 CORE_ADDR addr, ssize_t len,
14476 const bfd_byte *data)
14478 struct breakpoint *bp;
14480 ALL_BREAKPOINTS (bp)
14481 if (bp->enable_state == bp_enabled
14482 && bp->type == bp_hardware_watchpoint)
14484 struct watchpoint *wp = (struct watchpoint *) bp;
14486 if (wp->val_valid && wp->val != nullptr)
14488 struct bp_location *loc;
14490 for (loc = bp->loc; loc != NULL; loc = loc->next)
14491 if (loc->loc_type == bp_loc_hardware_watchpoint
14492 && loc->address + loc->length > addr
14493 && addr + len > loc->address)
14502 /* Create and insert a breakpoint for software single step. */
14505 insert_single_step_breakpoint (struct gdbarch *gdbarch,
14506 const address_space *aspace,
14509 struct thread_info *tp = inferior_thread ();
14510 struct symtab_and_line sal;
14511 CORE_ADDR pc = next_pc;
14513 if (tp->control.single_step_breakpoints == NULL)
14515 tp->control.single_step_breakpoints
14516 = new_single_step_breakpoint (tp->global_num, gdbarch);
14519 sal = find_pc_line (pc, 0);
14521 sal.section = find_pc_overlay (pc);
14522 sal.explicit_pc = 1;
14523 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
14525 update_global_location_list (UGLL_INSERT);
14528 /* Insert single step breakpoints according to the current state. */
14531 insert_single_step_breakpoints (struct gdbarch *gdbarch)
14533 struct regcache *regcache = get_current_regcache ();
14534 std::vector<CORE_ADDR> next_pcs;
14536 next_pcs = gdbarch_software_single_step (gdbarch, regcache);
14538 if (!next_pcs.empty ())
14540 struct frame_info *frame = get_current_frame ();
14541 const address_space *aspace = get_frame_address_space (frame);
14543 for (CORE_ADDR pc : next_pcs)
14544 insert_single_step_breakpoint (gdbarch, aspace, pc);
14552 /* See breakpoint.h. */
14555 breakpoint_has_location_inserted_here (struct breakpoint *bp,
14556 const address_space *aspace,
14559 struct bp_location *loc;
14561 for (loc = bp->loc; loc != NULL; loc = loc->next)
14563 && breakpoint_location_address_match (loc, aspace, pc))
14569 /* Check whether a software single-step breakpoint is inserted at
14573 single_step_breakpoint_inserted_here_p (const address_space *aspace,
14576 struct breakpoint *bpt;
14578 ALL_BREAKPOINTS (bpt)
14580 if (bpt->type == bp_single_step
14581 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
14587 /* Tracepoint-specific operations. */
14589 /* Set tracepoint count to NUM. */
14591 set_tracepoint_count (int num)
14593 tracepoint_count = num;
14594 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
14598 trace_command (const char *arg, int from_tty)
14600 struct breakpoint_ops *ops;
14602 event_location_up location = string_to_event_location (&arg,
14604 if (location != NULL
14605 && event_location_type (location.get ()) == PROBE_LOCATION)
14606 ops = &tracepoint_probe_breakpoint_ops;
14608 ops = &tracepoint_breakpoint_ops;
14610 create_breakpoint (get_current_arch (),
14612 NULL, 0, arg, 1 /* parse arg */,
14614 bp_tracepoint /* type_wanted */,
14615 0 /* Ignore count */,
14616 pending_break_support,
14620 0 /* internal */, 0);
14624 ftrace_command (const char *arg, int from_tty)
14626 event_location_up location = string_to_event_location (&arg,
14628 create_breakpoint (get_current_arch (),
14630 NULL, 0, arg, 1 /* parse arg */,
14632 bp_fast_tracepoint /* type_wanted */,
14633 0 /* Ignore count */,
14634 pending_break_support,
14635 &tracepoint_breakpoint_ops,
14638 0 /* internal */, 0);
14641 /* strace command implementation. Creates a static tracepoint. */
14644 strace_command (const char *arg, int from_tty)
14646 struct breakpoint_ops *ops;
14647 event_location_up location;
14649 /* Decide if we are dealing with a static tracepoint marker (`-m'),
14650 or with a normal static tracepoint. */
14651 if (arg && startswith (arg, "-m") && isspace (arg[2]))
14653 ops = &strace_marker_breakpoint_ops;
14654 location = new_linespec_location (&arg, symbol_name_match_type::FULL);
14658 ops = &tracepoint_breakpoint_ops;
14659 location = string_to_event_location (&arg, current_language);
14662 create_breakpoint (get_current_arch (),
14664 NULL, 0, arg, 1 /* parse arg */,
14666 bp_static_tracepoint /* type_wanted */,
14667 0 /* Ignore count */,
14668 pending_break_support,
14672 0 /* internal */, 0);
14675 /* Set up a fake reader function that gets command lines from a linked
14676 list that was acquired during tracepoint uploading. */
14678 static struct uploaded_tp *this_utp;
14679 static int next_cmd;
14682 read_uploaded_action (void)
14684 char *rslt = nullptr;
14686 if (next_cmd < this_utp->cmd_strings.size ())
14688 rslt = this_utp->cmd_strings[next_cmd];
14695 /* Given information about a tracepoint as recorded on a target (which
14696 can be either a live system or a trace file), attempt to create an
14697 equivalent GDB tracepoint. This is not a reliable process, since
14698 the target does not necessarily have all the information used when
14699 the tracepoint was originally defined. */
14701 struct tracepoint *
14702 create_tracepoint_from_upload (struct uploaded_tp *utp)
14704 const char *addr_str;
14705 char small_buf[100];
14706 struct tracepoint *tp;
14708 if (utp->at_string)
14709 addr_str = utp->at_string;
14712 /* In the absence of a source location, fall back to raw
14713 address. Since there is no way to confirm that the address
14714 means the same thing as when the trace was started, warn the
14716 warning (_("Uploaded tracepoint %d has no "
14717 "source location, using raw address"),
14719 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
14720 addr_str = small_buf;
14723 /* There's not much we can do with a sequence of bytecodes. */
14724 if (utp->cond && !utp->cond_string)
14725 warning (_("Uploaded tracepoint %d condition "
14726 "has no source form, ignoring it"),
14729 event_location_up location = string_to_event_location (&addr_str,
14731 if (!create_breakpoint (get_current_arch (),
14733 utp->cond_string, -1, addr_str,
14734 0 /* parse cond/thread */,
14736 utp->type /* type_wanted */,
14737 0 /* Ignore count */,
14738 pending_break_support,
14739 &tracepoint_breakpoint_ops,
14741 utp->enabled /* enabled */,
14743 CREATE_BREAKPOINT_FLAGS_INSERTED))
14746 /* Get the tracepoint we just created. */
14747 tp = get_tracepoint (tracepoint_count);
14748 gdb_assert (tp != NULL);
14752 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
14755 trace_pass_command (small_buf, 0);
14758 /* If we have uploaded versions of the original commands, set up a
14759 special-purpose "reader" function and call the usual command line
14760 reader, then pass the result to the breakpoint command-setting
14762 if (!utp->cmd_strings.empty ())
14764 counted_command_line cmd_list;
14769 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL);
14771 breakpoint_set_commands (tp, std::move (cmd_list));
14773 else if (!utp->actions.empty ()
14774 || !utp->step_actions.empty ())
14775 warning (_("Uploaded tracepoint %d actions "
14776 "have no source form, ignoring them"),
14779 /* Copy any status information that might be available. */
14780 tp->hit_count = utp->hit_count;
14781 tp->traceframe_usage = utp->traceframe_usage;
14786 /* Print information on tracepoint number TPNUM_EXP, or all if
14790 info_tracepoints_command (const char *args, int from_tty)
14792 struct ui_out *uiout = current_uiout;
14795 num_printed = breakpoint_1 (args, 0, is_tracepoint);
14797 if (num_printed == 0)
14799 if (args == NULL || *args == '\0')
14800 uiout->message ("No tracepoints.\n");
14802 uiout->message ("No tracepoint matching '%s'.\n", args);
14805 default_collect_info ();
14808 /* The 'enable trace' command enables tracepoints.
14809 Not supported by all targets. */
14811 enable_trace_command (const char *args, int from_tty)
14813 enable_command (args, from_tty);
14816 /* The 'disable trace' command disables tracepoints.
14817 Not supported by all targets. */
14819 disable_trace_command (const char *args, int from_tty)
14821 disable_command (args, from_tty);
14824 /* Remove a tracepoint (or all if no argument). */
14826 delete_trace_command (const char *arg, int from_tty)
14828 struct breakpoint *b, *b_tmp;
14834 int breaks_to_delete = 0;
14836 /* Delete all breakpoints if no argument.
14837 Do not delete internal or call-dummy breakpoints, these
14838 have to be deleted with an explicit breakpoint number
14840 ALL_TRACEPOINTS (b)
14841 if (is_tracepoint (b) && user_breakpoint_p (b))
14843 breaks_to_delete = 1;
14847 /* Ask user only if there are some breakpoints to delete. */
14849 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
14851 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14852 if (is_tracepoint (b) && user_breakpoint_p (b))
14853 delete_breakpoint (b);
14857 map_breakpoint_numbers
14858 (arg, [&] (breakpoint *b)
14860 iterate_over_related_breakpoints (b, delete_breakpoint);
14864 /* Helper function for trace_pass_command. */
14867 trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
14869 tp->pass_count = count;
14870 gdb::observers::breakpoint_modified.notify (tp);
14872 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
14873 tp->number, count);
14876 /* Set passcount for tracepoint.
14878 First command argument is passcount, second is tracepoint number.
14879 If tracepoint number omitted, apply to most recently defined.
14880 Also accepts special argument "all". */
14883 trace_pass_command (const char *args, int from_tty)
14885 struct tracepoint *t1;
14888 if (args == 0 || *args == 0)
14889 error (_("passcount command requires an "
14890 "argument (count + optional TP num)"));
14892 count = strtoulst (args, &args, 10); /* Count comes first, then TP num. */
14894 args = skip_spaces (args);
14895 if (*args && strncasecmp (args, "all", 3) == 0)
14897 struct breakpoint *b;
14899 args += 3; /* Skip special argument "all". */
14901 error (_("Junk at end of arguments."));
14903 ALL_TRACEPOINTS (b)
14905 t1 = (struct tracepoint *) b;
14906 trace_pass_set_count (t1, count, from_tty);
14909 else if (*args == '\0')
14911 t1 = get_tracepoint_by_number (&args, NULL);
14913 trace_pass_set_count (t1, count, from_tty);
14917 number_or_range_parser parser (args);
14918 while (!parser.finished ())
14920 t1 = get_tracepoint_by_number (&args, &parser);
14922 trace_pass_set_count (t1, count, from_tty);
14927 struct tracepoint *
14928 get_tracepoint (int num)
14930 struct breakpoint *t;
14932 ALL_TRACEPOINTS (t)
14933 if (t->number == num)
14934 return (struct tracepoint *) t;
14939 /* Find the tracepoint with the given target-side number (which may be
14940 different from the tracepoint number after disconnecting and
14943 struct tracepoint *
14944 get_tracepoint_by_number_on_target (int num)
14946 struct breakpoint *b;
14948 ALL_TRACEPOINTS (b)
14950 struct tracepoint *t = (struct tracepoint *) b;
14952 if (t->number_on_target == num)
14959 /* Utility: parse a tracepoint number and look it up in the list.
14960 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
14961 If the argument is missing, the most recent tracepoint
14962 (tracepoint_count) is returned. */
14964 struct tracepoint *
14965 get_tracepoint_by_number (const char **arg,
14966 number_or_range_parser *parser)
14968 struct breakpoint *t;
14970 const char *instring = arg == NULL ? NULL : *arg;
14972 if (parser != NULL)
14974 gdb_assert (!parser->finished ());
14975 tpnum = parser->get_number ();
14977 else if (arg == NULL || *arg == NULL || ! **arg)
14978 tpnum = tracepoint_count;
14980 tpnum = get_number (arg);
14984 if (instring && *instring)
14985 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
14988 printf_filtered (_("No previous tracepoint\n"));
14992 ALL_TRACEPOINTS (t)
14993 if (t->number == tpnum)
14995 return (struct tracepoint *) t;
14998 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15003 print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15005 if (b->thread != -1)
15006 fprintf_unfiltered (fp, " thread %d", b->thread);
15009 fprintf_unfiltered (fp, " task %d", b->task);
15011 fprintf_unfiltered (fp, "\n");
15014 /* Save information on user settable breakpoints (watchpoints, etc) to
15015 a new script file named FILENAME. If FILTER is non-NULL, call it
15016 on each breakpoint and only include the ones for which it returns
15020 save_breakpoints (const char *filename, int from_tty,
15021 int (*filter) (const struct breakpoint *))
15023 struct breakpoint *tp;
15025 int extra_trace_bits = 0;
15027 if (filename == 0 || *filename == 0)
15028 error (_("Argument required (file name in which to save)"));
15030 /* See if we have anything to save. */
15031 ALL_BREAKPOINTS (tp)
15033 /* Skip internal and momentary breakpoints. */
15034 if (!user_breakpoint_p (tp))
15037 /* If we have a filter, only save the breakpoints it accepts. */
15038 if (filter && !filter (tp))
15043 if (is_tracepoint (tp))
15045 extra_trace_bits = 1;
15047 /* We can stop searching. */
15054 warning (_("Nothing to save."));
15058 gdb::unique_xmalloc_ptr<char> expanded_filename (tilde_expand (filename));
15062 if (!fp.open (expanded_filename.get (), "w"))
15063 error (_("Unable to open file '%s' for saving (%s)"),
15064 expanded_filename.get (), safe_strerror (errno));
15066 if (extra_trace_bits)
15067 save_trace_state_variables (&fp);
15069 ALL_BREAKPOINTS (tp)
15071 /* Skip internal and momentary breakpoints. */
15072 if (!user_breakpoint_p (tp))
15075 /* If we have a filter, only save the breakpoints it accepts. */
15076 if (filter && !filter (tp))
15079 tp->ops->print_recreate (tp, &fp);
15081 /* Note, we can't rely on tp->number for anything, as we can't
15082 assume the recreated breakpoint numbers will match. Use $bpnum
15085 if (tp->cond_string)
15086 fp.printf (" condition $bpnum %s\n", tp->cond_string);
15088 if (tp->ignore_count)
15089 fp.printf (" ignore $bpnum %d\n", tp->ignore_count);
15091 if (tp->type != bp_dprintf && tp->commands)
15093 fp.puts (" commands\n");
15095 current_uiout->redirect (&fp);
15098 print_command_lines (current_uiout, tp->commands.get (), 2);
15100 CATCH (ex, RETURN_MASK_ALL)
15102 current_uiout->redirect (NULL);
15103 throw_exception (ex);
15107 current_uiout->redirect (NULL);
15108 fp.puts (" end\n");
15111 if (tp->enable_state == bp_disabled)
15112 fp.puts ("disable $bpnum\n");
15114 /* If this is a multi-location breakpoint, check if the locations
15115 should be individually disabled. Watchpoint locations are
15116 special, and not user visible. */
15117 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15119 struct bp_location *loc;
15122 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15124 fp.printf ("disable $bpnum.%d\n", n);
15128 if (extra_trace_bits && *default_collect)
15129 fp.printf ("set default-collect %s\n", default_collect);
15132 printf_filtered (_("Saved to file '%s'.\n"), expanded_filename.get ());
15135 /* The `save breakpoints' command. */
15138 save_breakpoints_command (const char *args, int from_tty)
15140 save_breakpoints (args, from_tty, NULL);
15143 /* The `save tracepoints' command. */
15146 save_tracepoints_command (const char *args, int from_tty)
15148 save_breakpoints (args, from_tty, is_tracepoint);
15151 /* Create a vector of all tracepoints. */
15153 std::vector<breakpoint *>
15154 all_tracepoints (void)
15156 std::vector<breakpoint *> tp_vec;
15157 struct breakpoint *tp;
15159 ALL_TRACEPOINTS (tp)
15161 tp_vec.push_back (tp);
15168 /* This help string is used to consolidate all the help string for specifying
15169 locations used by several commands. */
15171 #define LOCATION_HELP_STRING \
15172 "Linespecs are colon-separated lists of location parameters, such as\n\
15173 source filename, function name, label name, and line number.\n\
15174 Example: To specify the start of a label named \"the_top\" in the\n\
15175 function \"fact\" in the file \"factorial.c\", use\n\
15176 \"factorial.c:fact:the_top\".\n\
15178 Address locations begin with \"*\" and specify an exact address in the\n\
15179 program. Example: To specify the fourth byte past the start function\n\
15180 \"main\", use \"*main + 4\".\n\
15182 Explicit locations are similar to linespecs but use an option/argument\n\
15183 syntax to specify location parameters.\n\
15184 Example: To specify the start of the label named \"the_top\" in the\n\
15185 function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
15186 -function fact -label the_top\".\n\
15188 By default, a specified function is matched against the program's\n\
15189 functions in all scopes. For C++, this means in all namespaces and\n\
15190 classes. For Ada, this means in all packages. E.g., in C++,\n\
15191 \"func()\" matches \"A::func()\", \"A::B::func()\", etc. The\n\
15192 \"-qualified\" flag overrides this behavior, making GDB interpret the\n\
15193 specified name as a complete fully-qualified name instead.\n"
15195 /* This help string is used for the break, hbreak, tbreak and thbreak
15196 commands. It is defined as a macro to prevent duplication.
15197 COMMAND should be a string constant containing the name of the
15200 #define BREAK_ARGS_HELP(command) \
15201 command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15202 PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15203 probe point. Accepted values are `-probe' (for a generic, automatically\n\
15204 guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15205 `-probe-dtrace' (for a DTrace probe).\n\
15206 LOCATION may be a linespec, address, or explicit location as described\n\
15209 With no LOCATION, uses current execution address of the selected\n\
15210 stack frame. This is useful for breaking on return to a stack frame.\n\
15212 THREADNUM is the number from \"info threads\".\n\
15213 CONDITION is a boolean expression.\n\
15214 \n" LOCATION_HELP_STRING "\n\
15215 Multiple breakpoints at one place are permitted, and useful if their\n\
15216 conditions are different.\n\
15218 Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15220 /* List of subcommands for "catch". */
15221 static struct cmd_list_element *catch_cmdlist;
15223 /* List of subcommands for "tcatch". */
15224 static struct cmd_list_element *tcatch_cmdlist;
15227 add_catch_command (const char *name, const char *docstring,
15228 cmd_const_sfunc_ftype *sfunc,
15229 completer_ftype *completer,
15230 void *user_data_catch,
15231 void *user_data_tcatch)
15233 struct cmd_list_element *command;
15235 command = add_cmd (name, class_breakpoint, docstring,
15237 set_cmd_sfunc (command, sfunc);
15238 set_cmd_context (command, user_data_catch);
15239 set_cmd_completer (command, completer);
15241 command = add_cmd (name, class_breakpoint, docstring,
15243 set_cmd_sfunc (command, sfunc);
15244 set_cmd_context (command, user_data_tcatch);
15245 set_cmd_completer (command, completer);
15249 save_command (const char *arg, int from_tty)
15251 printf_unfiltered (_("\"save\" must be followed by "
15252 "the name of a save subcommand.\n"));
15253 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
15256 struct breakpoint *
15257 iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15260 struct breakpoint *b, *b_tmp;
15262 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15264 if ((*callback) (b, data))
15271 /* Zero if any of the breakpoint's locations could be a location where
15272 functions have been inlined, nonzero otherwise. */
15275 is_non_inline_function (struct breakpoint *b)
15277 /* The shared library event breakpoint is set on the address of a
15278 non-inline function. */
15279 if (b->type == bp_shlib_event)
15285 /* Nonzero if the specified PC cannot be a location where functions
15286 have been inlined. */
15289 pc_at_non_inline_function (const address_space *aspace, CORE_ADDR pc,
15290 const struct target_waitstatus *ws)
15292 struct breakpoint *b;
15293 struct bp_location *bl;
15295 ALL_BREAKPOINTS (b)
15297 if (!is_non_inline_function (b))
15300 for (bl = b->loc; bl != NULL; bl = bl->next)
15302 if (!bl->shlib_disabled
15303 && bpstat_check_location (bl, aspace, pc, ws))
15311 /* Remove any references to OBJFILE which is going to be freed. */
15314 breakpoint_free_objfile (struct objfile *objfile)
15316 struct bp_location **locp, *loc;
15318 ALL_BP_LOCATIONS (loc, locp)
15319 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
15320 loc->symtab = NULL;
15324 initialize_breakpoint_ops (void)
15326 static int initialized = 0;
15328 struct breakpoint_ops *ops;
15334 /* The breakpoint_ops structure to be inherit by all kinds of
15335 breakpoints (real breakpoints, i.e., user "break" breakpoints,
15336 internal and momentary breakpoints, etc.). */
15337 ops = &bkpt_base_breakpoint_ops;
15338 *ops = base_breakpoint_ops;
15339 ops->re_set = bkpt_re_set;
15340 ops->insert_location = bkpt_insert_location;
15341 ops->remove_location = bkpt_remove_location;
15342 ops->breakpoint_hit = bkpt_breakpoint_hit;
15343 ops->create_sals_from_location = bkpt_create_sals_from_location;
15344 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
15345 ops->decode_location = bkpt_decode_location;
15347 /* The breakpoint_ops structure to be used in regular breakpoints. */
15348 ops = &bkpt_breakpoint_ops;
15349 *ops = bkpt_base_breakpoint_ops;
15350 ops->re_set = bkpt_re_set;
15351 ops->resources_needed = bkpt_resources_needed;
15352 ops->print_it = bkpt_print_it;
15353 ops->print_mention = bkpt_print_mention;
15354 ops->print_recreate = bkpt_print_recreate;
15356 /* Ranged breakpoints. */
15357 ops = &ranged_breakpoint_ops;
15358 *ops = bkpt_breakpoint_ops;
15359 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
15360 ops->resources_needed = resources_needed_ranged_breakpoint;
15361 ops->print_it = print_it_ranged_breakpoint;
15362 ops->print_one = print_one_ranged_breakpoint;
15363 ops->print_one_detail = print_one_detail_ranged_breakpoint;
15364 ops->print_mention = print_mention_ranged_breakpoint;
15365 ops->print_recreate = print_recreate_ranged_breakpoint;
15367 /* Internal breakpoints. */
15368 ops = &internal_breakpoint_ops;
15369 *ops = bkpt_base_breakpoint_ops;
15370 ops->re_set = internal_bkpt_re_set;
15371 ops->check_status = internal_bkpt_check_status;
15372 ops->print_it = internal_bkpt_print_it;
15373 ops->print_mention = internal_bkpt_print_mention;
15375 /* Momentary breakpoints. */
15376 ops = &momentary_breakpoint_ops;
15377 *ops = bkpt_base_breakpoint_ops;
15378 ops->re_set = momentary_bkpt_re_set;
15379 ops->check_status = momentary_bkpt_check_status;
15380 ops->print_it = momentary_bkpt_print_it;
15381 ops->print_mention = momentary_bkpt_print_mention;
15383 /* Probe breakpoints. */
15384 ops = &bkpt_probe_breakpoint_ops;
15385 *ops = bkpt_breakpoint_ops;
15386 ops->insert_location = bkpt_probe_insert_location;
15387 ops->remove_location = bkpt_probe_remove_location;
15388 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
15389 ops->decode_location = bkpt_probe_decode_location;
15392 ops = &watchpoint_breakpoint_ops;
15393 *ops = base_breakpoint_ops;
15394 ops->re_set = re_set_watchpoint;
15395 ops->insert_location = insert_watchpoint;
15396 ops->remove_location = remove_watchpoint;
15397 ops->breakpoint_hit = breakpoint_hit_watchpoint;
15398 ops->check_status = check_status_watchpoint;
15399 ops->resources_needed = resources_needed_watchpoint;
15400 ops->works_in_software_mode = works_in_software_mode_watchpoint;
15401 ops->print_it = print_it_watchpoint;
15402 ops->print_mention = print_mention_watchpoint;
15403 ops->print_recreate = print_recreate_watchpoint;
15404 ops->explains_signal = explains_signal_watchpoint;
15406 /* Masked watchpoints. */
15407 ops = &masked_watchpoint_breakpoint_ops;
15408 *ops = watchpoint_breakpoint_ops;
15409 ops->insert_location = insert_masked_watchpoint;
15410 ops->remove_location = remove_masked_watchpoint;
15411 ops->resources_needed = resources_needed_masked_watchpoint;
15412 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
15413 ops->print_it = print_it_masked_watchpoint;
15414 ops->print_one_detail = print_one_detail_masked_watchpoint;
15415 ops->print_mention = print_mention_masked_watchpoint;
15416 ops->print_recreate = print_recreate_masked_watchpoint;
15419 ops = &tracepoint_breakpoint_ops;
15420 *ops = base_breakpoint_ops;
15421 ops->re_set = tracepoint_re_set;
15422 ops->breakpoint_hit = tracepoint_breakpoint_hit;
15423 ops->print_one_detail = tracepoint_print_one_detail;
15424 ops->print_mention = tracepoint_print_mention;
15425 ops->print_recreate = tracepoint_print_recreate;
15426 ops->create_sals_from_location = tracepoint_create_sals_from_location;
15427 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
15428 ops->decode_location = tracepoint_decode_location;
15430 /* Probe tracepoints. */
15431 ops = &tracepoint_probe_breakpoint_ops;
15432 *ops = tracepoint_breakpoint_ops;
15433 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
15434 ops->decode_location = tracepoint_probe_decode_location;
15436 /* Static tracepoints with marker (`-m'). */
15437 ops = &strace_marker_breakpoint_ops;
15438 *ops = tracepoint_breakpoint_ops;
15439 ops->create_sals_from_location = strace_marker_create_sals_from_location;
15440 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
15441 ops->decode_location = strace_marker_decode_location;
15443 /* Fork catchpoints. */
15444 ops = &catch_fork_breakpoint_ops;
15445 *ops = base_breakpoint_ops;
15446 ops->insert_location = insert_catch_fork;
15447 ops->remove_location = remove_catch_fork;
15448 ops->breakpoint_hit = breakpoint_hit_catch_fork;
15449 ops->print_it = print_it_catch_fork;
15450 ops->print_one = print_one_catch_fork;
15451 ops->print_mention = print_mention_catch_fork;
15452 ops->print_recreate = print_recreate_catch_fork;
15454 /* Vfork catchpoints. */
15455 ops = &catch_vfork_breakpoint_ops;
15456 *ops = base_breakpoint_ops;
15457 ops->insert_location = insert_catch_vfork;
15458 ops->remove_location = remove_catch_vfork;
15459 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
15460 ops->print_it = print_it_catch_vfork;
15461 ops->print_one = print_one_catch_vfork;
15462 ops->print_mention = print_mention_catch_vfork;
15463 ops->print_recreate = print_recreate_catch_vfork;
15465 /* Exec catchpoints. */
15466 ops = &catch_exec_breakpoint_ops;
15467 *ops = base_breakpoint_ops;
15468 ops->insert_location = insert_catch_exec;
15469 ops->remove_location = remove_catch_exec;
15470 ops->breakpoint_hit = breakpoint_hit_catch_exec;
15471 ops->print_it = print_it_catch_exec;
15472 ops->print_one = print_one_catch_exec;
15473 ops->print_mention = print_mention_catch_exec;
15474 ops->print_recreate = print_recreate_catch_exec;
15476 /* Solib-related catchpoints. */
15477 ops = &catch_solib_breakpoint_ops;
15478 *ops = base_breakpoint_ops;
15479 ops->insert_location = insert_catch_solib;
15480 ops->remove_location = remove_catch_solib;
15481 ops->breakpoint_hit = breakpoint_hit_catch_solib;
15482 ops->check_status = check_status_catch_solib;
15483 ops->print_it = print_it_catch_solib;
15484 ops->print_one = print_one_catch_solib;
15485 ops->print_mention = print_mention_catch_solib;
15486 ops->print_recreate = print_recreate_catch_solib;
15488 ops = &dprintf_breakpoint_ops;
15489 *ops = bkpt_base_breakpoint_ops;
15490 ops->re_set = dprintf_re_set;
15491 ops->resources_needed = bkpt_resources_needed;
15492 ops->print_it = bkpt_print_it;
15493 ops->print_mention = bkpt_print_mention;
15494 ops->print_recreate = dprintf_print_recreate;
15495 ops->after_condition_true = dprintf_after_condition_true;
15496 ops->breakpoint_hit = dprintf_breakpoint_hit;
15499 /* Chain containing all defined "enable breakpoint" subcommands. */
15501 static struct cmd_list_element *enablebreaklist = NULL;
15504 _initialize_breakpoint (void)
15506 struct cmd_list_element *c;
15508 initialize_breakpoint_ops ();
15510 gdb::observers::solib_unloaded.attach (disable_breakpoints_in_unloaded_shlib);
15511 gdb::observers::free_objfile.attach (disable_breakpoints_in_freed_objfile);
15512 gdb::observers::memory_changed.attach (invalidate_bp_value_on_memory_change);
15514 breakpoint_objfile_key
15515 = register_objfile_data_with_cleanup (NULL, free_breakpoint_objfile_data);
15517 breakpoint_chain = 0;
15518 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
15519 before a breakpoint is set. */
15520 breakpoint_count = 0;
15522 tracepoint_count = 0;
15524 add_com ("ignore", class_breakpoint, ignore_command, _("\
15525 Set ignore-count of breakpoint number N to COUNT.\n\
15526 Usage is `ignore N COUNT'."));
15528 add_com ("commands", class_breakpoint, commands_command, _("\
15529 Set commands to be executed when the given breakpoints are hit.\n\
15530 Give a space-separated breakpoint list as argument after \"commands\".\n\
15531 A list element can be a breakpoint number (e.g. `5') or a range of numbers\n\
15533 With no argument, the targeted breakpoint is the last one set.\n\
15534 The commands themselves follow starting on the next line.\n\
15535 Type a line containing \"end\" to indicate the end of them.\n\
15536 Give \"silent\" as the first line to make the breakpoint silent;\n\
15537 then no output is printed when it is hit, except what the commands print."));
15539 c = add_com ("condition", class_breakpoint, condition_command, _("\
15540 Specify breakpoint number N to break only if COND is true.\n\
15541 Usage is `condition N COND', where N is an integer and COND is an\n\
15542 expression to be evaluated whenever breakpoint N is reached."));
15543 set_cmd_completer (c, condition_completer);
15545 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
15546 Set a temporary breakpoint.\n\
15547 Like \"break\" except the breakpoint is only temporary,\n\
15548 so it will be deleted when hit. Equivalent to \"break\" followed\n\
15549 by using \"enable delete\" on the breakpoint number.\n\
15551 BREAK_ARGS_HELP ("tbreak")));
15552 set_cmd_completer (c, location_completer);
15554 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
15555 Set a hardware assisted breakpoint.\n\
15556 Like \"break\" except the breakpoint requires hardware support,\n\
15557 some target hardware may not have this support.\n\
15559 BREAK_ARGS_HELP ("hbreak")));
15560 set_cmd_completer (c, location_completer);
15562 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
15563 Set a temporary hardware assisted breakpoint.\n\
15564 Like \"hbreak\" except the breakpoint is only temporary,\n\
15565 so it will be deleted when hit.\n\
15567 BREAK_ARGS_HELP ("thbreak")));
15568 set_cmd_completer (c, location_completer);
15570 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
15571 Enable some breakpoints.\n\
15572 Give breakpoint numbers (separated by spaces) as arguments.\n\
15573 With no subcommand, breakpoints are enabled until you command otherwise.\n\
15574 This is used to cancel the effect of the \"disable\" command.\n\
15575 With a subcommand you can enable temporarily."),
15576 &enablelist, "enable ", 1, &cmdlist);
15578 add_com_alias ("en", "enable", class_breakpoint, 1);
15580 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
15581 Enable some breakpoints.\n\
15582 Give breakpoint numbers (separated by spaces) as arguments.\n\
15583 This is used to cancel the effect of the \"disable\" command.\n\
15584 May be abbreviated to simply \"enable\".\n"),
15585 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
15587 add_cmd ("once", no_class, enable_once_command, _("\
15588 Enable breakpoints for one hit. Give breakpoint numbers.\n\
15589 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
15592 add_cmd ("delete", no_class, enable_delete_command, _("\
15593 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15594 If a breakpoint is hit while enabled in this fashion, it is deleted."),
15597 add_cmd ("count", no_class, enable_count_command, _("\
15598 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15599 If a breakpoint is hit while enabled in this fashion,\n\
15600 the count is decremented; when it reaches zero, the breakpoint is disabled."),
15603 add_cmd ("delete", no_class, enable_delete_command, _("\
15604 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
15605 If a breakpoint is hit while enabled in this fashion, it is deleted."),
15608 add_cmd ("once", no_class, enable_once_command, _("\
15609 Enable breakpoints for one hit. Give breakpoint numbers.\n\
15610 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
15613 add_cmd ("count", no_class, enable_count_command, _("\
15614 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
15615 If a breakpoint is hit while enabled in this fashion,\n\
15616 the count is decremented; when it reaches zero, the breakpoint is disabled."),
15619 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
15620 Disable some breakpoints.\n\
15621 Arguments are breakpoint numbers with spaces in between.\n\
15622 To disable all breakpoints, give no argument.\n\
15623 A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
15624 &disablelist, "disable ", 1, &cmdlist);
15625 add_com_alias ("dis", "disable", class_breakpoint, 1);
15626 add_com_alias ("disa", "disable", class_breakpoint, 1);
15628 add_cmd ("breakpoints", class_alias, disable_command, _("\
15629 Disable some breakpoints.\n\
15630 Arguments are breakpoint numbers with spaces in between.\n\
15631 To disable all breakpoints, give no argument.\n\
15632 A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
15633 This command may be abbreviated \"disable\"."),
15636 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
15637 Delete some breakpoints or auto-display expressions.\n\
15638 Arguments are breakpoint numbers with spaces in between.\n\
15639 To delete all breakpoints, give no argument.\n\
15641 Also a prefix command for deletion of other GDB objects.\n\
15642 The \"unset\" command is also an alias for \"delete\"."),
15643 &deletelist, "delete ", 1, &cmdlist);
15644 add_com_alias ("d", "delete", class_breakpoint, 1);
15645 add_com_alias ("del", "delete", class_breakpoint, 1);
15647 add_cmd ("breakpoints", class_alias, delete_command, _("\
15648 Delete some breakpoints or auto-display expressions.\n\
15649 Arguments are breakpoint numbers with spaces in between.\n\
15650 To delete all breakpoints, give no argument.\n\
15651 This command may be abbreviated \"delete\"."),
15654 add_com ("clear", class_breakpoint, clear_command, _("\
15655 Clear breakpoint at specified location.\n\
15656 Argument may be a linespec, explicit, or address location as described below.\n\
15658 With no argument, clears all breakpoints in the line that the selected frame\n\
15659 is executing in.\n"
15660 "\n" LOCATION_HELP_STRING "\n\
15661 See also the \"delete\" command which clears breakpoints by number."));
15662 add_com_alias ("cl", "clear", class_breakpoint, 1);
15664 c = add_com ("break", class_breakpoint, break_command, _("\
15665 Set breakpoint at specified location.\n"
15666 BREAK_ARGS_HELP ("break")));
15667 set_cmd_completer (c, location_completer);
15669 add_com_alias ("b", "break", class_run, 1);
15670 add_com_alias ("br", "break", class_run, 1);
15671 add_com_alias ("bre", "break", class_run, 1);
15672 add_com_alias ("brea", "break", class_run, 1);
15676 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
15677 Break in function/address or break at a line in the current file."),
15678 &stoplist, "stop ", 1, &cmdlist);
15679 add_cmd ("in", class_breakpoint, stopin_command,
15680 _("Break in function or address."), &stoplist);
15681 add_cmd ("at", class_breakpoint, stopat_command,
15682 _("Break at a line in the current file."), &stoplist);
15683 add_com ("status", class_info, info_breakpoints_command, _("\
15684 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
15685 The \"Type\" column indicates one of:\n\
15686 \tbreakpoint - normal breakpoint\n\
15687 \twatchpoint - watchpoint\n\
15688 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15689 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15690 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15691 address and file/line number respectively.\n\
15693 Convenience variable \"$_\" and default examine address for \"x\"\n\
15694 are set to the address of the last breakpoint listed unless the command\n\
15695 is prefixed with \"server \".\n\n\
15696 Convenience variable \"$bpnum\" contains the number of the last\n\
15697 breakpoint set."));
15700 add_info ("breakpoints", info_breakpoints_command, _("\
15701 Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
15702 The \"Type\" column indicates one of:\n\
15703 \tbreakpoint - normal breakpoint\n\
15704 \twatchpoint - watchpoint\n\
15705 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15706 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15707 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15708 address and file/line number respectively.\n\
15710 Convenience variable \"$_\" and default examine address for \"x\"\n\
15711 are set to the address of the last breakpoint listed unless the command\n\
15712 is prefixed with \"server \".\n\n\
15713 Convenience variable \"$bpnum\" contains the number of the last\n\
15714 breakpoint set."));
15716 add_info_alias ("b", "breakpoints", 1);
15718 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
15719 Status of all breakpoints, or breakpoint number NUMBER.\n\
15720 The \"Type\" column indicates one of:\n\
15721 \tbreakpoint - normal breakpoint\n\
15722 \twatchpoint - watchpoint\n\
15723 \tlongjmp - internal breakpoint used to step through longjmp()\n\
15724 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
15725 \tuntil - internal breakpoint used by the \"until\" command\n\
15726 \tfinish - internal breakpoint used by the \"finish\" command\n\
15727 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
15728 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
15729 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
15730 address and file/line number respectively.\n\
15732 Convenience variable \"$_\" and default examine address for \"x\"\n\
15733 are set to the address of the last breakpoint listed unless the command\n\
15734 is prefixed with \"server \".\n\n\
15735 Convenience variable \"$bpnum\" contains the number of the last\n\
15737 &maintenanceinfolist);
15739 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
15740 Set catchpoints to catch events."),
15741 &catch_cmdlist, "catch ",
15742 0/*allow-unknown*/, &cmdlist);
15744 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
15745 Set temporary catchpoints to catch events."),
15746 &tcatch_cmdlist, "tcatch ",
15747 0/*allow-unknown*/, &cmdlist);
15749 add_catch_command ("fork", _("Catch calls to fork."),
15750 catch_fork_command_1,
15752 (void *) (uintptr_t) catch_fork_permanent,
15753 (void *) (uintptr_t) catch_fork_temporary);
15754 add_catch_command ("vfork", _("Catch calls to vfork."),
15755 catch_fork_command_1,
15757 (void *) (uintptr_t) catch_vfork_permanent,
15758 (void *) (uintptr_t) catch_vfork_temporary);
15759 add_catch_command ("exec", _("Catch calls to exec."),
15760 catch_exec_command_1,
15764 add_catch_command ("load", _("Catch loads of shared libraries.\n\
15765 Usage: catch load [REGEX]\n\
15766 If REGEX is given, only stop for libraries matching the regular expression."),
15767 catch_load_command_1,
15771 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
15772 Usage: catch unload [REGEX]\n\
15773 If REGEX is given, only stop for libraries matching the regular expression."),
15774 catch_unload_command_1,
15779 c = add_com ("watch", class_breakpoint, watch_command, _("\
15780 Set a watchpoint for an expression.\n\
15781 Usage: watch [-l|-location] EXPRESSION\n\
15782 A watchpoint stops execution of your program whenever the value of\n\
15783 an expression changes.\n\
15784 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15785 the memory to which it refers."));
15786 set_cmd_completer (c, expression_completer);
15788 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
15789 Set a read watchpoint for an expression.\n\
15790 Usage: rwatch [-l|-location] EXPRESSION\n\
15791 A watchpoint stops execution of your program whenever the value of\n\
15792 an expression is read.\n\
15793 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15794 the memory to which it refers."));
15795 set_cmd_completer (c, expression_completer);
15797 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
15798 Set a watchpoint for an expression.\n\
15799 Usage: awatch [-l|-location] EXPRESSION\n\
15800 A watchpoint stops execution of your program whenever the value of\n\
15801 an expression is either read or written.\n\
15802 If -l or -location is given, this evaluates EXPRESSION and watches\n\
15803 the memory to which it refers."));
15804 set_cmd_completer (c, expression_completer);
15806 add_info ("watchpoints", info_watchpoints_command, _("\
15807 Status of specified watchpoints (all watchpoints if no argument)."));
15809 /* XXX: cagney/2005-02-23: This should be a boolean, and should
15810 respond to changes - contrary to the description. */
15811 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
15812 &can_use_hw_watchpoints, _("\
15813 Set debugger's willingness to use watchpoint hardware."), _("\
15814 Show debugger's willingness to use watchpoint hardware."), _("\
15815 If zero, gdb will not use hardware for new watchpoints, even if\n\
15816 such is available. (However, any hardware watchpoints that were\n\
15817 created before setting this to nonzero, will continue to use watchpoint\n\
15820 show_can_use_hw_watchpoints,
15821 &setlist, &showlist);
15823 can_use_hw_watchpoints = 1;
15825 /* Tracepoint manipulation commands. */
15827 c = add_com ("trace", class_breakpoint, trace_command, _("\
15828 Set a tracepoint at specified location.\n\
15830 BREAK_ARGS_HELP ("trace") "\n\
15831 Do \"help tracepoints\" for info on other tracepoint commands."));
15832 set_cmd_completer (c, location_completer);
15834 add_com_alias ("tp", "trace", class_alias, 0);
15835 add_com_alias ("tr", "trace", class_alias, 1);
15836 add_com_alias ("tra", "trace", class_alias, 1);
15837 add_com_alias ("trac", "trace", class_alias, 1);
15839 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
15840 Set a fast tracepoint at specified location.\n\
15842 BREAK_ARGS_HELP ("ftrace") "\n\
15843 Do \"help tracepoints\" for info on other tracepoint commands."));
15844 set_cmd_completer (c, location_completer);
15846 c = add_com ("strace", class_breakpoint, strace_command, _("\
15847 Set a static tracepoint at location or marker.\n\
15849 strace [LOCATION] [if CONDITION]\n\
15850 LOCATION may be a linespec, explicit, or address location (described below) \n\
15851 or -m MARKER_ID.\n\n\
15852 If a marker id is specified, probe the marker with that name. With\n\
15853 no LOCATION, uses current execution address of the selected stack frame.\n\
15854 Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
15855 This collects arbitrary user data passed in the probe point call to the\n\
15856 tracing library. You can inspect it when analyzing the trace buffer,\n\
15857 by printing the $_sdata variable like any other convenience variable.\n\
15859 CONDITION is a boolean expression.\n\
15860 \n" LOCATION_HELP_STRING "\n\
15861 Multiple tracepoints at one place are permitted, and useful if their\n\
15862 conditions are different.\n\
15864 Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
15865 Do \"help tracepoints\" for info on other tracepoint commands."));
15866 set_cmd_completer (c, location_completer);
15868 add_info ("tracepoints", info_tracepoints_command, _("\
15869 Status of specified tracepoints (all tracepoints if no argument).\n\
15870 Convenience variable \"$tpnum\" contains the number of the\n\
15871 last tracepoint set."));
15873 add_info_alias ("tp", "tracepoints", 1);
15875 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
15876 Delete specified tracepoints.\n\
15877 Arguments are tracepoint numbers, separated by spaces.\n\
15878 No argument means delete all tracepoints."),
15880 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
15882 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
15883 Disable specified tracepoints.\n\
15884 Arguments are tracepoint numbers, separated by spaces.\n\
15885 No argument means disable all tracepoints."),
15887 deprecate_cmd (c, "disable");
15889 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
15890 Enable specified tracepoints.\n\
15891 Arguments are tracepoint numbers, separated by spaces.\n\
15892 No argument means enable all tracepoints."),
15894 deprecate_cmd (c, "enable");
15896 add_com ("passcount", class_trace, trace_pass_command, _("\
15897 Set the passcount for a tracepoint.\n\
15898 The trace will end when the tracepoint has been passed 'count' times.\n\
15899 Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
15900 if TPNUM is omitted, passcount refers to the last tracepoint defined."));
15902 add_prefix_cmd ("save", class_breakpoint, save_command,
15903 _("Save breakpoint definitions as a script."),
15904 &save_cmdlist, "save ",
15905 0/*allow-unknown*/, &cmdlist);
15907 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
15908 Save current breakpoint definitions as a script.\n\
15909 This includes all types of breakpoints (breakpoints, watchpoints,\n\
15910 catchpoints, tracepoints). Use the 'source' command in another debug\n\
15911 session to restore them."),
15913 set_cmd_completer (c, filename_completer);
15915 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
15916 Save current tracepoint definitions as a script.\n\
15917 Use the 'source' command in another debug session to restore them."),
15919 set_cmd_completer (c, filename_completer);
15921 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
15922 deprecate_cmd (c, "save tracepoints");
15924 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
15925 Breakpoint specific settings\n\
15926 Configure various breakpoint-specific variables such as\n\
15927 pending breakpoint behavior"),
15928 &breakpoint_set_cmdlist, "set breakpoint ",
15929 0/*allow-unknown*/, &setlist);
15930 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
15931 Breakpoint specific settings\n\
15932 Configure various breakpoint-specific variables such as\n\
15933 pending breakpoint behavior"),
15934 &breakpoint_show_cmdlist, "show breakpoint ",
15935 0/*allow-unknown*/, &showlist);
15937 add_setshow_auto_boolean_cmd ("pending", no_class,
15938 &pending_break_support, _("\
15939 Set debugger's behavior regarding pending breakpoints."), _("\
15940 Show debugger's behavior regarding pending breakpoints."), _("\
15941 If on, an unrecognized breakpoint location will cause gdb to create a\n\
15942 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
15943 an error. If auto, an unrecognized breakpoint location results in a\n\
15944 user-query to see if a pending breakpoint should be created."),
15946 show_pending_break_support,
15947 &breakpoint_set_cmdlist,
15948 &breakpoint_show_cmdlist);
15950 pending_break_support = AUTO_BOOLEAN_AUTO;
15952 add_setshow_boolean_cmd ("auto-hw", no_class,
15953 &automatic_hardware_breakpoints, _("\
15954 Set automatic usage of hardware breakpoints."), _("\
15955 Show automatic usage of hardware breakpoints."), _("\
15956 If set, the debugger will automatically use hardware breakpoints for\n\
15957 breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
15958 a warning will be emitted for such breakpoints."),
15960 show_automatic_hardware_breakpoints,
15961 &breakpoint_set_cmdlist,
15962 &breakpoint_show_cmdlist);
15964 add_setshow_boolean_cmd ("always-inserted", class_support,
15965 &always_inserted_mode, _("\
15966 Set mode for inserting breakpoints."), _("\
15967 Show mode for inserting breakpoints."), _("\
15968 When this mode is on, breakpoints are inserted immediately as soon as\n\
15969 they're created, kept inserted even when execution stops, and removed\n\
15970 only when the user deletes them. When this mode is off (the default),\n\
15971 breakpoints are inserted only when execution continues, and removed\n\
15972 when execution stops."),
15974 &show_always_inserted_mode,
15975 &breakpoint_set_cmdlist,
15976 &breakpoint_show_cmdlist);
15978 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
15979 condition_evaluation_enums,
15980 &condition_evaluation_mode_1, _("\
15981 Set mode of breakpoint condition evaluation."), _("\
15982 Show mode of breakpoint condition evaluation."), _("\
15983 When this is set to \"host\", breakpoint conditions will be\n\
15984 evaluated on the host's side by GDB. When it is set to \"target\",\n\
15985 breakpoint conditions will be downloaded to the target (if the target\n\
15986 supports such feature) and conditions will be evaluated on the target's side.\n\
15987 If this is set to \"auto\" (default), this will be automatically set to\n\
15988 \"target\" if it supports condition evaluation, otherwise it will\n\
15989 be set to \"gdb\""),
15990 &set_condition_evaluation_mode,
15991 &show_condition_evaluation_mode,
15992 &breakpoint_set_cmdlist,
15993 &breakpoint_show_cmdlist);
15995 add_com ("break-range", class_breakpoint, break_range_command, _("\
15996 Set a breakpoint for an address range.\n\
15997 break-range START-LOCATION, END-LOCATION\n\
15998 where START-LOCATION and END-LOCATION can be one of the following:\n\
15999 LINENUM, for that line in the current file,\n\
16000 FILE:LINENUM, for that line in that file,\n\
16001 +OFFSET, for that number of lines after the current line\n\
16002 or the start of the range\n\
16003 FUNCTION, for the first line in that function,\n\
16004 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16005 *ADDRESS, for the instruction at that address.\n\
16007 The breakpoint will stop execution of the inferior whenever it executes\n\
16008 an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16009 range (including START-LOCATION and END-LOCATION)."));
16011 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
16012 Set a dynamic printf at specified location.\n\
16013 dprintf location,format string,arg1,arg2,...\n\
16014 location may be a linespec, explicit, or address location.\n"
16015 "\n" LOCATION_HELP_STRING));
16016 set_cmd_completer (c, location_completer);
16018 add_setshow_enum_cmd ("dprintf-style", class_support,
16019 dprintf_style_enums, &dprintf_style, _("\
16020 Set the style of usage for dynamic printf."), _("\
16021 Show the style of usage for dynamic printf."), _("\
16022 This setting chooses how GDB will do a dynamic printf.\n\
16023 If the value is \"gdb\", then the printing is done by GDB to its own\n\
16024 console, as with the \"printf\" command.\n\
16025 If the value is \"call\", the print is done by calling a function in your\n\
16026 program; by default printf(), but you can choose a different function or\n\
16027 output stream by setting dprintf-function and dprintf-channel."),
16028 update_dprintf_commands, NULL,
16029 &setlist, &showlist);
16031 dprintf_function = xstrdup ("printf");
16032 add_setshow_string_cmd ("dprintf-function", class_support,
16033 &dprintf_function, _("\
16034 Set the function to use for dynamic printf"), _("\
16035 Show the function to use for dynamic printf"), NULL,
16036 update_dprintf_commands, NULL,
16037 &setlist, &showlist);
16039 dprintf_channel = xstrdup ("");
16040 add_setshow_string_cmd ("dprintf-channel", class_support,
16041 &dprintf_channel, _("\
16042 Set the channel to use for dynamic printf"), _("\
16043 Show the channel to use for dynamic printf"), NULL,
16044 update_dprintf_commands, NULL,
16045 &setlist, &showlist);
16047 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16048 &disconnected_dprintf, _("\
16049 Set whether dprintf continues after GDB disconnects."), _("\
16050 Show whether dprintf continues after GDB disconnects."), _("\
16051 Use this to let dprintf commands continue to hit and produce output\n\
16052 even if GDB disconnects or detaches from the target."),
16055 &setlist, &showlist);
16057 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16058 agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16059 (target agent only) This is useful for formatted output in user-defined commands."));
16061 automatic_hardware_breakpoints = 1;
16063 gdb::observers::about_to_proceed.attach (breakpoint_about_to_proceed);
16064 gdb::observers::thread_exit.attach (remove_threaded_breakpoints);